
    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_d0d1b6b9c50556c22f4b6125.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_0d4adfa891376bfae166422d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.713000;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_1fa75a6a63c0dc68883947ac.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_b4c952237d10a7cee465d468.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.890000;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_d3f5ae515adf1e6c279c3c13.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.429000;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.964877px;}
.ls4{letter-spacing:2.987675px;}
.ls3{letter-spacing:2.988780px;}
.ls2{letter-spacing:35.863409px;}
.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;}
}
.ws16{word-spacing:-14.920027px;}
.ws14{word-spacing:-13.449600px;}
.ws7c{word-spacing:-11.955150px;}
.ws83{word-spacing:-1.195512px;}
.ws32{word-spacing:-1.075961px;}
.ws22{word-spacing:-1.016185px;}
.ws48{word-spacing:-0.896634px;}
.ws9f{word-spacing:-0.812950px;}
.wsa9{word-spacing:-0.717309px;}
.wsc{word-spacing:-0.645581px;}
.ws1a{word-spacing:-0.597756px;}
.ws19{word-spacing:-0.537980px;}
.ws5b{word-spacing:-0.478205px;}
.wsb{word-spacing:-0.322790px;}
.ws74{word-spacing:-0.298878px;}
.ws3{word-spacing:-0.053798px;}
.ws4d{word-spacing:0.000000px;}
.ws4b{word-spacing:0.298878px;}
.ws9e{word-spacing:0.382565px;}
.ws1d{word-spacing:0.896634px;}
.ws6a{word-spacing:0.956410px;}
.ws56{word-spacing:1.016185px;}
.ws10{word-spacing:1.129766px;}
.ws40{word-spacing:1.135736px;}
.wsa3{word-spacing:1.195515px;}
.wse{word-spacing:1.237363px;}
.ws8c{word-spacing:1.255288px;}
.ws41{word-spacing:1.315063px;}
.ws78{word-spacing:1.374839px;}
.ws6{word-spacing:1.667750px;}
.ws28{word-spacing:1.912819px;}
.wsb2{word-spacing:2.008465px;}
.wsb1{word-spacing:2.056286px;}
.ws6c{word-spacing:2.211697px;}
.ws77{word-spacing:2.391024px;}
.ws7f{word-spacing:2.450800px;}
.wsa{word-spacing:2.474726px;}
.ws35{word-spacing:2.510575px;}
.ws55{word-spacing:2.689902px;}
.ws54{word-spacing:2.714989px;}
.wsd{word-spacing:2.743718px;}
.ws84{word-spacing:2.749678px;}
.ws27{word-spacing:2.809453px;}
.ws3a{word-spacing:2.929004px;}
.wsa0{word-spacing:3.012698px;}
.ws2a{word-spacing:3.108331px;}
.ws63{word-spacing:3.149009px;}
.ws39{word-spacing:3.168107px;}
.ws11{word-spacing:3.174106px;}
.ws6b{word-spacing:3.287658px;}
.wsa1{word-spacing:3.395263px;}
.ws87{word-spacing:3.466985px;}
.ws79{word-spacing:3.526760px;}
.ws43{word-spacing:3.586536px;}
.wsa4{word-spacing:3.586545px;}
.ws3b{word-spacing:3.825638px;}
.ws9a{word-spacing:3.825648px;}
.wsaf{word-spacing:4.064751px;}
.wsa6{word-spacing:4.256033px;}
.ws73{word-spacing:4.303843px;}
.ws7{word-spacing:4.357670px;}
.ws6f{word-spacing:4.363619px;}
.ws9{word-spacing:4.465267px;}
.ws5e{word-spacing:4.483170px;}
.ws69{word-spacing:4.542946px;}
.ws24{word-spacing:4.722272px;}
.wsa2{word-spacing:4.780423px;}
.wsae{word-spacing:4.781492px;}
.ws9d{word-spacing:4.782009px;}
.ws97{word-spacing:4.782060px;}
.ws65{word-spacing:4.841824px;}
.ws76{word-spacing:4.901599px;}
.ws4c{word-spacing:4.961375px;}
.ws70{word-spacing:5.379840px;}
.ws58{word-spacing:5.439580px;}
.ws9c{word-spacing:5.786293px;}
.ws0{word-spacing:5.977560px;}
.ws25{word-spacing:6.156887px;}
.ws5a{word-spacing:6.180697px;}
.ws1b{word-spacing:6.276438px;}
.ws68{word-spacing:6.336214px;}
.ws4a{word-spacing:6.395989px;}
.wsa5{word-spacing:6.407960px;}
.ws50{word-spacing:6.515540px;}
.ws53{word-spacing:6.575316px;}
.ws2{word-spacing:6.575340px;}
.ws99{word-spacing:6.599243px;}
.ws61{word-spacing:6.993745px;}
.wsf{word-spacing:6.993792px;}
.ws95{word-spacing:7.173090px;}
.ws3d{word-spacing:7.352399px;}
.ws8d{word-spacing:7.448537px;}
.ws49{word-spacing:7.531726px;}
.ws38{word-spacing:7.711052px;}
.ws92{word-spacing:7.770828px;}
.ws66{word-spacing:7.890379px;}
.ws93{word-spacing:8.069706px;}
.ws18{word-spacing:8.129482px;}
.ws82{word-spacing:8.249033px;}
.ws42{word-spacing:8.368584px;}
.ws59{word-spacing:8.547911px;}
.ws62{word-spacing:8.667462px;}
.wsa8{word-spacing:8.703349px;}
.ws57{word-spacing:8.727238px;}
.ws86{word-spacing:8.787013px;}
.ws4{word-spacing:8.822938px;}
.ws31{word-spacing:8.846789px;}
.ws6d{word-spacing:9.026116px;}
.ws5{word-spacing:9.038131px;}
.ws1c{word-spacing:9.085891px;}
.ws4f{word-spacing:9.145667px;}
.ws89{word-spacing:9.444545px;}
.ws36{word-spacing:9.564096px;}
.wsb3{word-spacing:9.611941px;}
.ws26{word-spacing:9.803198px;}
.ws5c{word-spacing:9.862974px;}
.ws3e{word-spacing:10.042301px;}
.ws1f{word-spacing:10.221628px;}
.ws80{word-spacing:10.281403px;}
.ws9b{word-spacing:10.424891px;}
.ws85{word-spacing:10.520506px;}
.ws72{word-spacing:10.580281px;}
.ws44{word-spacing:10.699832px;}
.ws8a{word-spacing:10.879159px;}
.ws8{word-spacing:11.028672px;}
.ws7a{word-spacing:11.237813px;}
.wsab{word-spacing:11.237841px;}
.ws3f{word-spacing:11.297588px;}
.ws12{word-spacing:11.405261px;}
.ws64{word-spacing:11.476915px;}
.ws7b{word-spacing:11.955120px;}
.wsad{word-spacing:12.242074px;}
.ws34{word-spacing:12.253998px;}
.ws2b{word-spacing:12.313774px;}
.ws20{word-spacing:12.373549px;}
.ws71{word-spacing:12.493100px;}
.ws91{word-spacing:12.612652px;}
.ws60{word-spacing:12.851754px;}
.ws5f{word-spacing:12.870094px;}
.ws51{word-spacing:12.971305px;}
.ws8b{word-spacing:13.210408px;}
.ws96{word-spacing:13.772333px;}
.ws5d{word-spacing:13.867939px;}
.wsac{word-spacing:13.867974px;}
.ws52{word-spacing:13.927715px;}
.ws3c{word-spacing:14.047266px;}
.ws13{word-spacing:14.148979px;}
.ws2c{word-spacing:14.166817px;}
.ws75{word-spacing:14.286368px;}
.ws2f{word-spacing:14.346144px;}
.ws1{word-spacing:14.346180px;}
.ws46{word-spacing:14.525471px;}
.ws47{word-spacing:14.585246px;}
.ws2e{word-spacing:14.645022px;}
.ws1e{word-spacing:14.704798px;}
.ws67{word-spacing:14.943900px;}
.ws37{word-spacing:15.063451px;}
.ws33{word-spacing:15.183002px;}
.wsa7{word-spacing:15.350413px;}
.ws45{word-spacing:15.362329px;}
.wsaa{word-spacing:15.446054px;}
.ws6e{word-spacing:15.541656px;}
.ws7e{word-spacing:15.780758px;}
.ws88{word-spacing:15.840534px;}
.ws2d{word-spacing:16.199188px;}
.wsb0{word-spacing:16.211183px;}
.ws21{word-spacing:16.498066px;}
.ws7d{word-spacing:16.737168px;}
.ws29{word-spacing:17.334924px;}
.ws98{word-spacing:17.358878px;}
.ws23{word-spacing:17.872904px;}
.ws15{word-spacing:17.932680px;}
.ws4e{word-spacing:18.649987px;}
.ws81{word-spacing:18.769538px;}
.ws94{word-spacing:18.889090px;}
.ws30{word-spacing:19.427070px;}
.ws17{word-spacing:22.894055px;}
.wsb4{word-spacing:32.422367px;}
.ws90{word-spacing:209.807785px;}
.ws8e{word-spacing:224.701307px;}
.ws8f{word-spacing:224.708410px;}
._2{margin-left:-11.476944px;}
._6{margin-left:-5.870035px;}
._b{margin-left:-4.782048px;}
._1{margin-left:-3.586536px;}
._4{margin-left:-2.391024px;}
._0{margin-left:-1.195512px;}
._3{width:3.313560px;}
._5{width:4.986266px;}
._17{width:7.984348px;}
._9{width:15.063451px;}
._7{width:16.785101px;}
._8{width:19.421222px;}
._d{width:22.654952px;}
._11{width:24.209118px;}
._a{width:29.887800px;}
._19{width:46.862720px;}
._18{width:48.059708px;}
._c{width:56.966147px;}
._12{width:91.465435px;}
._15{width:158.534649px;}
._13{width:173.427797px;}
._10{width:215.324784px;}
._16{width:239.605857px;}
._14{width:254.506482px;}
._f{width:388.735786px;}
._e{width:499.399094px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs6{font-size:59.588293px;}
.fs0{font-size:59.775600px;}
.fs2{font-size:65.753400px;}
.fs1{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y8d{bottom:97.761000px;}
.y9c{bottom:99.877500px;}
.yf7{bottom:103.339500px;}
.yc5{bottom:103.534661px;}
.y35{bottom:113.332500px;}
.y8c{bottom:115.693500px;}
.yf6{bottom:116.788500px;}
.y9b{bottom:117.810000px;}
.yc4{bottom:121.038970px;}
.yf5{bottom:130.237500px;}
.y34{bottom:131.265000px;}
.y8b{bottom:133.627500px;}
.y9a{bottom:135.742500px;}
.yc3{bottom:138.543279px;}
.yf4{bottom:143.688000px;}
.y57{bottom:149.197500px;}
.y33{bottom:149.199000px;}
.y8a{bottom:151.560000px;}
.y99{bottom:153.675000px;}
.yc2{bottom:156.045719px;}
.yf3{bottom:157.137000px;}
.y56{bottom:167.130000px;}
.y32{bottom:167.131500px;}
.y89{bottom:169.609500px;}
.yf2{bottom:170.586000px;}
.y98{bottom:171.607500px;}
.yc1{bottom:173.550027px;}
.yf1{bottom:184.036500px;}
.y31{bottom:185.064000px;}
.y88{bottom:187.542000px;}
.y97{bottom:189.541500px;}
.yf0{bottom:197.485500px;}
.yc0{bottom:199.627500px;}
.y55{bottom:202.996500px;}
.y30{bottom:203.911500px;}
.y87{bottom:205.474500px;}
.yef{bottom:210.936000px;}
.y96{bottom:215.544000px;}
.ybf{bottom:217.560000px;}
.y54{bottom:220.929000px;}
.y2f{bottom:221.844000px;}
.y86{bottom:223.407000px;}
.yee{bottom:224.385000px;}
.yed{bottom:237.834000px;}
.y53{bottom:238.861500px;}
.y2e{bottom:239.776500px;}
.y85{bottom:241.341000px;}
.yec{bottom:251.284500px;}
.y52{bottom:256.794000px;}
.y2d{bottom:257.709000px;}
.y84{bottom:259.273500px;}
.ybe{bottom:260.097000px;}
.yeb{bottom:264.733500px;}
.y2c{bottom:275.643000px;}
.y83{bottom:277.206000px;}
.ybd{bottom:278.029500px;}
.yea{bottom:278.182500px;}
.y51{bottom:282.516000px;}
.ye9{bottom:291.633000px;}
.y2b{bottom:293.575500px;}
.y82{bottom:295.138500px;}
.ybc{bottom:295.962000px;}
.ye8{bottom:305.082000px;}
.y2a{bottom:311.508000px;}
.y81{bottom:313.071000px;}
.ybb{bottom:313.894500px;}
.y50{bottom:318.018000px;}
.ye7{bottom:318.532500px;}
.y29{bottom:329.440500px;}
.y80{bottom:331.120500px;}
.yba{bottom:331.729500px;}
.ye6{bottom:331.981500px;}
.y4f{bottom:335.952000px;}
.ye5{bottom:345.430500px;}
.y28{bottom:347.373000px;}
.y7f{bottom:349.054500px;}
.yb9{bottom:349.662000px;}
.y4e{bottom:353.884500px;}
.ye4{bottom:358.881000px;}
.y27{bottom:365.305500px;}
.y7e{bottom:366.987000px;}
.yb8{bottom:367.594500px;}
.y95{bottom:369.204000px;}
.ye3{bottom:372.330000px;}
.y4d{bottom:372.697500px;}
.y26{bottom:383.239500px;}
.y7d{bottom:384.919500px;}
.yb7{bottom:385.527000px;}
.ye2{bottom:385.779000px;}
.y4c{bottom:390.630000px;}
.ye1{bottom:399.229500px;}
.y25{bottom:402.087000px;}
.y7c{bottom:402.852000px;}
.yb6{bottom:403.459500px;}
.y4b{bottom:408.562500px;}
.ye0{bottom:412.678500px;}
.y24{bottom:420.019500px;}
.yb5{bottom:421.393500px;}
.y7b{bottom:425.901000px;}
.ydf{bottom:426.129000px;}
.y4a{bottom:426.495000px;}
.y23{bottom:437.952000px;}
.yde{bottom:439.578000px;}
.yb4{bottom:443.934000px;}
.y49{bottom:444.427500px;}
.ydd{bottom:453.027000px;}
.y7a{bottom:454.915500px;}
.y22{bottom:455.884500px;}
.y48{bottom:462.361500px;}
.ydc{bottom:466.477500px;}
.yb3{bottom:471.364500px;}
.y79{bottom:472.848000px;}
.y21{bottom:473.817000px;}
.ydb{bottom:479.926500px;}
.y47{bottom:480.294000px;}
.yb2{bottom:489.297000px;}
.y78{bottom:490.780500px;}
.y20{bottom:491.749500px;}
.yda{bottom:493.375500px;}
.y46{bottom:498.226500px;}
.yd9{bottom:506.826000px;}
.yb1{bottom:507.231000px;}
.y77{bottom:508.714500px;}
.y1f{bottom:509.683500px;}
.y45{bottom:516.159000px;}
.yd8{bottom:520.275000px;}
.yb0{bottom:525.163500px;}
.y76{bottom:526.647000px;}
.y1e{bottom:527.616000px;}
.yd7{bottom:533.724000px;}
.y44{bottom:534.091500px;}
.yaf{bottom:543.096000px;}
.y75{bottom:544.579500px;}
.y1d{bottom:545.548500px;}
.yd6{bottom:547.174500px;}
.y43{bottom:552.025500px;}
.yd5{bottom:560.623500px;}
.yae{bottom:561.028500px;}
.y74{bottom:562.512000px;}
.y1c{bottom:573.676500px;}
.yd4{bottom:574.074000px;}
.yad{bottom:578.961000px;}
.y94{bottom:579.816000px;}
.y42{bottom:579.946500px;}
.y73{bottom:580.444500px;}
.yd3{bottom:587.523000px;}
.yac{bottom:596.895000px;}
.y93{bottom:597.748500px;}
.y72{bottom:598.377000px;}
.yd2{bottom:600.972000px;}
.y1b{bottom:609.472500px;}
.yd1{bottom:614.422500px;}
.yab{bottom:614.827500px;}
.y41{bottom:615.450000px;}
.y92{bottom:615.681000px;}
.y71{bottom:616.311000px;}
.y1a{bottom:624.417000px;}
.yd0{bottom:627.871500px;}
.yaa{bottom:632.760000px;}
.y40{bottom:633.382500px;}
.y91{bottom:633.615000px;}
.y70{bottom:634.243500px;}
.y19{bottom:639.360000px;}
.ycf{bottom:641.320500px;}
.ya9{bottom:650.595000px;}
.y3f{bottom:651.315000px;}
.y90{bottom:651.547500px;}
.y6f{bottom:652.176000px;}
.y18{bottom:654.304500px;}
.yce{bottom:654.771000px;}
.ya8{bottom:668.527500px;}
.y3e{bottom:669.247500px;}
.y17{bottom:669.249000px;}
.y6e{bottom:670.108500px;}
.ycd{bottom:676.962000px;}
.y8f{bottom:677.550000px;}
.y16{bottom:684.192000px;}
.ya7{bottom:686.460000px;}
.y3d{bottom:687.181500px;}
.y6d{bottom:688.041000px;}
.y15{bottom:699.136500px;}
.ya6{bottom:704.392500px;}
.y3c{bottom:705.114000px;}
.y6c{bottom:705.973500px;}
.y14{bottom:714.079500px;}
.ya5{bottom:722.325000px;}
.y3b{bottom:723.046500px;}
.y6b{bottom:723.907500px;}
.y13{bottom:729.024000px;}
.ycc{bottom:730.072500px;}
.y3a{bottom:740.979000px;}
.y6a{bottom:741.840000px;}
.y12{bottom:743.968500px;}
.ya4{bottom:744.867000px;}
.ycb{bottom:748.005000px;}
.y11{bottom:758.911500px;}
.y69{bottom:759.772500px;}
.yca{bottom:765.937500px;}
.y10{bottom:773.856000px;}
.y39{bottom:776.844000px;}
.y68{bottom:777.705000px;}
.yc9{bottom:788.578500px;}
.yf{bottom:788.800500px;}
.y38{bottom:794.778000px;}
.ya3{bottom:794.928000px;}
.y67{bottom:795.637500px;}
.ye{bottom:803.743500px;}
.y37{bottom:812.710500px;}
.ya2{bottom:812.860500px;}
.y66{bottom:813.571500px;}
.yd{bottom:818.688000px;}
.y36{bottom:830.643000px;}
.ya1{bottom:830.793000px;}
.y65{bottom:831.504000px;}
.yc{bottom:833.632500px;}
.yc8{bottom:839.686500px;}
.yb{bottom:848.575500px;}
.ya0{bottom:848.725500px;}
.y64{bottom:849.436500px;}
.yc7{bottom:857.619000px;}
.y9f{bottom:866.658000px;}
.y63{bottom:870.604500px;}
.yc6{bottom:875.551500px;}
.y9e{bottom:884.590500px;}
.y62{bottom:888.537000px;}
.y8e{bottom:893.577000px;}
.ya{bottom:899.548500px;}
.y61{bottom:906.471000px;}
.y9d{bottom:910.593000px;}
.y9{bottom:918.042000px;}
.y60{bottom:924.403500px;}
.y8{bottom:936.534000px;}
.y5f{bottom:947.452500px;}
.y7{bottom:955.027500px;}
.y6{bottom:973.521000px;}
.y5e{bottom:976.467000px;}
.y5{bottom:992.235000px;}
.y5d{bottom:994.399500px;}
.y5c{bottom:1012.332000px;}
.y5b{bottom:1030.264500px;}
.y4{bottom:1039.309500px;}
.y5a{bottom:1048.197000px;}
.y59{bottom:1066.131000px;}
.y3{bottom:1081.152000px;}
.y58{bottom:1084.063500px;}
.y2{bottom:1135.123500px;}
.y1{bottom:1153.056000px;}
.hc{height:32.900573px;}
.hd{height:33.140573px;}
.ha{height:37.013299px;}
.h7{height:37.336090px;}
.h6{height:37.605082px;}
.h8{height:40.826735px;}
.h1{height:41.125613px;}
.hb{height:41.354276px;}
.h5{height:41.419613px;}
.h4{height:41.425613px;}
.h9{height:41.484266px;}
.h3{height:45.238339px;}
.h2{height:98.701718px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:73.446000px;}
.x1d{left:85.363509px;}
.x1{left:88.183500px;}
.x19{left:99.301500px;}
.x16{left:103.479000px;}
.x3{left:121.185000px;}
.x1b{left:136.773000px;}
.x4{left:143.619000px;}
.x1c{left:176.935436px;}
.x12{left:203.428500px;}
.x10{left:227.715000px;}
.x1a{left:229.879500px;}
.x5{left:238.423500px;}
.x6{left:271.059000px;}
.x7{left:276.139500px;}
.xa{left:282.760500px;}
.x2{left:299.997000px;}
.xe{left:366.616500px;}
.xb{left:421.827000px;}
.x8{left:435.157500px;}
.x13{left:467.967000px;}
.x20{left:473.944500px;}
.xc{left:475.221000px;}
.xf{left:476.917500px;}
.x15{left:482.910000px;}
.x21{left:495.355500px;}
.x18{left:501.685500px;}
.x17{left:515.518500px;}
.xd{left:544.606500px;}
.x1e{left:580.308000px;}
.x9{left:583.101000px;}
.x14{left:600.939000px;}
.x1f{left:614.418000px;}
.x22{left:635.782500px;}
.x23{left:651.048000px;}
.x24{left:689.280000px;}
.x25{left:729.783000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.635446pt;}
.ls4{letter-spacing:2.655711pt;}
.ls3{letter-spacing:2.656693pt;}
.ls2{letter-spacing:31.878586pt;}
.ws16{word-spacing:-13.262246pt;}
.ws14{word-spacing:-11.955200pt;}
.ws7c{word-spacing:-10.626800pt;}
.ws83{word-spacing:-1.062677pt;}
.ws32{word-spacing:-0.956410pt;}
.ws22{word-spacing:-0.903276pt;}
.ws48{word-spacing:-0.797008pt;}
.ws9f{word-spacing:-0.722622pt;}
.wsa9{word-spacing:-0.637608pt;}
.wsc{word-spacing:-0.573850pt;}
.ws1a{word-spacing:-0.531339pt;}
.ws19{word-spacing:-0.478205pt;}
.ws5b{word-spacing:-0.425071pt;}
.wsb{word-spacing:-0.286925pt;}
.ws74{word-spacing:-0.265669pt;}
.ws3{word-spacing:-0.047821pt;}
.ws4d{word-spacing:0.000000pt;}
.ws4b{word-spacing:0.265669pt;}
.ws9e{word-spacing:0.340058pt;}
.ws1d{word-spacing:0.797008pt;}
.ws6a{word-spacing:0.850142pt;}
.ws56{word-spacing:0.903276pt;}
.ws10{word-spacing:1.004237pt;}
.ws40{word-spacing:1.009543pt;}
.wsa3{word-spacing:1.062680pt;}
.wse{word-spacing:1.099878pt;}
.ws8c{word-spacing:1.115811pt;}
.ws41{word-spacing:1.168945pt;}
.ws78{word-spacing:1.222079pt;}
.ws6{word-spacing:1.482445pt;}
.ws28{word-spacing:1.700284pt;}
.wsb2{word-spacing:1.785302pt;}
.wsb1{word-spacing:1.827810pt;}
.ws6c{word-spacing:1.965953pt;}
.ws77{word-spacing:2.125355pt;}
.ws7f{word-spacing:2.178489pt;}
.wsa{word-spacing:2.199757pt;}
.ws35{word-spacing:2.231622pt;}
.ws55{word-spacing:2.391024pt;}
.ws54{word-spacing:2.413324pt;}
.wsd{word-spacing:2.438861pt;}
.ws84{word-spacing:2.444158pt;}
.ws27{word-spacing:2.497292pt;}
.ws3a{word-spacing:2.603559pt;}
.wsa0{word-spacing:2.677954pt;}
.ws2a{word-spacing:2.762961pt;}
.ws63{word-spacing:2.799119pt;}
.ws39{word-spacing:2.816095pt;}
.ws11{word-spacing:2.821427pt;}
.ws6b{word-spacing:2.922363pt;}
.wsa1{word-spacing:3.018011pt;}
.ws87{word-spacing:3.081764pt;}
.ws79{word-spacing:3.134898pt;}
.ws43{word-spacing:3.188032pt;}
.wsa4{word-spacing:3.188040pt;}
.ws3b{word-spacing:3.400567pt;}
.ws9a{word-spacing:3.400576pt;}
.wsaf{word-spacing:3.613112pt;}
.wsa6{word-spacing:3.783141pt;}
.ws73{word-spacing:3.825638pt;}
.ws7{word-spacing:3.873485pt;}
.ws6f{word-spacing:3.878772pt;}
.ws9{word-spacing:3.969126pt;}
.ws5e{word-spacing:3.985040pt;}
.ws69{word-spacing:4.038174pt;}
.ws24{word-spacing:4.197575pt;}
.wsa2{word-spacing:4.249265pt;}
.wsae{word-spacing:4.250215pt;}
.ws9d{word-spacing:4.250675pt;}
.ws97{word-spacing:4.250720pt;}
.ws65{word-spacing:4.303843pt;}
.ws76{word-spacing:4.356977pt;}
.ws4c{word-spacing:4.410111pt;}
.ws70{word-spacing:4.782080pt;}
.ws58{word-spacing:4.835182pt;}
.ws9c{word-spacing:5.143371pt;}
.ws0{word-spacing:5.313387pt;}
.ws25{word-spacing:5.472788pt;}
.ws5a{word-spacing:5.493953pt;}
.ws1b{word-spacing:5.579056pt;}
.ws68{word-spacing:5.632190pt;}
.ws4a{word-spacing:5.685324pt;}
.wsa5{word-spacing:5.695965pt;}
.ws50{word-spacing:5.791591pt;}
.ws53{word-spacing:5.844725pt;}
.ws2{word-spacing:5.844747pt;}
.ws99{word-spacing:5.865994pt;}
.ws61{word-spacing:6.216662pt;}
.wsf{word-spacing:6.216704pt;}
.ws95{word-spacing:6.376080pt;}
.ws3d{word-spacing:6.535466pt;}
.ws8d{word-spacing:6.620921pt;}
.ws49{word-spacing:6.694867pt;}
.ws38{word-spacing:6.854269pt;}
.ws92{word-spacing:6.907403pt;}
.ws66{word-spacing:7.013670pt;}
.ws93{word-spacing:7.173072pt;}
.ws18{word-spacing:7.226206pt;}
.ws82{word-spacing:7.332474pt;}
.ws42{word-spacing:7.438741pt;}
.ws59{word-spacing:7.598143pt;}
.ws62{word-spacing:7.704411pt;}
.wsa8{word-spacing:7.736310pt;}
.ws57{word-spacing:7.757545pt;}
.ws86{word-spacing:7.810678pt;}
.ws4{word-spacing:7.842611pt;}
.ws31{word-spacing:7.863812pt;}
.ws6d{word-spacing:8.023214pt;}
.ws5{word-spacing:8.033894pt;}
.ws1c{word-spacing:8.076348pt;}
.ws4f{word-spacing:8.129482pt;}
.ws89{word-spacing:8.395151pt;}
.ws36{word-spacing:8.501419pt;}
.wsb3{word-spacing:8.543947pt;}
.ws26{word-spacing:8.713954pt;}
.ws5c{word-spacing:8.767088pt;}
.ws3e{word-spacing:8.926490pt;}
.ws1f{word-spacing:9.085891pt;}
.ws80{word-spacing:9.139025pt;}
.ws9b{word-spacing:9.266570pt;}
.ws85{word-spacing:9.351561pt;}
.ws72{word-spacing:9.404694pt;}
.ws44{word-spacing:9.510962pt;}
.ws8a{word-spacing:9.670364pt;}
.ws8{word-spacing:9.803264pt;}
.ws7a{word-spacing:9.989167pt;}
.wsab{word-spacing:9.989192pt;}
.ws3f{word-spacing:10.042301pt;}
.ws12{word-spacing:10.138010pt;}
.ws64{word-spacing:10.201702pt;}
.ws7b{word-spacing:10.626773pt;}
.wsad{word-spacing:10.881843pt;}
.ws34{word-spacing:10.892443pt;}
.ws2b{word-spacing:10.945577pt;}
.ws20{word-spacing:10.998710pt;}
.ws71{word-spacing:11.104978pt;}
.ws91{word-spacing:11.211246pt;}
.ws60{word-spacing:11.423781pt;}
.ws5f{word-spacing:11.440083pt;}
.ws51{word-spacing:11.530049pt;}
.ws8b{word-spacing:11.742585pt;}
.ws96{word-spacing:12.242074pt;}
.ws5d{word-spacing:12.327057pt;}
.wsac{word-spacing:12.327088pt;}
.ws52{word-spacing:12.380191pt;}
.ws3c{word-spacing:12.486459pt;}
.ws13{word-spacing:12.576870pt;}
.ws2c{word-spacing:12.592726pt;}
.ws75{word-spacing:12.698994pt;}
.ws2f{word-spacing:12.752128pt;}
.ws1{word-spacing:12.752160pt;}
.ws46{word-spacing:12.911530pt;}
.ws47{word-spacing:12.964663pt;}
.ws2e{word-spacing:13.017797pt;}
.ws1e{word-spacing:13.070931pt;}
.ws67{word-spacing:13.283467pt;}
.ws37{word-spacing:13.389734pt;}
.ws33{word-spacing:13.496002pt;}
.wsa7{word-spacing:13.644811pt;}
.ws45{word-spacing:13.655404pt;}
.wsaa{word-spacing:13.729826pt;}
.ws6e{word-spacing:13.814805pt;}
.ws7e{word-spacing:14.027341pt;}
.ws88{word-spacing:14.080475pt;}
.ws2d{word-spacing:14.399278pt;}
.wsb0{word-spacing:14.409941pt;}
.ws21{word-spacing:14.664947pt;}
.ws7d{word-spacing:14.877483pt;}
.ws29{word-spacing:15.408821pt;}
.ws98{word-spacing:15.430114pt;}
.ws23{word-spacing:15.887026pt;}
.ws15{word-spacing:15.940160pt;}
.ws4e{word-spacing:16.577766pt;}
.ws81{word-spacing:16.684034pt;}
.ws94{word-spacing:16.790302pt;}
.ws30{word-spacing:17.268507pt;}
.ws17{word-spacing:20.350271pt;}
.wsb4{word-spacing:28.819882pt;}
.ws90{word-spacing:186.495809pt;}
.ws8e{word-spacing:199.734495pt;}
.ws8f{word-spacing:199.740809pt;}
._2{margin-left:-10.201728pt;}
._6{margin-left:-5.217809pt;}
._b{margin-left:-4.250709pt;}
._1{margin-left:-3.188032pt;}
._4{margin-left:-2.125355pt;}
._0{margin-left:-1.062677pt;}
._3{width:2.945387pt;}
._5{width:4.432237pt;}
._17{width:7.097198pt;}
._9{width:13.389734pt;}
._7{width:14.920090pt;}
._8{width:17.263309pt;}
._d{width:20.137735pt;}
._11{width:21.519216pt;}
._a{width:26.566933pt;}
._19{width:41.655751pt;}
._18{width:42.719741pt;}
._c{width:50.636575pt;}
._12{width:81.302609pt;}
._15{width:140.919688pt;}
._13{width:154.158042pt;}
._10{width:191.399808pt;}
._16{width:212.982984pt;}
._14{width:226.227984pt;}
._f{width:345.542921pt;}
._e{width:443.910306pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs6{font-size:52.967372pt;}
.fs0{font-size:53.133867pt;}
.fs2{font-size:58.447467pt;}
.fs1{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y8d{bottom:86.898667pt;}
.y9c{bottom:88.780000pt;}
.yf7{bottom:91.857333pt;}
.yc5{bottom:92.030810pt;}
.y35{bottom:100.740000pt;}
.y8c{bottom:102.838667pt;}
.yf6{bottom:103.812000pt;}
.y9b{bottom:104.720000pt;}
.yc4{bottom:107.590196pt;}
.yf5{bottom:115.766667pt;}
.y34{bottom:116.680000pt;}
.y8b{bottom:118.780000pt;}
.y9a{bottom:120.660000pt;}
.yc3{bottom:123.149581pt;}
.yf4{bottom:127.722667pt;}
.y57{bottom:132.620000pt;}
.y33{bottom:132.621333pt;}
.y8a{bottom:134.720000pt;}
.y99{bottom:136.600000pt;}
.yc2{bottom:138.707305pt;}
.yf3{bottom:139.677333pt;}
.y56{bottom:148.560000pt;}
.y32{bottom:148.561333pt;}
.y89{bottom:150.764000pt;}
.yf2{bottom:151.632000pt;}
.y98{bottom:152.540000pt;}
.yc1{bottom:154.266691pt;}
.yf1{bottom:163.588000pt;}
.y31{bottom:164.501333pt;}
.y88{bottom:166.704000pt;}
.y97{bottom:168.481333pt;}
.yf0{bottom:175.542667pt;}
.yc0{bottom:177.446667pt;}
.y55{bottom:180.441333pt;}
.y30{bottom:181.254667pt;}
.y87{bottom:182.644000pt;}
.yef{bottom:187.498667pt;}
.y96{bottom:191.594667pt;}
.ybf{bottom:193.386667pt;}
.y54{bottom:196.381333pt;}
.y2f{bottom:197.194667pt;}
.y86{bottom:198.584000pt;}
.yee{bottom:199.453333pt;}
.yed{bottom:211.408000pt;}
.y53{bottom:212.321333pt;}
.y2e{bottom:213.134667pt;}
.y85{bottom:214.525333pt;}
.yec{bottom:223.364000pt;}
.y52{bottom:228.261333pt;}
.y2d{bottom:229.074667pt;}
.y84{bottom:230.465333pt;}
.ybe{bottom:231.197333pt;}
.yeb{bottom:235.318667pt;}
.y2c{bottom:245.016000pt;}
.y83{bottom:246.405333pt;}
.ybd{bottom:247.137333pt;}
.yea{bottom:247.273333pt;}
.y51{bottom:251.125333pt;}
.ye9{bottom:259.229333pt;}
.y2b{bottom:260.956000pt;}
.y82{bottom:262.345333pt;}
.ybc{bottom:263.077333pt;}
.ye8{bottom:271.184000pt;}
.y2a{bottom:276.896000pt;}
.y81{bottom:278.285333pt;}
.ybb{bottom:279.017333pt;}
.y50{bottom:282.682667pt;}
.ye7{bottom:283.140000pt;}
.y29{bottom:292.836000pt;}
.y80{bottom:294.329333pt;}
.yba{bottom:294.870667pt;}
.ye6{bottom:295.094667pt;}
.y4f{bottom:298.624000pt;}
.ye5{bottom:307.049333pt;}
.y28{bottom:308.776000pt;}
.y7f{bottom:310.270667pt;}
.yb9{bottom:310.810667pt;}
.y4e{bottom:314.564000pt;}
.ye4{bottom:319.005333pt;}
.y27{bottom:324.716000pt;}
.y7e{bottom:326.210667pt;}
.yb8{bottom:326.750667pt;}
.y95{bottom:328.181333pt;}
.ye3{bottom:330.960000pt;}
.y4d{bottom:331.286667pt;}
.y26{bottom:340.657333pt;}
.y7d{bottom:342.150667pt;}
.yb7{bottom:342.690667pt;}
.ye2{bottom:342.914667pt;}
.y4c{bottom:347.226667pt;}
.ye1{bottom:354.870667pt;}
.y25{bottom:357.410667pt;}
.y7c{bottom:358.090667pt;}
.yb6{bottom:358.630667pt;}
.y4b{bottom:363.166667pt;}
.ye0{bottom:366.825333pt;}
.y24{bottom:373.350667pt;}
.yb5{bottom:374.572000pt;}
.y7b{bottom:378.578667pt;}
.ydf{bottom:378.781333pt;}
.y4a{bottom:379.106667pt;}
.y23{bottom:389.290667pt;}
.yde{bottom:390.736000pt;}
.yb4{bottom:394.608000pt;}
.y49{bottom:395.046667pt;}
.ydd{bottom:402.690667pt;}
.y7a{bottom:404.369333pt;}
.y22{bottom:405.230667pt;}
.y48{bottom:410.988000pt;}
.ydc{bottom:414.646667pt;}
.yb3{bottom:418.990667pt;}
.y79{bottom:420.309333pt;}
.y21{bottom:421.170667pt;}
.ydb{bottom:426.601333pt;}
.y47{bottom:426.928000pt;}
.yb2{bottom:434.930667pt;}
.y78{bottom:436.249333pt;}
.y20{bottom:437.110667pt;}
.yda{bottom:438.556000pt;}
.y46{bottom:442.868000pt;}
.yd9{bottom:450.512000pt;}
.yb1{bottom:450.872000pt;}
.y77{bottom:452.190667pt;}
.y1f{bottom:453.052000pt;}
.y45{bottom:458.808000pt;}
.yd8{bottom:462.466667pt;}
.yb0{bottom:466.812000pt;}
.y76{bottom:468.130667pt;}
.y1e{bottom:468.992000pt;}
.yd7{bottom:474.421333pt;}
.y44{bottom:474.748000pt;}
.yaf{bottom:482.752000pt;}
.y75{bottom:484.070667pt;}
.y1d{bottom:484.932000pt;}
.yd6{bottom:486.377333pt;}
.y43{bottom:490.689333pt;}
.yd5{bottom:498.332000pt;}
.yae{bottom:498.692000pt;}
.y74{bottom:500.010667pt;}
.y1c{bottom:509.934667pt;}
.yd4{bottom:510.288000pt;}
.yad{bottom:514.632000pt;}
.y94{bottom:515.392000pt;}
.y42{bottom:515.508000pt;}
.y73{bottom:515.950667pt;}
.yd3{bottom:522.242667pt;}
.yac{bottom:530.573333pt;}
.y93{bottom:531.332000pt;}
.y72{bottom:531.890667pt;}
.yd2{bottom:534.197333pt;}
.y1b{bottom:541.753333pt;}
.yd1{bottom:546.153333pt;}
.yab{bottom:546.513333pt;}
.y41{bottom:547.066667pt;}
.y92{bottom:547.272000pt;}
.y71{bottom:547.832000pt;}
.y1a{bottom:555.037333pt;}
.yd0{bottom:558.108000pt;}
.yaa{bottom:562.453333pt;}
.y40{bottom:563.006667pt;}
.y91{bottom:563.213333pt;}
.y70{bottom:563.772000pt;}
.y19{bottom:568.320000pt;}
.ycf{bottom:570.062667pt;}
.ya9{bottom:578.306667pt;}
.y3f{bottom:578.946667pt;}
.y90{bottom:579.153333pt;}
.y6f{bottom:579.712000pt;}
.y18{bottom:581.604000pt;}
.yce{bottom:582.018667pt;}
.ya8{bottom:594.246667pt;}
.y3e{bottom:594.886667pt;}
.y17{bottom:594.888000pt;}
.y6e{bottom:595.652000pt;}
.ycd{bottom:601.744000pt;}
.y8f{bottom:602.266667pt;}
.y16{bottom:608.170667pt;}
.ya7{bottom:610.186667pt;}
.y3d{bottom:610.828000pt;}
.y6d{bottom:611.592000pt;}
.y15{bottom:621.454667pt;}
.ya6{bottom:626.126667pt;}
.y3c{bottom:626.768000pt;}
.y6c{bottom:627.532000pt;}
.y14{bottom:634.737333pt;}
.ya5{bottom:642.066667pt;}
.y3b{bottom:642.708000pt;}
.y6b{bottom:643.473333pt;}
.y13{bottom:648.021333pt;}
.ycc{bottom:648.953333pt;}
.y3a{bottom:658.648000pt;}
.y6a{bottom:659.413333pt;}
.y12{bottom:661.305333pt;}
.ya4{bottom:662.104000pt;}
.ycb{bottom:664.893333pt;}
.y11{bottom:674.588000pt;}
.y69{bottom:675.353333pt;}
.yca{bottom:680.833333pt;}
.y10{bottom:687.872000pt;}
.y39{bottom:690.528000pt;}
.y68{bottom:691.293333pt;}
.yc9{bottom:700.958667pt;}
.yf{bottom:701.156000pt;}
.y38{bottom:706.469333pt;}
.ya3{bottom:706.602667pt;}
.y67{bottom:707.233333pt;}
.ye{bottom:714.438667pt;}
.y37{bottom:722.409333pt;}
.ya2{bottom:722.542667pt;}
.y66{bottom:723.174667pt;}
.yd{bottom:727.722667pt;}
.y36{bottom:738.349333pt;}
.ya1{bottom:738.482667pt;}
.y65{bottom:739.114667pt;}
.yc{bottom:741.006667pt;}
.yc8{bottom:746.388000pt;}
.yb{bottom:754.289333pt;}
.ya0{bottom:754.422667pt;}
.y64{bottom:755.054667pt;}
.yc7{bottom:762.328000pt;}
.y9f{bottom:770.362667pt;}
.y63{bottom:773.870667pt;}
.yc6{bottom:778.268000pt;}
.y9e{bottom:786.302667pt;}
.y62{bottom:789.810667pt;}
.y8e{bottom:794.290667pt;}
.ya{bottom:799.598667pt;}
.y61{bottom:805.752000pt;}
.y9d{bottom:809.416000pt;}
.y9{bottom:816.037333pt;}
.y60{bottom:821.692000pt;}
.y8{bottom:832.474667pt;}
.y5f{bottom:842.180000pt;}
.y7{bottom:848.913333pt;}
.y6{bottom:865.352000pt;}
.y5e{bottom:867.970667pt;}
.y5{bottom:881.986667pt;}
.y5d{bottom:883.910667pt;}
.y5c{bottom:899.850667pt;}
.y5b{bottom:915.790667pt;}
.y4{bottom:923.830667pt;}
.y5a{bottom:931.730667pt;}
.y59{bottom:947.672000pt;}
.y3{bottom:961.024000pt;}
.y58{bottom:963.612000pt;}
.y2{bottom:1008.998667pt;}
.y1{bottom:1024.938667pt;}
.hc{height:29.244954pt;}
.hd{height:29.458287pt;}
.ha{height:32.900710pt;}
.h7{height:33.187635pt;}
.h6{height:33.426739pt;}
.h8{height:36.290431pt;}
.h1{height:36.556100pt;}
.hb{height:36.759356pt;}
.h5{height:36.817434pt;}
.h4{height:36.822767pt;}
.h9{height:36.874903pt;}
.h3{height:40.211857pt;}
.h2{height:87.734861pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:65.285333pt;}
.x1d{left:75.878675pt;}
.x1{left:78.385333pt;}
.x19{left:88.268000pt;}
.x16{left:91.981333pt;}
.x3{left:107.720000pt;}
.x1b{left:121.576000pt;}
.x4{left:127.661333pt;}
.x1c{left:157.275943pt;}
.x12{left:180.825333pt;}
.x10{left:202.413333pt;}
.x1a{left:204.337333pt;}
.x5{left:211.932000pt;}
.x6{left:240.941333pt;}
.x7{left:245.457333pt;}
.xa{left:251.342667pt;}
.x2{left:266.664000pt;}
.xe{left:325.881333pt;}
.xb{left:374.957333pt;}
.x8{left:386.806667pt;}
.x13{left:415.970667pt;}
.x20{left:421.284000pt;}
.xc{left:422.418667pt;}
.xf{left:423.926667pt;}
.x15{left:429.253333pt;}
.x21{left:440.316000pt;}
.x18{left:445.942667pt;}
.x17{left:458.238667pt;}
.xd{left:484.094667pt;}
.x1e{left:515.829333pt;}
.x9{left:518.312000pt;}
.x14{left:534.168000pt;}
.x1f{left:546.149333pt;}
.x22{left:565.140000pt;}
.x23{left:578.709333pt;}
.x24{left:612.693333pt;}
.x25{left:648.696000pt;}
}




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