
    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_b7a8308861edfc5f1ea7a990.woff')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_8a91048bcaf01494e49cc89a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_bf8d6f38f7c38c4eb48b7cbf.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0fa0b2bcf14e718b313b4123.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_45d3505d2e7cedf195413c8c.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f580959119bc16dc774a164a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.962402;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_2a5b0b9b99f9216e335762cc.woff')format("woff");}.ff7{font-family:ff7;line-height:1.106934;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_5112ca09d5ead26c4e012288.woff')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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_a5994cb9f3e4856aa1cbee6c.woff')format("woff");}.ff9{font-family:ff9;line-height:1.130371;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_ed2a10153c29838f48e64f6b.woff')format("woff");}.ffa{font-family:ffa;line-height:1.130371;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_020659f2baf7cf6445573cea.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3e71bb128ef002144b23fc3a.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_799466243a32b32ce14c0a4a.woff')format("woff");}.ffd{font-family:ffd;line-height:1.003906;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:ffe;src:url('chunks/assets/font_dcadeea72f012f5ed02efbde.woff')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v4{vertical-align:-110.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.448000px;}
.v5{vertical-align:32.832000px;}
.v1{vertical-align:42.960000px;}
.v3{vertical-align:145.728000px;}
.ls2e{letter-spacing:-4.830000px;}
.ls2f{letter-spacing:-2.478000px;}
.ls3{letter-spacing:-1.746000px;}
.lsb{letter-spacing:-1.134000px;}
.ls40{letter-spacing:-0.900000px;}
.lsd{letter-spacing:-0.882000px;}
.ls3e{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.526800px;}
.ls17{letter-spacing:-0.391800px;}
.ls16{letter-spacing:-0.384000px;}
.ls21{letter-spacing:-0.367800px;}
.lsc{letter-spacing:-0.358200px;}
.ls2c{letter-spacing:-0.349200px;}
.lse{letter-spacing:-0.325200px;}
.ls36{letter-spacing:-0.319800px;}
.ls8{letter-spacing:-0.305400px;}
.ls23{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.280200px;}
.ls9{letter-spacing:-0.262200px;}
.ls1d{letter-spacing:-0.234600px;}
.ls12{letter-spacing:-0.232200px;}
.ls13{letter-spacing:-0.223800px;}
.ls20{letter-spacing:-0.216000px;}
.ls3f{letter-spacing:-0.180000px;}
.ls15{letter-spacing:-0.144000px;}
.ls24{letter-spacing:-0.072000px;}
.ls39{letter-spacing:-0.042600px;}
.ls35{letter-spacing:-0.036000px;}
.ls1{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.037440px;}
.ls28{letter-spacing:0.038880px;}
.ls1a{letter-spacing:0.050700px;}
.ls3c{letter-spacing:0.072000px;}
.ls19{letter-spacing:0.101400px;}
.ls41{letter-spacing:0.104400px;}
.ls0{letter-spacing:0.110880px;}
.ls2b{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.170400px;}
.ls37{letter-spacing:0.175800px;}
.ls3b{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.181200px;}
.ls6{letter-spacing:0.193200px;}
.ls18{letter-spacing:0.209400px;}
.ls25{letter-spacing:0.216000px;}
.ls27{letter-spacing:0.245400px;}
.ls14{letter-spacing:0.247800px;}
.ls11{letter-spacing:0.247968px;}
.ls1c{letter-spacing:0.250800px;}
.ls34{letter-spacing:0.260400px;}
.ls7{letter-spacing:0.265200px;}
.ls10{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.305400px;}
.ls31{letter-spacing:0.352200px;}
.ls42{letter-spacing:0.360000px;}
.ls3a{letter-spacing:0.432000px;}
.ls3d{letter-spacing:0.792000px;}
.ls33{letter-spacing:0.895968px;}
.lsf{letter-spacing:1.008000px;}
.ls2{letter-spacing:1.134000px;}
.ls2d{letter-spacing:2.335968px;}
.ls1f{letter-spacing:84.960000px;}
.ls38{letter-spacing:97.560000px;}
.ls30{letter-spacing:99.540000px;}
.ls29{letter-spacing:101.844000px;}
.ls22{letter-spacing:129.600000px;}
.ls26{letter-spacing:529.704000px;}
.ls32{letter-spacing:1877.208000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
}
.wsb{word-spacing:-192.240000px;}
.ws46{word-spacing:-108.000000px;}
.ws14{word-spacing:-53.482752px;}
.ws2d{word-spacing:-53.440152px;}
.wsc{word-spacing:-53.117520px;}
.ws27{word-spacing:-51.901680px;}
.ws45{word-spacing:-50.780736px;}
.ws1e{word-spacing:-46.922712px;}
.ws1f{word-spacing:-46.328112px;}
.ws16{word-spacing:-43.684152px;}
.ws0{word-spacing:-43.074000px;}
.ws32{word-spacing:-40.464000px;}
.ws10{word-spacing:-40.320000px;}
.wse{word-spacing:-40.319832px;}
.ws1{word-spacing:-40.194000px;}
.ws11{word-spacing:-40.032000px;}
.wsf{word-spacing:-39.888000px;}
.ws33{word-spacing:-39.752232px;}
.ws31{word-spacing:-39.744000px;}
.ws12{word-spacing:-39.688032px;}
.ws13{word-spacing:-39.680232px;}
.ws19{word-spacing:-36.810480px;}
.ws18{word-spacing:-36.720012px;}
.ws2c{word-spacing:-30.239832px;}
.wsd{word-spacing:-30.064032px;}
.ws3{word-spacing:-30.060000px;}
.ws26{word-spacing:-30.024000px;}
.ws2{word-spacing:-29.779800px;}
.ws2b{word-spacing:-29.744232px;}
.ws23{word-spacing:-29.736000px;}
.ws25{word-spacing:-29.696232px;}
.ws24{word-spacing:-27.586032px;}
.ws3a{word-spacing:-24.408000px;}
.ws3b{word-spacing:-24.372000px;}
.ws39{word-spacing:-24.228000px;}
.ws22{word-spacing:-20.304000px;}
.ws1c{word-spacing:-20.016000px;}
.ws21{word-spacing:-19.038240px;}
.ws5{word-spacing:-18.454752px;}
.ws8{word-spacing:-18.414720px;}
.ws9{word-spacing:-18.152520px;}
.wsa{word-spacing:-18.096552px;}
.ws6{word-spacing:-17.927952px;}
.ws20{word-spacing:-16.272000px;}
.ws1b{word-spacing:-16.200000px;}
.ws1a{word-spacing:-15.984000px;}
.ws1d{word-spacing:-1.872000px;}
.ws7{word-spacing:-1.081728px;}
.ws4{word-spacing:0.000000px;}
.ws2e{word-spacing:0.036000px;}
.ws48{word-spacing:1.692000px;}
.ws47{word-spacing:1.872000px;}
.ws4b{word-spacing:2.448000px;}
.ws4a{word-spacing:2.484000px;}
.ws49{word-spacing:2.700000px;}
.ws42{word-spacing:6.744000px;}
.ws40{word-spacing:6.792000px;}
.ws3f{word-spacing:6.912000px;}
.ws41{word-spacing:7.524000px;}
.ws35{word-spacing:8.028000px;}
.ws38{word-spacing:8.064000px;}
.ws34{word-spacing:8.316000px;}
.ws37{word-spacing:8.928000px;}
.ws36{word-spacing:9.108000px;}
.ws43{word-spacing:11.304000px;}
.ws3e{word-spacing:23.148000px;}
.ws3c{word-spacing:23.328000px;}
.ws3d{word-spacing:24.876000px;}
.ws44{word-spacing:32.522112px;}
.ws4d{word-spacing:43.308000px;}
.ws4f{word-spacing:43.416000px;}
.ws50{word-spacing:43.848000px;}
.ws51{word-spacing:44.244000px;}
.ws4c{word-spacing:44.304000px;}
.ws4e{word-spacing:44.316000px;}
.ws17{word-spacing:68.868720px;}
.ws15{word-spacing:68.949792px;}
.ws2f{word-spacing:75.744000px;}
.ws30{word-spacing:75.815352px;}
.ws2a{word-spacing:478.632000px;}
.ws29{word-spacing:742.968000px;}
.ws28{word-spacing:4397.344368px;}
._a{margin-left:-3874.041120px;}
._6{margin-left:-15.129984px;}
._7{margin-left:-12.812280px;}
._8{margin-left:-8.364000px;}
._4{margin-left:-5.489520px;}
._1{margin-left:-3.522960px;}
._2{margin-left:-2.363040px;}
._3{margin-left:-1.250880px;}
._0{width:1.342080px;}
._5{width:2.826960px;}
._9{width:4.197840px;}
._13{width:25.835040px;}
._11{width:28.441920px;}
._f{width:32.508000px;}
._d{width:33.890880px;}
._e{width:48.584880px;}
._10{width:58.601856px;}
._12{width:69.999840px;}
._b{width:99.396000px;}
._c{width:1407.172368px;}
.fc6{color:rgb(9,19,32);}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(255,0,0);}
.fc8{color:transparent;}
.fc1{color:rgb(0,30,96);}
.fc7{color:rgb(0,0,0);}
.fc5{color:rgb(66,66,66);}
.fc4{color:rgb(0,176,80);}
.fc0{color:rgb(255,255,255);}
.fs19{font-size:7.200000px;}
.fs4{font-size:66.240000px;}
.fs3{font-size:66.384000px;}
.fs6{font-size:72.000000px;}
.fs11{font-size:72.144000px;}
.fs14{font-size:84.240000px;}
.fs15{font-size:84.384000px;}
.fs16{font-size:95.760000px;}
.fs17{font-size:95.904000px;}
.fs8{font-size:108.000000px;}
.fs7{font-size:108.144000px;}
.fs1{font-size:120.240000px;}
.fs2{font-size:120.384000px;}
.fsf{font-size:131.760000px;}
.fse{font-size:131.904000px;}
.fsa{font-size:144.000000px;}
.fs9{font-size:144.144000px;}
.fsd{font-size:156.240000px;}
.fsc{font-size:156.384000px;}
.fs0{font-size:167.760000px;}
.fs13{font-size:167.904000px;}
.fs18{font-size:185.760000px;}
.fs5{font-size:192.240000px;}
.fsb{font-size:192.384000px;}
.fs10{font-size:216.000000px;}
.fs12{font-size:216.144000px;}
.fs1a{font-size:239.760000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:0.719970px;}
.y7f{bottom:8.604000px;}
.y58{bottom:10.224000px;}
.y4e{bottom:11.196000px;}
.y80{bottom:12.636000px;}
.y3b{bottom:19.368000px;}
.y3f{bottom:21.312000px;}
.y67{bottom:25.704000px;}
.y49{bottom:32.148000px;}
.yaf{bottom:42.912000px;}
.y35{bottom:51.120000px;}
.y3e{bottom:53.748000px;}
.y66{bottom:54.504000px;}
.ya0{bottom:54.612000px;}
.y10{bottom:56.052000px;}
.y1c{bottom:62.424000px;}
.yc{bottom:71.028000px;}
.y15{bottom:72.072000px;}
.yf{bottom:74.952000px;}
.ya1{bottom:78.408000px;}
.y1b{bottom:81.360000px;}
.yae{bottom:81.792000px;}
.y65{bottom:83.340000px;}
.y3d{bottom:86.148000px;}
.y9f{bottom:87.012000px;}
.yba{bottom:88.416000px;}
.yb{bottom:89.928000px;}
.y14{bottom:91.152000px;}
.y18{bottom:93.348000px;}
.ye{bottom:94.032000px;}
.y1a{bottom:100.440000px;}
.y56{bottom:105.048000px;}
.ya{bottom:109.008000px;}
.y13{bottom:110.052000px;}
.y64{bottom:112.140000px;}
.y17{bottom:112.428000px;}
.yd{bottom:112.932000px;}
.y3c{bottom:118.548000px;}
.y19{bottom:119.340000px;}
.y9e{bottom:119.412000px;}
.yb9{bottom:120.816000px;}
.y54{bottom:121.716000px;}
.y9{bottom:127.944000px;}
.y55{bottom:128.628000px;}
.y12{bottom:129.132000px;}
.y16{bottom:131.328000px;}
.yad{bottom:135.612000px;}
.y63{bottom:140.940000px;}
.y53{bottom:145.332000px;}
.y11{bottom:148.068000px;}
.y9d{bottom:151.815000px;}
.yb8{bottom:153.210000px;}
.y8{bottom:162.330000px;}
.y7b{bottom:163.650000px;}
.y2b{bottom:167.430000px;}
.y62{bottom:169.740000px;}
.yac{bottom:174.495000px;}
.y52{bottom:177.735000px;}
.y33{bottom:181.230000px;}
.yb7{bottom:185.655000px;}
.y7{bottom:198.360000px;}
.y61{bottom:198.540000px;}
.y2a{bottom:206.355000px;}
.yab{bottom:213.405000px;}
.y9c{bottom:216.645000px;}
.yb6{bottom:218.055000px;}
.y8d{bottom:223.530000px;}
.y60{bottom:227.370000px;}
.y7a{bottom:228.495000px;}
.y6{bottom:234.360000px;}
.y9b{bottom:249.045000px;}
.yb5{bottom:250.455000px;}
.y8c{bottom:255.930000px;}
.y5f{bottom:256.170000px;}
.y29{bottom:260.355000px;}
.y79{bottom:260.895000px;}
.yaa{bottom:267.225000px;}
.y5{bottom:270.360000px;}
.y32{bottom:280.800000px;}
.y9a{bottom:281.445000px;}
.yb4{bottom:282.855000px;}
.y5e{bottom:284.970000px;}
.y78{bottom:293.295000px;}
.y28{bottom:299.235000px;}
.ya9{bottom:306.105000px;}
.y4{bottom:307.440000px;}
.y99{bottom:313.845000px;}
.y42{bottom:319.395000px;}
.y8b{bottom:320.730000px;}
.y77{bottom:325.695000px;}
.y68{bottom:325.875000px;}
.y31{bottom:326.520000px;}
.y50{bottom:327.750000px;}
.y20{bottom:337.470000px;}
.y27{bottom:338.115000px;}
.ya8{bottom:344.985000px;}
.y98{bottom:346.290000px;}
.y4f{bottom:349.410000px;}
.y69{bottom:352.905000px;}
.y8a{bottom:353.160000px;}
.y30{bottom:369.720000px;}
.y7e{bottom:370.695030px;}
.y97{bottom:378.690000px;}
.y3{bottom:379.185000px;}
.y1f{bottom:382.035000px;}
.y41{bottom:386.205000px;}
.y76{bottom:390.525000px;}
.y26{bottom:391.965000px;}
.y89{bottom:396.150000px;}
.y40{bottom:396.720000px;}
.ya7{bottom:399.030000px;}
.y96{bottom:411.090000px;}
.y5c{bottom:412.050000px;}
.yb3{bottom:412.485000px;}
.y2f{bottom:412.770000px;}
.y51{bottom:427.785000px;}
.y88{bottom:428.550000px;}
.y2{bottom:429.585000px;}
.y4c{bottom:430.740000px;}
.y25{bottom:430.845000px;}
.y83{bottom:435.705000px;}
.y5b{bottom:437.250000px;}
.ya6{bottom:437.910000px;}
.y95{bottom:443.490000px;}
.yb2{bottom:444.885000px;}
.y48{bottom:447.630000px;}
.y2e{bottom:457.410000px;}
.y87{bottom:460.950000px;}
.y3a{bottom:469.590000px;}
.y82{bottom:475.170000px;}
.y94{bottom:475.920000px;}
.y1{bottom:480.030000px;}
.y24{bottom:484.665000px;}
.y70{bottom:485.175000px;}
.y47{bottom:486.510000px;}
.y75{bottom:487.725000px;}
.ya5{bottom:491.730000px;}
.y93{bottom:508.320000px;}
.y39{bottom:512.790000px;}
.y6f{bottom:517.575000px;}
.y74{bottom:520.170000px;}
.y71{bottom:521.385000px;}
.y23{bottom:523.590000px;}
.y86{bottom:525.780000px;}
.y5a{bottom:528.300000px;}
.ya4{bottom:530.640000px;}
.y4b{bottom:530.895000px;}
.y46{bottom:540.330000px;}
.y92{bottom:540.720000px;}
.y6e{bottom:549.975000px;}
.y73{bottom:552.570000px;}
.y59{bottom:553.500000px;}
.y38{bottom:556.020000px;}
.y34{bottom:557.310000px;}
.y85{bottom:558.180000px;}
.y2d{bottom:571.575000px;}
.y91{bottom:573.120000px;}
.y21{bottom:582.990000px;}
.ya3{bottom:584.460000px;}
.y6c{bottom:584.895000px;}
.y4a{bottom:589.215000px;}
.y81{bottom:594.030000px;}
.y45{bottom:594.180000px;}
.y37{bottom:599.220000px;}
.y90{bottom:605.520000px;}
.y6d{bottom:614.775000px;}
.y72{bottom:617.370000px;}
.y84{bottom:618.270000px;}
.ya2{bottom:623.340000px;}
.y44{bottom:633.060000px;}
.y22{bottom:672.195000px;}
.y8f{bottom:674.640000px;}
.yb1{bottom:676.620000px;}
.y2c{bottom:688.035000px;}
.y1e{bottom:689.400000px;}
.y5d{bottom:691.455000px;}
.y6b{bottom:693.720000px;}
.y43{bottom:700.410000px;}
.yb0{bottom:710.100000px;}
.y36{bottom:716.580000px;}
.y8e{bottom:726.510000px;}
.y7c{bottom:729.870000px;}
.y6a{bottom:739.080000px;}
.y1d{bottom:741.240000px;}
.y4d{bottom:748.770000px;}
.y57{bottom:750.030000px;}
.h20{height:7.161328px;}
.h18{height:64.546875px;}
.h14{height:68.554688px;}
.h6{height:69.086250px;}
.h5{height:69.236437px;}
.h8{height:75.093750px;}
.h13{height:75.243937px;}
.h19{height:86.255508px;}
.h1a{height:86.402953px;}
.h1b{height:99.874688px;}
.h1c{height:100.024875px;}
.h25{height:107.419922px;}
.h26{height:107.563148px;}
.h3{height:108.497812px;}
.h4{height:108.627750px;}
.h24{height:110.583984px;}
.ha{height:112.640625px;}
.h9{height:112.790813px;}
.h2{height:123.116836px;}
.h11{height:137.421562px;}
.h10{height:137.571750px;}
.hc{height:150.187500px;}
.hb{height:150.337688px;}
.h1{height:151.377187px;}
.h17{height:155.600625px;}
.hf{height:162.953438px;}
.he{height:163.103625px;}
.h1d{height:174.968437px;}
.h16{height:175.118625px;}
.h1e{height:193.741875px;}
.h23{height:196.986938px;}
.h7{height:200.500313px;}
.hd{height:200.650500px;}
.h12{height:225.281250px;}
.h15{height:225.431438px;}
.h22{height:250.062187px;}
.h21{height:258.368625px;}
.h1f{height:372.315000px;}
.h0{height:810.000000px;}
.w2{width:327.090000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x3e{left:8.243979px;}
.x35{left:26.063979px;}
.x56{left:27.647979px;}
.x36{left:31.859979px;}
.x2f{left:38.159979px;}
.x2c{left:40.751979px;}
.x25{left:42.119979px;}
.x53{left:44.387979px;}
.xd{left:46.439979px;}
.xe{left:56.159979px;}
.xf{left:66.959979px;}
.x4b{left:77.795979px;}
.x29{left:79.199979px;}
.xc{left:88.739979px;}
.x30{left:92.159979px;}
.x26{left:96.119979px;}
.x20{left:99.683979px;}
.x24{left:111.239979px;}
.x2a{left:113.039979px;}
.x32{left:133.667979px;}
.x4c{left:159.989979px;}
.x38{left:168.509979px;}
.x40{left:192.599979px;}
.x33{left:194.504979px;}
.x41{left:228.599979px;}
.x37{left:248.039979px;}
.x27{left:262.184979px;}
.x14{left:320.609979px;}
.x12{left:321.689979px;}
.x10{left:326.549979px;}
.x13{left:329.789979px;}
.x11{left:347.429979px;}
.x3c{left:386.894979px;}
.x45{left:452.804979px;}
.x34{left:463.349979px;}
.x2{left:464.864979px;}
.x4e{left:475.994979px;}
.x21{left:525.929979px;}
.x16{left:533.339979px;}
.x15{left:534.419979px;}
.x51{left:543.419979px;}
.x3d{left:545.294979px;}
.x17{left:555.299979px;}
.x43{left:570.929979px;}
.x44{left:604.769979px;}
.x3f{left:606.809979px;}
.x7{left:637.634979px;}
.x6{left:659.234979px;}
.x50{left:673.769979px;}
.x1{left:697.109979px;}
.x22{left:763.484979px;}
.x9{left:766.874979px;}
.x4d{left:768.239979px;}
.x8{left:773.174979px;}
.xa{left:788.114979px;}
.x4f{left:801.614979px;}
.xb{left:818.534979px;}
.x2e{left:875.594979px;}
.x23{left:967.604979px;}
.x5{left:977.684979px;}
.x39{left:979.094979px;}
.x3b{left:981.074979px;}
.x19{left:994.424979px;}
.x18{left:1000.004979px;}
.x1b{left:1004.684979px;}
.x1a{left:1006.664979px;}
.x31{left:1021.139979px;}
.x54{left:1027.949979px;}
.x4{left:1030.964979px;}
.x52{left:1038.209979px;}
.x55{left:1061.789979px;}
.x3a{left:1106.534979px;}
.x42{left:1119.749979px;}
.x2b{left:1132.349979px;}
.x3{left:1141.484979px;}
.x2d{left:1189.949979px;}
.x4a{left:1217.909979px;}
.x1d{left:1225.979979px;}
.x1c{left:1228.499979px;}
.x1e{left:1236.239979px;}
.x46{left:1239.554979px;}
.x1f{left:1246.319979px;}
.x49{left:1310.009979px;}
.x47{left:1311.269979px;}
.x28{left:1320.119979px;}
.x48{left:1329.734979px;}
@media print{
.v4{vertical-align:-98.453333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.176000pt;}
.v5{vertical-align:29.184000pt;}
.v1{vertical-align:38.186667pt;}
.v3{vertical-align:129.536000pt;}
.ls2e{letter-spacing:-4.293333pt;}
.ls2f{letter-spacing:-2.202667pt;}
.ls3{letter-spacing:-1.552000pt;}
.lsb{letter-spacing:-1.008000pt;}
.ls40{letter-spacing:-0.800000pt;}
.lsd{letter-spacing:-0.784000pt;}
.ls3e{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.468267pt;}
.ls17{letter-spacing:-0.348267pt;}
.ls16{letter-spacing:-0.341333pt;}
.ls21{letter-spacing:-0.326933pt;}
.lsc{letter-spacing:-0.318400pt;}
.ls2c{letter-spacing:-0.310400pt;}
.lse{letter-spacing:-0.289067pt;}
.ls36{letter-spacing:-0.284267pt;}
.ls8{letter-spacing:-0.271467pt;}
.ls23{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.249067pt;}
.ls9{letter-spacing:-0.233067pt;}
.ls1d{letter-spacing:-0.208533pt;}
.ls12{letter-spacing:-0.206400pt;}
.ls13{letter-spacing:-0.198933pt;}
.ls20{letter-spacing:-0.192000pt;}
.ls3f{letter-spacing:-0.160000pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls24{letter-spacing:-0.064000pt;}
.ls39{letter-spacing:-0.037867pt;}
.ls35{letter-spacing:-0.032000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.033280pt;}
.ls28{letter-spacing:0.034560pt;}
.ls1a{letter-spacing:0.045067pt;}
.ls3c{letter-spacing:0.064000pt;}
.ls19{letter-spacing:0.090133pt;}
.ls41{letter-spacing:0.092800pt;}
.ls0{letter-spacing:0.098560pt;}
.ls2b{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.151467pt;}
.ls37{letter-spacing:0.156267pt;}
.ls3b{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.161067pt;}
.ls6{letter-spacing:0.171733pt;}
.ls18{letter-spacing:0.186133pt;}
.ls25{letter-spacing:0.192000pt;}
.ls27{letter-spacing:0.218133pt;}
.ls14{letter-spacing:0.220267pt;}
.ls11{letter-spacing:0.220416pt;}
.ls1c{letter-spacing:0.222933pt;}
.ls34{letter-spacing:0.231467pt;}
.ls7{letter-spacing:0.235733pt;}
.ls10{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.271467pt;}
.ls31{letter-spacing:0.313067pt;}
.ls42{letter-spacing:0.320000pt;}
.ls3a{letter-spacing:0.384000pt;}
.ls3d{letter-spacing:0.704000pt;}
.ls33{letter-spacing:0.796416pt;}
.lsf{letter-spacing:0.896000pt;}
.ls2{letter-spacing:1.008000pt;}
.ls2d{letter-spacing:2.076416pt;}
.ls1f{letter-spacing:75.520000pt;}
.ls38{letter-spacing:86.720000pt;}
.ls30{letter-spacing:88.480000pt;}
.ls29{letter-spacing:90.528000pt;}
.ls22{letter-spacing:115.200000pt;}
.ls26{letter-spacing:470.848000pt;}
.ls32{letter-spacing:1668.629333pt;}
.wsb{word-spacing:-170.880000pt;}
.ws46{word-spacing:-96.000000pt;}
.ws14{word-spacing:-47.540224pt;}
.ws2d{word-spacing:-47.502357pt;}
.wsc{word-spacing:-47.215573pt;}
.ws27{word-spacing:-46.134827pt;}
.ws45{word-spacing:-45.138432pt;}
.ws1e{word-spacing:-41.709077pt;}
.ws1f{word-spacing:-41.180544pt;}
.ws16{word-spacing:-38.830357pt;}
.ws0{word-spacing:-38.288000pt;}
.ws32{word-spacing:-35.968000pt;}
.ws10{word-spacing:-35.840000pt;}
.wse{word-spacing:-35.839851pt;}
.ws1{word-spacing:-35.728000pt;}
.ws11{word-spacing:-35.584000pt;}
.wsf{word-spacing:-35.456000pt;}
.ws33{word-spacing:-35.335317pt;}
.ws31{word-spacing:-35.328000pt;}
.ws12{word-spacing:-35.278251pt;}
.ws13{word-spacing:-35.271317pt;}
.ws19{word-spacing:-32.720427pt;}
.ws18{word-spacing:-32.640011pt;}
.ws2c{word-spacing:-26.879851pt;}
.wsd{word-spacing:-26.723584pt;}
.ws3{word-spacing:-26.720000pt;}
.ws26{word-spacing:-26.688000pt;}
.ws2{word-spacing:-26.470933pt;}
.ws2b{word-spacing:-26.439317pt;}
.ws23{word-spacing:-26.432000pt;}
.ws25{word-spacing:-26.396651pt;}
.ws24{word-spacing:-24.520917pt;}
.ws3a{word-spacing:-21.696000pt;}
.ws3b{word-spacing:-21.664000pt;}
.ws39{word-spacing:-21.536000pt;}
.ws22{word-spacing:-18.048000pt;}
.ws1c{word-spacing:-17.792000pt;}
.ws21{word-spacing:-16.922880pt;}
.ws5{word-spacing:-16.404224pt;}
.ws8{word-spacing:-16.368640pt;}
.ws9{word-spacing:-16.135573pt;}
.wsa{word-spacing:-16.085824pt;}
.ws6{word-spacing:-15.935957pt;}
.ws20{word-spacing:-14.464000pt;}
.ws1b{word-spacing:-14.400000pt;}
.ws1a{word-spacing:-14.208000pt;}
.ws1d{word-spacing:-1.664000pt;}
.ws7{word-spacing:-0.961536pt;}
.ws4{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.032000pt;}
.ws48{word-spacing:1.504000pt;}
.ws47{word-spacing:1.664000pt;}
.ws4b{word-spacing:2.176000pt;}
.ws4a{word-spacing:2.208000pt;}
.ws49{word-spacing:2.400000pt;}
.ws42{word-spacing:5.994667pt;}
.ws40{word-spacing:6.037333pt;}
.ws3f{word-spacing:6.144000pt;}
.ws41{word-spacing:6.688000pt;}
.ws35{word-spacing:7.136000pt;}
.ws38{word-spacing:7.168000pt;}
.ws34{word-spacing:7.392000pt;}
.ws37{word-spacing:7.936000pt;}
.ws36{word-spacing:8.096000pt;}
.ws43{word-spacing:10.048000pt;}
.ws3e{word-spacing:20.576000pt;}
.ws3c{word-spacing:20.736000pt;}
.ws3d{word-spacing:22.112000pt;}
.ws44{word-spacing:28.908544pt;}
.ws4d{word-spacing:38.496000pt;}
.ws4f{word-spacing:38.592000pt;}
.ws50{word-spacing:38.976000pt;}
.ws51{word-spacing:39.328000pt;}
.ws4c{word-spacing:39.381333pt;}
.ws4e{word-spacing:39.392000pt;}
.ws17{word-spacing:61.216640pt;}
.ws15{word-spacing:61.288704pt;}
.ws2f{word-spacing:67.328000pt;}
.ws30{word-spacing:67.391424pt;}
.ws2a{word-spacing:425.450667pt;}
.ws29{word-spacing:660.416000pt;}
.ws28{word-spacing:3908.750549pt;}
._a{margin-left:-3443.592107pt;}
._6{margin-left:-13.448875pt;}
._7{margin-left:-11.388693pt;}
._8{margin-left:-7.434667pt;}
._4{margin-left:-4.879573pt;}
._1{margin-left:-3.131520pt;}
._2{margin-left:-2.100480pt;}
._3{margin-left:-1.111893pt;}
._0{width:1.192960pt;}
._5{width:2.512853pt;}
._9{width:3.731413pt;}
._13{width:22.964480pt;}
._11{width:25.281707pt;}
._f{width:28.896000pt;}
._d{width:30.125227pt;}
._e{width:43.186560pt;}
._10{width:52.090539pt;}
._12{width:62.222080pt;}
._b{width:88.352000pt;}
._c{width:1250.819883pt;}
.fs19{font-size:6.400000pt;}
.fs4{font-size:58.880000pt;}
.fs3{font-size:59.008000pt;}
.fs6{font-size:64.000000pt;}
.fs11{font-size:64.128000pt;}
.fs14{font-size:74.880000pt;}
.fs15{font-size:75.008000pt;}
.fs16{font-size:85.120000pt;}
.fs17{font-size:85.248000pt;}
.fs8{font-size:96.000000pt;}
.fs7{font-size:96.128000pt;}
.fs1{font-size:106.880000pt;}
.fs2{font-size:107.008000pt;}
.fsf{font-size:117.120000pt;}
.fse{font-size:117.248000pt;}
.fsa{font-size:128.000000pt;}
.fs9{font-size:128.128000pt;}
.fsd{font-size:138.880000pt;}
.fsc{font-size:139.008000pt;}
.fs0{font-size:149.120000pt;}
.fs13{font-size:149.248000pt;}
.fs18{font-size:165.120000pt;}
.fs5{font-size:170.880000pt;}
.fsb{font-size:171.008000pt;}
.fs10{font-size:192.000000pt;}
.fs12{font-size:192.128000pt;}
.fs1a{font-size:213.120000pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:0.639973pt;}
.y7f{bottom:7.648000pt;}
.y58{bottom:9.088000pt;}
.y4e{bottom:9.952000pt;}
.y80{bottom:11.232000pt;}
.y3b{bottom:17.216000pt;}
.y3f{bottom:18.944000pt;}
.y67{bottom:22.848000pt;}
.y49{bottom:28.576000pt;}
.yaf{bottom:38.144000pt;}
.y35{bottom:45.440000pt;}
.y3e{bottom:47.776000pt;}
.y66{bottom:48.448000pt;}
.ya0{bottom:48.544000pt;}
.y10{bottom:49.824000pt;}
.y1c{bottom:55.488000pt;}
.yc{bottom:63.136000pt;}
.y15{bottom:64.064000pt;}
.yf{bottom:66.624000pt;}
.ya1{bottom:69.696000pt;}
.y1b{bottom:72.320000pt;}
.yae{bottom:72.704000pt;}
.y65{bottom:74.080000pt;}
.y3d{bottom:76.576000pt;}
.y9f{bottom:77.344000pt;}
.yba{bottom:78.592000pt;}
.yb{bottom:79.936000pt;}
.y14{bottom:81.024000pt;}
.y18{bottom:82.976000pt;}
.ye{bottom:83.584000pt;}
.y1a{bottom:89.280000pt;}
.y56{bottom:93.376000pt;}
.ya{bottom:96.896000pt;}
.y13{bottom:97.824000pt;}
.y64{bottom:99.680000pt;}
.y17{bottom:99.936000pt;}
.yd{bottom:100.384000pt;}
.y3c{bottom:105.376000pt;}
.y19{bottom:106.080000pt;}
.y9e{bottom:106.144000pt;}
.yb9{bottom:107.392000pt;}
.y54{bottom:108.192000pt;}
.y9{bottom:113.728000pt;}
.y55{bottom:114.336000pt;}
.y12{bottom:114.784000pt;}
.y16{bottom:116.736000pt;}
.yad{bottom:120.544000pt;}
.y63{bottom:125.280000pt;}
.y53{bottom:129.184000pt;}
.y11{bottom:131.616000pt;}
.y9d{bottom:134.946667pt;}
.yb8{bottom:136.186667pt;}
.y8{bottom:144.293333pt;}
.y7b{bottom:145.466667pt;}
.y2b{bottom:148.826667pt;}
.y62{bottom:150.880000pt;}
.yac{bottom:155.106667pt;}
.y52{bottom:157.986667pt;}
.y33{bottom:161.093333pt;}
.yb7{bottom:165.026667pt;}
.y7{bottom:176.320000pt;}
.y61{bottom:176.480000pt;}
.y2a{bottom:183.426667pt;}
.yab{bottom:189.693333pt;}
.y9c{bottom:192.573333pt;}
.yb6{bottom:193.826667pt;}
.y8d{bottom:198.693333pt;}
.y60{bottom:202.106667pt;}
.y7a{bottom:203.106667pt;}
.y6{bottom:208.320000pt;}
.y9b{bottom:221.373333pt;}
.yb5{bottom:222.626667pt;}
.y8c{bottom:227.493333pt;}
.y5f{bottom:227.706667pt;}
.y29{bottom:231.426667pt;}
.y79{bottom:231.906667pt;}
.yaa{bottom:237.533333pt;}
.y5{bottom:240.320000pt;}
.y32{bottom:249.600000pt;}
.y9a{bottom:250.173333pt;}
.yb4{bottom:251.426667pt;}
.y5e{bottom:253.306667pt;}
.y78{bottom:260.706667pt;}
.y28{bottom:265.986667pt;}
.ya9{bottom:272.093333pt;}
.y4{bottom:273.280000pt;}
.y99{bottom:278.973333pt;}
.y42{bottom:283.906667pt;}
.y8b{bottom:285.093333pt;}
.y77{bottom:289.506667pt;}
.y68{bottom:289.666667pt;}
.y31{bottom:290.240000pt;}
.y50{bottom:291.333333pt;}
.y20{bottom:299.973333pt;}
.y27{bottom:300.546667pt;}
.ya8{bottom:306.653333pt;}
.y98{bottom:307.813333pt;}
.y4f{bottom:310.586667pt;}
.y69{bottom:313.693333pt;}
.y8a{bottom:313.920000pt;}
.y30{bottom:328.640000pt;}
.y7e{bottom:329.506693pt;}
.y97{bottom:336.613333pt;}
.y3{bottom:337.053333pt;}
.y1f{bottom:339.586667pt;}
.y41{bottom:343.293333pt;}
.y76{bottom:347.133333pt;}
.y26{bottom:348.413333pt;}
.y89{bottom:352.133333pt;}
.y40{bottom:352.640000pt;}
.ya7{bottom:354.693333pt;}
.y96{bottom:365.413333pt;}
.y5c{bottom:366.266667pt;}
.yb3{bottom:366.653333pt;}
.y2f{bottom:366.906667pt;}
.y51{bottom:380.253333pt;}
.y88{bottom:380.933333pt;}
.y2{bottom:381.853333pt;}
.y4c{bottom:382.880000pt;}
.y25{bottom:382.973333pt;}
.y83{bottom:387.293333pt;}
.y5b{bottom:388.666667pt;}
.ya6{bottom:389.253333pt;}
.y95{bottom:394.213333pt;}
.yb2{bottom:395.453333pt;}
.y48{bottom:397.893333pt;}
.y2e{bottom:406.586667pt;}
.y87{bottom:409.733333pt;}
.y3a{bottom:417.413333pt;}
.y82{bottom:422.373333pt;}
.y94{bottom:423.040000pt;}
.y1{bottom:426.693333pt;}
.y24{bottom:430.813333pt;}
.y70{bottom:431.266667pt;}
.y47{bottom:432.453333pt;}
.y75{bottom:433.533333pt;}
.ya5{bottom:437.093333pt;}
.y93{bottom:451.840000pt;}
.y39{bottom:455.813333pt;}
.y6f{bottom:460.066667pt;}
.y74{bottom:462.373333pt;}
.y71{bottom:463.453333pt;}
.y23{bottom:465.413333pt;}
.y86{bottom:467.360000pt;}
.y5a{bottom:469.600000pt;}
.ya4{bottom:471.680000pt;}
.y4b{bottom:471.906667pt;}
.y46{bottom:480.293333pt;}
.y92{bottom:480.640000pt;}
.y6e{bottom:488.866667pt;}
.y73{bottom:491.173333pt;}
.y59{bottom:492.000000pt;}
.y38{bottom:494.240000pt;}
.y34{bottom:495.386667pt;}
.y85{bottom:496.160000pt;}
.y2d{bottom:508.066667pt;}
.y91{bottom:509.440000pt;}
.y21{bottom:518.213333pt;}
.ya3{bottom:519.520000pt;}
.y6c{bottom:519.906667pt;}
.y4a{bottom:523.746667pt;}
.y81{bottom:528.026667pt;}
.y45{bottom:528.160000pt;}
.y37{bottom:532.640000pt;}
.y90{bottom:538.240000pt;}
.y6d{bottom:546.466667pt;}
.y72{bottom:548.773333pt;}
.y84{bottom:549.573333pt;}
.ya2{bottom:554.080000pt;}
.y44{bottom:562.720000pt;}
.y22{bottom:597.506667pt;}
.y8f{bottom:599.680000pt;}
.yb1{bottom:601.440000pt;}
.y2c{bottom:611.586667pt;}
.y1e{bottom:612.800000pt;}
.y5d{bottom:614.626667pt;}
.y6b{bottom:616.640000pt;}
.y43{bottom:622.586667pt;}
.yb0{bottom:631.200000pt;}
.y36{bottom:636.960000pt;}
.y8e{bottom:645.786667pt;}
.y7c{bottom:648.773333pt;}
.y6a{bottom:656.960000pt;}
.y1d{bottom:658.880000pt;}
.y4d{bottom:665.573333pt;}
.y57{bottom:666.693333pt;}
.h20{height:6.365625pt;}
.h18{height:57.375000pt;}
.h14{height:60.937500pt;}
.h6{height:61.410000pt;}
.h5{height:61.543500pt;}
.h8{height:66.750000pt;}
.h13{height:66.883500pt;}
.h19{height:76.671562pt;}
.h1a{height:76.802625pt;}
.h1b{height:88.777500pt;}
.h1c{height:88.911000pt;}
.h25{height:95.484375pt;}
.h26{height:95.611688pt;}
.h3{height:96.442500pt;}
.h4{height:96.558000pt;}
.h24{height:98.296875pt;}
.ha{height:100.125000pt;}
.h9{height:100.258500pt;}
.h2{height:109.437187pt;}
.h11{height:122.152500pt;}
.h10{height:122.286000pt;}
.hc{height:133.500000pt;}
.hb{height:133.633500pt;}
.h1{height:134.557500pt;}
.h17{height:138.311667pt;}
.hf{height:144.847500pt;}
.he{height:144.981000pt;}
.h1d{height:155.527500pt;}
.h16{height:155.661000pt;}
.h1e{height:172.215000pt;}
.h23{height:175.099500pt;}
.h7{height:178.222500pt;}
.hd{height:178.356000pt;}
.h12{height:200.250000pt;}
.h15{height:200.383500pt;}
.h22{height:222.277500pt;}
.h21{height:229.661000pt;}
.h1f{height:330.946667pt;}
.h0{height:720.000000pt;}
.w2{width:290.746667pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x3e{left:7.327981pt;}
.x35{left:23.167981pt;}
.x56{left:24.575981pt;}
.x36{left:28.319981pt;}
.x2f{left:33.919981pt;}
.x2c{left:36.223981pt;}
.x25{left:37.439981pt;}
.x53{left:39.455981pt;}
.xd{left:41.279981pt;}
.xe{left:49.919981pt;}
.xf{left:59.519981pt;}
.x4b{left:69.151981pt;}
.x29{left:70.399981pt;}
.xc{left:78.879981pt;}
.x30{left:81.919981pt;}
.x26{left:85.439981pt;}
.x20{left:88.607981pt;}
.x24{left:98.879981pt;}
.x2a{left:100.479981pt;}
.x32{left:118.815981pt;}
.x4c{left:142.213314pt;}
.x38{left:149.786648pt;}
.x40{left:171.199981pt;}
.x33{left:172.893314pt;}
.x41{left:203.199981pt;}
.x37{left:220.479981pt;}
.x27{left:233.053314pt;}
.x14{left:284.986648pt;}
.x12{left:285.946648pt;}
.x10{left:290.266648pt;}
.x13{left:293.146648pt;}
.x11{left:308.826648pt;}
.x3c{left:343.906648pt;}
.x45{left:402.493314pt;}
.x34{left:411.866648pt;}
.x2{left:413.213314pt;}
.x4e{left:423.106648pt;}
.x21{left:467.493314pt;}
.x16{left:474.079981pt;}
.x15{left:475.039981pt;}
.x51{left:483.039981pt;}
.x3d{left:484.706648pt;}
.x17{left:493.599981pt;}
.x43{left:507.493314pt;}
.x44{left:537.573314pt;}
.x3f{left:539.386648pt;}
.x7{left:566.786648pt;}
.x6{left:585.986648pt;}
.x50{left:598.906648pt;}
.x1{left:619.653314pt;}
.x22{left:678.653314pt;}
.x9{left:681.666648pt;}
.x4d{left:682.879981pt;}
.x8{left:687.266648pt;}
.xa{left:700.546648pt;}
.x4f{left:712.546648pt;}
.xb{left:727.586648pt;}
.x2e{left:778.306648pt;}
.x23{left:860.093314pt;}
.x5{left:869.053314pt;}
.x39{left:870.306648pt;}
.x3b{left:872.066648pt;}
.x19{left:883.933314pt;}
.x18{left:888.893314pt;}
.x1b{left:893.053314pt;}
.x1a{left:894.813314pt;}
.x31{left:907.679981pt;}
.x54{left:913.733314pt;}
.x4{left:916.413314pt;}
.x52{left:922.853314pt;}
.x55{left:943.813314pt;}
.x3a{left:983.586648pt;}
.x42{left:995.333314pt;}
.x2b{left:1006.533314pt;}
.x3{left:1014.653314pt;}
.x2d{left:1057.733314pt;}
.x4a{left:1082.586648pt;}
.x1d{left:1089.759981pt;}
.x1c{left:1091.999981pt;}
.x1e{left:1098.879981pt;}
.x46{left:1101.826648pt;}
.x1f{left:1107.839981pt;}
.x49{left:1164.453314pt;}
.x47{left:1165.573314pt;}
.x28{left:1173.439981pt;}
.x48{left:1181.986648pt;}
}




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