
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
.ff15{font-family:sans-serif;visibility:hidden;}
.ff16{font-family:sans-serif;visibility:hidden;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
.ff1a{font-family:sans-serif;visibility:hidden;}
.ff1b{font-family:sans-serif;visibility:hidden;}
.ff1c{font-family:sans-serif;visibility:hidden;}
.ff1d{font-family:sans-serif;visibility:hidden;}
.ff1e{font-family:sans-serif;visibility:hidden;}
.ff1f{font-family:sans-serif;visibility:hidden;}
.ff20{font-family:sans-serif;visibility:hidden;}
.ff21{font-family:sans-serif;visibility:hidden;}
.ff22{font-family:sans-serif;visibility:hidden;}
.ff23{font-family:sans-serif;visibility:hidden;}
.ff24{font-family:sans-serif;visibility:hidden;}
.ff25{font-family:sans-serif;visibility:hidden;}
.ff26{font-family:sans-serif;visibility:hidden;}
.ff27{font-family:sans-serif;visibility:hidden;}
.ff28{font-family:sans-serif;visibility:hidden;}
.ff29{font-family:sans-serif;visibility:hidden;}
.ff2a{font-family:sans-serif;visibility:hidden;}
.ff2b{font-family:sans-serif;visibility:hidden;}
.ff2c{font-family:sans-serif;visibility:hidden;}
.ff2d{font-family:sans-serif;visibility:hidden;}
.ff2e{font-family:sans-serif;visibility:hidden;}
.ff2f{font-family:sans-serif;visibility:hidden;}
.ff30{font-family:sans-serif;visibility:hidden;}
.ff31{font-family:sans-serif;visibility:hidden;}
.ff32{font-family:sans-serif;visibility:hidden;}
.ff33{font-family:sans-serif;visibility:hidden;}
.ff34{font-family:sans-serif;visibility:hidden;}
.ff35{font-family:sans-serif;visibility:hidden;}
.ff36{font-family:sans-serif;visibility:hidden;}
.ff37{font-family:sans-serif;visibility:hidden;}
.ff38{font-family:sans-serif;visibility:hidden;}
.ff39{font-family:sans-serif;visibility:hidden;}
.ff3a{font-family:sans-serif;visibility:hidden;}
.ff3b{font-family:sans-serif;visibility:hidden;}
.ff3c{font-family:sans-serif;visibility:hidden;}
.ff3d{font-family:sans-serif;visibility:hidden;}
.ff3e{font-family:sans-serif;visibility:hidden;}
.ff3f{font-family:sans-serif;visibility:hidden;}
.ff40{font-family:sans-serif;visibility:hidden;}
.ff41{font-family:sans-serif;visibility:hidden;}
.ff42{font-family:sans-serif;visibility:hidden;}
.ff43{font-family:sans-serif;visibility:hidden;}
.ff44{font-family:sans-serif;visibility:hidden;}
.ff45{font-family:sans-serif;visibility:hidden;}
.ff46{font-family:sans-serif;visibility:hidden;}
.ff47{font-family:sans-serif;visibility:hidden;}
.ff48{font-family:sans-serif;visibility:hidden;}
.ff49{font-family:sans-serif;visibility:hidden;}
.ff4a{font-family:sans-serif;visibility:hidden;}
.ff4b{font-family:sans-serif;visibility:hidden;}
.ff4c{font-family:sans-serif;visibility:hidden;}
.ff4d{font-family:sans-serif;visibility:hidden;}
.ff4e{font-family:sans-serif;visibility:hidden;}
.ff4f{font-family:sans-serif;visibility:hidden;}
.ff50{font-family:sans-serif;visibility:hidden;}
.ff51{font-family:sans-serif;visibility:hidden;}
.ff52{font-family:sans-serif;visibility:hidden;}
.ff53{font-family:sans-serif;visibility:hidden;}
.ff54{font-family:sans-serif;visibility:hidden;}
.ff55{font-family:sans-serif;visibility:hidden;}
.ff56{font-family:sans-serif;visibility:hidden;}
.ff57{font-family:sans-serif;visibility:hidden;}
.ff58{font-family:sans-serif;visibility:hidden;}
.ff59{font-family:sans-serif;visibility:hidden;}
.ff5a{font-family:sans-serif;visibility:hidden;}
.ff5b{font-family:sans-serif;visibility:hidden;}
.ff5c{font-family:sans-serif;visibility:hidden;}
.ff5d{font-family:sans-serif;visibility:hidden;}
.ff5e{font-family:sans-serif;visibility:hidden;}
.ff5f{font-family:sans-serif;visibility:hidden;}
.ff60{font-family:sans-serif;visibility:hidden;}
.ff61{font-family:sans-serif;visibility:hidden;}
.ff62{font-family:sans-serif;visibility:hidden;}
.ff63{font-family:sans-serif;visibility:hidden;}
.ff64{font-family:sans-serif;visibility:hidden;}
.ff65{font-family:sans-serif;visibility:hidden;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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:0.000000px;}
._5{margin-left:-14.040007px;}
._0{margin-left:-11.016012px;}
._3{margin-left:-9.072010px;}
._2{margin-left:-7.920011px;}
._4{margin-left:-6.732006px;}
._d{margin-left:-5.544009px;}
._e{margin-left:-4.374010px;}
._1{margin-left:-2.448011px;}
._c{margin-left:-1.340980px;}
._a{width:1.376998px;}
._b{width:2.384983px;}
._f{width:3.464995px;}
._10{width:4.787996px;}
._12{width:5.894999px;}
._13{width:7.146015px;}
._1e{width:9.449916px;}
._9{width:10.808997px;}
._6{width:11.834996px;}
._7{width:13.850998px;}
._8{width:15.840000px;}
._1d{width:344.690988px;}
._18{width:459.539909px;}
._16{width:782.541458px;}
._14{width:798.498005px;}
._1c{width:819.872964px;}
._1a{width:904.995478px;}
._1b{width:917.910491px;}
._15{width:951.768517px;}
._11{width:1018.151924px;}
._17{width:1566.125895px;}
._19{width:1769.030930px;}
.fc2{color:transparent;}
.fc1{color:rgb(233,69,96);}
.fc0{color:rgb(245,245,245);}
.fsb{font-size:58.499998px;}
.fs1{font-size:62.999997px;}
.fs9{font-size:67.499997px;}
.fs3{font-size:71.999997px;}
.fs7{font-size:76.499997px;}
.fs5{font-size:80.999997px;}
.fs6{font-size:89.999996px;}
.fs8{font-size:98.999996px;}
.fsa{font-size:107.999996px;}
.fs2{font-size:116.999995px;}
.fs4{font-size:161.999993px;}
.fs0{font-size:323.999987px;}
.fsc{font-size:359.999985px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000034px;}
.y7e{bottom:0.000039px;}
.y40{bottom:0.000042px;}
.yc0{bottom:0.054152px;}
.y1c{bottom:0.054154px;}
.y93{bottom:0.125834px;}
.y2e{bottom:0.180035px;}
.y56{bottom:0.180040px;}
.yb4{bottom:0.180041px;}
.ya1{bottom:0.359978px;}
.y133{bottom:0.360007px;}
.yd7{bottom:0.720008px;}
.y3e{bottom:1.080035px;}
.y91{bottom:1.080039px;}
.y119{bottom:1.080041px;}
.y140{bottom:3.375000px;}
.y144{bottom:3.555000px;}
.y28{bottom:4.500000px;}
.yee{bottom:4.545000px;}
.y5{bottom:4.590000px;}
.y69{bottom:4.635000px;}
.y3d{bottom:4.680000px;}
.y8a{bottom:4.725000px;}
.yb{bottom:4.770000px;}
.y7a{bottom:4.815000px;}
.y9b{bottom:5.625000px;}
.y5f{bottom:5.715000px;}
.y123{bottom:5.805000px;}
.y1a{bottom:5.850000px;}
.y148{bottom:7.020000px;}
.y9{bottom:8.190000px;}
.y55{bottom:20.249999px;}
.yd8{bottom:20.339999px;}
.yfd{bottom:21.689979px;}
.ye5{bottom:23.624999px;}
.ya2{bottom:23.759999px;}
.y143{bottom:24.929999px;}
.y11a{bottom:24.974999px;}
.y134{bottom:25.019999px;}
.y7d{bottom:25.064980px;}
.y13f{bottom:25.874999px;}
.y92{bottom:27.044999px;}
.y1b{bottom:29.249999px;}
.yb3{bottom:29.564980px;}
.y2d{bottom:30.005855px;}
.y6f{bottom:30.374999px;}
.y3f{bottom:30.599999px;}
.y10b{bottom:31.724999px;}
.y113{bottom:31.769999px;}
.yf8{bottom:32.624999px;}
.y4f{bottom:32.804999px;}
.ycc{bottom:32.939999px;}
.yd1{bottom:33.749999px;}
.ye3{bottom:33.839999px;}
.yf4{bottom:34.019999px;}
.y27{bottom:34.874999px;}
.yed{bottom:34.919999px;}
.y68{bottom:35.009999px;}
.y3c{bottom:35.054999px;}
.y89{bottom:35.099999px;}
.y79{bottom:35.189999px;}
.y83{bottom:35.999998px;}
.y48{bottom:36.089998px;}
.y54{bottom:36.179998px;}
.y8d{bottom:37.124998px;}
.ybc{bottom:37.214998px;}
.y132{bottom:37.259998px;}
.y103{bottom:37.304998px;}
.yab{bottom:37.394998px;}
.y12c{bottom:37.439998px;}
.y19{bottom:38.474998px;}
.y9a{bottom:40.499998px;}
.y5e{bottom:40.589998px;}
.y13c{bottom:40.724998px;}
.y122{bottom:42.929998px;}
.y13e{bottom:47.249998px;}
.y142{bottom:47.429998px;}
.y8{bottom:52.064998px;}
.y10a{bottom:58.724998px;}
.y112{bottom:58.769998px;}
.yd0{bottom:61.874997px;}
.ye2{bottom:61.964997px;}
.y4e{bottom:62.054997px;}
.yf3{bottom:62.144997px;}
.ycb{bottom:62.189997px;}
.y37{bottom:65.249997px;}
.yfc{bottom:65.294997px;}
.y6e{bottom:65.384997px;}
.y3b{bottom:65.429997px;}
.yc6{bottom:65.474997px;}
.y78{bottom:65.564997px;}
.y26{bottom:66.374997px;}
.yec{bottom:66.419997px;}
.y47{bottom:66.464997px;}
.y67{bottom:66.509997px;}
.y53{bottom:66.554997px;}
.y88{bottom:66.599997px;}
.y8c{bottom:69.749997px;}
.ybb{bottom:69.839997px;}
.y131{bottom:69.884997px;}
.y102{bottom:69.929997px;}
.yaa{bottom:70.019997px;}
.y12b{bottom:70.064997px;}
.y18{bottom:71.099997px;}
.y99{bottom:74.249997px;}
.y5d{bottom:74.339997px;}
.y13b{bottom:74.474997px;}
.y121{bottom:78.929997px;}
.y109{bottom:85.724996px;}
.y111{bottom:85.769996px;}
.yf7{bottom:89.999996px;}
.y4d{bottom:90.179996px;}
.yca{bottom:90.314996px;}
.ycf{bottom:91.124996px;}
.ye1{bottom:91.214996px;}
.yf2{bottom:91.394996px;}
.y36{bottom:95.624996px;}
.yfb{bottom:95.669996px;}
.y6d{bottom:95.759996px;}
.y3a{bottom:95.804996px;}
.y7{bottom:95.939996px;}
.y25{bottom:96.749996px;}
.yeb{bottom:96.794996px;}
.y66{bottom:96.884996px;}
.y52{bottom:96.929996px;}
.y87{bottom:96.974996px;}
.y12a{bottom:101.564996px;}
.yb2{bottom:102.374996px;}
.yba{bottom:102.464996px;}
.y130{bottom:102.509996px;}
.ya9{bottom:102.644996px;}
.y50{bottom:103.320037px;}
.y5c{bottom:109.214995px;}
.y7c{bottom:109.439976px;}
.yf9{bottom:110.519975px;}
.yd6{bottom:111.005851px;}
.y108{bottom:112.724995px;}
.y110{bottom:112.769995px;}
.y120{bottom:114.929995px;}
.yf6{bottom:119.249995px;}
.ye0{bottom:119.339995px;}
.y4c{bottom:119.429995px;}
.yf1{bottom:119.519995px;}
.yc9{bottom:119.564995px;}
.yce{bottom:120.374995px;}
.ya{bottom:123.480029px;}
.y35{bottom:125.999995px;}
.yfa{bottom:126.044995px;}
.y39{bottom:126.179995px;}
.y77{bottom:126.314995px;}
.y24{bottom:127.124995px;}
.y65{bottom:127.259995px;}
.y51{bottom:127.304995px;}
.y86{bottom:127.349995px;}
.y145{bottom:129.240035px;}
.ya0{bottom:129.744139px;}
.y118{bottom:130.499995px;}
.y12d{bottom:132.120002px;}
.y6a{bottom:133.920034px;}
.yb9{bottom:133.964994px;}
.y129{bottom:134.189994px;}
.yb1{bottom:134.999994px;}
.ybf{bottom:135.089994px;}
.y12f{bottom:135.134994px;}
.ya8{bottom:135.269994px;}
.yd5{bottom:138.005850px;}
.y107{bottom:139.724994px;}
.y10f{bottom:139.769994px;}
.y16{bottom:140.624994px;}
.y5b{bottom:142.964994px;}
.y38{bottom:144.000029px;}
.ydf{bottom:148.589994px;}
.y4b{bottom:148.679994px;}
.yf0{bottom:148.769994px;}
.yc8{bottom:148.814994px;}
.y11f{bottom:152.054994px;}
.yac{bottom:154.439974px;}
.y2c{bottom:157.130849px;}
.y23{bottom:157.499993px;}
.y64{bottom:157.634993px;}
.y85{bottom:157.724993px;}
.y9f{bottom:157.869137px;}
.ybd{bottom:159.840034px;}
.yde{bottom:164.160027px;}
.yd4{bottom:165.005849px;}
.yb0{bottom:166.499993px;}
.y106{bottom:166.724993px;}
.y10e{bottom:166.769993px;}
.y128{bottom:166.814993px;}
.ybe{bottom:167.714993px;}
.y12e{bottom:167.759993px;}
.y90{bottom:168.749993px;}
.y15{bottom:170.999993px;}
.y4a{bottom:176.804993px;}
.y117{bottom:184.499992px;}
.y2b{bottom:186.380848px;}
.y9e{bottom:187.119136px;}
.y22{bottom:187.874992px;}
.y63{bottom:188.009992px;}
.y11e{bottom:188.054992px;}
.yd3{bottom:192.005848px;}
.ye4{bottom:193.320026px;}
.y60{bottom:193.680031px;}
.y105{bottom:193.724992px;}
.y10d{bottom:193.769992px;}
.yaf{bottom:199.124992px;}
.y116{bottom:211.499991px;}
.y8f{bottom:215.999991px;}
.y9d{bottom:216.369135px;}
.y61{bottom:218.249991px;}
.y6c{bottom:218.384991px;}
.yd2{bottom:219.005847px;}
.y14{bottom:219.374991px;}
.y62{bottom:223.920030px;}
.yae{bottom:231.749990px;}
.y2a{bottom:237.005846px;}
.y115{bottom:238.499990px;}
.y6{bottom:241.560024px;}
.y8e{bottom:244.124990px;}
.y11d{bottom:247.320023px;}
.y6b{bottom:248.759990px;}
.y13{bottom:249.749990px;}
.y97{bottom:262.494133px;}
.yc4{bottom:262.880845px;}
.yad{bottom:264.374989px;}
.y29{bottom:266.255845px;}
.y114{bottom:269.999989px;}
.y45{bottom:274.499989px;}
.y75{bottom:278.189969px;}
.ye9{bottom:280.439968px;}
.y8b{bottom:288.000027px;}
.y12{bottom:298.124988px;}
.y100{bottom:316.124987px;}
.y20{bottom:318.005843px;}
.y34{bottom:319.680022px;}
.y7b{bottom:320.759968px;}
.y11{bottom:328.499986px;}
.y147{bottom:339.480020px;}
.y139{bottom:346.499986px;}
.y126{bottom:347.129993px;}
.yc7{bottom:357.119993px;}
.ydc{bottom:357.749985px;}
.y9c{bottom:370.439963px;}
.y49{bottom:373.320026px;}
.y10{bottom:376.874984px;}
.yef{bottom:376.919964px;}
.ycd{bottom:385.559992px;}
.yf5{bottom:406.439963px;}
.yf{bottom:407.249983px;}
.y81{bottom:408.374983px;}
.y10c{bottom:425.160024px;}
.y59{bottom:426.374982px;}
.y146{bottom:445.499981px;}
.y21{bottom:448.559991px;}
.y104{bottom:451.080023px;}
.ye{bottom:455.624981px;}
.y13d{bottom:459.000022px;}
.ya6{bottom:468.314961px;}
.y3{bottom:469.124980px;}
.ydd{bottom:473.400014px;}
.y127{bottom:478.439987px;}
.y141{bottom:481.320021px;}
.yd{bottom:485.999980px;}
.y74{bottom:488.564961px;}
.y11c{bottom:490.499980px;}
.y33{bottom:519.749978px;}
.yb8{bottom:519.840019px;}
.y84{bottom:527.400017px;}
.y96{bottom:544.869121px;}
.y17{bottom:545.400011px;}
.yc3{bottom:548.630833px;}
.y76{bottom:557.999958px;}
.y82{bottom:558.000015px;}
.y2{bottom:559.124977px;}
.y138{bottom:560.249977px;}
.y5a{bottom:564.840016px;}
.ya7{bottom:565.919957px;}
.ye8{bottom:566.189956px;}
.y32{bottom:578.249976px;}
.ydb{bottom:582.749976px;}
.y44{bottom:590.624975px;}
.y137{bottom:601.874975px;}
.y11b{bottom:614.249974px;}
.y98{bottom:627.119952px;}
.y31{bottom:631.124974px;}
.yc5{bottom:642.959981px;}
.yff{bottom:658.124973px;}
.yea{bottom:659.519952px;}
.y4{bottom:668.160006px;}
.yda{bottom:676.124972px;}
.y30{bottom:683.999972px;}
.y1f{bottom:684.755827px;}
.yc{bottom:685.124971px;}
.y46{bottom:686.160013px;}
.y13a{bottom:689.400012px;}
.y125{bottom:692.504978px;}
.yb7{bottom:703.124971px;}
.y73{bottom:724.814951px;}
.y80{bottom:733.499969px;}
.yd9{bottom:736.874969px;}
.yc2{bottom:746.630825px;}
.y2f{bottom:754.874969px;}
.y101{bottom:765.000010px;}
.y95{bottom:765.369112px;}
.ya5{bottom:768.689949px;}
.y43{bottom:796.499967px;}
.y124{bottom:797.129974px;}
.y58{bottom:799.874967px;}
.y1e{bottom:800.630823px;}
.y72{bottom:801.314948px;}
.y94{bottom:818.244110px;}
.ya4{bottom:821.564947px;}
.yb6{bottom:824.624966px;}
.yc1{bottom:825.380822px;}
.y7f{bottom:830.249965px;}
.y136{bottom:831.374965px;}
.ye7{bottom:835.064945px;}
.y57{bottom:852.749964px;}
.y1d{bottom:853.505820px;}
.y71{bottom:854.189945px;}
.ya3{bottom:874.439944px;}
.yb5{bottom:877.499963px;}
.y42{bottom:880.874963px;}
.y135{bottom:884.249963px;}
.ye6{bottom:891.314943px;}
.yfe{bottom:897.749963px;}
.y70{bottom:914.939943px;}
.y41{bottom:937.124961px;}
.h3{height:20.519999px;}
.h7{height:21.959999px;}
.h60{height:33.119999px;}
.h1f{height:52.919998px;}
.h4e{height:53.279978px;}
.h45{height:53.279998px;}
.h5d{height:55.574998px;}
.h4a{height:58.679998px;}
.h36{height:59.759998px;}
.h4{height:59.849998px;}
.h2b{height:60.119978px;}
.h55{height:60.119997px;}
.h5e{height:62.279997px;}
.h48{height:64.124997px;}
.h30{height:66.599997px;}
.h8{height:68.399997px;}
.hc{height:69.839997px;}
.h12{height:70.505853px;}
.h27{height:71.099997px;}
.h39{height:71.279978px;}
.h18{height:71.279997px;}
.h1c{height:72.674997px;}
.ha{height:76.949997px;}
.h46{height:82.439997px;}
.h42{height:83.519997px;}
.h1b{height:84.599996px;}
.h10{height:85.499996px;}
.h2f{height:87.839996px;}
.h52{height:88.199996px;}
.hb{height:90.359996px;}
.h34{height:93.599996px;}
.h2e{height:94.049996px;}
.h5c{height:102.599996px;}
.h6{height:111.149995px;}
.h4d{height:114.839995px;}
.h5{height:124.199995px;}
.h49{height:136.439994px;}
.h44{height:137.519994px;}
.h17{height:143.279994px;}
.h2a{height:143.999994px;}
.h35{height:144.359994px;}
.h1e{height:145.439994px;}
.h3d{height:152.279994px;}
.h37{height:153.359994px;}
.h9{height:153.899994px;}
.h23{height:162.359993px;}
.h47{height:165.599993px;}
.h43{height:165.959993px;}
.h16{height:174.599993px;}
.h59{height:185.039992px;}
.h3e{height:185.759992px;}
.h1d{height:193.679992px;}
.h11{height:204.839991px;}
.h25{height:205.199991px;}
.h56{height:207.359991px;}
.h53{height:210.599991px;}
.h54{height:210.959991px;}
.h24{height:235.439990px;}
.h26{height:265.679989px;}
.h38{height:282.599988px;}
.h2{height:307.799987px;}
.h5f{height:341.999986px;}
.h1{height:809.999966px;}
.h0{height:810.000000px;}
.h15{height:841.499965px;}
.h14{height:841.500000px;}
.h13{height:841.680000px;}
.h57{height:893.879970px;}
.h58{height:894.000000px;}
.h33{height:914.994106px;}
.h32{height:915.000000px;}
.h31{height:915.119940px;}
.h40{height:916.500000px;}
.h41{height:916.505818px;}
.h3f{height:916.559970px;}
.h2d{height:926.999961px;}
.h2c{height:927.000000px;}
.h22{height:949.499960px;}
.h21{height:949.500000px;}
.h20{height:949.680000px;}
.h4b{height:955.439940px;}
.h4c{height:955.500000px;}
.he{height:961.500000px;}
.hf{height:961.505816px;}
.hd{height:961.559970px;}
.h5b{height:980.999959px;}
.h5a{height:981.000000px;}
.h28{height:982.439940px;}
.h29{height:982.500000px;}
.h3c{height:985.499959px;}
.h3b{height:985.500000px;}
.h3a{height:985.680000px;}
.h51{height:994.499959px;}
.h50{height:994.500000px;}
.h4f{height:994.680000px;}
.h1a{height:998.999958px;}
.h19{height:999.000000px;}
.w2e{width:157.679993px;}
.w31{width:166.679993px;}
.w32{width:180.359992px;}
.w30{width:188.279992px;}
.w2f{width:188.999992px;}
.w29{width:233.999990px;}
.w28{width:234.359990px;}
.w27{width:237.599990px;}
.w4{width:267.839989px;}
.w20{width:298.439988px;}
.w22{width:322.199987px;}
.w21{width:327.599986px;}
.wf{width:332.279986px;}
.w10{width:334.439986px;}
.w2{width:375.839984px;}
.w34{width:380.879984px;}
.wc{width:501.839979px;}
.w14{width:505.439979px;}
.w6{width:508.679979px;}
.w7{width:509.039979px;}
.w18{width:527.039978px;}
.w15{width:528.839978px;}
.wb{width:539.279978px;}
.w24{width:542.519977px;}
.w1e{width:546.119977px;}
.w9{width:561.599977px;}
.w8{width:564.839976px;}
.w1a{width:591.119975px;}
.w5{width:608.039975px;}
.w11{width:617.759974px;}
.w19{width:643.679973px;}
.w12{width:680.759972px;}
.w13{width:681.839972px;}
.w3{width:703.439971px;}
.w23{width:1085.759955px;}
.wa{width:1103.759954px;}
.w2a{width:1108.439954px;}
.we{width:1110.599954px;}
.w1b{width:1116.359953px;}
.w1f{width:1117.439953px;}
.w1d{width:1118.519953px;}
.w2c{width:1119.959953px;}
.w1c{width:1125.359953px;}
.w16{width:1126.439953px;}
.w25{width:1128.599953px;}
.w2b{width:1134.359953px;}
.w33{width:1135.439953px;}
.wd{width:1142.999952px;}
.w2d{width:1181.519951px;}
.w26{width:1189.439950px;}
.w17{width:1194.119950px;}
.w1{width:1439.999940px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xa{left:1.139062px;}
.x32{left:2.475000px;}
.x42{left:3.537427px;}
.x45{left:9.757968px;}
.x3d{left:12.281484px;}
.x48{left:15.150937px;}
.x3e{left:16.781484px;}
.x49{left:19.088437px;}
.x40{left:40.376957px;}
.x17{left:47.429998px;}
.x46{left:53.070467px;}
.x43{left:64.287425px;}
.xb{left:89.999996px;}
.xc{left:112.499995px;}
.x18{left:128.429995px;}
.x25{left:133.559994px;}
.x1{left:134.999994px;}
.x13{left:137.249994px;}
.x1c{left:140.624994px;}
.x12{left:143.999994px;}
.xd{left:146.249994px;}
.x31{left:149.399994px;}
.x2a{left:151.874994px;}
.x16{left:157.319993px;}
.x20{left:163.124993px;}
.x1e{left:166.499993px;}
.xf{left:168.749993px;}
.x2f{left:172.124993px;}
.x34{left:176.958977px;}
.x33{left:211.833981px;}
.x26{left:313.874987px;}
.x3f{left:377.999984px;}
.x36{left:397.001942px;}
.x4a{left:439.312482px;}
.x2d{left:446.624981px;}
.x35{left:456.064440px;}
.x30{left:463.218731px;}
.x4b{left:529.559978px;}
.x19{left:551.159977px;}
.x2b{left:554.399977px;}
.x21{left:558.738258px;}
.x41{left:625.319974px;}
.x1a{left:666.439431px;}
.x23{left:669.603493px;}
.x38{left:672.732399px;}
.x27{left:691.874971px;}
.x1b{left:694.564430px;}
.x9{left:698.399971px;}
.x2{left:699.539033px;}
.x37{left:703.107398px;}
.x24{left:708.978492px;}
.x3{left:722.039032px;}
.x1f{left:751.499969px;}
.x10{left:753.749969px;}
.x14{left:755.999969px;}
.x1d{left:764.999968px;}
.x11{left:776.777311px;}
.xe{left:781.559967px;}
.x6{left:825.539028px;}
.x4{left:830.039028px;}
.x8{left:853.664027px;}
.x3a{left:874.792932px;}
.x44{left:884.159963px;}
.x5{left:887.414026px;}
.x7{left:906.539025px;}
.x28{left:947.249961px;}
.x39{left:948.480429px;}
.x22{left:954.369106px;}
.x15{left:965.988241px;}
.x2c{left:968.399960px;}
.x29{left:1046.249956px;}
.x2e{left:1065.374956px;}
.x47{left:1123.559953px;}
.x3c{left:1154.460889px;}
.x3b{left:1197.210888px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._5{margin-left:-12.480006pt;}
._0{margin-left:-9.792011pt;}
._3{margin-left:-8.064009pt;}
._2{margin-left:-7.040010pt;}
._4{margin-left:-5.984005pt;}
._d{margin-left:-4.928008pt;}
._e{margin-left:-3.888009pt;}
._1{margin-left:-2.176010pt;}
._c{margin-left:-1.191982pt;}
._a{width:1.223998pt;}
._b{width:2.119985pt;}
._f{width:3.079996pt;}
._10{width:4.255997pt;}
._12{width:5.239999pt;}
._13{width:6.352014pt;}
._1e{width:8.399925pt;}
._9{width:9.607997pt;}
._6{width:10.519997pt;}
._7{width:12.311998pt;}
._8{width:14.080000pt;}
._1d{width:306.391989pt;}
._18{width:408.479919pt;}
._16{width:695.592407pt;}
._14{width:709.776004pt;}
._1c{width:728.775968pt;}
._1a{width:804.440425pt;}
._1b{width:815.920437pt;}
._15{width:846.016460pt;}
._11{width:905.023933pt;}
._17{width:1392.111907pt;}
._19{width:1572.471938pt;}
.fsb{font-size:51.999998pt;}
.fs1{font-size:55.999998pt;}
.fs9{font-size:59.999998pt;}
.fs3{font-size:63.999997pt;}
.fs7{font-size:67.999997pt;}
.fs5{font-size:71.999997pt;}
.fs6{font-size:79.999997pt;}
.fs8{font-size:87.999996pt;}
.fsa{font-size:95.999996pt;}
.fs2{font-size:103.999996pt;}
.fs4{font-size:143.999994pt;}
.fs0{font-size:287.999988pt;}
.fsc{font-size:319.999987pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000030pt;}
.y7e{bottom:0.000034pt;}
.y40{bottom:0.000037pt;}
.yc0{bottom:0.048135pt;}
.y1c{bottom:0.048137pt;}
.y93{bottom:0.111853pt;}
.y2e{bottom:0.160031pt;}
.y56{bottom:0.160035pt;}
.yb4{bottom:0.160036pt;}
.ya1{bottom:0.319981pt;}
.y133{bottom:0.320006pt;}
.yd7{bottom:0.640007pt;}
.y3e{bottom:0.960031pt;}
.y91{bottom:0.960034pt;}
.y119{bottom:0.960037pt;}
.y140{bottom:3.000000pt;}
.y144{bottom:3.160000pt;}
.y28{bottom:4.000000pt;}
.yee{bottom:4.040000pt;}
.y5{bottom:4.080000pt;}
.y69{bottom:4.120000pt;}
.y3d{bottom:4.160000pt;}
.y8a{bottom:4.200000pt;}
.yb{bottom:4.240000pt;}
.y7a{bottom:4.280000pt;}
.y9b{bottom:5.000000pt;}
.y5f{bottom:5.080000pt;}
.y123{bottom:5.160000pt;}
.y1a{bottom:5.200000pt;}
.y148{bottom:6.240000pt;}
.y9{bottom:7.280000pt;}
.y55{bottom:17.999999pt;}
.yd8{bottom:18.079999pt;}
.yfd{bottom:19.279981pt;}
.ye5{bottom:20.999999pt;}
.ya2{bottom:21.119999pt;}
.y143{bottom:22.159999pt;}
.y11a{bottom:22.199999pt;}
.y134{bottom:22.239999pt;}
.y7d{bottom:22.279982pt;}
.y13f{bottom:22.999999pt;}
.y92{bottom:24.039999pt;}
.y1b{bottom:25.999999pt;}
.yb3{bottom:26.279982pt;}
.y2d{bottom:26.671871pt;}
.y6f{bottom:26.999999pt;}
.y3f{bottom:27.199999pt;}
.y10b{bottom:28.199999pt;}
.y113{bottom:28.239999pt;}
.yf8{bottom:28.999999pt;}
.y4f{bottom:29.159999pt;}
.ycc{bottom:29.279999pt;}
.yd1{bottom:29.999999pt;}
.ye3{bottom:30.079999pt;}
.yf4{bottom:30.239999pt;}
.y27{bottom:30.999999pt;}
.yed{bottom:31.039999pt;}
.y68{bottom:31.119999pt;}
.y3c{bottom:31.159999pt;}
.y89{bottom:31.199999pt;}
.y79{bottom:31.279999pt;}
.y83{bottom:31.999999pt;}
.y48{bottom:32.079999pt;}
.y54{bottom:32.159999pt;}
.y8d{bottom:32.999999pt;}
.ybc{bottom:33.079999pt;}
.y132{bottom:33.119999pt;}
.y103{bottom:33.159999pt;}
.yab{bottom:33.239999pt;}
.y12c{bottom:33.279999pt;}
.y19{bottom:34.199999pt;}
.y9a{bottom:35.999998pt;}
.y5e{bottom:36.079998pt;}
.y13c{bottom:36.199998pt;}
.y122{bottom:38.159998pt;}
.y13e{bottom:41.999998pt;}
.y142{bottom:42.159998pt;}
.y8{bottom:46.279998pt;}
.y10a{bottom:52.199998pt;}
.y112{bottom:52.239998pt;}
.yd0{bottom:54.999998pt;}
.ye2{bottom:55.079998pt;}
.y4e{bottom:55.159998pt;}
.yf3{bottom:55.239998pt;}
.ycb{bottom:55.279998pt;}
.y37{bottom:57.999998pt;}
.yfc{bottom:58.039998pt;}
.y6e{bottom:58.119998pt;}
.y3b{bottom:58.159998pt;}
.yc6{bottom:58.199998pt;}
.y78{bottom:58.279998pt;}
.y26{bottom:58.999998pt;}
.yec{bottom:59.039998pt;}
.y47{bottom:59.079998pt;}
.y67{bottom:59.119998pt;}
.y53{bottom:59.159998pt;}
.y88{bottom:59.199998pt;}
.y8c{bottom:61.999997pt;}
.ybb{bottom:62.079997pt;}
.y131{bottom:62.119997pt;}
.y102{bottom:62.159997pt;}
.yaa{bottom:62.239997pt;}
.y12b{bottom:62.279997pt;}
.y18{bottom:63.199997pt;}
.y99{bottom:65.999997pt;}
.y5d{bottom:66.079997pt;}
.y13b{bottom:66.199997pt;}
.y121{bottom:70.159997pt;}
.y109{bottom:76.199997pt;}
.y111{bottom:76.239997pt;}
.yf7{bottom:79.999997pt;}
.y4d{bottom:80.159997pt;}
.yca{bottom:80.279997pt;}
.ycf{bottom:80.999997pt;}
.ye1{bottom:81.079997pt;}
.yf2{bottom:81.239997pt;}
.y36{bottom:84.999996pt;}
.yfb{bottom:85.039996pt;}
.y6d{bottom:85.119996pt;}
.y3a{bottom:85.159996pt;}
.y7{bottom:85.279996pt;}
.y25{bottom:85.999996pt;}
.yeb{bottom:86.039996pt;}
.y66{bottom:86.119996pt;}
.y52{bottom:86.159996pt;}
.y87{bottom:86.199996pt;}
.y12a{bottom:90.279996pt;}
.yb2{bottom:90.999996pt;}
.yba{bottom:91.079996pt;}
.y130{bottom:91.119996pt;}
.ya9{bottom:91.239996pt;}
.y50{bottom:91.840033pt;}
.y5c{bottom:97.079996pt;}
.y7c{bottom:97.279979pt;}
.yf9{bottom:98.239978pt;}
.yd6{bottom:98.671868pt;}
.y108{bottom:100.199996pt;}
.y110{bottom:100.239996pt;}
.y120{bottom:102.159996pt;}
.yf6{bottom:105.999996pt;}
.ye0{bottom:106.079996pt;}
.y4c{bottom:106.159996pt;}
.yf1{bottom:106.239996pt;}
.yc9{bottom:106.279996pt;}
.yce{bottom:106.999996pt;}
.ya{bottom:109.760025pt;}
.y35{bottom:111.999995pt;}
.yfa{bottom:112.039995pt;}
.y39{bottom:112.159995pt;}
.y77{bottom:112.279995pt;}
.y24{bottom:112.999995pt;}
.y65{bottom:113.119995pt;}
.y51{bottom:113.159995pt;}
.y86{bottom:113.199995pt;}
.y145{bottom:114.880032pt;}
.ya0{bottom:115.328123pt;}
.y118{bottom:115.999995pt;}
.y12d{bottom:117.440002pt;}
.y6a{bottom:119.040030pt;}
.yb9{bottom:119.079995pt;}
.y129{bottom:119.279995pt;}
.yb1{bottom:119.999995pt;}
.ybf{bottom:120.079995pt;}
.y12f{bottom:120.119995pt;}
.ya8{bottom:120.239995pt;}
.yd5{bottom:122.671867pt;}
.y107{bottom:124.199995pt;}
.y10f{bottom:124.239995pt;}
.y16{bottom:124.999995pt;}
.y5b{bottom:127.079995pt;}
.y38{bottom:128.000026pt;}
.ydf{bottom:132.079994pt;}
.y4b{bottom:132.159994pt;}
.yf0{bottom:132.239994pt;}
.yc8{bottom:132.279994pt;}
.y11f{bottom:135.159994pt;}
.yac{bottom:137.279977pt;}
.y2c{bottom:139.671866pt;}
.y23{bottom:139.999994pt;}
.y64{bottom:140.119994pt;}
.y85{bottom:140.199994pt;}
.y9f{bottom:140.328122pt;}
.ybd{bottom:142.080031pt;}
.yde{bottom:145.920024pt;}
.yd4{bottom:146.671866pt;}
.yb0{bottom:147.999994pt;}
.y106{bottom:148.199994pt;}
.y10e{bottom:148.239994pt;}
.y128{bottom:148.279994pt;}
.ybe{bottom:149.079994pt;}
.y12e{bottom:149.119994pt;}
.y90{bottom:149.999994pt;}
.y15{bottom:151.999994pt;}
.y4a{bottom:157.159993pt;}
.y117{bottom:163.999993pt;}
.y2b{bottom:165.671865pt;}
.y9e{bottom:166.328121pt;}
.y22{bottom:166.999993pt;}
.y63{bottom:167.119993pt;}
.y11e{bottom:167.159993pt;}
.yd3{bottom:170.671865pt;}
.ye4{bottom:171.840023pt;}
.y60{bottom:172.160028pt;}
.y105{bottom:172.199993pt;}
.y10d{bottom:172.239993pt;}
.yaf{bottom:176.999993pt;}
.y116{bottom:187.999992pt;}
.y8f{bottom:191.999992pt;}
.y9d{bottom:192.328120pt;}
.y61{bottom:193.999992pt;}
.y6c{bottom:194.119992pt;}
.yd2{bottom:194.671864pt;}
.y14{bottom:194.999992pt;}
.y62{bottom:199.040027pt;}
.yae{bottom:205.999991pt;}
.y2a{bottom:210.671863pt;}
.y115{bottom:211.999991pt;}
.y6{bottom:214.720021pt;}
.y8e{bottom:216.999991pt;}
.y11d{bottom:219.840021pt;}
.y6b{bottom:221.119991pt;}
.y13{bottom:221.999991pt;}
.y97{bottom:233.328118pt;}
.yc4{bottom:233.671862pt;}
.yad{bottom:234.999990pt;}
.y29{bottom:236.671862pt;}
.y114{bottom:239.999990pt;}
.y45{bottom:243.999990pt;}
.y75{bottom:247.279973pt;}
.ye9{bottom:249.279972pt;}
.y8b{bottom:256.000024pt;}
.y12{bottom:264.999989pt;}
.y100{bottom:280.999988pt;}
.y20{bottom:282.671860pt;}
.y34{bottom:284.160019pt;}
.y7b{bottom:285.119971pt;}
.y11{bottom:291.999988pt;}
.y147{bottom:301.760017pt;}
.y139{bottom:307.999987pt;}
.y126{bottom:308.559994pt;}
.yc7{bottom:317.439994pt;}
.ydc{bottom:317.999987pt;}
.y9c{bottom:329.279967pt;}
.y49{bottom:331.840023pt;}
.y10{bottom:334.999986pt;}
.yef{bottom:335.039968pt;}
.ycd{bottom:342.719993pt;}
.yf5{bottom:361.279967pt;}
.yf{bottom:361.999985pt;}
.y81{bottom:362.999985pt;}
.y10c{bottom:377.920021pt;}
.y59{bottom:378.999984pt;}
.y146{bottom:395.999984pt;}
.y21{bottom:398.719992pt;}
.y104{bottom:400.960020pt;}
.ye{bottom:404.999983pt;}
.y13d{bottom:408.000019pt;}
.ya6{bottom:416.279966pt;}
.y3{bottom:416.999983pt;}
.ydd{bottom:420.800012pt;}
.y127{bottom:425.279989pt;}
.y141{bottom:427.840019pt;}
.yd{bottom:431.999982pt;}
.y74{bottom:434.279965pt;}
.y11c{bottom:435.999982pt;}
.y33{bottom:461.999981pt;}
.yb8{bottom:462.080017pt;}
.y84{bottom:468.800015pt;}
.y96{bottom:484.328108pt;}
.y17{bottom:484.800010pt;}
.yc3{bottom:487.671852pt;}
.y76{bottom:495.999962pt;}
.y82{bottom:496.000014pt;}
.y2{bottom:496.999979pt;}
.y138{bottom:497.999979pt;}
.y5a{bottom:502.080014pt;}
.ya7{bottom:503.039962pt;}
.ye8{bottom:503.279961pt;}
.y32{bottom:513.999979pt;}
.ydb{bottom:517.999978pt;}
.y44{bottom:524.999978pt;}
.y137{bottom:534.999978pt;}
.y11b{bottom:545.999977pt;}
.y98{bottom:557.439957pt;}
.y31{bottom:560.999977pt;}
.yc5{bottom:571.519983pt;}
.yff{bottom:584.999976pt;}
.yea{bottom:586.239958pt;}
.y4{bottom:593.920005pt;}
.yda{bottom:600.999975pt;}
.y30{bottom:607.999975pt;}
.y1f{bottom:608.671847pt;}
.yc{bottom:608.999975pt;}
.y46{bottom:609.920012pt;}
.y13a{bottom:612.800011pt;}
.y125{bottom:615.559981pt;}
.yb7{bottom:624.999974pt;}
.y73{bottom:644.279956pt;}
.y80{bottom:651.999973pt;}
.yd9{bottom:654.999973pt;}
.yc2{bottom:663.671844pt;}
.y2f{bottom:670.999972pt;}
.y101{bottom:680.000009pt;}
.y95{bottom:680.328100pt;}
.ya5{bottom:683.279955pt;}
.y43{bottom:707.999971pt;}
.y124{bottom:708.559977pt;}
.y58{bottom:710.999970pt;}
.y1e{bottom:711.671842pt;}
.y72{bottom:712.279953pt;}
.y94{bottom:727.328098pt;}
.ya4{bottom:730.279953pt;}
.yb6{bottom:732.999969pt;}
.yc1{bottom:733.671841pt;}
.y7f{bottom:737.999969pt;}
.y136{bottom:738.999969pt;}
.ye7{bottom:742.279951pt;}
.y57{bottom:757.999968pt;}
.y1d{bottom:758.671840pt;}
.y71{bottom:759.279951pt;}
.ya3{bottom:777.279951pt;}
.yb5{bottom:779.999968pt;}
.y42{bottom:782.999967pt;}
.y135{bottom:785.999967pt;}
.ye6{bottom:792.279949pt;}
.yfe{bottom:797.999967pt;}
.y70{bottom:813.279949pt;}
.y41{bottom:832.999965pt;}
.h3{height:18.239999pt;}
.h7{height:19.519999pt;}
.h60{height:29.439999pt;}
.h1f{height:47.039998pt;}
.h4e{height:47.359980pt;}
.h45{height:47.359998pt;}
.h5d{height:49.399998pt;}
.h4a{height:52.159998pt;}
.h36{height:53.119998pt;}
.h4{height:53.199998pt;}
.h2b{height:53.439981pt;}
.h55{height:53.439998pt;}
.h5e{height:55.359998pt;}
.h48{height:56.999998pt;}
.h30{height:59.199998pt;}
.h8{height:60.799997pt;}
.hc{height:62.079997pt;}
.h12{height:62.671869pt;}
.h27{height:63.199997pt;}
.h39{height:63.359980pt;}
.h18{height:63.359997pt;}
.h1c{height:64.599997pt;}
.ha{height:68.399997pt;}
.h46{height:73.279997pt;}
.h42{height:74.239997pt;}
.h1b{height:75.199997pt;}
.h10{height:75.999997pt;}
.h2f{height:78.079997pt;}
.h52{height:78.399997pt;}
.hb{height:80.319997pt;}
.h34{height:83.199997pt;}
.h2e{height:83.599997pt;}
.h5c{height:91.199996pt;}
.h6{height:98.799996pt;}
.h4d{height:102.079996pt;}
.h5{height:110.399995pt;}
.h49{height:121.279995pt;}
.h44{height:122.239995pt;}
.h17{height:127.359995pt;}
.h2a{height:127.999995pt;}
.h35{height:128.319995pt;}
.h1e{height:129.279995pt;}
.h3d{height:135.359994pt;}
.h37{height:136.319994pt;}
.h9{height:136.799994pt;}
.h23{height:144.319994pt;}
.h47{height:147.199994pt;}
.h43{height:147.519994pt;}
.h16{height:155.199994pt;}
.h59{height:164.479993pt;}
.h3e{height:165.119993pt;}
.h1d{height:172.159993pt;}
.h11{height:182.079992pt;}
.h25{height:182.399992pt;}
.h56{height:184.319992pt;}
.h53{height:187.199992pt;}
.h54{height:187.519992pt;}
.h24{height:209.279991pt;}
.h26{height:236.159990pt;}
.h38{height:251.199990pt;}
.h2{height:273.599989pt;}
.h5f{height:303.999987pt;}
.h1{height:719.999970pt;}
.h0{height:720.000000pt;}
.h15{height:747.999969pt;}
.h14{height:748.000000pt;}
.h13{height:748.160000pt;}
.h57{height:794.559973pt;}
.h58{height:794.666667pt;}
.h33{height:813.328094pt;}
.h32{height:813.333333pt;}
.h31{height:813.439947pt;}
.h40{height:814.666667pt;}
.h41{height:814.671838pt;}
.h3f{height:814.719973pt;}
.h2d{height:823.999966pt;}
.h2c{height:824.000000pt;}
.h22{height:843.999965pt;}
.h21{height:844.000000pt;}
.h20{height:844.160000pt;}
.h4b{height:849.279947pt;}
.h4c{height:849.333333pt;}
.he{height:854.666667pt;}
.hf{height:854.671836pt;}
.hd{height:854.719973pt;}
.h5b{height:871.999964pt;}
.h5a{height:872.000000pt;}
.h28{height:873.279947pt;}
.h29{height:873.333333pt;}
.h3c{height:875.999964pt;}
.h3b{height:876.000000pt;}
.h3a{height:876.160000pt;}
.h51{height:883.999963pt;}
.h50{height:884.000000pt;}
.h4f{height:884.160000pt;}
.h1a{height:887.999963pt;}
.h19{height:888.000000pt;}
.w2e{width:140.159994pt;}
.w31{width:148.159994pt;}
.w32{width:160.319993pt;}
.w30{width:167.359993pt;}
.w2f{width:167.999993pt;}
.w29{width:207.999991pt;}
.w28{width:208.319991pt;}
.w27{width:211.199991pt;}
.w4{width:238.079990pt;}
.w20{width:265.279989pt;}
.w22{width:286.399988pt;}
.w21{width:291.199988pt;}
.wf{width:295.359988pt;}
.w10{width:297.279988pt;}
.w2{width:334.079986pt;}
.w34{width:338.559986pt;}
.wc{width:446.079981pt;}
.w14{width:449.279981pt;}
.w6{width:452.159981pt;}
.w7{width:452.479981pt;}
.w18{width:468.479980pt;}
.w15{width:470.079980pt;}
.wb{width:479.359980pt;}
.w24{width:482.239980pt;}
.w1e{width:485.439980pt;}
.w9{width:499.199979pt;}
.w8{width:502.079979pt;}
.w1a{width:525.439978pt;}
.w5{width:540.479977pt;}
.w11{width:549.119977pt;}
.w19{width:572.159976pt;}
.w12{width:605.119975pt;}
.w13{width:606.079975pt;}
.w3{width:625.279974pt;}
.w23{width:965.119960pt;}
.wa{width:981.119959pt;}
.w2a{width:985.279959pt;}
.we{width:987.199959pt;}
.w1b{width:992.319959pt;}
.w1f{width:993.279959pt;}
.w1d{width:994.239959pt;}
.w2c{width:995.519959pt;}
.w1c{width:1000.319958pt;}
.w16{width:1001.279958pt;}
.w25{width:1003.199958pt;}
.w2b{width:1008.319958pt;}
.w33{width:1009.279958pt;}
.wd{width:1015.999958pt;}
.w2d{width:1050.239956pt;}
.w26{width:1057.279956pt;}
.w17{width:1061.439956pt;}
.w1{width:1279.999947pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xa{left:1.012500pt;}
.x32{left:2.200000pt;}
.x42{left:3.144380pt;}
.x45{left:8.673750pt;}
.x3d{left:10.916875pt;}
.x48{left:13.467499pt;}
.x3e{left:14.916874pt;}
.x49{left:16.967499pt;}
.x40{left:35.890629pt;}
.x17{left:42.159998pt;}
.x46{left:47.173748pt;}
.x43{left:57.144378pt;}
.xb{left:79.999997pt;}
.xc{left:99.999996pt;}
.x18{left:114.159995pt;}
.x25{left:118.719995pt;}
.x1{left:119.999995pt;}
.x13{left:121.999995pt;}
.x1c{left:124.999995pt;}
.x12{left:127.999995pt;}
.xd{left:129.999995pt;}
.x31{left:132.799994pt;}
.x2a{left:134.999994pt;}
.x16{left:139.839994pt;}
.x20{left:144.999994pt;}
.x1e{left:147.999994pt;}
.xf{left:149.999994pt;}
.x2f{left:152.999994pt;}
.x34{left:157.296868pt;}
.x33{left:188.296872pt;}
.x26{left:278.999988pt;}
.x3f{left:335.999986pt;}
.x36{left:352.890615pt;}
.x4a{left:390.499984pt;}
.x2d{left:396.999983pt;}
.x35{left:405.390613pt;}
.x30{left:411.749983pt;}
.x4b{left:470.719980pt;}
.x19{left:489.919980pt;}
.x2b{left:492.799979pt;}
.x21{left:496.656229pt;}
.x41{left:555.839977pt;}
.x1a{left:592.390605pt;}
.x23{left:595.203105pt;}
.x38{left:597.984355pt;}
.x27{left:614.999974pt;}
.x1b{left:617.390604pt;}
.x9{left:620.799974pt;}
.x2{left:621.812474pt;}
.x37{left:624.984354pt;}
.x24{left:630.203104pt;}
.x3{left:641.812473pt;}
.x1f{left:667.999972pt;}
.x10{left:669.999972pt;}
.x14{left:671.999972pt;}
.x1d{left:679.999972pt;}
.x11{left:690.468721pt;}
.xe{left:694.719971pt;}
.x6{left:733.812469pt;}
.x4{left:737.812469pt;}
.x8{left:758.812468pt;}
.x3a{left:777.593718pt;}
.x44{left:785.919967pt;}
.x5{left:788.812467pt;}
.x7{left:805.812466pt;}
.x28{left:841.999965pt;}
.x39{left:843.093715pt;}
.x22{left:848.328095pt;}
.x15{left:858.656214pt;}
.x2c{left:860.799964pt;}
.x29{left:929.999961pt;}
.x2e{left:946.999961pt;}
.x47{left:998.719958pt;}
.x3c{left:1026.187457pt;}
.x3b{left:1064.187456pt;}
}




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