
    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_79a181804b7f2da48c8d5c0a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999512;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_65a5294b3442753b2e34615c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.999512;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_a8a73f250e499087589b2b7e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_53c7c53e2dc22902e3e619a2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_be1fa836220ae12c1dec90d0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999512;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_53b59b6799e89212e56f378e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_6f468178facc84ed72f1c403.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_0451f1f16cb3596b8a06c1b0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_3cf29c783b9bcd2b02400935.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.999512;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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_8ddb82591c54ed18aa786cae.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202148;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:ffc;src:url('chunks/assets/font_44c217a567e2ad64c0155db6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.998000;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);}
.v2{vertical-align:-36.000000px;}
.v5{vertical-align:-22.176000px;}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:8.064000px;}
.v1{vertical-align:36.000000px;}
.ls22{letter-spacing:-0.469800px;}
.lsa{letter-spacing:-0.396000px;}
.ls14{letter-spacing:-0.367800px;}
.ls13{letter-spacing:-0.288000px;}
.ls20{letter-spacing:-0.219600px;}
.ls1d{letter-spacing:-0.216000px;}
.ls26{letter-spacing:-0.191400px;}
.ls1c{letter-spacing:-0.180000px;}
.ls1b{letter-spacing:-0.080400px;}
.ls21{letter-spacing:-0.040740px;}
.ls8{letter-spacing:-0.036000px;}
.ls5{letter-spacing:-0.001734px;}
.ls3{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.039600px;}
.ls4{letter-spacing:0.043920px;}
.ls15{letter-spacing:0.064800px;}
.ls25{letter-spacing:0.103200px;}
.ls9{letter-spacing:0.108000px;}
.ls1a{letter-spacing:0.115200px;}
.ls16{letter-spacing:0.178800px;}
.lsb{letter-spacing:0.216000px;}
.ls27{letter-spacing:0.288000px;}
.ls1f{letter-spacing:0.396000px;}
.ls17{letter-spacing:19.509120px;}
.lsc{letter-spacing:21.385728px;}
.ls24{letter-spacing:22.105728px;}
.ls12{letter-spacing:24.696000px;}
.ls2{letter-spacing:25.063920px;}
.ls1{letter-spacing:25.383600px;}
.lse{letter-spacing:44.352000px;}
.ls11{letter-spacing:45.192000px;}
.ls23{letter-spacing:47.109600px;}
.ls19{letter-spacing:47.160000px;}
.ls10{letter-spacing:70.473600px;}
.lsf{letter-spacing:70.560000px;}
.lsd{letter-spacing:97.509600px;}
.ls6{letter-spacing:97.560000px;}
.ls7{letter-spacing:97.680000px;}
.ls18{letter-spacing:102.024000px;}
.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;}
}
.ws1b{word-spacing:-44.525664px;}
.ws1a{word-spacing:-44.496000px;}
.ws0{word-spacing:-39.601440px;}
.ws1d{word-spacing:-30.024000px;}
.ws5{word-spacing:-24.769440px;}
.ws6{word-spacing:-24.440544px;}
.ws8{word-spacing:-24.408000px;}
.ws47{word-spacing:-22.277664px;}
.ws48{word-spacing:-22.248000px;}
.ws2a{word-spacing:-21.674304px;}
.ws2b{word-spacing:-21.641760px;}
.ws17{word-spacing:-21.628800px;}
.ws3{word-spacing:-21.600000px;}
.ws43{word-spacing:-21.588060px;}
.ws27{word-spacing:-19.152000px;}
.ws2{word-spacing:-16.493184px;}
.ws1{word-spacing:-16.463520px;}
.ws13{word-spacing:-16.272000px;}
.ws38{word-spacing:-2.736000px;}
.ws2d{word-spacing:-1.648080px;}
.ws24{word-spacing:-1.515024px;}
.ws3c{word-spacing:-1.188000px;}
.ws14{word-spacing:-1.023840px;}
.ws41{word-spacing:-1.020000px;}
.ws12{word-spacing:-1.008000px;}
.ws15{word-spacing:-0.948000px;}
.ws3a{word-spacing:-0.756000px;}
.ws3f{word-spacing:-0.736848px;}
.ws23{word-spacing:-0.655200px;}
.ws32{word-spacing:-0.552384px;}
.ws1e{word-spacing:-0.468000px;}
.ws45{word-spacing:-0.456000px;}
.wsf{word-spacing:-0.396000px;}
.ws10{word-spacing:-0.252000px;}
.ws30{word-spacing:-0.216000px;}
.ws39{word-spacing:-0.215808px;}
.ws20{word-spacing:-0.108144px;}
.ws21{word-spacing:-0.108000px;}
.ws2c{word-spacing:-0.097200px;}
.ws3d{word-spacing:-0.088944px;}
.wse{word-spacing:-0.076896px;}
.ws35{word-spacing:-0.062496px;}
.ws4{word-spacing:0.000000px;}
.ws2f{word-spacing:0.036000px;}
.ws7{word-spacing:0.067392px;}
.ws42{word-spacing:0.068064px;}
.ws37{word-spacing:0.096912px;}
.ws3b{word-spacing:0.108000px;}
.ws1f{word-spacing:0.144000px;}
.ws2e{word-spacing:0.180000px;}
.ws26{word-spacing:0.225360px;}
.wsa{word-spacing:0.288000px;}
.ws9{word-spacing:0.324000px;}
.wsb{word-spacing:0.329616px;}
.ws31{word-spacing:0.444000px;}
.ws44{word-spacing:0.576000px;}
.ws46{word-spacing:0.774528px;}
.ws40{word-spacing:0.792000px;}
.ws18{word-spacing:0.828000px;}
.ws16{word-spacing:0.840000px;}
.ws33{word-spacing:0.864000px;}
.ws34{word-spacing:0.867648px;}
.ws11{word-spacing:0.900000px;}
.ws36{word-spacing:0.942876px;}
.wsc{word-spacing:1.224000px;}
.ws29{word-spacing:1.283040px;}
.ws19{word-spacing:1.368000px;}
.ws3e{word-spacing:1.739808px;}
.wsd{word-spacing:1.860000px;}
.ws28{word-spacing:2.451600px;}
.ws1c{word-spacing:535.596000px;}
.ws25{word-spacing:4133.604000px;}
.ws22{word-spacing:4146.444000px;}
._7{margin-left:-11.640000px;}
._3{margin-left:-9.547200px;}
._8{margin-left:-7.776000px;}
._6{margin-left:-6.690168px;}
._4{margin-left:-5.307072px;}
._5{margin-left:-3.546228px;}
._1{margin-left:-2.306880px;}
._0{margin-left:-1.029888px;}
._2{width:1.202400px;}
._a{width:2.306880px;}
._b{width:3.700320px;}
._f{width:15.660000px;}
._12{width:17.281932px;}
._e{width:20.831040px;}
._10{width:22.056000px;}
._d{width:23.219568px;}
._11{width:24.345552px;}
._9{width:25.596000px;}
._c{width:38.088000px;}
._13{width:74.081136px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:transparent;}
.fc4{color:rgb(64,64,64);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(104,104,104);}
.fs8{font-size:48.240000px;}
.fsb{font-size:72.000000px;}
.fsa{font-size:72.144000px;}
.fs3{font-size:79.920000px;}
.fs5{font-size:80.064000px;}
.fsd{font-size:95.760000px;}
.fse{font-size:95.904000px;}
.fs7{font-size:108.000000px;}
.fs6{font-size:108.144000px;}
.fs2{font-size:120.240000px;}
.fs4{font-size:120.384000px;}
.fs0{font-size:192.240000px;}
.fs1{font-size:192.384000px;}
.fs9{font-size:216.000000px;}
.fsc{font-size:216.144000px;}
.y0{bottom:0.000000px;}
.yd3{bottom:0.719970px;}
.y3a{bottom:18.360000px;}
.yf2{bottom:20.700000px;}
.ybb{bottom:21.384000px;}
.y86{bottom:24.840000px;}
.yb3{bottom:26.748000px;}
.y97{bottom:26.928000px;}
.y8b{bottom:46.440000px;}
.yf1{bottom:52.740000px;}
.yd6{bottom:64.512000px;}
.yf5{bottom:65.340000px;}
.y5f{bottom:65.664000px;}
.y3d{bottom:78.552000px;}
.yf0{bottom:85.500000px;}
.y5b{bottom:92.052000px;}
.y57{bottom:92.448000px;}
.yd4{bottom:92.592030px;}
.yd0{bottom:92.625000px;}
.yc5{bottom:92.700000px;}
.yc1{bottom:92.775000px;}
.yd5{bottom:93.312000px;}
.y36{bottom:93.960000px;}
.y69{bottom:97.740000px;}
.ycf{bottom:97.920000px;}
.y5e{bottom:98.064000px;}
.y7f{bottom:104.325000px;}
.y3b{bottom:104.364000px;}
.y37{bottom:104.370000px;}
.y32{bottom:104.400000px;}
.y25{bottom:104.430000px;}
.y7c{bottom:104.505000px;}
.y22{bottom:104.550000px;}
.y5a{bottom:113.652000px;}
.y56{bottom:114.048000px;}
.yef{bottom:117.900000px;}
.y3c{bottom:122.724000px;}
.y79{bottom:123.768000px;}
.yf4{bottom:130.140000px;}
.y18{bottom:135.612000px;}
.y6b{bottom:138.564000px;}
.yee{bottom:149.976000px;}
.y85{bottom:154.440000px;}
.y78{bottom:156.210000px;}
.yd2{bottom:161.745000px;}
.y68{bottom:162.540000px;}
.y39{bottom:165.930000px;}
.yf3{bottom:169.590000px;}
.y59{bottom:170.355000px;}
.y6a{bottom:170.970000px;}
.y5d{bottom:171.030000px;}
.ye1{bottom:180.900000px;}
.yed{bottom:182.730000px;}
.y17{bottom:184.245000px;}
.yb7{bottom:186.915000px;}
.y77{bottom:188.610000px;}
.ybc{bottom:190.080000px;}
.yd1{bottom:190.545000px;}
.y58{bottom:191.985000px;}
.y5c{bottom:192.630000px;}
.y67{bottom:194.940000px;}
.y38{bottom:198.330000px;}
.yba{bottom:198.690000px;}
.y83{bottom:201.525000px;}
.y2a{bottom:201.630000px;}
.y31{bottom:201.960000px;}
.y2e{bottom:212.760000px;}
.ye0{bottom:213.300000px;}
.ya{bottom:213.870000px;}
.y8f{bottom:215.535000px;}
.y76{bottom:221.010000px;}
.yb6{bottom:226.155000px;}
.y80{bottom:230.040000px;}
.ybf{bottom:232.170000px;}
.y16{bottom:232.845000px;}
.y8c{bottom:233.895000px;}
.y81{bottom:233.925000px;}
.y29{bottom:234.030000px;}
.yb1{bottom:236.595000px;}
.y35{bottom:241.530000px;}
.y20{bottom:242.565000px;}
.ydf{bottom:245.700000px;}
.y9{bottom:246.270000px;}
.yb4{bottom:247.425000px;}
.y8e{bottom:247.935000px;}
.yec{bottom:252.030000px;}
.y75{bottom:253.410000px;}
.yb5{bottom:257.505000px;}
.yce{bottom:258.945000px;}
.ybe{bottom:263.490000px;}
.yb9{bottom:264.570000px;}
.ya7{bottom:266.070000px;}
.yb0{bottom:268.995000px;}
.y34{bottom:273.960000px;}
.y1f{bottom:274.965000px;}
.y41{bottom:276.405000px;}
.y8{bottom:278.715000px;}
.y8d{bottom:280.335000px;}
.y15{bottom:281.445000px;}
.yeb{bottom:284.430000px;}
.y44{bottom:284.580000px;}
.y74{bottom:285.810000px;}
.y55{bottom:286.770000px;}
.ycd{bottom:287.745000px;}
.y28{bottom:288.360000px;}
.yb8{bottom:295.920000px;}
.y40{bottom:298.005000px;}
.ya6{bottom:298.515000px;}
.y8a{bottom:298.695000px;}
.yaf{bottom:301.395000px;}
.y43{bottom:306.180000px;}
.y33{bottom:306.360000px;}
.ycc{bottom:316.590000px;}
.yea{bottom:316.875000px;}
.y73{bottom:318.240000px;}
.yde{bottom:319.500000px;}
.y3f{bottom:319.650000px;}
.y66{bottom:324.570000px;}
.y42{bottom:327.780000px;}
.y9e{bottom:329.655000px;}
.y14{bottom:330.045000px;}
.ya5{bottom:330.915000px;}
.y88{bottom:331.095000px;}
.yae{bottom:333.795000px;}
.y2c{bottom:342.360000px;}
.ye9{bottom:349.275000px;}
.ydd{bottom:351.930000px;}
.y89{bottom:355.935000px;}
.y65{bottom:356.970000px;}
.y7e{bottom:359.640000px;}
.y54{bottom:360.750000px;}
.y9d{bottom:362.055000px;}
.ya4{bottom:363.315000px;}
.y87{bottom:363.525000px;}
.y95{bottom:363.705000px;}
.yad{bottom:366.195000px;}
.ycb{bottom:374.190000px;}
.y7{bottom:378.435000px;}
.y13{bottom:378.690000px;}
.ye8{bottom:381.675000px;}
.y30{bottom:381.960000px;}
.y53{bottom:382.350000px;}
.y72{bottom:383.040000px;}
.ydc{bottom:384.330000px;}
.y1e{bottom:389.445000px;}
.y9c{bottom:394.455000px;}
.ya3{bottom:395.715000px;}
.y94{bottom:396.105000px;}
.yac{bottom:398.625000px;}
.yca{bottom:402.990000px;}
.y52{bottom:403.950000px;}
.y2f{bottom:414.390000px;}
.y6{bottom:414.435000px;}
.y71{bottom:415.440000px;}
.y26{bottom:417.960000px;}
.y48{bottom:418.500000px;}
.y7b{bottom:419.040000px;}
.y64{bottom:421.815000px;}
.y1d{bottom:421.845000px;}
.y9b{bottom:426.855000px;}
.y12{bottom:427.290000px;}
.ya2{bottom:428.115000px;}
.y93{bottom:428.550000px;}
.yab{bottom:431.025000px;}
.y84{bottom:431.565000px;}
.y4c{bottom:439.590000px;}
.y47{bottom:440.130000px;}
.y5{bottom:441.465000px;}
.y2d{bottom:446.790000px;}
.y70{bottom:447.840000px;}
.y4e{bottom:450.930000px;}
.ye7{bottom:450.975000px;}
.y63{bottom:454.215000px;}
.y1c{bottom:454.290000px;}
.yc4{bottom:454.320000px;}
.ydb{bottom:458.130000px;}
.ya1{bottom:460.545000px;}
.yc9{bottom:460.590000px;}
.y92{bottom:460.950000px;}
.y24{bottom:461.160000px;}
.y4b{bottom:461.190000px;}
.ybd{bottom:463.065000px;}
.yb2{bottom:463.425000px;}
.y82{bottom:463.965000px;}
.y51{bottom:469.470000px;}
.y4d{bottom:472.530000px;}
.y11{bottom:475.890000px;}
.y4{bottom:477.465000px;}
.y6f{bottom:480.270000px;}
.y4a{bottom:482.790000px;}
.y46{bottom:483.330000px;}
.ye6{bottom:483.405000px;}
.y1b{bottom:486.690000px;}
.yc8{bottom:489.420000px;}
.y2b{bottom:489.990000px;}
.y50{bottom:491.070000px;}
.y9a{bottom:491.685000px;}
.yaa{bottom:495.825000px;}
.yc3{bottom:498.600000px;}
.y45{bottom:504.930000px;}
.y21{bottom:505.260000px;}
.y4f{bottom:512.670000px;}
.ye5{bottom:515.805000px;}
.yc7{bottom:518.220000px;}
.y62{bottom:519.015000px;}
.y1a{bottom:519.090000px;}
.y27{bottom:522.390000px;}
.y7d{bottom:523.545000px;}
.y99{bottom:524.085000px;}
.y10{bottom:524.520000px;}
.ya0{bottom:525.345000px;}
.y91{bottom:525.750000px;}
.ya9{bottom:528.225000px;}
.yda{bottom:531.975000px;}
.yc0{bottom:538.200000px;}
.y6e{bottom:545.070000px;}
.yc6{bottom:547.020000px;}
.ye4{bottom:548.205000px;}
.y49{bottom:549.435000px;}
.y19{bottom:551.490000px;}
.y3{bottom:554.145000px;}
.y98{bottom:556.485000px;}
.y9f{bottom:557.745000px;}
.y90{bottom:558.150000px;}
.ya8{bottom:560.670000px;}
.yd9{bottom:564.375000px;}
.yf{bottom:573.120000px;}
.y6d{bottom:577.470000px;}
.ye3{bottom:580.605000px;}
.y61{bottom:583.845000px;}
.y3e{bottom:583.890000px;}
.yd8{bottom:596.775000px;}
.y23{bottom:609.810000px;}
.y6c{bottom:609.870000px;}
.y96{bottom:610.890000px;}
.y2{bottom:611.790000px;}
.ye2{bottom:612.645000px;}
.y60{bottom:616.245000px;}
.ye{bottom:616.860000px;}
.yc2{bottom:630.975000px;}
.yd7{bottom:633.675000px;}
.y1{bottom:669.390000px;}
.y7a{bottom:675.330000px;}
.yd{bottom:675.690000px;}
.yc{bottom:734.190000px;}
.yb{bottom:783.570000px;}
.h9{height:50.312812px;}
.h6{height:60.759492px;}
.h23{height:69.996445px;}
.h17{height:71.613281px;}
.h18{height:71.756508px;}
.h22{height:72.801914px;}
.h16{height:73.722656px;}
.h15{height:73.870102px;}
.h8{height:82.107422px;}
.h7{height:82.216898px;}
.h1f{height:88.074000px;}
.h1e{height:88.191432px;}
.ha{height:91.412930px;}
.h25{height:95.245664px;}
.h24{height:95.388891px;}
.h4{height:96.759492px;}
.h5{height:96.868969px;}
.he{height:107.419922px;}
.h10{height:107.563148px;}
.h14{height:110.583984px;}
.hd{height:110.731430px;}
.h1d{height:112.640625px;}
.h20{height:112.790813px;}
.h1c{height:120.704625px;}
.h2{height:146.151211px;}
.h3{height:146.260688px;}
.hb{height:164.214844px;}
.h1b{height:164.324320px;}
.h13{height:201.240000px;}
.h21{height:201.780000px;}
.hc{height:226.980000px;}
.h27{height:288.900000px;}
.h12{height:418.140000px;}
.hf{height:453.780000px;}
.h26{height:472.500000px;}
.h1a{height:597.420000px;}
.h11{height:623.340000px;}
.h19{height:680.580000px;}
.h1{height:810.000000px;}
.h0{height:810.180000px;}
.w9{width:198.720000px;}
.w6{width:201.420000px;}
.w5{width:353.160000px;}
.w7{width:400.320000px;}
.w3{width:445.140000px;}
.w4{width:515.340000px;}
.w8{width:651.960000px;}
.w1{width:1440.000000px;}
.w2{width:1440.359979px;}
.w0{width:1440.360000px;}
.x0{left:0.000000px;}
.x7{left:11.010000px;}
.x40{left:32.399979px;}
.x3f{left:56.339979px;}
.x2{left:57.419979px;}
.x28{left:61.307979px;}
.x1{left:65.303979px;}
.x2c{left:67.211979px;}
.x29{left:69.407979px;}
.x26{left:71.315979px;}
.x27{left:76.787979px;}
.x3{left:89.351979px;}
.x38{left:90.647979px;}
.x2a{left:91.871979px;}
.x2b{left:92.951979px;}
.x52{left:109.547979px;}
.x39{left:110.807979px;}
.xf{left:112.787979px;}
.x4e{left:118.583979px;}
.xb{left:130.247979px;}
.x3a{left:144.647979px;}
.x18{left:147.347979px;}
.x19{left:156.569979px;}
.x53{left:162.689979px;}
.x3b{left:175.109979px;}
.x48{left:256.140000px;}
.x3c{left:257.940000px;}
.x54{left:260.744979px;}
.x20{left:278.564979px;}
.x1f{left:279.824979px;}
.x1c{left:280.904979px;}
.x1a{left:285.374979px;}
.x21{left:289.544979px;}
.x2f{left:295.739979px;}
.x30{left:300.599979px;}
.x3d{left:302.969979px;}
.x31{left:304.199979px;}
.x4c{left:307.109979px;}
.x4b{left:309.089979px;}
.x1b{left:316.904979px;}
.x3e{left:321.689979px;}
.x4f{left:323.849979px;}
.x4d{left:328.709979px;}
.x4a{left:332.534979px;}
.x6{left:409.680000px;}
.x49{left:423.794979px;}
.x15{left:428.969979px;}
.x25{left:435.239979px;}
.x2d{left:436.424979px;}
.x32{left:443.414979px;}
.x33{left:460.514979px;}
.x2e{left:462.884979px;}
.x10{left:471.449979px;}
.x14{left:496.469979px;}
.xd{left:502.769979px;}
.x1d{left:510.329979px;}
.x1e{left:513.389979px;}
.x13{left:515.369979px;}
.x55{left:541.409979px;}
.x8{left:546.329979px;}
.x56{left:558.689979px;}
.xc{left:575.174979px;}
.x22{left:576.569979px;}
.x24{left:580.349979px;}
.x23{left:608.249979px;}
.x35{left:614.309979px;}
.x34{left:615.389979px;}
.x36{left:768.089979px;}
.x37{left:801.929979px;}
.x9{left:854.640000px;}
.x17{left:873.974979px;}
.x12{left:909.794979px;}
.x11{left:916.454979px;}
.x50{left:923.369979px;}
.x16{left:941.474979px;}
.x51{left:944.609979px;}
.xe{left:958.034979px;}
.x4{left:976.679979px;}
.x5{left:1009.079979px;}
.xa{left:1026.794979px;}
.x45{left:1307.549979px;}
.x44{left:1341.209979px;}
.x43{left:1348.769979px;}
.x46{left:1352.309979px;}
.x47{left:1353.929979px;}
.x42{left:1361.489979px;}
.x41{left:1369.049979px;}
@media print{
.v2{vertical-align:-32.000000pt;}
.v5{vertical-align:-19.712000pt;}
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:7.168000pt;}
.v1{vertical-align:32.000000pt;}
.ls22{letter-spacing:-0.417600pt;}
.lsa{letter-spacing:-0.352000pt;}
.ls14{letter-spacing:-0.326933pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls20{letter-spacing:-0.195200pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls26{letter-spacing:-0.170133pt;}
.ls1c{letter-spacing:-0.160000pt;}
.ls1b{letter-spacing:-0.071467pt;}
.ls21{letter-spacing:-0.036213pt;}
.ls8{letter-spacing:-0.032000pt;}
.ls5{letter-spacing:-0.001541pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.035200pt;}
.ls4{letter-spacing:0.039040pt;}
.ls15{letter-spacing:0.057600pt;}
.ls25{letter-spacing:0.091733pt;}
.ls9{letter-spacing:0.096000pt;}
.ls1a{letter-spacing:0.102400pt;}
.ls16{letter-spacing:0.158933pt;}
.lsb{letter-spacing:0.192000pt;}
.ls27{letter-spacing:0.256000pt;}
.ls1f{letter-spacing:0.352000pt;}
.ls17{letter-spacing:17.341440pt;}
.lsc{letter-spacing:19.009536pt;}
.ls24{letter-spacing:19.649536pt;}
.ls12{letter-spacing:21.952000pt;}
.ls2{letter-spacing:22.279040pt;}
.ls1{letter-spacing:22.563200pt;}
.lse{letter-spacing:39.424000pt;}
.ls11{letter-spacing:40.170667pt;}
.ls23{letter-spacing:41.875200pt;}
.ls19{letter-spacing:41.920000pt;}
.ls10{letter-spacing:62.643200pt;}
.lsf{letter-spacing:62.720000pt;}
.lsd{letter-spacing:86.675200pt;}
.ls6{letter-spacing:86.720000pt;}
.ls7{letter-spacing:86.826667pt;}
.ls18{letter-spacing:90.688000pt;}
.ws1b{word-spacing:-39.578368pt;}
.ws1a{word-spacing:-39.552000pt;}
.ws0{word-spacing:-35.201280pt;}
.ws1d{word-spacing:-26.688000pt;}
.ws5{word-spacing:-22.017280pt;}
.ws6{word-spacing:-21.724928pt;}
.ws8{word-spacing:-21.696000pt;}
.ws47{word-spacing:-19.802368pt;}
.ws48{word-spacing:-19.776000pt;}
.ws2a{word-spacing:-19.266048pt;}
.ws2b{word-spacing:-19.237120pt;}
.ws17{word-spacing:-19.225600pt;}
.ws3{word-spacing:-19.200000pt;}
.ws43{word-spacing:-19.189387pt;}
.ws27{word-spacing:-17.024000pt;}
.ws2{word-spacing:-14.660608pt;}
.ws1{word-spacing:-14.634240pt;}
.ws13{word-spacing:-14.464000pt;}
.ws38{word-spacing:-2.432000pt;}
.ws2d{word-spacing:-1.464960pt;}
.ws24{word-spacing:-1.346688pt;}
.ws3c{word-spacing:-1.056000pt;}
.ws14{word-spacing:-0.910080pt;}
.ws41{word-spacing:-0.906667pt;}
.ws12{word-spacing:-0.896000pt;}
.ws15{word-spacing:-0.842667pt;}
.ws3a{word-spacing:-0.672000pt;}
.ws3f{word-spacing:-0.654976pt;}
.ws23{word-spacing:-0.582400pt;}
.ws32{word-spacing:-0.491008pt;}
.ws1e{word-spacing:-0.416000pt;}
.ws45{word-spacing:-0.405333pt;}
.wsf{word-spacing:-0.352000pt;}
.ws10{word-spacing:-0.224000pt;}
.ws30{word-spacing:-0.192000pt;}
.ws39{word-spacing:-0.191829pt;}
.ws20{word-spacing:-0.096128pt;}
.ws21{word-spacing:-0.096000pt;}
.ws2c{word-spacing:-0.086400pt;}
.ws3d{word-spacing:-0.079061pt;}
.wse{word-spacing:-0.068352pt;}
.ws35{word-spacing:-0.055552pt;}
.ws4{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.032000pt;}
.ws7{word-spacing:0.059904pt;}
.ws42{word-spacing:0.060501pt;}
.ws37{word-spacing:0.086144pt;}
.ws3b{word-spacing:0.096000pt;}
.ws1f{word-spacing:0.128000pt;}
.ws2e{word-spacing:0.160000pt;}
.ws26{word-spacing:0.200320pt;}
.wsa{word-spacing:0.256000pt;}
.ws9{word-spacing:0.288000pt;}
.wsb{word-spacing:0.292992pt;}
.ws31{word-spacing:0.394667pt;}
.ws44{word-spacing:0.512000pt;}
.ws46{word-spacing:0.688469pt;}
.ws40{word-spacing:0.704000pt;}
.ws18{word-spacing:0.736000pt;}
.ws16{word-spacing:0.746667pt;}
.ws33{word-spacing:0.768000pt;}
.ws34{word-spacing:0.771243pt;}
.ws11{word-spacing:0.800000pt;}
.ws36{word-spacing:0.838112pt;}
.wsc{word-spacing:1.088000pt;}
.ws29{word-spacing:1.140480pt;}
.ws19{word-spacing:1.216000pt;}
.ws3e{word-spacing:1.546496pt;}
.wsd{word-spacing:1.653333pt;}
.ws28{word-spacing:2.179200pt;}
.ws1c{word-spacing:476.085333pt;}
.ws25{word-spacing:3674.314667pt;}
.ws22{word-spacing:3685.728000pt;}
._7{margin-left:-10.346667pt;}
._3{margin-left:-8.486400pt;}
._8{margin-left:-6.912000pt;}
._6{margin-left:-5.946816pt;}
._4{margin-left:-4.717397pt;}
._5{margin-left:-3.152203pt;}
._1{margin-left:-2.050560pt;}
._0{margin-left:-0.915456pt;}
._2{width:1.068800pt;}
._a{width:2.050560pt;}
._b{width:3.289173pt;}
._f{width:13.920000pt;}
._12{width:15.361717pt;}
._e{width:18.516480pt;}
._10{width:19.605333pt;}
._d{width:20.639616pt;}
._11{width:21.640491pt;}
._9{width:22.752000pt;}
._c{width:33.856000pt;}
._13{width:65.849899pt;}
.fs8{font-size:42.880000pt;}
.fsb{font-size:64.000000pt;}
.fsa{font-size:64.128000pt;}
.fs3{font-size:71.040000pt;}
.fs5{font-size:71.168000pt;}
.fsd{font-size:85.120000pt;}
.fse{font-size:85.248000pt;}
.fs7{font-size:96.000000pt;}
.fs6{font-size:96.128000pt;}
.fs2{font-size:106.880000pt;}
.fs4{font-size:107.008000pt;}
.fs0{font-size:170.880000pt;}
.fs1{font-size:171.008000pt;}
.fs9{font-size:192.000000pt;}
.fsc{font-size:192.128000pt;}
.y0{bottom:0.000000pt;}
.yd3{bottom:0.639973pt;}
.y3a{bottom:16.320000pt;}
.yf2{bottom:18.400000pt;}
.ybb{bottom:19.008000pt;}
.y86{bottom:22.080000pt;}
.yb3{bottom:23.776000pt;}
.y97{bottom:23.936000pt;}
.y8b{bottom:41.280000pt;}
.yf1{bottom:46.880000pt;}
.yd6{bottom:57.344000pt;}
.yf5{bottom:58.080000pt;}
.y5f{bottom:58.368000pt;}
.y3d{bottom:69.824000pt;}
.yf0{bottom:76.000000pt;}
.y5b{bottom:81.824000pt;}
.y57{bottom:82.176000pt;}
.yd4{bottom:82.304027pt;}
.yd0{bottom:82.333333pt;}
.yc5{bottom:82.400000pt;}
.yc1{bottom:82.466667pt;}
.yd5{bottom:82.944000pt;}
.y36{bottom:83.520000pt;}
.y69{bottom:86.880000pt;}
.ycf{bottom:87.040000pt;}
.y5e{bottom:87.168000pt;}
.y7f{bottom:92.733333pt;}
.y3b{bottom:92.768000pt;}
.y37{bottom:92.773333pt;}
.y32{bottom:92.800000pt;}
.y25{bottom:92.826667pt;}
.y7c{bottom:92.893333pt;}
.y22{bottom:92.933333pt;}
.y5a{bottom:101.024000pt;}
.y56{bottom:101.376000pt;}
.yef{bottom:104.800000pt;}
.y3c{bottom:109.088000pt;}
.y79{bottom:110.016000pt;}
.yf4{bottom:115.680000pt;}
.y18{bottom:120.544000pt;}
.y6b{bottom:123.168000pt;}
.yee{bottom:133.312000pt;}
.y85{bottom:137.280000pt;}
.y78{bottom:138.853333pt;}
.yd2{bottom:143.773333pt;}
.y68{bottom:144.480000pt;}
.y39{bottom:147.493333pt;}
.yf3{bottom:150.746667pt;}
.y59{bottom:151.426667pt;}
.y6a{bottom:151.973333pt;}
.y5d{bottom:152.026667pt;}
.ye1{bottom:160.800000pt;}
.yed{bottom:162.426667pt;}
.y17{bottom:163.773333pt;}
.yb7{bottom:166.146667pt;}
.y77{bottom:167.653333pt;}
.ybc{bottom:168.960000pt;}
.yd1{bottom:169.373333pt;}
.y58{bottom:170.653333pt;}
.y5c{bottom:171.226667pt;}
.y67{bottom:173.280000pt;}
.y38{bottom:176.293333pt;}
.yba{bottom:176.613333pt;}
.y83{bottom:179.133333pt;}
.y2a{bottom:179.226667pt;}
.y31{bottom:179.520000pt;}
.y2e{bottom:189.120000pt;}
.ye0{bottom:189.600000pt;}
.ya{bottom:190.106667pt;}
.y8f{bottom:191.586667pt;}
.y76{bottom:196.453333pt;}
.yb6{bottom:201.026667pt;}
.y80{bottom:204.480000pt;}
.ybf{bottom:206.373333pt;}
.y16{bottom:206.973333pt;}
.y8c{bottom:207.906667pt;}
.y81{bottom:207.933333pt;}
.y29{bottom:208.026667pt;}
.yb1{bottom:210.306667pt;}
.y35{bottom:214.693333pt;}
.y20{bottom:215.613333pt;}
.ydf{bottom:218.400000pt;}
.y9{bottom:218.906667pt;}
.yb4{bottom:219.933333pt;}
.y8e{bottom:220.386667pt;}
.yec{bottom:224.026667pt;}
.y75{bottom:225.253333pt;}
.yb5{bottom:228.893333pt;}
.yce{bottom:230.173333pt;}
.ybe{bottom:234.213333pt;}
.yb9{bottom:235.173333pt;}
.ya7{bottom:236.506667pt;}
.yb0{bottom:239.106667pt;}
.y34{bottom:243.520000pt;}
.y1f{bottom:244.413333pt;}
.y41{bottom:245.693333pt;}
.y8{bottom:247.746667pt;}
.y8d{bottom:249.186667pt;}
.y15{bottom:250.173333pt;}
.yeb{bottom:252.826667pt;}
.y44{bottom:252.960000pt;}
.y74{bottom:254.053333pt;}
.y55{bottom:254.906667pt;}
.ycd{bottom:255.773333pt;}
.y28{bottom:256.320000pt;}
.yb8{bottom:263.040000pt;}
.y40{bottom:264.893333pt;}
.ya6{bottom:265.346667pt;}
.y8a{bottom:265.506667pt;}
.yaf{bottom:267.906667pt;}
.y43{bottom:272.160000pt;}
.y33{bottom:272.320000pt;}
.ycc{bottom:281.413333pt;}
.yea{bottom:281.666667pt;}
.y73{bottom:282.880000pt;}
.yde{bottom:284.000000pt;}
.y3f{bottom:284.133333pt;}
.y66{bottom:288.506667pt;}
.y42{bottom:291.360000pt;}
.y9e{bottom:293.026667pt;}
.y14{bottom:293.373333pt;}
.ya5{bottom:294.146667pt;}
.y88{bottom:294.306667pt;}
.yae{bottom:296.706667pt;}
.y2c{bottom:304.320000pt;}
.ye9{bottom:310.466667pt;}
.ydd{bottom:312.826667pt;}
.y89{bottom:316.386667pt;}
.y65{bottom:317.306667pt;}
.y7e{bottom:319.680000pt;}
.y54{bottom:320.666667pt;}
.y9d{bottom:321.826667pt;}
.ya4{bottom:322.946667pt;}
.y87{bottom:323.133333pt;}
.y95{bottom:323.293333pt;}
.yad{bottom:325.506667pt;}
.ycb{bottom:332.613333pt;}
.y7{bottom:336.386667pt;}
.y13{bottom:336.613333pt;}
.ye8{bottom:339.266667pt;}
.y30{bottom:339.520000pt;}
.y53{bottom:339.866667pt;}
.y72{bottom:340.480000pt;}
.ydc{bottom:341.626667pt;}
.y1e{bottom:346.173333pt;}
.y9c{bottom:350.626667pt;}
.ya3{bottom:351.746667pt;}
.y94{bottom:352.093333pt;}
.yac{bottom:354.333333pt;}
.yca{bottom:358.213333pt;}
.y52{bottom:359.066667pt;}
.y2f{bottom:368.346667pt;}
.y6{bottom:368.386667pt;}
.y71{bottom:369.280000pt;}
.y26{bottom:371.520000pt;}
.y48{bottom:372.000000pt;}
.y7b{bottom:372.480000pt;}
.y64{bottom:374.946667pt;}
.y1d{bottom:374.973333pt;}
.y9b{bottom:379.426667pt;}
.y12{bottom:379.813333pt;}
.ya2{bottom:380.546667pt;}
.y93{bottom:380.933333pt;}
.yab{bottom:383.133333pt;}
.y84{bottom:383.613333pt;}
.y4c{bottom:390.746667pt;}
.y47{bottom:391.226667pt;}
.y5{bottom:392.413333pt;}
.y2d{bottom:397.146667pt;}
.y70{bottom:398.080000pt;}
.y4e{bottom:400.826667pt;}
.ye7{bottom:400.866667pt;}
.y63{bottom:403.746667pt;}
.y1c{bottom:403.813333pt;}
.yc4{bottom:403.840000pt;}
.ydb{bottom:407.226667pt;}
.ya1{bottom:409.373333pt;}
.yc9{bottom:409.413333pt;}
.y92{bottom:409.733333pt;}
.y24{bottom:409.920000pt;}
.y4b{bottom:409.946667pt;}
.ybd{bottom:411.613333pt;}
.yb2{bottom:411.933333pt;}
.y82{bottom:412.413333pt;}
.y51{bottom:417.306667pt;}
.y4d{bottom:420.026667pt;}
.y11{bottom:423.013333pt;}
.y4{bottom:424.413333pt;}
.y6f{bottom:426.906667pt;}
.y4a{bottom:429.146667pt;}
.y46{bottom:429.626667pt;}
.ye6{bottom:429.693333pt;}
.y1b{bottom:432.613333pt;}
.yc8{bottom:435.040000pt;}
.y2b{bottom:435.546667pt;}
.y50{bottom:436.506667pt;}
.y9a{bottom:437.053333pt;}
.yaa{bottom:440.733333pt;}
.yc3{bottom:443.200000pt;}
.y45{bottom:448.826667pt;}
.y21{bottom:449.120000pt;}
.y4f{bottom:455.706667pt;}
.ye5{bottom:458.493333pt;}
.yc7{bottom:460.640000pt;}
.y62{bottom:461.346667pt;}
.y1a{bottom:461.413333pt;}
.y27{bottom:464.346667pt;}
.y7d{bottom:465.373333pt;}
.y99{bottom:465.853333pt;}
.y10{bottom:466.240000pt;}
.ya0{bottom:466.973333pt;}
.y91{bottom:467.333333pt;}
.ya9{bottom:469.533333pt;}
.yda{bottom:472.866667pt;}
.yc0{bottom:478.400000pt;}
.y6e{bottom:484.506667pt;}
.yc6{bottom:486.240000pt;}
.ye4{bottom:487.293333pt;}
.y49{bottom:488.386667pt;}
.y19{bottom:490.213333pt;}
.y3{bottom:492.573333pt;}
.y98{bottom:494.653333pt;}
.y9f{bottom:495.773333pt;}
.y90{bottom:496.133333pt;}
.ya8{bottom:498.373333pt;}
.yd9{bottom:501.666667pt;}
.yf{bottom:509.440000pt;}
.y6d{bottom:513.306667pt;}
.ye3{bottom:516.093333pt;}
.y61{bottom:518.973333pt;}
.y3e{bottom:519.013333pt;}
.yd8{bottom:530.466667pt;}
.y23{bottom:542.053333pt;}
.y6c{bottom:542.106667pt;}
.y96{bottom:543.013333pt;}
.y2{bottom:543.813333pt;}
.ye2{bottom:544.573333pt;}
.y60{bottom:547.773333pt;}
.ye{bottom:548.320000pt;}
.yc2{bottom:560.866667pt;}
.yd7{bottom:563.266667pt;}
.y1{bottom:595.013333pt;}
.y7a{bottom:600.293333pt;}
.yd{bottom:600.613333pt;}
.yc{bottom:652.613333pt;}
.yb{bottom:696.506667pt;}
.h9{height:44.722500pt;}
.h6{height:54.008437pt;}
.h23{height:62.219062pt;}
.h17{height:63.656250pt;}
.h18{height:63.783562pt;}
.h22{height:64.712812pt;}
.h16{height:65.531250pt;}
.h15{height:65.662312pt;}
.h8{height:72.984375pt;}
.h7{height:73.081688pt;}
.h1f{height:78.288000pt;}
.h1e{height:78.392384pt;}
.ha{height:81.255937pt;}
.h25{height:84.662813pt;}
.h24{height:84.790125pt;}
.h4{height:86.008437pt;}
.h5{height:86.105750pt;}
.he{height:95.484375pt;}
.h10{height:95.611688pt;}
.h14{height:98.296875pt;}
.hd{height:98.427937pt;}
.h1d{height:100.125000pt;}
.h20{height:100.258500pt;}
.h1c{height:107.293000pt;}
.h2{height:129.912187pt;}
.h3{height:130.009500pt;}
.hb{height:145.968750pt;}
.h1b{height:146.066062pt;}
.h13{height:178.880000pt;}
.h21{height:179.360000pt;}
.hc{height:201.760000pt;}
.h27{height:256.800000pt;}
.h12{height:371.680000pt;}
.hf{height:403.360000pt;}
.h26{height:420.000000pt;}
.h1a{height:531.040000pt;}
.h11{height:554.080000pt;}
.h19{height:604.960000pt;}
.h1{height:720.000000pt;}
.h0{height:720.160000pt;}
.w9{width:176.640000pt;}
.w6{width:179.040000pt;}
.w5{width:313.920000pt;}
.w7{width:355.840000pt;}
.w3{width:395.680000pt;}
.w4{width:458.080000pt;}
.w8{width:579.520000pt;}
.w1{width:1280.000000pt;}
.w2{width:1280.319981pt;}
.w0{width:1280.320000pt;}
.x0{left:0.000000pt;}
.x7{left:9.786667pt;}
.x40{left:28.799981pt;}
.x3f{left:50.079981pt;}
.x2{left:51.039981pt;}
.x28{left:54.495981pt;}
.x1{left:58.047981pt;}
.x2c{left:59.743981pt;}
.x29{left:61.695981pt;}
.x26{left:63.391981pt;}
.x27{left:68.255981pt;}
.x3{left:79.423981pt;}
.x38{left:80.575981pt;}
.x2a{left:81.663981pt;}
.x2b{left:82.623981pt;}
.x52{left:97.375981pt;}
.x39{left:98.495981pt;}
.xf{left:100.255981pt;}
.x4e{left:105.407981pt;}
.xb{left:115.775981pt;}
.x3a{left:128.575981pt;}
.x18{left:130.975981pt;}
.x19{left:139.173314pt;}
.x53{left:144.613314pt;}
.x3b{left:155.653314pt;}
.x48{left:227.680000pt;}
.x3c{left:229.280000pt;}
.x54{left:231.773314pt;}
.x20{left:247.613314pt;}
.x1f{left:248.733314pt;}
.x1c{left:249.693314pt;}
.x1a{left:253.666648pt;}
.x21{left:257.373314pt;}
.x2f{left:262.879981pt;}
.x30{left:267.199981pt;}
.x3d{left:269.306648pt;}
.x31{left:270.399981pt;}
.x4c{left:272.986648pt;}
.x4b{left:274.746648pt;}
.x1b{left:281.693314pt;}
.x3e{left:285.946648pt;}
.x4f{left:287.866648pt;}
.x4d{left:292.186648pt;}
.x4a{left:295.586648pt;}
.x6{left:364.160000pt;}
.x49{left:376.706648pt;}
.x15{left:381.306648pt;}
.x25{left:386.879981pt;}
.x2d{left:387.933314pt;}
.x32{left:394.146648pt;}
.x33{left:409.346648pt;}
.x2e{left:411.453314pt;}
.x10{left:419.066648pt;}
.x14{left:441.306648pt;}
.xd{left:446.906648pt;}
.x1d{left:453.626648pt;}
.x1e{left:456.346648pt;}
.x13{left:458.106648pt;}
.x55{left:481.253314pt;}
.x8{left:485.626648pt;}
.x56{left:496.613314pt;}
.xc{left:511.266648pt;}
.x22{left:512.506648pt;}
.x24{left:515.866648pt;}
.x23{left:540.666648pt;}
.x35{left:546.053314pt;}
.x34{left:547.013314pt;}
.x36{left:682.746648pt;}
.x37{left:712.826648pt;}
.x9{left:759.680000pt;}
.x17{left:776.866648pt;}
.x12{left:808.706648pt;}
.x11{left:814.626648pt;}
.x50{left:820.773314pt;}
.x16{left:836.866648pt;}
.x51{left:839.653314pt;}
.xe{left:851.586648pt;}
.x4{left:868.159981pt;}
.x5{left:896.959981pt;}
.xa{left:912.706648pt;}
.x45{left:1162.266648pt;}
.x44{left:1192.186648pt;}
.x43{left:1198.906648pt;}
.x46{left:1202.053314pt;}
.x47{left:1203.493314pt;}
.x42{left:1210.213314pt;}
.x41{left:1216.933314pt;}
}




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