
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_dc279485d83b963a98633999.woff2')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_260b26bbac2fbd310c2dcb11.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_25de7f9366bd8f162c068d08.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.331331;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_c2f14ae710c35ec531f553c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.331331;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_8cadb3958f44782ea2ae75ed.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.331543;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_3f7b8910f0646d591837f071.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.331543;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_46448410d19f8472eca100d9.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e06640d7c87ed1ad4689b96c.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_9216fd7813b2080abd049e55.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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_7c7a114f56804ab6e991372f.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_3e9dce93fe88eb80fb4dcc02.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.912109;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_8147181c739a93f8ab8ba687.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls30{letter-spacing:-0.810000px;}
.ls49{letter-spacing:-0.666000px;}
.ls33{letter-spacing:-0.360496px;}
.ls48{letter-spacing:-0.306600px;}
.ls25{letter-spacing:-0.288000px;}
.ls29{letter-spacing:-0.280200px;}
.ls2d{letter-spacing:-0.259800px;}
.ls32{letter-spacing:-0.226200px;}
.ls47{letter-spacing:-0.194400px;}
.ls54{letter-spacing:-0.134400px;}
.ls39{letter-spacing:-0.108000px;}
.ls46{letter-spacing:-0.106800px;}
.ls4d{letter-spacing:-0.097800px;}
.ls38{letter-spacing:-0.072000px;}
.ls28{letter-spacing:-0.053280px;}
.ls37{letter-spacing:-0.026640px;}
.ls34{letter-spacing:-0.000003px;}
.ls23{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018973px;}
.ls0{letter-spacing:0.028080px;}
.lsc{letter-spacing:0.037947px;}
.ls3d{letter-spacing:0.054000px;}
.ls10{letter-spacing:0.056920px;}
.ls27{letter-spacing:0.075600px;}
.ls3c{letter-spacing:0.090000px;}
.ls1f{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.113841px;}
.ls1c{letter-spacing:0.145463px;}
.ls52{letter-spacing:0.180000px;}
.ls3a{letter-spacing:0.198000px;}
.ls3f{letter-spacing:0.208708px;}
.ls20{letter-spacing:0.228000px;}
.ls41{letter-spacing:0.235920px;}
.ls2b{letter-spacing:0.240600px;}
.ls3b{letter-spacing:0.252000px;}
.ls36{letter-spacing:0.259800px;}
.ls1d{letter-spacing:0.259920px;}
.ls3e{letter-spacing:0.265629px;}
.ls53{letter-spacing:0.298800px;}
.ls21{letter-spacing:0.303576px;}
.ls24{letter-spacing:0.305400px;}
.ls2e{letter-spacing:0.320400px;}
.ls42{letter-spacing:0.338400px;}
.ls1{letter-spacing:0.341280px;}
.ls26{letter-spacing:0.341400px;}
.ls22{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.376800px;}
.ls44{letter-spacing:0.413280px;}
.ls2c{letter-spacing:0.439800px;}
.ls2a{letter-spacing:0.666000px;}
.ls2{letter-spacing:0.666720px;}
.ls31{letter-spacing:0.720000px;}
.ls35{letter-spacing:0.796886px;}
.ls45{letter-spacing:0.979920px;}
.ls4f{letter-spacing:2.106720px;}
.lsf{letter-spacing:2.390658px;}
.ls11{letter-spacing:3.149597px;}
.ls1e{letter-spacing:3.546720px;}
.ls18{letter-spacing:3.908536px;}
.ls4c{letter-spacing:4.266720px;}
.ls19{letter-spacing:4.667475px;}
.ls4e{letter-spacing:4.986720px;}
.ls4{letter-spacing:5.426414px;}
.ls5{letter-spacing:6.185353px;}
.ls4a{letter-spacing:6.426720px;}
.lsb{letter-spacing:6.944292px;}
.ls1b{letter-spacing:7.703231px;}
.ls1a{letter-spacing:7.892966px;}
.ls43{letter-spacing:8.586720px;}
.ls15{letter-spacing:9.980048px;}
.ls50{letter-spacing:10.026720px;}
.lse{letter-spacing:12.256866px;}
.lsd{letter-spacing:13.015805px;}
.ls13{letter-spacing:13.774744px;}
.ls14{letter-spacing:13.901234px;}
.ls12{letter-spacing:13.964479px;}
.ls16{letter-spacing:14.533683px;}
.ls9{letter-spacing:15.292622px;}
.ls17{letter-spacing:15.482357px;}
.lsa{letter-spacing:16.051561px;}
.ls4b{letter-spacing:22.986720px;}
.ls7{letter-spacing:31.989281px;}
.ls8{letter-spacing:32.179016px;}
.ls40{letter-spacing:41.706720px;}
.ls51{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws16{word-spacing:-31.852080px;}
.ws17{word-spacing:-31.825440px;}
.ws26{word-spacing:-31.754280px;}
.ws29{word-spacing:-31.717680px;}
.ws23{word-spacing:-31.657680px;}
.ws3{word-spacing:-23.418720px;}
.ws8{word-spacing:-17.053080px;}
.wsb{word-spacing:-16.990080px;}
.wsa{word-spacing:-16.933680px;}
.ws7{word-spacing:-16.853880px;}
.ws4{word-spacing:-16.688880px;}
.ws15{word-spacing:-16.620765px;}
.ws6{word-spacing:-16.613280px;}
.ws1{word-spacing:-16.560000px;}
.ws22{word-spacing:-16.506480px;}
.ws9{word-spacing:-16.353480px;}
.ws5{word-spacing:-16.333080px;}
.ws1f{word-spacing:-16.089508px;}
.ws20{word-spacing:-16.032587px;}
.ws13{word-spacing:-15.880800px;}
.ws12{word-spacing:-15.861826px;}
.ws10{word-spacing:-15.842853px;}
.wsf{word-spacing:-15.823879px;}
.ws14{word-spacing:-15.823876px;}
.ws11{word-spacing:-15.463383px;}
.ws2{word-spacing:-15.300000px;}
.ws1c{word-spacing:-15.264000px;}
.ws27{word-spacing:-15.238800px;}
.ws1a{word-spacing:-15.210000px;}
.ws1d{word-spacing:-15.102000px;}
.ws1e{word-spacing:-15.066000px;}
.ws1b{word-spacing:-15.012000px;}
.ws24{word-spacing:-14.940000px;}
.ws25{word-spacing:-14.274000px;}
.ws0{word-spacing:-14.220000px;}
.ws19{word-spacing:-13.392000px;}
.wsc{word-spacing:-11.160000px;}
.wse{word-spacing:-10.440000px;}
.wsd{word-spacing:-10.213800px;}
.ws18{word-spacing:-8.928000px;}
.ws28{word-spacing:-0.059760px;}
.ws21{word-spacing:0.000000px;}
._1a{margin-left:-16.537528px;}
._2{margin-left:-12.299040px;}
._10{margin-left:-9.328977px;}
._5{margin-left:-8.221488px;}
._11{margin-left:-6.716611px;}
._19{margin-left:-5.312493px;}
._c{margin-left:-4.016240px;}
._9{margin-left:-2.604882px;}
._0{margin-left:-1.093680px;}
._1{width:1.137600px;}
._4{width:2.213760px;}
._12{width:3.313389px;}
._d{width:4.629528px;}
._b{width:6.615419px;}
._6{width:8.310383px;}
._f{width:9.600579px;}
._18{width:10.635120px;}
._3{width:12.130560px;}
._e{width:13.643093px;}
._a{width:14.824422px;}
._14{width:15.837877px;}
._15{width:17.502885px;}
._17{width:19.481760px;}
._16{width:21.453840px;}
._1b{width:22.470275px;}
._1c{width:23.605301px;}
._1d{width:24.621635px;}
._13{width:26.116560px;}
._8{width:31.533917px;}
._7{width:32.703140px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:5.760000px;}
.fs3{font-size:18.000000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fsb{font-size:54.000000px;}
.fs2{font-size:56.880000px;}
.fs8{font-size:56.920429px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:1.440000px;}
.y42{bottom:2.700000px;}
.y38{bottom:3.945000px;}
.y4f{bottom:5.010000px;}
.y41{bottom:10.260000px;}
.y2{bottom:13.680000px;}
.y5{bottom:14.040000px;}
.y4d{bottom:15.480000px;}
.y37{bottom:24.105000px;}
.y4{bottom:32.400000px;}
.y4c{bottom:34.020000px;}
.y40{bottom:40.320000px;}
.y36{bottom:44.265000px;}
.y3f{bottom:51.840000px;}
.y3{bottom:55.470000px;}
.y4b{bottom:56.340000px;}
.ya{bottom:57.600000px;}
.y3e{bottom:64.980000px;}
.y35{bottom:67.305000px;}
.y4a{bottom:75.420000px;}
.y9{bottom:75.780000px;}
.y3d{bottom:77.940000px;}
.y34{bottom:90.525000px;}
.y49{bottom:92.910000px;}
.y8{bottom:95.760000px;}
.y48{bottom:99.390000px;}
.y3c{bottom:99.750000px;}
.y33{bottom:110.505000px;}
.y47{bottom:115.230000px;}
.y39{bottom:126.900000px;}
.y46{bottom:130.710000px;}
.y32{bottom:133.590000px;}
.y9d{bottom:142.740000px;}
.y45{bottom:146.370000px;}
.y78{bottom:149.580000px;}
.y31{bottom:159.870000px;}
.y44{bottom:161.850000px;}
.y3b{bottom:162.030000px;}
.y9c{bottom:168.840000px;}
.y3a{bottom:172.650000px;}
.y77{bottom:172.800000px;}
.y43{bottom:176.970000px;}
.y30{bottom:185.970000px;}
.y9b{bottom:192.060000px;}
.y76{bottom:198.900000px;}
.y2f{bottom:212.070000px;}
.y9a{bottom:212.250000px;}
.y75{bottom:221.970000px;}
.y2e{bottom:235.290000px;}
.y99{bottom:241.230000px;}
.y74{bottom:251.130000px;}
.y2d{bottom:255.270000px;}
.y98{bottom:264.270000px;}
.y73{bottom:274.170000px;}
.y2c{bottom:275.430000px;}
.y97{bottom:287.490000px;}
.y72{bottom:297.390000px;}
.y2b{bottom:306.930000px;}
.y96{bottom:307.650000px;}
.y71{bottom:320.430000px;}
.yf{bottom:329.445000px;}
.y2a{bottom:330.330000px;}
.y1d{bottom:338.070000px;}
.y95{bottom:339.690000px;}
.y70{bottom:346.530000px;}
.y1c{bottom:353.940000px;}
.y94{bottom:365.790000px;}
.y6f{bottom:372.630000px;}
.y29{bottom:377.520000px;}
.y1b{bottom:378.060000px;}
.y93{bottom:391.890000px;}
.y6e{bottom:395.850000px;}
.y28{bottom:400.920000px;}
.y1a{bottom:402.180000px;}
.ybb{bottom:405.570000px;}
.y92{bottom:415.110000px;}
.y6d{bottom:416.010000px;}
.y27{bottom:424.500000px;}
.y19{bottom:426.300000px;}
.yba{bottom:431.670000px;}
.y91{bottom:444.270000px;}
.y6c{bottom:444.990000px;}
.y26{bottom:448.080000px;}
.y18{bottom:450.600000px;}
.yb9{bottom:457.995000px;}
.y90{bottom:467.355000px;}
.y6b{bottom:468.255000px;}
.y25{bottom:471.480000px;}
.y17{bottom:474.720000px;}
.yb8{bottom:484.095000px;}
.y8f{bottom:490.395000px;}
.y6a{bottom:494.355000px;}
.y24{bottom:495.060000px;}
.y16{bottom:498.840000px;}
.yb7{bottom:510.195000px;}
.y8e{bottom:510.555000px;}
.y23{bottom:518.640000px;}
.y69{bottom:520.455000px;}
.y15{bottom:522.960000px;}
.yb6{bottom:536.295000px;}
.y8d{bottom:539.715000px;}
.y22{bottom:542.040000px;}
.y68{bottom:543.675000px;}
.y14{bottom:547.080000px;}
.y8c{bottom:559.695000px;}
.yb5{bottom:562.395000px;}
.y21{bottom:565.620000px;}
.y67{bottom:566.715000px;}
.y13{bottom:571.200000px;}
.y8b{bottom:579.855000px;}
.yb4{bottom:585.255000px;}
.y20{bottom:589.245000px;}
.y66{bottom:589.755000px;}
.y12{bottom:595.545000px;}
.y8a{bottom:600.015000px;}
.yb3{bottom:602.535000px;}
.y65{bottom:609.915000px;}
.y1f{bottom:612.645000px;}
.y11{bottom:619.665000px;}
.yb2{bottom:619.815000px;}
.y89{bottom:628.995000px;}
.y64{bottom:630.075000px;}
.y1e{bottom:636.225000px;}
.yb1{bottom:637.095000px;}
.y10{bottom:643.785000px;}
.y63{bottom:650.055000px;}
.y88{bottom:652.035000px;}
.yb0{bottom:654.375000px;}
.y62{bottom:670.215000px;}
.yaf{bottom:671.475000px;}
.y87{bottom:675.255000px;}
.yae{bottom:688.785000px;}
.y61{bottom:690.405000px;}
.yad{bottom:706.425000px;}
.y86{bottom:707.325000px;}
.y60{bottom:710.385000px;}
.y5f{bottom:733.425000px;}
.yac{bottom:738.465000px;}
.y5e{bottom:756.645000px;}
.y85{bottom:759.705000px;}
.yab{bottom:761.685000px;}
.y5d{bottom:779.685000px;}
.y84{bottom:782.745000px;}
.yaa{bottom:784.725000px;}
.y5c{bottom:802.905000px;}
.y83{bottom:805.785000px;}
.ya9{bottom:810.825000px;}
.y5b{bottom:823.065000px;}
.y82{bottom:829.005000px;}
.ya8{bottom:836.925000px;}
.y5a{bottom:846.105000px;}
.y81{bottom:858.165000px;}
.ya7{bottom:863.025000px;}
.y59{bottom:872.205000px;}
.y80{bottom:881.205000px;}
.ya6{bottom:886.245000px;}
.y58{bottom:895.425000px;}
.y7f{bottom:907.305000px;}
.ya5{bottom:915.405000px;}
.y57{bottom:927.510000px;}
.y7e{bottom:933.450000px;}
.ya4{bottom:938.490000px;}
.y56{bottom:953.610000px;}
.y7d{bottom:956.670000px;}
.ya3{bottom:964.590000px;}
.y55{bottom:976.830000px;}
.ya2{bottom:990.690000px;}
.ye{bottom:992.130000px;}
.y7c{bottom:999.870000px;}
.y54{bottom:1005.810000px;}
.ya1{bottom:1016.790000px;}
.yd{bottom:1018.230000px;}
.y7b{bottom:1025.970000px;}
.y53{bottom:1028.850000px;}
.ya0{bottom:1043.070000px;}
.yc{bottom:1047.390000px;}
.y7a{bottom:1049.190000px;}
.y52{bottom:1052.070000px;}
.y9f{bottom:1069.170000px;}
.y51{bottom:1075.110000px;}
.y79{bottom:1078.170000px;}
.yb{bottom:1082.850000px;}
.y4e{bottom:1086.300000px;}
.y9e{bottom:1095.270000px;}
.y50{bottom:1098.330000px;}
.y7{bottom:1114.710000px;}
.y1{bottom:1116.150000px;}
.h17{height:5.650313px;}
.h10{height:5.653125px;}
.h8{height:5.729063px;}
.h7{height:17.903320px;}
.h19{height:27.540000px;}
.h14{height:29.678906px;}
.h13{height:35.332031px;}
.hf{height:40.985156px;}
.he{height:42.086250px;}
.h15{height:52.971680px;}
.h16{height:54.421875px;}
.h5{height:55.824609px;}
.h18{height:57.243164px;}
.ha{height:57.324375px;}
.h9{height:58.651172px;}
.h11{height:60.338990px;}
.h1b{height:61.423863px;}
.hc{height:63.349102px;}
.h1a{height:64.002656px;}
.h6{height:65.010937px;}
.h3{height:65.884219px;}
.hb{height:89.299336px;}
.h2{height:92.370000px;}
.h4{height:117.180000px;}
.h12{height:201.810000px;}
.hd{height:653.310000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w4{width:132.651000px;}
.w6{width:162.720000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:6.876000px;}
.x1a{left:8.085000px;}
.x6{left:10.965000px;}
.x4{left:12.765000px;}
.x15{left:14.211000px;}
.x18{left:16.011000px;}
.x1c{left:18.171000px;}
.x17{left:21.771000px;}
.x16{left:26.091000px;}
.x1e{left:29.151000px;}
.x5{left:33.645000px;}
.x10{left:43.731000px;}
.x1d{left:47.691000px;}
.x11{left:50.751000px;}
.xf{left:55.071000px;}
.x1f{left:66.225000px;}
.x13{left:73.605000px;}
.x1{left:78.300000px;}
.x14{left:83.685000px;}
.xc{left:86.436000px;}
.x2{left:95.790000px;}
.x20{left:102.765000px;}
.x1b{left:106.725000px;}
.x23{left:113.436000px;}
.x12{left:124.545000px;}
.x8{left:140.436000px;}
.x3{left:182.385000px;}
.x19{left:219.105000px;}
.x7{left:311.100000px;}
.x21{left:424.905000px;}
.xe{left:462.165000px;}
.xd{left:685.950000px;}
.xb{left:766.050000px;}
.xa{left:791.970000px;}
.x9{left:806.940000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls30{letter-spacing:-0.720000pt;}
.ls49{letter-spacing:-0.592000pt;}
.ls33{letter-spacing:-0.320441pt;}
.ls48{letter-spacing:-0.272533pt;}
.ls25{letter-spacing:-0.256000pt;}
.ls29{letter-spacing:-0.249067pt;}
.ls2d{letter-spacing:-0.230933pt;}
.ls32{letter-spacing:-0.201067pt;}
.ls47{letter-spacing:-0.172800pt;}
.ls54{letter-spacing:-0.119467pt;}
.ls39{letter-spacing:-0.096000pt;}
.ls46{letter-spacing:-0.094933pt;}
.ls4d{letter-spacing:-0.086933pt;}
.ls38{letter-spacing:-0.064000pt;}
.ls28{letter-spacing:-0.047360pt;}
.ls37{letter-spacing:-0.023680pt;}
.ls34{letter-spacing:-0.000003pt;}
.ls23{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016865pt;}
.ls0{letter-spacing:0.024960pt;}
.lsc{letter-spacing:0.033731pt;}
.ls3d{letter-spacing:0.048000pt;}
.ls10{letter-spacing:0.050596pt;}
.ls27{letter-spacing:0.067200pt;}
.ls3c{letter-spacing:0.080000pt;}
.ls1f{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.101192pt;}
.ls1c{letter-spacing:0.129301pt;}
.ls52{letter-spacing:0.160000pt;}
.ls3a{letter-spacing:0.176000pt;}
.ls3f{letter-spacing:0.185518pt;}
.ls20{letter-spacing:0.202667pt;}
.ls41{letter-spacing:0.209707pt;}
.ls2b{letter-spacing:0.213867pt;}
.ls3b{letter-spacing:0.224000pt;}
.ls36{letter-spacing:0.230933pt;}
.ls1d{letter-spacing:0.231040pt;}
.ls3e{letter-spacing:0.236114pt;}
.ls53{letter-spacing:0.265600pt;}
.ls21{letter-spacing:0.269845pt;}
.ls24{letter-spacing:0.271467pt;}
.ls2e{letter-spacing:0.284800pt;}
.ls42{letter-spacing:0.300800pt;}
.ls1{letter-spacing:0.303360pt;}
.ls26{letter-spacing:0.303467pt;}
.ls22{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.334933pt;}
.ls44{letter-spacing:0.367360pt;}
.ls2c{letter-spacing:0.390933pt;}
.ls2a{letter-spacing:0.592000pt;}
.ls2{letter-spacing:0.592640pt;}
.ls31{letter-spacing:0.640000pt;}
.ls35{letter-spacing:0.708343pt;}
.ls45{letter-spacing:0.871040pt;}
.ls4f{letter-spacing:1.872640pt;}
.lsf{letter-spacing:2.125029pt;}
.ls11{letter-spacing:2.799642pt;}
.ls1e{letter-spacing:3.152640pt;}
.ls18{letter-spacing:3.474254pt;}
.ls4c{letter-spacing:3.792640pt;}
.ls19{letter-spacing:4.148867pt;}
.ls4e{letter-spacing:4.432640pt;}
.ls4{letter-spacing:4.823479pt;}
.ls5{letter-spacing:5.498092pt;}
.ls4a{letter-spacing:5.712640pt;}
.lsb{letter-spacing:6.172704pt;}
.ls1b{letter-spacing:6.847317pt;}
.ls1a{letter-spacing:7.015970pt;}
.ls43{letter-spacing:7.632640pt;}
.ls15{letter-spacing:8.871154pt;}
.ls50{letter-spacing:8.912640pt;}
.lse{letter-spacing:10.894992pt;}
.lsd{letter-spacing:11.569604pt;}
.ls13{letter-spacing:12.244217pt;}
.ls14{letter-spacing:12.356652pt;}
.ls12{letter-spacing:12.412870pt;}
.ls16{letter-spacing:12.918829pt;}
.ls9{letter-spacing:13.593442pt;}
.ls17{letter-spacing:13.762095pt;}
.lsa{letter-spacing:14.268054pt;}
.ls4b{letter-spacing:20.432640pt;}
.ls7{letter-spacing:28.434916pt;}
.ls8{letter-spacing:28.603570pt;}
.ls40{letter-spacing:37.072640pt;}
.ls51{letter-spacing:40.912640pt;}
.ws16{word-spacing:-28.312960pt;}
.ws17{word-spacing:-28.289280pt;}
.ws26{word-spacing:-28.226027pt;}
.ws29{word-spacing:-28.193493pt;}
.ws23{word-spacing:-28.140160pt;}
.ws3{word-spacing:-20.816640pt;}
.ws8{word-spacing:-15.158293pt;}
.wsb{word-spacing:-15.102293pt;}
.wsa{word-spacing:-15.052160pt;}
.ws7{word-spacing:-14.981227pt;}
.ws4{word-spacing:-14.834560pt;}
.ws15{word-spacing:-14.774013pt;}
.ws6{word-spacing:-14.767360pt;}
.ws1{word-spacing:-14.720000pt;}
.ws22{word-spacing:-14.672427pt;}
.ws9{word-spacing:-14.536427pt;}
.ws5{word-spacing:-14.518293pt;}
.ws1f{word-spacing:-14.301785pt;}
.ws20{word-spacing:-14.251189pt;}
.ws13{word-spacing:-14.116266pt;}
.ws12{word-spacing:-14.099401pt;}
.ws10{word-spacing:-14.082536pt;}
.wsf{word-spacing:-14.065670pt;}
.ws14{word-spacing:-14.065668pt;}
.ws11{word-spacing:-13.745229pt;}
.ws2{word-spacing:-13.600000pt;}
.ws1c{word-spacing:-13.568000pt;}
.ws27{word-spacing:-13.545600pt;}
.ws1a{word-spacing:-13.520000pt;}
.ws1d{word-spacing:-13.424000pt;}
.ws1e{word-spacing:-13.392000pt;}
.ws1b{word-spacing:-13.344000pt;}
.ws24{word-spacing:-13.280000pt;}
.ws25{word-spacing:-12.688000pt;}
.ws0{word-spacing:-12.640000pt;}
.ws19{word-spacing:-11.904000pt;}
.wsc{word-spacing:-9.920000pt;}
.wse{word-spacing:-9.280000pt;}
.wsd{word-spacing:-9.078933pt;}
.ws18{word-spacing:-7.936000pt;}
.ws28{word-spacing:-0.053120pt;}
.ws21{word-spacing:0.000000pt;}
._1a{margin-left:-14.700025pt;}
._2{margin-left:-10.932480pt;}
._10{margin-left:-8.292424pt;}
._5{margin-left:-7.307990pt;}
._11{margin-left:-5.970321pt;}
._19{margin-left:-4.722216pt;}
._c{margin-left:-3.569991pt;}
._9{margin-left:-2.315451pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.011200pt;}
._4{width:1.967787pt;}
._12{width:2.945235pt;}
._d{width:4.115136pt;}
._b{width:5.880372pt;}
._6{width:7.387007pt;}
._f{width:8.533848pt;}
._18{width:9.453440pt;}
._3{width:10.782720pt;}
._e{width:12.127194pt;}
._a{width:13.177264pt;}
._14{width:14.078113pt;}
._15{width:15.558120pt;}
._17{width:17.317120pt;}
._16{width:19.070080pt;}
._1b{width:19.973577pt;}
._1c{width:20.982490pt;}
._1d{width:21.885897pt;}
._13{width:23.214720pt;}
._8{width:28.030149pt;}
._7{width:29.069458pt;}
.fs4{font-size:5.120000pt;}
.fs3{font-size:16.000000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fsb{font-size:48.000000pt;}
.fs2{font-size:50.560000pt;}
.fs8{font-size:50.595937pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:1.280000pt;}
.y42{bottom:2.400000pt;}
.y38{bottom:3.506667pt;}
.y4f{bottom:4.453333pt;}
.y41{bottom:9.120000pt;}
.y2{bottom:12.160000pt;}
.y5{bottom:12.480000pt;}
.y4d{bottom:13.760000pt;}
.y37{bottom:21.426667pt;}
.y4{bottom:28.800000pt;}
.y4c{bottom:30.240000pt;}
.y40{bottom:35.840000pt;}
.y36{bottom:39.346667pt;}
.y3f{bottom:46.080000pt;}
.y3{bottom:49.306667pt;}
.y4b{bottom:50.080000pt;}
.ya{bottom:51.200000pt;}
.y3e{bottom:57.760000pt;}
.y35{bottom:59.826667pt;}
.y4a{bottom:67.040000pt;}
.y9{bottom:67.360000pt;}
.y3d{bottom:69.280000pt;}
.y34{bottom:80.466667pt;}
.y49{bottom:82.586667pt;}
.y8{bottom:85.120000pt;}
.y48{bottom:88.346667pt;}
.y3c{bottom:88.666667pt;}
.y33{bottom:98.226667pt;}
.y47{bottom:102.426667pt;}
.y39{bottom:112.800000pt;}
.y46{bottom:116.186667pt;}
.y32{bottom:118.746667pt;}
.y9d{bottom:126.880000pt;}
.y45{bottom:130.106667pt;}
.y78{bottom:132.960000pt;}
.y31{bottom:142.106667pt;}
.y44{bottom:143.866667pt;}
.y3b{bottom:144.026667pt;}
.y9c{bottom:150.080000pt;}
.y3a{bottom:153.466667pt;}
.y77{bottom:153.600000pt;}
.y43{bottom:157.306667pt;}
.y30{bottom:165.306667pt;}
.y9b{bottom:170.720000pt;}
.y76{bottom:176.800000pt;}
.y2f{bottom:188.506667pt;}
.y9a{bottom:188.666667pt;}
.y75{bottom:197.306667pt;}
.y2e{bottom:209.146667pt;}
.y99{bottom:214.426667pt;}
.y74{bottom:223.226667pt;}
.y2d{bottom:226.906667pt;}
.y98{bottom:234.906667pt;}
.y73{bottom:243.706667pt;}
.y2c{bottom:244.826667pt;}
.y97{bottom:255.546667pt;}
.y72{bottom:264.346667pt;}
.y2b{bottom:272.826667pt;}
.y96{bottom:273.466667pt;}
.y71{bottom:284.826667pt;}
.yf{bottom:292.840000pt;}
.y2a{bottom:293.626667pt;}
.y1d{bottom:300.506667pt;}
.y95{bottom:301.946667pt;}
.y70{bottom:308.026667pt;}
.y1c{bottom:314.613333pt;}
.y94{bottom:325.146667pt;}
.y6f{bottom:331.226667pt;}
.y29{bottom:335.573333pt;}
.y1b{bottom:336.053333pt;}
.y93{bottom:348.346667pt;}
.y6e{bottom:351.866667pt;}
.y28{bottom:356.373333pt;}
.y1a{bottom:357.493333pt;}
.ybb{bottom:360.506667pt;}
.y92{bottom:368.986667pt;}
.y6d{bottom:369.786667pt;}
.y27{bottom:377.333333pt;}
.y19{bottom:378.933333pt;}
.yba{bottom:383.706667pt;}
.y91{bottom:394.906667pt;}
.y6c{bottom:395.546667pt;}
.y26{bottom:398.293333pt;}
.y18{bottom:400.533333pt;}
.yb9{bottom:407.106667pt;}
.y90{bottom:415.426667pt;}
.y6b{bottom:416.226667pt;}
.y25{bottom:419.093333pt;}
.y17{bottom:421.973333pt;}
.yb8{bottom:430.306667pt;}
.y8f{bottom:435.906667pt;}
.y6a{bottom:439.426667pt;}
.y24{bottom:440.053333pt;}
.y16{bottom:443.413333pt;}
.yb7{bottom:453.506667pt;}
.y8e{bottom:453.826667pt;}
.y23{bottom:461.013333pt;}
.y69{bottom:462.626667pt;}
.y15{bottom:464.853333pt;}
.yb6{bottom:476.706667pt;}
.y8d{bottom:479.746667pt;}
.y22{bottom:481.813333pt;}
.y68{bottom:483.266667pt;}
.y14{bottom:486.293333pt;}
.y8c{bottom:497.506667pt;}
.yb5{bottom:499.906667pt;}
.y21{bottom:502.773333pt;}
.y67{bottom:503.746667pt;}
.y13{bottom:507.733333pt;}
.y8b{bottom:515.426667pt;}
.yb4{bottom:520.226667pt;}
.y20{bottom:523.773333pt;}
.y66{bottom:524.226667pt;}
.y12{bottom:529.373333pt;}
.y8a{bottom:533.346667pt;}
.yb3{bottom:535.586667pt;}
.y65{bottom:542.146667pt;}
.y1f{bottom:544.573333pt;}
.y11{bottom:550.813333pt;}
.yb2{bottom:550.946667pt;}
.y89{bottom:559.106667pt;}
.y64{bottom:560.066667pt;}
.y1e{bottom:565.533333pt;}
.yb1{bottom:566.306667pt;}
.y10{bottom:572.253333pt;}
.y63{bottom:577.826667pt;}
.y88{bottom:579.586667pt;}
.yb0{bottom:581.666667pt;}
.y62{bottom:595.746667pt;}
.yaf{bottom:596.866667pt;}
.y87{bottom:600.226667pt;}
.yae{bottom:612.253333pt;}
.y61{bottom:613.693333pt;}
.yad{bottom:627.933333pt;}
.y86{bottom:628.733333pt;}
.y60{bottom:631.453333pt;}
.y5f{bottom:651.933333pt;}
.yac{bottom:656.413333pt;}
.y5e{bottom:672.573333pt;}
.y85{bottom:675.293333pt;}
.yab{bottom:677.053333pt;}
.y5d{bottom:693.053333pt;}
.y84{bottom:695.773333pt;}
.yaa{bottom:697.533333pt;}
.y5c{bottom:713.693333pt;}
.y83{bottom:716.253333pt;}
.ya9{bottom:720.733333pt;}
.y5b{bottom:731.613333pt;}
.y82{bottom:736.893333pt;}
.ya8{bottom:743.933333pt;}
.y5a{bottom:752.093333pt;}
.y81{bottom:762.813333pt;}
.ya7{bottom:767.133333pt;}
.y59{bottom:775.293333pt;}
.y80{bottom:783.293333pt;}
.ya6{bottom:787.773333pt;}
.y58{bottom:795.933333pt;}
.y7f{bottom:806.493333pt;}
.ya5{bottom:813.693333pt;}
.y57{bottom:824.453333pt;}
.y7e{bottom:829.733333pt;}
.ya4{bottom:834.213333pt;}
.y56{bottom:847.653333pt;}
.y7d{bottom:850.373333pt;}
.ya3{bottom:857.413333pt;}
.y55{bottom:868.293333pt;}
.ya2{bottom:880.613333pt;}
.ye{bottom:881.893333pt;}
.y7c{bottom:888.773333pt;}
.y54{bottom:894.053333pt;}
.ya1{bottom:903.813333pt;}
.yd{bottom:905.093333pt;}
.y7b{bottom:911.973333pt;}
.y53{bottom:914.533333pt;}
.ya0{bottom:927.173333pt;}
.yc{bottom:931.013333pt;}
.y7a{bottom:932.613333pt;}
.y52{bottom:935.173333pt;}
.y9f{bottom:950.373333pt;}
.y51{bottom:955.653333pt;}
.y79{bottom:958.373333pt;}
.yb{bottom:962.533333pt;}
.y4e{bottom:965.600000pt;}
.y9e{bottom:973.573333pt;}
.y50{bottom:976.293333pt;}
.y7{bottom:990.853333pt;}
.y1{bottom:992.133333pt;}
.h17{height:5.022500pt;}
.h10{height:5.025000pt;}
.h8{height:5.092500pt;}
.h7{height:15.914062pt;}
.h19{height:24.480000pt;}
.h14{height:26.381250pt;}
.h13{height:31.406250pt;}
.hf{height:36.431250pt;}
.he{height:37.410000pt;}
.h15{height:47.085938pt;}
.h16{height:48.375000pt;}
.h5{height:49.621875pt;}
.h18{height:50.882812pt;}
.ha{height:50.955000pt;}
.h9{height:52.134375pt;}
.h11{height:53.634657pt;}
.h1b{height:54.598989pt;}
.hc{height:56.310313pt;}
.h1a{height:56.891250pt;}
.h6{height:57.787500pt;}
.h3{height:58.563750pt;}
.hb{height:79.377187pt;}
.h2{height:82.106667pt;}
.h4{height:104.160000pt;}
.h12{height:179.386667pt;}
.hd{height:580.720000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w4{width:117.912000pt;}
.w6{width:144.640000pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:6.112000pt;}
.x1a{left:7.186667pt;}
.x6{left:9.746667pt;}
.x4{left:11.346667pt;}
.x15{left:12.632000pt;}
.x18{left:14.232000pt;}
.x1c{left:16.152000pt;}
.x17{left:19.352000pt;}
.x16{left:23.192000pt;}
.x1e{left:25.912000pt;}
.x5{left:29.906667pt;}
.x10{left:38.872000pt;}
.x1d{left:42.392000pt;}
.x11{left:45.112000pt;}
.xf{left:48.952000pt;}
.x1f{left:58.866667pt;}
.x13{left:65.426667pt;}
.x1{left:69.600000pt;}
.x14{left:74.386667pt;}
.xc{left:76.832000pt;}
.x2{left:85.146667pt;}
.x20{left:91.346667pt;}
.x1b{left:94.866667pt;}
.x23{left:100.832000pt;}
.x12{left:110.706667pt;}
.x8{left:124.832000pt;}
.x3{left:162.120000pt;}
.x19{left:194.760000pt;}
.x7{left:276.533333pt;}
.x21{left:377.693333pt;}
.xe{left:410.813333pt;}
.xd{left:609.733333pt;}
.xb{left:680.933333pt;}
.xa{left:703.973333pt;}
.x9{left:717.280000pt;}
}




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