
    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_14574a58059f60a4f36b8feb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_33331e374f6d8d09420a98f8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_f99ed8e1940a9454980c9a17.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.129395;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_99a629813722e8ea6dd79365.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_fb015811e53a493e9c37e743.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_df3429978ec5e3fdccbe5f0a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.123047;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_f84cd81799270f50ebc590d6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.099609;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_4bc42c60b9a9b64eb08de1f9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_7642e3b51873d656fa45d3d7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.692871;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_98b3d9d90bebeff35471f5de.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5736127c3c24282af473a374.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.148926;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:ffd;src:url('chunks/assets/font_4bef01b94d5049358721f3df.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.401855;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);}
.v2{vertical-align:-84.240000px;}
.v1{vertical-align:-81.360000px;}
.v4{vertical-align:-79.920000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:34.320000px;}
.lsd{letter-spacing:-3.456000px;}
.ls20{letter-spacing:-0.720000px;}
.ls46{letter-spacing:-0.612000px;}
.ls23{letter-spacing:-0.576000px;}
.ls37{letter-spacing:-0.540000px;}
.ls38{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.336960px;}
.lsa{letter-spacing:-0.331200px;}
.lsf{letter-spacing:-0.288000px;}
.ls2d{letter-spacing:-0.216000px;}
.ls36{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls41{letter-spacing:0.048000px;}
.ls3{letter-spacing:0.072000px;}
.ls32{letter-spacing:0.106560px;}
.ls47{letter-spacing:0.106800px;}
.ls3a{letter-spacing:0.126720px;}
.ls2{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.149760px;}
.ls1f{letter-spacing:0.150000px;}
.ls5{letter-spacing:0.180000px;}
.ls4b{letter-spacing:0.192000px;}
.ls24{letter-spacing:0.216000px;}
.ls2b{letter-spacing:0.252000px;}
.ls7{letter-spacing:0.252720px;}
.ls22{letter-spacing:0.256200px;}
.ls3b{letter-spacing:0.259920px;}
.ls33{letter-spacing:0.286560px;}
.ls0{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.432000px;}
.ls27{letter-spacing:0.504000px;}
.ls39{letter-spacing:0.513360px;}
.ls14{letter-spacing:0.576000px;}
.ls35{letter-spacing:0.666000px;}
.ls34{letter-spacing:0.666720px;}
.ls1b{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.792000px;}
.ls45{letter-spacing:0.828000px;}
.ls10{letter-spacing:0.864000px;}
.lsb{letter-spacing:1.368000px;}
.ls1a{letter-spacing:1.440000px;}
.ls48{letter-spacing:2.160000px;}
.ls2c{letter-spacing:2.340000px;}
.ls43{letter-spacing:3.600000px;}
.ls29{letter-spacing:4.320000px;}
.ls12{letter-spacing:4.752000px;}
.ls8{letter-spacing:5.054400px;}
.lse{letter-spacing:7.776000px;}
.ls15{letter-spacing:7.920000px;}
.ls17{letter-spacing:8.208000px;}
.ls30{letter-spacing:8.640000px;}
.ls44{letter-spacing:9.360000px;}
.ls13{letter-spacing:10.368000px;}
.ls2f{letter-spacing:10.944000px;}
.ls49{letter-spacing:11.664000px;}
.ls2a{letter-spacing:12.240000px;}
.ls4c{letter-spacing:12.960000px;}
.ls1d{letter-spacing:13.680000px;}
.ls2e{letter-spacing:15.264000px;}
.ls4e{letter-spacing:15.840000px;}
.ls26{letter-spacing:17.280000px;}
.ls25{letter-spacing:18.720000px;}
.ls16{letter-spacing:19.224000px;}
.lsc{letter-spacing:20.304000px;}
.ls11{letter-spacing:20.592000px;}
.ls18{letter-spacing:20.880000px;}
.ls4d{letter-spacing:22.320000px;}
.ls40{letter-spacing:27.516000px;}
.ls4f{letter-spacing:31.680000px;}
.ls3f{letter-spacing:42.426720px;}
.ls3d{letter-spacing:42.606720px;}
.ls3e{letter-spacing:46.026720px;}
.ls3c{letter-spacing:46.206720px;}
.ls42{letter-spacing:53.400000px;}
.ls4a{letter-spacing:58.320000px;}
.ls1{letter-spacing:113.016000px;}
.ls21{letter-spacing:250.536000px;}
.ls31{letter-spacing:415.416000px;}
.ls1c{letter-spacing:568.056000px;}
.ls50{letter-spacing:987.840000px;}
.ls19{letter-spacing:1139.916000px;}
.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;}
}
.ws8{word-spacing:-18.720000px;}
.ws9{word-spacing:-18.504000px;}
.ws4{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws0{word-spacing:-16.560000px;}
.wsf{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.226440px;}
.wse{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.580000px;}
.ws5{word-spacing:-13.500000px;}
.ws2{word-spacing:0.000000px;}
._13{margin-left:-16.462800px;}
._14{margin-left:-12.470400px;}
._12{margin-left:-9.328080px;}
._b{margin-left:-8.314560px;}
._1{margin-left:-6.277200px;}
._20{margin-left:-3.052080px;}
._0{margin-left:-1.769040px;}
._2{width:1.263600px;}
._3{width:2.782080px;}
._4{width:4.484880px;}
._9{width:6.160320px;}
._7{width:7.816320px;}
._6{width:9.207360px;}
._8{width:10.435680px;}
._a{width:11.586240px;}
._10{width:13.325760px;}
._5{width:15.235200px;}
._11{width:17.250240px;}
._18{width:19.152000px;}
._16{width:20.952000px;}
._15{width:22.217040px;}
._17{width:23.893920px;}
._1c{width:25.126080px;}
._1b{width:26.136000px;}
._1d{width:27.936000px;}
._19{width:29.808000px;}
._1a{width:30.888000px;}
._21{width:32.448000px;}
._c{width:33.912000px;}
._d{width:35.096400px;}
._e{width:36.270000px;}
._f{width:38.786640px;}
._2e{width:40.935600px;}
._4c{width:42.429600px;}
._3d{width:44.401680px;}
._23{width:45.895680px;}
._3f{width:47.090880px;}
._2c{width:48.659040px;}
._54{width:49.968000px;}
._4a{width:53.066880px;}
._3e{width:54.082800px;}
._4f{width:57.309840px;}
._2a{width:58.718160px;}
._3a{width:64.720080px;}
._43{width:66.751920px;}
._42{width:68.484960px;}
._34{width:70.636320px;}
._27{width:72.070560px;}
._4e{width:73.504800px;}
._4d{width:74.520720px;}
._36{width:75.715920px;}
._25{width:78.345360px;}
._22{width:79.719840px;}
._51{width:86.592240px;}
._53{width:90.485760px;}
._3b{width:91.949760px;}
._2f{width:96.333120px;}
._24{width:99.201600px;}
._37{width:102.070080px;}
._38{width:103.086000px;}
._39{width:108.790560px;}
._41{width:111.284640px;}
._46{width:119.101680px;}
._29{width:122.926320px;}
._4b{width:129.918240px;}
._33{width:135.895680px;}
._30{width:138.523680px;}
._44{width:139.898160px;}
._26{width:145.142400px;}
._55{width:147.168000px;}
._56{width:148.428000px;}
._50{width:152.686800px;}
._2d{width:156.152880px;}
._28{width:160.455600px;}
._48{width:170.794080px;}
._35{width:178.861680px;}
._2b{width:180.176400px;}
._32{width:184.872720px;}
._47{width:188.124480px;}
._3c{width:196.909200px;}
._40{width:199.945440px;}
._58{width:212.934960px;}
._57{width:214.961040px;}
._52{width:220.872960px;}
._31{width:223.024320px;}
._49{width:248.422320px;}
._1f{width:265.368480px;}
._45{width:312.006960px;}
._1e{width:315.606240px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:12.240000px;}
.fs4{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yd7{bottom:3.600000px;}
.yb4{bottom:3.765000px;}
.y34{bottom:3.780000px;}
.y9f{bottom:15.270000px;}
.yd6{bottom:20.880000px;}
.yc3{bottom:21.060000px;}
.yb3{bottom:21.090000px;}
.ya6{bottom:22.890000px;}
.yd5{bottom:38.160000px;}
.yc2{bottom:38.340000px;}
.y9e{bottom:45.825000px;}
.yd4{bottom:55.440000px;}
.yda{bottom:55.620000px;}
.yc1{bottom:55.650000px;}
.y1{bottom:59.580000px;}
.y68{bottom:59.760000px;}
.ya5{bottom:63.210000px;}
.yd9{bottom:72.720000px;}
.yd3{bottom:72.765000px;}
.yc0{bottom:72.930000px;}
.y83{bottom:76.350000px;}
.y9d{bottom:76.395000px;}
.ybf{bottom:90.030000px;}
.yd2{bottom:90.045000px;}
.y121{bottom:90.360000px;}
.yf4{bottom:91.800000px;}
.y82{bottom:93.450000px;}
.ya4{bottom:103.530000px;}
.y9c{bottom:106.920000px;}
.yd1{bottom:107.145000px;}
.ybe{bottom:107.310000px;}
.y31{bottom:108.360000px;}
.y120{bottom:114.120000px;}
.y30{bottom:114.300000px;}
.yf3{bottom:115.740000px;}
.y2f{bottom:123.840000px;}
.yd0{bottom:124.425000px;}
.ybd{bottom:124.590000px;}
.y98{bottom:125.280000px;}
.y2e{bottom:129.780000px;}
.y9b{bottom:137.490000px;}
.y11f{bottom:137.880000px;}
.y67{bottom:139.320000px;}
.yf2{bottom:139.500000px;}
.y2d{bottom:140.760000px;}
.ycf{bottom:141.705000px;}
.ybc{bottom:141.870000px;}
.ya3{bottom:143.850000px;}
.yb1{bottom:145.260000px;}
.y66{bottom:154.980000px;}
.yb5{bottom:158.580000px;}
.yce{bottom:158.985000px;}
.ybb{bottom:159.150000px;}
.y65{bottom:160.920000px;}
.y11e{bottom:161.640000px;}
.y97{bottom:163.080000px;}
.yf1{bottom:163.260000px;}
.y9a{bottom:168.045000px;}
.yb0{bottom:170.460000px;}
.y2c{bottom:170.640000px;}
.y64{bottom:171.900000px;}
.ycd{bottom:176.265000px;}
.yaf{bottom:176.400000px;}
.yba{bottom:176.430000px;}
.y96{bottom:183.780000px;}
.ya2{bottom:184.170000px;}
.y11d{bottom:185.580000px;}
.yae{bottom:185.940000px;}
.yf0{bottom:187.020000px;}
.y2b{bottom:191.340000px;}
.yb9{bottom:193.530000px;}
.ycc{bottom:193.545000px;}
.y80{bottom:200.730000px;}
.yad{bottom:201.450000px;}
.y95{bottom:204.150000px;}
.yac{bottom:207.390000px;}
.y11c{bottom:209.370000px;}
.ycb{bottom:210.645000px;}
.yb8{bottom:210.810000px;}
.yef{bottom:210.990000px;}
.y2a{bottom:212.070000px;}
.yab{bottom:218.370000px;}
.y7f{bottom:221.430000px;}
.ya1{bottom:224.490000px;}
.y94{bottom:225.210000px;}
.yca{bottom:227.925000px;}
.yb7{bottom:228.090000px;}
.y63{bottom:230.250000px;}
.y29{bottom:232.770000px;}
.y11b{bottom:233.130000px;}
.yee{bottom:234.750000px;}
.yc9{bottom:245.205000px;}
.yb6{bottom:245.370000px;}
.y93{bottom:245.910000px;}
.y62{bottom:250.950000px;}
.y28{bottom:253.470000px;}
.y11a{bottom:256.890000px;}
.yed{bottom:258.510000px;}
.yc8{bottom:262.485000px;}
.y7e{bottom:262.830000px;}
.y92{bottom:266.610000px;}
.y61{bottom:271.650000px;}
.y27{bottom:273.990000px;}
.yc7{bottom:279.765000px;}
.y119{bottom:280.830000px;}
.yec{bottom:282.270000px;}
.y7d{bottom:283.530000px;}
.y91{bottom:286.590000px;}
.y60{bottom:292.350000px;}
.y26{bottom:294.690000px;}
.yc6{bottom:297.075000px;}
.y90{bottom:303.870000px;}
.y7c{bottom:304.230000px;}
.y118{bottom:304.590000px;}
.yeb{bottom:306.030000px;}
.y5f{bottom:313.050000px;}
.yc5{bottom:314.175000px;}
.y25{bottom:315.390000px;}
.y8f{bottom:321.510000px;}
.y7b{bottom:324.930000px;}
.y117{bottom:328.350000px;}
.yea{bottom:329.970000px;}
.y5e{bottom:333.750000px;}
.y24{bottom:336.090000px;}
.y8e{bottom:338.070000px;}
.ya0{bottom:338.220000px;}
.y7a{bottom:344.910000px;}
.y116{bottom:352.110000px;}
.ye9{bottom:353.730000px;}
.y5d{bottom:354.450000px;}
.y23{bottom:356.790000px;}
.y78{bottom:362.190000px;}
.y79{bottom:369.030000px;}
.y5b{bottom:375.150000px;}
.y115{bottom:376.050000px;}
.y22{bottom:377.490000px;}
.y77{bottom:379.830000px;}
.y5c{bottom:383.430000px;}
.y5a{bottom:395.850000px;}
.y76{bottom:396.390000px;}
.y81{bottom:396.540000px;}
.y21{bottom:398.190000px;}
.y114{bottom:399.810000px;}
.ye8{bottom:401.250000px;}
.y59{bottom:416.550000px;}
.yb2{bottom:418.185000px;}
.y20{bottom:418.890000px;}
.y113{bottom:423.570000px;}
.ye7{bottom:425.190000px;}
.y58{bottom:437.295000px;}
.y1f{bottom:439.635000px;}
.y112{bottom:447.375000px;}
.ye6{bottom:448.995000px;}
.y57{bottom:457.995000px;}
.y1e{bottom:460.335000px;}
.y111{bottom:471.315000px;}
.ye5{bottom:472.755000px;}
.y56{bottom:478.695000px;}
.y1d{bottom:481.035000px;}
.y110{bottom:494.715000px;}
.ye4{bottom:496.155000px;}
.y55{bottom:499.395000px;}
.y1c{bottom:501.735000px;}
.y10f{bottom:518.835000px;}
.y54{bottom:520.095000px;}
.y1b{bottom:522.435000px;}
.y53{bottom:540.795000px;}
.y10e{bottom:542.595000px;}
.y1a{bottom:543.135000px;}
.ye3{bottom:544.215000px;}
.y52{bottom:561.495000px;}
.y19{bottom:563.475000px;}
.y10d{bottom:566.535000px;}
.ye2{bottom:567.975000px;}
.y75{bottom:580.935000px;}
.y51{bottom:582.195000px;}
.y10c{bottom:590.295000px;}
.ye1{bottom:591.735000px;}
.y8d{bottom:599.115000px;}
.y74{bottom:601.635000px;}
.y50{bottom:602.895000px;}
.y10b{bottom:614.055000px;}
.ye0{bottom:615.675000px;}
.y8c{bottom:619.815000px;}
.y73{bottom:622.335000px;}
.y4e{bottom:623.595000px;}
.y18{bottom:625.575000px;}
.y4f{bottom:631.875000px;}
.y10a{bottom:637.815000px;}
.ydf{bottom:639.435000px;}
.y8b{bottom:640.515000px;}
.y72{bottom:643.035000px;}
.y4d{bottom:644.295000px;}
.y17{bottom:644.475000px;}
.y8a{bottom:661.215000px;}
.y109{bottom:661.575000px;}
.yde{bottom:663.195000px;}
.y16{bottom:663.555000px;}
.y71{bottom:663.735000px;}
.y4c{bottom:664.995000px;}
.y89{bottom:681.945000px;}
.y15{bottom:682.485000px;}
.y70{bottom:684.465000px;}
.y108{bottom:685.545000px;}
.y4b{bottom:685.725000px;}
.ydd{bottom:686.985000px;}
.y134{bottom:687.165000px;}
.y14{bottom:701.385000px;}
.y88{bottom:701.925000px;}
.y6f{bottom:705.165000px;}
.y4a{bottom:706.425000px;}
.y107{bottom:709.305000px;}
.y133{bottom:711.105000px;}
.y87{bottom:719.565000px;}
.y13{bottom:720.465000px;}
.y6e{bottom:725.865000px;}
.yaa{bottom:727.125000px;}
.ydc{bottom:730.905000px;}
.y106{bottom:733.065000px;}
.y132{bottom:734.865000px;}
.y86{bottom:736.125000px;}
.y99{bottom:736.200000px;}
.y12{bottom:739.365000px;}
.y6d{bottom:745.845000px;}
.y49{bottom:747.825000px;}
.ydb{bottom:748.185000px;}
.y131{bottom:755.745000px;}
.y105{bottom:756.825000px;}
.y11{bottom:758.445000px;}
.yd8{bottom:762.405000px;}
.y6b{bottom:763.125000px;}
.y48{bottom:768.525000px;}
.y6c{bottom:769.965000px;}
.y130{bottom:776.445000px;}
.y10{bottom:777.345000px;}
.y6a{bottom:780.765000px;}
.y47{bottom:789.225000px;}
.yf{bottom:796.245000px;}
.y12f{bottom:797.145000px;}
.y69{bottom:797.325000px;}
.y104{bottom:804.525000px;}
.y46{bottom:809.925000px;}
.ye{bottom:815.325000px;}
.y12e{bottom:817.845000px;}
.y103{bottom:828.285000px;}
.y45{bottom:830.625000px;}
.yd{bottom:834.225000px;}
.y12d{bottom:838.545000px;}
.yc4{bottom:849.525000px;}
.y44{bottom:851.325000px;}
.y102{bottom:852.045000px;}
.yc{bottom:853.305000px;}
.y12c{bottom:859.245000px;}
.y43{bottom:872.025000px;}
.yb{bottom:872.205000px;}
.y101{bottom:875.985000px;}
.y12b{bottom:879.945000px;}
.ya{bottom:890.745000px;}
.y42{bottom:892.725000px;}
.y100{bottom:899.745000px;}
.y12a{bottom:900.645000px;}
.ya9{bottom:901.005000px;}
.y41{bottom:913.470000px;}
.y129{bottom:921.390000px;}
.yff{bottom:923.550000px;}
.y8{bottom:929.130000px;}
.y40{bottom:934.170000px;}
.y9{bottom:936.690000px;}
.y128{bottom:942.090000px;}
.yfe{bottom:947.310000px;}
.y6{bottom:948.210000px;}
.y3f{bottom:954.870000px;}
.y7{bottom:955.770000px;}
.y127{bottom:962.790000px;}
.ya8{bottom:963.150000px;}
.yfd{bottom:970.890000px;}
.y3e{bottom:975.570000px;}
.y126{bottom:983.490000px;}
.y5{bottom:990.510000px;}
.yfc{bottom:995.010000px;}
.y3d{bottom:996.270000px;}
.y125{bottom:1004.190000px;}
.y4{bottom:1016.610000px;}
.y3c{bottom:1016.970000px;}
.yfb{bottom:1018.770000px;}
.y124{bottom:1024.890000px;}
.y85{bottom:1037.670000px;}
.yfa{bottom:1042.530000px;}
.y123{bottom:1045.590000px;}
.ya7{bottom:1045.950000px;}
.y3b{bottom:1058.370000px;}
.yf9{bottom:1066.470000px;}
.y3a{bottom:1079.070000px;}
.y122{bottom:1087.170000px;}
.yf8{bottom:1090.230000px;}
.y39{bottom:1099.770000px;}
.y3{bottom:1108.770000px;}
.yf7{bottom:1113.990000px;}
.y38{bottom:1120.470000px;}
.y84{bottom:1128.750000px;}
.y2{bottom:1134.870000px;}
.yf6{bottom:1137.750000px;}
.y37{bottom:1141.170000px;}
.yf5{bottom:1161.720000px;}
.y36{bottom:1161.900000px;}
.y32{bottom:1180.716000px;}
.y35{bottom:1187.100000px;}
.y33{bottom:1190.520000px;}
.h10{height:12.174258px;}
.he{height:17.280000px;}
.h1f{height:34.581000px;}
.hb{height:35.332031px;}
.h16{height:38.139609px;}
.h14{height:38.158594px;}
.h6{height:40.985156px;}
.h12{height:47.344922px;}
.hd{height:48.761719px;}
.h13{height:52.756875px;}
.hc{height:52.998047px;}
.h21{height:53.573906px;}
.h22{height:53.709961px;}
.h15{height:58.621992px;}
.hf{height:58.651172px;}
.h18{height:59.383125px;}
.h25{height:62.327813px;}
.h9{height:64.546875px;}
.h7{height:64.978594px;}
.h1c{height:65.010937px;}
.ha{height:65.884219px;}
.h4{height:66.757500px;}
.h26{height:70.628906px;}
.h2{height:70.664062px;}
.h8{height:72.562500px;}
.h1a{height:73.722656px;}
.h1e{height:75.093750px;}
.h3{height:84.898125px;}
.h24{height:86.220000px;}
.h19{height:99.330937px;}
.h17{height:180.000000px;}
.h1b{height:193.500000px;}
.h1d{height:256.500000px;}
.h20{height:258.870000px;}
.h23{height:327.675000px;}
.h1{height:1263.000000px;}
.h5{height:1263.055500px;}
.h11{height:1263.055980px;}
.h0{height:1263.060000px;}
.w5{width:106.191000px;}
.w7{width:132.336000px;}
.w6{width:149.256000px;}
.w8{width:158.955000px;}
.w9{width:191.910000px;}
.wa{width:282.315000px;}
.w3{width:717.990000px;}
.w4{width:892.976250px;}
.w2{width:892.977000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x39{left:7.740000px;}
.x3c{left:34.740000px;}
.x3d{left:61.725000px;}
.xe{left:87.703500px;}
.xf{left:98.316000px;}
.xa{left:106.416000px;}
.x15{left:110.916000px;}
.xd{left:114.336000px;}
.x36{left:115.416000px;}
.x24{left:127.800000px;}
.x4{left:129.996000px;}
.xc{left:133.236000px;}
.x35{left:138.456000px;}
.x2{left:139.716000px;}
.x23{left:148.896000px;}
.x9{left:159.510000px;}
.x34{left:178.406250px;}
.x2a{left:181.335000px;}
.x2d{left:191.370000px;}
.x2b{left:198.105000px;}
.x2c{left:205.770000px;}
.x2e{left:213.480000px;}
.x16{left:220.179000px;}
.x2f{left:223.590000px;}
.x1e{left:233.310000px;}
.x32{left:238.886250px;}
.x33{left:245.010000px;}
.x28{left:252.570000px;}
.x10{left:253.839000px;}
.x25{left:283.391250px;}
.x26{left:289.515000px;}
.x18{left:311.835000px;}
.x14{left:322.455000px;}
.x29{left:355.215000px;}
.x27{left:356.295000px;}
.x1f{left:391.035000px;}
.x3e{left:392.655000px;}
.x3{left:406.515000px;}
.xb{left:411.195000px;}
.x5{left:414.075000px;}
.x19{left:420.015000px;}
.x1{left:448.305000px;}
.x22{left:457.305000px;}
.x1c{left:483.765000px;}
.x3a{left:488.640000px;}
.x30{left:508.961250px;}
.x31{left:515.085000px;}
.x20{left:518.501250px;}
.x21{left:523.365000px;}
.x37{left:537.761250px;}
.x1a{left:542.621250px;}
.x1b{left:547.485000px;}
.x38{left:550.005000px;}
.x3b{left:648.330000px;}
.x8{left:650.310000px;}
.x6{left:671.370000px;}
.x1d{left:756.690000px;}
.x12{left:784.766250px;}
.x13{left:790.890000px;}
.x11{left:797.756250px;}
.x7{left:802.977000px;}
.x17{left:861.660000px;}
@media print{
.v2{vertical-align:-74.880000pt;}
.v1{vertical-align:-72.320000pt;}
.v4{vertical-align:-71.040000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:30.506667pt;}
.lsd{letter-spacing:-3.072000pt;}
.ls20{letter-spacing:-0.640000pt;}
.ls46{letter-spacing:-0.544000pt;}
.ls23{letter-spacing:-0.512000pt;}
.ls37{letter-spacing:-0.480000pt;}
.ls38{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.299520pt;}
.lsa{letter-spacing:-0.294400pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls2d{letter-spacing:-0.192000pt;}
.ls36{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls41{letter-spacing:0.042667pt;}
.ls3{letter-spacing:0.064000pt;}
.ls32{letter-spacing:0.094720pt;}
.ls47{letter-spacing:0.094933pt;}
.ls3a{letter-spacing:0.112640pt;}
.ls2{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.133120pt;}
.ls1f{letter-spacing:0.133333pt;}
.ls5{letter-spacing:0.160000pt;}
.ls4b{letter-spacing:0.170667pt;}
.ls24{letter-spacing:0.192000pt;}
.ls2b{letter-spacing:0.224000pt;}
.ls7{letter-spacing:0.224640pt;}
.ls22{letter-spacing:0.227733pt;}
.ls3b{letter-spacing:0.231040pt;}
.ls33{letter-spacing:0.254720pt;}
.ls0{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.384000pt;}
.ls27{letter-spacing:0.448000pt;}
.ls39{letter-spacing:0.456320pt;}
.ls14{letter-spacing:0.512000pt;}
.ls35{letter-spacing:0.592000pt;}
.ls34{letter-spacing:0.592640pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.704000pt;}
.ls45{letter-spacing:0.736000pt;}
.ls10{letter-spacing:0.768000pt;}
.lsb{letter-spacing:1.216000pt;}
.ls1a{letter-spacing:1.280000pt;}
.ls48{letter-spacing:1.920000pt;}
.ls2c{letter-spacing:2.080000pt;}
.ls43{letter-spacing:3.200000pt;}
.ls29{letter-spacing:3.840000pt;}
.ls12{letter-spacing:4.224000pt;}
.ls8{letter-spacing:4.492800pt;}
.lse{letter-spacing:6.912000pt;}
.ls15{letter-spacing:7.040000pt;}
.ls17{letter-spacing:7.296000pt;}
.ls30{letter-spacing:7.680000pt;}
.ls44{letter-spacing:8.320000pt;}
.ls13{letter-spacing:9.216000pt;}
.ls2f{letter-spacing:9.728000pt;}
.ls49{letter-spacing:10.368000pt;}
.ls2a{letter-spacing:10.880000pt;}
.ls4c{letter-spacing:11.520000pt;}
.ls1d{letter-spacing:12.160000pt;}
.ls2e{letter-spacing:13.568000pt;}
.ls4e{letter-spacing:14.080000pt;}
.ls26{letter-spacing:15.360000pt;}
.ls25{letter-spacing:16.640000pt;}
.ls16{letter-spacing:17.088000pt;}
.lsc{letter-spacing:18.048000pt;}
.ls11{letter-spacing:18.304000pt;}
.ls18{letter-spacing:18.560000pt;}
.ls4d{letter-spacing:19.840000pt;}
.ls40{letter-spacing:24.458667pt;}
.ls4f{letter-spacing:28.160000pt;}
.ls3f{letter-spacing:37.712640pt;}
.ls3d{letter-spacing:37.872640pt;}
.ls3e{letter-spacing:40.912640pt;}
.ls3c{letter-spacing:41.072640pt;}
.ls42{letter-spacing:47.466667pt;}
.ls4a{letter-spacing:51.840000pt;}
.ls1{letter-spacing:100.458667pt;}
.ls21{letter-spacing:222.698667pt;}
.ls31{letter-spacing:369.258667pt;}
.ls1c{letter-spacing:504.938667pt;}
.ls50{letter-spacing:878.080000pt;}
.ls19{letter-spacing:1013.258667pt;}
.ws8{word-spacing:-16.640000pt;}
.ws9{word-spacing:-16.448000pt;}
.ws4{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws0{word-spacing:-14.720000pt;}
.wsf{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.534613pt;}
.wse{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.wsd{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws2{word-spacing:0.000000pt;}
._13{margin-left:-14.633600pt;}
._14{margin-left:-11.084800pt;}
._12{margin-left:-8.291627pt;}
._b{margin-left:-7.390720pt;}
._1{margin-left:-5.579733pt;}
._20{margin-left:-2.712960pt;}
._0{margin-left:-1.572480pt;}
._2{width:1.123200pt;}
._3{width:2.472960pt;}
._4{width:3.986560pt;}
._9{width:5.475840pt;}
._7{width:6.947840pt;}
._6{width:8.184320pt;}
._8{width:9.276160pt;}
._a{width:10.298880pt;}
._10{width:11.845120pt;}
._5{width:13.542400pt;}
._11{width:15.333547pt;}
._18{width:17.024000pt;}
._16{width:18.624000pt;}
._15{width:19.748480pt;}
._17{width:21.239040pt;}
._1c{width:22.334293pt;}
._1b{width:23.232000pt;}
._1d{width:24.832000pt;}
._19{width:26.496000pt;}
._1a{width:27.456000pt;}
._21{width:28.842667pt;}
._c{width:30.144000pt;}
._d{width:31.196800pt;}
._e{width:32.240000pt;}
._f{width:34.477013pt;}
._2e{width:36.387200pt;}
._4c{width:37.715200pt;}
._3d{width:39.468160pt;}
._23{width:40.796160pt;}
._3f{width:41.858560pt;}
._2c{width:43.252480pt;}
._54{width:44.416000pt;}
._4a{width:47.170560pt;}
._3e{width:48.073600pt;}
._4f{width:50.942080pt;}
._2a{width:52.193920pt;}
._3a{width:57.528960pt;}
._43{width:59.335040pt;}
._42{width:60.875520pt;}
._34{width:62.787840pt;}
._27{width:64.062720pt;}
._4e{width:65.337600pt;}
._4d{width:66.240640pt;}
._36{width:67.303040pt;}
._25{width:69.640320pt;}
._22{width:70.862080pt;}
._51{width:76.970880pt;}
._53{width:80.431787pt;}
._3b{width:81.733120pt;}
._2f{width:85.629440pt;}
._24{width:88.179200pt;}
._37{width:90.728960pt;}
._38{width:91.632000pt;}
._39{width:96.702720pt;}
._41{width:98.919680pt;}
._46{width:105.868160pt;}
._29{width:109.267840pt;}
._4b{width:115.482880pt;}
._33{width:120.796160pt;}
._30{width:123.132160pt;}
._44{width:124.353920pt;}
._26{width:129.015467pt;}
._55{width:130.816000pt;}
._56{width:131.936000pt;}
._50{width:135.721600pt;}
._2d{width:138.802560pt;}
._28{width:142.627200pt;}
._48{width:151.816960pt;}
._35{width:158.988160pt;}
._2b{width:160.156800pt;}
._32{width:164.331307pt;}
._47{width:167.221760pt;}
._3c{width:175.030400pt;}
._40{width:177.729280pt;}
._58{width:189.275520pt;}
._57{width:191.076480pt;}
._52{width:196.331520pt;}
._31{width:198.243840pt;}
._49{width:220.819840pt;}
._1f{width:235.883093pt;}
._45{width:277.339520pt;}
._1e{width:280.538880pt;}
.fs7{font-size:10.880000pt;}
.fs4{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yd7{bottom:3.200000pt;}
.yb4{bottom:3.346667pt;}
.y34{bottom:3.360000pt;}
.y9f{bottom:13.573333pt;}
.yd6{bottom:18.560000pt;}
.yc3{bottom:18.720000pt;}
.yb3{bottom:18.746667pt;}
.ya6{bottom:20.346667pt;}
.yd5{bottom:33.920000pt;}
.yc2{bottom:34.080000pt;}
.y9e{bottom:40.733333pt;}
.yd4{bottom:49.280000pt;}
.yda{bottom:49.440000pt;}
.yc1{bottom:49.466667pt;}
.y1{bottom:52.960000pt;}
.y68{bottom:53.120000pt;}
.ya5{bottom:56.186667pt;}
.yd9{bottom:64.640000pt;}
.yd3{bottom:64.680000pt;}
.yc0{bottom:64.826667pt;}
.y83{bottom:67.866667pt;}
.y9d{bottom:67.906667pt;}
.ybf{bottom:80.026667pt;}
.yd2{bottom:80.040000pt;}
.y121{bottom:80.320000pt;}
.yf4{bottom:81.600000pt;}
.y82{bottom:83.066667pt;}
.ya4{bottom:92.026667pt;}
.y9c{bottom:95.040000pt;}
.yd1{bottom:95.240000pt;}
.ybe{bottom:95.386667pt;}
.y31{bottom:96.320000pt;}
.y120{bottom:101.440000pt;}
.y30{bottom:101.600000pt;}
.yf3{bottom:102.880000pt;}
.y2f{bottom:110.080000pt;}
.yd0{bottom:110.600000pt;}
.ybd{bottom:110.746667pt;}
.y98{bottom:111.360000pt;}
.y2e{bottom:115.360000pt;}
.y9b{bottom:122.213333pt;}
.y11f{bottom:122.560000pt;}
.y67{bottom:123.840000pt;}
.yf2{bottom:124.000000pt;}
.y2d{bottom:125.120000pt;}
.ycf{bottom:125.960000pt;}
.ybc{bottom:126.106667pt;}
.ya3{bottom:127.866667pt;}
.yb1{bottom:129.120000pt;}
.y66{bottom:137.760000pt;}
.yb5{bottom:140.960000pt;}
.yce{bottom:141.320000pt;}
.ybb{bottom:141.466667pt;}
.y65{bottom:143.040000pt;}
.y11e{bottom:143.680000pt;}
.y97{bottom:144.960000pt;}
.yf1{bottom:145.120000pt;}
.y9a{bottom:149.373333pt;}
.yb0{bottom:151.520000pt;}
.y2c{bottom:151.680000pt;}
.y64{bottom:152.800000pt;}
.ycd{bottom:156.680000pt;}
.yaf{bottom:156.800000pt;}
.yba{bottom:156.826667pt;}
.y96{bottom:163.360000pt;}
.ya2{bottom:163.706667pt;}
.y11d{bottom:164.960000pt;}
.yae{bottom:165.280000pt;}
.yf0{bottom:166.240000pt;}
.y2b{bottom:170.080000pt;}
.yb9{bottom:172.026667pt;}
.ycc{bottom:172.040000pt;}
.y80{bottom:178.426667pt;}
.yad{bottom:179.066667pt;}
.y95{bottom:181.466667pt;}
.yac{bottom:184.346667pt;}
.y11c{bottom:186.106667pt;}
.ycb{bottom:187.240000pt;}
.yb8{bottom:187.386667pt;}
.yef{bottom:187.546667pt;}
.y2a{bottom:188.506667pt;}
.yab{bottom:194.106667pt;}
.y7f{bottom:196.826667pt;}
.ya1{bottom:199.546667pt;}
.y94{bottom:200.186667pt;}
.yca{bottom:202.600000pt;}
.yb7{bottom:202.746667pt;}
.y63{bottom:204.666667pt;}
.y29{bottom:206.906667pt;}
.y11b{bottom:207.226667pt;}
.yee{bottom:208.666667pt;}
.yc9{bottom:217.960000pt;}
.yb6{bottom:218.106667pt;}
.y93{bottom:218.586667pt;}
.y62{bottom:223.066667pt;}
.y28{bottom:225.306667pt;}
.y11a{bottom:228.346667pt;}
.yed{bottom:229.786667pt;}
.yc8{bottom:233.320000pt;}
.y7e{bottom:233.626667pt;}
.y92{bottom:236.986667pt;}
.y61{bottom:241.466667pt;}
.y27{bottom:243.546667pt;}
.yc7{bottom:248.680000pt;}
.y119{bottom:249.626667pt;}
.yec{bottom:250.906667pt;}
.y7d{bottom:252.026667pt;}
.y91{bottom:254.746667pt;}
.y60{bottom:259.866667pt;}
.y26{bottom:261.946667pt;}
.yc6{bottom:264.066667pt;}
.y90{bottom:270.106667pt;}
.y7c{bottom:270.426667pt;}
.y118{bottom:270.746667pt;}
.yeb{bottom:272.026667pt;}
.y5f{bottom:278.266667pt;}
.yc5{bottom:279.266667pt;}
.y25{bottom:280.346667pt;}
.y8f{bottom:285.786667pt;}
.y7b{bottom:288.826667pt;}
.y117{bottom:291.866667pt;}
.yea{bottom:293.306667pt;}
.y5e{bottom:296.666667pt;}
.y24{bottom:298.746667pt;}
.y8e{bottom:300.506667pt;}
.ya0{bottom:300.640000pt;}
.y7a{bottom:306.586667pt;}
.y116{bottom:312.986667pt;}
.ye9{bottom:314.426667pt;}
.y5d{bottom:315.066667pt;}
.y23{bottom:317.146667pt;}
.y78{bottom:321.946667pt;}
.y79{bottom:328.026667pt;}
.y5b{bottom:333.466667pt;}
.y115{bottom:334.266667pt;}
.y22{bottom:335.546667pt;}
.y77{bottom:337.626667pt;}
.y5c{bottom:340.826667pt;}
.y5a{bottom:351.866667pt;}
.y76{bottom:352.346667pt;}
.y81{bottom:352.480000pt;}
.y21{bottom:353.946667pt;}
.y114{bottom:355.386667pt;}
.ye8{bottom:356.666667pt;}
.y59{bottom:370.266667pt;}
.yb2{bottom:371.720000pt;}
.y20{bottom:372.346667pt;}
.y113{bottom:376.506667pt;}
.ye7{bottom:377.946667pt;}
.y58{bottom:388.706667pt;}
.y1f{bottom:390.786667pt;}
.y112{bottom:397.666667pt;}
.ye6{bottom:399.106667pt;}
.y57{bottom:407.106667pt;}
.y1e{bottom:409.186667pt;}
.y111{bottom:418.946667pt;}
.ye5{bottom:420.226667pt;}
.y56{bottom:425.506667pt;}
.y1d{bottom:427.586667pt;}
.y110{bottom:439.746667pt;}
.ye4{bottom:441.026667pt;}
.y55{bottom:443.906667pt;}
.y1c{bottom:445.986667pt;}
.y10f{bottom:461.186667pt;}
.y54{bottom:462.306667pt;}
.y1b{bottom:464.386667pt;}
.y53{bottom:480.706667pt;}
.y10e{bottom:482.306667pt;}
.y1a{bottom:482.786667pt;}
.ye3{bottom:483.746667pt;}
.y52{bottom:499.106667pt;}
.y19{bottom:500.866667pt;}
.y10d{bottom:503.586667pt;}
.ye2{bottom:504.866667pt;}
.y75{bottom:516.386667pt;}
.y51{bottom:517.506667pt;}
.y10c{bottom:524.706667pt;}
.ye1{bottom:525.986667pt;}
.y8d{bottom:532.546667pt;}
.y74{bottom:534.786667pt;}
.y50{bottom:535.906667pt;}
.y10b{bottom:545.826667pt;}
.ye0{bottom:547.266667pt;}
.y8c{bottom:550.946667pt;}
.y73{bottom:553.186667pt;}
.y4e{bottom:554.306667pt;}
.y18{bottom:556.066667pt;}
.y4f{bottom:561.666667pt;}
.y10a{bottom:566.946667pt;}
.ydf{bottom:568.386667pt;}
.y8b{bottom:569.346667pt;}
.y72{bottom:571.586667pt;}
.y4d{bottom:572.706667pt;}
.y17{bottom:572.866667pt;}
.y8a{bottom:587.746667pt;}
.y109{bottom:588.066667pt;}
.yde{bottom:589.506667pt;}
.y16{bottom:589.826667pt;}
.y71{bottom:589.986667pt;}
.y4c{bottom:591.106667pt;}
.y89{bottom:606.173333pt;}
.y15{bottom:606.653333pt;}
.y70{bottom:608.413333pt;}
.y108{bottom:609.373333pt;}
.y4b{bottom:609.533333pt;}
.ydd{bottom:610.653333pt;}
.y134{bottom:610.813333pt;}
.y14{bottom:623.453333pt;}
.y88{bottom:623.933333pt;}
.y6f{bottom:626.813333pt;}
.y4a{bottom:627.933333pt;}
.y107{bottom:630.493333pt;}
.y133{bottom:632.093333pt;}
.y87{bottom:639.613333pt;}
.y13{bottom:640.413333pt;}
.y6e{bottom:645.213333pt;}
.yaa{bottom:646.333333pt;}
.ydc{bottom:649.693333pt;}
.y106{bottom:651.613333pt;}
.y132{bottom:653.213333pt;}
.y86{bottom:654.333333pt;}
.y99{bottom:654.400000pt;}
.y12{bottom:657.213333pt;}
.y6d{bottom:662.973333pt;}
.y49{bottom:664.733333pt;}
.ydb{bottom:665.053333pt;}
.y131{bottom:671.773333pt;}
.y105{bottom:672.733333pt;}
.y11{bottom:674.173333pt;}
.yd8{bottom:677.693333pt;}
.y6b{bottom:678.333333pt;}
.y48{bottom:683.133333pt;}
.y6c{bottom:684.413333pt;}
.y130{bottom:690.173333pt;}
.y10{bottom:690.973333pt;}
.y6a{bottom:694.013333pt;}
.y47{bottom:701.533333pt;}
.yf{bottom:707.773333pt;}
.y12f{bottom:708.573333pt;}
.y69{bottom:708.733333pt;}
.y104{bottom:715.133333pt;}
.y46{bottom:719.933333pt;}
.ye{bottom:724.733333pt;}
.y12e{bottom:726.973333pt;}
.y103{bottom:736.253333pt;}
.y45{bottom:738.333333pt;}
.yd{bottom:741.533333pt;}
.y12d{bottom:745.373333pt;}
.yc4{bottom:755.133333pt;}
.y44{bottom:756.733333pt;}
.y102{bottom:757.373333pt;}
.yc{bottom:758.493333pt;}
.y12c{bottom:763.773333pt;}
.y43{bottom:775.133333pt;}
.yb{bottom:775.293333pt;}
.y101{bottom:778.653333pt;}
.y12b{bottom:782.173333pt;}
.ya{bottom:791.773333pt;}
.y42{bottom:793.533333pt;}
.y100{bottom:799.773333pt;}
.y12a{bottom:800.573333pt;}
.ya9{bottom:800.893333pt;}
.y41{bottom:811.973333pt;}
.y129{bottom:819.013333pt;}
.yff{bottom:820.933333pt;}
.y8{bottom:825.893333pt;}
.y40{bottom:830.373333pt;}
.y9{bottom:832.613333pt;}
.y128{bottom:837.413333pt;}
.yfe{bottom:842.053333pt;}
.y6{bottom:842.853333pt;}
.y3f{bottom:848.773333pt;}
.y7{bottom:849.573333pt;}
.y127{bottom:855.813333pt;}
.ya8{bottom:856.133333pt;}
.yfd{bottom:863.013333pt;}
.y3e{bottom:867.173333pt;}
.y126{bottom:874.213333pt;}
.y5{bottom:880.453333pt;}
.yfc{bottom:884.453333pt;}
.y3d{bottom:885.573333pt;}
.y125{bottom:892.613333pt;}
.y4{bottom:903.653333pt;}
.y3c{bottom:903.973333pt;}
.yfb{bottom:905.573333pt;}
.y124{bottom:911.013333pt;}
.y85{bottom:922.373333pt;}
.yfa{bottom:926.693333pt;}
.y123{bottom:929.413333pt;}
.ya7{bottom:929.733333pt;}
.y3b{bottom:940.773333pt;}
.yf9{bottom:947.973333pt;}
.y3a{bottom:959.173333pt;}
.y122{bottom:966.373333pt;}
.yf8{bottom:969.093333pt;}
.y39{bottom:977.573333pt;}
.y3{bottom:985.573333pt;}
.yf7{bottom:990.213333pt;}
.y38{bottom:995.973333pt;}
.y84{bottom:1003.333333pt;}
.y2{bottom:1008.773333pt;}
.yf6{bottom:1011.333333pt;}
.y37{bottom:1014.373333pt;}
.yf5{bottom:1032.640000pt;}
.y36{bottom:1032.800000pt;}
.y32{bottom:1049.525333pt;}
.y35{bottom:1055.200000pt;}
.y33{bottom:1058.240000pt;}
.h10{height:10.821563pt;}
.he{height:15.360000pt;}
.h1f{height:30.738667pt;}
.hb{height:31.406250pt;}
.h16{height:33.901875pt;}
.h14{height:33.918750pt;}
.h6{height:36.431250pt;}
.h12{height:42.084375pt;}
.hd{height:43.343750pt;}
.h13{height:46.895000pt;}
.hc{height:47.109375pt;}
.h21{height:47.621250pt;}
.h22{height:47.742188pt;}
.h15{height:52.108438pt;}
.hf{height:52.134375pt;}
.h18{height:52.785000pt;}
.h25{height:55.402500pt;}
.h9{height:57.375000pt;}
.h7{height:57.758750pt;}
.h1c{height:57.787500pt;}
.ha{height:58.563750pt;}
.h4{height:59.340000pt;}
.h26{height:62.781250pt;}
.h2{height:62.812500pt;}
.h8{height:64.500000pt;}
.h1a{height:65.531250pt;}
.h1e{height:66.750000pt;}
.h3{height:75.465000pt;}
.h24{height:76.640000pt;}
.h19{height:88.294167pt;}
.h17{height:160.000000pt;}
.h1b{height:172.000000pt;}
.h1d{height:228.000000pt;}
.h20{height:230.106667pt;}
.h23{height:291.266667pt;}
.h1{height:1122.666667pt;}
.h5{height:1122.716000pt;}
.h11{height:1122.716427pt;}
.h0{height:1122.720000pt;}
.w5{width:94.392000pt;}
.w7{width:117.632000pt;}
.w6{width:132.672000pt;}
.w8{width:141.293333pt;}
.w9{width:170.586667pt;}
.wa{width:250.946667pt;}
.w3{width:638.213333pt;}
.w4{width:793.756667pt;}
.w2{width:793.757333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x39{left:6.880000pt;}
.x3c{left:30.880000pt;}
.x3d{left:54.866667pt;}
.xe{left:77.958667pt;}
.xf{left:87.392000pt;}
.xa{left:94.592000pt;}
.x15{left:98.592000pt;}
.xd{left:101.632000pt;}
.x36{left:102.592000pt;}
.x24{left:113.600000pt;}
.x4{left:115.552000pt;}
.xc{left:118.432000pt;}
.x35{left:123.072000pt;}
.x2{left:124.192000pt;}
.x23{left:132.352000pt;}
.x9{left:141.786667pt;}
.x34{left:158.583333pt;}
.x2a{left:161.186667pt;}
.x2d{left:170.106667pt;}
.x2b{left:176.093333pt;}
.x2c{left:182.906667pt;}
.x2e{left:189.760000pt;}
.x16{left:195.714667pt;}
.x2f{left:198.746667pt;}
.x1e{left:207.386667pt;}
.x32{left:212.343333pt;}
.x33{left:217.786667pt;}
.x28{left:224.506667pt;}
.x10{left:225.634667pt;}
.x25{left:251.903333pt;}
.x26{left:257.346667pt;}
.x18{left:277.186667pt;}
.x14{left:286.626667pt;}
.x29{left:315.746667pt;}
.x27{left:316.706667pt;}
.x1f{left:347.586667pt;}
.x3e{left:349.026667pt;}
.x3{left:361.346667pt;}
.xb{left:365.506667pt;}
.x5{left:368.066667pt;}
.x19{left:373.346667pt;}
.x1{left:398.493333pt;}
.x22{left:406.493333pt;}
.x1c{left:430.013333pt;}
.x3a{left:434.346667pt;}
.x30{left:452.410000pt;}
.x31{left:457.853333pt;}
.x20{left:460.890000pt;}
.x21{left:465.213333pt;}
.x37{left:478.010000pt;}
.x1a{left:482.330000pt;}
.x1b{left:486.653333pt;}
.x38{left:488.893333pt;}
.x3b{left:576.293333pt;}
.x8{left:578.053333pt;}
.x6{left:596.773333pt;}
.x1d{left:672.613333pt;}
.x12{left:697.570000pt;}
.x13{left:703.013333pt;}
.x11{left:709.116667pt;}
.x7{left:713.757333pt;}
.x17{left:765.920000pt;}
}




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