
    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_a60b99f7948df630cb84b456.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.843264;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_2d64f997f6fc63cb3ff906e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.843262;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_3ddb36cdee5d7fb9ac22e81b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.843343;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_26ec33e98a52e67564989c34.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000259;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_48ed1930c45a5901b0c4cd23.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.679199;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_4492a29cd78875a00621080b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.833049;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_df4fa91183fcf543182314d1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.680684;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);}
.m1{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);}
.v1{vertical-align:-20.752669px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.293891px;}
.ls5{letter-spacing:-9.390000px;}
.ls4{letter-spacing:-9.348000px;}
.lsd{letter-spacing:-6.924000px;}
.lsb{letter-spacing:-6.882000px;}
.lsa{letter-spacing:-6.804000px;}
.ls8{letter-spacing:-6.774000px;}
.ls9{letter-spacing:-6.768000px;}
.ls3{letter-spacing:-6.504000px;}
.lse{letter-spacing:-5.658000px;}
.ls7{letter-spacing:-5.340000px;}
.ls6{letter-spacing:-5.298000px;}
.lsc{letter-spacing:-4.410000px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.138504px;}
.ls11{letter-spacing:0.144504px;}
.ls0{letter-spacing:1.501469px;}
.ls1{letter-spacing:1.577880px;}
.lsf{letter-spacing:621.819132px;}
.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:-130.632853px;}
.ws19{word-spacing:-30.930377px;}
.ws1a{word-spacing:-29.110943px;}
.ws16{word-spacing:-29.109077px;}
.ws5{word-spacing:-19.950276px;}
.ws1c{word-spacing:-19.950232px;}
.ws2{word-spacing:-14.963016px;}
.ws1d{word-spacing:-14.250166px;}
.ws1e{word-spacing:-14.249844px;}
.ws18{word-spacing:-14.181900px;}
.ws13{word-spacing:-14.180990px;}
.ws1b{word-spacing:-14.112720px;}
.ws14{word-spacing:-14.111815px;}
.ws1{word-spacing:-14.111496px;}
.ws4{word-spacing:-9.701496px;}
.ws3{word-spacing:-7.607496px;}
.ws6{word-spacing:-4.986000px;}
.ws20{word-spacing:-1.176000px;}
.ws1f{word-spacing:-0.414000px;}
.ws7{word-spacing:0.000000px;}
.ws8{word-spacing:2.904000px;}
.wsb{word-spacing:12.174000px;}
.wsc{word-spacing:12.270000px;}
.ws12{word-spacing:13.020000px;}
.wse{word-spacing:15.642000px;}
.wsd{word-spacing:15.648000px;}
.wsf{word-spacing:15.738000px;}
.ws10{word-spacing:15.924000px;}
.ws11{word-spacing:16.020000px;}
.ws9{word-spacing:21.738000px;}
.wsa{word-spacing:21.834000px;}
.ws17{word-spacing:127.559737px;}
.ws15{word-spacing:608.329898px;}
._e{margin-left:-7.678487px;}
._c{margin-left:-6.101136px;}
._5{margin-left:-4.122350px;}
._2{margin-left:-2.855128px;}
._0{margin-left:-1.171044px;}
._1{width:1.210650px;}
._3{width:2.661017px;}
._4{width:3.982113px;}
._9{width:5.058234px;}
._7{width:6.405225px;}
._8{width:7.852661px;}
._b{width:9.336502px;}
._a{width:10.364982px;}
._13{width:11.791461px;}
._11{width:12.855458px;}
._14{width:15.128953px;}
._15{width:16.190633px;}
._d{width:67.395785px;}
._10{width:106.100592px;}
._12{width:108.640476px;}
._f{width:109.691423px;}
._6{width:111.240366px;}
._16{width:135.998331px;}
.fc0{color:rgb(0,0,0);}
.fc1{color:rgb(182,0,182);}
.fc3{color:rgb(51,51,51);}
.fca{color:rgb(92,92,113);}
.fcb{color:rgb(92,92,113);}
.fc5{color:rgb(16,20,126);}
.fc8{color:rgb(16,20,126);}
.fc2{color:rgb(225,146,0);}
.fc6{color:transparent;}
.fce{color:rgb(68,68,68);}
.fcd{color:rgb(68,68,68);}
.fc4{color:rgb(34,56,104);}
.fc7{color:rgb(51,122,183);}
.fcc{color:rgb(51,122,183);}
.fc9{color:rgb(255,173,45);}
.fs9{font-size:51.881672px;}
.fsa{font-size:55.340450px;}
.fsb{font-size:55.343998px;}
.fs8{font-size:58.799228px;}
.fsd{font-size:58.802998px;}
.fs1{font-size:69.174000px;}
.fs6{font-size:69.175563px;}
.fsc{font-size:69.179998px;}
.fs3{font-size:69.180000px;}
.fs4{font-size:72.636000px;}
.fs7{font-size:96.845788px;}
.fs5{font-size:96.846000px;}
.fs2{font-size:186.786000px;}
.fs0{font-size:632.996981px;}
.y0{bottom:0.000000px;}
.y143{bottom:5.188170px;}
.y116{bottom:5.978362px;}
.y4b{bottom:6.917557px;}
.y84{bottom:12.105725px;}
.yb7{bottom:16.429198px;}
.ye0{bottom:19.023282px;}
.y4a{bottom:27.670226px;}
.y83{bottom:32.858394px;}
.y142{bottom:32.858395px;}
.ydf{bottom:36.317173px;}
.yb6{bottom:37.181867px;}
.y115{bottom:39.703611px;}
.y1{bottom:42.806008px;}
.y17{bottom:42.806044px;}
.y49{bottom:48.422895px;}
.y82{bottom:53.611062px;}
.y114{bottom:56.998611px;}
.y141{bottom:60.528621px;}
.y16{bottom:62.695500px;}
.yb5{bottom:66.581481px;}
.y48{bottom:69.175564px;}
.y113{bottom:74.293610px;}
.y140{bottom:81.281289px;}
.y81{bottom:83.010677px;}
.yb4{bottom:87.334150px;}
.y47{bottom:89.928232px;}
.y112{bottom:91.588610px;}
.y15{bottom:102.471000px;}
.y80{bottom:103.763345px;}
.yb3{bottom:108.086818px;}
.y111{bottom:108.883609px;}
.y13f{bottom:108.951514px;}
.y46{bottom:110.680901px;}
.yde{bottom:116.733764px;}
.y7f{bottom:124.516014px;}
.y14{bottom:127.546500px;}
.yb2{bottom:128.839487px;}
.y45{bottom:131.433570px;}
.y13e{bottom:136.621739px;}
.ydd{bottom:137.486433px;}
.y110{bottom:139.149858px;}
.y7e{bottom:145.268683px;}
.yb1{bottom:149.592156px;}
.ydc{bottom:158.239102px;}
.y10f{bottom:159.903858px;}
.y44{bottom:160.833184px;}
.y13d{bottom:164.291964px;}
.y7d{bottom:166.021352px;}
.y13{bottom:166.458000px;}
.yb0{bottom:170.344825px;}
.ydb{bottom:178.991771px;}
.y10e{bottom:180.657857px;}
.y43{bottom:181.585853px;}
.y12{bottom:187.210500px;}
.y13c{bottom:191.962189px;}
.y7c{bottom:195.420966px;}
.yaf{bottom:199.744439px;}
.y85{bottom:200.609133px;}
.y10d{bottom:201.411856px;}
.y42{bottom:202.338522px;}
.yb9{bottom:204.067912px;}
.yba{bottom:204.932606px;}
.y11{bottom:207.963000px;}
.y7b{bottom:216.173635px;}
.y13b{bottom:219.632415px;}
.yae{bottom:220.497108px;}
.y10c{bottom:222.165856px;}
.y41{bottom:223.091190px;}
.y10{bottom:228.715500px;}
.y7a{bottom:236.926303px;}
.yad{bottom:241.249776px;}
.y40{bottom:243.843859px;}
.y13a{bottom:247.302640px;}
.yf{bottom:249.468000px;}
.yda{bottom:249.896722px;}
.y10b{bottom:251.567355px;}
.y79{bottom:257.678972px;}
.yac{bottom:262.002445px;}
.y3f{bottom:264.596528px;}
.ye{bottom:270.220500px;}
.yd9{bottom:270.649391px;}
.y10a{bottom:272.321354px;}
.y139{bottom:274.972865px;}
.y78{bottom:278.431641px;}
.yab{bottom:282.755114px;}
.yd{bottom:290.973000px;}
.yd8{bottom:291.402060px;}
.y109{bottom:293.075354px;}
.y3e{bottom:293.996142px;}
.y77{bottom:299.184310px;}
.y138{bottom:302.643090px;}
.yaa{bottom:303.507783px;}
.yd7{bottom:312.154729px;}
.y108{bottom:313.829353px;}
.y3d{bottom:314.748811px;}
.yc{bottom:316.048500px;}
.y76{bottom:319.936978px;}
.ya9{bottom:324.260452px;}
.y136{bottom:331.178009px;}
.yd6{bottom:332.907397px;}
.y107{bottom:334.583352px;}
.y3c{bottom:335.501480px;}
.y75{bottom:349.336593px;}
.yb{bottom:350.637000px;}
.ya8{bottom:353.660066px;}
.y106{bottom:355.337352px;}
.y3b{bottom:356.254148px;}
.ye1{bottom:358.848233px;}
.y74{bottom:370.089261px;}
.ya{bottom:371.389500px;}
.ya7{bottom:374.412735px;}
.y135{bottom:375.277430px;}
.y105{bottom:376.091351px;}
.y3a{bottom:377.006817px;}
.y73{bottom:390.841930px;}
.ya6{bottom:395.165403px;}
.y104{bottom:396.845351px;}
.y39{bottom:397.759486px;}
.y134{bottom:401.218266px;}
.yd5{bottom:402.947655px;}
.y9{bottom:405.112500px;}
.y72{bottom:411.594599px;}
.ya5{bottom:415.918072px;}
.y103{bottom:417.599350px;}
.y38{bottom:418.512155px;}
.yd4{bottom:423.700323px;}
.y2{bottom:425.429781px;}
.y71{bottom:432.347268px;}
.ya4{bottom:436.670741px;}
.y102{bottom:438.353349px;}
.y8{bottom:438.835500px;}
.y37{bottom:439.264824px;}
.yd3{bottom:444.452992px;}
.y133{bottom:445.317688px;}
.y7{bottom:450.500042px;}
.y70{bottom:453.099937px;}
.ya3{bottom:457.423410px;}
.yd2{bottom:465.205661px;}
.y101{bottom:467.754848px;}
.y3{bottom:468.235500px;}
.y36{bottom:468.664438px;}
.y132{bottom:471.258524px;}
.y51{bottom:472.987910px;}
.y52{bottom:473.852605px;}
.y6{bottom:475.577793px;}
.ya2{bottom:478.176078px;}
.yd1{bottom:485.958330px;}
.y100{bottom:488.508848px;}
.y35{bottom:489.417106px;}
.y6f{bottom:494.605274px;}
.ya1{bottom:498.928747px;}
.yd0{bottom:506.710998px;}
.y5{bottom:507.573543px;}
.yff{bottom:509.262847px;}
.y34{bottom:510.169775px;}
.y6e{bottom:515.357943px;}
.y131{bottom:515.357945px;}
.ya0{bottom:519.681416px;}
.ycf{bottom:527.463667px;}
.yfe{bottom:530.016847px;}
.y33{bottom:530.922444px;}
.y4f{bottom:535.245917px;}
.y50{bottom:536.110611px;}
.y130{bottom:536.110614px;}
.y9f{bottom:540.434085px;}
.y4{bottom:542.163543px;}
.yce{bottom:548.216336px;}
.yfd{bottom:550.770846px;}
.y32{bottom:551.675113px;}
.y6d{bottom:556.863280px;}
.y12f{bottom:556.863282px;}
.yb8{bottom:566.374921px;}
.ycd{bottom:568.969005px;}
.yfc{bottom:571.524845px;}
.y31{bottom:572.427782px;}
.y12e{bottom:577.615951px;}
.y6c{bottom:586.262895px;}
.ycc{bottom:589.721674px;}
.y30{bottom:593.180450px;}
.y12d{bottom:598.368620px;}
.yfb{bottom:600.926344px;}
.y6b{bottom:607.015563px;}
.y9e{bottom:610.474342px;}
.y2f{bottom:613.933119px;}
.ycb{bottom:619.121288px;}
.yfa{bottom:621.680344px;}
.y6a{bottom:627.768232px;}
.y9d{bottom:631.227011px;}
.yca{bottom:639.873957px;}
.yf9{bottom:642.434343px;}
.y2e{bottom:643.332733px;}
.y69{bottom:648.520901px;}
.y9c{bottom:651.979680px;}
.yc9{bottom:660.626625px;}
.yf8{bottom:663.188343px;}
.y2d{bottom:664.085402px;}
.y68{bottom:669.273570px;}
.y12c{bottom:669.273572px;}
.y9b{bottom:672.732348px;}
.yc8{bottom:681.379294px;}
.yf7{bottom:683.942342px;}
.y2c{bottom:684.838071px;}
.y67{bottom:690.026238px;}
.y12b{bottom:690.026240px;}
.y9a{bottom:693.485017px;}
.yc7{bottom:702.131963px;}
.yf6{bottom:704.696341px;}
.y2b{bottom:705.590740px;}
.y4d{bottom:709.914212px;}
.y4e{bottom:710.778907px;}
.y12a{bottom:710.778909px;}
.y99{bottom:714.237686px;}
.yf5{bottom:725.450341px;}
.y2a{bottom:726.343408px;}
.y66{bottom:731.531576px;}
.y129{bottom:731.531578px;}
.y98{bottom:734.990355px;}
.y29{bottom:747.096077px;}
.y65{bottom:752.284245px;}
.y128{bottom:752.284247px;}
.yf4{bottom:754.851840px;}
.y97{bottom:755.743023px;}
.y28{bottom:767.848746px;}
.y64{bottom:773.036914px;}
.y127{bottom:773.036915px;}
.yf3{bottom:775.605839px;}
.y96{bottom:785.142638px;}
.y27{bottom:788.601415px;}
.y63{bottom:793.789582px;}
.yf2{bottom:796.359839px;}
.y137{bottom:798.977751px;}
.y95{bottom:805.895306px;}
.y4c{bottom:814.542251px;}
.yc6{bottom:814.542252px;}
.yf1{bottom:817.113838px;}
.y62{bottom:823.189197px;}
.y94{bottom:826.647975px;}
.yc5{bottom:835.294921px;}
.yf0{bottom:837.867837px;}
.y126{bottom:843.077173px;}
.y61{bottom:843.941865px;}
.y93{bottom:847.400644px;}
.yc4{bottom:856.047590px;}
.yef{bottom:858.621837px;}
.y26{bottom:858.641672px;}
.y125{bottom:863.829841px;}
.y60{bottom:864.694534px;}
.y92{bottom:868.153313px;}
.yc3{bottom:876.800258px;}
.yee{bottom:879.375836px;}
.y25{bottom:879.394341px;}
.y124{bottom:884.582510px;}
.y5f{bottom:885.447203px;}
.y91{bottom:888.905981px;}
.yed{bottom:900.129835px;}
.y24{bottom:900.147009px;}
.y123{bottom:905.335179px;}
.y5e{bottom:906.199872px;}
.y90{bottom:909.658650px;}
.y23{bottom:920.899678px;}
.y122{bottom:926.087848px;}
.y5d{bottom:926.952540px;}
.yec{bottom:929.531335px;}
.y8f{bottom:939.058264px;}
.y22{bottom:941.652347px;}
.y121{bottom:946.840517px;}
.yc2{bottom:947.705210px;}
.yeb{bottom:950.285334px;}
.y5c{bottom:956.352155px;}
.y8e{bottom:959.810933px;}
.y21{bottom:962.405016px;}
.y120{bottom:967.593185px;}
.yc1{bottom:968.457879px;}
.yea{bottom:971.039333px;}
.y5b{bottom:977.104823px;}
.y8d{bottom:980.563602px;}
.y20{bottom:983.157685px;}
.y11f{bottom:988.345854px;}
.yc0{bottom:989.210548px;}
.ye9{bottom:991.793333px;}
.y5a{bottom:997.857492px;}
.y8c{bottom:1001.316271px;}
.y1f{bottom:1003.910353px;}
.y14b{bottom:1004.344500px;}
.y11e{bottom:1009.098523px;}
.ybf{bottom:1009.963217px;}
.ye8{bottom:1012.547332px;}
.y8b{bottom:1022.068940px;}
.ybe{bottom:1030.715885px;}
.y59{bottom:1031.580579px;}
.y14a{bottom:1032.015000px;}
.ye7{bottom:1033.301331px;}
.y1e{bottom:1033.309968px;}
.y11d{bottom:1038.498137px;}
.y58{bottom:1048.874470px;}
.y8a{bottom:1051.468554px;}
.y1d{bottom:1054.062636px;}
.y11c{bottom:1059.250806px;}
.y149{bottom:1059.685500px;}
.ye6{bottom:1062.702831px;}
.y57{bottom:1066.168360px;}
.y89{bottom:1072.221222px;}
.y1c{bottom:1074.815305px;}
.y11b{bottom:1080.003475px;}
.ybd{bottom:1080.868168px;}
.ye5{bottom:1083.456830px;}
.y56{bottom:1083.462251px;}
.y148{bottom:1087.356000px;}
.y88{bottom:1092.973891px;}
.y1b{bottom:1095.567974px;}
.y11a{bottom:1100.756143px;}
.ybc{bottom:1101.620837px;}
.ye4{bottom:1104.210829px;}
.y55{bottom:1113.726560px;}
.y147{bottom:1115.026500px;}
.y1a{bottom:1116.320643px;}
.y119{bottom:1121.508812px;}
.ybb{bottom:1122.373506px;}
.ye3{bottom:1124.964829px;}
.y54{bottom:1134.479228px;}
.y19{bottom:1137.073311px;}
.y118{bottom:1142.261481px;}
.y146{bottom:1142.697000px;}
.y87{bottom:1143.126174px;}
.y53{bottom:1155.231897px;}
.y18{bottom:1157.825980px;}
.y117{bottom:1163.014150px;}
.y86{bottom:1163.878843px;}
.ye2{bottom:1167.337577px;}
.y145{bottom:1170.367500px;}
.y144{bottom:1198.038000px;}
.hc{height:34.579337px;}
.hd{height:36.884626px;}
.hf{height:36.886991px;}
.h11{height:39.192428px;}
.h3{height:46.104741px;}
.h9{height:46.105783px;}
.h10{height:46.108739px;}
.h5{height:46.108740px;}
.h6{height:48.412178px;}
.hb{height:50.387034px;}
.ha{height:64.548096px;}
.h7{height:64.548237px;}
.he{height:67.680925px;}
.h4{height:124.493599px;}
.h2{height:421.894961px;}
.h8{height:1177.713954px;}
.h1{height:1177.713990px;}
.h0{height:1263.000000px;}
.w1{width:806.760000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:30.264298px;}
.x6{left:31.993698px;}
.x1{left:42.480000px;}
.x11{left:51.881672px;}
.x10{left:53.611061px;}
.x20{left:57.934947px;}
.x19{left:63.987395px;}
.x1a{left:68.743215px;}
.x4{left:72.744000px;}
.x5{left:74.473500px;}
.x23{left:80.418446px;}
.x3{left:90.037500px;}
.x7{left:92.522315px;}
.x16{left:115.004373px;}
.x2b{left:147.862765px;}
.x22{left:151.327944px;}
.x1f{left:159.968489px;}
.x17{left:217.903022px;}
.x26{left:242.991442px;}
.xa{left:247.302636px;}
.xb{left:252.058456px;}
.x25{left:277.581441px;}
.x8{left:282.755112px;}
.x2a{left:284.484501px;}
.x9{left:287.510932px;}
.x21{left:314.765689px;}
.x28{left:336.366173px;}
.x14{left:352.795369px;}
.x18{left:357.983537px;}
.xf{left:366.630482px;}
.x1d{left:378.736205px;}
.x1e{left:389.112540px;}
.x1b{left:457.423408px;}
.xe{left:492.875884px;}
.xc{left:501.522829px;}
.xd{left:506.278649px;}
.x27{left:508.469684px;}
.x24{left:511.063934px;}
.x13{left:561.186752px;}
.x29{left:605.286173px;}
.x15{left:628.200578px;}
.x12{left:708.184822px;}
.x1c{left:740.178520px;}
@media print{
.v1{vertical-align:-18.446817pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.372347pt;}
.ls5{letter-spacing:-8.346667pt;}
.ls4{letter-spacing:-8.309333pt;}
.lsd{letter-spacing:-6.154667pt;}
.lsb{letter-spacing:-6.117333pt;}
.lsa{letter-spacing:-6.048000pt;}
.ls8{letter-spacing:-6.021333pt;}
.ls9{letter-spacing:-6.016000pt;}
.ls3{letter-spacing:-5.781333pt;}
.lse{letter-spacing:-5.029333pt;}
.ls7{letter-spacing:-4.746667pt;}
.ls6{letter-spacing:-4.709333pt;}
.lsc{letter-spacing:-3.920000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.123115pt;}
.ls11{letter-spacing:0.128448pt;}
.ls0{letter-spacing:1.334639pt;}
.ls1{letter-spacing:1.402560pt;}
.lsf{letter-spacing:552.728118pt;}
.ws0{word-spacing:-116.118092pt;}
.ws19{word-spacing:-27.493669pt;}
.ws1a{word-spacing:-25.876394pt;}
.ws16{word-spacing:-25.874735pt;}
.ws5{word-spacing:-17.733579pt;}
.ws1c{word-spacing:-17.733540pt;}
.ws2{word-spacing:-13.300459pt;}
.ws1d{word-spacing:-12.666814pt;}
.ws1e{word-spacing:-12.666528pt;}
.ws18{word-spacing:-12.606133pt;}
.ws13{word-spacing:-12.605325pt;}
.ws1b{word-spacing:-12.544640pt;}
.ws14{word-spacing:-12.543835pt;}
.ws1{word-spacing:-12.543552pt;}
.ws4{word-spacing:-8.623552pt;}
.ws3{word-spacing:-6.762219pt;}
.ws6{word-spacing:-4.432000pt;}
.ws20{word-spacing:-1.045333pt;}
.ws1f{word-spacing:-0.368000pt;}
.ws7{word-spacing:0.000000pt;}
.ws8{word-spacing:2.581333pt;}
.wsb{word-spacing:10.821333pt;}
.wsc{word-spacing:10.906667pt;}
.ws12{word-spacing:11.573333pt;}
.wse{word-spacing:13.904000pt;}
.wsd{word-spacing:13.909333pt;}
.wsf{word-spacing:13.989333pt;}
.ws10{word-spacing:14.154667pt;}
.ws11{word-spacing:14.240000pt;}
.ws9{word-spacing:19.322667pt;}
.wsa{word-spacing:19.408000pt;}
.ws17{word-spacing:113.386433pt;}
.ws15{word-spacing:540.737687pt;}
._e{margin-left:-6.825322pt;}
._c{margin-left:-5.423232pt;}
._5{margin-left:-3.664311pt;}
._2{margin-left:-2.537891pt;}
._0{margin-left:-1.040928pt;}
._1{width:1.076133pt;}
._3{width:2.365348pt;}
._4{width:3.539656pt;}
._9{width:4.496208pt;}
._7{width:5.693533pt;}
._8{width:6.980143pt;}
._b{width:8.299113pt;}
._a{width:9.213317pt;}
._13{width:10.481299pt;}
._11{width:11.427074pt;}
._14{width:13.447958pt;}
._15{width:14.391674pt;}
._d{width:59.907365pt;}
._10{width:94.311637pt;}
._12{width:96.569312pt;}
._f{width:97.503487pt;}
._6{width:98.880325pt;}
._16{width:120.887406pt;}
.fs9{font-size:46.117042pt;}
.fsa{font-size:49.191511pt;}
.fsb{font-size:49.194665pt;}
.fs8{font-size:52.265981pt;}
.fsd{font-size:52.269332pt;}
.fs1{font-size:61.488000pt;}
.fs6{font-size:61.489389pt;}
.fsc{font-size:61.493331pt;}
.fs3{font-size:61.493333pt;}
.fs4{font-size:64.565333pt;}
.fs7{font-size:86.085145pt;}
.fs5{font-size:86.085333pt;}
.fs2{font-size:166.032000pt;}
.fs0{font-size:562.663983pt;}
.y0{bottom:0.000000pt;}
.y143{bottom:4.611707pt;}
.y116{bottom:5.314100pt;}
.y4b{bottom:6.148940pt;}
.y84{bottom:10.760644pt;}
.yb7{bottom:14.603732pt;}
.ye0{bottom:16.909584pt;}
.y4a{bottom:24.595756pt;}
.y83{bottom:29.207461pt;}
.y142{bottom:29.207463pt;}
.ydf{bottom:32.281931pt;}
.yb6{bottom:33.050548pt;}
.y115{bottom:35.292099pt;}
.y1{bottom:38.049785pt;}
.y17{bottom:38.049817pt;}
.y49{bottom:43.042573pt;}
.y82{bottom:47.654278pt;}
.y114{bottom:50.665432pt;}
.y141{bottom:53.803218pt;}
.y16{bottom:55.729333pt;}
.yb5{bottom:59.183539pt;}
.y48{bottom:61.489390pt;}
.y113{bottom:66.038765pt;}
.y140{bottom:72.250035pt;}
.y81{bottom:73.787268pt;}
.yb4{bottom:77.630355pt;}
.y47{bottom:79.936207pt;}
.y112{bottom:81.412097pt;}
.y15{bottom:91.085333pt;}
.y80{bottom:92.234085pt;}
.yb3{bottom:96.077172pt;}
.y111{bottom:96.785430pt;}
.y13f{bottom:96.845791pt;}
.y46{bottom:98.383023pt;}
.yde{bottom:103.763346pt;}
.y7f{bottom:110.680901pt;}
.y14{bottom:113.374667pt;}
.yb2{bottom:114.523989pt;}
.y45{bottom:116.829840pt;}
.y13e{bottom:121.441546pt;}
.ydd{bottom:122.210163pt;}
.y110{bottom:123.688763pt;}
.y7e{bottom:129.127718pt;}
.yb1{bottom:132.970805pt;}
.ydc{bottom:140.656979pt;}
.y10f{bottom:142.136762pt;}
.y44{bottom:142.962830pt;}
.y13d{bottom:146.037302pt;}
.y7d{bottom:147.574535pt;}
.y13{bottom:147.962667pt;}
.yb0{bottom:151.417622pt;}
.ydb{bottom:159.103796pt;}
.y10e{bottom:160.584762pt;}
.y43{bottom:161.409647pt;}
.y12{bottom:166.409333pt;}
.y13c{bottom:170.633057pt;}
.y7c{bottom:173.707525pt;}
.yaf{bottom:177.550612pt;}
.y85{bottom:178.319229pt;}
.y10d{bottom:179.032761pt;}
.y42{bottom:179.856464pt;}
.yb9{bottom:181.393699pt;}
.yba{bottom:182.162317pt;}
.y11{bottom:184.856000pt;}
.y7b{bottom:192.154342pt;}
.y13b{bottom:195.228813pt;}
.yae{bottom:195.997429pt;}
.y10c{bottom:197.480761pt;}
.y41{bottom:198.303280pt;}
.y10{bottom:203.302667pt;}
.y7a{bottom:210.601159pt;}
.yad{bottom:214.444246pt;}
.y40{bottom:216.750097pt;}
.y13a{bottom:219.824569pt;}
.yf{bottom:221.749333pt;}
.yda{bottom:222.130420pt;}
.y10b{bottom:223.615427pt;}
.y79{bottom:229.047975pt;}
.yac{bottom:232.891062pt;}
.y3f{bottom:235.196914pt;}
.ye{bottom:240.196000pt;}
.yd9{bottom:240.577236pt;}
.y10a{bottom:242.063426pt;}
.y139{bottom:244.420324pt;}
.y78{bottom:247.494792pt;}
.yab{bottom:251.337879pt;}
.yd{bottom:258.642667pt;}
.yd8{bottom:259.024053pt;}
.y109{bottom:260.511425pt;}
.y3e{bottom:261.329904pt;}
.y77{bottom:265.941609pt;}
.y138{bottom:269.016080pt;}
.yaa{bottom:269.784696pt;}
.yd7{bottom:277.470870pt;}
.y108{bottom:278.959425pt;}
.y3d{bottom:279.776721pt;}
.yc{bottom:280.932000pt;}
.y76{bottom:284.388425pt;}
.ya9{bottom:288.231513pt;}
.y136{bottom:294.380453pt;}
.yd6{bottom:295.917687pt;}
.y107{bottom:297.407424pt;}
.y3c{bottom:298.223537pt;}
.y75{bottom:310.521416pt;}
.yb{bottom:311.677333pt;}
.ya8{bottom:314.364503pt;}
.y106{bottom:315.855424pt;}
.y3b{bottom:316.670354pt;}
.ye1{bottom:318.976207pt;}
.y74{bottom:328.968232pt;}
.ya{bottom:330.124000pt;}
.ya7{bottom:332.811320pt;}
.y135{bottom:333.579938pt;}
.y105{bottom:334.303423pt;}
.y3a{bottom:335.117171pt;}
.y73{bottom:347.415049pt;}
.ya6{bottom:351.258136pt;}
.y104{bottom:352.751423pt;}
.y39{bottom:353.563988pt;}
.y134{bottom:356.638459pt;}
.yd5{bottom:358.175693pt;}
.y9{bottom:360.100000pt;}
.y72{bottom:365.861866pt;}
.ya5{bottom:369.704953pt;}
.y103{bottom:371.199422pt;}
.y38{bottom:372.010804pt;}
.yd4{bottom:376.622510pt;}
.y2{bottom:378.159806pt;}
.y71{bottom:384.308682pt;}
.ya4{bottom:388.151770pt;}
.y102{bottom:389.647422pt;}
.y8{bottom:390.076000pt;}
.y37{bottom:390.457621pt;}
.yd3{bottom:395.069326pt;}
.y133{bottom:395.837945pt;}
.y7{bottom:400.444482pt;}
.y70{bottom:402.755499pt;}
.ya3{bottom:406.598586pt;}
.yd2{bottom:413.516143pt;}
.y101{bottom:415.782087pt;}
.y3{bottom:416.209333pt;}
.y36{bottom:416.590611pt;}
.y132{bottom:418.896465pt;}
.y51{bottom:420.433698pt;}
.y52{bottom:421.202315pt;}
.y6{bottom:422.735816pt;}
.ya2{bottom:425.045403pt;}
.yd1{bottom:431.962960pt;}
.y100{bottom:434.230087pt;}
.y35{bottom:435.037428pt;}
.y6f{bottom:439.649133pt;}
.ya1{bottom:443.492220pt;}
.yd0{bottom:450.409776pt;}
.y5{bottom:451.176482pt;}
.yff{bottom:452.678086pt;}
.y34{bottom:453.484245pt;}
.y6e{bottom:458.095949pt;}
.y131{bottom:458.095951pt;}
.ya0{bottom:461.939036pt;}
.ycf{bottom:468.856593pt;}
.yfe{bottom:471.126086pt;}
.y33{bottom:471.931061pt;}
.y4f{bottom:475.774148pt;}
.y50{bottom:476.542766pt;}
.y130{bottom:476.542768pt;}
.y9f{bottom:480.385853pt;}
.y4{bottom:481.923149pt;}
.yce{bottom:487.303410pt;}
.yfd{bottom:489.574085pt;}
.y32{bottom:490.377878pt;}
.y6d{bottom:494.989583pt;}
.y12f{bottom:494.989584pt;}
.yb8{bottom:503.444374pt;}
.ycd{bottom:505.750227pt;}
.yfc{bottom:508.022085pt;}
.y31{bottom:508.824695pt;}
.y12e{bottom:513.436401pt;}
.y6c{bottom:521.122573pt;}
.ycc{bottom:524.197043pt;}
.y30{bottom:527.271511pt;}
.y12d{bottom:531.883218pt;}
.yfb{bottom:534.156751pt;}
.y6b{bottom:539.569390pt;}
.y9e{bottom:542.643859pt;}
.y2f{bottom:545.718328pt;}
.ycb{bottom:550.330034pt;}
.yfa{bottom:552.604750pt;}
.y6a{bottom:558.016206pt;}
.y9d{bottom:561.090676pt;}
.yca{bottom:568.776850pt;}
.yf9{bottom:571.052749pt;}
.y2e{bottom:571.851318pt;}
.y69{bottom:576.463023pt;}
.y9c{bottom:579.537493pt;}
.yc9{bottom:587.223667pt;}
.yf8{bottom:589.500749pt;}
.y2d{bottom:590.298135pt;}
.y68{bottom:594.909840pt;}
.y12c{bottom:594.909841pt;}
.y9b{bottom:597.984310pt;}
.yc8{bottom:605.670484pt;}
.yf7{bottom:607.948748pt;}
.y2c{bottom:608.744952pt;}
.y67{bottom:613.356656pt;}
.y12b{bottom:613.356658pt;}
.y9a{bottom:616.431126pt;}
.yc7{bottom:624.117300pt;}
.yf6{bottom:626.396748pt;}
.y2b{bottom:627.191769pt;}
.y4d{bottom:631.034855pt;}
.y4e{bottom:631.803473pt;}
.y12a{bottom:631.803475pt;}
.y99{bottom:634.877943pt;}
.yf5{bottom:644.844747pt;}
.y2a{bottom:645.638585pt;}
.y66{bottom:650.250290pt;}
.y129{bottom:650.250291pt;}
.y98{bottom:653.324760pt;}
.y29{bottom:664.085402pt;}
.y65{bottom:668.697107pt;}
.y128{bottom:668.697108pt;}
.yf4{bottom:670.979413pt;}
.y97{bottom:671.771576pt;}
.y28{bottom:682.532219pt;}
.y64{bottom:687.143923pt;}
.y127{bottom:687.143925pt;}
.yf3{bottom:689.427413pt;}
.y96{bottom:697.904567pt;}
.y27{bottom:700.979035pt;}
.y63{bottom:705.590740pt;}
.yf2{bottom:707.875412pt;}
.y137{bottom:710.202446pt;}
.y95{bottom:716.351383pt;}
.y4c{bottom:724.037556pt;}
.yc6{bottom:724.037557pt;}
.yf1{bottom:726.323411pt;}
.y62{bottom:731.723730pt;}
.y94{bottom:734.798200pt;}
.yc5{bottom:742.484374pt;}
.yf0{bottom:744.771411pt;}
.y126{bottom:749.401931pt;}
.y61{bottom:750.170547pt;}
.y93{bottom:753.245017pt;}
.yc4{bottom:760.931191pt;}
.yef{bottom:763.219410pt;}
.y26{bottom:763.237042pt;}
.y125{bottom:767.848748pt;}
.y60{bottom:768.617364pt;}
.y92{bottom:771.691833pt;}
.yc3{bottom:779.378008pt;}
.yee{bottom:781.667410pt;}
.y25{bottom:781.683858pt;}
.y124{bottom:786.295565pt;}
.y5f{bottom:787.064180pt;}
.y91{bottom:790.138650pt;}
.yed{bottom:800.115409pt;}
.y24{bottom:800.130675pt;}
.y123{bottom:804.742381pt;}
.y5e{bottom:805.510997pt;}
.y90{bottom:808.585467pt;}
.y23{bottom:818.577492pt;}
.y122{bottom:823.189198pt;}
.y5d{bottom:823.957814pt;}
.yec{bottom:826.250075pt;}
.y8f{bottom:834.718457pt;}
.y22{bottom:837.024308pt;}
.y121{bottom:841.636015pt;}
.yc2{bottom:842.404631pt;}
.yeb{bottom:844.698075pt;}
.y5c{bottom:850.090804pt;}
.y8e{bottom:853.165274pt;}
.y21{bottom:855.471125pt;}
.y120{bottom:860.082831pt;}
.yc1{bottom:860.851448pt;}
.yea{bottom:863.146074pt;}
.y5b{bottom:868.537621pt;}
.y8d{bottom:871.612091pt;}
.y20{bottom:873.917942pt;}
.y11f{bottom:878.529648pt;}
.yc0{bottom:879.298265pt;}
.ye9{bottom:881.594074pt;}
.y5a{bottom:886.984437pt;}
.y8c{bottom:890.058907pt;}
.y1f{bottom:892.364759pt;}
.y14b{bottom:892.750667pt;}
.y11e{bottom:896.976465pt;}
.ybf{bottom:897.745081pt;}
.ye8{bottom:900.042073pt;}
.y8b{bottom:908.505724pt;}
.ybe{bottom:916.191898pt;}
.y59{bottom:916.960515pt;}
.y14a{bottom:917.346667pt;}
.ye7{bottom:918.490072pt;}
.y1e{bottom:918.497749pt;}
.y11d{bottom:923.109455pt;}
.y58{bottom:932.332862pt;}
.y8a{bottom:934.638714pt;}
.y1d{bottom:936.944566pt;}
.y11c{bottom:941.556272pt;}
.y149{bottom:941.942667pt;}
.ye6{bottom:944.624738pt;}
.y57{bottom:947.705209pt;}
.y89{bottom:953.085531pt;}
.y1c{bottom:955.391382pt;}
.y11b{bottom:960.003089pt;}
.ybd{bottom:960.771705pt;}
.ye5{bottom:963.072738pt;}
.y56{bottom:963.077556pt;}
.y148{bottom:966.538667pt;}
.y88{bottom:971.532348pt;}
.y1b{bottom:973.838199pt;}
.y11a{bottom:978.449905pt;}
.ybc{bottom:979.218522pt;}
.ye4{bottom:981.520737pt;}
.y55{bottom:989.979164pt;}
.y147{bottom:991.134667pt;}
.y1a{bottom:992.285016pt;}
.y119{bottom:996.896722pt;}
.ybb{bottom:997.665338pt;}
.ye3{bottom:999.968737pt;}
.y54{bottom:1008.425981pt;}
.y19{bottom:1010.731832pt;}
.y118{bottom:1015.343539pt;}
.y146{bottom:1015.730667pt;}
.y87{bottom:1016.112155pt;}
.y53{bottom:1026.872797pt;}
.y18{bottom:1029.178649pt;}
.y117{bottom:1033.790355pt;}
.y86{bottom:1034.558971pt;}
.ye2{bottom:1037.633402pt;}
.y145{bottom:1040.326667pt;}
.y144{bottom:1064.922667pt;}
.hc{height:30.737188pt;}
.hd{height:32.786334pt;}
.hf{height:32.788437pt;}
.h11{height:34.837714pt;}
.h3{height:40.981992pt;}
.h9{height:40.982918pt;}
.h10{height:40.985546pt;}
.h5{height:40.985547pt;}
.h6{height:43.033047pt;}
.hb{height:44.788475pt;}
.ha{height:57.376085pt;}
.h7{height:57.376211pt;}
.he{height:60.160822pt;}
.h4{height:110.660977pt;}
.h2{height:375.017743pt;}
.h8{height:1046.856848pt;}
.h1{height:1046.856880pt;}
.h0{height:1122.666667pt;}
.w1{width:717.120000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:26.901598pt;}
.x6{left:28.438842pt;}
.x1{left:37.760000pt;}
.x11{left:46.117042pt;}
.x10{left:47.654276pt;}
.x20{left:51.497731pt;}
.x19{left:56.877685pt;}
.x1a{left:61.105080pt;}
.x4{left:64.661333pt;}
.x5{left:66.198667pt;}
.x23{left:71.483064pt;}
.x3{left:80.033333pt;}
.x7{left:82.242058pt;}
.x16{left:102.226109pt;}
.x2b{left:131.433569pt;}
.x22{left:134.513728pt;}
.x1f{left:142.194212pt;}
.x17{left:193.691575pt;}
.x26{left:215.992393pt;}
.xa{left:219.824566pt;}
.xb{left:224.051961pt;}
.x25{left:246.739058pt;}
.x8{left:251.337878pt;}
.x2a{left:252.875112pt;}
.x9{left:255.565273pt;}
.x21{left:279.791724pt;}
.x28{left:298.992154pt;}
.x14{left:313.595884pt;}
.x18{left:318.207588pt;}
.xf{left:325.893762pt;}
.x1d{left:336.654405pt;}
.x1e{left:345.877813pt;}
.x1b{left:406.598585pt;}
.xe{left:438.111897pt;}
.xc{left:445.798070pt;}
.xd{left:450.025466pt;}
.x27{left:451.973052pt;}
.x24{left:454.279052pt;}
.x13{left:498.832668pt;}
.x29{left:538.032154pt;}
.x15{left:558.400514pt;}
.x12{left:629.497620pt;}
.x1c{left:657.936462pt;}
}




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