
    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_0601fbc92fb7f2444c6376e3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.686854;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_91b64da91d76d115b5cfcedf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.762000;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_9db086267269657a73ed2522.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.738000;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_0601fbc92fb7f2444c6376e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.686854;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_91b64da91d76d115b5cfcedf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.762000;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_e7e48a6aa0fa5a039fd1e7e7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.043000;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_8b30017a32ac3593c12dfb5c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.709473;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_c4d57dfb8906f9d6b179665c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.047000;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_0601fbc92fb7f2444c6376e3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.686854;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_91b64da91d76d115b5cfcedf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.762000;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_4a5cf14989079ca638993c06.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.738000;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_fd58aa821b492c17154949b8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.050000;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_e2df7e664998d0066aef8f61.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.692383;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.000000,0.262155,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.262155,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.262155,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.002208,0.262146,-0.249991,0.002105,0,0);-ms-transform:matrix(0.002208,0.262146,-0.249991,0.002105,0,0);-webkit-transform:matrix(0.002208,0.262146,-0.249991,0.002105,0,0);}
.m5{transform:matrix(0.238407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238407,0.000000,0.000000,0.250000,0,0);}
.m2{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.262155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262155,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;}
.v2{vertical-align:25.974000px;}
.v1{vertical-align:35.964000px;}
.ls2{letter-spacing:-2.160000px;}
.ls1{letter-spacing:-1.620000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:1.855200px;}
.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;}
}
.ws8c{word-spacing:-21.816000px;}
.ws1{word-spacing:-20.196000px;}
.ws5d{word-spacing:-16.536000px;}
.ws9c{word-spacing:-15.264000px;}
.ws9b{word-spacing:-14.544000px;}
.ws43{word-spacing:-14.196000px;}
.ws3{word-spacing:-12.720000px;}
.ws2{word-spacing:-9.640488px;}
.ws5e{word-spacing:-7.254000px;}
.ws61{word-spacing:-6.240000px;}
.ws1d{word-spacing:-5.928000px;}
.ws1b{word-spacing:-5.850000px;}
.ws55{word-spacing:-5.616000px;}
.wsa{word-spacing:-4.602000px;}
.ws2f{word-spacing:-4.524000px;}
.ws5{word-spacing:-4.212000px;}
.ws3e{word-spacing:-3.978000px;}
.ws84{word-spacing:-3.822000px;}
.ws6f{word-spacing:-3.198000px;}
.ws62{word-spacing:-3.042000px;}
.ws64{word-spacing:-2.964000px;}
.ws9d{word-spacing:-2.952000px;}
.ws29{word-spacing:-2.808000px;}
.ws71{word-spacing:-2.730000px;}
.ws53{word-spacing:-2.652000px;}
.ws7d{word-spacing:-2.574000px;}
.ws60{word-spacing:-1.950000px;}
.ws69{word-spacing:-1.944000px;}
.ws97{word-spacing:-1.872000px;}
.ws91{word-spacing:-1.794000px;}
.ws63{word-spacing:-1.560000px;}
.ws6e{word-spacing:-1.326000px;}
.ws92{word-spacing:-1.092000px;}
.ws21{word-spacing:-1.014000px;}
.ws39{word-spacing:-0.936000px;}
.ws8b{word-spacing:-0.858000px;}
.ws95{word-spacing:-0.702000px;}
.ws36{word-spacing:-0.624000px;}
.ws88{word-spacing:-0.312000px;}
.ws9a{word-spacing:-0.238792px;}
.ws40{word-spacing:-0.234000px;}
.ws0{word-spacing:-0.205259px;}
.ws99{word-spacing:-0.078000px;}
.ws4{word-spacing:0.000000px;}
.ws54{word-spacing:0.078000px;}
.ws7{word-spacing:0.312000px;}
.ws2b{word-spacing:0.624000px;}
.ws49{word-spacing:0.702000px;}
.ws30{word-spacing:0.780000px;}
.ws33{word-spacing:0.858000px;}
.ws2e{word-spacing:1.014000px;}
.ws41{word-spacing:1.092000px;}
.ws66{word-spacing:1.170000px;}
.ws9{word-spacing:1.248000px;}
.ws2c{word-spacing:1.296000px;}
.ws19{word-spacing:1.326000px;}
.ws80{word-spacing:1.404000px;}
.ws7e{word-spacing:1.482000px;}
.ws31{word-spacing:1.560000px;}
.ws81{word-spacing:1.638000px;}
.ws5b{word-spacing:1.794000px;}
.ws8d{word-spacing:1.872000px;}
.ws1a{word-spacing:2.028000px;}
.ws20{word-spacing:2.106000px;}
.ws8e{word-spacing:2.418000px;}
.ws18{word-spacing:2.574000px;}
.ws82{word-spacing:2.886000px;}
.ws8{word-spacing:2.964000px;}
.ws34{word-spacing:3.354000px;}
.ws3b{word-spacing:3.432000px;}
.ws3c{word-spacing:3.510000px;}
.ws85{word-spacing:3.978000px;}
.ws2d{word-spacing:4.134000px;}
.ws10{word-spacing:4.368000px;}
.ws70{word-spacing:4.914000px;}
.ws1e{word-spacing:4.992000px;}
.ws23{word-spacing:5.226000px;}
.ws4d{word-spacing:5.538000px;}
.ws8a{word-spacing:5.616000px;}
.ws14{word-spacing:5.694000px;}
.ws15{word-spacing:5.772000px;}
.ws12{word-spacing:5.850000px;}
.ws4a{word-spacing:6.084000px;}
.ws90{word-spacing:6.162000px;}
.ws27{word-spacing:6.240000px;}
.ws4e{word-spacing:6.318000px;}
.ws11{word-spacing:6.474000px;}
.ws93{word-spacing:6.552000px;}
.ws2a{word-spacing:6.708000px;}
.ws4f{word-spacing:6.786000px;}
.ws44{word-spacing:6.864000px;}
.ws28{word-spacing:7.098000px;}
.ws22{word-spacing:7.488000px;}
.ws57{word-spacing:7.800000px;}
.ws50{word-spacing:8.034000px;}
.wsc{word-spacing:8.502000px;}
.ws16{word-spacing:8.580000px;}
.ws4b{word-spacing:8.658000px;}
.ws65{word-spacing:8.970000px;}
.ws96{word-spacing:9.048000px;}
.ws79{word-spacing:9.126000px;}
.ws76{word-spacing:9.360000px;}
.ws5f{word-spacing:9.516000px;}
.ws45{word-spacing:9.672000px;}
.wsf{word-spacing:9.750000px;}
.wsd{word-spacing:9.984000px;}
.ws56{word-spacing:10.608000px;}
.ws58{word-spacing:10.920000px;}
.ws51{word-spacing:10.998000px;}
.ws68{word-spacing:11.076000px;}
.ws46{word-spacing:11.154000px;}
.ws1f{word-spacing:11.232000px;}
.ws7a{word-spacing:12.012000px;}
.ws47{word-spacing:12.090000px;}
.ws3d{word-spacing:12.168000px;}
.ws7b{word-spacing:12.480000px;}
.ws35{word-spacing:12.558000px;}
.ws13{word-spacing:12.714000px;}
.ws86{word-spacing:12.792000px;}
.ws4c{word-spacing:13.260000px;}
.ws48{word-spacing:14.118000px;}
.ws5a{word-spacing:14.430000px;}
.ws1c{word-spacing:14.586000px;}
.ws25{word-spacing:14.742000px;}
.ws6{word-spacing:14.976000px;}
.ws37{word-spacing:15.132000px;}
.ws8f{word-spacing:15.288000px;}
.ws87{word-spacing:15.366000px;}
.ws7c{word-spacing:16.692000px;}
.ws78{word-spacing:17.082000px;}
.ws94{word-spacing:17.160000px;}
.ws26{word-spacing:17.238000px;}
.ws6c{word-spacing:17.316000px;}
.ws3a{word-spacing:17.862000px;}
.ws5c{word-spacing:18.252000px;}
.wse{word-spacing:18.564000px;}
.ws32{word-spacing:18.720000px;}
.ws52{word-spacing:19.266000px;}
.ws59{word-spacing:19.422000px;}
.ws83{word-spacing:19.734000px;}
.ws75{word-spacing:19.812000px;}
.wsb{word-spacing:19.890000px;}
.ws3f{word-spacing:19.968000px;}
.ws6b{word-spacing:22.308000px;}
.ws38{word-spacing:22.386000px;}
.ws6a{word-spacing:22.464000px;}
.ws7f{word-spacing:23.322000px;}
.ws74{word-spacing:23.478000px;}
.ws17{word-spacing:26.052000px;}
.ws77{word-spacing:26.364000px;}
.ws6d{word-spacing:26.442000px;}
.ws72{word-spacing:27.144000px;}
.ws89{word-spacing:27.456000px;}
.ws67{word-spacing:29.796000px;}
.ws98{word-spacing:30.186000px;}
.ws24{word-spacing:30.888000px;}
.ws42{word-spacing:31.980000px;}
.ws73{word-spacing:33.696000px;}
._9{margin-left:-12.144000px;}
._c{margin-left:-10.557600px;}
._5{margin-left:-9.048600px;}
._4{margin-left:-7.786800px;}
._a{margin-left:-5.172000px;}
._1{margin-left:-4.104000px;}
._0{margin-left:-3.034800px;}
._6{margin-left:-1.459200px;}
._2{width:1.069200px;}
._8{width:2.133600px;}
._3{width:3.769200px;}
._b{width:7.119600px;}
._d{width:9.690000px;}
._e{width:11.939580px;}
._7{width:160.620000px;}
.fc5{color:rgb(0,104,56);}
.fc4{color:transparent;}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(167,165,166);}
.fc0{color:rgb(29,100,52);}
.fs9{font-size:45.474000px;}
.fsa{font-size:60.000000px;}
.fs6{font-size:62.964000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:78.000000px;}
.fs5{font-size:108.000000px;}
.fsb{font-size:132.000000px;}
.fs2{font-size:144.000000px;}
.fs0{font-size:152.428800px;}
.fs1{font-size:205.258874px;}
.fsc{font-size:238.791600px;}
.fs3{font-size:871.128000px;}
.fs4{font-size:958.240800px;}
.y0{bottom:0.000000px;}
.y3{bottom:39.816000px;}
.y20{bottom:92.267850px;}
.y5c{bottom:96.091500px;}
.y9f{bottom:102.587550px;}
.y89{bottom:110.099400px;}
.y1f{bottom:110.267850px;}
.yb3{bottom:118.331700px;}
.y5b{bottom:123.091500px;}
.y1e{bottom:128.267850px;}
.y9e{bottom:129.587550px;}
.y88{bottom:137.099400px;}
.yb2{bottom:143.831700px;}
.y1d{bottom:146.267850px;}
.yce{bottom:147.327000px;}
.y5a{bottom:150.091500px;}
.y9d{bottom:156.587550px;}
.y87{bottom:164.099400px;}
.y1c{bottom:164.267850px;}
.yb1{bottom:169.331700px;}
.y59{bottom:177.091500px;}
.y45{bottom:182.267850px;}
.y9c{bottom:183.587550px;}
.y1b{bottom:184.393950px;}
.y86{bottom:191.099400px;}
.y44{bottom:200.267850px;}
.y1a{bottom:202.393950px;}
.yb0{bottom:203.335650px;}
.y58{bottom:204.091500px;}
.y9b{bottom:210.587550px;}
.y85{bottom:218.099400px;}
.y43{bottom:218.267850px;}
.y19{bottom:220.393950px;}
.y77{bottom:220.579800px;}
.yaf{bottom:228.835650px;}
.y57{bottom:231.091500px;}
.y42{bottom:236.267850px;}
.y9a{bottom:237.587550px;}
.y18{bottom:238.393950px;}
.y84{bottom:245.099400px;}
.y76{bottom:247.579800px;}
.yae{bottom:254.335650px;}
.y50{bottom:255.285300px;}
.y17{bottom:256.393950px;}
.y56{bottom:258.091500px;}
.y99{bottom:264.587550px;}
.y83{bottom:272.099400px;}
.y16{bottom:274.393950px;}
.y75{bottom:274.579800px;}
.yad{bottom:279.835650px;}
.y4f{bottom:282.285300px;}
.y55{bottom:285.091500px;}
.y41{bottom:291.587550px;}
.y15{bottom:292.393950px;}
.y82{bottom:299.099400px;}
.y74{bottom:301.579800px;}
.yac{bottom:305.335650px;}
.y4e{bottom:309.285300px;}
.y14{bottom:310.393950px;}
.y54{bottom:312.091500px;}
.y40{bottom:318.587550px;}
.y81{bottom:326.099400px;}
.y13{bottom:328.393950px;}
.y73{bottom:328.579800px;}
.yab{bottom:330.835650px;}
.y4d{bottom:336.285300px;}
.y53{bottom:339.091500px;}
.y3f{bottom:345.587550px;}
.y98{bottom:348.351450px;}
.y80{bottom:353.099400px;}
.y72{bottom:355.579800px;}
.yaa{bottom:356.335650px;}
.y4c{bottom:363.285300px;}
.y52{bottom:366.091500px;}
.y3e{bottom:372.587550px;}
.y7f{bottom:380.099400px;}
.y71{bottom:382.579800px;}
.y4b{bottom:390.285300px;}
.ya9{bottom:390.339600px;}
.y3d{bottom:399.587550px;}
.y12{bottom:405.790050px;}
.y70{bottom:409.579800px;}
.y51{bottom:410.099400px;}
.ya8{bottom:415.839600px;}
.y4a{bottom:417.285300px;}
.y97{bottom:423.115200px;}
.y7e{bottom:424.107300px;}
.y3c{bottom:426.587700px;}
.ye4{bottom:427.851600px;}
.y11{bottom:432.790050px;}
.y6f{bottom:436.579800px;}
.ya7{bottom:441.339600px;}
.y49{bottom:444.285300px;}
.y96{bottom:450.115200px;}
.ye3{bottom:450.351600px;}
.y3b{bottom:453.587700px;}
.y10{bottom:459.790050px;}
.y6e{bottom:463.579800px;}
.ya6{bottom:466.839600px;}
.y48{bottom:471.285300px;}
.ye2{bottom:472.851600px;}
.y95{bottom:477.115200px;}
.y3a{bottom:480.587700px;}
.ycd{bottom:483.410400px;}
.yf{bottom:486.790050px;}
.ya5{bottom:492.339600px;}
.y94{bottom:504.115200px;}
.y39{bottom:507.587700px;}
.ycc{bottom:508.910400px;}
.ye{bottom:513.790050px;}
.y47{bottom:515.293200px;}
.ye1{bottom:517.851600px;}
.y6d{bottom:520.343550px;}
.ya4{bottom:526.343550px;}
.y93{bottom:531.115200px;}
.ycb{bottom:534.410400px;}
.y38{bottom:534.587700px;}
.y46{bottom:539.293200px;}
.ye0{bottom:540.351600px;}
.yd{bottom:540.790050px;}
.ya3{bottom:551.843550px;}
.y92{bottom:558.115200px;}
.y37{bottom:561.587700px;}
.yc{bottom:567.790050px;}
.yca{bottom:568.414350px;}
.ya2{bottom:577.343550px;}
.y91{bottom:585.115200px;}
.ydf{bottom:585.351600px;}
.y36{bottom:588.587700px;}
.yc9{bottom:593.914350px;}
.yb{bottom:594.790050px;}
.y6c{bottom:595.107300px;}
.ya1{bottom:602.843550px;}
.y90{bottom:612.115200px;}
.y35{bottom:615.587700px;}
.yde{bottom:616.355550px;}
.yc8{bottom:619.414350px;}
.ya{bottom:621.790050px;}
.y6b{bottom:622.107300px;}
.y8f{bottom:639.115200px;}
.y2{bottom:641.213550px;}
.y34{bottom:642.587700px;}
.yc7{bottom:644.914350px;}
.ya0{bottom:645.351450px;}
.y6a{bottom:649.107300px;}
.y8e{bottom:666.115200px;}
.y33{bottom:669.587700px;}
.ydd{bottom:674.111550px;}
.y69{bottom:676.107300px;}
.y9{bottom:678.553800px;}
.yc6{bottom:678.918300px;}
.y8d{bottom:693.115200px;}
.y32{bottom:696.587700px;}
.y68{bottom:703.107300px;}
.yc5{bottom:704.418300px;}
.ydc{bottom:705.115350px;}
.y8c{bottom:720.115200px;}
.y31{bottom:723.587700px;}
.yc4{bottom:729.918300px;}
.y67{bottom:730.107300px;}
.y8b{bottom:747.115200px;}
.y30{bottom:750.587700px;}
.yc3{bottom:755.418300px;}
.y66{bottom:757.107300px;}
.y8{bottom:761.065650px;}
.ydb{bottom:761.971350px;}
.y1{bottom:767.316150px;}
.y8a{bottom:774.115200px;}
.y2f{bottom:777.587550px;}
.y65{bottom:784.107300px;}
.yda{bottom:784.471350px;}
.yc2{bottom:789.422250px;}
.y7d{bottom:801.115200px;}
.y2e{bottom:804.587550px;}
.y7{bottom:805.073550px;}
.yd9{bottom:806.971350px;}
.y64{bottom:811.107300px;}
.yc1{bottom:814.922100px;}
.y7c{bottom:828.115200px;}
.yd8{bottom:829.471350px;}
.y2d{bottom:831.587550px;}
.y63{bottom:838.107300px;}
.yc0{bottom:840.422100px;}
.y6{bottom:850.073550px;}
.yd7{bottom:851.971350px;}
.y7b{bottom:855.115200px;}
.y62{bottom:865.107300px;}
.ybf{bottom:874.426050px;}
.y7a{bottom:882.115200px;}
.yd6{bottom:882.975150px;}
.y2c{bottom:888.351450px;}
.y61{bottom:892.107300px;}
.ybe{bottom:899.926050px;}
.y79{bottom:909.115200px;}
.y60{bottom:919.107300px;}
.ybd{bottom:925.426050px;}
.y78{bottom:936.115200px;}
.yd5{bottom:939.831150px;}
.y5f{bottom:946.107300px;}
.ybc{bottom:950.926050px;}
.y2b{bottom:963.115200px;}
.yd4{bottom:970.834950px;}
.y5{bottom:972.173100px;}
.y5e{bottom:973.107300px;}
.ybb{bottom:976.426050px;}
.y2a{bottom:990.115200px;}
.y5d{bottom:1000.107300px;}
.yba{bottom:1010.430150px;}
.y29{bottom:1017.115200px;}
.yd3{bottom:1027.690950px;}
.yb9{bottom:1035.930150px;}
.y28{bottom:1044.115200px;}
.yd2{bottom:1050.190950px;}
.yb8{bottom:1069.933950px;}
.y27{bottom:1071.115200px;}
.yd1{bottom:1072.690950px;}
.y4{bottom:1074.027300px;}
.yd0{bottom:1095.190950px;}
.yb7{bottom:1095.433950px;}
.y26{bottom:1098.115200px;}
.yb6{bottom:1120.933950px;}
.y25{bottom:1125.115200px;}
.ycf{bottom:1126.194900px;}
.y22{bottom:1139.604000px;}
.yb5{bottom:1146.433950px;}
.y24{bottom:1152.115200px;}
.y23{bottom:1179.115200px;}
.yb4{bottom:1180.437900px;}
.y21{bottom:1190.604000px;}
.ha{height:49.620000px;}
.h8{height:49.992188px;}
.h10{height:59.544000px;}
.hc{height:59.616000px;}
.hf{height:60.048000px;}
.h9{height:64.506000px;}
.hd{height:64.584000px;}
.h7{height:90.072000px;}
.hb{height:95.832000px;}
.h2{height:102.388989px;}
.h4{height:104.544000px;}
.h3{height:153.944155px;}
.he{height:161.720678px;}
.h5{height:585.151334px;}
.h6{height:718.680600px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:52.276050px;}
.x5{left:61.653450px;}
.x3{left:71.357100px;}
.x6{left:104.173200px;}
.x7{left:108.425250px;}
.xd{left:129.425250px;}
.x8{left:159.448800px;}
.xb{left:163.700700px;}
.xc{left:184.700850px;}
.xf{left:328.229100px;}
.x9{left:782.590650px;}
.xa{left:783.811500px;}
.xe{left:805.928850px;}
.x1{left:812.505450px;}
.x2{left:815.936850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:23.088000pt;}
.v1{vertical-align:31.968000pt;}
.ls2{letter-spacing:-1.920000pt;}
.ls1{letter-spacing:-1.440000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:1.649067pt;}
.ws8c{word-spacing:-19.392000pt;}
.ws1{word-spacing:-17.952000pt;}
.ws5d{word-spacing:-14.698667pt;}
.ws9c{word-spacing:-13.568000pt;}
.ws9b{word-spacing:-12.928000pt;}
.ws43{word-spacing:-12.618667pt;}
.ws3{word-spacing:-11.306667pt;}
.ws2{word-spacing:-8.569323pt;}
.ws5e{word-spacing:-6.448000pt;}
.ws61{word-spacing:-5.546667pt;}
.ws1d{word-spacing:-5.269333pt;}
.ws1b{word-spacing:-5.200000pt;}
.ws55{word-spacing:-4.992000pt;}
.wsa{word-spacing:-4.090667pt;}
.ws2f{word-spacing:-4.021333pt;}
.ws5{word-spacing:-3.744000pt;}
.ws3e{word-spacing:-3.536000pt;}
.ws84{word-spacing:-3.397333pt;}
.ws6f{word-spacing:-2.842667pt;}
.ws62{word-spacing:-2.704000pt;}
.ws64{word-spacing:-2.634667pt;}
.ws9d{word-spacing:-2.624000pt;}
.ws29{word-spacing:-2.496000pt;}
.ws71{word-spacing:-2.426667pt;}
.ws53{word-spacing:-2.357333pt;}
.ws7d{word-spacing:-2.288000pt;}
.ws60{word-spacing:-1.733333pt;}
.ws69{word-spacing:-1.728000pt;}
.ws97{word-spacing:-1.664000pt;}
.ws91{word-spacing:-1.594667pt;}
.ws63{word-spacing:-1.386667pt;}
.ws6e{word-spacing:-1.178667pt;}
.ws92{word-spacing:-0.970667pt;}
.ws21{word-spacing:-0.901333pt;}
.ws39{word-spacing:-0.832000pt;}
.ws8b{word-spacing:-0.762667pt;}
.ws95{word-spacing:-0.624000pt;}
.ws36{word-spacing:-0.554667pt;}
.ws88{word-spacing:-0.277333pt;}
.ws9a{word-spacing:-0.212259pt;}
.ws40{word-spacing:-0.208000pt;}
.ws0{word-spacing:-0.182452pt;}
.ws99{word-spacing:-0.069333pt;}
.ws4{word-spacing:0.000000pt;}
.ws54{word-spacing:0.069333pt;}
.ws7{word-spacing:0.277333pt;}
.ws2b{word-spacing:0.554667pt;}
.ws49{word-spacing:0.624000pt;}
.ws30{word-spacing:0.693333pt;}
.ws33{word-spacing:0.762667pt;}
.ws2e{word-spacing:0.901333pt;}
.ws41{word-spacing:0.970667pt;}
.ws66{word-spacing:1.040000pt;}
.ws9{word-spacing:1.109333pt;}
.ws2c{word-spacing:1.152000pt;}
.ws19{word-spacing:1.178667pt;}
.ws80{word-spacing:1.248000pt;}
.ws7e{word-spacing:1.317333pt;}
.ws31{word-spacing:1.386667pt;}
.ws81{word-spacing:1.456000pt;}
.ws5b{word-spacing:1.594667pt;}
.ws8d{word-spacing:1.664000pt;}
.ws1a{word-spacing:1.802667pt;}
.ws20{word-spacing:1.872000pt;}
.ws8e{word-spacing:2.149333pt;}
.ws18{word-spacing:2.288000pt;}
.ws82{word-spacing:2.565333pt;}
.ws8{word-spacing:2.634667pt;}
.ws34{word-spacing:2.981333pt;}
.ws3b{word-spacing:3.050667pt;}
.ws3c{word-spacing:3.120000pt;}
.ws85{word-spacing:3.536000pt;}
.ws2d{word-spacing:3.674667pt;}
.ws10{word-spacing:3.882667pt;}
.ws70{word-spacing:4.368000pt;}
.ws1e{word-spacing:4.437333pt;}
.ws23{word-spacing:4.645333pt;}
.ws4d{word-spacing:4.922667pt;}
.ws8a{word-spacing:4.992000pt;}
.ws14{word-spacing:5.061333pt;}
.ws15{word-spacing:5.130667pt;}
.ws12{word-spacing:5.200000pt;}
.ws4a{word-spacing:5.408000pt;}
.ws90{word-spacing:5.477333pt;}
.ws27{word-spacing:5.546667pt;}
.ws4e{word-spacing:5.616000pt;}
.ws11{word-spacing:5.754667pt;}
.ws93{word-spacing:5.824000pt;}
.ws2a{word-spacing:5.962667pt;}
.ws4f{word-spacing:6.032000pt;}
.ws44{word-spacing:6.101333pt;}
.ws28{word-spacing:6.309333pt;}
.ws22{word-spacing:6.656000pt;}
.ws57{word-spacing:6.933333pt;}
.ws50{word-spacing:7.141333pt;}
.wsc{word-spacing:7.557333pt;}
.ws16{word-spacing:7.626667pt;}
.ws4b{word-spacing:7.696000pt;}
.ws65{word-spacing:7.973333pt;}
.ws96{word-spacing:8.042667pt;}
.ws79{word-spacing:8.112000pt;}
.ws76{word-spacing:8.320000pt;}
.ws5f{word-spacing:8.458667pt;}
.ws45{word-spacing:8.597333pt;}
.wsf{word-spacing:8.666667pt;}
.wsd{word-spacing:8.874667pt;}
.ws56{word-spacing:9.429333pt;}
.ws58{word-spacing:9.706667pt;}
.ws51{word-spacing:9.776000pt;}
.ws68{word-spacing:9.845333pt;}
.ws46{word-spacing:9.914667pt;}
.ws1f{word-spacing:9.984000pt;}
.ws7a{word-spacing:10.677333pt;}
.ws47{word-spacing:10.746667pt;}
.ws3d{word-spacing:10.816000pt;}
.ws7b{word-spacing:11.093333pt;}
.ws35{word-spacing:11.162667pt;}
.ws13{word-spacing:11.301333pt;}
.ws86{word-spacing:11.370667pt;}
.ws4c{word-spacing:11.786667pt;}
.ws48{word-spacing:12.549333pt;}
.ws5a{word-spacing:12.826667pt;}
.ws1c{word-spacing:12.965333pt;}
.ws25{word-spacing:13.104000pt;}
.ws6{word-spacing:13.312000pt;}
.ws37{word-spacing:13.450667pt;}
.ws8f{word-spacing:13.589333pt;}
.ws87{word-spacing:13.658667pt;}
.ws7c{word-spacing:14.837333pt;}
.ws78{word-spacing:15.184000pt;}
.ws94{word-spacing:15.253333pt;}
.ws26{word-spacing:15.322667pt;}
.ws6c{word-spacing:15.392000pt;}
.ws3a{word-spacing:15.877333pt;}
.ws5c{word-spacing:16.224000pt;}
.wse{word-spacing:16.501333pt;}
.ws32{word-spacing:16.640000pt;}
.ws52{word-spacing:17.125333pt;}
.ws59{word-spacing:17.264000pt;}
.ws83{word-spacing:17.541333pt;}
.ws75{word-spacing:17.610667pt;}
.wsb{word-spacing:17.680000pt;}
.ws3f{word-spacing:17.749333pt;}
.ws6b{word-spacing:19.829333pt;}
.ws38{word-spacing:19.898667pt;}
.ws6a{word-spacing:19.968000pt;}
.ws7f{word-spacing:20.730667pt;}
.ws74{word-spacing:20.869333pt;}
.ws17{word-spacing:23.157333pt;}
.ws77{word-spacing:23.434667pt;}
.ws6d{word-spacing:23.504000pt;}
.ws72{word-spacing:24.128000pt;}
.ws89{word-spacing:24.405333pt;}
.ws67{word-spacing:26.485333pt;}
.ws98{word-spacing:26.832000pt;}
.ws24{word-spacing:27.456000pt;}
.ws42{word-spacing:28.426667pt;}
.ws73{word-spacing:29.952000pt;}
._9{margin-left:-10.794667pt;}
._c{margin-left:-9.384533pt;}
._5{margin-left:-8.043200pt;}
._4{margin-left:-6.921600pt;}
._a{margin-left:-4.597333pt;}
._1{margin-left:-3.648000pt;}
._0{margin-left:-2.697600pt;}
._6{margin-left:-1.297067pt;}
._2{width:0.950400pt;}
._8{width:1.896533pt;}
._3{width:3.350400pt;}
._b{width:6.328533pt;}
._d{width:8.613333pt;}
._e{width:10.612960pt;}
._7{width:142.773333pt;}
.fs9{font-size:40.421333pt;}
.fsa{font-size:53.333333pt;}
.fs6{font-size:55.968000pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:69.333333pt;}
.fs5{font-size:96.000000pt;}
.fsb{font-size:117.333333pt;}
.fs2{font-size:128.000000pt;}
.fs0{font-size:135.492267pt;}
.fs1{font-size:182.452332pt;}
.fsc{font-size:212.259200pt;}
.fs3{font-size:774.336000pt;}
.fs4{font-size:851.769600pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:35.392000pt;}
.y20{bottom:82.015867pt;}
.y5c{bottom:85.414667pt;}
.y9f{bottom:91.188933pt;}
.y89{bottom:97.866133pt;}
.y1f{bottom:98.015867pt;}
.yb3{bottom:105.183733pt;}
.y5b{bottom:109.414667pt;}
.y1e{bottom:114.015867pt;}
.y9e{bottom:115.188933pt;}
.y88{bottom:121.866133pt;}
.yb2{bottom:127.850400pt;}
.y1d{bottom:130.015867pt;}
.yce{bottom:130.957333pt;}
.y5a{bottom:133.414667pt;}
.y9d{bottom:139.188933pt;}
.y87{bottom:145.866133pt;}
.y1c{bottom:146.015867pt;}
.yb1{bottom:150.517067pt;}
.y59{bottom:157.414667pt;}
.y45{bottom:162.015867pt;}
.y9c{bottom:163.188933pt;}
.y1b{bottom:163.905733pt;}
.y86{bottom:169.866133pt;}
.y44{bottom:178.015867pt;}
.y1a{bottom:179.905733pt;}
.yb0{bottom:180.742800pt;}
.y58{bottom:181.414667pt;}
.y9b{bottom:187.188933pt;}
.y85{bottom:193.866133pt;}
.y43{bottom:194.015867pt;}
.y19{bottom:195.905733pt;}
.y77{bottom:196.070933pt;}
.yaf{bottom:203.409467pt;}
.y57{bottom:205.414667pt;}
.y42{bottom:210.015867pt;}
.y9a{bottom:211.188933pt;}
.y18{bottom:211.905733pt;}
.y84{bottom:217.866133pt;}
.y76{bottom:220.070933pt;}
.yae{bottom:226.076133pt;}
.y50{bottom:226.920267pt;}
.y17{bottom:227.905733pt;}
.y56{bottom:229.414667pt;}
.y99{bottom:235.188933pt;}
.y83{bottom:241.866133pt;}
.y16{bottom:243.905733pt;}
.y75{bottom:244.070933pt;}
.yad{bottom:248.742800pt;}
.y4f{bottom:250.920267pt;}
.y55{bottom:253.414667pt;}
.y41{bottom:259.188933pt;}
.y15{bottom:259.905733pt;}
.y82{bottom:265.866133pt;}
.y74{bottom:268.070933pt;}
.yac{bottom:271.409467pt;}
.y4e{bottom:274.920267pt;}
.y14{bottom:275.905733pt;}
.y54{bottom:277.414667pt;}
.y40{bottom:283.188933pt;}
.y81{bottom:289.866133pt;}
.y13{bottom:291.905733pt;}
.y73{bottom:292.070933pt;}
.yab{bottom:294.076133pt;}
.y4d{bottom:298.920267pt;}
.y53{bottom:301.414667pt;}
.y3f{bottom:307.188933pt;}
.y98{bottom:309.645733pt;}
.y80{bottom:313.866133pt;}
.y72{bottom:316.070933pt;}
.yaa{bottom:316.742800pt;}
.y4c{bottom:322.920267pt;}
.y52{bottom:325.414667pt;}
.y3e{bottom:331.188933pt;}
.y7f{bottom:337.866133pt;}
.y71{bottom:340.070933pt;}
.y4b{bottom:346.920267pt;}
.ya9{bottom:346.968533pt;}
.y3d{bottom:355.188933pt;}
.y12{bottom:360.702267pt;}
.y70{bottom:364.070933pt;}
.y51{bottom:364.532800pt;}
.ya8{bottom:369.635200pt;}
.y4a{bottom:370.920267pt;}
.y97{bottom:376.102400pt;}
.y7e{bottom:376.984267pt;}
.y3c{bottom:379.189067pt;}
.ye4{bottom:380.312533pt;}
.y11{bottom:384.702267pt;}
.y6f{bottom:388.070933pt;}
.ya7{bottom:392.301867pt;}
.y49{bottom:394.920267pt;}
.y96{bottom:400.102400pt;}
.ye3{bottom:400.312533pt;}
.y3b{bottom:403.189067pt;}
.y10{bottom:408.702267pt;}
.y6e{bottom:412.070933pt;}
.ya6{bottom:414.968533pt;}
.y48{bottom:418.920267pt;}
.ye2{bottom:420.312533pt;}
.y95{bottom:424.102400pt;}
.y3a{bottom:427.189067pt;}
.ycd{bottom:429.698133pt;}
.yf{bottom:432.702267pt;}
.ya5{bottom:437.635200pt;}
.y94{bottom:448.102400pt;}
.y39{bottom:451.189067pt;}
.ycc{bottom:452.364800pt;}
.ye{bottom:456.702267pt;}
.y47{bottom:458.038400pt;}
.ye1{bottom:460.312533pt;}
.y6d{bottom:462.527600pt;}
.ya4{bottom:467.860933pt;}
.y93{bottom:472.102400pt;}
.ycb{bottom:475.031467pt;}
.y38{bottom:475.189067pt;}
.y46{bottom:479.371733pt;}
.ye0{bottom:480.312533pt;}
.yd{bottom:480.702267pt;}
.ya3{bottom:490.527600pt;}
.y92{bottom:496.102400pt;}
.y37{bottom:499.189067pt;}
.yc{bottom:504.702267pt;}
.yca{bottom:505.257200pt;}
.ya2{bottom:513.194267pt;}
.y91{bottom:520.102400pt;}
.ydf{bottom:520.312533pt;}
.y36{bottom:523.189067pt;}
.yc9{bottom:527.923867pt;}
.yb{bottom:528.702267pt;}
.y6c{bottom:528.984267pt;}
.ya1{bottom:535.860933pt;}
.y90{bottom:544.102400pt;}
.y35{bottom:547.189067pt;}
.yde{bottom:547.871600pt;}
.yc8{bottom:550.590533pt;}
.ya{bottom:552.702267pt;}
.y6b{bottom:552.984267pt;}
.y8f{bottom:568.102400pt;}
.y2{bottom:569.967600pt;}
.y34{bottom:571.189067pt;}
.yc7{bottom:573.257200pt;}
.ya0{bottom:573.645733pt;}
.y6a{bottom:576.984267pt;}
.y8e{bottom:592.102400pt;}
.y33{bottom:595.189067pt;}
.ydd{bottom:599.210267pt;}
.y69{bottom:600.984267pt;}
.y9{bottom:603.158933pt;}
.yc6{bottom:603.482933pt;}
.y8d{bottom:616.102400pt;}
.y32{bottom:619.189067pt;}
.y68{bottom:624.984267pt;}
.yc5{bottom:626.149600pt;}
.ydc{bottom:626.769200pt;}
.y8c{bottom:640.102400pt;}
.y31{bottom:643.189067pt;}
.yc4{bottom:648.816267pt;}
.y67{bottom:648.984267pt;}
.y8b{bottom:664.102400pt;}
.y30{bottom:667.189067pt;}
.yc3{bottom:671.482933pt;}
.y66{bottom:672.984267pt;}
.y8{bottom:676.502800pt;}
.ydb{bottom:677.307867pt;}
.y1{bottom:682.058800pt;}
.y8a{bottom:688.102400pt;}
.y2f{bottom:691.188933pt;}
.y65{bottom:696.984267pt;}
.yda{bottom:697.307867pt;}
.yc2{bottom:701.708667pt;}
.y7d{bottom:712.102400pt;}
.y2e{bottom:715.188933pt;}
.y7{bottom:715.620933pt;}
.yd9{bottom:717.307867pt;}
.y64{bottom:720.984267pt;}
.yc1{bottom:724.375200pt;}
.y7c{bottom:736.102400pt;}
.yd8{bottom:737.307867pt;}
.y2d{bottom:739.188933pt;}
.y63{bottom:744.984267pt;}
.yc0{bottom:747.041867pt;}
.y6{bottom:755.620933pt;}
.yd7{bottom:757.307867pt;}
.y7b{bottom:760.102400pt;}
.y62{bottom:768.984267pt;}
.ybf{bottom:777.267600pt;}
.y7a{bottom:784.102400pt;}
.yd6{bottom:784.866800pt;}
.y2c{bottom:789.645733pt;}
.y61{bottom:792.984267pt;}
.ybe{bottom:799.934267pt;}
.y79{bottom:808.102400pt;}
.y60{bottom:816.984267pt;}
.ybd{bottom:822.600933pt;}
.y78{bottom:832.102400pt;}
.yd5{bottom:835.405467pt;}
.y5f{bottom:840.984267pt;}
.ybc{bottom:845.267600pt;}
.y2b{bottom:856.102400pt;}
.yd4{bottom:862.964400pt;}
.y5{bottom:864.153867pt;}
.y5e{bottom:864.984267pt;}
.ybb{bottom:867.934267pt;}
.y2a{bottom:880.102400pt;}
.y5d{bottom:888.984267pt;}
.yba{bottom:898.160133pt;}
.y29{bottom:904.102400pt;}
.yd3{bottom:913.503067pt;}
.yb9{bottom:920.826800pt;}
.y28{bottom:928.102400pt;}
.yd2{bottom:933.503067pt;}
.yb8{bottom:951.052400pt;}
.y27{bottom:952.102400pt;}
.yd1{bottom:953.503067pt;}
.y4{bottom:954.690933pt;}
.yd0{bottom:973.503067pt;}
.yb7{bottom:973.719067pt;}
.y26{bottom:976.102400pt;}
.yb6{bottom:996.385733pt;}
.y25{bottom:1000.102400pt;}
.ycf{bottom:1001.062133pt;}
.y22{bottom:1012.981333pt;}
.yb5{bottom:1019.052400pt;}
.y24{bottom:1024.102400pt;}
.y23{bottom:1048.102400pt;}
.yb4{bottom:1049.278133pt;}
.y21{bottom:1058.314667pt;}
.ha{height:44.106667pt;}
.h8{height:44.437500pt;}
.h10{height:52.928000pt;}
.hc{height:52.992000pt;}
.hf{height:53.376000pt;}
.h9{height:57.338667pt;}
.hd{height:57.408000pt;}
.h7{height:80.064000pt;}
.hb{height:85.184000pt;}
.h2{height:91.012435pt;}
.h4{height:92.928000pt;}
.h3{height:136.839249pt;}
.he{height:143.751714pt;}
.h5{height:520.134519pt;}
.h6{height:638.827200pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:46.467600pt;}
.x5{left:54.803067pt;}
.x3{left:63.428533pt;}
.x6{left:92.598400pt;}
.x7{left:96.378000pt;}
.xd{left:115.044667pt;}
.x8{left:141.732267pt;}
.xb{left:145.511733pt;}
.xc{left:164.178533pt;}
.xf{left:291.759200pt;}
.x9{left:695.636133pt;}
.xa{left:696.721333pt;}
.xe{left:716.381200pt;}
.x1{left:722.227067pt;}
.x2{left:725.277200pt;}
}




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