
    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_79edcbd8913451e81b08e0c8.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_30f92cb4e83893f559a50fb2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986328;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_8dc5d92c043fe7dd57293a34.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_dbaff7e027a592d0fe10b4c3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.986328;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_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.783691;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_cf5b54b838ee9f69dcdff9c4.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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f8ae65ea69a90c0028a03d24.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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:ffa;src:url('chunks/assets/font_2d39e4914a93fceb082a257d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3feda4a308002fb7563a25ca.woff2')format("woff");}.ffb{font-family:ffb;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);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:23.760000px;}
.ls10{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.053280px;}
.ls9{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018000px;}
.ls6{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.720000px;}
.ls12{letter-spacing:16.650720px;}
.lsf{letter-spacing:46.026720px;}
.ls11{letter-spacing:46.170720px;}
.lsc{letter-spacing:64.026720px;}
.lse{letter-spacing:64.146720px;}
.ls5{letter-spacing:825.420000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.wsc{word-spacing:-59.760000px;}
.ws4{word-spacing:-18.000000px;}
.ws1{word-spacing:-15.300000px;}
.wse{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws8{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.140000px;}
.wsd{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws5{word-spacing:-10.440000px;}
.wsb{word-spacing:0.000000px;}
._f{margin-left:-6.372000px;}
._3{margin-left:-1.242960px;}
._0{width:1.048320px;}
._4{width:2.301120px;}
._8{width:3.473280px;}
._a{width:5.226480px;}
._d{width:7.190640px;}
._c{width:8.899200px;}
._5{width:9.920160px;}
._7{width:11.680560px;}
._e{width:12.786480px;}
._6{width:13.799520px;}
._2a{width:15.446880px;}
._17{width:16.521120px;}
._1c{width:17.537040px;}
._b{width:18.732240px;}
._16{width:20.106720px;}
._9{width:21.155040px;}
._15{width:22.290480px;}
._14{width:23.366160px;}
._18{width:25.039440px;}
._12{width:27.000000px;}
._11{width:28.080000px;}
._19{width:29.980560px;}
._13{width:31.998960px;}
._21{width:33.573120px;}
._20{width:34.840080px;}
._24{width:36.231840px;}
._25{width:37.236720px;}
._26{width:38.919120px;}
._1b{width:39.979440px;}
._23{width:41.202000px;}
._1f{width:42.678720px;}
._1d{width:43.734240px;}
._1e{width:44.800560px;}
._10{width:46.926000px;}
._27{width:52.496640px;}
._28{width:54.050880px;}
._22{width:59.249520px;}
._29{width:65.806560px;}
._1a{width:90.743040px;}
._1{width:303.471120px;}
._2{width:371.948880px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc4{color:rgb(0,112,192);}
.fc0{color:rgb(192,0,0);}
.fs8{font-size:5.760000px;}
.fsc{font-size:12.240000px;}
.fs3{font-size:30.240000px;}
.fse{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fsd{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.fs9{font-size:108.000000px;}
.fs5{font-size:131.760000px;}
.fs7{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y21{bottom:0.360000px;}
.y7{bottom:2.520000px;}
.y41{bottom:2.880000px;}
.y24{bottom:3.240000px;}
.y10{bottom:3.960000px;}
.y25{bottom:4.500000px;}
.y5{bottom:8.460000px;}
.yb7{bottom:8.496000px;}
.y112{bottom:9.360000px;}
.y130{bottom:16.200000px;}
.y6{bottom:16.380000px;}
.yb8{bottom:16.416000px;}
.y40{bottom:18.360000px;}
.y38{bottom:20.520000px;}
.yf{bottom:22.320000px;}
.ye{bottom:33.120000px;}
.y3f{bottom:33.840000px;}
.y16d{bottom:34.020000px;}
.yb9{bottom:35.640000px;}
.y37{bottom:37.665000px;}
.y8{bottom:49.140000px;}
.y3e{bottom:49.320000px;}
.y16c{bottom:49.545000px;}
.yd{bottom:51.480000px;}
.y36{bottom:54.945000px;}
.yb6{bottom:59.940000px;}
.y3d{bottom:64.980000px;}
.y16b{bottom:65.025000px;}
.yc{bottom:65.700000px;}
.y35{bottom:72.225000px;}
.y4{bottom:73.476000px;}
.y3c{bottom:80.460000px;}
.y34{bottom:89.505000px;}
.y3b{bottom:95.970000px;}
.y47{bottom:96.345000px;}
.yb{bottom:103.680000px;}
.y11{bottom:103.860000px;}
.y33{bottom:106.785000px;}
.y3a{bottom:111.450000px;}
.y46{bottom:111.825000px;}
.y11c{bottom:119.916000px;}
.y32{bottom:124.065000px;}
.y137{bottom:126.036000px;}
.y45{bottom:127.305000px;}
.yb5{bottom:129.816000px;}
.y4f{bottom:129.996000px;}
.y11b{bottom:133.596000px;}
.ya{bottom:136.110000px;}
.y31{bottom:141.165000px;}
.y44{bottom:142.785000px;}
.y136{bottom:143.316000px;}
.yf0{bottom:146.016000px;}
.yb4{bottom:147.096000px;}
.y11a{bottom:147.456000px;}
.y4e{bottom:149.976000px;}
.y86{bottom:153.390000px;}
.yef{bottom:158.070000px;}
.y168{bottom:158.430000px;}
.y30{bottom:158.445000px;}
.y135{bottom:160.410000px;}
.y119{bottom:161.310000px;}
.yb3{bottom:164.190000px;}
.y4d{bottom:170.130000px;}
.y85{bottom:170.670000px;}
.yee{bottom:172.470000px;}
.y43{bottom:173.925000px;}
.y118{bottom:174.990000px;}
.y167{bottom:175.710000px;}
.y2f{bottom:175.725000px;}
.y134{bottom:177.690000px;}
.yb2{bottom:182.550000px;}
.yed{bottom:187.050000px;}
.y84{bottom:187.950000px;}
.y117{bottom:188.850000px;}
.y4c{bottom:190.290000px;}
.y166{bottom:192.990000px;}
.y2e{bottom:193.005000px;}
.y133{bottom:194.250000px;}
.yb1{bottom:199.830000px;}
.yec{bottom:201.630000px;}
.y116{bottom:202.710000px;}
.y83{bottom:205.230000px;}
.y132{bottom:205.590000px;}
.y165{bottom:210.090000px;}
.y2d{bottom:210.285000px;}
.y4b{bottom:210.450000px;}
.y115{bottom:214.770000px;}
.yb0{bottom:217.110000px;}
.yeb{bottom:218.190000px;}
.y82{bottom:222.510000px;}
.y164{bottom:227.370000px;}
.y2c{bottom:227.565000px;}
.yea{bottom:228.990000px;}
.y114{bottom:229.170000px;}
.y4a{bottom:230.610000px;}
.yaf{bottom:234.390000px;}
.y81{bottom:239.790000px;}
.ye9{bottom:243.570000px;}
.y113{bottom:243.750000px;}
.y163{bottom:244.650000px;}
.y2b{bottom:244.665000px;}
.y49{bottom:249.510000px;}
.yae{bottom:251.670000px;}
.y80{bottom:256.890000px;}
.y111{bottom:258.330000px;}
.ye8{bottom:260.850000px;}
.y162{bottom:261.930000px;}
.y2a{bottom:261.945000px;}
.y48{bottom:266.790000px;}
.yad{bottom:268.770000px;}
.y16a{bottom:270.390000px;}
.y7f{bottom:274.170000px;}
.ye7{bottom:278.130000px;}
.y161{bottom:279.210000px;}
.y29{bottom:279.225000px;}
.y26{bottom:281.550000px;}
.yac{bottom:286.050000px;}
.y110{bottom:288.750000px;}
.y7e{bottom:291.450000px;}
.ye6{bottom:295.410000px;}
.y160{bottom:296.490000px;}
.y28{bottom:296.535000px;}
.y10f{bottom:299.550000px;}
.yab{bottom:303.330000px;}
.y7d{bottom:308.730000px;}
.ye5{bottom:312.510000px;}
.y15f{bottom:313.590000px;}
.y27{bottom:313.815000px;}
.y10e{bottom:314.130000px;}
.yaa{bottom:320.655000px;}
.y7c{bottom:326.055000px;}
.ye4{bottom:329.835000px;}
.y15e{bottom:330.915000px;}
.y10d{bottom:331.455000px;}
.ya9{bottom:339.015000px;}
.y7b{bottom:343.335000px;}
.ye3{bottom:347.115000px;}
.y15d{bottom:348.195000px;}
.y10c{bottom:348.555000px;}
.y169{bottom:348.735000px;}
.ya8{bottom:356.115000px;}
.y7a{bottom:360.435000px;}
.ye2{bottom:364.395000px;}
.y15c{bottom:365.475000px;}
.y10b{bottom:365.835000px;}
.ya7{bottom:373.395000px;}
.y79{bottom:377.715000px;}
.ye1{bottom:381.675000px;}
.y15b{bottom:382.755000px;}
.y10a{bottom:383.115000px;}
.ya6{bottom:390.675000px;}
.y78{bottom:394.995000px;}
.ye0{bottom:398.955000px;}
.y15a{bottom:399.855000px;}
.y109{bottom:400.395000px;}
.ya5{bottom:407.955000px;}
.y77{bottom:412.275000px;}
.ydf{bottom:416.055000px;}
.y159{bottom:417.135000px;}
.y108{bottom:417.675000px;}
.ya4{bottom:425.235000px;}
.y76{bottom:429.555000px;}
.yde{bottom:433.335000px;}
.y158{bottom:434.415000px;}
.y107{bottom:434.775000px;}
.ya3{bottom:442.515000px;}
.y75{bottom:446.835000px;}
.ydd{bottom:450.615000px;}
.y157{bottom:451.695000px;}
.y106{bottom:453.135000px;}
.ya2{bottom:459.615000px;}
.y74{bottom:463.935000px;}
.ydc{bottom:467.895000px;}
.y42{bottom:468.795000px;}
.y156{bottom:468.975000px;}
.y105{bottom:470.415000px;}
.ya1{bottom:477.975000px;}
.y73{bottom:481.215000px;}
.y39{bottom:485.175000px;}
.y155{bottom:486.255000px;}
.y104{bottom:487.695000px;}
.ya0{bottom:495.255000px;}
.y72{bottom:498.495000px;}
.ydb{bottom:502.275000px;}
.y154{bottom:503.355000px;}
.y103{bottom:504.975000px;}
.y9f{bottom:512.535000px;}
.y71{bottom:515.775000px;}
.yda{bottom:519.555000px;}
.y153{bottom:520.635000px;}
.y102{bottom:522.255000px;}
.y9e{bottom:529.815000px;}
.y70{bottom:533.055000px;}
.yd9{bottom:536.835000px;}
.y152{bottom:537.915000px;}
.y131{bottom:538.635000px;}
.y101{bottom:539.355000px;}
.y9d{bottom:547.095000px;}
.y6f{bottom:550.155000px;}
.y12f{bottom:550.695000px;}
.yd8{bottom:554.115000px;}
.y151{bottom:555.195000px;}
.y100{bottom:556.635000px;}
.y9c{bottom:564.195000px;}
.y6e{bottom:567.435000px;}
.yd7{bottom:571.425000px;}
.y150{bottom:572.505000px;}
.yff{bottom:573.945000px;}
.y12e{bottom:578.985000px;}
.y9b{bottom:581.505000px;}
.y6d{bottom:584.745000px;}
.yd6{bottom:588.705000px;}
.y14f{bottom:589.785000px;}
.yfe{bottom:592.305000px;}
.y9a{bottom:598.785000px;}
.y6c{bottom:602.025000px;}
.yd5{bottom:605.805000px;}
.y14e{bottom:606.885000px;}
.y12d{bottom:607.425000px;}
.yfd{bottom:609.585000px;}
.y23{bottom:610.125000px;}
.y99{bottom:616.065000px;}
.y6b{bottom:619.305000px;}
.y12c{bottom:622.005000px;}
.yd4{bottom:623.085000px;}
.y14d{bottom:624.165000px;}
.yfc{bottom:626.865000px;}
.y98{bottom:634.425000px;}
.y6a{bottom:636.585000px;}
.y12b{bottom:638.565000px;}
.yd3{bottom:640.365000px;}
.y22{bottom:640.905000px;}
.y14c{bottom:641.445000px;}
.y20{bottom:643.785000px;}
.yfb{bottom:643.965000px;}
.y12a{bottom:649.365000px;}
.y1f{bottom:649.545000px;}
.y97{bottom:651.525000px;}
.y69{bottom:653.685000px;}
.yd2{bottom:657.645000px;}
.y14b{bottom:658.725000px;}
.yfa{bottom:661.245000px;}
.y129{bottom:663.225000px;}
.y1e{bottom:666.825000px;}
.y96{bottom:668.805000px;}
.y68{bottom:670.965000px;}
.yd1{bottom:674.925000px;}
.y14a{bottom:676.005000px;}
.y128{bottom:677.625000px;}
.yf9{bottom:678.525000px;}
.y95{bottom:686.085000px;}
.y1d{bottom:686.625000px;}
.y67{bottom:688.245000px;}
.yd0{bottom:692.205000px;}
.y149{bottom:693.285000px;}
.y127{bottom:694.905000px;}
.yf8{bottom:695.805000px;}
.y94{bottom:703.365000px;}
.y66{bottom:705.525000px;}
.ycf{bottom:709.305000px;}
.y148{bottom:710.385000px;}
.y126{bottom:712.185000px;}
.yf7{bottom:714.165000px;}
.y1c{bottom:715.065000px;}
.y93{bottom:720.645000px;}
.y65{bottom:722.805000px;}
.yce{bottom:726.585000px;}
.y147{bottom:727.665000px;}
.y125{bottom:729.465000px;}
.yf6{bottom:731.265000px;}
.y1b{bottom:737.565000px;}
.y92{bottom:737.925000px;}
.y64{bottom:740.085000px;}
.ycd{bottom:743.865000px;}
.y146{bottom:744.945000px;}
.y124{bottom:746.565000px;}
.yf5{bottom:748.545000px;}
.y1a{bottom:749.625000px;}
.y91{bottom:755.025000px;}
.y63{bottom:757.185000px;}
.ycc{bottom:761.145000px;}
.y145{bottom:762.225000px;}
.y123{bottom:763.845000px;}
.yf4{bottom:765.825000px;}
.y19{bottom:771.945000px;}
.y90{bottom:772.305000px;}
.y62{bottom:774.465000px;}
.ycb{bottom:778.425000px;}
.y144{bottom:779.505000px;}
.y122{bottom:781.125000px;}
.yf3{bottom:783.105000px;}
.y18{bottom:784.545000px;}
.y8f{bottom:790.665000px;}
.y61{bottom:791.745000px;}
.yca{bottom:795.525000px;}
.y143{bottom:796.605000px;}
.y121{bottom:798.405000px;}
.yf2{bottom:800.385000px;}
.y17{bottom:805.605000px;}
.y8e{bottom:807.945000px;}
.y60{bottom:809.025000px;}
.yc9{bottom:812.805000px;}
.y142{bottom:813.885000px;}
.yf1{bottom:814.425000px;}
.y120{bottom:815.685000px;}
.y8d{bottom:825.270000px;}
.y5f{bottom:826.350000px;}
.yc8{bottom:830.130000px;}
.y141{bottom:831.210000px;}
.y11f{bottom:833.010000px;}
.y16{bottom:836.790000px;}
.y8c{bottom:842.370000px;}
.y5e{bottom:843.450000px;}
.yc7{bottom:847.410000px;}
.y140{bottom:848.490000px;}
.y11e{bottom:850.110000px;}
.y8b{bottom:859.650000px;}
.y5d{bottom:860.730000px;}
.y11d{bottom:864.150000px;}
.yc6{bottom:864.690000px;}
.y13f{bottom:865.770000px;}
.y15{bottom:867.750000px;}
.y8a{bottom:876.930000px;}
.y5c{bottom:878.010000px;}
.yc5{bottom:881.970000px;}
.y13e{bottom:883.050000px;}
.y89{bottom:894.210000px;}
.y5b{bottom:895.290000px;}
.y14{bottom:898.890000px;}
.yc4{bottom:899.070000px;}
.y13d{bottom:900.150000px;}
.y88{bottom:911.490000px;}
.y5a{bottom:912.570000px;}
.yc3{bottom:916.350000px;}
.y13c{bottom:917.430000px;}
.y13{bottom:927.330000px;}
.y87{bottom:928.770000px;}
.y59{bottom:929.850000px;}
.yc2{bottom:933.630000px;}
.y13b{bottom:934.710000px;}
.y58{bottom:946.950000px;}
.yc1{bottom:950.910000px;}
.y13a{bottom:951.990000px;}
.y12{bottom:953.610000px;}
.y9{bottom:955.950000px;}
.y57{bottom:964.230000px;}
.yc0{bottom:968.190000px;}
.y139{bottom:969.270000px;}
.y56{bottom:981.510000px;}
.ybf{bottom:985.470000px;}
.y138{bottom:986.550000px;}
.y55{bottom:998.790000px;}
.ybe{bottom:1003.650000px;}
.y54{bottom:1016.070000px;}
.ybd{bottom:1020.930000px;}
.y53{bottom:1033.350000px;}
.ybc{bottom:1038.210000px;}
.y52{bottom:1050.450000px;}
.ybb{bottom:1055.490000px;}
.y51{bottom:1067.730000px;}
.yba{bottom:1072.800000px;}
.y50{bottom:1085.040000px;}
.y3{bottom:1102.320000px;}
.y2{bottom:1119.600000px;}
.y1{bottom:1137.600000px;}
.h13{height:1.800000px;}
.h14{height:4.021875px;}
.hf{height:4.064063px;}
.h15{height:8.636133px;}
.h24{height:13.680000px;}
.h23{height:13.860000px;}
.h25{height:13.860150px;}
.h1b{height:15.480000px;}
.h16{height:17.100000px;}
.hc{height:21.114844px;}
.ha{height:21.336328px;}
.h22{height:25.136719px;}
.h26{height:25.400391px;}
.h12{height:27.147656px;}
.h4{height:27.540000px;}
.h1f{height:27.576000px;}
.h27{height:27.720000px;}
.h6{height:33.683203px;}
.h21{height:34.036523px;}
.h1d{height:37.705078px;}
.h17{height:38.100586px;}
.h7{height:39.336328px;}
.h20{height:39.480328px;}
.h1a{height:41.343750px;}
.h5{height:41.726953px;}
.h3{height:42.164648px;}
.h1e{height:43.506914px;}
.h28{height:43.681992px;}
.h2{height:45.024258px;}
.h1{height:50.800781px;}
.h11{height:53.224453px;}
.h8{height:65.884219px;}
.hd{height:72.147305px;}
.h10{height:76.201172px;}
.h29{height:77.616000px;}
.hb{height:92.965430px;}
.he{height:118.365820px;}
.h19{height:124.056000px;}
.h9{height:143.136000px;}
.h1c{height:186.510000px;}
.h18{height:327.675000px;}
.h0{height:1188.000000px;}
.w2{width:34.020000px;}
.wb{width:55.800000px;}
.wc{width:59.760000px;}
.wf{width:109.836000px;}
.w12{width:126.720000px;}
.w11{width:126.936000px;}
.we{width:134.136000px;}
.wd{width:136.440000px;}
.w10{width:137.556000px;}
.w5{width:165.960000px;}
.wa{width:225.255000px;}
.w8{width:228.495000px;}
.w13{width:358.275000px;}
.w7{width:592.485000px;}
.w4{width:648.150000px;}
.w9{width:745.350000px;}
.w3{width:745.530000px;}
.w6{width:901.440000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.xd{left:-8.820000px;}
.x0{left:0.000000px;}
.x16{left:3.240000px;}
.x4{left:4.320000px;}
.x21{left:6.839986px;}
.x17{left:8.100000px;}
.x37{left:9.720000px;}
.x34{left:13.140000px;}
.x3a{left:14.580000px;}
.x28{left:15.840000px;}
.x2a{left:18.000000px;}
.x32{left:19.260000px;}
.x2c{left:20.880000px;}
.x3d{left:23.760000px;}
.x36{left:28.620000px;}
.x3c{left:31.536000px;}
.x2b{left:37.296000px;}
.x2d{left:40.176000px;}
.x1b{left:43.605000px;}
.x6{left:45.540000px;}
.x18{left:46.800000px;}
.x1c{left:48.419986px;}
.x22{left:52.200000px;}
.x1{left:53.999986px;}
.x3b{left:57.240000px;}
.x1d{left:59.759986px;}
.x1e{left:60.839986px;}
.x1a{left:65.025000px;}
.xa{left:70.416000px;}
.x42{left:73.470000px;}
.x23{left:87.300000px;}
.x26{left:88.416000px;}
.x41{left:92.195986px;}
.xe{left:95.795986px;}
.x3{left:99.396000px;}
.x9{left:105.510000px;}
.x2{left:108.035986px;}
.x24{left:119.555986px;}
.x5{left:134.496000px;}
.x12{left:156.449986px;}
.x38{left:163.649986px;}
.x14{left:196.049986px;}
.x8{left:200.190000px;}
.xb{left:231.690000px;}
.x25{left:256.529986px;}
.x27{left:287.175000px;}
.x11{left:297.254986px;}
.x7{left:324.075000px;}
.x39{left:327.135000px;}
.xf{left:344.414986px;}
.x13{left:395.354986px;}
.x29{left:400.215000px;}
.x2f{left:459.074986px;}
.x10{left:464.294986px;}
.x15{left:466.274986px;}
.x1f{left:486.104986px;}
.x3e{left:489.164986px;}
.x3f{left:490.424986px;}
.x20{left:513.104986px;}
.x40{left:517.424986px;}
.x30{left:519.764986px;}
.x33{left:623.805000px;}
.x19{left:640.005000px;}
.x31{left:681.809986px;}
.xc{left:693.690000px;}
.x35{left:758.670000px;}
.x2e{left:869.039986px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls10{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016000pt;}
.ls6{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls12{letter-spacing:14.800640pt;}
.lsf{letter-spacing:40.912640pt;}
.ls11{letter-spacing:41.040640pt;}
.lsc{letter-spacing:56.912640pt;}
.lse{letter-spacing:57.019307pt;}
.ls5{letter-spacing:733.706667pt;}
.ws3{word-spacing:-64.000000pt;}
.wsc{word-spacing:-53.120000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws1{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.374933pt;}
.ws0{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws8{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.680000pt;}
.wsd{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws5{word-spacing:-9.280000pt;}
.wsb{word-spacing:0.000000pt;}
._f{margin-left:-5.664000pt;}
._3{margin-left:-1.104853pt;}
._0{width:0.931840pt;}
._4{width:2.045440pt;}
._8{width:3.087360pt;}
._a{width:4.645760pt;}
._d{width:6.391680pt;}
._c{width:7.910400pt;}
._5{width:8.817920pt;}
._7{width:10.382720pt;}
._e{width:11.365760pt;}
._6{width:12.266240pt;}
._2a{width:13.730560pt;}
._17{width:14.685440pt;}
._1c{width:15.588480pt;}
._b{width:16.650880pt;}
._16{width:17.872640pt;}
._9{width:18.804480pt;}
._15{width:19.813760pt;}
._14{width:20.769920pt;}
._18{width:22.257280pt;}
._12{width:24.000000pt;}
._11{width:24.960000pt;}
._19{width:26.649387pt;}
._13{width:28.443520pt;}
._21{width:29.842773pt;}
._20{width:30.968960pt;}
._24{width:32.206080pt;}
._25{width:33.099307pt;}
._26{width:34.594773pt;}
._1b{width:35.537280pt;}
._23{width:36.624000pt;}
._1f{width:37.936640pt;}
._1d{width:38.874880pt;}
._1e{width:39.822720pt;}
._10{width:41.712000pt;}
._27{width:46.663680pt;}
._28{width:48.045227pt;}
._22{width:52.666240pt;}
._29{width:58.494720pt;}
._1a{width:80.660480pt;}
._1{width:269.752107pt;}
._2{width:330.621227pt;}
.fs8{font-size:5.120000pt;}
.fsc{font-size:10.880000pt;}
.fs3{font-size:26.880000pt;}
.fse{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fsd{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.fs9{font-size:96.000000pt;}
.fs5{font-size:117.120000pt;}
.fs7{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:0.320000pt;}
.y7{bottom:2.240000pt;}
.y41{bottom:2.560000pt;}
.y24{bottom:2.880000pt;}
.y10{bottom:3.520000pt;}
.y25{bottom:4.000000pt;}
.y5{bottom:7.520000pt;}
.yb7{bottom:7.552000pt;}
.y112{bottom:8.320000pt;}
.y130{bottom:14.400000pt;}
.y6{bottom:14.560000pt;}
.yb8{bottom:14.592000pt;}
.y40{bottom:16.320000pt;}
.y38{bottom:18.240000pt;}
.yf{bottom:19.840000pt;}
.ye{bottom:29.440000pt;}
.y3f{bottom:30.080000pt;}
.y16d{bottom:30.240000pt;}
.yb9{bottom:31.680000pt;}
.y37{bottom:33.480000pt;}
.y8{bottom:43.680000pt;}
.y3e{bottom:43.840000pt;}
.y16c{bottom:44.040000pt;}
.yd{bottom:45.760000pt;}
.y36{bottom:48.840000pt;}
.yb6{bottom:53.280000pt;}
.y3d{bottom:57.760000pt;}
.y16b{bottom:57.800000pt;}
.yc{bottom:58.400000pt;}
.y35{bottom:64.200000pt;}
.y4{bottom:65.312000pt;}
.y3c{bottom:71.520000pt;}
.y34{bottom:79.560000pt;}
.y3b{bottom:85.306667pt;}
.y47{bottom:85.640000pt;}
.yb{bottom:92.160000pt;}
.y11{bottom:92.320000pt;}
.y33{bottom:94.920000pt;}
.y3a{bottom:99.066667pt;}
.y46{bottom:99.400000pt;}
.y11c{bottom:106.592000pt;}
.y32{bottom:110.280000pt;}
.y137{bottom:112.032000pt;}
.y45{bottom:113.160000pt;}
.yb5{bottom:115.392000pt;}
.y4f{bottom:115.552000pt;}
.y11b{bottom:118.752000pt;}
.ya{bottom:120.986667pt;}
.y31{bottom:125.480000pt;}
.y44{bottom:126.920000pt;}
.y136{bottom:127.392000pt;}
.yf0{bottom:129.792000pt;}
.yb4{bottom:130.752000pt;}
.y11a{bottom:131.072000pt;}
.y4e{bottom:133.312000pt;}
.y86{bottom:136.346667pt;}
.yef{bottom:140.506667pt;}
.y168{bottom:140.826667pt;}
.y30{bottom:140.840000pt;}
.y135{bottom:142.586667pt;}
.y119{bottom:143.386667pt;}
.yb3{bottom:145.946667pt;}
.y4d{bottom:151.226667pt;}
.y85{bottom:151.706667pt;}
.yee{bottom:153.306667pt;}
.y43{bottom:154.600000pt;}
.y118{bottom:155.546667pt;}
.y167{bottom:156.186667pt;}
.y2f{bottom:156.200000pt;}
.y134{bottom:157.946667pt;}
.yb2{bottom:162.266667pt;}
.yed{bottom:166.266667pt;}
.y84{bottom:167.066667pt;}
.y117{bottom:167.866667pt;}
.y4c{bottom:169.146667pt;}
.y166{bottom:171.546667pt;}
.y2e{bottom:171.560000pt;}
.y133{bottom:172.666667pt;}
.yb1{bottom:177.626667pt;}
.yec{bottom:179.226667pt;}
.y116{bottom:180.186667pt;}
.y83{bottom:182.426667pt;}
.y132{bottom:182.746667pt;}
.y165{bottom:186.746667pt;}
.y2d{bottom:186.920000pt;}
.y4b{bottom:187.066667pt;}
.y115{bottom:190.906667pt;}
.yb0{bottom:192.986667pt;}
.yeb{bottom:193.946667pt;}
.y82{bottom:197.786667pt;}
.y164{bottom:202.106667pt;}
.y2c{bottom:202.280000pt;}
.yea{bottom:203.546667pt;}
.y114{bottom:203.706667pt;}
.y4a{bottom:204.986667pt;}
.yaf{bottom:208.346667pt;}
.y81{bottom:213.146667pt;}
.ye9{bottom:216.506667pt;}
.y113{bottom:216.666667pt;}
.y163{bottom:217.466667pt;}
.y2b{bottom:217.480000pt;}
.y49{bottom:221.786667pt;}
.yae{bottom:223.706667pt;}
.y80{bottom:228.346667pt;}
.y111{bottom:229.626667pt;}
.ye8{bottom:231.866667pt;}
.y162{bottom:232.826667pt;}
.y2a{bottom:232.840000pt;}
.y48{bottom:237.146667pt;}
.yad{bottom:238.906667pt;}
.y16a{bottom:240.346667pt;}
.y7f{bottom:243.706667pt;}
.ye7{bottom:247.226667pt;}
.y161{bottom:248.186667pt;}
.y29{bottom:248.200000pt;}
.y26{bottom:250.266667pt;}
.yac{bottom:254.266667pt;}
.y110{bottom:256.666667pt;}
.y7e{bottom:259.066667pt;}
.ye6{bottom:262.586667pt;}
.y160{bottom:263.546667pt;}
.y28{bottom:263.586667pt;}
.y10f{bottom:266.266667pt;}
.yab{bottom:269.626667pt;}
.y7d{bottom:274.426667pt;}
.ye5{bottom:277.786667pt;}
.y15f{bottom:278.746667pt;}
.y27{bottom:278.946667pt;}
.y10e{bottom:279.226667pt;}
.yaa{bottom:285.026667pt;}
.y7c{bottom:289.826667pt;}
.ye4{bottom:293.186667pt;}
.y15e{bottom:294.146667pt;}
.y10d{bottom:294.626667pt;}
.ya9{bottom:301.346667pt;}
.y7b{bottom:305.186667pt;}
.ye3{bottom:308.546667pt;}
.y15d{bottom:309.506667pt;}
.y10c{bottom:309.826667pt;}
.y169{bottom:309.986667pt;}
.ya8{bottom:316.546667pt;}
.y7a{bottom:320.386667pt;}
.ye2{bottom:323.906667pt;}
.y15c{bottom:324.866667pt;}
.y10b{bottom:325.186667pt;}
.ya7{bottom:331.906667pt;}
.y79{bottom:335.746667pt;}
.ye1{bottom:339.266667pt;}
.y15b{bottom:340.226667pt;}
.y10a{bottom:340.546667pt;}
.ya6{bottom:347.266667pt;}
.y78{bottom:351.106667pt;}
.ye0{bottom:354.626667pt;}
.y15a{bottom:355.426667pt;}
.y109{bottom:355.906667pt;}
.ya5{bottom:362.626667pt;}
.y77{bottom:366.466667pt;}
.ydf{bottom:369.826667pt;}
.y159{bottom:370.786667pt;}
.y108{bottom:371.266667pt;}
.ya4{bottom:377.986667pt;}
.y76{bottom:381.826667pt;}
.yde{bottom:385.186667pt;}
.y158{bottom:386.146667pt;}
.y107{bottom:386.466667pt;}
.ya3{bottom:393.346667pt;}
.y75{bottom:397.186667pt;}
.ydd{bottom:400.546667pt;}
.y157{bottom:401.506667pt;}
.y106{bottom:402.786667pt;}
.ya2{bottom:408.546667pt;}
.y74{bottom:412.386667pt;}
.ydc{bottom:415.906667pt;}
.y42{bottom:416.706667pt;}
.y156{bottom:416.866667pt;}
.y105{bottom:418.146667pt;}
.ya1{bottom:424.866667pt;}
.y73{bottom:427.746667pt;}
.y39{bottom:431.266667pt;}
.y155{bottom:432.226667pt;}
.y104{bottom:433.506667pt;}
.ya0{bottom:440.226667pt;}
.y72{bottom:443.106667pt;}
.ydb{bottom:446.466667pt;}
.y154{bottom:447.426667pt;}
.y103{bottom:448.866667pt;}
.y9f{bottom:455.586667pt;}
.y71{bottom:458.466667pt;}
.yda{bottom:461.826667pt;}
.y153{bottom:462.786667pt;}
.y102{bottom:464.226667pt;}
.y9e{bottom:470.946667pt;}
.y70{bottom:473.826667pt;}
.yd9{bottom:477.186667pt;}
.y152{bottom:478.146667pt;}
.y131{bottom:478.786667pt;}
.y101{bottom:479.426667pt;}
.y9d{bottom:486.306667pt;}
.y6f{bottom:489.026667pt;}
.y12f{bottom:489.506667pt;}
.yd8{bottom:492.546667pt;}
.y151{bottom:493.506667pt;}
.y100{bottom:494.786667pt;}
.y9c{bottom:501.506667pt;}
.y6e{bottom:504.386667pt;}
.yd7{bottom:507.933333pt;}
.y150{bottom:508.893333pt;}
.yff{bottom:510.173333pt;}
.y12e{bottom:514.653333pt;}
.y9b{bottom:516.893333pt;}
.y6d{bottom:519.773333pt;}
.yd6{bottom:523.293333pt;}
.y14f{bottom:524.253333pt;}
.yfe{bottom:526.493333pt;}
.y9a{bottom:532.253333pt;}
.y6c{bottom:535.133333pt;}
.yd5{bottom:538.493333pt;}
.y14e{bottom:539.453333pt;}
.y12d{bottom:539.933333pt;}
.yfd{bottom:541.853333pt;}
.y23{bottom:542.333333pt;}
.y99{bottom:547.613333pt;}
.y6b{bottom:550.493333pt;}
.y12c{bottom:552.893333pt;}
.yd4{bottom:553.853333pt;}
.y14d{bottom:554.813333pt;}
.yfc{bottom:557.213333pt;}
.y98{bottom:563.933333pt;}
.y6a{bottom:565.853333pt;}
.y12b{bottom:567.613333pt;}
.yd3{bottom:569.213333pt;}
.y22{bottom:569.693333pt;}
.y14c{bottom:570.173333pt;}
.y20{bottom:572.253333pt;}
.yfb{bottom:572.413333pt;}
.y12a{bottom:577.213333pt;}
.y1f{bottom:577.373333pt;}
.y97{bottom:579.133333pt;}
.y69{bottom:581.053333pt;}
.yd2{bottom:584.573333pt;}
.y14b{bottom:585.533333pt;}
.yfa{bottom:587.773333pt;}
.y129{bottom:589.533333pt;}
.y1e{bottom:592.733333pt;}
.y96{bottom:594.493333pt;}
.y68{bottom:596.413333pt;}
.yd1{bottom:599.933333pt;}
.y14a{bottom:600.893333pt;}
.y128{bottom:602.333333pt;}
.yf9{bottom:603.133333pt;}
.y95{bottom:609.853333pt;}
.y1d{bottom:610.333333pt;}
.y67{bottom:611.773333pt;}
.yd0{bottom:615.293333pt;}
.y149{bottom:616.253333pt;}
.y127{bottom:617.693333pt;}
.yf8{bottom:618.493333pt;}
.y94{bottom:625.213333pt;}
.y66{bottom:627.133333pt;}
.ycf{bottom:630.493333pt;}
.y148{bottom:631.453333pt;}
.y126{bottom:633.053333pt;}
.yf7{bottom:634.813333pt;}
.y1c{bottom:635.613333pt;}
.y93{bottom:640.573333pt;}
.y65{bottom:642.493333pt;}
.yce{bottom:645.853333pt;}
.y147{bottom:646.813333pt;}
.y125{bottom:648.413333pt;}
.yf6{bottom:650.013333pt;}
.y1b{bottom:655.613333pt;}
.y92{bottom:655.933333pt;}
.y64{bottom:657.853333pt;}
.ycd{bottom:661.213333pt;}
.y146{bottom:662.173333pt;}
.y124{bottom:663.613333pt;}
.yf5{bottom:665.373333pt;}
.y1a{bottom:666.333333pt;}
.y91{bottom:671.133333pt;}
.y63{bottom:673.053333pt;}
.ycc{bottom:676.573333pt;}
.y145{bottom:677.533333pt;}
.y123{bottom:678.973333pt;}
.yf4{bottom:680.733333pt;}
.y19{bottom:686.173333pt;}
.y90{bottom:686.493333pt;}
.y62{bottom:688.413333pt;}
.ycb{bottom:691.933333pt;}
.y144{bottom:692.893333pt;}
.y122{bottom:694.333333pt;}
.yf3{bottom:696.093333pt;}
.y18{bottom:697.373333pt;}
.y8f{bottom:702.813333pt;}
.y61{bottom:703.773333pt;}
.yca{bottom:707.133333pt;}
.y143{bottom:708.093333pt;}
.y121{bottom:709.693333pt;}
.yf2{bottom:711.453333pt;}
.y17{bottom:716.093333pt;}
.y8e{bottom:718.173333pt;}
.y60{bottom:719.133333pt;}
.yc9{bottom:722.493333pt;}
.y142{bottom:723.453333pt;}
.yf1{bottom:723.933333pt;}
.y120{bottom:725.053333pt;}
.y8d{bottom:733.573333pt;}
.y5f{bottom:734.533333pt;}
.yc8{bottom:737.893333pt;}
.y141{bottom:738.853333pt;}
.y11f{bottom:740.453333pt;}
.y16{bottom:743.813333pt;}
.y8c{bottom:748.773333pt;}
.y5e{bottom:749.733333pt;}
.yc7{bottom:753.253333pt;}
.y140{bottom:754.213333pt;}
.y11e{bottom:755.653333pt;}
.y8b{bottom:764.133333pt;}
.y5d{bottom:765.093333pt;}
.y11d{bottom:768.133333pt;}
.yc6{bottom:768.613333pt;}
.y13f{bottom:769.573333pt;}
.y15{bottom:771.333333pt;}
.y8a{bottom:779.493333pt;}
.y5c{bottom:780.453333pt;}
.yc5{bottom:783.973333pt;}
.y13e{bottom:784.933333pt;}
.y89{bottom:794.853333pt;}
.y5b{bottom:795.813333pt;}
.y14{bottom:799.013333pt;}
.yc4{bottom:799.173333pt;}
.y13d{bottom:800.133333pt;}
.y88{bottom:810.213333pt;}
.y5a{bottom:811.173333pt;}
.yc3{bottom:814.533333pt;}
.y13c{bottom:815.493333pt;}
.y13{bottom:824.293333pt;}
.y87{bottom:825.573333pt;}
.y59{bottom:826.533333pt;}
.yc2{bottom:829.893333pt;}
.y13b{bottom:830.853333pt;}
.y58{bottom:841.733333pt;}
.yc1{bottom:845.253333pt;}
.y13a{bottom:846.213333pt;}
.y12{bottom:847.653333pt;}
.y9{bottom:849.733333pt;}
.y57{bottom:857.093333pt;}
.yc0{bottom:860.613333pt;}
.y139{bottom:861.573333pt;}
.y56{bottom:872.453333pt;}
.ybf{bottom:875.973333pt;}
.y138{bottom:876.933333pt;}
.y55{bottom:887.813333pt;}
.ybe{bottom:892.133333pt;}
.y54{bottom:903.173333pt;}
.ybd{bottom:907.493333pt;}
.y53{bottom:918.533333pt;}
.ybc{bottom:922.853333pt;}
.y52{bottom:933.733333pt;}
.ybb{bottom:938.213333pt;}
.y51{bottom:949.093333pt;}
.yba{bottom:953.600000pt;}
.y50{bottom:964.480000pt;}
.y3{bottom:979.840000pt;}
.y2{bottom:995.200000pt;}
.y1{bottom:1011.200000pt;}
.h13{height:1.600000pt;}
.h14{height:3.575000pt;}
.hf{height:3.612500pt;}
.h15{height:7.676562pt;}
.h24{height:12.160000pt;}
.h23{height:12.320000pt;}
.h25{height:12.320133pt;}
.h1b{height:13.760000pt;}
.h16{height:15.200000pt;}
.hc{height:18.768750pt;}
.ha{height:18.965625pt;}
.h22{height:22.343750pt;}
.h26{height:22.578125pt;}
.h12{height:24.131250pt;}
.h4{height:24.480000pt;}
.h1f{height:24.512000pt;}
.h27{height:24.640000pt;}
.h6{height:29.940625pt;}
.h21{height:30.254687pt;}
.h1d{height:33.515625pt;}
.h17{height:33.867188pt;}
.h7{height:34.965625pt;}
.h20{height:35.093625pt;}
.h1a{height:36.750000pt;}
.h5{height:37.090625pt;}
.h3{height:37.479688pt;}
.h1e{height:38.672812pt;}
.h28{height:38.828437pt;}
.h2{height:40.021563pt;}
.h1{height:45.156250pt;}
.h11{height:47.310625pt;}
.h8{height:58.563750pt;}
.hd{height:64.130938pt;}
.h10{height:67.734375pt;}
.h29{height:68.992000pt;}
.hb{height:82.635937pt;}
.he{height:105.214062pt;}
.h19{height:110.272000pt;}
.h9{height:127.232000pt;}
.h1c{height:165.786667pt;}
.h18{height:291.266667pt;}
.h0{height:1056.000000pt;}
.w2{width:30.240000pt;}
.wb{width:49.600000pt;}
.wc{width:53.120000pt;}
.wf{width:97.632000pt;}
.w12{width:112.640000pt;}
.w11{width:112.832000pt;}
.we{width:119.232000pt;}
.wd{width:121.280000pt;}
.w10{width:122.272000pt;}
.w5{width:147.520000pt;}
.wa{width:200.226667pt;}
.w8{width:203.106667pt;}
.w13{width:318.466667pt;}
.w7{width:526.653333pt;}
.w4{width:576.133333pt;}
.w9{width:662.533333pt;}
.w3{width:662.693333pt;}
.w6{width:801.280000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.xd{left:-7.840000pt;}
.x0{left:0.000000pt;}
.x16{left:2.880000pt;}
.x4{left:3.840000pt;}
.x21{left:6.079988pt;}
.x17{left:7.200000pt;}
.x37{left:8.640000pt;}
.x34{left:11.680000pt;}
.x3a{left:12.960000pt;}
.x28{left:14.080000pt;}
.x2a{left:16.000000pt;}
.x32{left:17.120000pt;}
.x2c{left:18.560000pt;}
.x3d{left:21.120000pt;}
.x36{left:25.440000pt;}
.x3c{left:28.032000pt;}
.x2b{left:33.152000pt;}
.x2d{left:35.712000pt;}
.x1b{left:38.760000pt;}
.x6{left:40.480000pt;}
.x18{left:41.600000pt;}
.x1c{left:43.039988pt;}
.x22{left:46.400000pt;}
.x1{left:47.999988pt;}
.x3b{left:50.880000pt;}
.x1d{left:53.119988pt;}
.x1e{left:54.079988pt;}
.x1a{left:57.800000pt;}
.xa{left:62.592000pt;}
.x42{left:65.306667pt;}
.x23{left:77.600000pt;}
.x26{left:78.592000pt;}
.x41{left:81.951988pt;}
.xe{left:85.151988pt;}
.x3{left:88.352000pt;}
.x9{left:93.786667pt;}
.x2{left:96.031988pt;}
.x24{left:106.271988pt;}
.x5{left:119.552000pt;}
.x12{left:139.066655pt;}
.x38{left:145.466655pt;}
.x14{left:174.266655pt;}
.x8{left:177.946667pt;}
.xb{left:205.946667pt;}
.x25{left:228.026655pt;}
.x27{left:255.266667pt;}
.x11{left:264.226655pt;}
.x7{left:288.066667pt;}
.x39{left:290.786667pt;}
.xf{left:306.146655pt;}
.x13{left:351.426655pt;}
.x29{left:355.746667pt;}
.x2f{left:408.066655pt;}
.x10{left:412.706655pt;}
.x15{left:414.466655pt;}
.x1f{left:432.093321pt;}
.x3e{left:434.813321pt;}
.x3f{left:435.933321pt;}
.x20{left:456.093321pt;}
.x40{left:459.933321pt;}
.x30{left:462.013321pt;}
.x33{left:554.493333pt;}
.x19{left:568.893333pt;}
.x31{left:606.053321pt;}
.xc{left:616.613333pt;}
.x35{left:674.373333pt;}
.x2e{left:772.479988pt;}
}




    .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; }
  