
    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_9337d19240d014330691f7b8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.133301;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_0a4b8a91609bda4059e5b156.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.027832;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_f00cc1ba8ba8c7051cf9a2d7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942871;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_cca38658762a852f8aab5359.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.000000;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_d9418d45ca274bde9b722afb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.988281;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_7e50f5f202c228987c0843a1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.000000;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_7f74971c0ccd0a439e28a3e7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.719000;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.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);}
.mb{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);}
.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);}
.m3{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,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);}
.m4{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);}
.m7{transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-45.359982px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.016680px;}
.lsa{letter-spacing:0.021458px;}
.ls6{letter-spacing:0.288960px;}
.ls9{letter-spacing:0.295500px;}
.ls8{letter-spacing:0.348720px;}
.ls1{letter-spacing:0.406080px;}
.ls3{letter-spacing:7.941537px;}
.ls5{letter-spacing:29.891328px;}
.ls2{letter-spacing:38.216505px;}
.ls4{letter-spacing:43.183418px;}
.lsb{letter-spacing:487.755885px;}
.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;}
}
.ws0{word-spacing:-40.319984px;}
.ws4{word-spacing:-23.587191px;}
.ws2{word-spacing:-16.732793px;}
.ws3{word-spacing:-16.553513px;}
.ws5{word-spacing:-15.199516px;}
.ws7{word-spacing:-14.939994px;}
.ws8{word-spacing:-13.507195px;}
.ws9{word-spacing:-11.692795px;}
.ws6{word-spacing:-10.769756px;}
.ws1{word-spacing:0.000000px;}
._20{margin-left:-2101.481400px;}
._27{margin-left:-32.983802px;}
._21{margin-left:-2.834305px;}
._9{margin-left:-1.378185px;}
._0{width:1.084561px;}
._c{width:2.261199px;}
._b{width:3.758547px;}
._7{width:4.790400px;}
._6{width:5.850204px;}
._f{width:7.411200px;}
._1d{width:8.441488px;}
._10{width:9.461697px;}
._4{width:10.847612px;}
._5{width:12.313185px;}
._a{width:13.826567px;}
._e{width:15.346487px;}
._15{width:17.607878px;}
._11{width:18.690494px;}
._12{width:19.695022px;}
._26{width:20.718148px;}
._8{width:21.856857px;}
._1c{width:23.042869px;}
._13{width:24.643053px;}
._14{width:25.714432px;}
._1b{width:26.899675px;}
._1a{width:28.087130px;}
._1e{width:30.307309px;}
._19{width:32.313068px;}
._d{width:33.357546px;}
._18{width:35.438378px;}
._36{width:37.548703px;}
._37{width:38.842043px;}
._17{width:40.092992px;}
._16{width:41.193384px;}
._24{width:51.991364px;}
._25{width:53.135757px;}
._34{width:348.547118px;}
._35{width:359.624179px;}
._2e{width:438.262865px;}
._33{width:485.674737px;}
._28{width:501.259416px;}
._30{width:504.389968px;}
._2d{width:510.843673px;}
._2b{width:516.582564px;}
._31{width:518.812018px;}
._2a{width:531.368224px;}
._32{width:549.048768px;}
._2c{width:573.543785px;}
._2f{width:579.277343px;}
._29{width:665.389477px;}
._1{width:1019.789592px;}
._2{width:1412.345435px;}
._3{width:1876.139250px;}
._1f{width:2007.664957px;}
._23{width:2065.751578px;}
._22{width:2157.899541px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,51,101);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.879984px;}
.fs8{font-size:40.497104px;}
.fsb{font-size:41.759983px;}
.fs6{font-size:43.112863px;}
.fsa{font-size:48.239981px;}
.fs9{font-size:51.544779px;}
.fs7{font-size:54.871898px;}
.fs0{font-size:59.759976px;}
.fs2{font-size:71.999971px;}
.fs4{font-size:84.239966px;}
.fs3{font-size:95.759962px;}
.fs1{font-size:143.999942px;}
.y165{bottom:-0.179270px;}
.y167{bottom:-0.179262px;}
.y16b{bottom:-0.179246px;}
.y16d{bottom:-0.179238px;}
.y171{bottom:-0.179222px;}
.y175{bottom:-0.179207px;}
.y177{bottom:-0.179199px;}
.y0{bottom:0.000000px;}
.y169{bottom:0.000746px;}
.y16f{bottom:0.000770px;}
.y173{bottom:0.000785px;}
.y9b{bottom:0.360497px;}
.y9f{bottom:0.360556px;}
.ybe{bottom:0.540570px;}
.y9d{bottom:0.720521px;}
.ydb{bottom:1.800545px;}
.yd8{bottom:1.800581px;}
.ye6{bottom:1.800618px;}
.yed{bottom:1.800710px;}
.yf2{bottom:1.800756px;}
.yf0{bottom:1.800793px;}
.yb4{bottom:1.980523px;}
.ya1{bottom:1.980533px;}
.yab{bottom:1.980543px;}
.yb0{bottom:1.980553px;}
.ye9{bottom:1.980669px;}
.yeb{bottom:1.980673px;}
.ycb{bottom:1.980760px;}
.yc9{bottom:1.980790px;}
.ycd{bottom:1.980819px;}
.ya6{bottom:2.160528px;}
.yb7{bottom:2.340518px;}
.ya9{bottom:2.340533px;}
.yae{bottom:2.340538px;}
.ya4{bottom:2.340548px;}
.yba{bottom:2.340557px;}
.y127{bottom:3.060651px;}
.y36{bottom:115.320854px;}
.y65{bottom:116.401453px;}
.yd1{bottom:120.361452px;}
.y85{bottom:123.601451px;}
.yf9{bottom:124.321450px;}
.y112{bottom:128.821448px;}
.y64{bottom:134.761446px;}
.yd0{bottom:138.721445px;}
.y13d{bottom:141.961443px;}
.y91{bottom:142.321443px;}
.y35{bottom:142.681443px;}
.yf8{bottom:142.861443px;}
.y111{bottom:147.181441px;}
.y63{bottom:153.121439px;}
.y147{bottom:154.561438px;}
.ycf{bottom:157.261437px;}
.y13c{bottom:160.321436px;}
.y90{bottom:160.501436px;}
.y34{bottom:161.221436px;}
.y110{bottom:165.541434px;}
.y13{bottom:167.161433px;}
.y146{bottom:172.921431px;}
.y8f{bottom:178.141429px;}
.y8e{bottom:178.861428px;}
.y13b{bottom:179.041428px;}
.y33{bottom:179.581428px;}
.y62{bottom:180.481428px;}
.yce{bottom:181.561427px;}
.y10f{bottom:183.901426px;}
.y145{bottom:191.281423px;}
.y8d{bottom:197.221421px;}
.yf7{bottom:197.941421px;}
.y61{bottom:199.021420px;}
.ycc{bottom:200.280600px;}
.y10e{bottom:202.261419px;}
.y32{bottom:206.941417px;}
.y13a{bottom:215.581414px;}
.y8c{bottom:215.761414px;}
.yf6{bottom:216.301413px;}
.y12{bottom:216.661413px;}
.y60{bottom:217.381413px;}
.y10d{bottom:220.621412px;}
.y139{bottom:233.941406px;}
.y8b{bottom:234.121406px;}
.y31{bottom:234.301406px;}
.yf5{bottom:234.841406px;}
.y5f{bottom:235.741406px;}
.y10c{bottom:239.161404px;}
.y176{bottom:247.440600px;}
.y138{bottom:252.301399px;}
.y8a{bottom:252.481399px;}
.y5e{bottom:254.101398px;}
.yf4{bottom:259.141396px;}
.y30{bottom:261.661395px;}
.yef{bottom:265.620600px;}
.y10b{bottom:266.521393px;}
.y174{bottom:267.060600px;}
.y11{bottom:269.941392px;}
.y137{bottom:270.661392px;}
.y89{bottom:270.841392px;}
.y5d{bottom:272.461391px;}
.yc8{bottom:273.900600px;}
.ye4{bottom:279.121388px;}
.y161{bottom:279.841388px;}
.y2f{bottom:280.021388px;}
.y10a{bottom:284.881386px;}
.y172{bottom:286.680600px;}
.y88{bottom:289.201384px;}
.y5c{bottom:299.281380px;}
.y5b{bottom:300.001380px;}
.y170{bottom:306.300600px;}
.y87{bottom:307.561377px;}
.y179{bottom:308.821376px;}
.y109{bottom:309.181376px;}
.y2e{bottom:309.541376px;}
.y10{bottom:312.781375px;}
.y193{bottom:315.841374px;}
.y136{bottom:316.561373px;}
.y5a{bottom:318.361373px;}
.y16e{bottom:325.920600px;}
.y86{bottom:326.101370px;}
.y135{bottom:335.101366px;}
.y59{bottom:336.721365px;}
.y192{bottom:343.201363px;}
.y16c{bottom:345.540600px;}
.yca{bottom:347.340600px;}
.y162{bottom:349.861360px;}
.y134{bottom:353.281359px;}
.y58{bottom:355.081358px;}
.yf1{bottom:357.600600px;}
.yc6{bottom:358.141357px;}
.yc7{bottom:358.501357px;}
.y16a{bottom:365.160600px;}
.y191{bottom:370.561352px;}
.yf3{bottom:371.101352px;}
.y133{bottom:371.641351px;}
.y2d{bottom:372.901351px;}
.y57{bottom:373.441351px;}
.yf{bottom:375.061350px;}
.y92{bottom:378.301349px;}
.y168{bottom:384.780600px;}
.y17a{bottom:386.761345px;}
.y190{bottom:388.921344px;}
.y132{bottom:390.181344px;}
.y2c{bottom:391.261343px;}
.y17b{bottom:397.561341px;}
.y56{bottom:400.801340px;}
.y166{bottom:404.400600px;}
.y18f{bottom:407.281337px;}
.y2b{bottom:409.621336px;}
.y55{bottom:419.341332px;}
.y84{bottom:421.321331px;}
.y164{bottom:424.020600px;}
.y18e{bottom:425.821330px;}
.y131{bottom:427.261329px;}
.y2a{bottom:428.161329px;}
.y178{bottom:436.261325px;}
.ye{bottom:437.161325px;}
.y54{bottom:437.701325px;}
.y83{bottom:439.681324px;}
.y29{bottom:446.521321px;}
.ye3{bottom:451.381319px;}
.y18d{bottom:453.181319px;}
.y82{bottom:458.041317px;}
.y15d{bottom:460.741316px;}
.y15f{bottom:461.461315px;}
.yee{bottom:463.081315px;}
.y130{bottom:464.341314px;}
.y28{bottom:464.881314px;}
.y53{bottom:465.061314px;}
.y163{bottom:468.841312px;}
.y18c{bottom:471.541311px;}
.yec{bottom:472.620600px;}
.y15c{bottom:475.141310px;}
.y160{bottom:475.861310px;}
.y15e{bottom:476.041310px;}
.y81{bottom:476.401309px;}
.y52{bottom:483.421307px;}
.ye2{bottom:486.121306px;}
.y27{bottom:492.241303px;}
.yc5{bottom:493.321303px;}
.y80{bottom:494.941302px;}
.y18b{bottom:498.901300px;}
.yd{bottom:499.261300px;}
.y12f{bottom:501.601299px;}
.y51{bottom:501.781299px;}
.y97{bottom:509.341296px;}
.y26{bottom:510.601296px;}
.y7f{bottom:513.301295px;}
.y144{bottom:514.561294px;}
.y18a{bottom:517.261293px;}
.y50{bottom:520.141292px;}
.y25{bottom:528.961288px;}
.y7e{bottom:531.661287px;}
.y143{bottom:532.921287px;}
.y12e{bottom:537.961285px;}
.y12d{bottom:538.681285px;}
.y189{bottom:544.801282px;}
.y4f{bottom:548.761280px;}
.y142{bottom:551.281279px;}
.y24{bottom:553.441279px;}
.y94{bottom:558.301277px;}
.y7d{bottom:559.021276px;}
.yc{bottom:561.361275px;}
.y188{bottom:563.161275px;}
.yea{bottom:564.600600px;}
.y141{bottom:569.641272px;}
.y12c{bottom:575.761270px;}
.ye8{bottom:576.120600px;}
.y7c{bottom:577.381269px;}
.y96{bottom:582.781267px;}
.y140{bottom:588.181265px;}
.y187{bottom:590.521264px;}
.y7b{bottom:595.741262px;}
.y4e{bottom:600.421260px;}
.y114{bottom:604.201258px;}
.y13f{bottom:606.541257px;}
.y113{bottom:607.081257px;}
.y186{bottom:608.881256px;}
.y12b{bottom:612.841958px;}
.y129{bottom:613.021255px;}
.y12a{bottom:613.201255px;}
.y7a{bottom:614.281254px;}
.y4d{bottom:618.781252px;}
.y126{bottom:619.140600px;}
.y125{bottom:622.201251px;}
.yb{bottom:623.461251px;}
.y13e{bottom:630.841248px;}
.y128{bottom:631.381247px;}
.y95{bottom:631.741247px;}
.y79{bottom:632.641247px;}
.y185{bottom:636.241246px;}
.y4c{bottom:637.141245px;}
.y108{bottom:641.281243px;}
.y15a{bottom:645.601242px;}
.yc4{bottom:652.801239px;}
.y184{bottom:654.601238px;}
.y4b{bottom:655.501238px;}
.ye1{bottom:658.561237px;}
.y107{bottom:659.641236px;}
.y78{bottom:660.001236px;}
.y159{bottom:663.961234px;}
.y93{bottom:668.461233px;}
.y124{bottom:668.641233px;}
.ye7{bottom:670.261232px;}
.y23{bottom:673.501231px;}
.y4a{bottom:673.861230px;}
.y106{bottom:678.001229px;}
.y77{bottom:678.361229px;}
.ydc{bottom:678.901228px;}
.y183{bottom:682.141227px;}
.y158{bottom:682.321227px;}
.ya{bottom:685.741226px;}
.y123{bottom:686.821225px;}
.y22{bottom:691.861223px;}
.y49{bottom:692.221223px;}
.y105{bottom:696.361221px;}
.y76{bottom:696.721221px;}
.y182{bottom:700.501220px;}
.y157{bottom:700.861220px;}
.ye5{bottom:702.840600px;}
.y122{bottom:705.181218px;}
.y21{bottom:710.221216px;}
.y48{bottom:710.761216px;}
.y104{bottom:714.721214px;}
.y75{bottom:715.081214px;}
.yde{bottom:716.161214px;}
.y181{bottom:718.861212px;}
.y156{bottom:719.221212px;}
.y20{bottom:728.581209px;}
.y121{bottom:732.541207px;}
.y103{bottom:733.081207px;}
.y47{bottom:738.121205px;}
.ybf{bottom:741.901203px;}
.y74{bottom:742.621203px;}
.y180{bottom:746.221202px;}
.y155{bottom:746.581201px;}
.y1f{bottom:746.941201px;}
.y9{bottom:747.841201px;}
.y120{bottom:751.081200px;}
.y102{bottom:751.621199px;}
.y46{bottom:756.481197px;}
.y73{bottom:760.981196px;}
.yc0{bottom:762.781195px;}
.y17f{bottom:764.581194px;}
.y154{bottom:764.941194px;}
.y11f{bottom:769.441192px;}
.y45{bottom:774.841190px;}
.y1e{bottom:776.461189px;}
.y72{bottom:779.341188px;}
.y101{bottom:780.241188px;}
.y17e{bottom:782.941187px;}
.y153{bottom:783.301187px;}
.ydf{bottom:785.281186px;}
.y11e{bottom:787.981185px;}
.y8{bottom:791.941183px;}
.y44{bottom:793.201183px;}
.yd7{bottom:794.820600px;}
.yc2{bottom:799.141180px;}
.yc3{bottom:799.321180px;}
.y17d{bottom:801.481179px;}
.y152{bottom:801.661179px;}
.y11d{bottom:806.341177px;}
.y71{bottom:806.701177px;}
.ye0{bottom:808.321177px;}
.y151{bottom:820.201172px;}
.y43{bottom:820.741172px;}
.ybd{bottom:823.620600px;}
.y11c{bottom:824.521170px;}
.y70{bottom:825.061170px;}
.y17c{bottom:830.821168px;}
.y100{bottom:831.721167px;}
.y7{bottom:836.041166px;}
.y150{bottom:838.561165px;}
.y42{bottom:839.101164px;}
.y1d{bottom:839.821164px;}
.y11b{bottom:843.061163px;}
.y6f{bottom:843.421163px;}
.yff{bottom:850.081160px;}
.ybc{bottom:853.860600px;}
.yb9{bottom:854.220600px;}
.ybb{bottom:856.201158px;}
.yb8{bottom:856.561157px;}
.y14f{bottom:856.921157px;}
.y41{bottom:857.461157px;}
.y1c{bottom:858.181157px;}
.y9e{bottom:860.520600px;}
.y11a{bottom:861.421155px;}
.y6e{bottom:861.961155px;}
.yaf{bottom:866.640600px;}
.yfe{bottom:868.441153px;}
.y14e{bottom:875.281150px;}
.y40{bottom:875.821150px;}
.y1b{bottom:876.541149px;}
.ydd{bottom:877.261149px;}
.yb2{bottom:878.340600px;}
.ya3{bottom:878.700600px;}
.y6d{bottom:880.321148px;}
.yb1{bottom:880.681148px;}
.ya2{bottom:881.041148px;}
.y119{bottom:883.561147px;}
.y118{bottom:884.281146px;}
.yda{bottom:886.800600px;}
.yfd{bottom:886.801145px;}
.yaa{bottom:891.120600px;}
.y14d{bottom:893.641143px;}
.y3f{bottom:894.181142px;}
.y1a{bottom:895.081142px;}
.y6{bottom:898.141141px;}
.y6c{bottom:898.681141px;}
.yad{bottom:903.180600px;}
.yfc{bottom:905.341138px;}
.yac{bottom:905.521138px;}
.yd9{bottom:908.401137px;}
.y14c{bottom:912.001135px;}
.y3e{bottom:912.541135px;}
.y19{bottom:913.441135px;}
.ya8{bottom:915.240600px;}
.ya0{bottom:915.600600px;}
.y6b{bottom:917.041133px;}
.ya7{bottom:917.581133px;}
.y117{bottom:923.881130px;}
.ya5{bottom:927.840600px;}
.y14b{bottom:930.541128px;}
.y3d{bottom:931.081128px;}
.y18{bottom:931.801127px;}
.yfb{bottom:932.701127px;}
.yb3{bottom:940.080600px;}
.y116{bottom:942.061123px;}
.y6a{bottom:945.661122px;}
.y9c{bottom:946.020600px;}
.y14a{bottom:948.901120px;}
.y3c{bottom:949.441120px;}
.y17{bottom:950.161120px;}
.yd6{bottom:951.061120px;}
.yb6{bottom:951.780600px;}
.yb5{bottom:954.121118px;}
.y5{bottom:960.421116px;}
.y99{bottom:962.401115px;}
.y3b{bottom:967.801113px;}
.y16{bottom:968.521113px;}
.yd5{bottom:969.421112px;}
.yfa{bottom:973.201111px;}
.y149{bottom:976.261109px;}
.y115{bottom:978.781108px;}
.y3a{bottom:986.161106px;}
.y15{bottom:986.881105px;}
.yd4{bottom:987.781105px;}
.y148{bottom:994.621102px;}
.y69{bottom:997.141101px;}
.y39{bottom:1004.521098px;}
.yd3{bottom:1006.141098px;}
.y9a{bottom:1007.400600px;}
.y98{bottom:1011.361095px;}
.y68{bottom:1015.681094px;}
.y14{bottom:1016.401093px;}
.y4{bottom:1022.521091px;}
.y38{bottom:1022.881091px;}
.yd2{bottom:1024.681090px;}
.y67{bottom:1043.041083px;}
.yc1{bottom:1043.401083px;}
.y15b{bottom:1047.001081px;}
.y37{bottom:1052.401079px;}
.y66{bottom:1061.401075px;}
.y3{bottom:1088.761064px;}
.y1{bottom:1122.241051px;}
.y2{bottom:1185.601026px;}
.h1d{height:9.900000px;}
.h1f{height:10.080000px;}
.h13{height:12.060000px;}
.h16{height:12.240000px;}
.hd{height:12.960000px;}
.h10{height:13.140000px;}
.hf{height:13.320000px;}
.ha{height:13.860000px;}
.h11{height:14.040000px;}
.hc{height:14.220000px;}
.h19{height:17.820000px;}
.h1a{height:29.879988px;}
.h17{height:30.337019px;}
.h1e{height:34.235846px;}
.h9{height:35.344969px;}
.h7{height:35.975376px;}
.h14{height:37.471685px;}
.h18{height:39.548304px;}
.he{height:39.892029px;}
.h15{height:42.257658px;}
.h1c{height:44.636115px;}
.h12{height:44.985311px;}
.h5{height:46.629122px;}
.h8{height:48.992676px;}
.hb{height:50.772581px;}
.h1{height:55.295486px;}
.h1b{height:56.015485px;}
.h3{height:66.621067px;}
.h6{height:69.061965px;}
.h4{height:78.506336px;}
.h2{height:118.054640px;}
.h0{height:1263.000000px;}
.w9{width:0.180000px;}
.w6{width:0.360000px;}
.wb{width:0.540000px;}
.w7{width:0.720000px;}
.wa{width:0.900000px;}
.w14{width:3.060000px;}
.w10{width:5.580000px;}
.we{width:5.940000px;}
.w12{width:6.480720px;}
.w2{width:7.920000px;}
.w8{width:8.820000px;}
.w5{width:9.540000px;}
.w13{width:23.580000px;}
.w11{width:29.520000px;}
.wc{width:38.880000px;}
.w4{width:75.060000px;}
.w1{width:76.680000px;}
.wf{width:93.420000px;}
.wd{width:99.360000px;}
.w3{width:107.280000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3{left:127.619736px;}
.x11{left:148.859190px;}
.x66{left:152.459939px;}
.x15{left:153.539939px;}
.xa{left:154.619938px;}
.x9{left:157.319937px;}
.x39{left:162.539935px;}
.x48{left:165.060133px;}
.xd{left:166.499304px;}
.x47{left:167.939862px;}
.x3f{left:170.098620px;}
.xc{left:172.799931px;}
.x19{left:174.959930px;}
.x6{left:177.839351px;}
.x8{left:180.719928px;}
.xe{left:183.419402px;}
.x38{left:187.019925px;}
.x5a{left:190.629291px;}
.x46{left:192.239923px;}
.xf{left:193.679923px;}
.x1a{left:199.439920px;}
.x61{left:201.779919px;}
.x43{left:205.920000px;}
.x62{left:207.179917px;}
.x10{left:208.619917px;}
.x5{left:211.319311px;}
.x3a{left:213.120000px;}
.x25{left:215.280000px;}
.x68{left:220.859912px;}
.x26{left:224.820000px;}
.x36{left:230.939908px;}
.x37{left:235.260000px;}
.x27{left:240.479904px;}
.x4c{left:242.820543px;}
.x58{left:244.619724px;}
.x28{left:248.220000px;}
.x29{left:249.300000px;}
.x32{left:255.419898px;}
.x33{left:259.740000px;}
.x34{left:264.959894px;}
.x2a{left:267.479893px;}
.x2b{left:271.800000px;}
.x35{left:273.780000px;}
.x30{left:277.200000px;}
.x1b{left:284.759919px;}
.x31{left:286.020000px;}
.x18{left:288.179885px;}
.x2e{left:289.259884px;}
.x2f{left:297.180000px;}
.x44{left:298.980000px;}
.x49{left:300.779196px;}
.x67{left:307.979877px;}
.x3b{left:312.120000px;}
.x2c{left:313.200000px;}
.x7{left:317.519681px;}
.x5b{left:320.759872px;}
.x2d{left:322.560000px;}
.x6d{left:349.379860px;}
.x65{left:352.262190px;}
.x1{left:359.459856px;}
.x4f{left:365.399356px;}
.x4d{left:372.779851px;}
.x50{left:375.839850px;}
.x1f{left:401.760000px;}
.x51{left:402.839839px;}
.x6b{left:415.079834px;}
.x52{left:432.179827px;}
.x6e{left:436.499825px;}
.x42{left:439.559824px;}
.x4{left:446.399821px;}
.x2{left:451.799938px;}
.x59{left:459.900874px;}
.x53{left:461.879815px;}
.x5c{left:473.039811px;}
.x20{left:478.440000px;}
.x23{left:480.420000px;}
.x54{left:485.459806px;}
.x12{left:502.739799px;}
.x55{left:505.259798px;}
.x13{left:508.139797px;}
.x5d{left:514.799794px;}
.x21{left:517.320000px;}
.x6f{left:529.379788px;}
.x56{left:534.779786px;}
.x57{left:554.399778px;}
.x24{left:555.480000px;}
.x1e{left:566.099711px;}
.x3c{left:579.780000px;}
.x69{left:585.179766px;}
.x6a{left:605.699808px;}
.x40{left:607.860000px;}
.x4a{left:613.439755px;}
.x22{left:624.600000px;}
.x16{left:644.939742px;}
.x17{left:653.759738px;}
.x1c{left:664.019734px;}
.x6c{left:668.879732px;}
.x5e{left:672.479731px;}
.x5f{left:674.819730px;}
.x3d{left:678.960000px;}
.x1d{left:688.499778px;}
.x41{left:700.920000px;}
.x4e{left:713.699715px;}
.x60{left:731.879782px;}
.x4b{left:738.359705px;}
.xb{left:746.279701px;}
.x45{left:759.599696px;}
.x64{left:764.459694px;}
.x3e{left:765.539694px;}
.x63{left:778.859869px;}
.x14{left:781.200531px;}
@media print{
.v1{vertical-align:-40.319984pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.014827pt;}
.lsa{letter-spacing:0.019074pt;}
.ls6{letter-spacing:0.256853pt;}
.ls9{letter-spacing:0.262667pt;}
.ls8{letter-spacing:0.309973pt;}
.ls1{letter-spacing:0.360960pt;}
.ls3{letter-spacing:7.059144pt;}
.ls5{letter-spacing:26.570069pt;}
.ls2{letter-spacing:33.970226pt;}
.ls4{letter-spacing:38.385260pt;}
.lsb{letter-spacing:433.560787pt;}
.ws0{word-spacing:-35.839986pt;}
.ws4{word-spacing:-20.966392pt;}
.ws2{word-spacing:-14.873594pt;}
.ws3{word-spacing:-14.714234pt;}
.ws5{word-spacing:-13.510681pt;}
.ws7{word-spacing:-13.279995pt;}
.ws8{word-spacing:-12.006395pt;}
.ws9{word-spacing:-10.393596pt;}
.ws6{word-spacing:-9.573116pt;}
.ws1{word-spacing:0.000000pt;}
._20{margin-left:-1867.983467pt;}
._27{margin-left:-29.318935pt;}
._21{margin-left:-2.519382pt;}
._9{margin-left:-1.225053pt;}
._0{width:0.964055pt;}
._c{width:2.009955pt;}
._b{width:3.340931pt;}
._7{width:4.258133pt;}
._6{width:5.200181pt;}
._f{width:6.587733pt;}
._1d{width:7.503545pt;}
._10{width:8.410397pt;}
._4{width:9.642322pt;}
._5{width:10.945053pt;}
._a{width:12.290282pt;}
._e{width:13.641322pt;}
._15{width:15.651447pt;}
._11{width:16.613772pt;}
._12{width:17.506686pt;}
._26{width:18.416132pt;}
._8{width:19.428317pt;}
._1c{width:20.482550pt;}
._13{width:21.904936pt;}
._14{width:22.857273pt;}
._1b{width:23.910823pt;}
._1a{width:24.966338pt;}
._1e{width:26.939830pt;}
._19{width:28.722727pt;}
._d{width:29.651152pt;}
._18{width:31.500781pt;}
._36{width:33.376625pt;}
._37{width:34.526261pt;}
._17{width:35.638215pt;}
._16{width:36.616342pt;}
._24{width:46.214546pt;}
._25{width:47.231784pt;}
._34{width:309.819660pt;}
._35{width:319.665937pt;}
._2e{width:389.566991pt;}
._33{width:431.710877pt;}
._28{width:445.563926pt;}
._30{width:448.346638pt;}
._2d{width:454.083265pt;}
._2b{width:459.184501pt;}
._31{width:461.166238pt;}
._2a{width:472.327310pt;}
._32{width:488.043349pt;}
._2c{width:509.816697pt;}
._2f{width:514.913194pt;}
._29{width:591.457313pt;}
._1{width:906.479637pt;}
._2{width:1255.418164pt;}
._3{width:1667.679333pt;}
._1f{width:1784.591072pt;}
._23{width:1836.223625pt;}
._22{width:1918.132925pt;}
.fs5{font-size:34.559986pt;}
.fs8{font-size:35.997426pt;}
.fsb{font-size:37.119985pt;}
.fs6{font-size:38.322545pt;}
.fsa{font-size:42.879983pt;}
.fs9{font-size:45.817582pt;}
.fs7{font-size:48.775020pt;}
.fs0{font-size:53.119979pt;}
.fs2{font-size:63.999974pt;}
.fs4{font-size:74.879970pt;}
.fs3{font-size:85.119966pt;}
.fs1{font-size:127.999949pt;}
.y165{bottom:-0.159351pt;}
.y167{bottom:-0.159344pt;}
.y16b{bottom:-0.159330pt;}
.y16d{bottom:-0.159323pt;}
.y171{bottom:-0.159309pt;}
.y175{bottom:-0.159295pt;}
.y177{bottom:-0.159288pt;}
.y0{bottom:0.000000pt;}
.y169{bottom:0.000663pt;}
.y16f{bottom:0.000684pt;}
.y173{bottom:0.000698pt;}
.y9b{bottom:0.320442pt;}
.y9f{bottom:0.320494pt;}
.ybe{bottom:0.480507pt;}
.y9d{bottom:0.640463pt;}
.ydb{bottom:1.600484pt;}
.yd8{bottom:1.600517pt;}
.ye6{bottom:1.600549pt;}
.yed{bottom:1.600631pt;}
.yf2{bottom:1.600672pt;}
.yf0{bottom:1.600705pt;}
.yb4{bottom:1.760465pt;}
.ya1{bottom:1.760474pt;}
.yab{bottom:1.760482pt;}
.yb0{bottom:1.760491pt;}
.ye9{bottom:1.760594pt;}
.yeb{bottom:1.760599pt;}
.ycb{bottom:1.760676pt;}
.yc9{bottom:1.760702pt;}
.ycd{bottom:1.760728pt;}
.ya6{bottom:1.920469pt;}
.yb7{bottom:2.080461pt;}
.ya9{bottom:2.080474pt;}
.yae{bottom:2.080478pt;}
.ya4{bottom:2.080487pt;}
.yba{bottom:2.080495pt;}
.y127{bottom:2.720579pt;}
.y36{bottom:102.507426pt;}
.y65{bottom:103.467959pt;}
.yd1{bottom:106.987957pt;}
.y85{bottom:109.867956pt;}
.yf9{bottom:110.507956pt;}
.y112{bottom:114.507954pt;}
.y64{bottom:119.787952pt;}
.yd0{bottom:123.307951pt;}
.y13d{bottom:126.187950pt;}
.y91{bottom:126.507949pt;}
.y35{bottom:126.827949pt;}
.yf8{bottom:126.987949pt;}
.y111{bottom:130.827948pt;}
.y63{bottom:136.107946pt;}
.y147{bottom:137.387945pt;}
.ycf{bottom:139.787944pt;}
.y13c{bottom:142.507943pt;}
.y90{bottom:142.667943pt;}
.y34{bottom:143.307943pt;}
.y110{bottom:147.147941pt;}
.y13{bottom:148.587941pt;}
.y146{bottom:153.707939pt;}
.y8f{bottom:158.347937pt;}
.y8e{bottom:158.987936pt;}
.y13b{bottom:159.147936pt;}
.y33{bottom:159.627936pt;}
.y62{bottom:160.427936pt;}
.yce{bottom:161.387935pt;}
.y10f{bottom:163.467935pt;}
.y145{bottom:170.027932pt;}
.y8d{bottom:175.307930pt;}
.yf7{bottom:175.947930pt;}
.y61{bottom:176.907929pt;}
.ycc{bottom:178.027200pt;}
.y10e{bottom:179.787928pt;}
.y32{bottom:183.947926pt;}
.y13a{bottom:191.627923pt;}
.y8c{bottom:191.787923pt;}
.yf6{bottom:192.267923pt;}
.y12{bottom:192.587923pt;}
.y60{bottom:193.227923pt;}
.y10d{bottom:196.107922pt;}
.y139{bottom:207.947917pt;}
.y8b{bottom:208.107917pt;}
.y31{bottom:208.267917pt;}
.yf5{bottom:208.747917pt;}
.y5f{bottom:209.547916pt;}
.y10c{bottom:212.587915pt;}
.y176{bottom:219.947200pt;}
.y138{bottom:224.267910pt;}
.y8a{bottom:224.427910pt;}
.y5e{bottom:225.867910pt;}
.yf4{bottom:230.347908pt;}
.y30{bottom:232.587907pt;}
.yef{bottom:236.107200pt;}
.y10b{bottom:236.907905pt;}
.y174{bottom:237.387200pt;}
.y11{bottom:239.947904pt;}
.y137{bottom:240.587904pt;}
.y89{bottom:240.747904pt;}
.y5d{bottom:242.187903pt;}
.yc8{bottom:243.467200pt;}
.ye4{bottom:248.107901pt;}
.y161{bottom:248.747901pt;}
.y2f{bottom:248.907900pt;}
.y10a{bottom:253.227899pt;}
.y172{bottom:254.827200pt;}
.y88{bottom:257.067897pt;}
.y5c{bottom:266.027894pt;}
.y5b{bottom:266.667893pt;}
.y170{bottom:272.267200pt;}
.y87{bottom:273.387891pt;}
.y179{bottom:274.507890pt;}
.y109{bottom:274.827890pt;}
.y2e{bottom:275.147890pt;}
.y10{bottom:278.027889pt;}
.y193{bottom:280.747888pt;}
.y136{bottom:281.387887pt;}
.y5a{bottom:282.987887pt;}
.y16e{bottom:289.707200pt;}
.y86{bottom:289.867884pt;}
.y135{bottom:297.867881pt;}
.y59{bottom:299.307880pt;}
.y192{bottom:305.067878pt;}
.y16c{bottom:307.147200pt;}
.yca{bottom:308.747200pt;}
.y162{bottom:310.987876pt;}
.y134{bottom:314.027874pt;}
.y58{bottom:315.627874pt;}
.yf1{bottom:317.867200pt;}
.yc6{bottom:318.347873pt;}
.yc7{bottom:318.667873pt;}
.y16a{bottom:324.587200pt;}
.y191{bottom:329.387868pt;}
.yf3{bottom:329.867868pt;}
.y133{bottom:330.347868pt;}
.y2d{bottom:331.467867pt;}
.y57{bottom:331.947867pt;}
.yf{bottom:333.387867pt;}
.y92{bottom:336.267865pt;}
.y168{bottom:342.027200pt;}
.y17a{bottom:343.787862pt;}
.y190{bottom:345.707862pt;}
.y132{bottom:346.827861pt;}
.y2c{bottom:347.787861pt;}
.y17b{bottom:353.387859pt;}
.y56{bottom:356.267857pt;}
.y166{bottom:359.467200pt;}
.y18f{bottom:362.027855pt;}
.y2b{bottom:364.107854pt;}
.y55{bottom:372.747851pt;}
.y84{bottom:374.507850pt;}
.y164{bottom:376.907200pt;}
.y18e{bottom:378.507849pt;}
.y131{bottom:379.787848pt;}
.y2a{bottom:380.587848pt;}
.y178{bottom:387.787845pt;}
.ye{bottom:388.587845pt;}
.y54{bottom:389.067844pt;}
.y83{bottom:390.827844pt;}
.y29{bottom:396.907841pt;}
.ye3{bottom:401.227840pt;}
.y18d{bottom:402.827839pt;}
.y82{bottom:407.147837pt;}
.y15d{bottom:409.547836pt;}
.y15f{bottom:410.187836pt;}
.yee{bottom:411.627835pt;}
.y130{bottom:412.747835pt;}
.y28{bottom:413.227835pt;}
.y53{bottom:413.387835pt;}
.y163{bottom:416.747833pt;}
.y18c{bottom:419.147832pt;}
.yec{bottom:420.107200pt;}
.y15c{bottom:422.347831pt;}
.y160{bottom:422.987831pt;}
.y15e{bottom:423.147831pt;}
.y81{bottom:423.467831pt;}
.y52{bottom:429.707828pt;}
.ye2{bottom:432.107827pt;}
.y27{bottom:437.547825pt;}
.yc5{bottom:438.507825pt;}
.y80{bottom:439.947824pt;}
.y18b{bottom:443.467823pt;}
.yd{bottom:443.787822pt;}
.y12f{bottom:445.867822pt;}
.y51{bottom:446.027822pt;}
.y97{bottom:452.747819pt;}
.y26{bottom:453.867818pt;}
.y7f{bottom:456.267817pt;}
.y144{bottom:457.387817pt;}
.y18a{bottom:459.787816pt;}
.y50{bottom:462.347815pt;}
.y25{bottom:470.187812pt;}
.y7e{bottom:472.587811pt;}
.y143{bottom:473.707811pt;}
.y12e{bottom:478.187809pt;}
.y12d{bottom:478.827808pt;}
.y189{bottom:484.267806pt;}
.y4f{bottom:487.787805pt;}
.y142{bottom:490.027804pt;}
.y24{bottom:491.947803pt;}
.y94{bottom:496.267801pt;}
.y7d{bottom:496.907801pt;}
.yc{bottom:498.987800pt;}
.y188{bottom:500.587800pt;}
.yea{bottom:501.867200pt;}
.y141{bottom:506.347797pt;}
.y12c{bottom:511.787795pt;}
.ye8{bottom:512.107200pt;}
.y7c{bottom:513.227795pt;}
.y96{bottom:518.027793pt;}
.y140{bottom:522.827791pt;}
.y187{bottom:524.907790pt;}
.y7b{bottom:529.547788pt;}
.y4e{bottom:533.707787pt;}
.y114{bottom:537.067785pt;}
.y13f{bottom:539.147784pt;}
.y113{bottom:539.627784pt;}
.y186{bottom:541.227784pt;}
.y12b{bottom:544.748407pt;}
.y129{bottom:544.907782pt;}
.y12a{bottom:545.067782pt;}
.y7a{bottom:546.027782pt;}
.y4d{bottom:550.027780pt;}
.y126{bottom:550.347200pt;}
.y125{bottom:553.067779pt;}
.yb{bottom:554.187778pt;}
.y13e{bottom:560.747776pt;}
.y128{bottom:561.227776pt;}
.y95{bottom:561.547775pt;}
.y79{bottom:562.347775pt;}
.y185{bottom:565.547774pt;}
.y4c{bottom:566.347773pt;}
.y108{bottom:570.027772pt;}
.y15a{bottom:573.867770pt;}
.yc4{bottom:580.267768pt;}
.y184{bottom:581.867767pt;}
.y4b{bottom:582.667767pt;}
.ye1{bottom:585.387766pt;}
.y107{bottom:586.347765pt;}
.y78{bottom:586.667765pt;}
.y159{bottom:590.187764pt;}
.y93{bottom:594.187762pt;}
.y124{bottom:594.347762pt;}
.ye7{bottom:595.787762pt;}
.y23{bottom:598.667761pt;}
.y4a{bottom:598.987760pt;}
.y106{bottom:602.667759pt;}
.y77{bottom:602.987759pt;}
.ydc{bottom:603.467759pt;}
.y183{bottom:606.347757pt;}
.y158{bottom:606.507757pt;}
.ya{bottom:609.547756pt;}
.y123{bottom:610.507756pt;}
.y22{bottom:614.987754pt;}
.y49{bottom:615.307754pt;}
.y105{bottom:618.987752pt;}
.y76{bottom:619.307752pt;}
.y182{bottom:622.667751pt;}
.y157{bottom:622.987751pt;}
.ye5{bottom:624.747200pt;}
.y122{bottom:626.827749pt;}
.y21{bottom:631.307747pt;}
.y48{bottom:631.787747pt;}
.y104{bottom:635.307746pt;}
.y75{bottom:635.627746pt;}
.yde{bottom:636.587745pt;}
.y181{bottom:638.987744pt;}
.y156{bottom:639.307744pt;}
.y20{bottom:647.627741pt;}
.y121{bottom:651.147740pt;}
.y103{bottom:651.627739pt;}
.y47{bottom:656.107738pt;}
.ybf{bottom:659.467736pt;}
.y74{bottom:660.107736pt;}
.y180{bottom:663.307735pt;}
.y155{bottom:663.627735pt;}
.y1f{bottom:663.947734pt;}
.y9{bottom:664.747734pt;}
.y120{bottom:667.627733pt;}
.y102{bottom:668.107733pt;}
.y46{bottom:672.427731pt;}
.y73{bottom:676.427729pt;}
.yc0{bottom:678.027729pt;}
.y17f{bottom:679.627728pt;}
.y154{bottom:679.947728pt;}
.y11f{bottom:683.947726pt;}
.y45{bottom:688.747725pt;}
.y1e{bottom:690.187724pt;}
.y72{bottom:692.747723pt;}
.y101{bottom:693.547723pt;}
.y17e{bottom:695.947722pt;}
.y153{bottom:696.267721pt;}
.ydf{bottom:698.027721pt;}
.y11e{bottom:700.427720pt;}
.y8{bottom:703.947718pt;}
.y44{bottom:705.067718pt;}
.yd7{bottom:706.507200pt;}
.yc2{bottom:710.347716pt;}
.yc3{bottom:710.507716pt;}
.y17d{bottom:712.427715pt;}
.y152{bottom:712.587715pt;}
.y11d{bottom:716.747713pt;}
.y71{bottom:717.067713pt;}
.ye0{bottom:718.507713pt;}
.y151{bottom:729.067708pt;}
.y43{bottom:729.547708pt;}
.ybd{bottom:732.107200pt;}
.y11c{bottom:732.907707pt;}
.y70{bottom:733.387707pt;}
.y17c{bottom:738.507705pt;}
.y100{bottom:739.307704pt;}
.y7{bottom:743.147703pt;}
.y150{bottom:745.387702pt;}
.y42{bottom:745.867702pt;}
.y1d{bottom:746.507701pt;}
.y11b{bottom:749.387700pt;}
.y6f{bottom:749.707700pt;}
.yff{bottom:755.627698pt;}
.ybc{bottom:758.987200pt;}
.yb9{bottom:759.307200pt;}
.ybb{bottom:761.067696pt;}
.yb8{bottom:761.387695pt;}
.y14f{bottom:761.707695pt;}
.y41{bottom:762.187695pt;}
.y1c{bottom:762.827695pt;}
.y9e{bottom:764.907200pt;}
.y11a{bottom:765.707694pt;}
.y6e{bottom:766.187694pt;}
.yaf{bottom:770.347200pt;}
.yfe{bottom:771.947691pt;}
.y14e{bottom:778.027689pt;}
.y40{bottom:778.507689pt;}
.y1b{bottom:779.147688pt;}
.ydd{bottom:779.787688pt;}
.yb2{bottom:780.747200pt;}
.ya3{bottom:781.067200pt;}
.y6d{bottom:782.507687pt;}
.yb1{bottom:782.827687pt;}
.ya2{bottom:783.147687pt;}
.y119{bottom:785.387686pt;}
.y118{bottom:786.027686pt;}
.yda{bottom:788.267200pt;}
.yfd{bottom:788.267685pt;}
.yaa{bottom:792.107200pt;}
.y14d{bottom:794.347682pt;}
.y3f{bottom:794.827682pt;}
.y1a{bottom:795.627682pt;}
.y6{bottom:798.347681pt;}
.y6c{bottom:798.827680pt;}
.yad{bottom:802.827200pt;}
.yfc{bottom:804.747678pt;}
.yac{bottom:804.907678pt;}
.yd9{bottom:807.467677pt;}
.y14c{bottom:810.667676pt;}
.y3e{bottom:811.147676pt;}
.y19{bottom:811.947675pt;}
.ya8{bottom:813.547200pt;}
.ya0{bottom:813.867200pt;}
.y6b{bottom:815.147674pt;}
.ya7{bottom:815.627674pt;}
.y117{bottom:821.227672pt;}
.ya5{bottom:824.747200pt;}
.y14b{bottom:827.147669pt;}
.y3d{bottom:827.627669pt;}
.y18{bottom:828.267669pt;}
.yfb{bottom:829.067668pt;}
.yb3{bottom:835.627200pt;}
.y116{bottom:837.387665pt;}
.y6a{bottom:840.587664pt;}
.y9c{bottom:840.907200pt;}
.y14a{bottom:843.467663pt;}
.y3c{bottom:843.947662pt;}
.y17{bottom:844.587662pt;}
.yd6{bottom:845.387662pt;}
.yb6{bottom:846.027200pt;}
.yb5{bottom:848.107661pt;}
.y5{bottom:853.707659pt;}
.y99{bottom:855.467658pt;}
.y3b{bottom:860.267656pt;}
.y16{bottom:860.907656pt;}
.yd5{bottom:861.707655pt;}
.yfa{bottom:865.067654pt;}
.y149{bottom:867.787653pt;}
.y115{bottom:870.027652pt;}
.y3a{bottom:876.587649pt;}
.y15{bottom:877.227649pt;}
.yd4{bottom:878.027649pt;}
.y148{bottom:884.107646pt;}
.y69{bottom:886.347645pt;}
.y39{bottom:892.907643pt;}
.yd3{bottom:894.347642pt;}
.y9a{bottom:895.467200pt;}
.y98{bottom:898.987640pt;}
.y68{bottom:902.827639pt;}
.y14{bottom:903.467639pt;}
.y4{bottom:908.907636pt;}
.y38{bottom:909.227636pt;}
.yd2{bottom:910.827636pt;}
.y67{bottom:927.147629pt;}
.yc1{bottom:927.467629pt;}
.y15b{bottom:930.667628pt;}
.y37{bottom:935.467626pt;}
.y66{bottom:943.467623pt;}
.y3{bottom:967.787613pt;}
.y1{bottom:997.547601pt;}
.y2{bottom:1053.867578pt;}
.h1d{height:8.800000pt;}
.h1f{height:8.960000pt;}
.h13{height:10.720000pt;}
.h16{height:10.880000pt;}
.hd{height:11.520000pt;}
.h10{height:11.680000pt;}
.hf{height:11.840000pt;}
.ha{height:12.320000pt;}
.h11{height:12.480000pt;}
.hc{height:12.640000pt;}
.h19{height:15.840000pt;}
.h1a{height:26.559989pt;}
.h17{height:26.966239pt;}
.h1e{height:30.431863pt;}
.h9{height:31.417750pt;}
.h7{height:31.978112pt;}
.h14{height:33.308165pt;}
.h18{height:35.154048pt;}
.he{height:35.459581pt;}
.h15{height:37.562363pt;}
.h1c{height:39.676547pt;}
.h12{height:39.986943pt;}
.h5{height:41.448108pt;}
.h8{height:43.549045pt;}
.hb{height:45.131184pt;}
.h1{height:49.151543pt;}
.h1b{height:49.791543pt;}
.h3{height:59.218726pt;}
.h6{height:61.388413pt;}
.h4{height:69.783410pt;}
.h2{height:104.937458pt;}
.h0{height:1122.666667pt;}
.w9{width:0.160000pt;}
.w6{width:0.320000pt;}
.wb{width:0.480000pt;}
.w7{width:0.640000pt;}
.wa{width:0.800000pt;}
.w14{width:2.720000pt;}
.w10{width:4.960000pt;}
.we{width:5.280000pt;}
.w12{width:5.760640pt;}
.w2{width:7.040000pt;}
.w8{width:7.840000pt;}
.w5{width:8.480000pt;}
.w13{width:20.960000pt;}
.w11{width:26.240000pt;}
.wc{width:34.560000pt;}
.w4{width:66.720000pt;}
.w1{width:68.160000pt;}
.wf{width:83.040000pt;}
.wd{width:88.320000pt;}
.w3{width:95.360000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3{left:113.439766pt;}
.x11{left:132.319280pt;}
.x66{left:135.519946pt;}
.x15{left:136.479945pt;}
.xa{left:137.439945pt;}
.x9{left:139.839944pt;}
.x39{left:144.479942pt;}
.x48{left:146.720118pt;}
.xd{left:147.999382pt;}
.x47{left:149.279878pt;}
.x3f{left:151.198773pt;}
.xc{left:153.599939pt;}
.x19{left:155.519938pt;}
.x6{left:158.079423pt;}
.x8{left:160.639936pt;}
.xe{left:163.039469pt;}
.x38{left:166.239934pt;}
.x5a{left:169.448259pt;}
.x46{left:170.879932pt;}
.xf{left:172.159931pt;}
.x1a{left:177.279929pt;}
.x61{left:179.359928pt;}
.x43{left:183.040000pt;}
.x62{left:184.159926pt;}
.x10{left:185.439926pt;}
.x5{left:187.839388pt;}
.x3a{left:189.440000pt;}
.x25{left:191.360000pt;}
.x68{left:196.319921pt;}
.x26{left:199.840000pt;}
.x36{left:205.279918pt;}
.x37{left:209.120000pt;}
.x27{left:213.759914pt;}
.x4c{left:215.840482pt;}
.x58{left:217.439755pt;}
.x28{left:220.640000pt;}
.x29{left:221.600000pt;}
.x32{left:227.039909pt;}
.x33{left:230.880000pt;}
.x34{left:235.519906pt;}
.x2a{left:237.759905pt;}
.x2b{left:241.600000pt;}
.x35{left:243.360000pt;}
.x30{left:246.400000pt;}
.x1b{left:253.119928pt;}
.x31{left:254.240000pt;}
.x18{left:256.159898pt;}
.x2e{left:257.119897pt;}
.x2f{left:264.160000pt;}
.x44{left:265.760000pt;}
.x49{left:267.359285pt;}
.x67{left:273.759890pt;}
.x3b{left:277.440000pt;}
.x2c{left:278.400000pt;}
.x7{left:282.239717pt;}
.x5b{left:285.119886pt;}
.x2d{left:286.720000pt;}
.x6d{left:310.559876pt;}
.x65{left:313.121946pt;}
.x1{left:319.519872pt;}
.x4f{left:324.799427pt;}
.x4d{left:331.359867pt;}
.x50{left:334.079866pt;}
.x1f{left:357.120000pt;}
.x51{left:358.079857pt;}
.x6b{left:368.959852pt;}
.x52{left:384.159846pt;}
.x6e{left:387.999845pt;}
.x42{left:390.719844pt;}
.x4{left:396.799841pt;}
.x2{left:401.599945pt;}
.x59{left:408.800777pt;}
.x53{left:410.559836pt;}
.x5c{left:420.479832pt;}
.x20{left:425.280000pt;}
.x23{left:427.040000pt;}
.x54{left:431.519827pt;}
.x12{left:446.879821pt;}
.x55{left:449.119820pt;}
.x13{left:451.679819pt;}
.x5d{left:457.599817pt;}
.x21{left:459.840000pt;}
.x6f{left:470.559812pt;}
.x56{left:475.359810pt;}
.x57{left:492.799803pt;}
.x24{left:493.760000pt;}
.x1e{left:503.199744pt;}
.x3c{left:515.360000pt;}
.x69{left:520.159792pt;}
.x6a{left:538.399829pt;}
.x40{left:540.320000pt;}
.x4a{left:545.279782pt;}
.x22{left:555.200000pt;}
.x16{left:573.279771pt;}
.x17{left:581.119768pt;}
.x1c{left:590.239764pt;}
.x6c{left:594.559762pt;}
.x5e{left:597.759761pt;}
.x5f{left:599.839760pt;}
.x3d{left:603.520000pt;}
.x1d{left:611.999802pt;}
.x41{left:623.040000pt;}
.x4e{left:634.399746pt;}
.x60{left:650.559807pt;}
.x4b{left:656.319737pt;}
.xb{left:663.359735pt;}
.x45{left:675.199730pt;}
.x64{left:679.519728pt;}
.x3e{left:680.479728pt;}
.x63{left:692.319883pt;}
.x14{left:694.400472pt;}
}




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