
    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_08df154c93eb73eb4394f298.woff')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_8e944b02695c95e2bb988fd8.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_95489a021ffbe0f6b777afc3.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8fb01f6fb77cb3dab15a6f0e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_a22efd20a34cbd8023d4c520.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e27fd4ecc493b63fb6e0f11b.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8e944b02695c95e2bb988fd8.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1260ec0193c642e846fef2eb.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2b8efec3e7c1629329c6252f.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a5fb28c37891534d2c4c5463.woff')format("woff");}.ffa{font-family:ffa;line-height:1.080566;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_bd5e988a282b309a57fc7722.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_fb54f12a3957a9729ffd3e17.woff')format("woff");}.ffc{font-family:ffc;line-height:1.068359;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_e8f5898429e435d8d46561fd.woff')format("woff");}.ffd{font-family:ffd;line-height:1.068359;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_25d30aef27be1bd71afb3b20.woff')format("woff");}.ffe{font-family:ffe;line-height:1.134766;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:fff;src:url('chunks/assets/font_33e57a7928f52de2dcbc0c8f.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_5519803e61cb6c783120bbe3.woff')format("woff");}.ff10{font-family:ff10;line-height:1.402354;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:ff11;src:url('chunks/assets/font_6386eace137b299e29daff2e.woff')format("woff");}.ff11{font-family:ff11;line-height:1.435059;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:ff12;src:url('chunks/assets/font_d12e967994ce8dbdb99229f1.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_778ffe8754c86a9536bf90b2.woff')format("woff");}.ff13{font-family:ff13;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);}
.v1{vertical-align:-96.480000px;}
.v3{vertical-align:-88.560000px;}
.v2{vertical-align:-82.800000px;}
.v6{vertical-align:-77.040000px;}
.v4{vertical-align:-75.600000px;}
.v5{vertical-align:-62.640000px;}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-2.880000px;}
.ls1c{letter-spacing:-1.440000px;}
.ls25{letter-spacing:-0.720000px;}
.ls31{letter-spacing:-0.457800px;}
.ls24{letter-spacing:-0.305400px;}
.ls30{letter-spacing:-0.158400px;}
.ls26{letter-spacing:-0.097800px;}
.ls0{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.005754px;}
.ls11{letter-spacing:0.018000px;}
.ls39{letter-spacing:0.138000px;}
.ls35{letter-spacing:0.149760px;}
.ls10{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.189600px;}
.ls8{letter-spacing:0.216000px;}
.ls3a{letter-spacing:0.256200px;}
.ls20{letter-spacing:0.262080px;}
.ls3c{letter-spacing:0.262200px;}
.ls1d{letter-spacing:0.276600px;}
.ls3b{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.720000px;}
.ls2e{letter-spacing:1.440000px;}
.ls1f{letter-spacing:2.160000px;}
.lsc{letter-spacing:2.880000px;}
.ls1a{letter-spacing:3.600000px;}
.ls14{letter-spacing:4.320000px;}
.ls18{letter-spacing:5.040000px;}
.ls16{letter-spacing:5.760000px;}
.ls36{letter-spacing:6.761280px;}
.ls32{letter-spacing:6.785280px;}
.ls15{letter-spacing:8.640000px;}
.lsb{letter-spacing:12.240000px;}
.lsf{letter-spacing:14.400000px;}
.ls4{letter-spacing:16.680000px;}
.ls33{letter-spacing:19.440000px;}
.ls1e{letter-spacing:20.880000px;}
.ls21{letter-spacing:23.040000px;}
.ls22{letter-spacing:23.220000px;}
.ls38{letter-spacing:23.760000px;}
.ls2c{letter-spacing:24.480000px;}
.ls23{letter-spacing:26.640000px;}
.ls2d{letter-spacing:26.820000px;}
.ls17{letter-spacing:30.240000px;}
.ls34{letter-spacing:39.161280px;}
.ls2f{letter-spacing:39.881280px;}
.ls19{letter-spacing:39.905280px;}
.ls2b{letter-spacing:42.480000px;}
.ls2a{letter-spacing:111.161280px;}
.ls29{letter-spacing:115.481280px;}
.ls28{letter-spacing:137.081280px;}
.ls6{letter-spacing:141.840000px;}
.ls27{letter-spacing:159.401280px;}
.lse{letter-spacing:195.840000px;}
.lsa{letter-spacing:506.880000px;}
.ls5{letter-spacing:535.860000px;}
.lsd{letter-spacing:1029.780000px;}
.ls3{letter-spacing:1095.996000px;}
.ls1{letter-spacing:1293.096000px;}
.ls7{letter-spacing:1820.256000px;}
.ls37{letter-spacing:2238.960000px;}
.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;}
}
.ws3{word-spacing:-32.940000px;}
.ws4{word-spacing:-27.000000px;}
.ws2{word-spacing:-24.129600px;}
.ws1{word-spacing:-23.940000px;}
.ws7{word-spacing:-18.720000px;}
.ws14{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.836600px;}
.ws12{word-spacing:-16.698000px;}
.ws8{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.401600px;}
.wsd{word-spacing:-16.254600px;}
.ws10{word-spacing:-16.102200px;}
.wse{word-spacing:-15.840000px;}
.ws9{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.226440px;}
.wsa{word-spacing:-13.860000px;}
.ws11{word-spacing:-13.518000px;}
.wsb{word-spacing:-13.500000px;}
.ws0{word-spacing:0.000000px;}
._20{margin-left:-47.520000px;}
._27{margin-left:-37.980000px;}
._2a{margin-left:-20.752320px;}
._1c{margin-left:-7.485120px;}
._23{margin-left:-5.103120px;}
._d{margin-left:-4.098480px;}
._c{margin-left:-3.047040px;}
._2{margin-left:-1.563120px;}
._0{width:1.075680px;}
._1{width:3.058800px;}
._5{width:4.359600px;}
._11{width:5.785920px;}
._10{width:6.924960px;}
._14{width:8.319600px;}
._f{width:9.578160px;}
._e{width:10.797120px;}
._7{width:12.672000px;}
._8{width:14.128320px;}
._24{width:15.447120px;}
._6{width:16.564320px;}
._18{width:18.017280px;}
._16{width:19.716240px;}
._15{width:20.733120px;}
._2d{width:21.749280px;}
._17{width:22.780080px;}
._25{width:23.918400px;}
._28{width:25.012080px;}
._12{width:26.032320px;}
._13{width:27.127200px;}
._9{width:28.224000px;}
._29{width:30.443760px;}
._a{width:32.211120px;}
._2c{width:40.874160px;}
._2b{width:42.433200px;}
._19{width:45.838080px;}
._1a{width:47.434560px;}
._1e{width:50.315760px;}
._1d{width:51.799680px;}
._21{width:64.808640px;}
._22{width:65.815920px;}
._3{width:191.460000px;}
._4{width:843.096000px;}
._b{width:846.156000px;}
._1b{width:847.596000px;}
._26{width:930.355440px;}
._1f{width:2709.096000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fsb{font-size:36.000000px;}
.fsa{font-size:41.760000px;}
.fsc{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs9{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs6{font-size:108.000000px;}
.fs4{font-size:120.240000px;}
.fs5{font-size:131.760000px;}
.fs3{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.ybd{bottom:3.600000px;}
.ybc{bottom:22.680000px;}
.y3{bottom:66.960000px;}
.y1{bottom:85.176000px;}
.y9e{bottom:87.840000px;}
.yae{bottom:92.340000px;}
.y24{bottom:100.080000px;}
.y9d{bottom:103.320000px;}
.yb9{bottom:104.040000px;}
.y9c{bottom:107.820000px;}
.yad{bottom:118.800000px;}
.yfb{bottom:119.700000px;}
.yac{bottom:123.300000px;}
.y23{bottom:129.060000px;}
.y9b{bottom:134.460000px;}
.yb8{bottom:137.700000px;}
.y9a{bottom:138.960000px;}
.yab{bottom:149.940000px;}
.y4c{bottom:150.120000px;}
.y99{bottom:150.660000px;}
.ye0{bottom:154.080000px;}
.yfa{bottom:154.260000px;}
.yaa{bottom:154.440000px;}
.yb7{bottom:156.780000px;}
.y22{bottom:161.100000px;}
.ya9{bottom:165.420000px;}
.y4b{bottom:171.360000px;}
.ydf{bottom:172.980000px;}
.yf9{bottom:173.340000px;}
.yb5{bottom:175.680000px;}
.y98{bottom:178.560000px;}
.ya8{bottom:180.900000px;}
.y21{bottom:185.220000px;}
.ya7{bottom:185.400000px;}
.yde{bottom:192.060000px;}
.yf8{bottom:192.240000px;}
.yb4{bottom:194.760000px;}
.y4a{bottom:194.940000px;}
.ya6{bottom:197.280000px;}
.y97{bottom:197.460000px;}
.y20{bottom:209.370000px;}
.ydd{bottom:210.990000px;}
.yf7{bottom:211.350000px;}
.yb3{bottom:213.690000px;}
.y49{bottom:215.670000px;}
.y96{bottom:216.570000px;}
.ydc{bottom:230.070000px;}
.yf6{bottom:230.250000px;}
.y7b{bottom:232.590000px;}
.ya5{bottom:232.770000px;}
.y1f{bottom:233.490000px;}
.y95{bottom:235.470000px;}
.y48{bottom:236.370000px;}
.ydb{bottom:248.970000px;}
.yf5{bottom:249.150000px;}
.y7a{bottom:251.670000px;}
.y94{bottom:254.370000px;}
.y1e{bottom:257.610000px;}
.yda{bottom:268.050000px;}
.yf4{bottom:268.230000px;}
.y79{bottom:270.570000px;}
.y93{bottom:273.450000px;}
.y47{bottom:279.210000px;}
.y1d{bottom:281.910000px;}
.yd8{bottom:286.950000px;}
.yf3{bottom:287.130000px;}
.y78{bottom:289.650000px;}
.y92{bottom:292.350000px;}
.yd9{bottom:292.890000px;}
.yd7{bottom:305.850000px;}
.yf2{bottom:306.210000px;}
.y46{bottom:306.750000px;}
.y77{bottom:308.550000px;}
.y91{bottom:311.430000px;}
.yd6{bottom:324.930000px;}
.yf1{bottom:325.110000px;}
.y76{bottom:327.630000px;}
.y1c{bottom:330.150000px;}
.y90{bottom:330.330000px;}
.y45{bottom:334.290000px;}
.yd5{bottom:343.830000px;}
.yf0{bottom:344.010000px;}
.y75{bottom:346.530000px;}
.y8f{bottom:349.230000px;}
.y1b{bottom:354.270000px;}
.y44{bottom:362.010000px;}
.yd4{bottom:362.910000px;}
.y74{bottom:365.430000px;}
.y8e{bottom:368.310000px;}
.yef{bottom:369.390000px;}
.y1a{bottom:378.390000px;}
.yd3{bottom:381.810000px;}
.y73{bottom:384.510000px;}
.y43{bottom:389.550000px;}
.yee{bottom:398.730000px;}
.yd2{bottom:400.710000px;}
.y19{bottom:402.510000px;}
.y72{bottom:403.410000px;}
.y8d{bottom:406.290000px;}
.yb2{bottom:409.350000px;}
.y42{bottom:417.090000px;}
.yd1{bottom:419.790000px;}
.y71{bottom:422.490000px;}
.yed{bottom:424.110000px;}
.y8c{bottom:425.190000px;}
.y18{bottom:426.810000px;}
.yd0{bottom:438.690000px;}
.y70{bottom:441.390000px;}
.y8a{bottom:444.135000px;}
.y41{bottom:444.855000px;}
.y8b{bottom:450.075000px;}
.y17{bottom:450.975000px;}
.yec{bottom:453.495000px;}
.ycf{bottom:457.815000px;}
.y6f{bottom:460.335000px;}
.y89{bottom:463.215000px;}
.y40{bottom:472.395000px;}
.y16{bottom:475.095000px;}
.yce{bottom:476.715000px;}
.y6e{bottom:479.415000px;}
.y88{bottom:482.115000px;}
.yeb{bottom:491.655000px;}
.ycd{bottom:495.615000px;}
.y6d{bottom:498.315000px;}
.y3f{bottom:499.935000px;}
.y87{bottom:501.195000px;}
.y15{bottom:501.915000px;}
.ya4{bottom:504.255000px;}
.yea{bottom:512.355000px;}
.ycc{bottom:514.695000px;}
.ya3{bottom:517.395000px;}
.y86{bottom:520.095000px;}
.y3e{bottom:527.475000px;}
.ycb{bottom:533.595000px;}
.y6c{bottom:536.295000px;}
.y14{bottom:538.455000px;}
.y85{bottom:539.175000px;}
.yca{bottom:552.675000px;}
.ye9{bottom:552.855000px;}
.y3d{bottom:555.195000px;}
.y84{bottom:558.075000px;}
.y13{bottom:570.855000px;}
.yc9{bottom:571.575000px;}
.ye8{bottom:571.935000px;}
.y6b{bottom:574.275000px;}
.y3c{bottom:582.735000px;}
.y83{bottom:583.275000px;}
.yc8{bottom:590.475000px;}
.ye7{bottom:590.835000px;}
.y6a{bottom:593.175000px;}
.ya2{bottom:599.115000px;}
.y12{bottom:608.835000px;}
.yc7{bottom:609.555000px;}
.ye6{bottom:609.915000px;}
.y3b{bottom:610.275000px;}
.y69{bottom:612.255000px;}
.y82{bottom:612.795000px;}
.yc6{bottom:628.455000px;}
.ye5{bottom:628.815000px;}
.y68{bottom:631.155000px;}
.y81{bottom:631.695000px;}
.y3a{bottom:637.995000px;}
.y11{bottom:646.095000px;}
.yc5{bottom:647.535000px;}
.ye4{bottom:648.615000px;}
.y67{bottom:650.055000px;}
.y80{bottom:650.595000px;}
.ya1{bottom:655.995000px;}
.y39{bottom:665.535000px;}
.yc4{bottom:666.435000px;}
.ye3{bottom:668.775000px;}
.y66{bottom:669.135000px;}
.y7f{bottom:675.975000px;}
.y10{bottom:683.205000px;}
.yc3{bottom:685.365000px;}
.y65{bottom:688.065000px;}
.y38{bottom:693.105000px;}
.yc2{bottom:704.445000px;}
.y7e{bottom:705.705000px;}
.y64{bottom:707.145000px;}
.y37{bottom:720.825000px;}
.yc1{bottom:723.345000px;}
.y63{bottom:726.045000px;}
.yf{bottom:731.445000px;}
.yb6{bottom:731.985000px;}
.yc0{bottom:742.425000px;}
.y62{bottom:745.125000px;}
.y36{bottom:747.105000px;}
.ybf{bottom:761.325000px;}
.y61{bottom:764.025000px;}
.ye{bottom:779.685000px;}
.ybe{bottom:780.405000px;}
.y60{bottom:782.925000px;}
.y35{bottom:788.505000px;}
.ybb{bottom:796.425000px;}
.y5f{bottom:802.005000px;}
.yb1{bottom:807.945000px;}
.y34{bottom:809.205000px;}
.y5e{bottom:820.905000px;}
.yd{bottom:828.105000px;}
.y33{bottom:829.905000px;}
.yba{bottom:839.625000px;}
.y5d{bottom:839.985000px;}
.y7d{bottom:858.885000px;}
.y32{bottom:871.305000px;}
.yc{bottom:876.345000px;}
.y5c{bottom:877.785000px;}
.y31{bottom:892.005000px;}
.y5b{bottom:896.865000px;}
.yb0{bottom:902.805000px;}
.y30{bottom:912.705000px;}
.y5a{bottom:915.765000px;}
.yaf{bottom:921.750000px;}
.yb{bottom:924.630000px;}
.y2f{bottom:933.450000px;}
.y59{bottom:934.890000px;}
.y58{bottom:953.790000px;}
.y2e{bottom:954.150000px;}
.ya0{bottom:959.730000px;}
.y57{bottom:972.690000px;}
.ya{bottom:973.050000px;}
.y2d{bottom:974.850000px;}
.y56{bottom:991.770000px;}
.y2c{bottom:995.550000px;}
.y55{bottom:1010.670000px;}
.y2b{bottom:1016.250000px;}
.y9{bottom:1017.510000px;}
.y54{bottom:1029.750000px;}
.y2a{bottom:1036.950000px;}
.y8{bottom:1045.050000px;}
.y53{bottom:1048.650000px;}
.ye2{bottom:1054.590000px;}
.y29{bottom:1057.650000px;}
.y52{bottom:1067.550000px;}
.y7{bottom:1072.770000px;}
.y28{bottom:1078.350000px;}
.y51{bottom:1086.630000px;}
.y9f{bottom:1092.570000px;}
.y6{bottom:1100.310000px;}
.y50{bottom:1105.530000px;}
.y27{bottom:1119.750000px;}
.y4f{bottom:1124.610000px;}
.y5{bottom:1127.850000px;}
.y26{bottom:1140.450000px;}
.y4e{bottom:1143.510000px;}
.y7c{bottom:1149.450000px;}
.y4{bottom:1155.600000px;}
.y25{bottom:1161.180000px;}
.y4d{bottom:1162.620000px;}
.ye1{bottom:1168.560000px;}
.y2{bottom:1189.260000px;}
.h2{height:2.826563px;}
.h17{height:35.332031px;}
.h1c{height:37.980000px;}
.h12{height:40.985156px;}
.h15{height:42.086250px;}
.h18{height:52.998047px;}
.h14{height:57.280781px;}
.h4{height:58.651172px;}
.h11{height:59.027344px;}
.h13{height:62.261719px;}
.h16{height:64.978594px;}
.h10{height:65.010937px;}
.h1b{height:65.884219px;}
.hf{height:66.757500px;}
.h19{height:68.084282px;}
.h1a{height:68.956875px;}
.hd{height:70.664062px;}
.he{height:72.562500px;}
.hc{height:82.676953px;}
.h5{height:82.808086px;}
.hb{height:84.898125px;}
.h6{height:96.508125px;}
.ha{height:108.843750px;}
.h8{height:118.008984px;}
.h9{height:132.789375px;}
.h7{height:169.070625px;}
.h3{height:1262.880000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:698.505000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x44{left:7.740000px;}
.x11{left:84.995987px;}
.x43{left:93.996000px;}
.x1{left:97.775987px;}
.x2f{left:101.375987px;}
.x37{left:111.275987px;}
.x1f{left:115.055987px;}
.x40{left:124.775987px;}
.x1b{left:127.475987px;}
.x14{left:129.815987px;}
.x4{left:131.255987px;}
.x4a{left:133.955987px;}
.x16{left:137.735987px;}
.x42{left:138.995987px;}
.x8{left:140.255987px;}
.x2a{left:150.869987px;}
.x15{left:152.669987px;}
.x34{left:161.849973px;}
.x38{left:166.889973px;}
.x20{left:168.329987px;}
.x13{left:172.289987px;}
.x35{left:177.509987px;}
.x31{left:178.769987px;}
.x39{left:182.549987px;}
.xc{left:187.409987px;}
.xb{left:188.489987px;}
.x46{left:191.189987px;}
.xf{left:193.169987px;}
.xa{left:198.209987px;}
.x3e{left:208.109973px;}
.x48{left:210.449973px;}
.x41{left:214.409973px;}
.x3f{left:223.769987px;}
.x49{left:226.109987px;}
.xd{left:230.069987px;}
.x45{left:235.469973px;}
.x6{left:243.209987px;}
.x7{left:250.949987px;}
.x3c{left:254.729973px;}
.x5{left:261.029987px;}
.x22{left:262.649987px;}
.x3d{left:270.434987px;}
.x4e{left:287.894987px;}
.x29{left:301.034987px;}
.x12{left:309.134987px;}
.x36{left:313.814987px;}
.x2b{left:320.294973px;}
.x2c{left:335.954987px;}
.x4c{left:340.994987px;}
.x47{left:354.134973px;}
.x10{left:355.754987px;}
.x9{left:369.434987px;}
.x2d{left:405.614973px;}
.x1a{left:418.574987px;}
.x2e{left:421.274987px;}
.x24{left:425.414987px;}
.x32{left:434.054973px;}
.x23{left:438.014987px;}
.xe{left:439.994987px;}
.x33{left:449.744987px;}
.x4b{left:452.804987px;}
.x26{left:526.244987px;}
.x25{left:533.264987px;}
.x21{left:555.404987px;}
.x4f{left:594.824987px;}
.x4d{left:600.764987px;}
.x2{left:608.504987px;}
.x30{left:623.264987px;}
.x1d{left:649.589973px;}
.x1e{left:665.249987px;}
.x17{left:689.549987px;}
.x3a{left:721.049973px;}
.x3b{left:736.709987px;}
.x18{left:738.329987px;}
.x27{left:767.129973px;}
.x1c{left:780.269987px;}
.x28{left:782.789987px;}
.x3{left:787.649987px;}
.x19{left:808.019987px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v3{vertical-align:-78.720000pt;}
.v2{vertical-align:-73.600000pt;}
.v6{vertical-align:-68.480000pt;}
.v4{vertical-align:-67.200000pt;}
.v5{vertical-align:-55.680000pt;}
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-2.560000pt;}
.ls1c{letter-spacing:-1.280000pt;}
.ls25{letter-spacing:-0.640000pt;}
.ls31{letter-spacing:-0.406933pt;}
.ls24{letter-spacing:-0.271467pt;}
.ls30{letter-spacing:-0.140800pt;}
.ls26{letter-spacing:-0.086933pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.005115pt;}
.ls11{letter-spacing:0.016000pt;}
.ls39{letter-spacing:0.122667pt;}
.ls35{letter-spacing:0.133120pt;}
.ls10{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.168533pt;}
.ls8{letter-spacing:0.192000pt;}
.ls3a{letter-spacing:0.227733pt;}
.ls20{letter-spacing:0.232960pt;}
.ls3c{letter-spacing:0.233067pt;}
.ls1d{letter-spacing:0.245867pt;}
.ls3b{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls2e{letter-spacing:1.280000pt;}
.ls1f{letter-spacing:1.920000pt;}
.lsc{letter-spacing:2.560000pt;}
.ls1a{letter-spacing:3.200000pt;}
.ls14{letter-spacing:3.840000pt;}
.ls18{letter-spacing:4.480000pt;}
.ls16{letter-spacing:5.120000pt;}
.ls36{letter-spacing:6.010027pt;}
.ls32{letter-spacing:6.031360pt;}
.ls15{letter-spacing:7.680000pt;}
.lsb{letter-spacing:10.880000pt;}
.lsf{letter-spacing:12.800000pt;}
.ls4{letter-spacing:14.826667pt;}
.ls33{letter-spacing:17.280000pt;}
.ls1e{letter-spacing:18.560000pt;}
.ls21{letter-spacing:20.480000pt;}
.ls22{letter-spacing:20.640000pt;}
.ls38{letter-spacing:21.120000pt;}
.ls2c{letter-spacing:21.760000pt;}
.ls23{letter-spacing:23.680000pt;}
.ls2d{letter-spacing:23.840000pt;}
.ls17{letter-spacing:26.880000pt;}
.ls34{letter-spacing:34.810027pt;}
.ls2f{letter-spacing:35.450027pt;}
.ls19{letter-spacing:35.471360pt;}
.ls2b{letter-spacing:37.760000pt;}
.ls2a{letter-spacing:98.810027pt;}
.ls29{letter-spacing:102.650027pt;}
.ls28{letter-spacing:121.850027pt;}
.ls6{letter-spacing:126.080000pt;}
.ls27{letter-spacing:141.690027pt;}
.lse{letter-spacing:174.080000pt;}
.lsa{letter-spacing:450.560000pt;}
.ls5{letter-spacing:476.320000pt;}
.lsd{letter-spacing:915.360000pt;}
.ls3{letter-spacing:974.218667pt;}
.ls1{letter-spacing:1149.418667pt;}
.ls7{letter-spacing:1618.005333pt;}
.ls37{letter-spacing:1990.186667pt;}
.ws3{word-spacing:-29.280000pt;}
.ws4{word-spacing:-24.000000pt;}
.ws2{word-spacing:-21.448533pt;}
.ws1{word-spacing:-21.280000pt;}
.ws7{word-spacing:-16.640000pt;}
.ws14{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.965867pt;}
.ws12{word-spacing:-14.842667pt;}
.ws8{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.579200pt;}
.wsd{word-spacing:-14.448533pt;}
.ws10{word-spacing:-14.313067pt;}
.wse{word-spacing:-14.080000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.534613pt;}
.wsa{word-spacing:-12.320000pt;}
.ws11{word-spacing:-12.016000pt;}
.wsb{word-spacing:-12.000000pt;}
.ws0{word-spacing:0.000000pt;}
._20{margin-left:-42.240000pt;}
._27{margin-left:-33.760000pt;}
._2a{margin-left:-18.446507pt;}
._1c{margin-left:-6.653440pt;}
._23{margin-left:-4.536107pt;}
._d{margin-left:-3.643093pt;}
._c{margin-left:-2.708480pt;}
._2{margin-left:-1.389440pt;}
._0{width:0.956160pt;}
._1{width:2.718933pt;}
._5{width:3.875200pt;}
._11{width:5.143040pt;}
._10{width:6.155520pt;}
._14{width:7.395200pt;}
._f{width:8.513920pt;}
._e{width:9.597440pt;}
._7{width:11.264000pt;}
._8{width:12.558507pt;}
._24{width:13.730773pt;}
._6{width:14.723840pt;}
._18{width:16.015360pt;}
._16{width:17.525547pt;}
._15{width:18.429440pt;}
._2d{width:19.332693pt;}
._17{width:20.248960pt;}
._25{width:21.260800pt;}
._28{width:22.232960pt;}
._12{width:23.139840pt;}
._13{width:24.113067pt;}
._9{width:25.088000pt;}
._29{width:27.061120pt;}
._a{width:28.632107pt;}
._2c{width:36.332587pt;}
._2b{width:37.718400pt;}
._19{width:40.744960pt;}
._1a{width:42.164053pt;}
._1e{width:44.725120pt;}
._1d{width:46.044160pt;}
._21{width:57.607680pt;}
._22{width:58.503040pt;}
._3{width:170.186667pt;}
._4{width:749.418667pt;}
._b{width:752.138667pt;}
._1b{width:753.418667pt;}
._26{width:826.982613pt;}
._1f{width:2408.085333pt;}
.fs0{font-size:2.560000pt;}
.fsb{font-size:32.000000pt;}
.fsa{font-size:37.120000pt;}
.fsc{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs9{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs6{font-size:96.000000pt;}
.fs4{font-size:106.880000pt;}
.fs5{font-size:117.120000pt;}
.fs3{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.ybd{bottom:3.200000pt;}
.ybc{bottom:20.160000pt;}
.y3{bottom:59.520000pt;}
.y1{bottom:75.712000pt;}
.y9e{bottom:78.080000pt;}
.yae{bottom:82.080000pt;}
.y24{bottom:88.960000pt;}
.y9d{bottom:91.840000pt;}
.yb9{bottom:92.480000pt;}
.y9c{bottom:95.840000pt;}
.yad{bottom:105.600000pt;}
.yfb{bottom:106.400000pt;}
.yac{bottom:109.600000pt;}
.y23{bottom:114.720000pt;}
.y9b{bottom:119.520000pt;}
.yb8{bottom:122.400000pt;}
.y9a{bottom:123.520000pt;}
.yab{bottom:133.280000pt;}
.y4c{bottom:133.440000pt;}
.y99{bottom:133.920000pt;}
.ye0{bottom:136.960000pt;}
.yfa{bottom:137.120000pt;}
.yaa{bottom:137.280000pt;}
.yb7{bottom:139.360000pt;}
.y22{bottom:143.200000pt;}
.ya9{bottom:147.040000pt;}
.y4b{bottom:152.320000pt;}
.ydf{bottom:153.760000pt;}
.yf9{bottom:154.080000pt;}
.yb5{bottom:156.160000pt;}
.y98{bottom:158.720000pt;}
.ya8{bottom:160.800000pt;}
.y21{bottom:164.640000pt;}
.ya7{bottom:164.800000pt;}
.yde{bottom:170.720000pt;}
.yf8{bottom:170.880000pt;}
.yb4{bottom:173.120000pt;}
.y4a{bottom:173.280000pt;}
.ya6{bottom:175.360000pt;}
.y97{bottom:175.520000pt;}
.y20{bottom:186.106667pt;}
.ydd{bottom:187.546667pt;}
.yf7{bottom:187.866667pt;}
.yb3{bottom:189.946667pt;}
.y49{bottom:191.706667pt;}
.y96{bottom:192.506667pt;}
.ydc{bottom:204.506667pt;}
.yf6{bottom:204.666667pt;}
.y7b{bottom:206.746667pt;}
.ya5{bottom:206.906667pt;}
.y1f{bottom:207.546667pt;}
.y95{bottom:209.306667pt;}
.y48{bottom:210.106667pt;}
.ydb{bottom:221.306667pt;}
.yf5{bottom:221.466667pt;}
.y7a{bottom:223.706667pt;}
.y94{bottom:226.106667pt;}
.y1e{bottom:228.986667pt;}
.yda{bottom:238.266667pt;}
.yf4{bottom:238.426667pt;}
.y79{bottom:240.506667pt;}
.y93{bottom:243.066667pt;}
.y47{bottom:248.186667pt;}
.y1d{bottom:250.586667pt;}
.yd8{bottom:255.066667pt;}
.yf3{bottom:255.226667pt;}
.y78{bottom:257.466667pt;}
.y92{bottom:259.866667pt;}
.yd9{bottom:260.346667pt;}
.yd7{bottom:271.866667pt;}
.yf2{bottom:272.186667pt;}
.y46{bottom:272.666667pt;}
.y77{bottom:274.266667pt;}
.y91{bottom:276.826667pt;}
.yd6{bottom:288.826667pt;}
.yf1{bottom:288.986667pt;}
.y76{bottom:291.226667pt;}
.y1c{bottom:293.466667pt;}
.y90{bottom:293.626667pt;}
.y45{bottom:297.146667pt;}
.yd5{bottom:305.626667pt;}
.yf0{bottom:305.786667pt;}
.y75{bottom:308.026667pt;}
.y8f{bottom:310.426667pt;}
.y1b{bottom:314.906667pt;}
.y44{bottom:321.786667pt;}
.yd4{bottom:322.586667pt;}
.y74{bottom:324.826667pt;}
.y8e{bottom:327.386667pt;}
.yef{bottom:328.346667pt;}
.y1a{bottom:336.346667pt;}
.yd3{bottom:339.386667pt;}
.y73{bottom:341.786667pt;}
.y43{bottom:346.266667pt;}
.yee{bottom:354.426667pt;}
.yd2{bottom:356.186667pt;}
.y19{bottom:357.786667pt;}
.y72{bottom:358.586667pt;}
.y8d{bottom:361.146667pt;}
.yb2{bottom:363.866667pt;}
.y42{bottom:370.746667pt;}
.yd1{bottom:373.146667pt;}
.y71{bottom:375.546667pt;}
.yed{bottom:376.986667pt;}
.y8c{bottom:377.946667pt;}
.y18{bottom:379.386667pt;}
.yd0{bottom:389.946667pt;}
.y70{bottom:392.346667pt;}
.y8a{bottom:394.786667pt;}
.y41{bottom:395.426667pt;}
.y8b{bottom:400.066667pt;}
.y17{bottom:400.866667pt;}
.yec{bottom:403.106667pt;}
.ycf{bottom:406.946667pt;}
.y6f{bottom:409.186667pt;}
.y89{bottom:411.746667pt;}
.y40{bottom:419.906667pt;}
.y16{bottom:422.306667pt;}
.yce{bottom:423.746667pt;}
.y6e{bottom:426.146667pt;}
.y88{bottom:428.546667pt;}
.yeb{bottom:437.026667pt;}
.ycd{bottom:440.546667pt;}
.y6d{bottom:442.946667pt;}
.y3f{bottom:444.386667pt;}
.y87{bottom:445.506667pt;}
.y15{bottom:446.146667pt;}
.ya4{bottom:448.226667pt;}
.yea{bottom:455.426667pt;}
.ycc{bottom:457.506667pt;}
.ya3{bottom:459.906667pt;}
.y86{bottom:462.306667pt;}
.y3e{bottom:468.866667pt;}
.ycb{bottom:474.306667pt;}
.y6c{bottom:476.706667pt;}
.y14{bottom:478.626667pt;}
.y85{bottom:479.266667pt;}
.yca{bottom:491.266667pt;}
.ye9{bottom:491.426667pt;}
.y3d{bottom:493.506667pt;}
.y84{bottom:496.066667pt;}
.y13{bottom:507.426667pt;}
.yc9{bottom:508.066667pt;}
.ye8{bottom:508.386667pt;}
.y6b{bottom:510.466667pt;}
.y3c{bottom:517.986667pt;}
.y83{bottom:518.466667pt;}
.yc8{bottom:524.866667pt;}
.ye7{bottom:525.186667pt;}
.y6a{bottom:527.266667pt;}
.ya2{bottom:532.546667pt;}
.y12{bottom:541.186667pt;}
.yc7{bottom:541.826667pt;}
.ye6{bottom:542.146667pt;}
.y3b{bottom:542.466667pt;}
.y69{bottom:544.226667pt;}
.y82{bottom:544.706667pt;}
.yc6{bottom:558.626667pt;}
.ye5{bottom:558.946667pt;}
.y68{bottom:561.026667pt;}
.y81{bottom:561.506667pt;}
.y3a{bottom:567.106667pt;}
.y11{bottom:574.306667pt;}
.yc5{bottom:575.586667pt;}
.ye4{bottom:576.546667pt;}
.y67{bottom:577.826667pt;}
.y80{bottom:578.306667pt;}
.ya1{bottom:583.106667pt;}
.y39{bottom:591.586667pt;}
.yc4{bottom:592.386667pt;}
.ye3{bottom:594.466667pt;}
.y66{bottom:594.786667pt;}
.y7f{bottom:600.866667pt;}
.y10{bottom:607.293333pt;}
.yc3{bottom:609.213333pt;}
.y65{bottom:611.613333pt;}
.y38{bottom:616.093333pt;}
.yc2{bottom:626.173333pt;}
.y7e{bottom:627.293333pt;}
.y64{bottom:628.573333pt;}
.y37{bottom:640.733333pt;}
.yc1{bottom:642.973333pt;}
.y63{bottom:645.373333pt;}
.yf{bottom:650.173333pt;}
.yb6{bottom:650.653333pt;}
.yc0{bottom:659.933333pt;}
.y62{bottom:662.333333pt;}
.y36{bottom:664.093333pt;}
.ybf{bottom:676.733333pt;}
.y61{bottom:679.133333pt;}
.ye{bottom:693.053333pt;}
.ybe{bottom:693.693333pt;}
.y60{bottom:695.933333pt;}
.y35{bottom:700.893333pt;}
.ybb{bottom:707.933333pt;}
.y5f{bottom:712.893333pt;}
.yb1{bottom:718.173333pt;}
.y34{bottom:719.293333pt;}
.y5e{bottom:729.693333pt;}
.yd{bottom:736.093333pt;}
.y33{bottom:737.693333pt;}
.yba{bottom:746.333333pt;}
.y5d{bottom:746.653333pt;}
.y7d{bottom:763.453333pt;}
.y32{bottom:774.493333pt;}
.yc{bottom:778.973333pt;}
.y5c{bottom:780.253333pt;}
.y31{bottom:792.893333pt;}
.y5b{bottom:797.213333pt;}
.yb0{bottom:802.493333pt;}
.y30{bottom:811.293333pt;}
.y5a{bottom:814.013333pt;}
.yaf{bottom:819.333333pt;}
.yb{bottom:821.893333pt;}
.y2f{bottom:829.733333pt;}
.y59{bottom:831.013333pt;}
.y58{bottom:847.813333pt;}
.y2e{bottom:848.133333pt;}
.ya0{bottom:853.093333pt;}
.y57{bottom:864.613333pt;}
.ya{bottom:864.933333pt;}
.y2d{bottom:866.533333pt;}
.y56{bottom:881.573333pt;}
.y2c{bottom:884.933333pt;}
.y55{bottom:898.373333pt;}
.y2b{bottom:903.333333pt;}
.y9{bottom:904.453333pt;}
.y54{bottom:915.333333pt;}
.y2a{bottom:921.733333pt;}
.y8{bottom:928.933333pt;}
.y53{bottom:932.133333pt;}
.ye2{bottom:937.413333pt;}
.y29{bottom:940.133333pt;}
.y52{bottom:948.933333pt;}
.y7{bottom:953.573333pt;}
.y28{bottom:958.533333pt;}
.y51{bottom:965.893333pt;}
.y9f{bottom:971.173333pt;}
.y6{bottom:978.053333pt;}
.y50{bottom:982.693333pt;}
.y27{bottom:995.333333pt;}
.y4f{bottom:999.653333pt;}
.y5{bottom:1002.533333pt;}
.y26{bottom:1013.733333pt;}
.y4e{bottom:1016.453333pt;}
.y7c{bottom:1021.733333pt;}
.y4{bottom:1027.200000pt;}
.y25{bottom:1032.160000pt;}
.y4d{bottom:1033.440000pt;}
.ye1{bottom:1038.720000pt;}
.y2{bottom:1057.120000pt;}
.h2{height:2.512500pt;}
.h17{height:31.406250pt;}
.h1c{height:33.760000pt;}
.h12{height:36.431250pt;}
.h15{height:37.410000pt;}
.h18{height:47.109375pt;}
.h14{height:50.916250pt;}
.h4{height:52.134375pt;}
.h11{height:52.468750pt;}
.h13{height:55.343750pt;}
.h16{height:57.758750pt;}
.h10{height:57.787500pt;}
.h1b{height:58.563750pt;}
.hf{height:59.340000pt;}
.h19{height:60.519362pt;}
.h1a{height:61.295000pt;}
.hd{height:62.812500pt;}
.he{height:64.500000pt;}
.hc{height:73.490625pt;}
.h5{height:73.607188pt;}
.hb{height:75.465000pt;}
.h6{height:85.785000pt;}
.ha{height:96.750000pt;}
.h8{height:104.896875pt;}
.h9{height:118.035000pt;}
.h7{height:150.285000pt;}
.h3{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:620.893333pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x44{left:6.880000pt;}
.x11{left:75.551988pt;}
.x43{left:83.552000pt;}
.x1{left:86.911988pt;}
.x2f{left:90.111988pt;}
.x37{left:98.911988pt;}
.x1f{left:102.271988pt;}
.x40{left:110.911988pt;}
.x1b{left:113.311988pt;}
.x14{left:115.391988pt;}
.x4{left:116.671988pt;}
.x4a{left:119.071988pt;}
.x16{left:122.431988pt;}
.x42{left:123.551988pt;}
.x8{left:124.671988pt;}
.x2a{left:134.106655pt;}
.x15{left:135.706655pt;}
.x34{left:143.866643pt;}
.x38{left:148.346643pt;}
.x20{left:149.626655pt;}
.x13{left:153.146655pt;}
.x35{left:157.786655pt;}
.x31{left:158.906655pt;}
.x39{left:162.266655pt;}
.xc{left:166.586655pt;}
.xb{left:167.546655pt;}
.x46{left:169.946655pt;}
.xf{left:171.706655pt;}
.xa{left:176.186655pt;}
.x3e{left:184.986643pt;}
.x48{left:187.066643pt;}
.x41{left:190.586643pt;}
.x3f{left:198.906655pt;}
.x49{left:200.986655pt;}
.xd{left:204.506655pt;}
.x45{left:209.306643pt;}
.x6{left:216.186655pt;}
.x7{left:223.066655pt;}
.x3c{left:226.426643pt;}
.x5{left:232.026655pt;}
.x22{left:233.466655pt;}
.x3d{left:240.386655pt;}
.x4e{left:255.906655pt;}
.x29{left:267.586655pt;}
.x12{left:274.786655pt;}
.x36{left:278.946655pt;}
.x2b{left:284.706643pt;}
.x2c{left:298.626655pt;}
.x4c{left:303.106655pt;}
.x47{left:314.786643pt;}
.x10{left:316.226655pt;}
.x9{left:328.386655pt;}
.x2d{left:360.546643pt;}
.x1a{left:372.066655pt;}
.x2e{left:374.466655pt;}
.x24{left:378.146655pt;}
.x32{left:385.826643pt;}
.x23{left:389.346655pt;}
.xe{left:391.106655pt;}
.x33{left:399.773322pt;}
.x4b{left:402.493322pt;}
.x26{left:467.773322pt;}
.x25{left:474.013322pt;}
.x21{left:493.693322pt;}
.x4f{left:528.733322pt;}
.x4d{left:534.013322pt;}
.x2{left:540.893322pt;}
.x30{left:554.013322pt;}
.x1d{left:577.413310pt;}
.x1e{left:591.333322pt;}
.x17{left:612.933322pt;}
.x3a{left:640.933310pt;}
.x3b{left:654.853322pt;}
.x18{left:656.293322pt;}
.x27{left:681.893310pt;}
.x1c{left:693.573322pt;}
.x28{left:695.813322pt;}
.x3{left:700.133322pt;}
.x19{left:718.239988pt;}
}




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