
    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_8c1eb2f1133c1c8b64d109de.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914000;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_59afbace1111232df2634318.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.094000;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_05db5e618409ce27df16357d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.110000;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_04a4cf6eed99c35e0e951985.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942000;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_e7e70bc52e719f860daddc6e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.984000;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;}
.m2{transform:matrix(0.246202,0.000000,-0.043411,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043411,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043411,0.246202,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,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);}
.m3{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:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.795000px;}
.v3{vertical-align:18.036000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.270000px;}
.ls9{letter-spacing:0.314400px;}
.ls1{letter-spacing:0.315000px;}
.lsb{letter-spacing:1.080000px;}
.ls2{letter-spacing:1.260000px;}
.lsa{letter-spacing:1.575000px;}
.ls6{letter-spacing:5.040000px;}
.ls5{letter-spacing:8.640000px;}
.ls0{letter-spacing:440.028000px;}
.ls4{letter-spacing:1012.113000px;}
.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:-50.112000px;}
.ws0{word-spacing:-46.059726px;}
.ws8{word-spacing:-38.880000px;}
.ws2{word-spacing:-30.240000px;}
.ws9{word-spacing:-16.695000px;}
.ws4{word-spacing:-16.065000px;}
.ws6{word-spacing:-14.400000px;}
.ws7{word-spacing:-13.770000px;}
.ws5{word-spacing:-12.600000px;}
.ws1{word-spacing:0.000000px;}
._14{margin-left:-9.693000px;}
._f{margin-left:-8.640000px;}
._c{margin-left:-7.392000px;}
._4{margin-left:-5.796000px;}
._7{margin-left:-4.725000px;}
._2{margin-left:-2.730000px;}
._0{margin-left:-1.680000px;}
._9{width:1.134000px;}
._5{width:2.310000px;}
._3{width:3.990000px;}
._6{width:5.481000px;}
._b{width:6.930000px;}
._1{width:8.736000px;}
._d{width:10.521000px;}
._a{width:11.592000px;}
._13{width:12.663000px;}
._11{width:13.671000px;}
._12{width:14.931000px;}
._18{width:15.963000px;}
._8{width:17.955000px;}
._10{width:19.131000px;}
._15{width:35.532000px;}
._16{width:36.561000px;}
._17{width:40.932000px;}
._e{width:51.975000px;}
.fc3{color:rgb(44,115,195);}
.fc2{color:rgb(60,60,61);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(189,188,188);}
.fs2{font-size:33.000000px;}
.fs4{font-size:36.000000px;}
.fs1{font-size:42.000000px;}
.fsa{font-size:43.200000px;}
.fs3{font-size:48.000000px;}
.fs9{font-size:50.400000px;}
.fsb{font-size:54.000000px;}
.fs8{font-size:57.600000px;}
.fs5{font-size:63.000000px;}
.fs6{font-size:63.971842px;}
.fs7{font-size:84.000000px;}
.fs0{font-size:312.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:57.666150px;}
.y3{bottom:72.666150px;}
.y6b{bottom:73.825650px;}
.y31{bottom:73.825800px;}
.y133{bottom:73.826250px;}
.y2{bottom:87.666150px;}
.y6a{bottom:88.825650px;}
.y30{bottom:88.825800px;}
.y132{bottom:88.826250px;}
.ye5{bottom:171.144750px;}
.ya0{bottom:172.049400px;}
.y69{bottom:172.049550px;}
.y131{bottom:172.112400px;}
.yb7{bottom:178.286400px;}
.y171{bottom:184.192650px;}
.y2a{bottom:185.066700px;}
.ye4{bottom:186.143250px;}
.y9f{bottom:190.051650px;}
.y68{bottom:190.051800px;}
.y130{bottom:190.114650px;}
.yb6{bottom:196.288650px;}
.y170{bottom:199.191150px;}
.y29{bottom:203.068950px;}
.ye3{bottom:204.516750px;}
.y9e{bottom:208.053900px;}
.y67{bottom:208.054050px;}
.y12f{bottom:208.116900px;}
.y1af{bottom:208.196400px;}
.y16f{bottom:214.189650px;}
.yb5{bottom:214.290900px;}
.y28{bottom:221.071200px;}
.y9d{bottom:226.056150px;}
.y66{bottom:226.056300px;}
.y12e{bottom:226.119150px;}
.y16e{bottom:229.188150px;}
.yb4{bottom:232.293150px;}
.y27{bottom:239.073450px;}
.y9c{bottom:244.058400px;}
.y65{bottom:244.058550px;}
.y12d{bottom:244.121400px;}
.y16d{bottom:244.186650px;}
.y1ae{bottom:244.286400px;}
.yb3{bottom:250.295400px;}
.y26{bottom:257.075700px;}
.y16c{bottom:259.185150px;}
.y1ad{bottom:259.284900px;}
.y9b{bottom:262.060650px;}
.y64{bottom:262.060800px;}
.y12c{bottom:262.123650px;}
.ye2{bottom:263.064150px;}
.yb2{bottom:268.297650px;}
.y16b{bottom:274.183650px;}
.y1ac{bottom:274.283400px;}
.y25{bottom:275.077950px;}
.y9a{bottom:280.062900px;}
.y63{bottom:280.063050px;}
.y12b{bottom:280.125900px;}
.y10a{bottom:280.159650px;}
.ye1{bottom:281.066400px;}
.yb1{bottom:286.299900px;}
.y16a{bottom:289.182150px;}
.y1ab{bottom:289.281900px;}
.y24{bottom:293.080200px;}
.y99{bottom:298.065150px;}
.y62{bottom:298.065300px;}
.y12a{bottom:298.128150px;}
.y109{bottom:298.161900px;}
.ye0{bottom:299.068650px;}
.y169{bottom:304.180650px;}
.y1aa{bottom:304.280400px;}
.yb0{bottom:308.554650px;}
.y98{bottom:316.067400px;}
.y61{bottom:316.067550px;}
.y129{bottom:316.130400px;}
.y108{bottom:316.164150px;}
.ydf{bottom:317.070900px;}
.y168{bottom:319.179150px;}
.y1a9{bottom:319.278900px;}
.y22{bottom:329.008200px;}
.y23{bottom:329.084700px;}
.yaf{bottom:330.809400px;}
.y97{bottom:334.069650px;}
.y60{bottom:334.069800px;}
.y128{bottom:334.132650px;}
.y107{bottom:334.166400px;}
.y167{bottom:334.177650px;}
.y1a8{bottom:334.277400px;}
.yde{bottom:335.073150px;}
.yae{bottom:348.811650px;}
.y166{bottom:349.176150px;}
.y1a7{bottom:349.275900px;}
.y96{bottom:352.071900px;}
.y5f{bottom:352.072050px;}
.y127{bottom:352.134900px;}
.y106{bottom:352.168650px;}
.ydd{bottom:353.075400px;}
.y165{bottom:364.174650px;}
.y1a6{bottom:364.274400px;}
.y95{bottom:370.074150px;}
.y5e{bottom:370.074300px;}
.y105{bottom:370.170900px;}
.yad{bottom:371.066400px;}
.ydc{bottom:371.077650px;}
.y164{bottom:379.173150px;}
.y1a5{bottom:379.272900px;}
.y21{bottom:383.014950px;}
.y94{bottom:388.076400px;}
.y5d{bottom:388.076550px;}
.y126{bottom:388.139400px;}
.y104{bottom:388.170900px;}
.yac{bottom:389.068650px;}
.ydb{bottom:389.079900px;}
.y163{bottom:394.224150px;}
.y1a4{bottom:394.271400px;}
.y20{bottom:401.017200px;}
.y1cf{bottom:401.067300px;}
.y93{bottom:406.078650px;}
.y5c{bottom:406.078800px;}
.yda{bottom:407.082150px;}
.y162{bottom:409.222650px;}
.y1a3{bottom:409.269900px;}
.yab{bottom:411.323400px;}
.y1f{bottom:419.019450px;}
.y92{bottom:424.080900px;}
.y5b{bottom:424.081050px;}
.y103{bottom:424.123650px;}
.y161{bottom:424.221150px;}
.y1a2{bottom:424.268400px;}
.yd9{bottom:425.084400px;}
.yaa{bottom:429.325650px;}
.y1e{bottom:437.021700px;}
.y1ce{bottom:437.071800px;}
.y160{bottom:439.219650px;}
.y1a1{bottom:439.266900px;}
.y91{bottom:442.083150px;}
.y5a{bottom:442.083300px;}
.y102{bottom:442.125900px;}
.y125{bottom:442.146150px;}
.yd8{bottom:443.086650px;}
.ya9{bottom:447.327900px;}
.y15f{bottom:454.218150px;}
.y1a0{bottom:454.265400px;}
.y1d{bottom:455.023950px;}
.y1cd{bottom:455.074050px;}
.y90{bottom:460.085400px;}
.y59{bottom:460.085550px;}
.y101{bottom:460.128150px;}
.y124{bottom:460.148400px;}
.yd7{bottom:461.088900px;}
.ya8{bottom:465.330150px;}
.y15e{bottom:469.216650px;}
.y19f{bottom:469.263900px;}
.y1c{bottom:473.026200px;}
.y1cc{bottom:473.076300px;}
.y8f{bottom:478.087650px;}
.y58{bottom:478.087800px;}
.y100{bottom:478.130400px;}
.y123{bottom:478.150650px;}
.yd6{bottom:479.091150px;}
.y15d{bottom:484.215150px;}
.y19e{bottom:484.262400px;}
.ya7{bottom:487.584900px;}
.y1b{bottom:491.028450px;}
.y1cb{bottom:491.078550px;}
.y8e{bottom:496.089900px;}
.y57{bottom:496.090050px;}
.yff{bottom:496.132650px;}
.y122{bottom:496.152900px;}
.yd5{bottom:497.093400px;}
.y15c{bottom:499.213650px;}
.y19d{bottom:499.260900px;}
.ya6{bottom:505.587150px;}
.y1a{bottom:509.030700px;}
.y1ca{bottom:509.080800px;}
.y8d{bottom:514.092150px;}
.y56{bottom:514.092300px;}
.yfe{bottom:514.134900px;}
.y121{bottom:514.155150px;}
.y15b{bottom:514.212150px;}
.y19c{bottom:514.259400px;}
.yd4{bottom:515.095650px;}
.y19{bottom:527.032950px;}
.y1c9{bottom:527.083050px;}
.ya5{bottom:527.841900px;}
.y15a{bottom:529.210650px;}
.y19b{bottom:529.257900px;}
.y8c{bottom:532.094400px;}
.y55{bottom:532.094550px;}
.yfd{bottom:532.137150px;}
.y120{bottom:532.157400px;}
.yd3{bottom:533.097900px;}
.y159{bottom:544.209150px;}
.y19a{bottom:544.256400px;}
.y18{bottom:545.035200px;}
.y1c8{bottom:545.085300px;}
.ya4{bottom:545.844150px;}
.y8b{bottom:550.096650px;}
.y54{bottom:550.096800px;}
.yfc{bottom:550.139400px;}
.y11f{bottom:550.159650px;}
.yd2{bottom:551.100150px;}
.y158{bottom:559.207650px;}
.y199{bottom:559.254900px;}
.y17{bottom:563.037450px;}
.y1c7{bottom:563.085300px;}
.y8a{bottom:568.098900px;}
.y53{bottom:568.099050px;}
.yfb{bottom:568.141650px;}
.y11e{bottom:568.161900px;}
.yd1{bottom:569.102400px;}
.y157{bottom:574.206150px;}
.y198{bottom:574.253400px;}
.y16{bottom:581.039700px;}
.y89{bottom:586.101150px;}
.y52{bottom:586.101300px;}
.yfa{bottom:586.143900px;}
.y11d{bottom:586.164150px;}
.yd0{bottom:587.104650px;}
.y156{bottom:589.204650px;}
.y197{bottom:589.251900px;}
.y15{bottom:599.041950px;}
.y1c6{bottom:599.058300px;}
.y88{bottom:604.103400px;}
.y51{bottom:604.103550px;}
.yf9{bottom:604.146150px;}
.y11c{bottom:604.166400px;}
.y155{bottom:604.203150px;}
.y196{bottom:604.250400px;}
.ycf{bottom:605.106900px;}
.y14{bottom:617.044200px;}
.y154{bottom:619.201650px;}
.y195{bottom:619.248900px;}
.y87{bottom:622.105650px;}
.y50{bottom:622.105800px;}
.yf8{bottom:622.148400px;}
.y11b{bottom:622.168650px;}
.yce{bottom:623.109150px;}
.y153{bottom:634.200150px;}
.y194{bottom:634.247400px;}
.y13{bottom:635.046450px;}
.y86{bottom:640.107900px;}
.y4f{bottom:640.108050px;}
.yf7{bottom:640.150650px;}
.y11a{bottom:640.170900px;}
.ycd{bottom:641.111400px;}
.y152{bottom:649.198650px;}
.y193{bottom:649.245900px;}
.y12{bottom:653.048700px;}
.y1c5{bottom:653.065050px;}
.y85{bottom:658.110150px;}
.y4e{bottom:658.110300px;}
.yf6{bottom:658.152900px;}
.y119{bottom:658.170900px;}
.ycc{bottom:659.113650px;}
.y151{bottom:664.197150px;}
.y192{bottom:664.244400px;}
.y11{bottom:671.050950px;}
.y1c4{bottom:671.067300px;}
.y84{bottom:676.112400px;}
.y4d{bottom:676.112550px;}
.yf5{bottom:676.155150px;}
.ycb{bottom:677.115900px;}
.y150{bottom:679.195650px;}
.y191{bottom:679.242900px;}
.y10{bottom:689.053200px;}
.y83{bottom:694.114650px;}
.y4c{bottom:694.114800px;}
.y118{bottom:694.141650px;}
.yf4{bottom:694.157400px;}
.y14f{bottom:694.194150px;}
.y190{bottom:694.241400px;}
.yca{bottom:695.118150px;}
.yf{bottom:707.055450px;}
.y1c3{bottom:707.071800px;}
.y14e{bottom:709.192650px;}
.y18f{bottom:709.239900px;}
.y82{bottom:712.116900px;}
.y4b{bottom:712.117050px;}
.y117{bottom:712.143900px;}
.yf3{bottom:712.159650px;}
.yc9{bottom:713.120400px;}
.y14d{bottom:724.191150px;}
.y18e{bottom:724.238400px;}
.ye{bottom:725.057700px;}
.y1c2{bottom:725.074050px;}
.y81{bottom:730.119150px;}
.y4a{bottom:730.119300px;}
.y116{bottom:730.146150px;}
.yf2{bottom:730.161900px;}
.yc8{bottom:731.122650px;}
.y14c{bottom:739.189650px;}
.y18d{bottom:739.236900px;}
.yd{bottom:743.059950px;}
.y1c1{bottom:743.076300px;}
.y80{bottom:748.121400px;}
.y49{bottom:748.121550px;}
.y115{bottom:748.148400px;}
.yf1{bottom:748.164150px;}
.yc7{bottom:749.124900px;}
.y14b{bottom:754.188150px;}
.y18c{bottom:754.235400px;}
.y1c0{bottom:761.078550px;}
.ya3{bottom:766.123650px;}
.y48{bottom:766.123800px;}
.y114{bottom:766.150650px;}
.yf0{bottom:766.166400px;}
.yc6{bottom:767.127150px;}
.y14a{bottom:769.186650px;}
.y18b{bottom:769.233900px;}
.yc{bottom:779.064450px;}
.y1bf{bottom:779.080800px;}
.y7f{bottom:784.125900px;}
.y47{bottom:784.126050px;}
.y113{bottom:784.152900px;}
.yef{bottom:784.168650px;}
.y149{bottom:784.185150px;}
.y18a{bottom:784.232400px;}
.yc5{bottom:785.129400px;}
.y1be{bottom:797.083050px;}
.y148{bottom:799.183650px;}
.y189{bottom:799.230900px;}
.ya2{bottom:802.128150px;}
.y46{bottom:802.128300px;}
.y112{bottom:802.155150px;}
.yee{bottom:802.170900px;}
.yc4{bottom:803.131650px;}
.y147{bottom:814.182150px;}
.y188{bottom:814.229400px;}
.y1bd{bottom:815.085300px;}
.ya1{bottom:820.130400px;}
.y45{bottom:820.130550px;}
.y111{bottom:820.157400px;}
.yed{bottom:820.175400px;}
.yc3{bottom:821.133900px;}
.y146{bottom:829.180650px;}
.y187{bottom:829.227900px;}
.yb{bottom:833.071200px;}
.y1bc{bottom:833.085300px;}
.y7e{bottom:838.132650px;}
.y44{bottom:838.132800px;}
.y110{bottom:838.159650px;}
.y1d9{bottom:838.162650px;}
.yec{bottom:838.170900px;}
.yc2{bottom:839.136150px;}
.y145{bottom:844.179150px;}
.y186{bottom:844.226400px;}
.ya{bottom:851.073450px;}
.y7d{bottom:856.134900px;}
.y43{bottom:856.135050px;}
.y10f{bottom:856.161900px;}
.y1d8{bottom:856.164900px;}
.yc1{bottom:857.138400px;}
.y144{bottom:859.177650px;}
.y185{bottom:859.224900px;}
.y1bb{bottom:869.058300px;}
.y9{bottom:869.075700px;}
.y7c{bottom:874.137150px;}
.y42{bottom:874.137300px;}
.yeb{bottom:874.161900px;}
.y10e{bottom:874.164150px;}
.y1d7{bottom:874.167150px;}
.y143{bottom:874.176150px;}
.y184{bottom:874.223400px;}
.yc0{bottom:879.393150px;}
.y8{bottom:887.077950px;}
.y183{bottom:889.221900px;}
.y7b{bottom:892.139400px;}
.y41{bottom:892.139550px;}
.yea{bottom:892.164150px;}
.y10d{bottom:892.166400px;}
.y1d6{bottom:892.169400px;}
.y142{bottom:892.171650px;}
.ybf{bottom:897.395400px;}
.y182{bottom:904.220400px;}
.y7{bottom:905.080200px;}
.y7a{bottom:910.141650px;}
.y40{bottom:910.141800px;}
.ye9{bottom:910.166400px;}
.y10c{bottom:910.168650px;}
.y1d5{bottom:910.171650px;}
.y181{bottom:919.218900px;}
.ybe{bottom:919.650150px;}
.y1ba{bottom:923.065050px;}
.y6{bottom:923.082450px;}
.y79{bottom:928.143900px;}
.y3f{bottom:928.144050px;}
.y141{bottom:928.144650px;}
.ye8{bottom:928.168650px;}
.y10b{bottom:928.170900px;}
.y180{bottom:934.217400px;}
.ybd{bottom:937.652400px;}
.y1b9{bottom:941.067300px;}
.y5{bottom:941.084700px;}
.y78{bottom:946.146150px;}
.y3e{bottom:946.146300px;}
.y140{bottom:946.146900px;}
.y1d4{bottom:946.162650px;}
.ye7{bottom:946.170900px;}
.y17f{bottom:949.215900px;}
.ybc{bottom:959.907150px;}
.y77{bottom:964.148400px;}
.y3d{bottom:964.148550px;}
.y13f{bottom:964.149150px;}
.y1d3{bottom:964.164900px;}
.ye6{bottom:964.170900px;}
.y17e{bottom:964.214400px;}
.y1b8{bottom:977.071800px;}
.y17d{bottom:979.212900px;}
.y76{bottom:982.150650px;}
.y3c{bottom:982.150800px;}
.y13e{bottom:982.151400px;}
.ybb{bottom:982.161900px;}
.y1d2{bottom:982.167150px;}
.y17c{bottom:994.211400px;}
.y1b7{bottom:995.074050px;}
.y2f{bottom:995.080200px;}
.y75{bottom:1000.152900px;}
.y3b{bottom:1000.153050px;}
.y13d{bottom:1000.153650px;}
.yba{bottom:1000.164150px;}
.y1d1{bottom:1000.169400px;}
.y17b{bottom:1009.209900px;}
.y1b6{bottom:1013.076300px;}
.y2e{bottom:1013.082450px;}
.y74{bottom:1018.155150px;}
.y3a{bottom:1018.155300px;}
.y13c{bottom:1018.155900px;}
.yb9{bottom:1018.166400px;}
.y1d0{bottom:1018.171650px;}
.y17a{bottom:1024.208400px;}
.y1b5{bottom:1031.078550px;}
.y2d{bottom:1031.084700px;}
.y73{bottom:1036.157400px;}
.y39{bottom:1036.157550px;}
.y13b{bottom:1036.158150px;}
.yb8{bottom:1036.168650px;}
.y179{bottom:1039.206900px;}
.y1b4{bottom:1049.080800px;}
.y72{bottom:1054.159650px;}
.y38{bottom:1054.159800px;}
.y13a{bottom:1054.160400px;}
.y178{bottom:1054.205400px;}
.y1b3{bottom:1067.083050px;}
.y177{bottom:1069.203900px;}
.y71{bottom:1072.161900px;}
.y37{bottom:1072.162050px;}
.y139{bottom:1072.162650px;}
.y176{bottom:1084.202400px;}
.y1b2{bottom:1085.085300px;}
.y70{bottom:1090.164150px;}
.y36{bottom:1090.164300px;}
.y138{bottom:1090.164900px;}
.y2c{bottom:1092.330900px;}
.y175{bottom:1099.200900px;}
.y1b1{bottom:1103.085300px;}
.y6f{bottom:1108.166400px;}
.y35{bottom:1108.166550px;}
.y137{bottom:1108.167150px;}
.y174{bottom:1114.199400px;}
.y2b{bottom:1117.824900px;}
.y6e{bottom:1126.168650px;}
.y34{bottom:1126.168800px;}
.y136{bottom:1126.169400px;}
.y173{bottom:1129.197900px;}
.y1b0{bottom:1139.085300px;}
.y6d{bottom:1144.170900px;}
.y33{bottom:1144.171050px;}
.y135{bottom:1144.171650px;}
.y172{bottom:1144.196400px;}
.y1{bottom:1145.578800px;}
.y6c{bottom:1221.879150px;}
.y32{bottom:1221.879300px;}
.y134{bottom:1221.879900px;}
.h5{height:26.676000px;}
.h3{height:31.122000px;}
.h4{height:35.568000px;}
.hd{height:36.331200px;}
.hf{height:40.014000px;}
.hb{height:42.681600px;}
.he{height:45.414000px;}
.h7{height:46.683000px;}
.h12{height:46.809000px;}
.h9{height:47.403135px;}
.h6{height:50.967000px;}
.h11{height:52.773000px;}
.h8{height:52.983000px;}
.hc{height:58.181400px;}
.ha{height:62.412000px;}
.h10{height:66.477600px;}
.h2{height:231.192000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:108.425100px;}
.x1{left:118.695900px;}
.x4{left:126.285750px;}
.x5{left:127.561500px;}
.xb{left:133.530750px;}
.xa{left:171.787500px;}
.x8{left:243.263250px;}
.x9{left:370.373100px;}
.x6{left:405.850650px;}
.x7{left:517.594350px;}
.x3{left:646.873650px;}
@media print{
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.040000pt;}
.v3{vertical-align:16.032000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.240000pt;}
.ls9{letter-spacing:0.279467pt;}
.ls1{letter-spacing:0.280000pt;}
.lsb{letter-spacing:0.960000pt;}
.ls2{letter-spacing:1.120000pt;}
.lsa{letter-spacing:1.400000pt;}
.ls6{letter-spacing:4.480000pt;}
.ls5{letter-spacing:7.680000pt;}
.ls0{letter-spacing:391.136000pt;}
.ls4{letter-spacing:899.656000pt;}
.ws3{word-spacing:-44.544000pt;}
.ws0{word-spacing:-40.941979pt;}
.ws8{word-spacing:-34.560000pt;}
.ws2{word-spacing:-26.880000pt;}
.ws9{word-spacing:-14.840000pt;}
.ws4{word-spacing:-14.280000pt;}
.ws6{word-spacing:-12.800000pt;}
.ws7{word-spacing:-12.240000pt;}
.ws5{word-spacing:-11.200000pt;}
.ws1{word-spacing:0.000000pt;}
._14{margin-left:-8.616000pt;}
._f{margin-left:-7.680000pt;}
._c{margin-left:-6.570667pt;}
._4{margin-left:-5.152000pt;}
._7{margin-left:-4.200000pt;}
._2{margin-left:-2.426667pt;}
._0{margin-left:-1.493333pt;}
._9{width:1.008000pt;}
._5{width:2.053333pt;}
._3{width:3.546667pt;}
._6{width:4.872000pt;}
._b{width:6.160000pt;}
._1{width:7.765333pt;}
._d{width:9.352000pt;}
._a{width:10.304000pt;}
._13{width:11.256000pt;}
._11{width:12.152000pt;}
._12{width:13.272000pt;}
._18{width:14.189333pt;}
._8{width:15.960000pt;}
._10{width:17.005333pt;}
._15{width:31.584000pt;}
._16{width:32.498667pt;}
._17{width:36.384000pt;}
._e{width:46.200000pt;}
.fs2{font-size:29.333333pt;}
.fs4{font-size:32.000000pt;}
.fs1{font-size:37.333333pt;}
.fsa{font-size:38.400000pt;}
.fs3{font-size:42.666667pt;}
.fs9{font-size:44.800000pt;}
.fsb{font-size:48.000000pt;}
.fs8{font-size:51.200000pt;}
.fs5{font-size:56.000000pt;}
.fs6{font-size:56.863859pt;}
.fs7{font-size:74.666667pt;}
.fs0{font-size:277.333333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:51.258800pt;}
.y3{bottom:64.592133pt;}
.y6b{bottom:65.622800pt;}
.y31{bottom:65.622933pt;}
.y133{bottom:65.623333pt;}
.y2{bottom:77.925467pt;}
.y6a{bottom:78.956133pt;}
.y30{bottom:78.956267pt;}
.y132{bottom:78.956667pt;}
.ye5{bottom:152.128667pt;}
.ya0{bottom:152.932800pt;}
.y69{bottom:152.932933pt;}
.y131{bottom:152.988800pt;}
.yb7{bottom:158.476800pt;}
.y171{bottom:163.726800pt;}
.y2a{bottom:164.503733pt;}
.ye4{bottom:165.460667pt;}
.y9f{bottom:168.934800pt;}
.y68{bottom:168.934933pt;}
.y130{bottom:168.990800pt;}
.yb6{bottom:174.478800pt;}
.y170{bottom:177.058800pt;}
.y29{bottom:180.505733pt;}
.ye3{bottom:181.792667pt;}
.y9e{bottom:184.936800pt;}
.y67{bottom:184.936933pt;}
.y12f{bottom:184.992800pt;}
.y1af{bottom:185.063467pt;}
.y16f{bottom:190.390800pt;}
.yb5{bottom:190.480800pt;}
.y28{bottom:196.507733pt;}
.y9d{bottom:200.938800pt;}
.y66{bottom:200.938933pt;}
.y12e{bottom:200.994800pt;}
.y16e{bottom:203.722800pt;}
.yb4{bottom:206.482800pt;}
.y27{bottom:212.509733pt;}
.y9c{bottom:216.940800pt;}
.y65{bottom:216.940933pt;}
.y12d{bottom:216.996800pt;}
.y16d{bottom:217.054800pt;}
.y1ae{bottom:217.143467pt;}
.yb3{bottom:222.484800pt;}
.y26{bottom:228.511733pt;}
.y16c{bottom:230.386800pt;}
.y1ad{bottom:230.475467pt;}
.y9b{bottom:232.942800pt;}
.y64{bottom:232.942933pt;}
.y12c{bottom:232.998800pt;}
.ye2{bottom:233.834800pt;}
.yb2{bottom:238.486800pt;}
.y16b{bottom:243.718800pt;}
.y1ac{bottom:243.807467pt;}
.y25{bottom:244.513733pt;}
.y9a{bottom:248.944800pt;}
.y63{bottom:248.944933pt;}
.y12b{bottom:249.000800pt;}
.y10a{bottom:249.030800pt;}
.ye1{bottom:249.836800pt;}
.yb1{bottom:254.488800pt;}
.y16a{bottom:257.050800pt;}
.y1ab{bottom:257.139467pt;}
.y24{bottom:260.515733pt;}
.y99{bottom:264.946800pt;}
.y62{bottom:264.946933pt;}
.y12a{bottom:265.002800pt;}
.y109{bottom:265.032800pt;}
.ye0{bottom:265.838800pt;}
.y169{bottom:270.382800pt;}
.y1aa{bottom:270.471467pt;}
.yb0{bottom:274.270800pt;}
.y98{bottom:280.948800pt;}
.y61{bottom:280.948933pt;}
.y129{bottom:281.004800pt;}
.y108{bottom:281.034800pt;}
.ydf{bottom:281.840800pt;}
.y168{bottom:283.714800pt;}
.y1a9{bottom:283.803467pt;}
.y22{bottom:292.451733pt;}
.y23{bottom:292.519733pt;}
.yaf{bottom:294.052800pt;}
.y97{bottom:296.950800pt;}
.y60{bottom:296.950933pt;}
.y128{bottom:297.006800pt;}
.y107{bottom:297.036800pt;}
.y167{bottom:297.046800pt;}
.y1a8{bottom:297.135467pt;}
.yde{bottom:297.842800pt;}
.yae{bottom:310.054800pt;}
.y166{bottom:310.378800pt;}
.y1a7{bottom:310.467467pt;}
.y96{bottom:312.952800pt;}
.y5f{bottom:312.952933pt;}
.y127{bottom:313.008800pt;}
.y106{bottom:313.038800pt;}
.ydd{bottom:313.844800pt;}
.y165{bottom:323.710800pt;}
.y1a6{bottom:323.799467pt;}
.y95{bottom:328.954800pt;}
.y5e{bottom:328.954933pt;}
.y105{bottom:329.040800pt;}
.yad{bottom:329.836800pt;}
.ydc{bottom:329.846800pt;}
.y164{bottom:337.042800pt;}
.y1a5{bottom:337.131467pt;}
.y21{bottom:340.457733pt;}
.y94{bottom:344.956800pt;}
.y5d{bottom:344.956933pt;}
.y126{bottom:345.012800pt;}
.y104{bottom:345.040800pt;}
.yac{bottom:345.838800pt;}
.ydb{bottom:345.848800pt;}
.y163{bottom:350.421467pt;}
.y1a4{bottom:350.463467pt;}
.y20{bottom:356.459733pt;}
.y1cf{bottom:356.504267pt;}
.y93{bottom:360.958800pt;}
.y5c{bottom:360.958933pt;}
.yda{bottom:361.850800pt;}
.y162{bottom:363.753467pt;}
.y1a3{bottom:363.795467pt;}
.yab{bottom:365.620800pt;}
.y1f{bottom:372.461733pt;}
.y92{bottom:376.960800pt;}
.y5b{bottom:376.960933pt;}
.y103{bottom:376.998800pt;}
.y161{bottom:377.085467pt;}
.y1a2{bottom:377.127467pt;}
.yd9{bottom:377.852800pt;}
.yaa{bottom:381.622800pt;}
.y1e{bottom:388.463733pt;}
.y1ce{bottom:388.508267pt;}
.y160{bottom:390.417467pt;}
.y1a1{bottom:390.459467pt;}
.y91{bottom:392.962800pt;}
.y5a{bottom:392.962933pt;}
.y102{bottom:393.000800pt;}
.y125{bottom:393.018800pt;}
.yd8{bottom:393.854800pt;}
.ya9{bottom:397.624800pt;}
.y15f{bottom:403.749467pt;}
.y1a0{bottom:403.791467pt;}
.y1d{bottom:404.465733pt;}
.y1cd{bottom:404.510267pt;}
.y90{bottom:408.964800pt;}
.y59{bottom:408.964933pt;}
.y101{bottom:409.002800pt;}
.y124{bottom:409.020800pt;}
.yd7{bottom:409.856800pt;}
.ya8{bottom:413.626800pt;}
.y15e{bottom:417.081467pt;}
.y19f{bottom:417.123467pt;}
.y1c{bottom:420.467733pt;}
.y1cc{bottom:420.512267pt;}
.y8f{bottom:424.966800pt;}
.y58{bottom:424.966933pt;}
.y100{bottom:425.004800pt;}
.y123{bottom:425.022800pt;}
.yd6{bottom:425.858800pt;}
.y15d{bottom:430.413467pt;}
.y19e{bottom:430.455467pt;}
.ya7{bottom:433.408800pt;}
.y1b{bottom:436.469733pt;}
.y1cb{bottom:436.514267pt;}
.y8e{bottom:440.968800pt;}
.y57{bottom:440.968933pt;}
.yff{bottom:441.006800pt;}
.y122{bottom:441.024800pt;}
.yd5{bottom:441.860800pt;}
.y15c{bottom:443.745467pt;}
.y19d{bottom:443.787467pt;}
.ya6{bottom:449.410800pt;}
.y1a{bottom:452.471733pt;}
.y1ca{bottom:452.516267pt;}
.y8d{bottom:456.970800pt;}
.y56{bottom:456.970933pt;}
.yfe{bottom:457.008800pt;}
.y121{bottom:457.026800pt;}
.y15b{bottom:457.077467pt;}
.y19c{bottom:457.119467pt;}
.yd4{bottom:457.862800pt;}
.y19{bottom:468.473733pt;}
.y1c9{bottom:468.518267pt;}
.ya5{bottom:469.192800pt;}
.y15a{bottom:470.409467pt;}
.y19b{bottom:470.451467pt;}
.y8c{bottom:472.972800pt;}
.y55{bottom:472.972933pt;}
.yfd{bottom:473.010800pt;}
.y120{bottom:473.028800pt;}
.yd3{bottom:473.864800pt;}
.y159{bottom:483.741467pt;}
.y19a{bottom:483.783467pt;}
.y18{bottom:484.475733pt;}
.y1c8{bottom:484.520267pt;}
.ya4{bottom:485.194800pt;}
.y8b{bottom:488.974800pt;}
.y54{bottom:488.974933pt;}
.yfc{bottom:489.012800pt;}
.y11f{bottom:489.030800pt;}
.yd2{bottom:489.866800pt;}
.y158{bottom:497.073467pt;}
.y199{bottom:497.115467pt;}
.y17{bottom:500.477733pt;}
.y1c7{bottom:500.520267pt;}
.y8a{bottom:504.976800pt;}
.y53{bottom:504.976933pt;}
.yfb{bottom:505.014800pt;}
.y11e{bottom:505.032800pt;}
.yd1{bottom:505.868800pt;}
.y157{bottom:510.405467pt;}
.y198{bottom:510.447467pt;}
.y16{bottom:516.479733pt;}
.y89{bottom:520.978800pt;}
.y52{bottom:520.978933pt;}
.yfa{bottom:521.016800pt;}
.y11d{bottom:521.034800pt;}
.yd0{bottom:521.870800pt;}
.y156{bottom:523.737467pt;}
.y197{bottom:523.779467pt;}
.y15{bottom:532.481733pt;}
.y1c6{bottom:532.496267pt;}
.y88{bottom:536.980800pt;}
.y51{bottom:536.980933pt;}
.yf9{bottom:537.018800pt;}
.y11c{bottom:537.036800pt;}
.y155{bottom:537.069467pt;}
.y196{bottom:537.111467pt;}
.ycf{bottom:537.872800pt;}
.y14{bottom:548.483733pt;}
.y154{bottom:550.401467pt;}
.y195{bottom:550.443467pt;}
.y87{bottom:552.982800pt;}
.y50{bottom:552.982933pt;}
.yf8{bottom:553.020800pt;}
.y11b{bottom:553.038800pt;}
.yce{bottom:553.874800pt;}
.y153{bottom:563.733467pt;}
.y194{bottom:563.775467pt;}
.y13{bottom:564.485733pt;}
.y86{bottom:568.984800pt;}
.y4f{bottom:568.984933pt;}
.yf7{bottom:569.022800pt;}
.y11a{bottom:569.040800pt;}
.ycd{bottom:569.876800pt;}
.y152{bottom:577.065467pt;}
.y193{bottom:577.107467pt;}
.y12{bottom:580.487733pt;}
.y1c5{bottom:580.502267pt;}
.y85{bottom:584.986800pt;}
.y4e{bottom:584.986933pt;}
.yf6{bottom:585.024800pt;}
.y119{bottom:585.040800pt;}
.ycc{bottom:585.878800pt;}
.y151{bottom:590.397467pt;}
.y192{bottom:590.439467pt;}
.y11{bottom:596.489733pt;}
.y1c4{bottom:596.504267pt;}
.y84{bottom:600.988800pt;}
.y4d{bottom:600.988933pt;}
.yf5{bottom:601.026800pt;}
.ycb{bottom:601.880800pt;}
.y150{bottom:603.729467pt;}
.y191{bottom:603.771467pt;}
.y10{bottom:612.491733pt;}
.y83{bottom:616.990800pt;}
.y4c{bottom:616.990933pt;}
.y118{bottom:617.014800pt;}
.yf4{bottom:617.028800pt;}
.y14f{bottom:617.061467pt;}
.y190{bottom:617.103467pt;}
.yca{bottom:617.882800pt;}
.yf{bottom:628.493733pt;}
.y1c3{bottom:628.508267pt;}
.y14e{bottom:630.393467pt;}
.y18f{bottom:630.435467pt;}
.y82{bottom:632.992800pt;}
.y4b{bottom:632.992933pt;}
.y117{bottom:633.016800pt;}
.yf3{bottom:633.030800pt;}
.yc9{bottom:633.884800pt;}
.y14d{bottom:643.725467pt;}
.y18e{bottom:643.767467pt;}
.ye{bottom:644.495733pt;}
.y1c2{bottom:644.510267pt;}
.y81{bottom:648.994800pt;}
.y4a{bottom:648.994933pt;}
.y116{bottom:649.018800pt;}
.yf2{bottom:649.032800pt;}
.yc8{bottom:649.886800pt;}
.y14c{bottom:657.057467pt;}
.y18d{bottom:657.099467pt;}
.yd{bottom:660.497733pt;}
.y1c1{bottom:660.512267pt;}
.y80{bottom:664.996800pt;}
.y49{bottom:664.996933pt;}
.y115{bottom:665.020800pt;}
.yf1{bottom:665.034800pt;}
.yc7{bottom:665.888800pt;}
.y14b{bottom:670.389467pt;}
.y18c{bottom:670.431467pt;}
.y1c0{bottom:676.514267pt;}
.ya3{bottom:680.998800pt;}
.y48{bottom:680.998933pt;}
.y114{bottom:681.022800pt;}
.yf0{bottom:681.036800pt;}
.yc6{bottom:681.890800pt;}
.y14a{bottom:683.721467pt;}
.y18b{bottom:683.763467pt;}
.yc{bottom:692.501733pt;}
.y1bf{bottom:692.516267pt;}
.y7f{bottom:697.000800pt;}
.y47{bottom:697.000933pt;}
.y113{bottom:697.024800pt;}
.yef{bottom:697.038800pt;}
.y149{bottom:697.053467pt;}
.y18a{bottom:697.095467pt;}
.yc5{bottom:697.892800pt;}
.y1be{bottom:708.518267pt;}
.y148{bottom:710.385467pt;}
.y189{bottom:710.427467pt;}
.ya2{bottom:713.002800pt;}
.y46{bottom:713.002933pt;}
.y112{bottom:713.026800pt;}
.yee{bottom:713.040800pt;}
.yc4{bottom:713.894800pt;}
.y147{bottom:723.717467pt;}
.y188{bottom:723.759467pt;}
.y1bd{bottom:724.520267pt;}
.ya1{bottom:729.004800pt;}
.y45{bottom:729.004933pt;}
.y111{bottom:729.028800pt;}
.yed{bottom:729.044800pt;}
.yc3{bottom:729.896800pt;}
.y146{bottom:737.049467pt;}
.y187{bottom:737.091467pt;}
.yb{bottom:740.507733pt;}
.y1bc{bottom:740.520267pt;}
.y7e{bottom:745.006800pt;}
.y44{bottom:745.006933pt;}
.y110{bottom:745.030800pt;}
.y1d9{bottom:745.033467pt;}
.yec{bottom:745.040800pt;}
.yc2{bottom:745.898800pt;}
.y145{bottom:750.381467pt;}
.y186{bottom:750.423467pt;}
.ya{bottom:756.509733pt;}
.y7d{bottom:761.008800pt;}
.y43{bottom:761.008933pt;}
.y10f{bottom:761.032800pt;}
.y1d8{bottom:761.035467pt;}
.yc1{bottom:761.900800pt;}
.y144{bottom:763.713467pt;}
.y185{bottom:763.755467pt;}
.y1bb{bottom:772.496267pt;}
.y9{bottom:772.511733pt;}
.y7c{bottom:777.010800pt;}
.y42{bottom:777.010933pt;}
.yeb{bottom:777.032800pt;}
.y10e{bottom:777.034800pt;}
.y1d7{bottom:777.037467pt;}
.y143{bottom:777.045467pt;}
.y184{bottom:777.087467pt;}
.yc0{bottom:781.682800pt;}
.y8{bottom:788.513733pt;}
.y183{bottom:790.419467pt;}
.y7b{bottom:793.012800pt;}
.y41{bottom:793.012933pt;}
.yea{bottom:793.034800pt;}
.y10d{bottom:793.036800pt;}
.y1d6{bottom:793.039467pt;}
.y142{bottom:793.041467pt;}
.ybf{bottom:797.684800pt;}
.y182{bottom:803.751467pt;}
.y7{bottom:804.515733pt;}
.y7a{bottom:809.014800pt;}
.y40{bottom:809.014933pt;}
.ye9{bottom:809.036800pt;}
.y10c{bottom:809.038800pt;}
.y1d5{bottom:809.041467pt;}
.y181{bottom:817.083467pt;}
.ybe{bottom:817.466800pt;}
.y1ba{bottom:820.502267pt;}
.y6{bottom:820.517733pt;}
.y79{bottom:825.016800pt;}
.y3f{bottom:825.016933pt;}
.y141{bottom:825.017467pt;}
.ye8{bottom:825.038800pt;}
.y10b{bottom:825.040800pt;}
.y180{bottom:830.415467pt;}
.ybd{bottom:833.468800pt;}
.y1b9{bottom:836.504267pt;}
.y5{bottom:836.519733pt;}
.y78{bottom:841.018800pt;}
.y3e{bottom:841.018933pt;}
.y140{bottom:841.019467pt;}
.y1d4{bottom:841.033467pt;}
.ye7{bottom:841.040800pt;}
.y17f{bottom:843.747467pt;}
.ybc{bottom:853.250800pt;}
.y77{bottom:857.020800pt;}
.y3d{bottom:857.020933pt;}
.y13f{bottom:857.021467pt;}
.y1d3{bottom:857.035467pt;}
.ye6{bottom:857.040800pt;}
.y17e{bottom:857.079467pt;}
.y1b8{bottom:868.508267pt;}
.y17d{bottom:870.411467pt;}
.y76{bottom:873.022800pt;}
.y3c{bottom:873.022933pt;}
.y13e{bottom:873.023467pt;}
.ybb{bottom:873.032800pt;}
.y1d2{bottom:873.037467pt;}
.y17c{bottom:883.743467pt;}
.y1b7{bottom:884.510267pt;}
.y2f{bottom:884.515733pt;}
.y75{bottom:889.024800pt;}
.y3b{bottom:889.024933pt;}
.y13d{bottom:889.025467pt;}
.yba{bottom:889.034800pt;}
.y1d1{bottom:889.039467pt;}
.y17b{bottom:897.075467pt;}
.y1b6{bottom:900.512267pt;}
.y2e{bottom:900.517733pt;}
.y74{bottom:905.026800pt;}
.y3a{bottom:905.026933pt;}
.y13c{bottom:905.027467pt;}
.yb9{bottom:905.036800pt;}
.y1d0{bottom:905.041467pt;}
.y17a{bottom:910.407467pt;}
.y1b5{bottom:916.514267pt;}
.y2d{bottom:916.519733pt;}
.y73{bottom:921.028800pt;}
.y39{bottom:921.028933pt;}
.y13b{bottom:921.029467pt;}
.yb8{bottom:921.038800pt;}
.y179{bottom:923.739467pt;}
.y1b4{bottom:932.516267pt;}
.y72{bottom:937.030800pt;}
.y38{bottom:937.030933pt;}
.y13a{bottom:937.031467pt;}
.y178{bottom:937.071467pt;}
.y1b3{bottom:948.518267pt;}
.y177{bottom:950.403467pt;}
.y71{bottom:953.032800pt;}
.y37{bottom:953.032933pt;}
.y139{bottom:953.033467pt;}
.y176{bottom:963.735467pt;}
.y1b2{bottom:964.520267pt;}
.y70{bottom:969.034800pt;}
.y36{bottom:969.034933pt;}
.y138{bottom:969.035467pt;}
.y2c{bottom:970.960800pt;}
.y175{bottom:977.067467pt;}
.y1b1{bottom:980.520267pt;}
.y6f{bottom:985.036800pt;}
.y35{bottom:985.036933pt;}
.y137{bottom:985.037467pt;}
.y174{bottom:990.399467pt;}
.y2b{bottom:993.622133pt;}
.y6e{bottom:1001.038800pt;}
.y34{bottom:1001.038933pt;}
.y136{bottom:1001.039467pt;}
.y173{bottom:1003.731467pt;}
.y1b0{bottom:1012.520267pt;}
.y6d{bottom:1017.040800pt;}
.y33{bottom:1017.040933pt;}
.y135{bottom:1017.041467pt;}
.y172{bottom:1017.063467pt;}
.y1{bottom:1018.292267pt;}
.y6c{bottom:1086.114800pt;}
.y32{bottom:1086.114933pt;}
.y134{bottom:1086.115467pt;}
.h5{height:23.712000pt;}
.h3{height:27.664000pt;}
.h4{height:31.616000pt;}
.hd{height:32.294400pt;}
.hf{height:35.568000pt;}
.hb{height:37.939200pt;}
.he{height:40.368000pt;}
.h7{height:41.496000pt;}
.h12{height:41.608000pt;}
.h9{height:42.136120pt;}
.h6{height:45.304000pt;}
.h11{height:46.909333pt;}
.h8{height:47.096000pt;}
.hc{height:51.716800pt;}
.ha{height:55.477333pt;}
.h10{height:59.091200pt;}
.h2{height:205.504000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.377867pt;}
.x1{left:105.507467pt;}
.x4{left:112.254000pt;}
.x5{left:113.388000pt;}
.xb{left:118.694000pt;}
.xa{left:152.700000pt;}
.x8{left:216.234000pt;}
.x9{left:329.220533pt;}
.x6{left:360.756133pt;}
.x7{left:460.083867pt;}
.x3{left:574.998800pt;}
}




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