
    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_5f750f4cb2609496b0e3b15c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_62ed55df4796b7034d5553c4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c49c1ae83030e0d5e6e62599.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7d3222789a134fac43a1cd1b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.943848;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_3675022a3404d9008db86820.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.727539;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_86ca9c14f41ef570a8507162.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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_c5beb456d23984055fedb881.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.793457;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_176b46f40b2382329016ff36.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.972168;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_f46053321d8006c49afbcbb8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947754;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_3bd67ede3c04987cdb3fb9c3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973145;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_4ce0ba69a67ec1aef1634a9c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973633;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_875a9dc1961f38a854f61f8a.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ddf3b6a48daf39e0c2fab028.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.973145;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_267f127ba910ad69e82f4d5b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.973633;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_b4eb1afc54361c61318fda9e.woff2')format("woff");}.fff{font-family:fff;line-height:0.927734;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_f4b37e5791ad107a6fcfd3c6.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.950684;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_24d843515181c37131a422f0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.758789;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_2a188321fb40b2749741b9ec.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.747070;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:12.240000px;}
.v5{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.lsf{letter-spacing:-0.331200px;}
.ls1f{letter-spacing:-0.326400px;}
.ls1a{letter-spacing:-0.324000px;}
.ls16{letter-spacing:-0.306000px;}
.ls25{letter-spacing:-0.301200px;}
.ls18{letter-spacing:-0.288000px;}
.ls24{letter-spacing:-0.270600px;}
.ls19{letter-spacing:-0.270000px;}
.ls10{letter-spacing:-0.234000px;}
.lse{letter-spacing:-0.180000px;}
.ls2a{letter-spacing:-0.108000px;}
.ls6{letter-spacing:-0.091200px;}
.ls12{letter-spacing:-0.090000px;}
.ls1e{letter-spacing:-0.078600px;}
.ls7{letter-spacing:-0.075894px;}
.lsb{letter-spacing:-0.072000px;}
.lsc{letter-spacing:-0.036000px;}
.ls5{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.011520px;}
.lsd{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.031680px;}
.ls13{letter-spacing:0.036000px;}
.ls28{letter-spacing:0.048960px;}
.ls17{letter-spacing:0.054000px;}
.ls26{letter-spacing:0.056160px;}
.ls31{letter-spacing:0.090000px;}
.ls23{letter-spacing:0.104400px;}
.ls21{letter-spacing:0.136800px;}
.ls9{letter-spacing:0.144000px;}
.ls2f{letter-spacing:0.162000px;}
.ls3{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.211680px;}
.ls1c{letter-spacing:0.216000px;}
.ls30{letter-spacing:0.234000px;}
.ls8{letter-spacing:0.234600px;}
.ls1{letter-spacing:0.234720px;}
.ls1b{letter-spacing:0.252000px;}
.ls27{letter-spacing:0.263400px;}
.ls2c{letter-spacing:0.270000px;}
.ls20{letter-spacing:0.284400px;}
.ls14{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.331200px;}
.ls2d{letter-spacing:0.342000px;}
.lsa{letter-spacing:0.360000px;}
.ls29{letter-spacing:0.432000px;}
.ls11{letter-spacing:0.486000px;}
.ls2e{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.954720px;}
.ls15{letter-spacing:11.466000px;}
.ls2b{letter-spacing:27.306000px;}
.sc_{text-shadow:none;}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-22.316640px;}
.ws3{word-spacing:-19.152000px;}
.wsb{word-spacing:-18.954000px;}
.wsa{word-spacing:-18.468000px;}
.ws4{word-spacing:-18.360000px;}
.ws9{word-spacing:-18.234000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.928000px;}
.ws6{word-spacing:-16.824960px;}
.ws28{word-spacing:-14.058000px;}
.ws27{word-spacing:-13.950000px;}
.ws25{word-spacing:-13.896000px;}
.ws26{word-spacing:-13.878000px;}
.ws2b{word-spacing:-13.806000px;}
.ws29{word-spacing:-13.752000px;}
.ws24{word-spacing:-13.716000px;}
.ws22{word-spacing:-13.446000px;}
.ws12{word-spacing:-13.302000px;}
.ws14{word-spacing:-13.266000px;}
.ws15{word-spacing:-13.230000px;}
.wsf{word-spacing:-13.068000px;}
.ws8{word-spacing:-13.032000px;}
.ws7{word-spacing:-13.014000px;}
.ws23{word-spacing:-12.978000px;}
.wsd{word-spacing:-12.924000px;}
.wse{word-spacing:-12.834000px;}
.ws11{word-spacing:-12.744000px;}
.ws10{word-spacing:-12.726000px;}
.ws13{word-spacing:-12.690000px;}
.ws19{word-spacing:-11.910240px;}
.ws20{word-spacing:-11.889240px;}
.ws1a{word-spacing:-11.762640px;}
.ws1c{word-spacing:-11.730240px;}
.ws1f{word-spacing:-11.682000px;}
.ws21{word-spacing:-11.674800px;}
.ws1b{word-spacing:-11.637360px;}
.ws17{word-spacing:-11.547240px;}
.ws1d{word-spacing:-11.355240px;}
.ws1e{word-spacing:-11.324640px;}
.ws18{word-spacing:-11.299440px;}
.ws2{word-spacing:-10.576680px;}
.ws2a{word-spacing:-8.496000px;}
.ws16{word-spacing:-7.287840px;}
.wsc{word-spacing:0.000000px;}
._1{margin-left:-2.334000px;}
._0{margin-left:-1.263600px;}
._3{width:1.419600px;}
._5{width:2.938800px;}
._11{width:4.351200px;}
._6{width:6.210000px;}
._7{width:7.560000px;}
._a{width:8.769600px;}
._15{width:9.898800px;}
._b{width:10.962000px;}
._18{width:11.988000px;}
._12{width:14.634000px;}
._f{width:16.308000px;}
._8{width:18.156000px;}
._9{width:19.345200px;}
._4{width:20.808000px;}
._10{width:22.302000px;}
._22{width:23.490000px;}
._14{width:24.678000px;}
._20{width:26.406000px;}
._c{width:27.756000px;}
._d{width:28.760400px;}
._21{width:29.862000px;}
._24{width:31.428000px;}
._33{width:32.454000px;}
._17{width:33.501600px;}
._16{width:34.560000px;}
._13{width:36.504000px;}
._e{width:37.746000px;}
._1f{width:39.026400px;}
._1a{width:40.230000px;}
._19{width:41.763600px;}
._25{width:42.855600px;}
._2f{width:44.334000px;}
._26{width:46.116000px;}
._27{width:47.574000px;}
._28{width:49.626000px;}
._2{width:51.231600px;}
._2b{width:52.502400px;}
._30{width:53.809200px;}
._2a{width:54.972000px;}
._2e{width:57.240000px;}
._34{width:58.766400px;}
._1d{width:59.778000px;}
._1e{width:61.488000px;}
._29{width:64.152000px;}
._23{width:67.932000px;}
._35{width:69.066000px;}
._31{width:70.416000px;}
._32{width:71.550000px;}
._1b{width:86.400000px;}
._1c{width:87.702000px;}
._2c{width:106.704000px;}
._2d{width:127.038000px;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:12.240000px;}
.fsf{font-size:30.240000px;}
.fs9{font-size:33.120000px;}
.fse{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fsa{font-size:59.760000px;}
.fsc{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsd{font-size:74.880000px;}
.fs8{font-size:75.893905px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs5{font-size:100.938894px;}
.fs2{font-size:108.000000px;}
.y39{bottom:-15.660000px;}
.y0{bottom:0.000000px;}
.y16{bottom:2.340000px;}
.y7{bottom:2.880000px;}
.y20{bottom:3.240000px;}
.y11{bottom:3.420000px;}
.y26{bottom:3.600000px;}
.y1c{bottom:3.960000px;}
.y4{bottom:4.140000px;}
.y7f{bottom:4.320000px;}
.y3{bottom:4.500000px;}
.y24{bottom:4.860000px;}
.y38{bottom:9.000000px;}
.y73{bottom:10.785000px;}
.y69{bottom:10.800000px;}
.y32{bottom:10.830000px;}
.y71{bottom:10.965000px;}
.y1e{bottom:10.980000px;}
.y6f{bottom:11.010000px;}
.y6b{bottom:11.340000px;}
.y22{bottom:14.940000px;}
.y14{bottom:15.120000px;}
.y34{bottom:16.365000px;}
.yf{bottom:19.980000px;}
.y1a{bottom:21.060000px;}
.y37{bottom:30.240000px;}
.y31{bottom:33.870000px;}
.y13{bottom:45.765000px;}
.y19{bottom:51.660000px;}
.y30{bottom:56.910000px;}
.y5{bottom:58.320000px;}
.ye{bottom:60.840000px;}
.y2{bottom:74.520000px;}
.y36{bottom:75.810000px;}
.y2f{bottom:79.950000px;}
.ya{bottom:80.460000px;}
.y18{bottom:82.440000px;}
.y9{bottom:91.440000px;}
.y2e{bottom:102.990000px;}
.y7d{bottom:113.040000px;}
.y9f{bottom:115.020000px;}
.y2d{bottom:126.030000px;}
.y67{bottom:130.320000px;}
.y7c{bottom:136.080000px;}
.y2c{bottom:148.890000px;}
.y66{bottom:153.210000px;}
.y7b{bottom:158.970000px;}
.y2b{bottom:171.930000px;}
.y65{bottom:176.250000px;}
.y7a{bottom:182.010000px;}
.y2a{bottom:194.970000px;}
.y64{bottom:199.290000px;}
.y79{bottom:205.050000px;}
.y29{bottom:218.010000px;}
.y63{bottom:222.330000px;}
.y78{bottom:228.090000px;}
.y77{bottom:242.325000px;}
.y62{bottom:245.370000px;}
.y76{bottom:266.445000px;}
.y61{bottom:268.410000px;}
.y75{bottom:290.745000px;}
.y60{bottom:291.270000px;}
.y5f{bottom:314.310000px;}
.y74{bottom:314.865000px;}
.y5e{bottom:337.350000px;}
.y72{bottom:338.985000px;}
.y33{bottom:354.465000px;}
.y5d{bottom:360.390000px;}
.y70{bottom:363.105000px;}
.y9e{bottom:376.410000px;}
.y28{bottom:380.385000px;}
.y5c{bottom:383.430000px;}
.y6e{bottom:387.225000px;}
.y9d{bottom:399.495000px;}
.y5b{bottom:406.515000px;}
.y6d{bottom:411.375000px;}
.y9c{bottom:422.535000px;}
.y5a{bottom:429.375000px;}
.y6c{bottom:435.495000px;}
.y9b{bottom:445.395000px;}
.y59{bottom:452.415000px;}
.y6a{bottom:459.615000px;}
.y9a{bottom:468.435000px;}
.y58{bottom:475.455000px;}
.y68{bottom:485.355000px;}
.y99{bottom:491.475000px;}
.y57{bottom:498.495000px;}
.y56{bottom:521.535000px;}
.y98{bottom:537.555000px;}
.y55{bottom:544.575000px;}
.y97{bottom:551.775000px;}
.y54{bottom:567.435000px;}
.y96{bottom:567.975000px;}
.y95{bottom:583.995000px;}
.y53{bottom:590.475000px;}
.y94{bottom:600.195000px;}
.y27{bottom:610.455000px;}
.y52{bottom:613.515000px;}
.y93{bottom:616.215000px;}
.y25{bottom:625.755000px;}
.y92{bottom:632.415000px;}
.y51{bottom:636.555000px;}
.y23{bottom:644.505000px;}
.y91{bottom:648.645000px;}
.y50{bottom:659.625000px;}
.y21{bottom:664.485000px;}
.y90{bottom:664.665000px;}
.y8f{bottom:680.865000px;}
.y4f{bottom:682.485000px;}
.y1f{bottom:694.545000px;}
.y8e{bottom:696.885000px;}
.y4e{bottom:705.525000px;}
.y1d{bottom:707.865000px;}
.y8d{bottom:714.165000px;}
.y4d{bottom:728.565000px;}
.y1b{bottom:730.905000px;}
.y8c{bottom:742.425000px;}
.y17{bottom:747.825000px;}
.y4c{bottom:751.605000px;}
.y8b{bottom:765.465000px;}
.y4b{bottom:774.645000px;}
.y8a{bottom:788.325000px;}
.y4a{bottom:797.685000px;}
.y89{bottom:811.365000px;}
.y49{bottom:820.545000px;}
.y88{bottom:834.405000px;}
.y15{bottom:839.805000px;}
.y48{bottom:843.585000px;}
.y12{bottom:854.385000px;}
.y87{bottom:857.445000px;}
.y47{bottom:866.625000px;}
.y86{bottom:880.485000px;}
.y46{bottom:889.710000px;}
.y85{bottom:903.570000px;}
.y45{bottom:912.750000px;}
.y10{bottom:915.450000px;}
.y84{bottom:917.790000px;}
.yd{bottom:929.130000px;}
.y83{bottom:933.990000px;}
.y44{bottom:935.790000px;}
.y82{bottom:950.010000px;}
.y43{bottom:958.650000px;}
.y81{bottom:966.210000px;}
.y42{bottom:981.690000px;}
.y80{bottom:982.230000px;}
.y7e{bottom:999.510000px;}
.y41{bottom:1004.730000px;}
.yc{bottom:1013.370000px;}
.y40{bottom:1027.770000px;}
.yb{bottom:1030.110000px;}
.y8{bottom:1046.850000px;}
.y3f{bottom:1050.810000px;}
.y35{bottom:1065.210000px;}
.y3e{bottom:1073.850000px;}
.y3d{bottom:1096.710000px;}
.y3c{bottom:1119.750000px;}
.y3b{bottom:1142.820000px;}
.y1{bottom:1171.080000px;}
.y3a{bottom:1192.680000px;}
.y6{bottom:1195.740000px;}
.hc{height:8.289492px;}
.h1d{height:13.320000px;}
.h10{height:13.665000px;}
.h15{height:14.580000px;}
.h34{height:14.925000px;}
.h35{height:14.940000px;}
.h37{height:14.970000px;}
.h32{height:15.105000px;}
.h36{height:15.120000px;}
.h24{height:15.285000px;}
.h19{height:16.920000px;}
.h22{height:18.750000px;}
.h21{height:19.980000px;}
.h3{height:20.698500px;}
.h5{height:20.880000px;}
.h2e{height:22.845000px;}
.h30{height:23.025000px;}
.h1b{height:23.040000px;}
.h31{height:23.061000px;}
.h2f{height:23.385000px;}
.h18{height:25.001719px;}
.h27{height:25.905000px;}
.h28{height:29.145586px;}
.h1f{height:30.060000px;}
.h11{height:32.670352px;}
.h1e{height:33.588984px;}
.h33{height:36.509766px;}
.h16{height:36.886641px;}
.h1a{height:40.472227px;}
.h25{height:40.842773px;}
.h1c{height:40.869141px;}
.h2b{height:41.291016px;}
.h2d{height:42.366094px;}
.h13{height:48.761719px;}
.h23{height:50.100469px;}
.h20{height:50.132812px;}
.h14{height:51.398851px;}
.h9{height:51.539062px;}
.hb{height:54.457031px;}
.h2a{height:55.054688px;}
.h2c{height:55.209375px;}
.h6{height:57.051211px;}
.h12{height:61.042500px;}
.he{height:64.853086px;}
.hf{height:68.360471px;}
.h2{height:70.664062px;}
.h4{height:72.562500px;}
.ha{height:78.468750px;}
.hd{height:81.525000px;}
.h7{height:84.898125px;}
.h17{height:91.980000px;}
.h29{height:93.810000px;}
.h8{height:108.030000px;}
.h26{height:230.055000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:45.529500px;}
.w13{width:52.549500px;}
.w6{width:76.669500px;}
.wf{width:89.449500px;}
.wc{width:94.129500px;}
.w14{width:123.141000px;}
.w5{width:124.005000px;}
.w10{width:145.641000px;}
.w15{width:155.160000px;}
.w16{width:156.990000px;}
.w17{width:187.215000px;}
.w11{width:211.530000px;}
.w12{width:228.435000px;}
.we{width:283.695000px;}
.wd{width:297.420000px;}
.wa{width:332.115000px;}
.w9{width:356.464500px;}
.wb{width:464.475000px;}
.w4{width:551.790000px;}
.w7{width:616.455000px;}
.w3{width:628.290000px;}
.w8{width:688.590000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.465000px;}
.x9{left:8.089500px;}
.x5{left:10.789500px;}
.x3b{left:13.489500px;}
.xc{left:15.829500px;}
.x4a{left:19.969500px;}
.x2{left:21.049500px;}
.x49{left:24.105000px;}
.x19{left:26.449500px;}
.x3f{left:28.650000px;}
.x2d{left:30.949500px;}
.x48{left:32.025000px;}
.x45{left:33.645000px;}
.x41{left:36.525000px;}
.x2c{left:38.149500px;}
.x7{left:39.780000px;}
.x2a{left:41.209500px;}
.x1e{left:42.283500px;}
.x33{left:44.445000px;}
.x46{left:48.960000px;}
.x44{left:50.400000px;}
.x42{left:51.660000px;}
.x47{left:53.490000px;}
.x2f{left:55.065000px;}
.x43{left:56.550000px;}
.x31{left:58.860000px;}
.x4b{left:59.970000px;}
.x2b{left:63.165000px;}
.x3a{left:64.425000px;}
.x1b{left:65.730000px;}
.x28{left:68.025000px;}
.x39{left:69.510000px;}
.x20{left:72.525000px;}
.x11{left:73.785000px;}
.x24{left:76.485000px;}
.x38{left:79.380000px;}
.x36{left:82.800000px;}
.x37{left:85.350000px;}
.x26{left:88.185000px;}
.x34{left:91.620000px;}
.x1d{left:94.125000px;}
.x35{left:99.030000px;}
.x8{left:100.126500px;}
.xb{left:101.386500px;}
.x27{left:103.350000px;}
.x14{left:105.300000px;}
.x1{left:108.036000px;}
.x29{left:110.010000px;}
.x25{left:114.150000px;}
.x23{left:117.390000px;}
.x1f{left:120.450000px;}
.x22{left:124.950000px;}
.x21{left:126.750000px;}
.x3{left:157.005000px;}
.x3c{left:160.605000px;}
.xa{left:176.805000px;}
.x2e{left:197.505000px;}
.x1a{left:202.185000px;}
.x16{left:230.430000px;}
.x15{left:263.910000px;}
.x3d{left:283.755000px;}
.xd{left:302.788500px;}
.xe{left:305.668500px;}
.xf{left:320.608500px;}
.x13{left:325.875000px;}
.x30{left:343.155000px;}
.x3e{left:438.915000px;}
.x17{left:453.855000px;}
.x10{left:457.860000px;}
.x18{left:462.705000px;}
.x1c{left:499.620000px;}
.x32{left:554.700000px;}
.x40{left:595.920000px;}
.x6{left:661.650000px;}
.x12{left:680.323500px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.880000pt;}
.v5{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.lsf{letter-spacing:-0.294400pt;}
.ls1f{letter-spacing:-0.290133pt;}
.ls1a{letter-spacing:-0.288000pt;}
.ls16{letter-spacing:-0.272000pt;}
.ls25{letter-spacing:-0.267733pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls24{letter-spacing:-0.240533pt;}
.ls19{letter-spacing:-0.240000pt;}
.ls10{letter-spacing:-0.208000pt;}
.lse{letter-spacing:-0.160000pt;}
.ls2a{letter-spacing:-0.096000pt;}
.ls6{letter-spacing:-0.081067pt;}
.ls12{letter-spacing:-0.080000pt;}
.ls1e{letter-spacing:-0.069867pt;}
.ls7{letter-spacing:-0.067461pt;}
.lsb{letter-spacing:-0.064000pt;}
.lsc{letter-spacing:-0.032000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.010240pt;}
.lsd{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.028160pt;}
.ls13{letter-spacing:0.032000pt;}
.ls28{letter-spacing:0.043520pt;}
.ls17{letter-spacing:0.048000pt;}
.ls26{letter-spacing:0.049920pt;}
.ls31{letter-spacing:0.080000pt;}
.ls23{letter-spacing:0.092800pt;}
.ls21{letter-spacing:0.121600pt;}
.ls9{letter-spacing:0.128000pt;}
.ls2f{letter-spacing:0.144000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.188160pt;}
.ls1c{letter-spacing:0.192000pt;}
.ls30{letter-spacing:0.208000pt;}
.ls8{letter-spacing:0.208533pt;}
.ls1{letter-spacing:0.208640pt;}
.ls1b{letter-spacing:0.224000pt;}
.ls27{letter-spacing:0.234133pt;}
.ls2c{letter-spacing:0.240000pt;}
.ls20{letter-spacing:0.252800pt;}
.ls14{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.294400pt;}
.ls2d{letter-spacing:0.304000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls29{letter-spacing:0.384000pt;}
.ls11{letter-spacing:0.432000pt;}
.ls2e{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.848640pt;}
.ls15{letter-spacing:10.192000pt;}
.ls2b{letter-spacing:24.272000pt;}
.ws1{word-spacing:-19.837013pt;}
.ws3{word-spacing:-17.024000pt;}
.wsb{word-spacing:-16.848000pt;}
.wsa{word-spacing:-16.416000pt;}
.ws4{word-spacing:-16.320000pt;}
.ws9{word-spacing:-16.208000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.936000pt;}
.ws6{word-spacing:-14.955520pt;}
.ws28{word-spacing:-12.496000pt;}
.ws27{word-spacing:-12.400000pt;}
.ws25{word-spacing:-12.352000pt;}
.ws26{word-spacing:-12.336000pt;}
.ws2b{word-spacing:-12.272000pt;}
.ws29{word-spacing:-12.224000pt;}
.ws24{word-spacing:-12.192000pt;}
.ws22{word-spacing:-11.952000pt;}
.ws12{word-spacing:-11.824000pt;}
.ws14{word-spacing:-11.792000pt;}
.ws15{word-spacing:-11.760000pt;}
.wsf{word-spacing:-11.616000pt;}
.ws8{word-spacing:-11.584000pt;}
.ws7{word-spacing:-11.568000pt;}
.ws23{word-spacing:-11.536000pt;}
.wsd{word-spacing:-11.488000pt;}
.wse{word-spacing:-11.408000pt;}
.ws11{word-spacing:-11.328000pt;}
.ws10{word-spacing:-11.312000pt;}
.ws13{word-spacing:-11.280000pt;}
.ws19{word-spacing:-10.586880pt;}
.ws20{word-spacing:-10.568213pt;}
.ws1a{word-spacing:-10.455680pt;}
.ws1c{word-spacing:-10.426880pt;}
.ws1f{word-spacing:-10.384000pt;}
.ws21{word-spacing:-10.377600pt;}
.ws1b{word-spacing:-10.344320pt;}
.ws17{word-spacing:-10.264213pt;}
.ws1d{word-spacing:-10.093547pt;}
.ws1e{word-spacing:-10.066347pt;}
.ws18{word-spacing:-10.043947pt;}
.ws2{word-spacing:-9.401493pt;}
.ws2a{word-spacing:-7.552000pt;}
.ws16{word-spacing:-6.478080pt;}
.wsc{word-spacing:0.000000pt;}
._1{margin-left:-2.074667pt;}
._0{margin-left:-1.123200pt;}
._3{width:1.261867pt;}
._5{width:2.612267pt;}
._11{width:3.867733pt;}
._6{width:5.520000pt;}
._7{width:6.720000pt;}
._a{width:7.795200pt;}
._15{width:8.798933pt;}
._b{width:9.744000pt;}
._18{width:10.656000pt;}
._12{width:13.008000pt;}
._f{width:14.496000pt;}
._8{width:16.138667pt;}
._9{width:17.195733pt;}
._4{width:18.496000pt;}
._10{width:19.824000pt;}
._22{width:20.880000pt;}
._14{width:21.936000pt;}
._20{width:23.472000pt;}
._c{width:24.672000pt;}
._d{width:25.564800pt;}
._21{width:26.544000pt;}
._24{width:27.936000pt;}
._33{width:28.848000pt;}
._17{width:29.779200pt;}
._16{width:30.720000pt;}
._13{width:32.448000pt;}
._e{width:33.552000pt;}
._1f{width:34.690133pt;}
._1a{width:35.760000pt;}
._19{width:37.123200pt;}
._25{width:38.093867pt;}
._2f{width:39.408000pt;}
._26{width:40.992000pt;}
._27{width:42.288000pt;}
._28{width:44.112000pt;}
._2{width:45.539200pt;}
._2b{width:46.668800pt;}
._30{width:47.830400pt;}
._2a{width:48.864000pt;}
._2e{width:50.880000pt;}
._34{width:52.236800pt;}
._1d{width:53.136000pt;}
._1e{width:54.656000pt;}
._29{width:57.024000pt;}
._23{width:60.384000pt;}
._35{width:61.392000pt;}
._31{width:62.592000pt;}
._32{width:63.600000pt;}
._1b{width:76.800000pt;}
._1c{width:77.957333pt;}
._2c{width:94.848000pt;}
._2d{width:112.922667pt;}
.fs3{font-size:10.880000pt;}
.fsf{font-size:26.880000pt;}
.fs9{font-size:29.440000pt;}
.fse{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fsa{font-size:53.120000pt;}
.fsc{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsd{font-size:66.560000pt;}
.fs8{font-size:67.461249pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs5{font-size:89.723461pt;}
.fs2{font-size:96.000000pt;}
.y39{bottom:-13.920000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:2.080000pt;}
.y7{bottom:2.560000pt;}
.y20{bottom:2.880000pt;}
.y11{bottom:3.040000pt;}
.y26{bottom:3.200000pt;}
.y1c{bottom:3.520000pt;}
.y4{bottom:3.680000pt;}
.y7f{bottom:3.840000pt;}
.y3{bottom:4.000000pt;}
.y24{bottom:4.320000pt;}
.y38{bottom:8.000000pt;}
.y73{bottom:9.586667pt;}
.y69{bottom:9.600000pt;}
.y32{bottom:9.626667pt;}
.y71{bottom:9.746667pt;}
.y1e{bottom:9.760000pt;}
.y6f{bottom:9.786667pt;}
.y6b{bottom:10.080000pt;}
.y22{bottom:13.280000pt;}
.y14{bottom:13.440000pt;}
.y34{bottom:14.546667pt;}
.yf{bottom:17.760000pt;}
.y1a{bottom:18.720000pt;}
.y37{bottom:26.880000pt;}
.y31{bottom:30.106667pt;}
.y13{bottom:40.680000pt;}
.y19{bottom:45.920000pt;}
.y30{bottom:50.586667pt;}
.y5{bottom:51.840000pt;}
.ye{bottom:54.080000pt;}
.y2{bottom:66.240000pt;}
.y36{bottom:67.386667pt;}
.y2f{bottom:71.066667pt;}
.ya{bottom:71.520000pt;}
.y18{bottom:73.280000pt;}
.y9{bottom:81.280000pt;}
.y2e{bottom:91.546667pt;}
.y7d{bottom:100.480000pt;}
.y9f{bottom:102.240000pt;}
.y2d{bottom:112.026667pt;}
.y67{bottom:115.840000pt;}
.y7c{bottom:120.960000pt;}
.y2c{bottom:132.346667pt;}
.y66{bottom:136.186667pt;}
.y7b{bottom:141.306667pt;}
.y2b{bottom:152.826667pt;}
.y65{bottom:156.666667pt;}
.y7a{bottom:161.786667pt;}
.y2a{bottom:173.306667pt;}
.y64{bottom:177.146667pt;}
.y79{bottom:182.266667pt;}
.y29{bottom:193.786667pt;}
.y63{bottom:197.626667pt;}
.y78{bottom:202.746667pt;}
.y77{bottom:215.400000pt;}
.y62{bottom:218.106667pt;}
.y76{bottom:236.840000pt;}
.y61{bottom:238.586667pt;}
.y75{bottom:258.440000pt;}
.y60{bottom:258.906667pt;}
.y5f{bottom:279.386667pt;}
.y74{bottom:279.880000pt;}
.y5e{bottom:299.866667pt;}
.y72{bottom:301.320000pt;}
.y33{bottom:315.080000pt;}
.y5d{bottom:320.346667pt;}
.y70{bottom:322.760000pt;}
.y9e{bottom:334.586667pt;}
.y28{bottom:338.120000pt;}
.y5c{bottom:340.826667pt;}
.y6e{bottom:344.200000pt;}
.y9d{bottom:355.106667pt;}
.y5b{bottom:361.346667pt;}
.y6d{bottom:365.666667pt;}
.y9c{bottom:375.586667pt;}
.y5a{bottom:381.666667pt;}
.y6c{bottom:387.106667pt;}
.y9b{bottom:395.906667pt;}
.y59{bottom:402.146667pt;}
.y6a{bottom:408.546667pt;}
.y9a{bottom:416.386667pt;}
.y58{bottom:422.626667pt;}
.y68{bottom:431.426667pt;}
.y99{bottom:436.866667pt;}
.y57{bottom:443.106667pt;}
.y56{bottom:463.586667pt;}
.y98{bottom:477.826667pt;}
.y55{bottom:484.066667pt;}
.y97{bottom:490.466667pt;}
.y54{bottom:504.386667pt;}
.y96{bottom:504.866667pt;}
.y95{bottom:519.106667pt;}
.y53{bottom:524.866667pt;}
.y94{bottom:533.506667pt;}
.y27{bottom:542.626667pt;}
.y52{bottom:545.346667pt;}
.y93{bottom:547.746667pt;}
.y25{bottom:556.226667pt;}
.y92{bottom:562.146667pt;}
.y51{bottom:565.826667pt;}
.y23{bottom:572.893333pt;}
.y91{bottom:576.573333pt;}
.y50{bottom:586.333333pt;}
.y21{bottom:590.653333pt;}
.y90{bottom:590.813333pt;}
.y8f{bottom:605.213333pt;}
.y4f{bottom:606.653333pt;}
.y1f{bottom:617.373333pt;}
.y8e{bottom:619.453333pt;}
.y4e{bottom:627.133333pt;}
.y1d{bottom:629.213333pt;}
.y8d{bottom:634.813333pt;}
.y4d{bottom:647.613333pt;}
.y1b{bottom:649.693333pt;}
.y8c{bottom:659.933333pt;}
.y17{bottom:664.733333pt;}
.y4c{bottom:668.093333pt;}
.y8b{bottom:680.413333pt;}
.y4b{bottom:688.573333pt;}
.y8a{bottom:700.733333pt;}
.y4a{bottom:709.053333pt;}
.y89{bottom:721.213333pt;}
.y49{bottom:729.373333pt;}
.y88{bottom:741.693333pt;}
.y15{bottom:746.493333pt;}
.y48{bottom:749.853333pt;}
.y12{bottom:759.453333pt;}
.y87{bottom:762.173333pt;}
.y47{bottom:770.333333pt;}
.y86{bottom:782.653333pt;}
.y46{bottom:790.853333pt;}
.y85{bottom:803.173333pt;}
.y45{bottom:811.333333pt;}
.y10{bottom:813.733333pt;}
.y84{bottom:815.813333pt;}
.yd{bottom:825.893333pt;}
.y83{bottom:830.213333pt;}
.y44{bottom:831.813333pt;}
.y82{bottom:844.453333pt;}
.y43{bottom:852.133333pt;}
.y81{bottom:858.853333pt;}
.y42{bottom:872.613333pt;}
.y80{bottom:873.093333pt;}
.y7e{bottom:888.453333pt;}
.y41{bottom:893.093333pt;}
.yc{bottom:900.773333pt;}
.y40{bottom:913.573333pt;}
.yb{bottom:915.653333pt;}
.y8{bottom:930.533333pt;}
.y3f{bottom:934.053333pt;}
.y35{bottom:946.853333pt;}
.y3e{bottom:954.533333pt;}
.y3d{bottom:974.853333pt;}
.y3c{bottom:995.333333pt;}
.y3b{bottom:1015.840000pt;}
.y1{bottom:1040.960000pt;}
.y3a{bottom:1060.160000pt;}
.y6{bottom:1062.880000pt;}
.hc{height:7.368437pt;}
.h1d{height:11.840000pt;}
.h10{height:12.146667pt;}
.h15{height:12.960000pt;}
.h34{height:13.266667pt;}
.h35{height:13.280000pt;}
.h37{height:13.306667pt;}
.h32{height:13.426667pt;}
.h36{height:13.440000pt;}
.h24{height:13.586667pt;}
.h19{height:15.040000pt;}
.h22{height:16.666667pt;}
.h21{height:17.760000pt;}
.h3{height:18.398667pt;}
.h5{height:18.560000pt;}
.h2e{height:20.306667pt;}
.h30{height:20.466667pt;}
.h1b{height:20.480000pt;}
.h31{height:20.498667pt;}
.h2f{height:20.786667pt;}
.h18{height:22.223750pt;}
.h27{height:23.026667pt;}
.h28{height:25.907187pt;}
.h1f{height:26.720000pt;}
.h11{height:29.040312pt;}
.h1e{height:29.856875pt;}
.h33{height:32.453125pt;}
.h16{height:32.788125pt;}
.h1a{height:35.975313pt;}
.h25{height:36.304688pt;}
.h1c{height:36.328125pt;}
.h2b{height:36.703125pt;}
.h2d{height:37.658750pt;}
.h13{height:43.343750pt;}
.h23{height:44.533750pt;}
.h20{height:44.562500pt;}
.h14{height:45.687867pt;}
.h9{height:45.812500pt;}
.hb{height:48.406250pt;}
.h2a{height:48.937500pt;}
.h2c{height:49.075000pt;}
.h6{height:50.712187pt;}
.h12{height:54.260000pt;}
.he{height:57.647187pt;}
.hf{height:60.764863pt;}
.h2{height:62.812500pt;}
.h4{height:64.500000pt;}
.ha{height:69.750000pt;}
.hd{height:72.466667pt;}
.h7{height:75.465000pt;}
.h17{height:81.760000pt;}
.h29{height:83.386667pt;}
.h8{height:96.026667pt;}
.h26{height:204.493333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:40.470667pt;}
.w13{width:46.710667pt;}
.w6{width:68.150667pt;}
.wf{width:79.510667pt;}
.wc{width:83.670667pt;}
.w14{width:109.458667pt;}
.w5{width:110.226667pt;}
.w10{width:129.458667pt;}
.w15{width:137.920000pt;}
.w16{width:139.546667pt;}
.w17{width:166.413333pt;}
.w11{width:188.026667pt;}
.w12{width:203.053333pt;}
.we{width:252.173333pt;}
.wd{width:264.373333pt;}
.wa{width:295.213333pt;}
.w9{width:316.857333pt;}
.wb{width:412.866667pt;}
.w4{width:490.480000pt;}
.w7{width:547.960000pt;}
.w3{width:558.480000pt;}
.w8{width:612.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:5.746667pt;}
.x9{left:7.190667pt;}
.x5{left:9.590667pt;}
.x3b{left:11.990667pt;}
.xc{left:14.070667pt;}
.x4a{left:17.750667pt;}
.x2{left:18.710667pt;}
.x49{left:21.426667pt;}
.x19{left:23.510667pt;}
.x3f{left:25.466667pt;}
.x2d{left:27.510667pt;}
.x48{left:28.466667pt;}
.x45{left:29.906667pt;}
.x41{left:32.466667pt;}
.x2c{left:33.910667pt;}
.x7{left:35.360000pt;}
.x2a{left:36.630667pt;}
.x1e{left:37.585333pt;}
.x33{left:39.506667pt;}
.x46{left:43.520000pt;}
.x44{left:44.800000pt;}
.x42{left:45.920000pt;}
.x47{left:47.546667pt;}
.x2f{left:48.946667pt;}
.x43{left:50.266667pt;}
.x31{left:52.320000pt;}
.x4b{left:53.306667pt;}
.x2b{left:56.146667pt;}
.x3a{left:57.266667pt;}
.x1b{left:58.426667pt;}
.x28{left:60.466667pt;}
.x39{left:61.786667pt;}
.x20{left:64.466667pt;}
.x11{left:65.586667pt;}
.x24{left:67.986667pt;}
.x38{left:70.560000pt;}
.x36{left:73.600000pt;}
.x37{left:75.866667pt;}
.x26{left:78.386667pt;}
.x34{left:81.440000pt;}
.x1d{left:83.666667pt;}
.x35{left:88.026667pt;}
.x8{left:89.001333pt;}
.xb{left:90.121333pt;}
.x27{left:91.866667pt;}
.x14{left:93.600000pt;}
.x1{left:96.032000pt;}
.x29{left:97.786667pt;}
.x25{left:101.466667pt;}
.x23{left:104.346667pt;}
.x1f{left:107.066667pt;}
.x22{left:111.066667pt;}
.x21{left:112.666667pt;}
.x3{left:139.560000pt;}
.x3c{left:142.760000pt;}
.xa{left:157.160000pt;}
.x2e{left:175.560000pt;}
.x1a{left:179.720000pt;}
.x16{left:204.826667pt;}
.x15{left:234.586667pt;}
.x3d{left:252.226667pt;}
.xd{left:269.145333pt;}
.xe{left:271.705333pt;}
.xf{left:284.985333pt;}
.x13{left:289.666667pt;}
.x30{left:305.026667pt;}
.x3e{left:390.146667pt;}
.x17{left:403.426667pt;}
.x10{left:406.986667pt;}
.x18{left:411.293333pt;}
.x1c{left:444.106667pt;}
.x32{left:493.066667pt;}
.x40{left:529.706667pt;}
.x6{left:588.133333pt;}
.x12{left:604.732000pt;}
}




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