
    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_a7e956b214ece82ceb4d9087.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.747070;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_0ef785e554d4ed6950a7dceb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0b3ddb2dc4355abd8c70f4dd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941000;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_bc327ea1513b784282d4ca57.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.116000;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_93ee1bdd918e3defb74b81d4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916000;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_f234855bf02672158d5d2776.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.875977;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_4d5c6bf0c2e8d94a1f7cb026.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.920000;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:ff8;src:url('chunks/assets/font_70cced6e76828cc37866e988.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.920898;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:ff9;src:url('chunks/assets/font_97cf8a68bf6d5aee1b8ab786.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.756000;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:ffa;src:url('chunks/assets/font_97cf8a68bf6d5aee1b8ab786.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.756000;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:ffb;src:url('chunks/assets/font_1904134953b8d66789ab116b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:34.356000px;}
.ls1{letter-spacing:-1.800000px;}
.ls3{letter-spacing:-1.599816px;}
.ls2{letter-spacing:-1.439982px;}
.ls4{letter-spacing:-0.839976px;}
.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:-32.999850px;}
.ws2{word-spacing:-15.000000px;}
.wsd{word-spacing:-10.499700px;}
.ws1{word-spacing:0.000000px;}
.ws3{word-spacing:10.416000px;}
.wsa{word-spacing:19.907431px;}
.wsb{word-spacing:19.995629px;}
.wsc{word-spacing:19.999829px;}
.ws8{word-spacing:20.247621px;}
.ws4{word-spacing:944.340000px;}
.ws6{word-spacing:1080.060000px;}
.ws7{word-spacing:1081.740000px;}
.ws9{word-spacing:1081.860000px;}
.ws5{word-spacing:1082.700000px;}
._0{margin-left:-4.348764px;}
._16{margin-left:-3.191909px;}
._12{margin-left:-1.260000px;}
._8{width:1.812000px;}
._e{width:2.958098px;}
._a{width:4.217902px;}
._3{width:5.379049px;}
._4{width:6.834000px;}
._2{width:8.025673px;}
._c{width:9.426000px;}
._7{width:10.656000px;}
._9{width:11.771994px;}
._13{width:13.494000px;}
._1a{width:14.521502px;}
._d{width:16.296000px;}
._6{width:17.700000px;}
._14{width:19.026000px;}
._15{width:20.072545px;}
._1{width:21.084105px;}
._b{width:22.367684px;}
._1d{width:23.418000px;}
._18{width:26.022000px;}
._10{width:28.410000px;}
._11{width:29.442000px;}
._21{width:30.499529px;}
._20{width:34.482000px;}
._5{width:37.050000px;}
._f{width:60.516000px;}
._19{width:948.300000px;}
._1f{width:1844.464469px;}
._1c{width:1849.819422px;}
._17{width:2092.277107px;}
._1b{width:2509.571830px;}
._1e{width:2627.587973px;}
.fc3{color:rgb(33,150,209);}
.fc5{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc4{color:transparent;}
.fc1{color:rgb(250,140,59);}
.fc0{color:rgb(247,36,38);}
.fs9{font-size:27.996600px;}
.fs5{font-size:39.995400px;}
.fs6{font-size:41.998800px;}
.fs3{font-size:43.995600px;}
.fsb{font-size:47.999400px;}
.fsa{font-size:50.999400px;}
.fs8{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000600px;}
.fs0{font-size:71.999400px;}
.fs1{font-size:120.000600px;}
.fs7{font-size:131.999400px;}
.y0{bottom:0.000000px;}
.yb4{bottom:5.557650px;}
.yae{bottom:5.581050px;}
.y10b{bottom:5.595750px;}
.yab{bottom:5.603100px;}
.y93{bottom:5.828550px;}
.y50{bottom:44.305500px;}
.yb9{bottom:44.310588px;}
.y47{bottom:92.948786px;}
.y109{bottom:95.246744px;}
.ye5{bottom:95.247000px;}
.yb7{bottom:98.476012px;}
.y95{bottom:101.622206px;}
.y46{bottom:106.469250px;}
.y108{bottom:107.237401px;}
.y45{bottom:111.146400px;}
.ye4{bottom:113.275500px;}
.yb6{bottom:114.973406px;}
.y94{bottom:118.119600px;}
.y107{bottom:119.227009px;}
.y44{bottom:119.990550px;}
.y43{bottom:124.667700px;}
.y106{bottom:131.217666px;}
.ye3{bottom:131.218500px;}
.yb5{bottom:131.470800px;}
.y42{bottom:133.511700px;}
.y92{bottom:137.593650px;}
.y41{bottom:138.103800px;}
.y105{bottom:143.208323px;}
.y40{bottom:146.947950px;}
.ye2{bottom:149.247000px;}
.yb3{bottom:150.945000px;}
.y3f{bottom:151.624500px;}
.y104{bottom:155.198981px;}
.y3c{bottom:160.470023px;}
.ye1{bottom:167.274000px;}
.y103{bottom:167.274686px;}
.y3b{bottom:173.991536px;}
.y102{bottom:179.264293px;}
.ye0{bottom:185.218500px;}
.y3a{bottom:187.512000px;}
.y101{bottom:191.254951px;}
.ydf{bottom:203.245500px;}
.y100{bottom:203.245608px;}
.yff{bottom:215.236265px;}
.yde{bottom:221.274000px;}
.yfe{bottom:227.225873px;}
.yfd{bottom:239.216530px;}
.ydd{bottom:239.217000px;}
.yfc{bottom:251.207188px;}
.ydc{bottom:257.245500px;}
.y2c{bottom:259.881000px;}
.y2a{bottom:259.882500px;}
.yfb{bottom:263.197845px;}
.y2b{bottom:266.512500px;}
.yfa{bottom:275.272500px;}
.ydb{bottom:275.274000px;}
.y29{bottom:277.825500px;}
.y160{bottom:284.209757px;}
.y14d{bottom:284.975186px;}
.yda{bottom:293.217000px;}
.y28{bottom:295.854000px;}
.y15f{bottom:296.200415px;}
.y14c{bottom:296.965843px;}
.yf9{bottom:302.232000px;}
.y15e{bottom:308.276120px;}
.y14b{bottom:308.956500px;}
.yd9{bottom:311.245500px;}
.y27{bottom:313.881000px;}
.y39{bottom:313.882500px;}
.y15d{bottom:320.265727px;}
.y14a{bottom:321.031155px;}
.yd8{bottom:329.274000px;}
.y26{bottom:331.824000px;}
.y38{bottom:331.825500px;}
.y15c{bottom:332.256385px;}
.y149{bottom:333.021813px;}
.y79{bottom:345.006000px;}
.y148{bottom:345.012470px;}
.yd7{bottom:347.217000px;}
.y24{bottom:349.854000px;}
.yf8{bottom:356.230500px;}
.y25{bottom:356.485500px;}
.y147{bottom:357.003128px;}
.y15b{bottom:361.509599px;}
.y78{bottom:362.950500px;}
.yd6{bottom:365.245500px;}
.y37{bottom:367.881000px;}
.y23{bottom:367.882500px;}
.y146{bottom:368.992735px;}
.ya9{bottom:371.964000px;}
.yb2{bottom:372.643106px;}
.y15a{bottom:373.500256px;}
.yf7{bottom:374.259000px;}
.y77{bottom:380.977500px;}
.y145{bottom:380.983392px;}
.yd5{bottom:383.274000px;}
.y159{bottom:385.490914px;}
.y36{bottom:385.824000px;}
.y22{bottom:385.825500px;}
.yb1{bottom:389.140500px;}
.ya7{bottom:389.991000px;}
.y91{bottom:389.992500px;}
.yf6{bottom:392.202000px;}
.y144{bottom:392.974050px;}
.ya8{bottom:396.624000px;}
.y158{bottom:397.481571px;}
.y76{bottom:399.006000px;}
.yd4{bottom:401.217000px;}
.y20{bottom:403.852500px;}
.y143{bottom:404.964707px;}
.ya6{bottom:408.018000px;}
.ya4{bottom:408.021000px;}
.y157{bottom:409.471178px;}
.y21{bottom:410.485500px;}
.ya5{bottom:414.652500px;}
.y75{bottom:416.949000px;}
.y142{bottom:416.955365px;}
.yd3{bottom:419.244000px;}
.yd1{bottom:419.247000px;}
.y1f{bottom:421.881000px;}
.yd2{bottom:425.877000px;}
.ya3{bottom:425.964000px;}
.y141{bottom:429.030020px;}
.y156{bottom:432.006685px;}
.y74{bottom:434.977500px;}
.y90{bottom:437.274000px;}
.yd0{bottom:437.275500px;}
.y1e{bottom:439.824000px;}
.y140{bottom:441.020677px;}
.ya2{bottom:443.992500px;}
.y155{bottom:443.997342px;}
.y73{bottom:453.006000px;}
.y13f{bottom:453.011334px;}
.y8f{bottom:455.217000px;}
.ycf{bottom:455.218500px;}
.y154{bottom:455.987999px;}
.y1d{bottom:457.852500px;}
.ya1{bottom:462.019500px;}
.y13e{bottom:465.001992px;}
.y153{bottom:467.977607px;}
.y72{bottom:470.949000px;}
.yf5{bottom:473.242500px;}
.y8e{bottom:473.245500px;}
.yce{bottom:473.247000px;}
.y1c{bottom:475.879500px;}
.y34{bottom:475.881000px;}
.y13d{bottom:476.991599px;}
.ya0{bottom:479.962500px;}
.y9e{bottom:479.964000px;}
.y152{bottom:479.968264px;}
.y35{bottom:482.512500px;}
.y9f{bottom:486.681000px;}
.y71{bottom:488.977500px;}
.y13c{bottom:488.982257px;}
.yf4{bottom:491.271000px;}
.y8d{bottom:491.274000px;}
.ycd{bottom:491.275500px;}
.y151{bottom:491.958922px;}
.y33{bottom:493.824000px;}
.y1a{bottom:493.825500px;}
.y9d{bottom:497.992500px;}
.y1b{bottom:500.541000px;}
.y13b{bottom:500.972914px;}
.y150{bottom:503.949579px;}
.y70{bottom:507.006000px;}
.yf3{bottom:509.214000px;}
.y8c{bottom:509.217000px;}
.ycc{bottom:509.218500px;}
.y19{bottom:511.852500px;}
.y13a{bottom:512.963571px;}
.y9c{bottom:516.021000px;}
.y14f{bottom:516.024234px;}
.y6f{bottom:524.949000px;}
.y139{bottom:524.954229px;}
.yf2{bottom:527.242500px;}
.y8b{bottom:527.245500px;}
.y14e{bottom:529.460700px;}
.y32{bottom:529.879500px;}
.y31{bottom:529.881000px;}
.y17{bottom:529.882500px;}
.y9b{bottom:533.964000px;}
.y18{bottom:536.512500px;}
.y138{bottom:537.028884px;}
.y6e{bottom:542.977500px;}
.y8a{bottom:545.272500px;}
.ycb{bottom:545.274000px;}
.y2e{bottom:547.821000px;}
.y30{bottom:547.824000px;}
.y16{bottom:547.825500px;}
.y137{bottom:549.019541px;}
.y9a{bottom:551.992500px;}
.yf1{bottom:554.200500px;}
.y2f{bottom:554.541000px;}
.y6d{bottom:561.006000px;}
.y136{bottom:561.010199px;}
.y89{bottom:563.217000px;}
.y2d{bottom:565.849500px;}
.y15{bottom:565.852500px;}
.y13{bottom:565.854000px;}
.y99{bottom:570.019500px;}
.y14{bottom:572.485500px;}
.y135{bottom:573.000856px;}
.y6c{bottom:578.949000px;}
.y88{bottom:581.244000px;}
.yca{bottom:581.245500px;}
.y12{bottom:583.881000px;}
.y134{bottom:584.990463px;}
.y98{bottom:587.962500px;}
.y4f{bottom:589.748837px;}
.y6b{bottom:596.976000px;}
.y133{bottom:596.981121px;}
.y87{bottom:599.271000px;}
.yc9{bottom:599.274000px;}
.y11{bottom:601.824000px;}
.yf{bottom:601.825500px;}
.y4e{bottom:605.480876px;}
.yf0{bottom:608.199000px;}
.y10{bottom:608.541000px;}
.y132{bottom:608.971778px;}
.y69{bottom:615.007500px;}
.y86{bottom:617.214000px;}
.yc8{bottom:617.217000px;}
.yb0{bottom:619.171106px;}
.ye{bottom:619.854000px;}
.y131{bottom:620.962436px;}
.y4d{bottom:621.212916px;}
.y6a{bottom:621.637500px;}
.yef{bottom:626.227500px;}
.y68{bottom:632.950500px;}
.y130{bottom:632.953093px;}
.y85{bottom:635.242500px;}
.yc7{bottom:635.245500px;}
.yaf{bottom:635.668500px;}
.y4c{bottom:637.030380px;}
.yd{bottom:637.882500px;}
.yee{bottom:644.256000px;}
.y12f{bottom:645.027748px;}
.y67{bottom:650.979000px;}
.y4b{bottom:652.762420px;}
.y84{bottom:653.271000px;}
.yc6{bottom:653.274000px;}
.yad{bottom:655.059000px;}
.yc{bottom:655.825500px;}
.y12e{bottom:657.018405px;}
.yed{bottom:662.199000px;}
.y4a{bottom:668.494460px;}
.y66{bottom:669.007500px;}
.y12d{bottom:669.009063px;}
.y83{bottom:671.214000px;}
.yc5{bottom:671.217000px;}
.yb{bottom:673.854000px;}
.yec{bottom:680.227500px;}
.y12c{bottom:680.999720px;}
.y49{bottom:684.226500px;}
.y65{bottom:686.950500px;}
.y82{bottom:689.242500px;}
.yc4{bottom:689.245500px;}
.ya{bottom:691.881000px;}
.y12b{bottom:692.989328px;}
.yeb{bottom:698.256000px;}
.y64{bottom:704.979000px;}
.y12a{bottom:704.979985px;}
.y81{bottom:707.271000px;}
.yc3{bottom:707.274000px;}
.y48{bottom:707.782500px;}
.y9{bottom:709.824000px;}
.yea{bottom:716.199000px;}
.y129{bottom:716.970642px;}
.y63{bottom:723.007500px;}
.y80{bottom:725.214000px;}
.yc2{bottom:725.217000px;}
.y128{bottom:728.961300px;}
.ye9{bottom:734.227500px;}
.y62{bottom:740.950500px;}
.y127{bottom:740.951957px;}
.y7f{bottom:743.242500px;}
.yc1{bottom:743.245500px;}
.ye8{bottom:752.256000px;}
.y126{bottom:753.026612px;}
.y61{bottom:758.979000px;}
.y7{bottom:760.847523px;}
.y7e{bottom:761.271000px;}
.yc0{bottom:761.272500px;}
.y125{bottom:765.017270px;}
.y8{bottom:768.160500px;}
.ye7{bottom:770.199000px;}
.y60{bottom:777.007500px;}
.y124{bottom:777.007927px;}
.y7d{bottom:779.214000px;}
.ybf{bottom:779.215500px;}
.ybd{bottom:779.217000px;}
.y5{bottom:780.321000px;}
.ybe{bottom:785.934000px;}
.y6{bottom:787.635000px;}
.ye6{bottom:788.227500px;}
.y123{bottom:788.998584px;}
.y5f{bottom:794.950500px;}
.y7c{bottom:797.241000px;}
.ybc{bottom:797.245500px;}
.y122{bottom:800.988192px;}
.y5e{bottom:812.977500px;}
.y121{bottom:812.978849px;}
.y4{bottom:814.507200px;}
.y7b{bottom:815.269500px;}
.yba{bottom:815.272500px;}
.ybb{bottom:821.905500px;}
.y120{bottom:824.969507px;}
.y5d{bottom:831.006000px;}
.y7a{bottom:833.212500px;}
.y11f{bottom:836.960164px;}
.y3{bottom:844.441350px;}
.y5c{bottom:848.949000px;}
.y11e{bottom:848.950822px;}
.y11d{bottom:860.940429px;}
.y3e{bottom:861.279750px;}
.y3d{bottom:866.211000px;}
.y5b{bottom:866.977500px;}
.yac{bottom:869.272500px;}
.y10c{bottom:869.442000px;}
.y11c{bottom:873.016134px;}
.y2{bottom:874.459500px;}
.y96{bottom:875.140500px;}
.y5a{bottom:885.006000px;}
.y11b{bottom:885.006791px;}
.yaa{bottom:888.661500px;}
.y10a{bottom:888.916500px;}
.y11a{bottom:896.997449px;}
.y59{bottom:902.949000px;}
.y119{bottom:908.987056px;}
.y1{bottom:912.727500px;}
.y58{bottom:920.977500px;}
.y118{bottom:920.977714px;}
.y117{bottom:932.968371px;}
.y57{bottom:939.006000px;}
.y116{bottom:944.959028px;}
.y56{bottom:956.949000px;}
.y115{bottom:956.949686px;}
.y114{bottom:968.939293px;}
.y55{bottom:974.977500px;}
.y113{bottom:981.014998px;}
.y112{bottom:993.005656px;}
.y54{bottom:993.006000px;}
.y111{bottom:1004.996313px;}
.y53{bottom:1010.949000px;}
.y110{bottom:1016.985920px;}
.y10f{bottom:1028.976578px;}
.y52{bottom:1028.977500px;}
.y10e{bottom:1040.967235px;}
.y10d{bottom:1052.957893px;}
.y51{bottom:1064.947500px;}
.y97{bottom:1119.033000px;}
.yb8{bottom:1123.369500px;}
.hb{height:20.493511px;}
.h18{height:29.861147px;}
.he{height:29.899536px;}
.h8{height:30.743122px;}
.h5{height:31.720828px;}
.h7{height:33.716122px;}
.h13{height:34.171448px;}
.h12{height:34.607567px;}
.h17{height:35.404988px;}
.ha{height:36.571289px;}
.hd{height:36.770567px;}
.hf{height:42.660000px;}
.h11{height:44.220000px;}
.h4{height:47.586433px;}
.h6{height:50.580000px;}
.h2{height:50.905826px;}
.hc{height:51.191573px;}
.h3{height:84.000420px;}
.h9{height:89.396078px;}
.h10{height:163.870500px;}
.h15{height:186.406500px;}
.h16{height:186.576000px;}
.h14{height:186.831000px;}
.h0{height:1174.479000px;}
.h1{height:1174.500000px;}
.w3{width:557.859000px;}
.w2{width:738.057000px;}
.w1{width:877.500000px;}
.w0{width:877.521000px;}
.x0{left:0.000000px;}
.xd{left:65.990550px;}
.x25{left:69.902250px;}
.x3a{left:72.028200px;}
.x27{left:80.446050px;}
.x13{left:86.995200px;}
.x2{left:96.009300px;}
.x18{left:98.050350px;}
.x35{left:106.214100px;}
.x19{left:139.209300px;}
.xe{left:144.141600px;}
.x36{left:145.587300px;}
.xf{left:156.132000px;}
.x31{left:160.554000px;}
.x3{left:167.949660px;}
.x2a{left:227.365050px;}
.x10{left:252.312000px;}
.x32{left:260.550300px;}
.x5{left:273.571500px;}
.x11{left:275.697000px;}
.x6{left:285.052500px;}
.x26{left:286.497000px;}
.x12{left:294.406500px;}
.x33{left:308.778000px;}
.xb{left:309.970192px;}
.x4{left:322.891434px;}
.x37{left:332.079000px;}
.x15{left:344.325000px;}
.x1{left:347.641500px;}
.x17{left:358.525500px;}
.x38{left:361.501500px;}
.x34{left:366.775500px;}
.x28{left:386.079000px;}
.x16{left:388.459500px;}
.x14{left:403.512000px;}
.x1a{left:453.001800px;}
.x39{left:458.958000px;}
.x29{left:467.457600px;}
.x22{left:474.009000px;}
.x1b{left:484.554000px;}
.x2b{left:504.538500px;}
.x7{left:515.679000px;}
.x8{left:528.180000px;}
.x2c{left:537.024000px;}
.x1c{left:546.123000px;}
.xc{left:562.024500px;}
.x1d{left:571.039500px;}
.x21{left:600.037500px;}
.x1f{left:618.066000px;}
.x1e{left:650.721000px;}
.x20{left:661.096500px;}
.x2f{left:677.253000px;}
.x2d{left:709.483500px;}
.x30{left:732.613500px;}
.x9{left:745.285500px;}
.x2e{left:753.703500px;}
.xa{left:756.340500px;}
.x24{left:779.216400px;}
.x23{left:782.191500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:30.538667pt;}
.ls1{letter-spacing:-1.600000pt;}
.ls3{letter-spacing:-1.422059pt;}
.ls2{letter-spacing:-1.279984pt;}
.ls4{letter-spacing:-0.746645pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-29.333200pt;}
.ws2{word-spacing:-13.333333pt;}
.wsd{word-spacing:-9.333067pt;}
.ws1{word-spacing:0.000000pt;}
.ws3{word-spacing:9.258667pt;}
.wsa{word-spacing:17.695494pt;}
.wsb{word-spacing:17.773892pt;}
.wsc{word-spacing:17.777625pt;}
.ws8{word-spacing:17.997886pt;}
.ws4{word-spacing:839.413333pt;}
.ws6{word-spacing:960.053333pt;}
.ws7{word-spacing:961.546667pt;}
.ws9{word-spacing:961.653333pt;}
.ws5{word-spacing:962.400000pt;}
._0{margin-left:-3.865568pt;}
._16{margin-left:-2.837252pt;}
._12{margin-left:-1.120000pt;}
._8{width:1.610667pt;}
._e{width:2.629420pt;}
._a{width:3.749246pt;}
._3{width:4.781377pt;}
._4{width:6.074667pt;}
._2{width:7.133932pt;}
._c{width:8.378667pt;}
._7{width:9.472000pt;}
._9{width:10.463995pt;}
._13{width:11.994667pt;}
._1a{width:12.908002pt;}
._d{width:14.485333pt;}
._6{width:15.733333pt;}
._14{width:16.912000pt;}
._15{width:17.842262pt;}
._1{width:18.741427pt;}
._b{width:19.882386pt;}
._1d{width:20.816000pt;}
._18{width:23.130667pt;}
._10{width:25.253333pt;}
._11{width:26.170667pt;}
._21{width:27.110692pt;}
._20{width:30.650667pt;}
._5{width:32.933333pt;}
._f{width:53.792000pt;}
._19{width:842.933333pt;}
._1f{width:1639.523972pt;}
._1c{width:1644.283930pt;}
._17{width:1859.801873pt;}
._1b{width:2230.730516pt;}
._1e{width:2335.633754pt;}
.fs9{font-size:24.885867pt;}
.fs5{font-size:35.551467pt;}
.fs6{font-size:37.332267pt;}
.fs3{font-size:39.107200pt;}
.fsb{font-size:42.666133pt;}
.fsa{font-size:45.332800pt;}
.fs8{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.667200pt;}
.fs0{font-size:63.999467pt;}
.fs1{font-size:106.667200pt;}
.fs7{font-size:117.332800pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:4.940133pt;}
.yae{bottom:4.960933pt;}
.y10b{bottom:4.974000pt;}
.yab{bottom:4.980533pt;}
.y93{bottom:5.180933pt;}
.y50{bottom:39.382667pt;}
.yb9{bottom:39.387190pt;}
.y47{bottom:82.621143pt;}
.y109{bottom:84.663772pt;}
.ye5{bottom:84.664000pt;}
.yb7{bottom:87.534233pt;}
.y95{bottom:90.330850pt;}
.y46{bottom:94.639333pt;}
.y108{bottom:95.322134pt;}
.y45{bottom:98.796800pt;}
.ye4{bottom:100.689333pt;}
.yb6{bottom:102.198583pt;}
.y94{bottom:104.995200pt;}
.y107{bottom:105.979563pt;}
.y44{bottom:106.658267pt;}
.y43{bottom:110.815733pt;}
.y106{bottom:116.637925pt;}
.ye3{bottom:116.638667pt;}
.yb5{bottom:116.862933pt;}
.y42{bottom:118.677067pt;}
.y92{bottom:122.305467pt;}
.y41{bottom:122.758933pt;}
.y105{bottom:127.296287pt;}
.y40{bottom:130.620400pt;}
.ye2{bottom:132.664000pt;}
.yb3{bottom:134.173333pt;}
.y3f{bottom:134.777333pt;}
.y104{bottom:137.954650pt;}
.y3c{bottom:142.640020pt;}
.ye1{bottom:148.688000pt;}
.y103{bottom:148.688610pt;}
.y3b{bottom:154.659143pt;}
.y102{bottom:159.346038pt;}
.ye0{bottom:164.638667pt;}
.y3a{bottom:166.677333pt;}
.y101{bottom:170.004401pt;}
.ydf{bottom:180.662667pt;}
.y100{bottom:180.662763pt;}
.yff{bottom:191.321125pt;}
.yde{bottom:196.688000pt;}
.yfe{bottom:201.978554pt;}
.yfd{bottom:212.636916pt;}
.ydd{bottom:212.637333pt;}
.yfc{bottom:223.295278pt;}
.ydc{bottom:228.662667pt;}
.y2c{bottom:231.005333pt;}
.y2a{bottom:231.006667pt;}
.yfb{bottom:233.953640pt;}
.y2b{bottom:236.900000pt;}
.yfa{bottom:244.686667pt;}
.ydb{bottom:244.688000pt;}
.y29{bottom:246.956000pt;}
.y160{bottom:252.630895pt;}
.y14d{bottom:253.311276pt;}
.yda{bottom:260.637333pt;}
.y28{bottom:262.981333pt;}
.y15f{bottom:263.289258pt;}
.y14c{bottom:263.969638pt;}
.yf9{bottom:268.650667pt;}
.y15e{bottom:274.023218pt;}
.y14b{bottom:274.628000pt;}
.yd9{bottom:276.662667pt;}
.y27{bottom:279.005333pt;}
.y39{bottom:279.006667pt;}
.y15d{bottom:284.680646pt;}
.y14a{bottom:285.361027pt;}
.yd8{bottom:292.688000pt;}
.y26{bottom:294.954667pt;}
.y38{bottom:294.956000pt;}
.y15c{bottom:295.339009pt;}
.y149{bottom:296.019389pt;}
.y79{bottom:306.672000pt;}
.y148{bottom:306.677751pt;}
.yd7{bottom:308.637333pt;}
.y24{bottom:310.981333pt;}
.yf8{bottom:316.649333pt;}
.y25{bottom:316.876000pt;}
.y147{bottom:317.336113pt;}
.y15b{bottom:321.341866pt;}
.y78{bottom:322.622667pt;}
.yd6{bottom:324.662667pt;}
.y37{bottom:327.005333pt;}
.y23{bottom:327.006667pt;}
.y146{bottom:327.993542pt;}
.ya9{bottom:330.634667pt;}
.yb2{bottom:331.238317pt;}
.y15a{bottom:332.000228pt;}
.yf7{bottom:332.674667pt;}
.y77{bottom:338.646667pt;}
.y145{bottom:338.651904pt;}
.yd5{bottom:340.688000pt;}
.y159{bottom:342.658590pt;}
.y36{bottom:342.954667pt;}
.y22{bottom:342.956000pt;}
.yb1{bottom:345.902667pt;}
.ya7{bottom:346.658667pt;}
.y91{bottom:346.660000pt;}
.yf6{bottom:348.624000pt;}
.y144{bottom:349.310266pt;}
.ya8{bottom:352.554667pt;}
.y158{bottom:353.316952pt;}
.y76{bottom:354.672000pt;}
.yd4{bottom:356.637333pt;}
.y20{bottom:358.980000pt;}
.y143{bottom:359.968629pt;}
.ya6{bottom:362.682667pt;}
.ya4{bottom:362.685333pt;}
.y157{bottom:363.974381pt;}
.y21{bottom:364.876000pt;}
.ya5{bottom:368.580000pt;}
.y75{bottom:370.621333pt;}
.y142{bottom:370.626991pt;}
.yd3{bottom:372.661333pt;}
.yd1{bottom:372.664000pt;}
.y1f{bottom:375.005333pt;}
.yd2{bottom:378.557333pt;}
.ya3{bottom:378.634667pt;}
.y141{bottom:381.360017pt;}
.y156{bottom:384.005942pt;}
.y74{bottom:386.646667pt;}
.y90{bottom:388.688000pt;}
.yd0{bottom:388.689333pt;}
.y1e{bottom:390.954667pt;}
.y140{bottom:392.018380pt;}
.ya2{bottom:394.660000pt;}
.y155{bottom:394.664304pt;}
.y73{bottom:402.672000pt;}
.y13f{bottom:402.676742pt;}
.y8f{bottom:404.637333pt;}
.ycf{bottom:404.638667pt;}
.y154{bottom:405.322666pt;}
.y1d{bottom:406.980000pt;}
.ya1{bottom:410.684000pt;}
.y13e{bottom:413.335104pt;}
.y153{bottom:415.980095pt;}
.y72{bottom:418.621333pt;}
.yf5{bottom:420.660000pt;}
.y8e{bottom:420.662667pt;}
.yce{bottom:420.664000pt;}
.y1c{bottom:423.004000pt;}
.y34{bottom:423.005333pt;}
.y13d{bottom:423.992533pt;}
.ya0{bottom:426.633333pt;}
.y9e{bottom:426.634667pt;}
.y152{bottom:426.638457pt;}
.y35{bottom:428.900000pt;}
.y9f{bottom:432.605333pt;}
.y71{bottom:434.646667pt;}
.y13c{bottom:434.650895pt;}
.yf4{bottom:436.685333pt;}
.y8d{bottom:436.688000pt;}
.ycd{bottom:436.689333pt;}
.y151{bottom:437.296819pt;}
.y33{bottom:438.954667pt;}
.y1a{bottom:438.956000pt;}
.y9d{bottom:442.660000pt;}
.y1b{bottom:444.925333pt;}
.y13b{bottom:445.309257pt;}
.y150{bottom:447.955181pt;}
.y70{bottom:450.672000pt;}
.yf3{bottom:452.634667pt;}
.y8c{bottom:452.637333pt;}
.ycc{bottom:452.638667pt;}
.y19{bottom:454.980000pt;}
.y13a{bottom:455.967619pt;}
.y9c{bottom:458.685333pt;}
.y14f{bottom:458.688208pt;}
.y6f{bottom:466.621333pt;}
.y139{bottom:466.625981pt;}
.yf2{bottom:468.660000pt;}
.y8b{bottom:468.662667pt;}
.y14e{bottom:470.631733pt;}
.y32{bottom:471.004000pt;}
.y31{bottom:471.005333pt;}
.y17{bottom:471.006667pt;}
.y9b{bottom:474.634667pt;}
.y18{bottom:476.900000pt;}
.y138{bottom:477.359008pt;}
.y6e{bottom:482.646667pt;}
.y8a{bottom:484.686667pt;}
.ycb{bottom:484.688000pt;}
.y2e{bottom:486.952000pt;}
.y30{bottom:486.954667pt;}
.y16{bottom:486.956000pt;}
.y137{bottom:488.017370pt;}
.y9a{bottom:490.660000pt;}
.yf1{bottom:492.622667pt;}
.y2f{bottom:492.925333pt;}
.y6d{bottom:498.672000pt;}
.y136{bottom:498.675732pt;}
.y89{bottom:500.637333pt;}
.y2d{bottom:502.977333pt;}
.y15{bottom:502.980000pt;}
.y13{bottom:502.981333pt;}
.y99{bottom:506.684000pt;}
.y14{bottom:508.876000pt;}
.y135{bottom:509.334094pt;}
.y6c{bottom:514.621333pt;}
.y88{bottom:516.661333pt;}
.yca{bottom:516.662667pt;}
.y12{bottom:519.005333pt;}
.y134{bottom:519.991523pt;}
.y98{bottom:522.633333pt;}
.y4f{bottom:524.221188pt;}
.y6b{bottom:530.645333pt;}
.y133{bottom:530.649885pt;}
.y87{bottom:532.685333pt;}
.yc9{bottom:532.688000pt;}
.y11{bottom:534.954667pt;}
.yf{bottom:534.956000pt;}
.y4e{bottom:538.205223pt;}
.yf0{bottom:540.621333pt;}
.y10{bottom:540.925333pt;}
.y132{bottom:541.308247pt;}
.y69{bottom:546.673333pt;}
.y86{bottom:548.634667pt;}
.yc8{bottom:548.637333pt;}
.yb0{bottom:550.374317pt;}
.ye{bottom:550.981333pt;}
.y131{bottom:551.966609pt;}
.y4d{bottom:552.189259pt;}
.y6a{bottom:552.566667pt;}
.yef{bottom:556.646667pt;}
.y68{bottom:562.622667pt;}
.y130{bottom:562.624972pt;}
.y85{bottom:564.660000pt;}
.yc7{bottom:564.662667pt;}
.yaf{bottom:565.038667pt;}
.y4c{bottom:566.249227pt;}
.yd{bottom:567.006667pt;}
.yee{bottom:572.672000pt;}
.y12f{bottom:573.357998pt;}
.y67{bottom:578.648000pt;}
.y4b{bottom:580.233262pt;}
.y84{bottom:580.685333pt;}
.yc6{bottom:580.688000pt;}
.yad{bottom:582.274667pt;}
.yc{bottom:582.956000pt;}
.y12e{bottom:584.016360pt;}
.yed{bottom:588.621333pt;}
.y4a{bottom:594.217298pt;}
.y66{bottom:594.673333pt;}
.y12d{bottom:594.674723pt;}
.y83{bottom:596.634667pt;}
.yc5{bottom:596.637333pt;}
.yb{bottom:598.981333pt;}
.yec{bottom:604.646667pt;}
.y12c{bottom:605.333085pt;}
.y49{bottom:608.201333pt;}
.y65{bottom:610.622667pt;}
.y82{bottom:612.660000pt;}
.yc4{bottom:612.662667pt;}
.ya{bottom:615.005333pt;}
.y12b{bottom:615.990513pt;}
.yeb{bottom:620.672000pt;}
.y64{bottom:626.648000pt;}
.y12a{bottom:626.648876pt;}
.y81{bottom:628.685333pt;}
.yc3{bottom:628.688000pt;}
.y48{bottom:629.140000pt;}
.y9{bottom:630.954667pt;}
.yea{bottom:636.621333pt;}
.y129{bottom:637.307238pt;}
.y63{bottom:642.673333pt;}
.y80{bottom:644.634667pt;}
.yc2{bottom:644.637333pt;}
.y128{bottom:647.965600pt;}
.ye9{bottom:652.646667pt;}
.y62{bottom:658.622667pt;}
.y127{bottom:658.623962pt;}
.y7f{bottom:660.660000pt;}
.yc1{bottom:660.662667pt;}
.ye8{bottom:668.672000pt;}
.y126{bottom:669.356989pt;}
.y61{bottom:674.648000pt;}
.y7{bottom:676.308909pt;}
.y7e{bottom:676.685333pt;}
.yc0{bottom:676.686667pt;}
.y125{bottom:680.015351pt;}
.y8{bottom:682.809333pt;}
.ye7{bottom:684.621333pt;}
.y60{bottom:690.673333pt;}
.y124{bottom:690.673713pt;}
.y7d{bottom:692.634667pt;}
.ybf{bottom:692.636000pt;}
.ybd{bottom:692.637333pt;}
.y5{bottom:693.618667pt;}
.ybe{bottom:698.608000pt;}
.y6{bottom:700.120000pt;}
.ye6{bottom:700.646667pt;}
.y123{bottom:701.332075pt;}
.y5f{bottom:706.622667pt;}
.y7c{bottom:708.658667pt;}
.ybc{bottom:708.662667pt;}
.y122{bottom:711.989504pt;}
.y5e{bottom:722.646667pt;}
.y121{bottom:722.647866pt;}
.y4{bottom:724.006400pt;}
.y7b{bottom:724.684000pt;}
.yba{bottom:724.686667pt;}
.ybb{bottom:730.582667pt;}
.y120{bottom:733.306228pt;}
.y5d{bottom:738.672000pt;}
.y7a{bottom:740.633333pt;}
.y11f{bottom:743.964590pt;}
.y3{bottom:750.614533pt;}
.y5c{bottom:754.621333pt;}
.y11e{bottom:754.622952pt;}
.y11d{bottom:765.280381pt;}
.y3e{bottom:765.582000pt;}
.y3d{bottom:769.965333pt;}
.y5b{bottom:770.646667pt;}
.yac{bottom:772.686667pt;}
.y10c{bottom:772.837333pt;}
.y11c{bottom:776.014341pt;}
.y2{bottom:777.297333pt;}
.y96{bottom:777.902667pt;}
.y5a{bottom:786.672000pt;}
.y11b{bottom:786.672703pt;}
.yaa{bottom:789.921333pt;}
.y10a{bottom:790.148000pt;}
.y11a{bottom:797.331066pt;}
.y59{bottom:802.621333pt;}
.y119{bottom:807.988494pt;}
.y1{bottom:811.313333pt;}
.y58{bottom:818.646667pt;}
.y118{bottom:818.646856pt;}
.y117{bottom:829.305219pt;}
.y57{bottom:834.672000pt;}
.y116{bottom:839.963581pt;}
.y56{bottom:850.621333pt;}
.y115{bottom:850.621943pt;}
.y114{bottom:861.279372pt;}
.y55{bottom:866.646667pt;}
.y113{bottom:872.013332pt;}
.y112{bottom:882.671694pt;}
.y54{bottom:882.672000pt;}
.y111{bottom:893.330056pt;}
.y53{bottom:898.621333pt;}
.y110{bottom:903.987485pt;}
.y10f{bottom:914.645847pt;}
.y52{bottom:914.646667pt;}
.y10e{bottom:925.304209pt;}
.y10d{bottom:935.962571pt;}
.y51{bottom:946.620000pt;}
.y97{bottom:994.696000pt;}
.yb8{bottom:998.550667pt;}
.hb{height:18.216454pt;}
.h18{height:26.543242pt;}
.he{height:26.577366pt;}
.h8{height:27.327219pt;}
.h5{height:28.196291pt;}
.h7{height:29.969886pt;}
.h13{height:30.374620pt;}
.h12{height:30.762282pt;}
.h17{height:31.471101pt;}
.ha{height:32.507812pt;}
.hd{height:32.684949pt;}
.hf{height:37.920000pt;}
.h11{height:39.306667pt;}
.h4{height:42.299051pt;}
.h6{height:44.960000pt;}
.h2{height:45.249623pt;}
.hc{height:45.503621pt;}
.h3{height:74.667040pt;}
.h9{height:79.463180pt;}
.h10{height:145.662667pt;}
.h15{height:165.694667pt;}
.h16{height:165.845333pt;}
.h14{height:166.072000pt;}
.h0{height:1043.981333pt;}
.h1{height:1044.000000pt;}
.w3{width:495.874667pt;}
.w2{width:656.050667pt;}
.w1{width:780.000000pt;}
.w0{width:780.018667pt;}
.x0{left:0.000000pt;}
.xd{left:58.658267pt;}
.x25{left:62.135333pt;}
.x3a{left:64.025067pt;}
.x27{left:71.507600pt;}
.x13{left:77.329067pt;}
.x2{left:85.341600pt;}
.x18{left:87.155867pt;}
.x35{left:94.412533pt;}
.x19{left:123.741600pt;}
.xe{left:128.125867pt;}
.x36{left:129.410933pt;}
.xf{left:138.784000pt;}
.x31{left:142.714667pt;}
.x3{left:149.288586pt;}
.x2a{left:202.102267pt;}
.x10{left:224.277333pt;}
.x32{left:231.600267pt;}
.x5{left:243.174667pt;}
.x11{left:245.064000pt;}
.x6{left:253.380000pt;}
.x26{left:254.664000pt;}
.x12{left:261.694667pt;}
.x33{left:274.469333pt;}
.xb{left:275.529060pt;}
.x4{left:287.014608pt;}
.x37{left:295.181333pt;}
.x15{left:306.066667pt;}
.x1{left:309.014667pt;}
.x17{left:318.689333pt;}
.x38{left:321.334667pt;}
.x34{left:326.022667pt;}
.x28{left:343.181333pt;}
.x16{left:345.297333pt;}
.x14{left:358.677333pt;}
.x1a{left:402.668267pt;}
.x39{left:407.962667pt;}
.x29{left:415.517867pt;}
.x22{left:421.341333pt;}
.x1b{left:430.714667pt;}
.x2b{left:448.478667pt;}
.x7{left:458.381333pt;}
.x8{left:469.493333pt;}
.x2c{left:477.354667pt;}
.x1c{left:485.442667pt;}
.xc{left:499.577333pt;}
.x1d{left:507.590667pt;}
.x21{left:533.366667pt;}
.x1f{left:549.392000pt;}
.x1e{left:578.418667pt;}
.x20{left:587.641333pt;}
.x2f{left:602.002667pt;}
.x2d{left:630.652000pt;}
.x30{left:651.212000pt;}
.x9{left:662.476000pt;}
.x2e{left:669.958667pt;}
.xa{left:672.302667pt;}
.x24{left:692.636800pt;}
.x23{left:695.281333pt;}
}




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