
    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_6b4e7b1fef7e130ee90272fd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_fa6740072a549c31d744c128.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_a5b0362259f7a23036eecc95.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.871094;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239258;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_ea0e072b18fe894a259c13ac.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.281250;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;}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m6{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;}
.v1{vertical-align:36.719985px;}
.v2{vertical-align:73.439971px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.166140px;}
.ls9{letter-spacing:8.602197px;}
.lsa{letter-spacing:10.043096px;}
.ls4{letter-spacing:16.886393px;}
.ls6{letter-spacing:19.047652px;}
.ls8{letter-spacing:32.376827px;}
.ls5{letter-spacing:35.617546px;}
.ls2{letter-spacing:39.219704px;}
.ls3{letter-spacing:59.392056px;}
.ls1{letter-spacing:197.556881px;}
.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:-16.559993px;}
.ws6{word-spacing:-16.271993px;}
.ws2{word-spacing:-14.970234px;}
.ws8{word-spacing:-14.939994px;}
.ws7{word-spacing:-14.319354px;}
.ws1{word-spacing:-13.505755px;}
.ws4{word-spacing:-9.437756px;}
.ws5{word-spacing:-8.786876px;}
.ws0{word-spacing:0.000000px;}
._13{margin-left:-10.053025px;}
._19{margin-left:-3.966212px;}
._2e{margin-left:-2.317199px;}
._0{margin-left:-1.092305px;}
._1{width:1.312257px;}
._5{width:2.357193px;}
._c{width:3.659703px;}
._b{width:4.700252px;}
._11{width:6.010896px;}
._a{width:7.327859px;}
._8{width:9.020669px;}
._d{width:10.408536px;}
._14{width:11.773797px;}
._12{width:13.012337px;}
._2{width:14.525426px;}
._7{width:16.123394px;}
._4{width:17.131116px;}
._3{width:18.234792px;}
._15{width:20.082423px;}
._17{width:21.569114px;}
._10{width:22.578442px;}
._e{width:23.880079px;}
._1c{width:24.889231px;}
._18{width:26.188528px;}
._6{width:27.662608px;}
._f{width:30.410512px;}
._2f{width:31.740589px;}
._1a{width:34.696484px;}
._1d{width:37.839682px;}
._1b{width:52.506978px;}
._9{width:74.745703px;}
._20{width:80.575963px;}
._29{width:105.924744px;}
._2b{width:131.139163px;}
._23{width:132.585307px;}
._25{width:139.068904px;}
._28{width:141.920646px;}
._1f{width:148.079701px;}
._1e{width:167.189156px;}
._21{width:172.931274px;}
._2a{width:175.806999px;}
._26{width:196.039337px;}
._16{width:197.552110px;}
._24{width:212.345018px;}
._22{width:245.302822px;}
._27{width:265.263519px;}
._2d{width:628.039058px;}
._2c{width:632.220122px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.879984px;}
.fs4{font-size:41.759983px;}
.fs3{font-size:59.759976px;}
.fs6{font-size:63.359975px;}
.fs0{font-size:66.239974px;}
.fs2{font-size:71.999971px;}
.fs1{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y49{bottom:131.879947px;}
.y64{bottom:131.880247px;}
.y7e{bottom:137.100245px;}
.y24{bottom:144.119942px;}
.y104{bottom:149.699940px;}
.y48{bottom:150.059940px;}
.ydd{bottom:150.779940px;}
.y63{bottom:164.999934px;}
.y47{bottom:168.419933px;}
.y171{bottom:171.479931px;}
.y46{bottom:173.639931px;}
.y23{bottom:174.359930px;}
.y103{bottom:178.859928px;}
.ydc{bottom:181.559927px;}
.y15f{bottom:182.819927px;}
.y62{bottom:184.079926px;}
.y45{bottom:186.779925px;}
.y7d{bottom:187.319925px;}
.y61{bottom:190.019924px;}
.y170{bottom:190.559924px;}
.y91{bottom:191.999923px;}
.y16b{bottom:193.619923px;}
.y15e{bottom:202.439919px;}
.y60{bottom:203.519919px;}
.y12c{bottom:203.699919px;}
.y22{bottom:204.599918px;}
.y44{bottom:205.679918px;}
.y102{bottom:208.019917px;}
.y5f{bottom:208.739917px;}
.y16f{bottom:209.819916px;}
.y43{bottom:211.619915px;}
.y16a{bottom:212.699915px;}
.y7c{bottom:213.059915px;}
.y12b{bottom:220.259912px;}
.y15d{bottom:220.619912px;}
.y5e{bottom:222.419911px;}
.y42{bottom:225.839910px;}
.yc1{bottom:227.819909px;}
.y90{bottom:228.359909px;}
.y16e{bottom:228.899908px;}
.y169{bottom:231.959907px;}
.y101{bottom:237.179905px;}
.y15c{bottom:239.879904px;}
.ydb{bottom:241.859903px;}
.y12a{bottom:243.119903px;}
.y7b{bottom:243.299903px;}
.y21{bottom:243.839902px;}
.y16d{bottom:247.979901px;}
.y168{bottom:250.139900px;}
.ya6{bottom:250.679900px;}
.y18c{bottom:257.879897px;}
.yc0{bottom:258.059897px;}
.y15b{bottom:258.239897px;}
.y41{bottom:259.679896px;}
.y129{bottom:265.979894px;}
.y100{bottom:266.339893px;}
.y16c{bottom:267.239893px;}
.y8f{bottom:268.499893px;}
.y167{bottom:269.219892px;}
.yed{bottom:271.919891px;}
.yda{bottom:272.099891px;}
.y123{bottom:272.999891px;}
.y7a{bottom:273.539891px;}
.y20{bottom:274.079890px;}
.y5d{bottom:274.619890px;}
.y15a{bottom:276.419889px;}
.y18b{bottom:287.039885px;}
.ybf{bottom:288.299885px;}
.y166{bottom:288.479885px;}
.y128{bottom:288.839884px;}
.y3f{bottom:289.919884px;}
.yff{bottom:295.499882px;}
.y40{bottom:295.859882px;}
.y122{bottom:297.119881px;}
.y8e{bottom:298.739881px;}
.y1f{bottom:304.319878px;}
.y5c{bottom:304.859878px;}
.y127{bottom:305.399878px;}
.yeb{bottom:311.159876px;}
.yd9{bottom:311.339875px;}
.y79{bottom:312.779875px;}
.y159{bottom:313.859874px;}
.y18a{bottom:316.199874px;}
.yec{bottom:317.099873px;}
.ybe{bottom:318.539873px;}
.y3e{bottom:320.159872px;}
.y121{bottom:321.059872px;}
.y11d{bottom:321.959871px;}
.yfe{bottom:324.479870px;}
.y126{bottom:328.259869px;}
.y165{bottom:328.619869px;}
.ya5{bottom:330.059868px;}
.y158{bottom:332.939867px;}
.y1e{bottom:334.559866px;}
.y189{bottom:336.359865px;}
.y8d{bottom:338.879864px;}
.y11c{bottom:339.239864px;}
.yea{bottom:341.399863px;}
.yd8{bottom:341.579863px;}
.y78{bottom:343.019863px;}
.y5b{bottom:344.099862px;}
.y120{bottom:345.179862px;}
.y164{bottom:346.799861px;}
.ybd{bottom:348.599861px;}
.y3d{bottom:350.399860px;}
.y125{bottom:351.119860px;}
.yfd{bottom:353.639859px;}
.ya4{bottom:360.119856px;}
.y11b{bottom:363.359855px;}
.y1d{bottom:364.619854px;}
.y188{bottom:365.519854px;}
.y163{bottom:365.879854px;}
.y8c{bottom:368.939852px;}
.y11f{bottom:369.119852px;}
.y157{bottom:370.379852px;}
.ye9{bottom:371.639851px;}
.yd7{bottom:371.819851px;}
.y77{bottom:373.259851px;}
.y3c{bottom:380.459848px;}
.y124{bottom:381.899847px;}
.yfc{bottom:382.799847px;}
.y5a{bottom:383.339847px;}
.y162{bottom:384.959846px;}
.y187{bottom:385.499846px;}
.y11a{bottom:387.299845px;}
.y156{bottom:388.559845px;}
.ybc{bottom:388.739845px;}
.ya3{bottom:390.359844px;}
.ye8{bottom:401.879839px;}
.y76{bottom:403.499839px;}
.y1c{bottom:403.859838px;}
.y161{bottom:404.219838px;}
.y119{bottom:404.579838px;}
.y155{bottom:407.819837px;}
.y8b{bottom:409.079836px;}
.y11e{bottom:409.439836px;}
.y3a{bottom:410.699836px;}
.yd6{bottom:410.879836px;}
.yfb{bottom:411.959835px;}
.y186{bottom:414.659834px;}
.y3b{bottom:416.639833px;}
.ybb{bottom:418.979832px;}
.y59{bottom:422.399831px;}
.y154{bottom:426.179830px;}
.ya2{bottom:430.499828px;}
.y75{bottom:433.559827px;}
.y1b{bottom:434.099826px;}
.y185{bottom:434.819826px;}
.y118{bottom:436.799825px;}
.y8a{bottom:439.319824px;}
.y39{bottom:440.939824px;}
.yd5{bottom:441.119824px;}
.y160{bottom:441.479823px;}
.y153{bottom:444.539822px;}
.ye7{bottom:447.059821px;}
.yb9{bottom:449.219820px;}
.yba{bottom:455.159818px;}
.ya1{bottom:460.739816px;}
.y58{bottom:461.639815px;}
.y152{bottom:462.719815px;}
.y184{bottom:463.979814px;}
.yfa{bottom:470.279812px;}
.y38{bottom:471.179812px;}
.yd4{bottom:471.359811px;}
.y74{bottom:472.799811px;}
.y1a{bottom:473.339811px;}
.y89{bottom:479.459808px;}
.y183{bottom:484.139806px;}
.y151{bottom:491.699803px;}
.y117{bottom:493.499803px;}
.yf9{bottom:499.439800px;}
.ya0{bottom:500.699800px;}
.y57{bottom:500.879800px;}
.y37{bottom:501.419799px;}
.yd3{bottom:501.599799px;}
.y73{bottom:503.039799px;}
.y19{bottom:503.579799px;}
.yb8{bottom:509.519796px;}
.ye6{bottom:510.419796px;}
.y182{bottom:513.299795px;}
.y116{bottom:516.359793px;}
.y88{bottom:519.419792px;}
.y150{bottom:525.719790px;}
.yf8{bottom:528.599789px;}
.y36{bottom:531.659787px;}
.y18{bottom:533.819786px;}
.y115{bottom:539.219784px;}
.y55{bottom:540.119784px;}
.ye5{bottom:540.659784px;}
.y9f{bottom:540.839784px;}
.y71{bottom:542.279783px;}
.y181{bottom:542.639783px;}
.y56{bottom:546.059782px;}
.y72{bottom:548.219781px;}
.y87{bottom:549.659780px;}
.y10b{bottom:554.519778px;}
.yf7{bottom:557.759777px;}
.y14f{bottom:559.919776px;}
.y110{bottom:560.459776px;}
.y114{bottom:562.259775px;}
.y17{bottom:563.879774px;}
.y54{bottom:570.359772px;}
.y35{bottom:570.719772px;}
.ye4{bottom:570.899772px;}
.yd2{bottom:571.079772px;}
.y70{bottom:572.519771px;}
.y10a{bottom:578.639769px;}
.y9e{bottom:580.979768px;}
.y10f{bottom:584.399766px;}
.y113{bottom:585.119766px;}
.yf6{bottom:586.919765px;}
.y14e{bottom:588.539765px;}
.y86{bottom:589.799764px;}
.y53{bottom:600.599760px;}
.y34{bottom:600.959760px;}
.yd1{bottom:601.319759px;}
.y180{bottom:601.499759px;}
.y109{bottom:602.579759px;}
.y6f{bottom:602.759759px;}
.y16{bottom:604.379758px;}
.y112{bottom:607.979757px;}
.y10e{bottom:608.519757px;}
.ye3{bottom:610.139756px;}
.yf5{bottom:615.899754px;}
.y14d{bottom:617.879753px;}
.y108{bottom:619.859752px;}
.y85{bottom:620.039752px;}
.y9d{bottom:620.219752px;}
.y52{bottom:630.839748px;}
.y33{bottom:631.199748px;}
.yd0{bottom:631.379747px;}
.y17f{bottom:631.739747px;}
.y6e{bottom:632.099747px;}
.y10d{bottom:632.459747px;}
.y14c{bottom:636.239746px;}
.ye2{bottom:640.379744px;}
.y107{bottom:643.979742px;}
.yf4{bottom:645.059742px;}
.y111{bottom:645.239742px;}
.y84{bottom:650.279740px;}
.y9c{bottom:650.459740px;}
.y15{bottom:653.339739px;}
.y149{bottom:655.499738px;}
.yb7{bottom:660.179736px;}
.y51{bottom:660.899736px;}
.y14b{bottom:664.679734px;}
.y106{bottom:667.919733px;}
.ycf{bottom:670.619732px;}
.y17e{bottom:670.979732px;}
.y32{bottom:671.519731px;}
.y10c{bottom:672.599731px;}
.y148{bottom:673.679731px;}
.yf3{bottom:674.219730px;}
.y14a{bottom:682.859727px;}
.y14{bottom:683.399727px;}
.y83{bottom:690.239724px;}
.y9b{bottom:690.419724px;}
.y6d{bottom:690.959724px;}
.y50{bottom:691.139724px;}
.y147{bottom:692.039723px;}
.yb6{bottom:699.239720px;}
.y105{bottom:699.959720px;}
.yce{bottom:700.859720px;}
.y17d{bottom:701.039720px;}
.y13{bottom:701.759719px;}
.yf2{bottom:703.379719px;}
.ye1{bottom:709.679716px;}
.y145{bottom:711.299715px;}
.y12{bottom:720.119712px;}
.y82{bottom:720.479712px;}
.y9a{bottom:720.659712px;}
.y6c{bottom:721.019712px;}
.y4f{bottom:721.379711px;}
.yb5{bottom:729.479708px;}
.y144{bottom:729.659708px;}
.y31{bottom:730.379708px;}
.ycd{bottom:731.099708px;}
.y17c{bottom:731.279707px;}
.yf1{bottom:732.539707px;}
.y146{bottom:738.839704px;}
.y11{bottom:747.479701px;}
.y143{bottom:747.839701px;}
.ye0{bottom:749.819700px;}
.y99{bottom:750.899700px;}
.y6b{bottom:751.259699px;}
.yb4{bottom:759.719696px;}
.ycc{bottom:760.439696px;}
.y30{bottom:760.619696px;}
.y17b{bottom:761.519695px;}
.yf0{bottom:761.879695px;}
.y10{bottom:765.659694px;}
.y142{bottom:766.919693px;}
.y141{bottom:776.099690px;}
.yf{bottom:784.019686px;}
.yb3{bottom:789.959684px;}
.y69{bottom:790.499684px;}
.y2f{bottom:790.859684px;}
.y98{bottom:791.039684px;}
.y6a{bottom:796.439681px;}
.y4e{bottom:799.859680px;}
.y17a{bottom:800.759680px;}
.ye{bottom:802.379679px;}
.y140{bottom:804.359678px;}
.y13c{bottom:813.539675px;}
.yca{bottom:819.299672px;}
.yef{bottom:820.739672px;}
.y81{bottom:821.099672px;}
.y97{bottom:821.279671px;}
.y13f{bottom:822.719671px;}
.ycb{bottom:825.239670px;}
.yb1{bottom:829.199668px;}
.yd{bottom:829.559668px;}
.y2e{bottom:830.099668px;}
.y68{bottom:830.639668px;}
.y179{bottom:830.999668px;}
.y13b{bottom:831.899667px;}
.yb2{bottom:835.139666px;}
.y13e{bottom:841.079664px;}
.yc{bottom:847.919661px;}
.yc9{bottom:849.539660px;}
.y13a{bottom:850.079660px;}
.y80{bottom:851.159660px;}
.y96{bottom:851.519659px;}
.y13d{bottom:859.259656px;}
.yb0{bottom:859.439656px;}
.y2d{bottom:860.159656px;}
.yee{bottom:860.879656px;}
.y178{bottom:861.239656px;}
.yb{bottom:866.279653px;}
.y67{bottom:870.779652px;}
.y137{bottom:878.519649px;}
.yc8{bottom:879.779648px;}
.y95{bottom:881.579647px;}
.y139{bottom:887.699645px;}
.yaf{bottom:889.499644px;}
.y2c{bottom:890.399644px;}
.y177{bottom:891.299643px;}
.ya{bottom:894.359642px;}
.y136{bottom:896.879641px;}
.ydf{bottom:899.399640px;}
.y66{bottom:900.839640px;}
.y138{bottom:906.059638px;}
.y135{bottom:915.239634px;}
.yc7{bottom:918.839632px;}
.yae{bottom:919.739632px;}
.y2b{bottom:920.639632px;}
.y176{bottom:921.539631px;}
.y94{bottom:921.719631px;}
.y9{bottom:925.139630px;}
.yde{bottom:929.639628px;}
.y132{bottom:938.819624px;}
.y65{bottom:940.979624px;}
.y134{bottom:947.999621px;}
.yc6{bottom:949.079620px;}
.y2a{bottom:950.879620px;}
.y8{bottom:954.299618px;}
.y131{bottom:957.179617px;}
.yad{bottom:958.979616px;}
.y4c{bottom:959.879616px;}
.y175{bottom:960.779616px;}
.y4d{bottom:965.819614px;}
.y133{bottom:966.359613px;}
.y130{bottom:975.539610px;}
.yc5{bottom:979.319608px;}
.y29{bottom:981.119608px;}
.y7{bottom:983.459607px;}
.yac{bottom:989.219604px;}
.y4b{bottom:990.119604px;}
.y174{bottom:991.019604px;}
.y93{bottom:999.119600px;}
.y6{bottom:1012.619595px;}
.yc4{bottom:1019.459592px;}
.y28{bottom:1020.359592px;}
.yab{bottom:1028.459589px;}
.y92{bottom:1029.359588px;}
.y12f{bottom:1034.939586px;}
.y5{bottom:1041.599583px;}
.yc3{bottom:1049.699580px;}
.y27{bottom:1050.599580px;}
.yaa{bottom:1058.699577px;}
.y4a{bottom:1059.599576px;}
.y173{bottom:1069.319572px;}
.y12e{bottom:1070.939572px;}
.y4{bottom:1071.839571px;}
.yc2{bottom:1079.759568px;}
.ya8{bottom:1088.939564px;}
.y26{bottom:1089.659564px;}
.y12d{bottom:1090.739564px;}
.ya9{bottom:1094.879562px;}
.y7f{bottom:1095.599562px;}
.y3{bottom:1106.399557px;}
.y172{bottom:1118.279553px;}
.ya7{bottom:1118.999552px;}
.y25{bottom:1119.899552px;}
.y2{bottom:1174.259530px;}
.y1{bottom:1194.419522px;}
.h9{height:28.934285px;}
.h7{height:32.064597px;}
.h5{height:34.439752px;}
.h8{height:45.895763px;}
.h4{height:49.284472px;}
.hb{height:52.253417px;}
.h1{height:54.628572px;}
.h3{height:59.378882px;}
.hf{height:62.327788px;}
.ha{height:69.086222px;}
.h2{height:69.473293px;}
.h6{height:70.664034px;}
.hd{height:86.004458px;}
.he{height:122.004443px;}
.hc{height:122.724443px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x34{left:121.859951px;}
.x2{left:127.620545px;}
.x36{left:129.960971px;}
.x7{left:131.039948px;}
.xe{left:132.839947px;}
.xf{left:138.239945px;}
.x50{left:140.759933px;}
.x16{left:142.199943px;}
.x44{left:143.279938px;}
.x45{left:146.699936px;}
.x4f{left:151.019940px;}
.x15{left:154.620627px;}
.x1f{left:159.660486px;}
.x57{left:161.639951px;}
.x6{left:170.099932px;}
.x18{left:181.620372px;}
.x30{left:186.839925px;}
.x2b{left:190.259924px;}
.x26{left:202.141121px;}
.x3{left:208.619917px;}
.x10{left:238.139905px;}
.x8{left:253.799898px;}
.xa{left:264.419894px;}
.xb{left:269.639892px;}
.x38{left:274.139844px;}
.x4{left:276.119298px;}
.x37{left:277.559842px;}
.x20{left:280.619888px;}
.x3f{left:281.699915px;}
.x21{left:285.839886px;}
.x56{left:287.639863px;}
.x40{left:291.239915px;}
.x52{left:292.500247px;}
.x51{left:298.800273px;}
.x4d{left:300.599397px;}
.x35{left:306.180635px;}
.x27{left:321.839871px;}
.x22{left:324.359870px;}
.x23{left:329.579868px;}
.x28{left:332.279867px;}
.x13{left:336.059866px;}
.x14{left:341.279863px;}
.x31{left:360.899856px;}
.x32{left:362.339855px;}
.x2c{left:364.319854px;}
.x2d{left:365.939854px;}
.x39{left:398.159949px;}
.x53{left:406.800327px;}
.x1d{left:417.059833px;}
.x1e{left:422.279831px;}
.xc{left:432.179827px;}
.x24{left:434.159826px;}
.xd{left:437.399825px;}
.x25{left:444.599822px;}
.x5{left:446.399821px;}
.x58{left:448.739821px;}
.x59{left:459.179822px;}
.x4e{left:472.139403px;}
.x46{left:473.580427px;}
.x54{left:476.640276px;}
.x47{left:477.900426px;}
.x3c{left:479.699980px;}
.x48{left:480.960420px;}
.x3b{left:485.459979px;}
.x41{left:489.599857px;}
.x11{left:502.919799px;}
.x12{left:508.139797px;}
.x3a{left:514.079934px;}
.x2f{left:532.079787px;}
.x33{left:534.959786px;}
.x1b{left:537.299785px;}
.x2e{left:538.379785px;}
.x1c{left:542.519783px;}
.x4b{left:587.700004px;}
.x3e{left:597.960776px;}
.x4c{left:599.580005px;}
.x42{left:601.019909px;}
.x5b{left:605.339451px;}
.x43{left:615.599915px;}
.x5a{left:618.479457px;}
.x55{left:620.820288px;}
.x49{left:635.399974px;}
.x4a{left:643.139971px;}
.x19{left:656.459737px;}
.x29{left:658.439737px;}
.x1a{left:661.679735px;}
.x3d{left:666.360726px;}
.x2a{left:668.879732px;}
.x9{left:683.459727px;}
.x17{left:734.579706px;}
.x1{left:765.359694px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.639987pt;}
.v2{vertical-align:65.279974pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.147680pt;}
.ls9{letter-spacing:7.646397pt;}
.lsa{letter-spacing:8.927196pt;}
.ls4{letter-spacing:15.010127pt;}
.ls6{letter-spacing:16.931247pt;}
.ls8{letter-spacing:28.779402pt;}
.ls5{letter-spacing:31.660041pt;}
.ls2{letter-spacing:34.861959pt;}
.ls3{letter-spacing:52.792939pt;}
.ls1{letter-spacing:175.606116pt;}
.ws3{word-spacing:-14.719994pt;}
.ws6{word-spacing:-14.463994pt;}
.ws2{word-spacing:-13.306875pt;}
.ws8{word-spacing:-13.279995pt;}
.ws7{word-spacing:-12.728315pt;}
.ws1{word-spacing:-12.005115pt;}
.ws4{word-spacing:-8.389117pt;}
.ws5{word-spacing:-7.810557pt;}
.ws0{word-spacing:0.000000pt;}
._13{margin-left:-8.936022pt;}
._19{margin-left:-3.525522pt;}
._2e{margin-left:-2.059733pt;}
._0{margin-left:-0.970938pt;}
._1{width:1.166450pt;}
._5{width:2.095283pt;}
._c{width:3.253069pt;}
._b{width:4.178002pt;}
._11{width:5.343019pt;}
._a{width:6.513653pt;}
._8{width:8.018373pt;}
._d{width:9.252032pt;}
._14{width:10.465597pt;}
._12{width:11.566522pt;}
._2{width:12.911490pt;}
._7{width:14.331906pt;}
._4{width:15.227659pt;}
._3{width:16.208704pt;}
._15{width:17.851043pt;}
._17{width:19.172546pt;}
._10{width:20.069726pt;}
._e{width:21.226737pt;}
._1c{width:22.123761pt;}
._18{width:23.278692pt;}
._6{width:24.588985pt;}
._f{width:27.031566pt;}
._2f{width:28.213857pt;}
._1a{width:30.841319pt;}
._1d{width:33.635273pt;}
._1b{width:46.672870pt;}
._9{width:66.440625pt;}
._20{width:71.623078pt;}
._29{width:94.155328pt;}
._2b{width:116.568145pt;}
._23{width:117.853606pt;}
._25{width:123.616804pt;}
._28{width:126.151685pt;}
._1f{width:131.626401pt;}
._1e{width:148.612583pt;}
._21{width:153.716688pt;}
._2a{width:156.272888pt;}
._26{width:174.257188pt;}
._16{width:175.601875pt;}
._24{width:188.751127pt;}
._22{width:218.046953pt;}
._27{width:235.789794pt;}
._2d{width:558.256941pt;}
._2c{width:561.973441pt;}
.fs5{font-size:34.559986pt;}
.fs4{font-size:37.119985pt;}
.fs3{font-size:53.119979pt;}
.fs6{font-size:56.319977pt;}
.fs0{font-size:58.879976pt;}
.fs2{font-size:63.999974pt;}
.fs1{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:117.226620pt;}
.y64{bottom:117.226886pt;}
.y7e{bottom:121.866885pt;}
.y24{bottom:128.106615pt;}
.y104{bottom:133.066613pt;}
.y48{bottom:133.386613pt;}
.ydd{bottom:134.026613pt;}
.y63{bottom:146.666608pt;}
.y47{bottom:149.706607pt;}
.y171{bottom:152.426606pt;}
.y46{bottom:154.346605pt;}
.y23{bottom:154.986605pt;}
.y103{bottom:158.986603pt;}
.ydc{bottom:161.386602pt;}
.y15f{bottom:162.506602pt;}
.y62{bottom:163.626601pt;}
.y45{bottom:166.026600pt;}
.y7d{bottom:166.506600pt;}
.y61{bottom:168.906599pt;}
.y170{bottom:169.386599pt;}
.y91{bottom:170.666598pt;}
.y16b{bottom:172.106598pt;}
.y15e{bottom:179.946595pt;}
.y60{bottom:180.906594pt;}
.y12c{bottom:181.066594pt;}
.y22{bottom:181.866594pt;}
.y44{bottom:182.826594pt;}
.y102{bottom:184.906593pt;}
.y5f{bottom:185.546592pt;}
.y16f{bottom:186.506592pt;}
.y43{bottom:188.106591pt;}
.y16a{bottom:189.066591pt;}
.y7c{bottom:189.386591pt;}
.y12b{bottom:195.786588pt;}
.y15d{bottom:196.106588pt;}
.y5e{bottom:197.706588pt;}
.y42{bottom:200.746586pt;}
.yc1{bottom:202.506586pt;}
.y90{bottom:202.986585pt;}
.y16e{bottom:203.466585pt;}
.y169{bottom:206.186584pt;}
.y101{bottom:210.826582pt;}
.y15c{bottom:213.226581pt;}
.ydb{bottom:214.986581pt;}
.y12a{bottom:216.106580pt;}
.y7b{bottom:216.266580pt;}
.y21{bottom:216.746580pt;}
.y16d{bottom:220.426578pt;}
.y168{bottom:222.346578pt;}
.ya6{bottom:222.826578pt;}
.y18c{bottom:229.226575pt;}
.yc0{bottom:229.386575pt;}
.y15b{bottom:229.546575pt;}
.y41{bottom:230.826574pt;}
.y129{bottom:236.426572pt;}
.y100{bottom:236.746572pt;}
.y16c{bottom:237.546572pt;}
.y8f{bottom:238.666571pt;}
.y167{bottom:239.306571pt;}
.yed{bottom:241.706570pt;}
.yda{bottom:241.866570pt;}
.y123{bottom:242.666570pt;}
.y7a{bottom:243.146569pt;}
.y20{bottom:243.626569pt;}
.y5d{bottom:244.106569pt;}
.y15a{bottom:245.706568pt;}
.y18b{bottom:255.146565pt;}
.ybf{bottom:256.266564pt;}
.y166{bottom:256.426564pt;}
.y128{bottom:256.746564pt;}
.y3f{bottom:257.706564pt;}
.yff{bottom:262.666562pt;}
.y40{bottom:262.986561pt;}
.y122{bottom:264.106561pt;}
.y8e{bottom:265.546560pt;}
.y1f{bottom:270.506558pt;}
.y5c{bottom:270.986558pt;}
.y127{bottom:271.466558pt;}
.yeb{bottom:276.586556pt;}
.yd9{bottom:276.746556pt;}
.y79{bottom:278.026555pt;}
.y159{bottom:278.986555pt;}
.y18a{bottom:281.066554pt;}
.yec{bottom:281.866554pt;}
.ybe{bottom:283.146553pt;}
.y3e{bottom:284.586553pt;}
.y121{bottom:285.386553pt;}
.y11d{bottom:286.186552pt;}
.yfe{bottom:288.426551pt;}
.y126{bottom:291.786550pt;}
.y165{bottom:292.106550pt;}
.ya5{bottom:293.386549pt;}
.y158{bottom:295.946548pt;}
.y1e{bottom:297.386548pt;}
.y189{bottom:298.986547pt;}
.y8d{bottom:301.226546pt;}
.y11c{bottom:301.546546pt;}
.yea{bottom:303.466545pt;}
.yd8{bottom:303.626545pt;}
.y78{bottom:304.906545pt;}
.y5b{bottom:305.866544pt;}
.y120{bottom:306.826544pt;}
.y164{bottom:308.266543pt;}
.ybd{bottom:309.866543pt;}
.y3d{bottom:311.466542pt;}
.y125{bottom:312.106542pt;}
.yfd{bottom:314.346541pt;}
.ya4{bottom:320.106539pt;}
.y11b{bottom:322.986537pt;}
.y1d{bottom:324.106537pt;}
.y188{bottom:324.906537pt;}
.y163{bottom:325.226537pt;}
.y8c{bottom:327.946535pt;}
.y11f{bottom:328.106535pt;}
.y157{bottom:329.226535pt;}
.ye9{bottom:330.346535pt;}
.yd7{bottom:330.506534pt;}
.y77{bottom:331.786534pt;}
.y3c{bottom:338.186531pt;}
.y124{bottom:339.466531pt;}
.yfc{bottom:340.266531pt;}
.y5a{bottom:340.746530pt;}
.y162{bottom:342.186530pt;}
.y187{bottom:342.666530pt;}
.y11a{bottom:344.266529pt;}
.y156{bottom:345.386529pt;}
.ybc{bottom:345.546528pt;}
.ya3{bottom:346.986528pt;}
.ye8{bottom:357.226524pt;}
.y76{bottom:358.666523pt;}
.y1c{bottom:358.986523pt;}
.y161{bottom:359.306523pt;}
.y119{bottom:359.626523pt;}
.y155{bottom:362.506522pt;}
.y8b{bottom:363.626521pt;}
.y11e{bottom:363.946521pt;}
.y3a{bottom:365.066521pt;}
.yd6{bottom:365.226521pt;}
.yfb{bottom:366.186520pt;}
.y186{bottom:368.586519pt;}
.y3b{bottom:370.346519pt;}
.ybb{bottom:372.426518pt;}
.y59{bottom:375.466516pt;}
.y154{bottom:378.826515pt;}
.ya2{bottom:382.666514pt;}
.y75{bottom:385.386513pt;}
.y1b{bottom:385.866512pt;}
.y185{bottom:386.506512pt;}
.y118{bottom:388.266511pt;}
.y8a{bottom:390.506510pt;}
.y39{bottom:391.946510pt;}
.yd5{bottom:392.106510pt;}
.y160{bottom:392.426510pt;}
.y153{bottom:395.146509pt;}
.ye7{bottom:397.386508pt;}
.yb9{bottom:399.306507pt;}
.yba{bottom:404.586505pt;}
.ya1{bottom:409.546503pt;}
.y58{bottom:410.346503pt;}
.y152{bottom:411.306502pt;}
.y184{bottom:412.426502pt;}
.yfa{bottom:418.026499pt;}
.y38{bottom:418.826499pt;}
.yd4{bottom:418.986499pt;}
.y74{bottom:420.266499pt;}
.y1a{bottom:420.746498pt;}
.y89{bottom:426.186496pt;}
.y183{bottom:430.346495pt;}
.y151{bottom:437.066492pt;}
.y117{bottom:438.666491pt;}
.yf9{bottom:443.946489pt;}
.ya0{bottom:445.066489pt;}
.y57{bottom:445.226489pt;}
.y37{bottom:445.706488pt;}
.yd3{bottom:445.866488pt;}
.y73{bottom:447.146488pt;}
.y19{bottom:447.626488pt;}
.yb8{bottom:452.906486pt;}
.ye6{bottom:453.706485pt;}
.y182{bottom:456.266484pt;}
.y116{bottom:458.986483pt;}
.y88{bottom:461.706482pt;}
.y150{bottom:467.306480pt;}
.yf8{bottom:469.866479pt;}
.y36{bottom:472.586478pt;}
.y18{bottom:474.506477pt;}
.y115{bottom:479.306475pt;}
.y55{bottom:480.106475pt;}
.ye5{bottom:480.586474pt;}
.y9f{bottom:480.746474pt;}
.y71{bottom:482.026474pt;}
.y181{bottom:482.346474pt;}
.y56{bottom:485.386473pt;}
.y72{bottom:487.306472pt;}
.y87{bottom:488.586471pt;}
.y10b{bottom:492.906470pt;}
.yf7{bottom:495.786468pt;}
.y14f{bottom:497.706468pt;}
.y110{bottom:498.186467pt;}
.y114{bottom:499.786467pt;}
.y17{bottom:501.226466pt;}
.y54{bottom:506.986464pt;}
.y35{bottom:507.306464pt;}
.ye4{bottom:507.466464pt;}
.yd2{bottom:507.626464pt;}
.y70{bottom:508.906463pt;}
.y10a{bottom:514.346461pt;}
.y9e{bottom:516.426460pt;}
.y10f{bottom:519.466459pt;}
.y113{bottom:520.106459pt;}
.yf6{bottom:521.706458pt;}
.y14e{bottom:523.146457pt;}
.y86{bottom:524.266457pt;}
.y53{bottom:533.866453pt;}
.y34{bottom:534.186453pt;}
.yd1{bottom:534.506453pt;}
.y180{bottom:534.666453pt;}
.y109{bottom:535.626452pt;}
.y6f{bottom:535.786452pt;}
.y16{bottom:537.226452pt;}
.y112{bottom:540.426450pt;}
.y10e{bottom:540.906450pt;}
.ye3{bottom:542.346450pt;}
.yf5{bottom:547.466448pt;}
.y14d{bottom:549.226447pt;}
.y108{bottom:550.986446pt;}
.y85{bottom:551.146446pt;}
.y9d{bottom:551.306446pt;}
.y52{bottom:560.746442pt;}
.y33{bottom:561.066442pt;}
.yd0{bottom:561.226442pt;}
.y17f{bottom:561.546442pt;}
.y6e{bottom:561.866442pt;}
.y10d{bottom:562.186442pt;}
.y14c{bottom:565.546440pt;}
.ye2{bottom:569.226439pt;}
.y107{bottom:572.426438pt;}
.yf4{bottom:573.386437pt;}
.y111{bottom:573.546437pt;}
.y84{bottom:578.026435pt;}
.y9c{bottom:578.186435pt;}
.y15{bottom:580.746434pt;}
.y149{bottom:582.666434pt;}
.yb7{bottom:586.826432pt;}
.y51{bottom:587.466432pt;}
.y14b{bottom:590.826430pt;}
.y106{bottom:593.706429pt;}
.ycf{bottom:596.106428pt;}
.y17e{bottom:596.426428pt;}
.y32{bottom:596.906428pt;}
.y10c{bottom:597.866428pt;}
.y148{bottom:598.826427pt;}
.yf3{bottom:599.306427pt;}
.y14a{bottom:606.986424pt;}
.y14{bottom:607.466424pt;}
.y83{bottom:613.546421pt;}
.y9b{bottom:613.706421pt;}
.y6d{bottom:614.186421pt;}
.y50{bottom:614.346421pt;}
.y147{bottom:615.146421pt;}
.yb6{bottom:621.546418pt;}
.y105{bottom:622.186418pt;}
.yce{bottom:622.986417pt;}
.y17d{bottom:623.146417pt;}
.y13{bottom:623.786417pt;}
.yf2{bottom:625.226417pt;}
.ye1{bottom:630.826414pt;}
.y145{bottom:632.266414pt;}
.y12{bottom:640.106411pt;}
.y82{bottom:640.426410pt;}
.y9a{bottom:640.586410pt;}
.y6c{bottom:640.906410pt;}
.y4f{bottom:641.226410pt;}
.yb5{bottom:648.426407pt;}
.y144{bottom:648.586407pt;}
.y31{bottom:649.226407pt;}
.ycd{bottom:649.866407pt;}
.y17c{bottom:650.026407pt;}
.yf1{bottom:651.146406pt;}
.y146{bottom:656.746404pt;}
.y11{bottom:664.426401pt;}
.y143{bottom:664.746401pt;}
.ye0{bottom:666.506400pt;}
.y99{bottom:667.466400pt;}
.y6b{bottom:667.786400pt;}
.yb4{bottom:675.306397pt;}
.ycc{bottom:675.946396pt;}
.y30{bottom:676.106396pt;}
.y17b{bottom:676.906396pt;}
.yf0{bottom:677.226396pt;}
.y10{bottom:680.586394pt;}
.y142{bottom:681.706394pt;}
.y141{bottom:689.866391pt;}
.yf{bottom:696.906388pt;}
.yb3{bottom:702.186386pt;}
.y69{bottom:702.666386pt;}
.y2f{bottom:702.986385pt;}
.y98{bottom:703.146385pt;}
.y6a{bottom:707.946383pt;}
.y4e{bottom:710.986382pt;}
.y17a{bottom:711.786382pt;}
.ye{bottom:713.226381pt;}
.y140{bottom:714.986381pt;}
.y13c{bottom:723.146377pt;}
.yca{bottom:728.266375pt;}
.yef{bottom:729.546375pt;}
.y81{bottom:729.866375pt;}
.y97{bottom:730.026375pt;}
.y13f{bottom:731.306374pt;}
.ycb{bottom:733.546373pt;}
.yb1{bottom:737.066372pt;}
.yd{bottom:737.386372pt;}
.y2e{bottom:737.866372pt;}
.y68{bottom:738.346371pt;}
.y179{bottom:738.666371pt;}
.y13b{bottom:739.466371pt;}
.yb2{bottom:742.346370pt;}
.y13e{bottom:747.626368pt;}
.yc{bottom:753.706365pt;}
.yc9{bottom:755.146365pt;}
.y13a{bottom:755.626364pt;}
.y80{bottom:756.586364pt;}
.y96{bottom:756.906364pt;}
.y13d{bottom:763.786361pt;}
.yb0{bottom:763.946361pt;}
.y2d{bottom:764.586361pt;}
.yee{bottom:765.226361pt;}
.y178{bottom:765.546360pt;}
.yb{bottom:770.026359pt;}
.y67{bottom:774.026357pt;}
.y137{bottom:780.906354pt;}
.yc8{bottom:782.026354pt;}
.y95{bottom:783.626353pt;}
.y139{bottom:789.066351pt;}
.yaf{bottom:790.666350pt;}
.y2c{bottom:791.466350pt;}
.y177{bottom:792.266350pt;}
.ya{bottom:794.986349pt;}
.y136{bottom:797.226348pt;}
.ydf{bottom:799.466347pt;}
.y66{bottom:800.746346pt;}
.y138{bottom:805.386345pt;}
.y135{bottom:813.546341pt;}
.yc7{bottom:816.746340pt;}
.yae{bottom:817.546340pt;}
.y2b{bottom:818.346339pt;}
.y176{bottom:819.146339pt;}
.y94{bottom:819.306339pt;}
.y9{bottom:822.346338pt;}
.yde{bottom:826.346336pt;}
.y132{bottom:834.506333pt;}
.y65{bottom:836.426332pt;}
.y134{bottom:842.666330pt;}
.yc6{bottom:843.626329pt;}
.y2a{bottom:845.226329pt;}
.y8{bottom:848.266327pt;}
.y131{bottom:850.826326pt;}
.yad{bottom:852.426326pt;}
.y4c{bottom:853.226325pt;}
.y175{bottom:854.026325pt;}
.y4d{bottom:858.506323pt;}
.y133{bottom:858.986323pt;}
.y130{bottom:867.146320pt;}
.yc5{bottom:870.506318pt;}
.y29{bottom:872.106318pt;}
.y7{bottom:874.186317pt;}
.yac{bottom:879.306315pt;}
.y4b{bottom:880.106315pt;}
.y174{bottom:880.906314pt;}
.y93{bottom:888.106311pt;}
.y6{bottom:900.106307pt;}
.yc4{bottom:906.186304pt;}
.y28{bottom:906.986304pt;}
.yab{bottom:914.186301pt;}
.y92{bottom:914.986301pt;}
.y12f{bottom:919.946299pt;}
.y5{bottom:925.866296pt;}
.yc3{bottom:933.066293pt;}
.y27{bottom:933.866293pt;}
.yaa{bottom:941.066290pt;}
.y4a{bottom:941.866290pt;}
.y173{bottom:950.506286pt;}
.y12e{bottom:951.946286pt;}
.y4{bottom:952.746286pt;}
.yc2{bottom:959.786283pt;}
.ya8{bottom:967.946279pt;}
.y26{bottom:968.586279pt;}
.y12d{bottom:969.546279pt;}
.ya9{bottom:973.226277pt;}
.y7f{bottom:973.866277pt;}
.y3{bottom:983.466273pt;}
.y172{bottom:994.026269pt;}
.ya7{bottom:994.666269pt;}
.y25{bottom:995.466268pt;}
.y2{bottom:1043.786249pt;}
.y1{bottom:1061.706242pt;}
.h9{height:25.719365pt;}
.h7{height:28.501864pt;}
.h5{height:30.613113pt;}
.h8{height:40.796234pt;}
.h4{height:43.808420pt;}
.hb{height:46.447481pt;}
.h1{height:48.558731pt;}
.h3{height:52.781229pt;}
.hf{height:55.402478pt;}
.ha{height:61.409975pt;}
.h2{height:61.754038pt;}
.h6{height:62.812475pt;}
.hd{height:76.448407pt;}
.he{height:108.448394pt;}
.hc{height:109.088394pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x34{left:108.319957pt;}
.x2{left:113.440485pt;}
.x36{left:115.520863pt;}
.x7{left:116.479953pt;}
.xe{left:118.079953pt;}
.xf{left:122.879951pt;}
.x50{left:125.119941pt;}
.x16{left:126.399949pt;}
.x44{left:127.359945pt;}
.x45{left:130.399943pt;}
.x4f{left:134.239947pt;}
.x15{left:137.440558pt;}
.x1f{left:141.920432pt;}
.x57{left:143.679957pt;}
.x6{left:151.199940pt;}
.x18{left:161.440331pt;}
.x30{left:166.079934pt;}
.x2b{left:169.119932pt;}
.x26{left:179.680996pt;}
.x3{left:185.439926pt;}
.x10{left:211.679915pt;}
.x8{left:225.599910pt;}
.xa{left:235.039906pt;}
.xb{left:239.679904pt;}
.x38{left:243.679862pt;}
.x4{left:245.439376pt;}
.x37{left:246.719859pt;}
.x20{left:249.439900pt;}
.x3f{left:250.399924pt;}
.x21{left:254.079898pt;}
.x56{left:255.679878pt;}
.x40{left:258.879924pt;}
.x52{left:260.000219pt;}
.x51{left:265.600243pt;}
.x4d{left:267.199464pt;}
.x35{left:272.160564pt;}
.x27{left:286.079886pt;}
.x22{left:288.319885pt;}
.x23{left:292.959883pt;}
.x28{left:295.359882pt;}
.x13{left:298.719881pt;}
.x14{left:303.359879pt;}
.x31{left:320.799872pt;}
.x32{left:322.079871pt;}
.x2c{left:323.839870pt;}
.x2d{left:325.279870pt;}
.x39{left:353.919955pt;}
.x53{left:361.600291pt;}
.x1d{left:370.719852pt;}
.x1e{left:375.359850pt;}
.xc{left:384.159846pt;}
.x24{left:385.919846pt;}
.xd{left:388.799844pt;}
.x25{left:395.199842pt;}
.x5{left:396.799841pt;}
.x58{left:398.879840pt;}
.x59{left:408.159842pt;}
.x4e{left:419.679470pt;}
.x46{left:420.960380pt;}
.x54{left:423.680246pt;}
.x47{left:424.800379pt;}
.x3c{left:426.399983pt;}
.x48{left:427.520373pt;}
.x3b{left:431.519982pt;}
.x41{left:435.199873pt;}
.x11{left:447.039821pt;}
.x12{left:451.679819pt;}
.x3a{left:456.959942pt;}
.x2f{left:472.959811pt;}
.x33{left:475.519810pt;}
.x1b{left:477.599809pt;}
.x2e{left:478.559809pt;}
.x1c{left:482.239807pt;}
.x4b{left:522.400003pt;}
.x3e{left:531.520690pt;}
.x4c{left:532.960005pt;}
.x42{left:534.239919pt;}
.x5b{left:538.079512pt;}
.x43{left:547.199925pt;}
.x5a{left:549.759518pt;}
.x55{left:551.840256pt;}
.x49{left:564.799977pt;}
.x4a{left:571.679974pt;}
.x19{left:583.519767pt;}
.x29{left:585.279766pt;}
.x1a{left:588.159765pt;}
.x3d{left:592.320645pt;}
.x2a{left:594.559762pt;}
.x9{left:607.519757pt;}
.x17{left:652.959739pt;}
.x1{left:680.319728pt;}
}




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