
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_2bcf531f79899b188e85a70e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2384b766f23799309ac719ed.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4a4c141b7e17368a8c0da4a8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ba714ffd0a488956decb6dfd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-1.260000px;}
.ls9{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.460200px;}
.ls18{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.259800px;}
.ls4{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.235920px;}
.ls5{letter-spacing:0.259800px;}
.ls14{letter-spacing:0.259920px;}
.ls17{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.480000px;}
.lsf{letter-spacing:1.620000px;}
.lsa{letter-spacing:3.060000px;}
.lsc{letter-spacing:6.660000px;}
.ls10{letter-spacing:8.100000px;}
.ls16{letter-spacing:11.466720px;}
.lsb{letter-spacing:13.860000px;}
.lse{letter-spacing:33.960000px;}
.ls15{letter-spacing:41.682720px;}
.ls6{letter-spacing:46.002720px;}
.ls8{letter-spacing:64.002720px;}
.ls1a{letter-spacing:197.226720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-59.760000px;}
.ws9{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.ws6{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.680200px;}
.wsc{word-spacing:-14.580000px;}
.wsa{word-spacing:-14.479800px;}
.ws0{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._17{margin-left:-4.279680px;}
._11{margin-left:-3.227040px;}
._d{margin-left:-2.211120px;}
._0{margin-left:-1.021200px;}
._1{width:1.004400px;}
._7{width:2.339280px;}
._2{width:3.471360px;}
._6{width:4.500000px;}
._9{width:6.016320px;}
._e{width:7.290720px;}
._f{width:8.366400px;}
._12{width:10.230480px;}
._b{width:11.485440px;}
._c{width:12.549360px;}
._8{width:13.744800px;}
._15{width:16.015680px;}
._a{width:17.102880px;}
._18{width:18.360960px;}
._10{width:19.732320px;}
._14{width:21.359520px;}
._13{width:22.481280px;}
._16{width:23.904000px;}
._20{width:25.158960px;}
._1d{width:26.795520px;}
._1a{width:28.027440px;}
._29{width:29.605920px;}
._1f{width:31.314240px;}
._1e{width:32.628960px;}
._35{width:33.693120px;}
._34{width:35.090640px;}
._36{width:37.099200px;}
._3d{width:39.811680px;}
._30{width:43.809360px;}
._2f{width:44.820000px;}
._33{width:46.911600px;}
._31{width:48.345840px;}
._32{width:49.986960px;}
._37{width:52.529040px;}
._38{width:54.266880px;}
._2a{width:57.560400px;}
._2b{width:58.921200px;}
._24{width:60.442560px;}
._23{width:61.624080px;}
._25{width:63.482880px;}
._39{width:68.556240px;}
._1c{width:85.656000px;}
._26{width:87.309360px;}
._2c{width:90.843840px;}
._21{width:92.091600px;}
._2d{width:93.517680px;}
._3e{width:94.591440px;}
._22{width:95.616000px;}
._2e{width:97.176000px;}
._5{width:98.256000px;}
._19{width:99.486720px;}
._46{width:105.487920px;}
._47{width:106.587360px;}
._28{width:113.873280px;}
._27{width:115.000080px;}
._3f{width:119.448720px;}
._42{width:121.135680px;}
._41{width:135.992160px;}
._40{width:137.455200px;}
._3c{width:141.484320px;}
._3b{width:143.033040px;}
._3a{width:145.162080px;}
._43{width:160.767360px;}
._44{width:161.949600px;}
._45{width:163.462800px;}
._1b{width:687.306000px;}
._4{width:700.986000px;}
._3{width:748.236000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y132{bottom:9.540000px;}
.y12e{bottom:9.585000px;}
.y136{bottom:10.260000px;}
.y130{bottom:10.440000px;}
.y123{bottom:13.314000px;}
.y126{bottom:13.320000px;}
.y11d{bottom:13.500000px;}
.y121{bottom:14.220000px;}
.y111{bottom:15.840000px;}
.y119{bottom:15.870000px;}
.y12d{bottom:15.885000px;}
.y113{bottom:16.920000px;}
.y116{bottom:17.100000px;}
.y128{bottom:18.360000px;}
.y11e{bottom:21.240000px;}
.y118{bottom:21.630000px;}
.yb{bottom:36.720000px;}
.ya{bottom:55.260000px;}
.ya7{bottom:58.320000px;}
.y9b{bottom:58.356000px;}
.y9{bottom:70.776000px;}
.y9a{bottom:76.896000px;}
.y99{bottom:92.376000px;}
.y3d{bottom:112.716000px;}
.y70{bottom:113.616000px;}
.y8f{bottom:123.336000px;}
.yff{bottom:123.696000px;}
.yd7{bottom:126.576000px;}
.y3c{bottom:129.816000px;}
.y6f{bottom:130.896000px;}
.y90{bottom:138.636000px;}
.y9e{bottom:139.716000px;}
.y8e{bottom:140.616000px;}
.yfe{bottom:140.976000px;}
.y149{bottom:141.696000px;}
.yd6{bottom:143.856000px;}
.y3b{bottom:147.096000px;}
.y6e{bottom:148.176000px;}
.y122{bottom:148.356000px;}
.y9d{bottom:156.810000px;}
.y8d{bottom:157.890000px;}
.yfd{bottom:158.250000px;}
.y10f{bottom:158.430000px;}
.y148{bottom:158.970000px;}
.yd5{bottom:161.130000px;}
.y3a{bottom:164.370000px;}
.y6d{bottom:165.450000px;}
.y9c{bottom:170.850000px;}
.y8c{bottom:175.170000px;}
.yfc{bottom:175.530000px;}
.y147{bottom:177.330000px;}
.yd4{bottom:178.410000px;}
.y39{bottom:181.650000px;}
.y6c{bottom:182.730000px;}
.y120{bottom:190.470000px;}
.y10b{bottom:192.270000px;}
.y8b{bottom:192.450000px;}
.yfb{bottom:192.810000px;}
.y146{bottom:194.430000px;}
.y143{bottom:195.330000px;}
.yd3{bottom:195.510000px;}
.y38{bottom:198.930000px;}
.y6b{bottom:200.010000px;}
.y8a{bottom:209.550000px;}
.yfa{bottom:210.090000px;}
.y145{bottom:211.710000px;}
.y142{bottom:212.610000px;}
.yd2{bottom:212.790000px;}
.y37{bottom:216.210000px;}
.y6a{bottom:217.110000px;}
.y89{bottom:226.830000px;}
.yf9{bottom:227.190000px;}
.y144{bottom:228.990000px;}
.y141{bottom:229.890000px;}
.yd1{bottom:230.070000px;}
.y36{bottom:233.310000px;}
.y11f{bottom:234.030000px;}
.y69{bottom:234.390000px;}
.y88{bottom:244.110000px;}
.yf8{bottom:244.470000px;}
.y140{bottom:247.215000px;}
.yd0{bottom:247.350000px;}
.y35{bottom:250.590000px;}
.y68{bottom:251.670000px;}
.y87{bottom:261.390000px;}
.yf7{bottom:261.750000px;}
.y13f{bottom:264.495000px;}
.ycf{bottom:264.630000px;}
.y34{bottom:267.870000px;}
.y67{bottom:268.950000px;}
.y11c{bottom:276.330000px;}
.y86{bottom:278.670000px;}
.yf6{bottom:279.030000px;}
.y13e{bottom:281.595000px;}
.yce{bottom:281.730000px;}
.y66{bottom:286.230000px;}
.y33{bottom:287.310000px;}
.y10a{bottom:295.770000px;}
.y85{bottom:295.950000px;}
.yf5{bottom:296.310000px;}
.y13d{bottom:298.875000px;}
.ycd{bottom:299.010000px;}
.y65{bottom:303.330000px;}
.y32{bottom:304.590000px;}
.y84{bottom:313.050000px;}
.yf4{bottom:313.590000px;}
.y13c{bottom:316.155000px;}
.ycc{bottom:316.290000px;}
.y64{bottom:320.655000px;}
.y31{bottom:321.915000px;}
.y83{bottom:330.375000px;}
.yf3{bottom:330.735000px;}
.y13b{bottom:333.435000px;}
.ycb{bottom:333.615000px;}
.y63{bottom:337.935000px;}
.y30{bottom:339.195000px;}
.y82{bottom:347.655000px;}
.yf2{bottom:348.015000px;}
.y13a{bottom:350.715000px;}
.yca{bottom:350.895000px;}
.y62{bottom:355.215000px;}
.y2f{bottom:356.475000px;}
.y81{bottom:364.935000px;}
.yf1{bottom:365.295000px;}
.y109{bottom:366.015000px;}
.y139{bottom:367.995000px;}
.yc9{bottom:368.175000px;}
.y61{bottom:372.495000px;}
.y2e{bottom:373.575000px;}
.y169{bottom:382.035000px;}
.y80{bottom:382.215000px;}
.yf0{bottom:382.575000px;}
.y108{bottom:383.115000px;}
.y138{bottom:385.095000px;}
.yc8{bottom:385.275000px;}
.y11b{bottom:389.595000px;}
.y60{bottom:389.775000px;}
.y2d{bottom:390.855000px;}
.y168{bottom:399.315000px;}
.yef{bottom:399.855000px;}
.y7f{bottom:400.575000px;}
.y107{bottom:401.475000px;}
.y137{bottom:402.375000px;}
.yc7{bottom:402.555000px;}
.y5f{bottom:406.875000px;}
.y2c{bottom:408.135000px;}
.y167{bottom:416.595000px;}
.yee{bottom:417.135000px;}
.y7e{bottom:417.675000px;}
.y106{bottom:418.755000px;}
.yc6{bottom:419.835000px;}
.y5e{bottom:424.155000px;}
.y2b{bottom:425.415000px;}
.y166{bottom:433.875000px;}
.yed{bottom:434.235000px;}
.y7d{bottom:436.035000px;}
.yc5{bottom:437.115000px;}
.y5d{bottom:441.435000px;}
.y2a{bottom:442.695000px;}
.y165{bottom:451.155000px;}
.yec{bottom:451.515000px;}
.y7c{bottom:453.315000px;}
.yc4{bottom:454.395000px;}
.y135{bottom:455.865000px;}
.y5c{bottom:458.715000px;}
.y29{bottom:459.975000px;}
.y164{bottom:468.435000px;}
.yeb{bottom:468.795000px;}
.y7b{bottom:471.675000px;}
.y5b{bottom:475.995000px;}
.y28{bottom:477.075000px;}
.y163{bottom:485.535000px;}
.yea{bottom:486.075000px;}
.yc3{bottom:488.775000px;}
.y7a{bottom:488.955000px;}
.y134{bottom:490.245000px;}
.y11a{bottom:493.095000px;}
.y5a{bottom:493.275000px;}
.y27{bottom:494.355000px;}
.y162{bottom:502.815000px;}
.ye9{bottom:503.355000px;}
.yc2{bottom:506.055000px;}
.y79{bottom:507.135000px;}
.y59{bottom:510.375000px;}
.y26{bottom:511.635000px;}
.y161{bottom:520.095000px;}
.ye8{bottom:520.455000px;}
.yc1{bottom:523.335000px;}
.y78{bottom:524.415000px;}
.y133{bottom:524.445000px;}
.y58{bottom:527.655000px;}
.y25{bottom:528.915000px;}
.y160{bottom:537.375000px;}
.ye7{bottom:537.735000px;}
.yc0{bottom:540.615000px;}
.y77{bottom:541.695000px;}
.y57{bottom:544.935000px;}
.y24{bottom:546.195000px;}
.y15f{bottom:554.655000px;}
.ye6{bottom:555.015000px;}
.ybf{bottom:557.895000px;}
.y76{bottom:560.055000px;}
.y131{bottom:560.445000px;}
.y56{bottom:562.215000px;}
.y23{bottom:563.475000px;}
.y15e{bottom:571.965000px;}
.ye5{bottom:572.325000px;}
.ybe{bottom:575.205000px;}
.y75{bottom:577.365000px;}
.y55{bottom:579.525000px;}
.y22{bottom:580.605000px;}
.y15d{bottom:589.065000px;}
.ye4{bottom:589.605000px;}
.ybd{bottom:592.305000px;}
.y74{bottom:594.645000px;}
.y12f{bottom:594.825000px;}
.y54{bottom:596.805000px;}
.y21{bottom:597.885000px;}
.y15c{bottom:606.345000px;}
.ye3{bottom:606.885000px;}
.y117{bottom:609.225000px;}
.ybc{bottom:609.585000px;}
.y73{bottom:611.745000px;}
.y53{bottom:613.905000px;}
.y20{bottom:615.165000px;}
.y15b{bottom:623.625000px;}
.ye2{bottom:623.985000px;}
.ybb{bottom:626.865000px;}
.y72{bottom:630.105000px;}
.y12c{bottom:630.825000px;}
.y52{bottom:631.185000px;}
.y1f{bottom:632.445000px;}
.y15a{bottom:640.905000px;}
.ye1{bottom:641.265000px;}
.yba{bottom:644.145000px;}
.y71{bottom:647.385000px;}
.y51{bottom:648.465000px;}
.y1e{bottom:649.725000px;}
.y115{bottom:656.205000px;}
.y159{bottom:658.185000px;}
.ye0{bottom:658.545000px;}
.yb9{bottom:661.425000px;}
.y50{bottom:665.745000px;}
.y1d{bottom:666.825000px;}
.y12b{bottom:667.410000px;}
.y158{bottom:675.465000px;}
.ydf{bottom:675.825000px;}
.yb8{bottom:678.525000px;}
.y4f{bottom:683.025000px;}
.y1c{bottom:684.105000px;}
.y12a{bottom:684.690000px;}
.y157{bottom:692.565000px;}
.yde{bottom:693.105000px;}
.yb7{bottom:695.805000px;}
.y4e{bottom:700.125000px;}
.y1b{bottom:701.385000px;}
.y98{bottom:703.050000px;}
.y114{bottom:705.705000px;}
.y156{bottom:709.845000px;}
.ydd{bottom:710.385000px;}
.yb6{bottom:713.085000px;}
.y4d{bottom:717.405000px;}
.y1a{bottom:718.665000px;}
.y97{bottom:721.770000px;}
.y155{bottom:727.125000px;}
.ydc{bottom:727.485000px;}
.yb5{bottom:730.365000px;}
.y4c{bottom:734.685000px;}
.y19{bottom:735.945000px;}
.y96{bottom:737.610000px;}
.y154{bottom:744.405000px;}
.ydb{bottom:744.765000px;}
.yb4{bottom:747.645000px;}
.y4b{bottom:751.965000px;}
.y112{bottom:752.685000px;}
.y18{bottom:753.225000px;}
.y95{bottom:755.430000px;}
.y153{bottom:761.685000px;}
.yda{bottom:762.045000px;}
.yb3{bottom:764.925000px;}
.y4a{bottom:769.245000px;}
.y17{bottom:770.325000px;}
.y94{bottom:772.170000px;}
.y152{bottom:778.785000px;}
.yd9{bottom:779.325000px;}
.yb2{bottom:782.025000px;}
.y49{bottom:786.525000px;}
.y16{bottom:787.605000px;}
.y151{bottom:796.065000px;}
.yd8{bottom:796.605000px;}
.yb1{bottom:799.305000px;}
.y110{bottom:802.005000px;}
.y48{bottom:803.625000px;}
.y15{bottom:804.885000px;}
.y105{bottom:813.705000px;}
.y93{bottom:814.110000px;}
.y150{bottom:814.425000px;}
.yb0{bottom:816.585000px;}
.y47{bottom:820.950000px;}
.y14{bottom:822.210000px;}
.y129{bottom:825.630000px;}
.y104{bottom:831.030000px;}
.y14f{bottom:831.750000px;}
.y92{bottom:832.680000px;}
.yaf{bottom:833.910000px;}
.y46{bottom:838.230000px;}
.y13{bottom:841.650000px;}
.y127{bottom:843.090000px;}
.y103{bottom:848.310000px;}
.y14e{bottom:849.030000px;}
.y91{bottom:849.960000px;}
.yae{bottom:851.190000px;}
.y45{bottom:855.510000px;}
.y12{bottom:859.290000px;}
.y102{bottom:865.590000px;}
.y14d{bottom:867.390000px;}
.yad{bottom:868.470000px;}
.y44{bottom:872.790000px;}
.y11{bottom:878.370000px;}
.y101{bottom:882.870000px;}
.y14c{bottom:884.490000px;}
.y125{bottom:885.390000px;}
.yac{bottom:885.570000px;}
.y43{bottom:890.070000px;}
.y10{bottom:897.270000px;}
.y100{bottom:900.150000px;}
.y14b{bottom:901.770000px;}
.yab{bottom:902.850000px;}
.y42{bottom:907.170000px;}
.yf{bottom:916.350000px;}
.y10e{bottom:917.250000px;}
.y14a{bottom:919.050000px;}
.yaa{bottom:920.130000px;}
.y41{bottom:924.450000px;}
.y124{bottom:927.510000px;}
.y10d{bottom:934.530000px;}
.ye{bottom:934.890000px;}
.ya9{bottom:937.410000px;}
.y40{bottom:941.730000px;}
.y10c{bottom:951.810000px;}
.yd{bottom:952.890000px;}
.ya8{bottom:954.690000px;}
.y3f{bottom:959.010000px;}
.ya6{bottom:973.050000px;}
.yc{bottom:973.410000px;}
.y3e{bottom:976.290000px;}
.ya5{bottom:991.770000px;}
.y8{bottom:994.650000px;}
.ya4{bottom:1007.610000px;}
.y7{bottom:1013.370000px;}
.ya3{bottom:1025.430000px;}
.y6{bottom:1029.210000px;}
.ya2{bottom:1042.170000px;}
.y5{bottom:1047.030000px;}
.y4{bottom:1063.770000px;}
.ya1{bottom:1084.140000px;}
.ya0{bottom:1102.680000px;}
.y3{bottom:1105.740000px;}
.y9f{bottom:1119.960000px;}
.y2{bottom:1124.280000px;}
.y1{bottom:1141.560000px;}
.h14{height:29.700000px;}
.h13{height:29.880000px;}
.h11{height:29.916000px;}
.h12{height:31.500000px;}
.h15{height:31.536000px;}
.he{height:37.620000px;}
.hf{height:37.800000px;}
.h10{height:39.060000px;}
.h4{height:42.164648px;}
.hc{height:42.480000px;}
.ha{height:42.516000px;}
.hb{height:44.820000px;}
.hd{height:45.000000px;}
.h7{height:46.736719px;}
.h5{height:48.410156px;}
.h3{height:50.800781px;}
.h9{height:52.417969px;}
.h1{height:53.573906px;}
.h2{height:59.383125px;}
.h6{height:65.884219px;}
.h8{height:918.000000px;}
.h0{height:1188.000000px;}
.w5{width:88.956000px;}
.w8{width:97.920000px;}
.w4{width:158.400000px;}
.wa{width:172.830000px;}
.w7{width:174.600000px;}
.wb{width:214.950000px;}
.wc{width:234.390000px;}
.wd{width:401.295000px;}
.w9{width:409.035000px;}
.w6{width:454.215000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.w3{width:1187.999982px;}
.w2{width:1188.000000px;}
.x0{left:0.000000px;}
.x25{left:1.080000px;}
.x22{left:11.160000px;}
.x20{left:52.014000px;}
.x1{left:108.035986px;}
.x1f{left:110.376000px;}
.x7{left:132.155986px;}
.x10{left:135.035986px;}
.x2{left:137.555986px;}
.x11{left:162.029986px;}
.x4{left:169.769986px;}
.x24{left:209.010000px;}
.x8{left:233.849986px;}
.x21{left:270.930000px;}
.x15{left:272.549982px;}
.x28{left:285.510000px;}
.x26{left:287.355000px;}
.x17{left:304.769982px;}
.x2d{left:334.694986px;}
.xf{left:342.074986px;}
.x13{left:349.274986px;}
.xb{left:351.794986px;}
.xc{left:358.814986px;}
.x23{left:362.235000px;}
.x12{left:367.994986px;}
.xd{left:371.954986px;}
.xa{left:375.554986px;}
.x2c{left:378.614986px;}
.x27{left:387.615000px;}
.x1c{left:396.974986px;}
.xe{left:398.954986px;}
.x1d{left:407.414986px;}
.x6{left:409.034986px;}
.x2b{left:413.174986px;}
.x1e{left:422.354986px;}
.x5{left:424.874986px;}
.x1b{left:434.054986px;}
.x9{left:459.074986px;}
.x29{left:502.815000px;}
.x3{left:531.104986px;}
.x19{left:544.034982px;}
.x18{left:559.874982px;}
.x16{left:666.104982px;}
.x2a{left:739.545000px;}
.x14{left:783.509986px;}
.x1a{left:1107.149982px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-1.120000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.409067pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.230933pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.209707pt;}
.ls5{letter-spacing:0.230933pt;}
.ls14{letter-spacing:0.231040pt;}
.ls17{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.426667pt;}
.lsf{letter-spacing:1.440000pt;}
.lsa{letter-spacing:2.720000pt;}
.lsc{letter-spacing:5.920000pt;}
.ls10{letter-spacing:7.200000pt;}
.ls16{letter-spacing:10.192640pt;}
.lsb{letter-spacing:12.320000pt;}
.lse{letter-spacing:30.186667pt;}
.ls15{letter-spacing:37.051307pt;}
.ls6{letter-spacing:40.891307pt;}
.ls8{letter-spacing:56.891307pt;}
.ls1a{letter-spacing:175.312640pt;}
.ws8{word-spacing:-53.120000pt;}
.ws9{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.ws6{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.049067pt;}
.wsc{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.870933pt;}
.ws0{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._17{margin-left:-3.804160pt;}
._11{margin-left:-2.868480pt;}
._d{margin-left:-1.965440pt;}
._0{margin-left:-0.907733pt;}
._1{width:0.892800pt;}
._7{width:2.079360pt;}
._2{width:3.085653pt;}
._6{width:4.000000pt;}
._9{width:5.347840pt;}
._e{width:6.480640pt;}
._f{width:7.436800pt;}
._12{width:9.093760pt;}
._b{width:10.209280pt;}
._c{width:11.154987pt;}
._8{width:12.217600pt;}
._15{width:14.236160pt;}
._a{width:15.202560pt;}
._18{width:16.320853pt;}
._10{width:17.539840pt;}
._14{width:18.986240pt;}
._13{width:19.983360pt;}
._16{width:21.248000pt;}
._20{width:22.363520pt;}
._1d{width:23.818240pt;}
._1a{width:24.913280pt;}
._29{width:26.316373pt;}
._1f{width:27.834880pt;}
._1e{width:29.003520pt;}
._35{width:29.949440pt;}
._34{width:31.191680pt;}
._36{width:32.977067pt;}
._3d{width:35.388160pt;}
._30{width:38.941653pt;}
._2f{width:39.840000pt;}
._33{width:41.699200pt;}
._31{width:42.974080pt;}
._32{width:44.432853pt;}
._37{width:46.692480pt;}
._38{width:48.237227pt;}
._2a{width:51.164800pt;}
._2b{width:52.374400pt;}
._24{width:53.726720pt;}
._23{width:54.776960pt;}
._25{width:56.429227pt;}
._39{width:60.938880pt;}
._1c{width:76.138667pt;}
._26{width:77.608320pt;}
._2c{width:80.750080pt;}
._21{width:81.859200pt;}
._2d{width:83.126827pt;}
._3e{width:84.081280pt;}
._22{width:84.992000pt;}
._2e{width:86.378667pt;}
._5{width:87.338667pt;}
._19{width:88.432640pt;}
._46{width:93.767040pt;}
._47{width:94.744320pt;}
._28{width:101.220693pt;}
._27{width:102.222293pt;}
._3f{width:106.176640pt;}
._42{width:107.676160pt;}
._41{width:120.881920pt;}
._40{width:122.182400pt;}
._3c{width:125.763840pt;}
._3b{width:127.140480pt;}
._3a{width:129.032960pt;}
._43{width:142.904320pt;}
._44{width:143.955200pt;}
._45{width:145.300267pt;}
._1b{width:610.938667pt;}
._4{width:623.098667pt;}
._3{width:665.098667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y132{bottom:8.480000pt;}
.y12e{bottom:8.520000pt;}
.y136{bottom:9.120000pt;}
.y130{bottom:9.280000pt;}
.y123{bottom:11.834667pt;}
.y126{bottom:11.840000pt;}
.y11d{bottom:12.000000pt;}
.y121{bottom:12.640000pt;}
.y111{bottom:14.080000pt;}
.y119{bottom:14.106667pt;}
.y12d{bottom:14.120000pt;}
.y113{bottom:15.040000pt;}
.y116{bottom:15.200000pt;}
.y128{bottom:16.320000pt;}
.y11e{bottom:18.880000pt;}
.y118{bottom:19.226667pt;}
.yb{bottom:32.640000pt;}
.ya{bottom:49.120000pt;}
.ya7{bottom:51.840000pt;}
.y9b{bottom:51.872000pt;}
.y9{bottom:62.912000pt;}
.y9a{bottom:68.352000pt;}
.y99{bottom:82.112000pt;}
.y3d{bottom:100.192000pt;}
.y70{bottom:100.992000pt;}
.y8f{bottom:109.632000pt;}
.yff{bottom:109.952000pt;}
.yd7{bottom:112.512000pt;}
.y3c{bottom:115.392000pt;}
.y6f{bottom:116.352000pt;}
.y90{bottom:123.232000pt;}
.y9e{bottom:124.192000pt;}
.y8e{bottom:124.992000pt;}
.yfe{bottom:125.312000pt;}
.y149{bottom:125.952000pt;}
.yd6{bottom:127.872000pt;}
.y3b{bottom:130.752000pt;}
.y6e{bottom:131.712000pt;}
.y122{bottom:131.872000pt;}
.y9d{bottom:139.386667pt;}
.y8d{bottom:140.346667pt;}
.yfd{bottom:140.666667pt;}
.y10f{bottom:140.826667pt;}
.y148{bottom:141.306667pt;}
.yd5{bottom:143.226667pt;}
.y3a{bottom:146.106667pt;}
.y6d{bottom:147.066667pt;}
.y9c{bottom:151.866667pt;}
.y8c{bottom:155.706667pt;}
.yfc{bottom:156.026667pt;}
.y147{bottom:157.626667pt;}
.yd4{bottom:158.586667pt;}
.y39{bottom:161.466667pt;}
.y6c{bottom:162.426667pt;}
.y120{bottom:169.306667pt;}
.y10b{bottom:170.906667pt;}
.y8b{bottom:171.066667pt;}
.yfb{bottom:171.386667pt;}
.y146{bottom:172.826667pt;}
.y143{bottom:173.626667pt;}
.yd3{bottom:173.786667pt;}
.y38{bottom:176.826667pt;}
.y6b{bottom:177.786667pt;}
.y8a{bottom:186.266667pt;}
.yfa{bottom:186.746667pt;}
.y145{bottom:188.186667pt;}
.y142{bottom:188.986667pt;}
.yd2{bottom:189.146667pt;}
.y37{bottom:192.186667pt;}
.y6a{bottom:192.986667pt;}
.y89{bottom:201.626667pt;}
.yf9{bottom:201.946667pt;}
.y144{bottom:203.546667pt;}
.y141{bottom:204.346667pt;}
.yd1{bottom:204.506667pt;}
.y36{bottom:207.386667pt;}
.y11f{bottom:208.026667pt;}
.y69{bottom:208.346667pt;}
.y88{bottom:216.986667pt;}
.yf8{bottom:217.306667pt;}
.y140{bottom:219.746667pt;}
.yd0{bottom:219.866667pt;}
.y35{bottom:222.746667pt;}
.y68{bottom:223.706667pt;}
.y87{bottom:232.346667pt;}
.yf7{bottom:232.666667pt;}
.y13f{bottom:235.106667pt;}
.ycf{bottom:235.226667pt;}
.y34{bottom:238.106667pt;}
.y67{bottom:239.066667pt;}
.y11c{bottom:245.626667pt;}
.y86{bottom:247.706667pt;}
.yf6{bottom:248.026667pt;}
.y13e{bottom:250.306667pt;}
.yce{bottom:250.426667pt;}
.y66{bottom:254.426667pt;}
.y33{bottom:255.386667pt;}
.y10a{bottom:262.906667pt;}
.y85{bottom:263.066667pt;}
.yf5{bottom:263.386667pt;}
.y13d{bottom:265.666667pt;}
.ycd{bottom:265.786667pt;}
.y65{bottom:269.626667pt;}
.y32{bottom:270.746667pt;}
.y84{bottom:278.266667pt;}
.yf4{bottom:278.746667pt;}
.y13c{bottom:281.026667pt;}
.ycc{bottom:281.146667pt;}
.y64{bottom:285.026667pt;}
.y31{bottom:286.146667pt;}
.y83{bottom:293.666667pt;}
.yf3{bottom:293.986667pt;}
.y13b{bottom:296.386667pt;}
.ycb{bottom:296.546667pt;}
.y63{bottom:300.386667pt;}
.y30{bottom:301.506667pt;}
.y82{bottom:309.026667pt;}
.yf2{bottom:309.346667pt;}
.y13a{bottom:311.746667pt;}
.yca{bottom:311.906667pt;}
.y62{bottom:315.746667pt;}
.y2f{bottom:316.866667pt;}
.y81{bottom:324.386667pt;}
.yf1{bottom:324.706667pt;}
.y109{bottom:325.346667pt;}
.y139{bottom:327.106667pt;}
.yc9{bottom:327.266667pt;}
.y61{bottom:331.106667pt;}
.y2e{bottom:332.066667pt;}
.y169{bottom:339.586667pt;}
.y80{bottom:339.746667pt;}
.yf0{bottom:340.066667pt;}
.y108{bottom:340.546667pt;}
.y138{bottom:342.306667pt;}
.yc8{bottom:342.466667pt;}
.y11b{bottom:346.306667pt;}
.y60{bottom:346.466667pt;}
.y2d{bottom:347.426667pt;}
.y168{bottom:354.946667pt;}
.yef{bottom:355.426667pt;}
.y7f{bottom:356.066667pt;}
.y107{bottom:356.866667pt;}
.y137{bottom:357.666667pt;}
.yc7{bottom:357.826667pt;}
.y5f{bottom:361.666667pt;}
.y2c{bottom:362.786667pt;}
.y167{bottom:370.306667pt;}
.yee{bottom:370.786667pt;}
.y7e{bottom:371.266667pt;}
.y106{bottom:372.226667pt;}
.yc6{bottom:373.186667pt;}
.y5e{bottom:377.026667pt;}
.y2b{bottom:378.146667pt;}
.y166{bottom:385.666667pt;}
.yed{bottom:385.986667pt;}
.y7d{bottom:387.586667pt;}
.yc5{bottom:388.546667pt;}
.y5d{bottom:392.386667pt;}
.y2a{bottom:393.506667pt;}
.y165{bottom:401.026667pt;}
.yec{bottom:401.346667pt;}
.y7c{bottom:402.946667pt;}
.yc4{bottom:403.906667pt;}
.y135{bottom:405.213333pt;}
.y5c{bottom:407.746667pt;}
.y29{bottom:408.866667pt;}
.y164{bottom:416.386667pt;}
.yeb{bottom:416.706667pt;}
.y7b{bottom:419.266667pt;}
.y5b{bottom:423.106667pt;}
.y28{bottom:424.066667pt;}
.y163{bottom:431.586667pt;}
.yea{bottom:432.066667pt;}
.yc3{bottom:434.466667pt;}
.y7a{bottom:434.626667pt;}
.y134{bottom:435.773333pt;}
.y11a{bottom:438.306667pt;}
.y5a{bottom:438.466667pt;}
.y27{bottom:439.426667pt;}
.y162{bottom:446.946667pt;}
.ye9{bottom:447.426667pt;}
.yc2{bottom:449.826667pt;}
.y79{bottom:450.786667pt;}
.y59{bottom:453.666667pt;}
.y26{bottom:454.786667pt;}
.y161{bottom:462.306667pt;}
.ye8{bottom:462.626667pt;}
.yc1{bottom:465.186667pt;}
.y78{bottom:466.146667pt;}
.y133{bottom:466.173333pt;}
.y58{bottom:469.026667pt;}
.y25{bottom:470.146667pt;}
.y160{bottom:477.666667pt;}
.ye7{bottom:477.986667pt;}
.yc0{bottom:480.546667pt;}
.y77{bottom:481.506667pt;}
.y57{bottom:484.386667pt;}
.y24{bottom:485.506667pt;}
.y15f{bottom:493.026667pt;}
.ye6{bottom:493.346667pt;}
.ybf{bottom:495.906667pt;}
.y76{bottom:497.826667pt;}
.y131{bottom:498.173333pt;}
.y56{bottom:499.746667pt;}
.y23{bottom:500.866667pt;}
.y15e{bottom:508.413333pt;}
.ye5{bottom:508.733333pt;}
.ybe{bottom:511.293333pt;}
.y75{bottom:513.213333pt;}
.y55{bottom:515.133333pt;}
.y22{bottom:516.093333pt;}
.y15d{bottom:523.613333pt;}
.ye4{bottom:524.093333pt;}
.ybd{bottom:526.493333pt;}
.y74{bottom:528.573333pt;}
.y12f{bottom:528.733333pt;}
.y54{bottom:530.493333pt;}
.y21{bottom:531.453333pt;}
.y15c{bottom:538.973333pt;}
.ye3{bottom:539.453333pt;}
.y117{bottom:541.533333pt;}
.ybc{bottom:541.853333pt;}
.y73{bottom:543.773333pt;}
.y53{bottom:545.693333pt;}
.y20{bottom:546.813333pt;}
.y15b{bottom:554.333333pt;}
.ye2{bottom:554.653333pt;}
.ybb{bottom:557.213333pt;}
.y72{bottom:560.093333pt;}
.y12c{bottom:560.733333pt;}
.y52{bottom:561.053333pt;}
.y1f{bottom:562.173333pt;}
.y15a{bottom:569.693333pt;}
.ye1{bottom:570.013333pt;}
.yba{bottom:572.573333pt;}
.y71{bottom:575.453333pt;}
.y51{bottom:576.413333pt;}
.y1e{bottom:577.533333pt;}
.y115{bottom:583.293333pt;}
.y159{bottom:585.053333pt;}
.ye0{bottom:585.373333pt;}
.yb9{bottom:587.933333pt;}
.y50{bottom:591.773333pt;}
.y1d{bottom:592.733333pt;}
.y12b{bottom:593.253333pt;}
.y158{bottom:600.413333pt;}
.ydf{bottom:600.733333pt;}
.yb8{bottom:603.133333pt;}
.y4f{bottom:607.133333pt;}
.y1c{bottom:608.093333pt;}
.y12a{bottom:608.613333pt;}
.y157{bottom:615.613333pt;}
.yde{bottom:616.093333pt;}
.yb7{bottom:618.493333pt;}
.y4e{bottom:622.333333pt;}
.y1b{bottom:623.453333pt;}
.y98{bottom:624.933333pt;}
.y114{bottom:627.293333pt;}
.y156{bottom:630.973333pt;}
.ydd{bottom:631.453333pt;}
.yb6{bottom:633.853333pt;}
.y4d{bottom:637.693333pt;}
.y1a{bottom:638.813333pt;}
.y97{bottom:641.573333pt;}
.y155{bottom:646.333333pt;}
.ydc{bottom:646.653333pt;}
.yb5{bottom:649.213333pt;}
.y4c{bottom:653.053333pt;}
.y19{bottom:654.173333pt;}
.y96{bottom:655.653333pt;}
.y154{bottom:661.693333pt;}
.ydb{bottom:662.013333pt;}
.yb4{bottom:664.573333pt;}
.y4b{bottom:668.413333pt;}
.y112{bottom:669.053333pt;}
.y18{bottom:669.533333pt;}
.y95{bottom:671.493333pt;}
.y153{bottom:677.053333pt;}
.yda{bottom:677.373333pt;}
.yb3{bottom:679.933333pt;}
.y4a{bottom:683.773333pt;}
.y17{bottom:684.733333pt;}
.y94{bottom:686.373333pt;}
.y152{bottom:692.253333pt;}
.yd9{bottom:692.733333pt;}
.yb2{bottom:695.133333pt;}
.y49{bottom:699.133333pt;}
.y16{bottom:700.093333pt;}
.y151{bottom:707.613333pt;}
.yd8{bottom:708.093333pt;}
.yb1{bottom:710.493333pt;}
.y110{bottom:712.893333pt;}
.y48{bottom:714.333333pt;}
.y15{bottom:715.453333pt;}
.y105{bottom:723.293333pt;}
.y93{bottom:723.653333pt;}
.y150{bottom:723.933333pt;}
.yb0{bottom:725.853333pt;}
.y47{bottom:729.733333pt;}
.y14{bottom:730.853333pt;}
.y129{bottom:733.893333pt;}
.y104{bottom:738.693333pt;}
.y14f{bottom:739.333333pt;}
.y92{bottom:740.160000pt;}
.yaf{bottom:741.253333pt;}
.y46{bottom:745.093333pt;}
.y13{bottom:748.133333pt;}
.y127{bottom:749.413333pt;}
.y103{bottom:754.053333pt;}
.y14e{bottom:754.693333pt;}
.y91{bottom:755.520000pt;}
.yae{bottom:756.613333pt;}
.y45{bottom:760.453333pt;}
.y12{bottom:763.813333pt;}
.y102{bottom:769.413333pt;}
.y14d{bottom:771.013333pt;}
.yad{bottom:771.973333pt;}
.y44{bottom:775.813333pt;}
.y11{bottom:780.773333pt;}
.y101{bottom:784.773333pt;}
.y14c{bottom:786.213333pt;}
.y125{bottom:787.013333pt;}
.yac{bottom:787.173333pt;}
.y43{bottom:791.173333pt;}
.y10{bottom:797.573333pt;}
.y100{bottom:800.133333pt;}
.y14b{bottom:801.573333pt;}
.yab{bottom:802.533333pt;}
.y42{bottom:806.373333pt;}
.yf{bottom:814.533333pt;}
.y10e{bottom:815.333333pt;}
.y14a{bottom:816.933333pt;}
.yaa{bottom:817.893333pt;}
.y41{bottom:821.733333pt;}
.y124{bottom:824.453333pt;}
.y10d{bottom:830.693333pt;}
.ye{bottom:831.013333pt;}
.ya9{bottom:833.253333pt;}
.y40{bottom:837.093333pt;}
.y10c{bottom:846.053333pt;}
.yd{bottom:847.013333pt;}
.ya8{bottom:848.613333pt;}
.y3f{bottom:852.453333pt;}
.ya6{bottom:864.933333pt;}
.yc{bottom:865.253333pt;}
.y3e{bottom:867.813333pt;}
.ya5{bottom:881.573333pt;}
.y8{bottom:884.133333pt;}
.ya4{bottom:895.653333pt;}
.y7{bottom:900.773333pt;}
.ya3{bottom:911.493333pt;}
.y6{bottom:914.853333pt;}
.ya2{bottom:926.373333pt;}
.y5{bottom:930.693333pt;}
.y4{bottom:945.573333pt;}
.ya1{bottom:963.680000pt;}
.ya0{bottom:980.160000pt;}
.y3{bottom:982.880000pt;}
.y9f{bottom:995.520000pt;}
.y2{bottom:999.360000pt;}
.y1{bottom:1014.720000pt;}
.h14{height:26.400000pt;}
.h13{height:26.560000pt;}
.h11{height:26.592000pt;}
.h12{height:28.000000pt;}
.h15{height:28.032000pt;}
.he{height:33.440000pt;}
.hf{height:33.600000pt;}
.h10{height:34.720000pt;}
.h4{height:37.479688pt;}
.hc{height:37.760000pt;}
.ha{height:37.792000pt;}
.hb{height:39.840000pt;}
.hd{height:40.000000pt;}
.h7{height:41.543750pt;}
.h5{height:43.031250pt;}
.h3{height:45.156250pt;}
.h9{height:46.593750pt;}
.h1{height:47.621250pt;}
.h2{height:52.785000pt;}
.h6{height:58.563750pt;}
.h8{height:816.000000pt;}
.h0{height:1056.000000pt;}
.w5{width:79.072000pt;}
.w8{width:87.040000pt;}
.w4{width:140.800000pt;}
.wa{width:153.626667pt;}
.w7{width:155.200000pt;}
.wb{width:191.066667pt;}
.wc{width:208.346667pt;}
.wd{width:356.706667pt;}
.w9{width:363.586667pt;}
.w6{width:403.746667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.w3{width:1055.999984pt;}
.w2{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x25{left:0.960000pt;}
.x22{left:9.920000pt;}
.x20{left:46.234667pt;}
.x1{left:96.031988pt;}
.x1f{left:98.112000pt;}
.x7{left:117.471988pt;}
.x10{left:120.031988pt;}
.x2{left:122.271988pt;}
.x11{left:144.026655pt;}
.x4{left:150.906655pt;}
.x24{left:185.786667pt;}
.x8{left:207.866655pt;}
.x21{left:240.826667pt;}
.x15{left:242.266651pt;}
.x28{left:253.786667pt;}
.x26{left:255.426667pt;}
.x17{left:270.906651pt;}
.x2d{left:297.506655pt;}
.xf{left:304.066655pt;}
.x13{left:310.466655pt;}
.xb{left:312.706655pt;}
.xc{left:318.946655pt;}
.x23{left:321.986667pt;}
.x12{left:327.106655pt;}
.xd{left:330.626655pt;}
.xa{left:333.826655pt;}
.x2c{left:336.546655pt;}
.x27{left:344.546667pt;}
.x1c{left:352.866655pt;}
.xe{left:354.626655pt;}
.x1d{left:362.146655pt;}
.x6{left:363.586655pt;}
.x2b{left:367.266655pt;}
.x1e{left:375.426655pt;}
.x5{left:377.666655pt;}
.x1b{left:385.826655pt;}
.x9{left:408.066655pt;}
.x29{left:446.946667pt;}
.x3{left:472.093321pt;}
.x19{left:483.586651pt;}
.x18{left:497.666651pt;}
.x16{left:592.093318pt;}
.x2a{left:657.373333pt;}
.x14{left:696.453321pt;}
.x1a{left:984.133318pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  