
    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_417e4ec9e40d58f1e1987d0a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.087891;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_5c5459311b2f34299c5a1897.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_edfe90f348c118d126fcf89e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_6cf36755159bbef18dfb86df.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_c5beb456d23984055fedb881.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c83dbe3d33b91c9c03dca036.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cb2af88fe6d38773b3edc49e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.951172;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_a9447b83d6361b41aa8c2950.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_90a5b8e3116ab34d475b87a5.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_39657f02ac697b5d931065c3.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_353fa18955d34ec6a8d57998.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.128906;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_01723057b4a263f111b53e3d.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_9e63cc911758dd631386bebc.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.128906;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_23ec1cd63aa8dcba2197e9e2.woff2')format("woff");}.fff{font-family:fff;line-height:0.761230;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_51126a92b3b24fc14b4a76a5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.760254;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_e49ed90ce541b650f6854bec.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.976074;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_fd16d9006206cc7e6ae0948a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.774902;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_a301014de4b64502a91468b6.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.901855;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:ff14;src:url('chunks/assets/font_969153864a7b04e1e914c5d5.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_5895e053c61b0dafe66ca3e9.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.954102;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:ff16;src:url('chunks/assets/font_186d2ba00bab01a9a2eb94f1.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_d466389e61c79094c39a5b98.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.922363;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:ff18;src:url('chunks/assets/font_0ad5d587483053c5f55de40f.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.401855;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:ff19;src:url('chunks/assets/font_f3296c1c07014478ca4799ae.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.128906;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:ff1a;src:url('chunks/assets/font_e5394bfc1e80b7cfb4ced71d.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.995117;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:ff1b;src:url('chunks/assets/font_cfe7c75c519b9bdbed679843.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.770996;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:ff1c;src:url('chunks/assets/font_13ab86a476d41800d77af6f0.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.128906;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);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.120000px;}
.v1{vertical-align:18.000000px;}
.v6{vertical-align:27.360000px;}
.v5{vertical-align:31.680000px;}
.ls1d{letter-spacing:-1.620000px;}
.ls1c{letter-spacing:-1.494000px;}
.ls2b{letter-spacing:-1.386000px;}
.ls2d{letter-spacing:-1.350000px;}
.ls2a{letter-spacing:-1.260000px;}
.ls2f{letter-spacing:-1.116000px;}
.ls29{letter-spacing:-0.954000px;}
.ls2c{letter-spacing:-0.900000px;}
.lsf{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.306000px;}
.ls23{letter-spacing:-0.180000px;}
.ls10{letter-spacing:-0.137400px;}
.ls28{letter-spacing:-0.108000px;}
.ls15{letter-spacing:-0.097800px;}
.ls26{letter-spacing:-0.090000px;}
.lse{letter-spacing:-0.083400px;}
.lsd{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.015120px;}
.ls8{letter-spacing:0.031680px;}
.lsa{letter-spacing:0.052560px;}
.ls31{letter-spacing:0.090000px;}
.ls30{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.119520px;}
.ls1a{letter-spacing:0.126000px;}
.ls1b{letter-spacing:0.165600px;}
.ls0{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.252000px;}
.ls21{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.302400px;}
.ls9{letter-spacing:0.311040px;}
.ls2{letter-spacing:0.324000px;}
.ls11{letter-spacing:0.385800px;}
.ls25{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.468000px;}
.ls22{letter-spacing:0.486000px;}
.ls6{letter-spacing:0.504000px;}
.ls16{letter-spacing:0.522000px;}
.ls12{letter-spacing:0.532800px;}
.ls24{letter-spacing:0.540000px;}
.ls2e{letter-spacing:0.558000px;}
.ls20{letter-spacing:0.666000px;}
.ls4{letter-spacing:0.670320px;}
.lsc{letter-spacing:0.900000px;}
.ls7{letter-spacing:1.260000px;}
.ls13{letter-spacing:1.404000px;}
.ls17{letter-spacing:1.476000px;}
.ls14{letter-spacing:1.584000px;}
.ls1e{letter-spacing:7.866000px;}
.ls18{letter-spacing:15.102000px;}
.ls19{letter-spacing:184.266000px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(0,128,0),0 0.015em rgb(0,128,0),0.015em 0 rgb(0,128,0),0 -0.015em  rgb(0,128,0);}
.sc3{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.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,128,128),0 0.015em rgb(0,128,128),0.015em 0 rgb(0,128,128),0 -0.015em  rgb(0,128,128);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(0,128,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,128,128);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-54.000000px;}
.ws5{word-spacing:-20.437920px;}
.ws3{word-spacing:-16.560000px;}
.wse{word-spacing:-15.966720px;}
.ws4{word-spacing:-15.840000px;}
.ws9{word-spacing:-14.992560px;}
.wsb{word-spacing:-14.958600px;}
.ws8{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.802600px;}
.ws11{word-spacing:-14.598000px;}
.ws23{word-spacing:-14.040000px;}
.ws1d{word-spacing:-14.004000px;}
.ws22{word-spacing:-13.896000px;}
.ws24{word-spacing:-13.824000px;}
.ws25{word-spacing:-13.806000px;}
.ws6{word-spacing:-13.716000px;}
.ws13{word-spacing:-13.680000px;}
.ws10{word-spacing:-13.536000px;}
.ws18{word-spacing:-13.266000px;}
.ws1a{word-spacing:-13.194000px;}
.ws0{word-spacing:-13.063800px;}
.wsd{word-spacing:-13.049400px;}
.wsf{word-spacing:-13.014000px;}
.ws17{word-spacing:-12.924000px;}
.ws19{word-spacing:-12.906000px;}
.ws15{word-spacing:-12.834000px;}
.ws14{word-spacing:-12.708000px;}
.ws21{word-spacing:-12.600000px;}
.ws1e{word-spacing:-12.456000px;}
.ws20{word-spacing:-12.366000px;}
.ws1f{word-spacing:-12.330000px;}
.ws1b{word-spacing:-12.060000px;}
.ws7{word-spacing:-9.720000px;}
.ws1{word-spacing:-8.856000px;}
.ws16{word-spacing:-8.496000px;}
.ws2{word-spacing:-7.408800px;}
.ws1c{word-spacing:-7.056000px;}
.wsc{word-spacing:0.000000px;}
._6{margin-left:-3.422880px;}
._7{margin-left:-2.384640px;}
._1{margin-left:-1.349280px;}
._0{width:1.169040px;}
._b{width:2.202960px;}
._9{width:3.600480px;}
._e{width:4.914000px;}
._c{width:6.444960px;}
._a{width:7.526400px;}
._5{width:8.676720px;}
._d{width:9.754800px;}
._3{width:10.866960px;}
._2{width:12.299040px;}
._4{width:13.564080px;}
._14{width:15.020880px;}
._11{width:16.956000px;}
._22{width:18.108000px;}
._8{width:19.534800px;}
._2c{width:20.537040px;}
._1c{width:21.575760px;}
._f{width:22.734000px;}
._10{width:23.922000px;}
._19{width:25.596000px;}
._18{width:26.622000px;}
._1d{width:28.034640px;}
._24{width:29.285280px;}
._26{width:30.942000px;}
._12{width:32.022000px;}
._13{width:33.102000px;}
._1a{width:34.959840px;}
._1b{width:36.931920px;}
._20{width:38.126880px;}
._21{width:39.365520px;}
._23{width:41.364000px;}
._25{width:42.538800px;}
._2b{width:44.712000px;}
._2a{width:49.656240px;}
._1f{width:50.771520px;}
._27{width:56.646000px;}
._2f{width:60.462000px;}
._2e{width:61.961760px;}
._29{width:64.638000px;}
._28{width:65.664000px;}
._2d{width:67.122000px;}
._1e{width:68.499600px;}
._17{width:73.116000px;}
._15{width:83.376000px;}
._16{width:84.942000px;}
.fc8{color:transparent;}
.fc7{color:rgb(79,129,189);}
.fc6{color:rgb(0,112,192);}
.fc5{color:rgb(31,73,125);}
.fc2{color:rgb(0,128,0);}
.fca{color:rgb(127,127,127);}
.fc9{color:rgb(38,38,38);}
.fc4{color:rgb(0,176,80);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,128,128);}
.fsd{font-size:2.880000px;}
.fs4{font-size:12.240000px;}
.fs7{font-size:18.000000px;}
.fsb{font-size:23.760000px;}
.fs8{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fsf{font-size:41.760000px;}
.fs10{font-size:45.360000px;}
.fsa{font-size:48.240000px;}
.fs11{font-size:51.120000px;}
.fs9{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fse{font-size:74.880000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:88.795869px;}
.y4e{bottom:-13.710000px;}
.y0{bottom:0.000000px;}
.y15{bottom:0.900000px;}
.y1b{bottom:1.440000px;}
.y38{bottom:1.605000px;}
.y10{bottom:1.800000px;}
.y27{bottom:2.340000px;}
.y1d{bottom:3.060000px;}
.y22{bottom:3.240000px;}
.y24{bottom:3.420000px;}
.y21{bottom:4.500000px;}
.y1f{bottom:4.680000px;}
.ya9{bottom:6.285000px;}
.y9b{bottom:6.300000px;}
.y3d{bottom:6.465000px;}
.y3f{bottom:6.645000px;}
.y43{bottom:6.660000px;}
.y4d{bottom:7.350000px;}
.y82{bottom:7.725000px;}
.y89{bottom:7.740000px;}
.y8f{bottom:7.905000px;}
.y3c{bottom:10.245000px;}
.y3a{bottom:10.425000px;}
.y36{bottom:10.965000px;}
.y8c{bottom:10.980000px;}
.y51{bottom:11.700000px;}
.y52{bottom:13.680000px;}
.y13{bottom:14.040000px;}
.y9{bottom:14.400000px;}
.y2{bottom:14.580000px;}
.y53{bottom:16.560000px;}
.ye{bottom:17.640000px;}
.y103{bottom:18.360000px;}
.y19{bottom:19.260000px;}
.ya8{bottom:24.645000px;}
.ya4{bottom:24.660000px;}
.y4c{bottom:31.830000px;}
.y8b{bottom:33.870000px;}
.y35{bottom:34.005000px;}
.y12{bottom:41.940000px;}
.y18{bottom:42.120000px;}
.ya7{bottom:43.005000px;}
.ya3{bottom:43.020000px;}
.y8{bottom:45.540000px;}
.y3{bottom:47.520000px;}
.yd{bottom:53.325000px;}
.y4b{bottom:55.230000px;}
.y34{bottom:57.045000px;}
.yab{bottom:61.365000px;}
.ya6{bottom:61.410000px;}
.ya2{bottom:61.560000px;}
.y1{bottom:63.720000px;}
.y9f{bottom:69.660000px;}
.y17{bottom:75.420000px;}
.y7{bottom:76.680000px;}
.ya1{bottom:77.220000px;}
.y4a{bottom:78.270000px;}
.y92{bottom:79.905000px;}
.y33{bottom:80.085000px;}
.ya0{bottom:84.060000px;}
.y9e{bottom:88.020000px;}
.yc{bottom:88.965000px;}
.y49{bottom:101.850000px;}
.y91{bottom:102.945000px;}
.y32{bottom:103.125000px;}
.y9d{bottom:106.380000px;}
.y5{bottom:107.640000px;}
.y6{bottom:107.820000px;}
.yb4{bottom:112.140000px;}
.y99{bottom:112.500000px;}
.y127{bottom:113.940000px;}
.y160{bottom:114.120000px;}
.y131{bottom:114.300000px;}
.yfd{bottom:114.480000px;}
.yd9{bottom:116.100000px;}
.y47{bottom:117.000000px;}
.y1de{bottom:118.800000px;}
.y31{bottom:126.390000px;}
.y80{bottom:130.320000px;}
.y87{bottom:131.220000px;}
.y98{bottom:135.360000px;}
.y15f{bottom:135.540000px;}
.yb3{bottom:135.900000px;}
.y126{bottom:136.080000px;}
.y130{bottom:136.440000px;}
.yfc{bottom:137.520000px;}
.yd8{bottom:139.140000px;}
.y189{bottom:139.320000px;}
.y46{bottom:140.040000px;}
.y1b6{bottom:141.840000px;}
.y30{bottom:149.430000px;}
.y7f{bottom:153.180000px;}
.y86{bottom:154.260000px;}
.y15e{bottom:156.960000px;}
.y1dd{bottom:157.140000px;}
.y97{bottom:158.400000px;}
.y12f{bottom:158.760000px;}
.yb2{bottom:159.480000px;}
.yfb{bottom:160.560000px;}
.yd7{bottom:162.000000px;}
.y188{bottom:162.720000px;}
.y45{bottom:163.080000px;}
.y1b5{bottom:165.240000px;}
.y2f{bottom:172.470000px;}
.y7e{bottom:176.220000px;}
.y85{bottom:177.300000px;}
.y15d{bottom:178.560000px;}
.y125{bottom:180.720000px;}
.y12e{bottom:180.900000px;}
.y96{bottom:181.440000px;}
.yb1{bottom:183.240000px;}
.yfa{bottom:183.420000px;}
.yd6{bottom:185.040000px;}
.y44{bottom:185.940000px;}
.y1b4{bottom:188.460000px;}
.y2e{bottom:195.510000px;}
.y84{bottom:197.640000px;}
.y42{bottom:198.000000px;}
.y7d{bottom:199.260000px;}
.y15c{bottom:199.980000px;}
.y124{bottom:202.860000px;}
.y12d{bottom:203.220000px;}
.y95{bottom:204.480000px;}
.y1dc{bottom:204.660000px;}
.yf9{bottom:206.490000px;}
.yb0{bottom:206.850000px;}
.y83{bottom:207.225000px;}
.yd5{bottom:208.110000px;}
.y187{bottom:209.370000px;}
.y1b3{bottom:211.890000px;}
.y41{bottom:217.485000px;}
.y2d{bottom:218.370000px;}
.y15b{bottom:221.430000px;}
.y7c{bottom:222.330000px;}
.y123{bottom:225.210000px;}
.y12c{bottom:225.390000px;}
.y94{bottom:227.550000px;}
.y1db{bottom:228.450000px;}
.yf8{bottom:229.530000px;}
.yaf{bottom:230.430000px;}
.yd4{bottom:231.150000px;}
.y186{bottom:232.770000px;}
.y1b2{bottom:235.290000px;}
.y40{bottom:236.925000px;}
.y2c{bottom:241.410000px;}
.y15a{bottom:243.030000px;}
.y7b{bottom:245.370000px;}
.y122{bottom:247.350000px;}
.y12b{bottom:247.710000px;}
.y93{bottom:247.890000px;}
.y1da{bottom:249.690000px;}
.yf7{bottom:252.570000px;}
.y81{bottom:253.305000px;}
.yae{bottom:254.190000px;}
.y185{bottom:255.990000px;}
.y3e{bottom:256.365000px;}
.y90{bottom:257.445000px;}
.y1b1{bottom:258.510000px;}
.y2b{bottom:264.450000px;}
.y7a{bottom:268.410000px;}
.y121{bottom:269.670000px;}
.y12a{bottom:270.030000px;}
.y1d9{bottom:270.750000px;}
.yf6{bottom:275.610000px;}
.y3b{bottom:275.805000px;}
.yd3{bottom:277.050000px;}
.yad{bottom:277.770000px;}
.y184{bottom:279.390000px;}
.y1b0{bottom:281.910000px;}
.y159{bottom:285.870000px;}
.y2a{bottom:287.490000px;}
.y79{bottom:291.270000px;}
.y120{bottom:291.810000px;}
.y129{bottom:292.170000px;}
.y1d8{bottom:294.510000px;}
.y39{bottom:295.065000px;}
.yf5{bottom:298.650000px;}
.yd2{bottom:300.090000px;}
.yac{bottom:300.990000px;}
.y1af{bottom:302.430000px;}
.y183{bottom:302.610000px;}
.y158{bottom:307.290000px;}
.y29{bottom:310.530000px;}
.y11f{bottom:314.130000px;}
.y78{bottom:314.310000px;}
.y128{bottom:314.490000px;}
.y37{bottom:315.045000px;}
.yaa{bottom:315.225000px;}
.y1d7{bottom:318.270000px;}
.yf4{bottom:321.510000px;}
.y28{bottom:321.705000px;}
.y1ae{bottom:322.050000px;}
.yd1{bottom:323.130000px;}
.y182{bottom:326.010000px;}
.y157{bottom:328.890000px;}
.y11e{bottom:336.630000px;}
.y77{bottom:337.350000px;}
.y1d6{bottom:342.030000px;}
.y1ad{bottom:344.190000px;}
.yf3{bottom:344.550000px;}
.yd0{bottom:345.450000px;}
.y181{bottom:349.410000px;}
.y156{bottom:350.310000px;}
.ycf{bottom:356.985000px;}
.y11d{bottom:358.950000px;}
.y76{bottom:360.390000px;}
.y1d5{bottom:363.270000px;}
.y1ac{bottom:366.510000px;}
.yf2{bottom:367.590000px;}
.y155{bottom:371.730000px;}
.y8e{bottom:372.465000px;}
.y180{bottom:372.630000px;}
.yce{bottom:380.025000px;}
.y11c{bottom:381.090000px;}
.y75{bottom:383.430000px;}
.y1d4{bottom:384.330000px;}
.y1ab{bottom:388.650000px;}
.ya5{bottom:388.845000px;}
.yf1{bottom:390.630000px;}
.y154{bottom:393.330000px;}
.y17f{bottom:396.030000px;}
.y11b{bottom:403.410000px;}
.y74{bottom:406.470000px;}
.y1d3{bottom:408.090000px;}
.y1aa{bottom:410.970000px;}
.yf0{bottom:413.670000px;}
.y153{bottom:414.750000px;}
.y17e{bottom:419.250000px;}
.y11a{bottom:425.550000px;}
.y73{bottom:429.330000px;}
.y1d2{bottom:431.850000px;}
.y1a9{bottom:433.290000px;}
.y152{bottom:436.170000px;}
.yef{bottom:436.710000px;}
.y17d{bottom:442.695000px;}
.y119{bottom:447.915000px;}
.y72{bottom:452.415000px;}
.y1a8{bottom:453.315000px;}
.y1d1{bottom:455.655000px;}
.y151{bottom:456.555000px;}
.yee{bottom:459.615000px;}
.y9c{bottom:462.495000px;}
.y17c{bottom:466.095000px;}
.y118{bottom:470.235000px;}
.y1a7{bottom:472.755000px;}
.y71{bottom:475.455000px;}
.y150{bottom:476.895000px;}
.yed{bottom:482.655000px;}
.y17b{bottom:489.315000px;}
.y117{bottom:492.375000px;}
.y1a6{bottom:495.075000px;}
.y1d0{bottom:497.955000px;}
.y14f{bottom:498.315000px;}
.y70{bottom:498.495000px;}
.yec{bottom:505.695000px;}
.y17a{bottom:512.715000px;}
.y116{bottom:514.695000px;}
.y1a5{bottom:517.215000px;}
.y14e{bottom:519.735000px;}
.y6f{bottom:521.535000px;}
.y1cf{bottom:521.715000px;}
.yeb{bottom:528.735000px;}
.y179{bottom:535.935000px;}
.y115{bottom:536.835000px;}
.y1a4{bottom:539.535000px;}
.y14d{bottom:541.335000px;}
.y6e{bottom:544.575000px;}
.y1ce{bottom:545.475000px;}
.yea{bottom:551.775000px;}
.y114{bottom:559.155000px;}
.y178{bottom:559.335000px;}
.y1a3{bottom:561.855000px;}
.y14c{bottom:562.755000px;}
.y6d{bottom:567.435000px;}
.y1cd{bottom:569.235000px;}
.ye9{bottom:574.815000px;}
.y113{bottom:581.295000px;}
.y9a{bottom:581.835000px;}
.y177{bottom:582.735000px;}
.y1a2{bottom:583.995000px;}
.y14b{bottom:584.175000px;}
.ycd{bottom:589.935000px;}
.y6c{bottom:590.475000px;}
.y1cc{bottom:592.995000px;}
.ye8{bottom:597.675000px;}
.y112{bottom:603.615000px;}
.y1a1{bottom:603.975000px;}
.y14a{bottom:605.595000px;}
.y176{bottom:605.955000px;}
.ycc{bottom:612.795000px;}
.y6b{bottom:613.515000px;}
.y1cb{bottom:614.235000px;}
.ye7{bottom:620.715000px;}
.y1a0{bottom:623.595000px;}
.y111{bottom:625.935000px;}
.y149{bottom:627.195000px;}
.y175{bottom:629.355000px;}
.y8d{bottom:634.215000px;}
.y1ca{bottom:635.295000px;}
.ycb{bottom:635.835000px;}
.y6a{bottom:636.555000px;}
.ye6{bottom:643.755000px;}
.y26{bottom:644.295000px;}
.y19f{bottom:645.735000px;}
.y8a{bottom:646.275000px;}
.y110{bottom:648.075000px;}
.y148{bottom:648.615000px;}
.y174{bottom:652.575000px;}
.y25{bottom:654.555000px;}
.yca{bottom:658.875000px;}
.y1c9{bottom:659.055000px;}
.y69{bottom:659.595000px;}
.ye5{bottom:666.795000px;}
.y19e{bottom:668.055000px;}
.y23{bottom:669.855000px;}
.y147{bottom:670.035000px;}
.y10f{bottom:670.395000px;}
.y173{bottom:676.005000px;}
.yc9{bottom:681.945000px;}
.y68{bottom:682.485000px;}
.y1c8{bottom:682.845000px;}
.y20{bottom:686.805000px;}
.ye4{bottom:689.865000px;}
.y19d{bottom:690.225000px;}
.y146{bottom:691.665000px;}
.y88{bottom:692.205000px;}
.y10e{bottom:692.565000px;}
.y172{bottom:699.405000px;}
.yc8{bottom:704.985000px;}
.y1e{bottom:705.165000px;}
.y67{bottom:705.525000px;}
.y1c7{bottom:706.605000px;}
.y19c{bottom:710.385000px;}
.ye3{bottom:712.725000px;}
.y145{bottom:713.085000px;}
.y10d{bottom:714.885000px;}
.y1c{bottom:722.265000px;}
.y171{bottom:722.625000px;}
.y1c6{bottom:727.845000px;}
.yc7{bottom:728.025000px;}
.y66{bottom:728.565000px;}
.y19b{bottom:729.825000px;}
.y144{bottom:734.505000px;}
.ye2{bottom:735.765000px;}
.y1a{bottom:737.565000px;}
.y10c{bottom:738.105000px;}
.y16{bottom:742.605000px;}
.y170{bottom:746.025000px;}
.y1c5{bottom:748.905000px;}
.yc6{bottom:750.885000px;}
.y65{bottom:751.605000px;}
.y19a{bottom:752.145000px;}
.y143{bottom:756.105000px;}
.ye1{bottom:758.805000px;}
.y10b{bottom:761.145000px;}
.y16f{bottom:769.245000px;}
.y1c4{bottom:772.665000px;}
.yc5{bottom:773.925000px;}
.y199{bottom:774.285000px;}
.y64{bottom:774.645000px;}
.y142{bottom:777.525000px;}
.ye0{bottom:781.845000px;}
.y10a{bottom:784.365000px;}
.y16e{bottom:792.645000px;}
.y1c3{bottom:796.425000px;}
.y198{bottom:796.605000px;}
.yc4{bottom:796.965000px;}
.y63{bottom:797.685000px;}
.y109{bottom:798.765000px;}
.y141{bottom:798.945000px;}
.ydf{bottom:804.885000px;}
.y108{bottom:814.065000px;}
.y16d{bottom:816.045000px;}
.y197{bottom:818.745000px;}
.yc3{bottom:820.005000px;}
.y1c2{bottom:820.185000px;}
.y140{bottom:820.365000px;}
.y62{bottom:820.545000px;}
.y14{bottom:826.845000px;}
.yde{bottom:827.925000px;}
.y107{bottom:829.365000px;}
.y11{bottom:832.245000px;}
.y16c{bottom:839.265000px;}
.y196{bottom:841.065000px;}
.y13f{bottom:841.965000px;}
.yc2{bottom:843.045000px;}
.y61{bottom:843.585000px;}
.y1c1{bottom:844.125000px;}
.y106{bottom:844.665000px;}
.ydd{bottom:847.185000px;}
.ydc{bottom:855.285000px;}
.y105{bottom:859.965000px;}
.y16b{bottom:862.665000px;}
.y13e{bottom:863.385000px;}
.yc1{bottom:866.085000px;}
.y60{bottom:866.625000px;}
.y1c0{bottom:867.885000px;}
.y104{bottom:875.445000px;}
.ydb{bottom:878.325000px;}
.y195{bottom:883.365000px;}
.y13d{bottom:884.805000px;}
.y16a{bottom:885.885000px;}
.yf{bottom:888.225000px;}
.yc0{bottom:888.945000px;}
.y5f{bottom:889.665000px;}
.y102{bottom:891.465000px;}
.yb{bottom:892.185000px;}
.y194{bottom:902.805000px;}
.y13c{bottom:906.405000px;}
.y169{bottom:909.285000px;}
.y1bf{bottom:910.005000px;}
.ybf{bottom:912.030000px;}
.y5e{bottom:912.750000px;}
.y193{bottom:925.170000px;}
.y13b{bottom:927.870000px;}
.y168{bottom:932.730000px;}
.y1be{bottom:933.990000px;}
.ybe{bottom:935.070000px;}
.y101{bottom:935.430000px;}
.y5d{bottom:935.790000px;}
.y192{bottom:947.310000px;}
.y13a{bottom:949.290000px;}
.y167{bottom:955.950000px;}
.y1bd{bottom:957.750000px;}
.ybd{bottom:958.110000px;}
.y100{bottom:958.470000px;}
.y5c{bottom:958.650000px;}
.y191{bottom:969.630000px;}
.y139{bottom:970.890000px;}
.y166{bottom:979.350000px;}
.ybc{bottom:981.150000px;}
.yff{bottom:981.330000px;}
.y1bc{bottom:981.510000px;}
.y5b{bottom:981.690000px;}
.y190{bottom:991.770000px;}
.y138{bottom:992.310000px;}
.y165{bottom:1002.570000px;}
.ybb{bottom:1004.010000px;}
.yfe{bottom:1004.550000px;}
.y5a{bottom:1004.730000px;}
.y18f{bottom:1011.930000px;}
.ya{bottom:1013.550000px;}
.y137{bottom:1013.730000px;}
.y1bb{bottom:1023.810000px;}
.y164{bottom:1025.970000px;}
.yba{bottom:1027.050000px;}
.y59{bottom:1027.770000px;}
.y4{bottom:1030.290000px;}
.y18e{bottom:1031.370000px;}
.y136{bottom:1035.150000px;}
.y48{bottom:1037.880000px;}
.y1ba{bottom:1047.570000px;}
.y163{bottom:1049.370000px;}
.yb9{bottom:1050.090000px;}
.y58{bottom:1050.810000px;}
.y18d{bottom:1053.690000px;}
.y135{bottom:1056.750000px;}
.y1b9{bottom:1071.330000px;}
.y162{bottom:1072.590000px;}
.yb8{bottom:1073.130000px;}
.y57{bottom:1073.850000px;}
.y18c{bottom:1075.830000px;}
.y134{bottom:1078.170000px;}
.y1b8{bottom:1095.090000px;}
.y161{bottom:1095.990000px;}
.yb7{bottom:1096.170000px;}
.y56{bottom:1096.710000px;}
.y18b{bottom:1098.150000px;}
.y133{bottom:1099.590000px;}
.yda{bottom:1101.930000px;}
.y1b7{bottom:1118.850000px;}
.yb6{bottom:1119.210000px;}
.y55{bottom:1119.750000px;}
.y18a{bottom:1120.290000px;}
.y132{bottom:1121.190000px;}
.yb5{bottom:1142.610000px;}
.y54{bottom:1142.790000px;}
.y50{bottom:1161.000000px;}
.y4f{bottom:1185.840000px;}
.h2d{height:2.005313px;}
.hb{height:3.960000px;}
.h13{height:5.040000px;}
.hf{height:5.400000px;}
.h22{height:6.645000px;}
.hc{height:8.289492px;}
.h1f{height:10.245000px;}
.h14{height:12.533203px;}
.h10{height:13.675781px;}
.h1e{height:15.285000px;}
.h15{height:15.300000px;}
.h4d{height:15.480000px;}
.h23{height:16.543828px;}
.h1c{height:16.950000px;}
.h17{height:17.100000px;}
.h33{height:17.640000px;}
.h19{height:18.360000px;}
.h3f{height:18.525000px;}
.h26{height:19.245000px;}
.h29{height:19.425000px;}
.h2b{height:19.476000px;}
.h24{height:19.965000px;}
.h47{height:23.025000px;}
.h4b{height:23.040000px;}
.h12{height:23.980781px;}
.h27{height:27.071719px;}
.h49{height:27.582188px;}
.h34{height:27.898500px;}
.h2{height:28.798500px;}
.h25{height:29.145586px;}
.h4c{height:30.622500px;}
.h20{height:32.835938px;}
.h37{height:34.684453px;}
.h3a{height:38.089687px;}
.h2a{height:40.472227px;}
.h45{height:40.842773px;}
.h28{height:41.610234px;}
.h4e{height:44.000156px;}
.h18{height:44.820000px;}
.he{height:44.860781px;}
.h1b{height:45.695391px;}
.h3c{height:45.930000px;}
.h39{height:46.065000px;}
.h48{height:46.627031px;}
.h16{height:49.253906px;}
.h1a{height:50.100469px;}
.h4{height:52.465078px;}
.h30{height:54.000000px;}
.h7{height:54.457031px;}
.h1d{height:54.507656px;}
.hd{height:55.980000px;}
.h31{height:56.160000px;}
.h9{height:57.051211px;}
.h32{height:58.154062px;}
.h3{height:58.651172px;}
.ha{height:60.136655px;}
.h35{height:60.679688px;}
.h2f{height:63.180000px;}
.h41{height:64.447031px;}
.h5{height:70.664062px;}
.h36{height:72.562500px;}
.h44{height:73.605000px;}
.h43{height:73.641000px;}
.h42{height:76.613906px;}
.h11{height:84.240000px;}
.h2c{height:97.056000px;}
.h8{height:106.942500px;}
.h3e{height:115.005000px;}
.h40{height:118.605000px;}
.h2e{height:119.160000px;}
.h6{height:124.590000px;}
.h3b{height:140.400000px;}
.h46{height:198.915000px;}
.h38{height:211.155000px;}
.h4a{height:217.650000px;}
.h3d{height:250.755000px;}
.h21{height:322.575000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:52.189500px;}
.w15{width:94.485000px;}
.w4{width:101.329500px;}
.w17{width:107.089500px;}
.wc{width:115.545000px;}
.w18{width:129.261000px;}
.w1b{width:141.645000px;}
.w19{width:141.696000px;}
.w9{width:154.429500px;}
.w1a{width:155.355000px;}
.w16{width:229.515000px;}
.w3{width:265.155000px;}
.w11{width:280.320000px;}
.w13{width:324.015000px;}
.w14{width:324.019500px;}
.w8{width:325.455000px;}
.wf{width:333.555000px;}
.we{width:338.284500px;}
.w12{width:339.315000px;}
.w7{width:349.624500px;}
.w2{width:414.424500px;}
.wa{width:520.650000px;}
.wb{width:559.530000px;}
.wd{width:573.660000px;}
.w5{width:575.730000px;}
.w6{width:675.090000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:3.769500px;}
.x18{left:6.465000px;}
.x21{left:12.585000px;}
.x16{left:17.809500px;}
.x24{left:19.440000px;}
.x29{left:21.420000px;}
.x27{left:27.165000px;}
.x2c{left:28.245000px;}
.x1a{left:32.565000px;}
.x2d{left:33.840000px;}
.x2a{left:35.100000px;}
.x2b{left:36.885000px;}
.xe{left:38.370000px;}
.x22{left:40.665000px;}
.x25{left:44.460000px;}
.x2e{left:46.965000px;}
.x1f{left:52.365000px;}
.x2f{left:57.240000px;}
.x1{left:106.786500px;}
.x5{left:108.036000px;}
.xa{left:112.125000px;}
.x15{left:122.025000px;}
.x1b{left:143.445000px;}
.x17{left:164.385000px;}
.x4{left:205.770000px;}
.x6{left:209.385000px;}
.x20{left:215.145000px;}
.xf{left:221.115000px;}
.xb{left:263.385000px;}
.x1d{left:271.108500px;}
.x10{left:273.705000px;}
.x11{left:303.405000px;}
.x1c{left:324.030000px;}
.x12{left:341.025000px;}
.x23{left:344.415000px;}
.x19{left:444.720000px;}
.x14{left:450.480000px;}
.x9{left:458.580000px;}
.xd{left:462.705000px;}
.x26{left:486.120000px;}
.x7{left:519.583500px;}
.x3{left:521.220000px;}
.x1e{left:557.220000px;}
.x13{left:573.990000px;}
.x28{left:641.490000px;}
.xc{left:668.490000px;}
.x8{left:675.103500px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.440000pt;}
.v1{vertical-align:16.000000pt;}
.v6{vertical-align:24.320000pt;}
.v5{vertical-align:28.160000pt;}
.ls1d{letter-spacing:-1.440000pt;}
.ls1c{letter-spacing:-1.328000pt;}
.ls2b{letter-spacing:-1.232000pt;}
.ls2d{letter-spacing:-1.200000pt;}
.ls2a{letter-spacing:-1.120000pt;}
.ls2f{letter-spacing:-0.992000pt;}
.ls29{letter-spacing:-0.848000pt;}
.ls2c{letter-spacing:-0.800000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.272000pt;}
.ls23{letter-spacing:-0.160000pt;}
.ls10{letter-spacing:-0.122133pt;}
.ls28{letter-spacing:-0.096000pt;}
.ls15{letter-spacing:-0.086933pt;}
.ls26{letter-spacing:-0.080000pt;}
.lse{letter-spacing:-0.074133pt;}
.lsd{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.013440pt;}
.ls8{letter-spacing:0.028160pt;}
.lsa{letter-spacing:0.046720pt;}
.ls31{letter-spacing:0.080000pt;}
.ls30{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.106240pt;}
.ls1a{letter-spacing:0.112000pt;}
.ls1b{letter-spacing:0.147200pt;}
.ls0{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.224000pt;}
.ls21{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.268800pt;}
.ls9{letter-spacing:0.276480pt;}
.ls2{letter-spacing:0.288000pt;}
.ls11{letter-spacing:0.342933pt;}
.ls25{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.416000pt;}
.ls22{letter-spacing:0.432000pt;}
.ls6{letter-spacing:0.448000pt;}
.ls16{letter-spacing:0.464000pt;}
.ls12{letter-spacing:0.473600pt;}
.ls24{letter-spacing:0.480000pt;}
.ls2e{letter-spacing:0.496000pt;}
.ls20{letter-spacing:0.592000pt;}
.ls4{letter-spacing:0.595840pt;}
.lsc{letter-spacing:0.800000pt;}
.ls7{letter-spacing:1.120000pt;}
.ls13{letter-spacing:1.248000pt;}
.ls17{letter-spacing:1.312000pt;}
.ls14{letter-spacing:1.408000pt;}
.ls1e{letter-spacing:6.992000pt;}
.ls18{letter-spacing:13.424000pt;}
.ls19{letter-spacing:163.792000pt;}
.ws12{word-spacing:-48.000000pt;}
.ws5{word-spacing:-18.167040pt;}
.ws3{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.192640pt;}
.ws4{word-spacing:-14.080000pt;}
.ws9{word-spacing:-13.326720pt;}
.wsb{word-spacing:-13.296533pt;}
.ws8{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.157867pt;}
.ws11{word-spacing:-12.976000pt;}
.ws23{word-spacing:-12.480000pt;}
.ws1d{word-spacing:-12.448000pt;}
.ws22{word-spacing:-12.352000pt;}
.ws24{word-spacing:-12.288000pt;}
.ws25{word-spacing:-12.272000pt;}
.ws6{word-spacing:-12.192000pt;}
.ws13{word-spacing:-12.160000pt;}
.ws10{word-spacing:-12.032000pt;}
.ws18{word-spacing:-11.792000pt;}
.ws1a{word-spacing:-11.728000pt;}
.ws0{word-spacing:-11.612267pt;}
.wsd{word-spacing:-11.599467pt;}
.wsf{word-spacing:-11.568000pt;}
.ws17{word-spacing:-11.488000pt;}
.ws19{word-spacing:-11.472000pt;}
.ws15{word-spacing:-11.408000pt;}
.ws14{word-spacing:-11.296000pt;}
.ws21{word-spacing:-11.200000pt;}
.ws1e{word-spacing:-11.072000pt;}
.ws20{word-spacing:-10.992000pt;}
.ws1f{word-spacing:-10.960000pt;}
.ws1b{word-spacing:-10.720000pt;}
.ws7{word-spacing:-8.640000pt;}
.ws1{word-spacing:-7.872000pt;}
.ws16{word-spacing:-7.552000pt;}
.ws2{word-spacing:-6.585600pt;}
.ws1c{word-spacing:-6.272000pt;}
.wsc{word-spacing:0.000000pt;}
._6{margin-left:-3.042560pt;}
._7{margin-left:-2.119680pt;}
._1{margin-left:-1.199360pt;}
._0{width:1.039147pt;}
._b{width:1.958187pt;}
._9{width:3.200427pt;}
._e{width:4.368000pt;}
._c{width:5.728853pt;}
._a{width:6.690133pt;}
._5{width:7.712640pt;}
._d{width:8.670933pt;}
._3{width:9.659520pt;}
._2{width:10.932480pt;}
._4{width:12.056960pt;}
._14{width:13.351893pt;}
._11{width:15.072000pt;}
._22{width:16.096000pt;}
._8{width:17.364267pt;}
._2c{width:18.255147pt;}
._1c{width:19.178453pt;}
._f{width:20.208000pt;}
._10{width:21.264000pt;}
._19{width:22.752000pt;}
._18{width:23.664000pt;}
._1d{width:24.919680pt;}
._24{width:26.031360pt;}
._26{width:27.504000pt;}
._12{width:28.464000pt;}
._13{width:29.424000pt;}
._1a{width:31.075413pt;}
._1b{width:32.828373pt;}
._20{width:33.890560pt;}
._21{width:34.991573pt;}
._23{width:36.768000pt;}
._25{width:37.812267pt;}
._2b{width:39.744000pt;}
._2a{width:44.138880pt;}
._1f{width:45.130240pt;}
._27{width:50.352000pt;}
._2f{width:53.744000pt;}
._2e{width:55.077120pt;}
._29{width:57.456000pt;}
._28{width:58.368000pt;}
._2d{width:59.664000pt;}
._1e{width:60.888533pt;}
._17{width:64.992000pt;}
._15{width:74.112000pt;}
._16{width:75.504000pt;}
.fsd{font-size:2.560000pt;}
.fs4{font-size:10.880000pt;}
.fs7{font-size:16.000000pt;}
.fsb{font-size:21.120000pt;}
.fs8{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fsf{font-size:37.120000pt;}
.fs10{font-size:40.320000pt;}
.fsa{font-size:42.880000pt;}
.fs11{font-size:45.440000pt;}
.fs9{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fse{font-size:66.560000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:78.929661pt;}
.y4e{bottom:-12.186667pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:0.800000pt;}
.y1b{bottom:1.280000pt;}
.y38{bottom:1.426667pt;}
.y10{bottom:1.600000pt;}
.y27{bottom:2.080000pt;}
.y1d{bottom:2.720000pt;}
.y22{bottom:2.880000pt;}
.y24{bottom:3.040000pt;}
.y21{bottom:4.000000pt;}
.y1f{bottom:4.160000pt;}
.ya9{bottom:5.586667pt;}
.y9b{bottom:5.600000pt;}
.y3d{bottom:5.746667pt;}
.y3f{bottom:5.906667pt;}
.y43{bottom:5.920000pt;}
.y4d{bottom:6.533333pt;}
.y82{bottom:6.866667pt;}
.y89{bottom:6.880000pt;}
.y8f{bottom:7.026667pt;}
.y3c{bottom:9.106667pt;}
.y3a{bottom:9.266667pt;}
.y36{bottom:9.746667pt;}
.y8c{bottom:9.760000pt;}
.y51{bottom:10.400000pt;}
.y52{bottom:12.160000pt;}
.y13{bottom:12.480000pt;}
.y9{bottom:12.800000pt;}
.y2{bottom:12.960000pt;}
.y53{bottom:14.720000pt;}
.ye{bottom:15.680000pt;}
.y103{bottom:16.320000pt;}
.y19{bottom:17.120000pt;}
.ya8{bottom:21.906667pt;}
.ya4{bottom:21.920000pt;}
.y4c{bottom:28.293333pt;}
.y8b{bottom:30.106667pt;}
.y35{bottom:30.226667pt;}
.y12{bottom:37.280000pt;}
.y18{bottom:37.440000pt;}
.ya7{bottom:38.226667pt;}
.ya3{bottom:38.240000pt;}
.y8{bottom:40.480000pt;}
.y3{bottom:42.240000pt;}
.yd{bottom:47.400000pt;}
.y4b{bottom:49.093333pt;}
.y34{bottom:50.706667pt;}
.yab{bottom:54.546667pt;}
.ya6{bottom:54.586667pt;}
.ya2{bottom:54.720000pt;}
.y1{bottom:56.640000pt;}
.y9f{bottom:61.920000pt;}
.y17{bottom:67.040000pt;}
.y7{bottom:68.160000pt;}
.ya1{bottom:68.640000pt;}
.y4a{bottom:69.573333pt;}
.y92{bottom:71.026667pt;}
.y33{bottom:71.186667pt;}
.ya0{bottom:74.720000pt;}
.y9e{bottom:78.240000pt;}
.yc{bottom:79.080000pt;}
.y49{bottom:90.533333pt;}
.y91{bottom:91.506667pt;}
.y32{bottom:91.666667pt;}
.y9d{bottom:94.560000pt;}
.y5{bottom:95.680000pt;}
.y6{bottom:95.840000pt;}
.yb4{bottom:99.680000pt;}
.y99{bottom:100.000000pt;}
.y127{bottom:101.280000pt;}
.y160{bottom:101.440000pt;}
.y131{bottom:101.600000pt;}
.yfd{bottom:101.760000pt;}
.yd9{bottom:103.200000pt;}
.y47{bottom:104.000000pt;}
.y1de{bottom:105.600000pt;}
.y31{bottom:112.346667pt;}
.y80{bottom:115.840000pt;}
.y87{bottom:116.640000pt;}
.y98{bottom:120.320000pt;}
.y15f{bottom:120.480000pt;}
.yb3{bottom:120.800000pt;}
.y126{bottom:120.960000pt;}
.y130{bottom:121.280000pt;}
.yfc{bottom:122.240000pt;}
.yd8{bottom:123.680000pt;}
.y189{bottom:123.840000pt;}
.y46{bottom:124.480000pt;}
.y1b6{bottom:126.080000pt;}
.y30{bottom:132.826667pt;}
.y7f{bottom:136.160000pt;}
.y86{bottom:137.120000pt;}
.y15e{bottom:139.520000pt;}
.y1dd{bottom:139.680000pt;}
.y97{bottom:140.800000pt;}
.y12f{bottom:141.120000pt;}
.yb2{bottom:141.760000pt;}
.yfb{bottom:142.720000pt;}
.yd7{bottom:144.000000pt;}
.y188{bottom:144.640000pt;}
.y45{bottom:144.960000pt;}
.y1b5{bottom:146.880000pt;}
.y2f{bottom:153.306667pt;}
.y7e{bottom:156.640000pt;}
.y85{bottom:157.600000pt;}
.y15d{bottom:158.720000pt;}
.y125{bottom:160.640000pt;}
.y12e{bottom:160.800000pt;}
.y96{bottom:161.280000pt;}
.yb1{bottom:162.880000pt;}
.yfa{bottom:163.040000pt;}
.yd6{bottom:164.480000pt;}
.y44{bottom:165.280000pt;}
.y1b4{bottom:167.520000pt;}
.y2e{bottom:173.786667pt;}
.y84{bottom:175.680000pt;}
.y42{bottom:176.000000pt;}
.y7d{bottom:177.120000pt;}
.y15c{bottom:177.760000pt;}
.y124{bottom:180.320000pt;}
.y12d{bottom:180.640000pt;}
.y95{bottom:181.760000pt;}
.y1dc{bottom:181.920000pt;}
.yf9{bottom:183.546667pt;}
.yb0{bottom:183.866667pt;}
.y83{bottom:184.200000pt;}
.yd5{bottom:184.986667pt;}
.y187{bottom:186.106667pt;}
.y1b3{bottom:188.346667pt;}
.y41{bottom:193.320000pt;}
.y2d{bottom:194.106667pt;}
.y15b{bottom:196.826667pt;}
.y7c{bottom:197.626667pt;}
.y123{bottom:200.186667pt;}
.y12c{bottom:200.346667pt;}
.y94{bottom:202.266667pt;}
.y1db{bottom:203.066667pt;}
.yf8{bottom:204.026667pt;}
.yaf{bottom:204.826667pt;}
.yd4{bottom:205.466667pt;}
.y186{bottom:206.906667pt;}
.y1b2{bottom:209.146667pt;}
.y40{bottom:210.600000pt;}
.y2c{bottom:214.586667pt;}
.y15a{bottom:216.026667pt;}
.y7b{bottom:218.106667pt;}
.y122{bottom:219.866667pt;}
.y12b{bottom:220.186667pt;}
.y93{bottom:220.346667pt;}
.y1da{bottom:221.946667pt;}
.yf7{bottom:224.506667pt;}
.y81{bottom:225.160000pt;}
.yae{bottom:225.946667pt;}
.y185{bottom:227.546667pt;}
.y3e{bottom:227.880000pt;}
.y90{bottom:228.840000pt;}
.y1b1{bottom:229.786667pt;}
.y2b{bottom:235.066667pt;}
.y7a{bottom:238.586667pt;}
.y121{bottom:239.706667pt;}
.y12a{bottom:240.026667pt;}
.y1d9{bottom:240.666667pt;}
.yf6{bottom:244.986667pt;}
.y3b{bottom:245.160000pt;}
.yd3{bottom:246.266667pt;}
.yad{bottom:246.906667pt;}
.y184{bottom:248.346667pt;}
.y1b0{bottom:250.586667pt;}
.y159{bottom:254.106667pt;}
.y2a{bottom:255.546667pt;}
.y79{bottom:258.906667pt;}
.y120{bottom:259.386667pt;}
.y129{bottom:259.706667pt;}
.y1d8{bottom:261.786667pt;}
.y39{bottom:262.280000pt;}
.yf5{bottom:265.466667pt;}
.yd2{bottom:266.746667pt;}
.yac{bottom:267.546667pt;}
.y1af{bottom:268.826667pt;}
.y183{bottom:268.986667pt;}
.y158{bottom:273.146667pt;}
.y29{bottom:276.026667pt;}
.y11f{bottom:279.226667pt;}
.y78{bottom:279.386667pt;}
.y128{bottom:279.546667pt;}
.y37{bottom:280.040000pt;}
.yaa{bottom:280.200000pt;}
.y1d7{bottom:282.906667pt;}
.yf4{bottom:285.786667pt;}
.y28{bottom:285.960000pt;}
.y1ae{bottom:286.266667pt;}
.yd1{bottom:287.226667pt;}
.y182{bottom:289.786667pt;}
.y157{bottom:292.346667pt;}
.y11e{bottom:299.226667pt;}
.y77{bottom:299.866667pt;}
.y1d6{bottom:304.026667pt;}
.y1ad{bottom:305.946667pt;}
.yf3{bottom:306.266667pt;}
.yd0{bottom:307.066667pt;}
.y181{bottom:310.586667pt;}
.y156{bottom:311.386667pt;}
.ycf{bottom:317.320000pt;}
.y11d{bottom:319.066667pt;}
.y76{bottom:320.346667pt;}
.y1d5{bottom:322.906667pt;}
.y1ac{bottom:325.786667pt;}
.yf2{bottom:326.746667pt;}
.y155{bottom:330.426667pt;}
.y8e{bottom:331.080000pt;}
.y180{bottom:331.226667pt;}
.yce{bottom:337.800000pt;}
.y11c{bottom:338.746667pt;}
.y75{bottom:340.826667pt;}
.y1d4{bottom:341.626667pt;}
.y1ab{bottom:345.466667pt;}
.ya5{bottom:345.640000pt;}
.yf1{bottom:347.226667pt;}
.y154{bottom:349.626667pt;}
.y17f{bottom:352.026667pt;}
.y11b{bottom:358.586667pt;}
.y74{bottom:361.306667pt;}
.y1d3{bottom:362.746667pt;}
.y1aa{bottom:365.306667pt;}
.yf0{bottom:367.706667pt;}
.y153{bottom:368.666667pt;}
.y17e{bottom:372.666667pt;}
.y11a{bottom:378.266667pt;}
.y73{bottom:381.626667pt;}
.y1d2{bottom:383.866667pt;}
.y1a9{bottom:385.146667pt;}
.y152{bottom:387.706667pt;}
.yef{bottom:388.186667pt;}
.y17d{bottom:393.506667pt;}
.y119{bottom:398.146667pt;}
.y72{bottom:402.146667pt;}
.y1a8{bottom:402.946667pt;}
.y1d1{bottom:405.026667pt;}
.y151{bottom:405.826667pt;}
.yee{bottom:408.546667pt;}
.y9c{bottom:411.106667pt;}
.y17c{bottom:414.306667pt;}
.y118{bottom:417.986667pt;}
.y1a7{bottom:420.226667pt;}
.y71{bottom:422.626667pt;}
.y150{bottom:423.906667pt;}
.yed{bottom:429.026667pt;}
.y17b{bottom:434.946667pt;}
.y117{bottom:437.666667pt;}
.y1a6{bottom:440.066667pt;}
.y1d0{bottom:442.626667pt;}
.y14f{bottom:442.946667pt;}
.y70{bottom:443.106667pt;}
.yec{bottom:449.506667pt;}
.y17a{bottom:455.746667pt;}
.y116{bottom:457.506667pt;}
.y1a5{bottom:459.746667pt;}
.y14e{bottom:461.986667pt;}
.y6f{bottom:463.586667pt;}
.y1cf{bottom:463.746667pt;}
.yeb{bottom:469.986667pt;}
.y179{bottom:476.386667pt;}
.y115{bottom:477.186667pt;}
.y1a4{bottom:479.586667pt;}
.y14d{bottom:481.186667pt;}
.y6e{bottom:484.066667pt;}
.y1ce{bottom:484.866667pt;}
.yea{bottom:490.466667pt;}
.y114{bottom:497.026667pt;}
.y178{bottom:497.186667pt;}
.y1a3{bottom:499.426667pt;}
.y14c{bottom:500.226667pt;}
.y6d{bottom:504.386667pt;}
.y1cd{bottom:505.986667pt;}
.ye9{bottom:510.946667pt;}
.y113{bottom:516.706667pt;}
.y9a{bottom:517.186667pt;}
.y177{bottom:517.986667pt;}
.y1a2{bottom:519.106667pt;}
.y14b{bottom:519.266667pt;}
.ycd{bottom:524.386667pt;}
.y6c{bottom:524.866667pt;}
.y1cc{bottom:527.106667pt;}
.ye8{bottom:531.266667pt;}
.y112{bottom:536.546667pt;}
.y1a1{bottom:536.866667pt;}
.y14a{bottom:538.306667pt;}
.y176{bottom:538.626667pt;}
.ycc{bottom:544.706667pt;}
.y6b{bottom:545.346667pt;}
.y1cb{bottom:545.986667pt;}
.ye7{bottom:551.746667pt;}
.y1a0{bottom:554.306667pt;}
.y111{bottom:556.386667pt;}
.y149{bottom:557.506667pt;}
.y175{bottom:559.426667pt;}
.y8d{bottom:563.746667pt;}
.y1ca{bottom:564.706667pt;}
.ycb{bottom:565.186667pt;}
.y6a{bottom:565.826667pt;}
.ye6{bottom:572.226667pt;}
.y26{bottom:572.706667pt;}
.y19f{bottom:573.986667pt;}
.y8a{bottom:574.466667pt;}
.y110{bottom:576.066667pt;}
.y148{bottom:576.546667pt;}
.y174{bottom:580.066667pt;}
.y25{bottom:581.826667pt;}
.yca{bottom:585.666667pt;}
.y1c9{bottom:585.826667pt;}
.y69{bottom:586.306667pt;}
.ye5{bottom:592.706667pt;}
.y19e{bottom:593.826667pt;}
.y23{bottom:595.426667pt;}
.y147{bottom:595.586667pt;}
.y10f{bottom:595.906667pt;}
.y173{bottom:600.893333pt;}
.yc9{bottom:606.173333pt;}
.y68{bottom:606.653333pt;}
.y1c8{bottom:606.973333pt;}
.y20{bottom:610.493333pt;}
.ye4{bottom:613.213333pt;}
.y19d{bottom:613.533333pt;}
.y146{bottom:614.813333pt;}
.y88{bottom:615.293333pt;}
.y10e{bottom:615.613333pt;}
.y172{bottom:621.693333pt;}
.yc8{bottom:626.653333pt;}
.y1e{bottom:626.813333pt;}
.y67{bottom:627.133333pt;}
.y1c7{bottom:628.093333pt;}
.y19c{bottom:631.453333pt;}
.ye3{bottom:633.533333pt;}
.y145{bottom:633.853333pt;}
.y10d{bottom:635.453333pt;}
.y1c{bottom:642.013333pt;}
.y171{bottom:642.333333pt;}
.y1c6{bottom:646.973333pt;}
.yc7{bottom:647.133333pt;}
.y66{bottom:647.613333pt;}
.y19b{bottom:648.733333pt;}
.y144{bottom:652.893333pt;}
.ye2{bottom:654.013333pt;}
.y1a{bottom:655.613333pt;}
.y10c{bottom:656.093333pt;}
.y16{bottom:660.093333pt;}
.y170{bottom:663.133333pt;}
.y1c5{bottom:665.693333pt;}
.yc6{bottom:667.453333pt;}
.y65{bottom:668.093333pt;}
.y19a{bottom:668.573333pt;}
.y143{bottom:672.093333pt;}
.ye1{bottom:674.493333pt;}
.y10b{bottom:676.573333pt;}
.y16f{bottom:683.773333pt;}
.y1c4{bottom:686.813333pt;}
.yc5{bottom:687.933333pt;}
.y199{bottom:688.253333pt;}
.y64{bottom:688.573333pt;}
.y142{bottom:691.133333pt;}
.ye0{bottom:694.973333pt;}
.y10a{bottom:697.213333pt;}
.y16e{bottom:704.573333pt;}
.y1c3{bottom:707.933333pt;}
.y198{bottom:708.093333pt;}
.yc4{bottom:708.413333pt;}
.y63{bottom:709.053333pt;}
.y109{bottom:710.013333pt;}
.y141{bottom:710.173333pt;}
.ydf{bottom:715.453333pt;}
.y108{bottom:723.613333pt;}
.y16d{bottom:725.373333pt;}
.y197{bottom:727.773333pt;}
.yc3{bottom:728.893333pt;}
.y1c2{bottom:729.053333pt;}
.y140{bottom:729.213333pt;}
.y62{bottom:729.373333pt;}
.y14{bottom:734.973333pt;}
.yde{bottom:735.933333pt;}
.y107{bottom:737.213333pt;}
.y11{bottom:739.773333pt;}
.y16c{bottom:746.013333pt;}
.y196{bottom:747.613333pt;}
.y13f{bottom:748.413333pt;}
.yc2{bottom:749.373333pt;}
.y61{bottom:749.853333pt;}
.y1c1{bottom:750.333333pt;}
.y106{bottom:750.813333pt;}
.ydd{bottom:753.053333pt;}
.ydc{bottom:760.253333pt;}
.y105{bottom:764.413333pt;}
.y16b{bottom:766.813333pt;}
.y13e{bottom:767.453333pt;}
.yc1{bottom:769.853333pt;}
.y60{bottom:770.333333pt;}
.y1c0{bottom:771.453333pt;}
.y104{bottom:778.173333pt;}
.ydb{bottom:780.733333pt;}
.y195{bottom:785.213333pt;}
.y13d{bottom:786.493333pt;}
.y16a{bottom:787.453333pt;}
.yf{bottom:789.533333pt;}
.yc0{bottom:790.173333pt;}
.y5f{bottom:790.813333pt;}
.y102{bottom:792.413333pt;}
.yb{bottom:793.053333pt;}
.y194{bottom:802.493333pt;}
.y13c{bottom:805.693333pt;}
.y169{bottom:808.253333pt;}
.y1bf{bottom:808.893333pt;}
.ybf{bottom:810.693333pt;}
.y5e{bottom:811.333333pt;}
.y193{bottom:822.373333pt;}
.y13b{bottom:824.773333pt;}
.y168{bottom:829.093333pt;}
.y1be{bottom:830.213333pt;}
.ybe{bottom:831.173333pt;}
.y101{bottom:831.493333pt;}
.y5d{bottom:831.813333pt;}
.y192{bottom:842.053333pt;}
.y13a{bottom:843.813333pt;}
.y167{bottom:849.733333pt;}
.y1bd{bottom:851.333333pt;}
.ybd{bottom:851.653333pt;}
.y100{bottom:851.973333pt;}
.y5c{bottom:852.133333pt;}
.y191{bottom:861.893333pt;}
.y139{bottom:863.013333pt;}
.y166{bottom:870.533333pt;}
.ybc{bottom:872.133333pt;}
.yff{bottom:872.293333pt;}
.y1bc{bottom:872.453333pt;}
.y5b{bottom:872.613333pt;}
.y190{bottom:881.573333pt;}
.y138{bottom:882.053333pt;}
.y165{bottom:891.173333pt;}
.ybb{bottom:892.453333pt;}
.yfe{bottom:892.933333pt;}
.y5a{bottom:893.093333pt;}
.y18f{bottom:899.493333pt;}
.ya{bottom:900.933333pt;}
.y137{bottom:901.093333pt;}
.y1bb{bottom:910.053333pt;}
.y164{bottom:911.973333pt;}
.yba{bottom:912.933333pt;}
.y59{bottom:913.573333pt;}
.y4{bottom:915.813333pt;}
.y18e{bottom:916.773333pt;}
.y136{bottom:920.133333pt;}
.y48{bottom:922.560000pt;}
.y1ba{bottom:931.173333pt;}
.y163{bottom:932.773333pt;}
.yb9{bottom:933.413333pt;}
.y58{bottom:934.053333pt;}
.y18d{bottom:936.613333pt;}
.y135{bottom:939.333333pt;}
.y1b9{bottom:952.293333pt;}
.y162{bottom:953.413333pt;}
.yb8{bottom:953.893333pt;}
.y57{bottom:954.533333pt;}
.y18c{bottom:956.293333pt;}
.y134{bottom:958.373333pt;}
.y1b8{bottom:973.413333pt;}
.y161{bottom:974.213333pt;}
.yb7{bottom:974.373333pt;}
.y56{bottom:974.853333pt;}
.y18b{bottom:976.133333pt;}
.y133{bottom:977.413333pt;}
.yda{bottom:979.493333pt;}
.y1b7{bottom:994.533333pt;}
.yb6{bottom:994.853333pt;}
.y55{bottom:995.333333pt;}
.y18a{bottom:995.813333pt;}
.y132{bottom:996.613333pt;}
.yb5{bottom:1015.653333pt;}
.y54{bottom:1015.813333pt;}
.y50{bottom:1032.000000pt;}
.y4f{bottom:1054.080000pt;}
.h2d{height:1.782500pt;}
.hb{height:3.520000pt;}
.h13{height:4.480000pt;}
.hf{height:4.800000pt;}
.h22{height:5.906667pt;}
.hc{height:7.368437pt;}
.h1f{height:9.106667pt;}
.h14{height:11.140625pt;}
.h10{height:12.156250pt;}
.h1e{height:13.586667pt;}
.h15{height:13.600000pt;}
.h4d{height:13.760000pt;}
.h23{height:14.705625pt;}
.h1c{height:15.066667pt;}
.h17{height:15.200000pt;}
.h33{height:15.680000pt;}
.h19{height:16.320000pt;}
.h3f{height:16.466667pt;}
.h26{height:17.106667pt;}
.h29{height:17.266667pt;}
.h2b{height:17.312000pt;}
.h24{height:17.746667pt;}
.h47{height:20.466667pt;}
.h4b{height:20.480000pt;}
.h12{height:21.316250pt;}
.h27{height:24.063750pt;}
.h49{height:24.517500pt;}
.h34{height:24.798667pt;}
.h2{height:25.598667pt;}
.h25{height:25.907187pt;}
.h4c{height:27.220000pt;}
.h20{height:29.187500pt;}
.h37{height:30.830625pt;}
.h3a{height:33.857500pt;}
.h2a{height:35.975313pt;}
.h45{height:36.304688pt;}
.h28{height:36.986875pt;}
.h4e{height:39.111250pt;}
.h18{height:39.840000pt;}
.he{height:39.876250pt;}
.h1b{height:40.618125pt;}
.h3c{height:40.826667pt;}
.h39{height:40.946667pt;}
.h48{height:41.446250pt;}
.h16{height:43.781250pt;}
.h1a{height:44.533750pt;}
.h4{height:46.635625pt;}
.h30{height:48.000000pt;}
.h7{height:48.406250pt;}
.h1d{height:48.451250pt;}
.hd{height:49.760000pt;}
.h31{height:49.920000pt;}
.h9{height:50.712187pt;}
.h32{height:51.692500pt;}
.h3{height:52.134375pt;}
.ha{height:53.454805pt;}
.h35{height:53.937500pt;}
.h2f{height:56.160000pt;}
.h41{height:57.286250pt;}
.h5{height:62.812500pt;}
.h36{height:64.500000pt;}
.h44{height:65.426667pt;}
.h43{height:65.458667pt;}
.h42{height:68.101250pt;}
.h11{height:74.880000pt;}
.h2c{height:86.272000pt;}
.h8{height:95.060000pt;}
.h3e{height:102.226667pt;}
.h40{height:105.426667pt;}
.h2e{height:105.920000pt;}
.h6{height:110.746667pt;}
.h3b{height:124.800000pt;}
.h46{height:176.813333pt;}
.h38{height:187.693333pt;}
.h4a{height:193.466667pt;}
.h3d{height:222.893333pt;}
.h21{height:286.733333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:46.390667pt;}
.w15{width:83.986667pt;}
.w4{width:90.070667pt;}
.w17{width:95.190667pt;}
.wc{width:102.706667pt;}
.w18{width:114.898667pt;}
.w1b{width:125.906667pt;}
.w19{width:125.952000pt;}
.w9{width:137.270667pt;}
.w1a{width:138.093333pt;}
.w16{width:204.013333pt;}
.w3{width:235.693333pt;}
.w11{width:249.173333pt;}
.w13{width:288.013333pt;}
.w14{width:288.017333pt;}
.w8{width:289.293333pt;}
.wf{width:296.493333pt;}
.we{width:300.697333pt;}
.w12{width:301.613333pt;}
.w7{width:310.777333pt;}
.w2{width:368.377333pt;}
.wa{width:462.800000pt;}
.wb{width:497.360000pt;}
.wd{width:509.920000pt;}
.w5{width:511.760000pt;}
.w6{width:600.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:3.350667pt;}
.x18{left:5.746667pt;}
.x21{left:11.186667pt;}
.x16{left:15.830667pt;}
.x24{left:17.280000pt;}
.x29{left:19.040000pt;}
.x27{left:24.146667pt;}
.x2c{left:25.106667pt;}
.x1a{left:28.946667pt;}
.x2d{left:30.080000pt;}
.x2a{left:31.200000pt;}
.x2b{left:32.786667pt;}
.xe{left:34.106667pt;}
.x22{left:36.146667pt;}
.x25{left:39.520000pt;}
.x2e{left:41.746667pt;}
.x1f{left:46.546667pt;}
.x2f{left:50.880000pt;}
.x1{left:94.921333pt;}
.x5{left:96.032000pt;}
.xa{left:99.666667pt;}
.x15{left:108.466667pt;}
.x1b{left:127.506667pt;}
.x17{left:146.120000pt;}
.x4{left:182.906667pt;}
.x6{left:186.120000pt;}
.x20{left:191.240000pt;}
.xf{left:196.546667pt;}
.xb{left:234.120000pt;}
.x1d{left:240.985333pt;}
.x10{left:243.293333pt;}
.x11{left:269.693333pt;}
.x1c{left:288.026667pt;}
.x12{left:303.133333pt;}
.x23{left:306.146667pt;}
.x19{left:395.306667pt;}
.x14{left:400.426667pt;}
.x9{left:407.626667pt;}
.xd{left:411.293333pt;}
.x26{left:432.106667pt;}
.x7{left:461.852000pt;}
.x3{left:463.306667pt;}
.x1e{left:495.306667pt;}
.x13{left:510.213333pt;}
.x28{left:570.213333pt;}
.xc{left:594.213333pt;}
.x8{left:600.092000pt;}
}




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