
    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_2f6cabf7de95521535c4a82f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.056641;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_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ff2{font-family:ff2;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: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_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c5beb456d23984055fedb881.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a33c9c0bc113b180b37110b1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_5e21f9a7635b94ff7b3d513f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0452c71f12f20cf978e57302.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7318ec823950dcec755258ec.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_73005a42e13a660ace8a0d73.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_705c176aabaa1372e5c346cb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_51126a92b3b24fc14b4a76a5.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_cafb267cca12c7c210b7dbd2.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_1af45ff7bac6f1f263e93c9c.woff2')format("woff");}.ffe{font-family:ffe;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: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_f757413dab844ffea8617449.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_db73d0b5645a35423ff731ff.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_43871505efb03e07288838d9.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.957520;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_9a9ef3f0271d8ac824ab68e5.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_16e51190f604f462f2245e7b.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_17a8763fe2f291ce7336da4a.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_54817d3c7af70f1c3a3cae7a.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_5dca3946d63c53db2566155a.woff2')format("woff");}.ff17{font-family:ff17;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;}
.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:-15.120000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.v1{vertical-align:18.000000px;}
.ls2d{letter-spacing:-1.620000px;}
.ls2c{letter-spacing:-1.386000px;}
.ls2e{letter-spacing:-1.350000px;}
.ls29{letter-spacing:-1.098000px;}
.ls2a{letter-spacing:-0.900000px;}
.ls6{letter-spacing:-0.720000px;}
.ls2f{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.508800px;}
.ls5{letter-spacing:-0.339600px;}
.ls7{letter-spacing:-0.334200px;}
.ls1b{letter-spacing:-0.324000px;}
.ls12{letter-spacing:-0.288000px;}
.ls1f{letter-spacing:-0.270000px;}
.lsd{letter-spacing:-0.180000px;}
.ls26{letter-spacing:-0.162000px;}
.ls27{letter-spacing:-0.126000px;}
.ls18{letter-spacing:-0.108000px;}
.lsa{letter-spacing:-0.097800px;}
.ls11{letter-spacing:-0.090000px;}
.ls1a{letter-spacing:-0.054000px;}
.ls1e{letter-spacing:-0.036000px;}
.ls3{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.031680px;}
.ls2b{letter-spacing:0.036000px;}
.ls16{letter-spacing:0.054000px;}
.lse{letter-spacing:0.126000px;}
.ls15{letter-spacing:0.216000px;}
.ls1c{letter-spacing:0.252000px;}
.ls17{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.342000px;}
.ls8{letter-spacing:0.385800px;}
.ls23{letter-spacing:0.396000px;}
.ls14{letter-spacing:0.414000px;}
.ls13{letter-spacing:0.432000px;}
.ls24{letter-spacing:0.468000px;}
.ls9{letter-spacing:0.522000px;}
.lsc{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.558000px;}
.lsf{letter-spacing:0.630000px;}
.ls0{letter-spacing:0.670320px;}
.ls21{letter-spacing:0.738000px;}
.ls3b{letter-spacing:0.756000px;}
.ls33{letter-spacing:0.774000px;}
.ls38{letter-spacing:0.810000px;}
.ls36{letter-spacing:0.828000px;}
.lsb{letter-spacing:0.900000px;}
.ls30{letter-spacing:1.008000px;}
.ls20{letter-spacing:1.098000px;}
.ls35{letter-spacing:1.152000px;}
.ls1d{letter-spacing:1.242000px;}
.ls3a{letter-spacing:1.260000px;}
.ls31{letter-spacing:1.278000px;}
.ls34{letter-spacing:1.404000px;}
.ls39{letter-spacing:1.476000px;}
.ls32{letter-spacing:1.530000px;}
.ls37{letter-spacing:1.602000px;}
.ls22{letter-spacing:11.466000px;}
.ls10{letter-spacing:15.120000px;}
.ls25{letter-spacing:63.306000px;}
.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;}
}
.ws1f{word-spacing:-54.000000px;}
.ws2{word-spacing:-20.437920px;}
.ws0{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.966720px;}
.ws1{word-spacing:-15.840000px;}
.ws27{word-spacing:-15.318000px;}
.ws29{word-spacing:-15.246000px;}
.ws2a{word-spacing:-15.192000px;}
.ws8{word-spacing:-14.958600px;}
.ws26{word-spacing:-14.724000px;}
.wsc{word-spacing:-14.616000px;}
.ws7{word-spacing:-14.572800px;}
.ws25{word-spacing:-14.544000px;}
.ws28{word-spacing:-14.526000px;}
.ws2c{word-spacing:-14.472000px;}
.ws2b{word-spacing:-14.274000px;}
.ws6{word-spacing:-14.238600px;}
.ws2d{word-spacing:-14.166000px;}
.ws3{word-spacing:-13.716000px;}
.wse{word-spacing:-13.644000px;}
.ws12{word-spacing:-13.446000px;}
.ws13{word-spacing:-13.428000px;}
.ws15{word-spacing:-13.356000px;}
.ws18{word-spacing:-13.266000px;}
.ws24{word-spacing:-13.176000px;}
.wsd{word-spacing:-13.140000px;}
.ws14{word-spacing:-13.068000px;}
.wsa{word-spacing:-13.049400px;}
.ws1e{word-spacing:-13.032000px;}
.ws4{word-spacing:-13.014000px;}
.ws1b{word-spacing:-12.978000px;}
.ws16{word-spacing:-12.960000px;}
.wsf{word-spacing:-12.924000px;}
.ws1d{word-spacing:-12.888000px;}
.ws11{word-spacing:-12.834000px;}
.ws1c{word-spacing:-12.744000px;}
.ws10{word-spacing:-12.726000px;}
.ws17{word-spacing:-12.690000px;}
.ws23{word-spacing:-12.366000px;}
.ws21{word-spacing:-12.330000px;}
.ws20{word-spacing:-11.916000px;}
.ws22{word-spacing:-11.628000px;}
.ws5{word-spacing:-9.720000px;}
.ws19{word-spacing:-8.964000px;}
.ws1a{word-spacing:-8.676000px;}
.ws9{word-spacing:0.000000px;}
._e{margin-left:-2.963760px;}
._1{margin-left:-1.296000px;}
._0{width:1.169040px;}
._5{width:2.376000px;}
._6{width:3.726000px;}
._7{width:4.782960px;}
._a{width:6.676080px;}
._b{width:8.460000px;}
._15{width:9.630960px;}
._10{width:11.016000px;}
._f{width:14.142000px;}
._8{width:15.876000px;}
._9{width:17.317920px;}
._16{width:18.738000px;}
._11{width:19.926000px;}
._12{width:21.006000px;}
._18{width:22.896000px;}
._19{width:24.462000px;}
._4{width:26.030160px;}
._3{width:27.378000px;}
._2{width:28.589760px;}
._17{width:29.748240px;}
._1e{width:30.895440px;}
._13{width:32.292000px;}
._1b{width:33.966000px;}
._33{width:35.004000px;}
._20{width:36.342000px;}
._c{width:37.584000px;}
._d{width:38.755920px;}
._34{width:39.846240px;}
._23{width:41.256000px;}
._1a{width:42.444000px;}
._14{width:43.578000px;}
._22{width:44.766000px;}
._2f{width:46.062000px;}
._39{width:47.466000px;}
._3a{width:48.630000px;}
._24{width:49.788000px;}
._25{width:51.210960px;}
._1f{width:52.542000px;}
._35{width:54.203520px;}
._1c{width:55.566000px;}
._1d{width:56.610960px;}
._21{width:58.104000px;}
._2a{width:59.454000px;}
._36{width:63.154560px;}
._37{width:64.588800px;}
._28{width:66.150000px;}
._29{width:67.608000px;}
._3c{width:69.066000px;}
._3d{width:70.146000px;}
._38{width:71.310480px;}
._27{width:75.324000px;}
._40{width:77.965680px;}
._2b{width:79.920000px;}
._26{width:82.566000px;}
._3b{width:91.800000px;}
._3f{width:95.023920px;}
._3e{width:96.125760px;}
._30{width:100.494000px;}
._31{width:101.916960px;}
._32{width:106.824000px;}
._2c{width:113.130000px;}
._2d{width:114.372000px;}
._2e{width:134.838000px;}
.fc7{color:transparent;}
.fc6{color:rgb(79,129,189);}
.fc5{color:rgb(31,73,125);}
.fc2{color:rgb(0,128,0);}
.fc9{color:rgb(127,127,127);}
.fc8{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);}
.fsb{font-size:2.880000px;}
.fs3{font-size:18.000000px;}
.fs9{font-size:23.760000px;}
.fs6{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fsd{font-size:41.760000px;}
.fse{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fsc{font-size:74.880000px;}
.fs2{font-size:84.240000px;}
.y4b{bottom:-18.390000px;}
.y3c{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.y10{bottom:1.440000px;}
.y14{bottom:1.620000px;}
.y18{bottom:1.980000px;}
.y23{bottom:2.340000px;}
.y4a{bottom:2.850000px;}
.y14f{bottom:3.045000px;}
.y21{bottom:3.060000px;}
.y19d{bottom:3.225000px;}
.y1a{bottom:3.240000px;}
.y127{bottom:3.270000px;}
.y4d{bottom:3.420000px;}
.y1f{bottom:3.600000px;}
.y1c{bottom:4.500000px;}
.y34{bottom:6.465000px;}
.y36{bottom:6.645000px;}
.yb5{bottom:7.740000px;}
.y82{bottom:7.770000px;}
.yb9{bottom:7.905000px;}
.y2{bottom:9.720000px;}
.y87{bottom:10.785000px;}
.y2f{bottom:10.980000px;}
.y50{bottom:11.700000px;}
.y51{bottom:13.680000px;}
.y12{bottom:13.860000px;}
.y9{bottom:14.400000px;}
.y16{bottom:15.660000px;}
.y32{bottom:16.410000px;}
.y52{bottom:16.560000px;}
.ye{bottom:17.640000px;}
.y1a5{bottom:18.345000px;}
.y94{bottom:18.360000px;}
.y14e{bottom:18.525000px;}
.y9a{bottom:18.540000px;}
.y10e{bottom:19.260000px;}
.y49{bottom:27.330000px;}
.y86{bottom:33.825000px;}
.y99{bottom:33.840000px;}
.ya3{bottom:33.885000px;}
.y2e{bottom:34.020000px;}
.y8{bottom:45.540000px;}
.y53{bottom:47.520000px;}
.yae{bottom:49.140000px;}
.y48{bottom:50.550000px;}
.yd{bottom:53.325000px;}
.y85{bottom:56.865000px;}
.y2d{bottom:57.060000px;}
.y3{bottom:58.320000px;}
.y4f{bottom:63.720000px;}
.y47{bottom:73.590000px;}
.y1{bottom:74.520000px;}
.y7{bottom:76.680000px;}
.y84{bottom:79.905000px;}
.y2c{bottom:79.920000px;}
.yc{bottom:88.965000px;}
.yab{bottom:95.220000px;}
.y46{bottom:97.350000px;}
.y2b{bottom:102.960000px;}
.y5{bottom:107.640000px;}
.y6{bottom:107.820000px;}
.y1fb{bottom:120.060000px;}
.y1d2{bottom:121.680000px;}
.y44{bottom:123.840000px;}
.y2a{bottom:126.000000px;}
.y10d{bottom:127.440000px;}
.y91{bottom:127.800000px;}
.y16f{bottom:128.520000px;}
.y1ab{bottom:128.700000px;}
.y169{bottom:129.780000px;}
.y80{bottom:130.320000px;}
.y141{bottom:131.940000px;}
.ybf{bottom:132.480000px;}
.yd8{bottom:132.660000px;}
.y1fa{bottom:143.820000px;}
.y1d1{bottom:145.440000px;}
.y43{bottom:146.880000px;}
.y29{bottom:149.040000px;}
.y10c{bottom:150.480000px;}
.y90{bottom:150.840000px;}
.y16e{bottom:151.740000px;}
.y168{bottom:152.820000px;}
.y7f{bottom:153.180000px;}
.y140{bottom:154.980000px;}
.ybe{bottom:155.340000px;}
.yd7{bottom:155.700000px;}
.y9e{bottom:156.465000px;}
.y1f9{bottom:167.580000px;}
.y1d0{bottom:169.200000px;}
.y42{bottom:169.920000px;}
.y28{bottom:172.080000px;}
.y10b{bottom:173.520000px;}
.y8f{bottom:173.880000px;}
.y1aa{bottom:174.780000px;}
.y16d{bottom:175.140000px;}
.y167{bottom:175.860000px;}
.y7e{bottom:176.220000px;}
.y194{bottom:176.745000px;}
.y13f{bottom:178.020000px;}
.ybd{bottom:178.380000px;}
.yd6{bottom:178.740000px;}
.y1f8{bottom:191.520000px;}
.y193{bottom:192.090000px;}
.y41{bottom:192.780000px;}
.y1cf{bottom:192.960000px;}
.y27{bottom:195.120000px;}
.y10a{bottom:196.380000px;}
.y8e{bottom:196.920000px;}
.y1a9{bottom:197.820000px;}
.y16c{bottom:198.540000px;}
.y166{bottom:198.900000px;}
.y7d{bottom:199.260000px;}
.y13e{bottom:200.880000px;}
.ybc{bottom:201.420000px;}
.yd5{bottom:201.780000px;}
.y192{bottom:207.390000px;}
.y1f7{bottom:215.310000px;}
.y40{bottom:215.850000px;}
.y1ce{bottom:216.750000px;}
.y97{bottom:217.845000px;}
.y26{bottom:218.010000px;}
.y165{bottom:219.270000px;}
.y109{bottom:219.450000px;}
.y8d{bottom:219.990000px;}
.y1a8{bottom:220.710000px;}
.y16b{bottom:221.790000px;}
.ybb{bottom:221.970000px;}
.y7c{bottom:222.330000px;}
.y191{bottom:222.690000px;}
.y13d{bottom:223.950000px;}
.yd4{bottom:224.670000px;}
.yba{bottom:231.525000px;}
.y190{bottom:238.170000px;}
.y3f{bottom:238.890000px;}
.y1f6{bottom:239.070000px;}
.y164{bottom:239.790000px;}
.y1cd{bottom:240.510000px;}
.y25{bottom:241.050000px;}
.y108{bottom:242.490000px;}
.y8c{bottom:243.030000px;}
.y1a7{bottom:243.750000px;}
.y16a{bottom:245.190000px;}
.y7b{bottom:245.370000px;}
.y13c{bottom:246.990000px;}
.yd3{bottom:247.710000px;}
.y18f{bottom:253.470000px;}
.y189{bottom:258.165000px;}
.y3e{bottom:261.930000px;}
.y163{bottom:262.830000px;}
.y1cc{bottom:264.270000px;}
.y107{bottom:265.530000px;}
.y8b{bottom:265.890000px;}
.y7a{bottom:268.410000px;}
.y18e{bottom:268.770000px;}
.y13b{bottom:270.030000px;}
.yd2{bottom:270.750000px;}
.y1a6{bottom:274.545000px;}
.yb8{bottom:277.425000px;}
.y18d{bottom:284.070000px;}
.y3d{bottom:284.970000px;}
.y151{bottom:285.165000px;}
.y162{bottom:285.870000px;}
.y1f5{bottom:286.590000px;}
.y1cb{bottom:288.030000px;}
.y106{bottom:288.570000px;}
.y8a{bottom:288.930000px;}
.y1a4{bottom:291.105000px;}
.y79{bottom:291.270000px;}
.y13a{bottom:293.070000px;}
.yd1{bottom:293.790000px;}
.y3b{bottom:297.045000px;}
.y18c{bottom:299.370000px;}
.y150{bottom:300.465000px;}
.y161{bottom:308.910000px;}
.y1f4{bottom:310.350000px;}
.y105{bottom:311.610000px;}
.y89{bottom:311.970000px;}
.y78{bottom:314.310000px;}
.y18b{bottom:314.850000px;}
.y139{bottom:316.110000px;}
.y3a{bottom:316.485000px;}
.yd0{bottom:316.830000px;}
.y1a3{bottom:322.785000px;}
.y18a{bottom:330.150000px;}
.y160{bottom:331.770000px;}
.y88{bottom:334.110000px;}
.y104{bottom:334.470000px;}
.y1ca{bottom:335.730000px;}
.y39{bottom:335.745000px;}
.y77{bottom:337.350000px;}
.y138{bottom:338.970000px;}
.ycf{bottom:339.870000px;}
.y83{bottom:346.365000px;}
.y1a2{bottom:354.645000px;}
.y15f{bottom:354.810000px;}
.y38{bottom:355.185000px;}
.y103{bottom:357.510000px;}
.y1f3{bottom:357.870000px;}
.y1c9{bottom:359.490000px;}
.y76{bottom:360.390000px;}
.y137{bottom:362.010000px;}
.yce{bottom:362.730000px;}
.y1a1{bottom:371.205000px;}
.y37{bottom:374.625000px;}
.y15e{bottom:377.850000px;}
.y102{bottom:380.550000px;}
.y1f2{bottom:381.630000px;}
.y1c8{bottom:383.250000px;}
.y75{bottom:383.430000px;}
.y136{bottom:385.050000px;}
.ycd{bottom:385.770000px;}
.y1a0{bottom:387.585000px;}
.y35{bottom:394.065000px;}
.y15d{bottom:400.890000px;}
.y101{bottom:403.590000px;}
.y19f{bottom:403.965000px;}
.y1f1{bottom:405.390000px;}
.y74{bottom:406.470000px;}
.y1c7{bottom:407.010000px;}
.y135{bottom:408.090000px;}
.ycc{bottom:408.810000px;}
.y33{bottom:413.505000px;}
.y19e{bottom:420.525000px;}
.y15c{bottom:423.930000px;}
.y100{bottom:426.630000px;}
.y1f0{bottom:429.150000px;}
.y73{bottom:429.330000px;}
.y1c6{bottom:430.770000px;}
.y134{bottom:431.130000px;}
.ycb{bottom:431.850000px;}
.y31{bottom:432.765000px;}
.y19c{bottom:436.905000px;}
.y81{bottom:438.345000px;}
.y15b{bottom:447.015000px;}
.yff{bottom:449.535000px;}
.y72{bottom:452.415000px;}
.y1ef{bottom:453.135000px;}
.y19b{bottom:453.495000px;}
.y133{bottom:454.035000px;}
.y1c5{bottom:454.575000px;}
.yca{bottom:454.935000px;}
.yb7{bottom:456.015000px;}
.y30{bottom:458.715000px;}
.yfe{bottom:463.935000px;}
.y24{bottom:465.375000px;}
.yb6{bottom:465.555000px;}
.y15a{bottom:469.875000px;}
.y71{bottom:475.455000px;}
.y1ee{bottom:476.895000px;}
.y132{bottom:477.075000px;}
.yc9{bottom:477.795000px;}
.y1c4{bottom:478.335000px;}
.yfd{bottom:479.235000px;}
.y19a{bottom:486.435000px;}
.y159{bottom:492.915000px;}
.yfc{bottom:494.535000px;}
.y70{bottom:498.495000px;}
.y131{bottom:500.115000px;}
.y1ed{bottom:500.655000px;}
.yc8{bottom:500.835000px;}
.y1c3{bottom:502.095000px;}
.y199{bottom:502.815000px;}
.yfb{bottom:510.015000px;}
.yb4{bottom:511.635000px;}
.y158{bottom:515.955000px;}
.y198{bottom:519.375000px;}
.y6f{bottom:521.535000px;}
.y130{bottom:523.155000px;}
.yc7{bottom:523.875000px;}
.y1ec{bottom:524.415000px;}
.yfa{bottom:525.315000px;}
.y1c2{bottom:525.855000px;}
.y197{bottom:535.755000px;}
.y157{bottom:538.995000px;}
.yf9{bottom:540.615000px;}
.y6e{bottom:544.575000px;}
.y12f{bottom:546.195000px;}
.yc6{bottom:546.915000px;}
.y1eb{bottom:548.175000px;}
.y1c1{bottom:549.615000px;}
.y196{bottom:552.315000px;}
.yf8{bottom:555.915000px;}
.y156{bottom:562.035000px;}
.y6d{bottom:567.435000px;}
.y195{bottom:568.695000px;}
.y12e{bottom:569.235000px;}
.yc5{bottom:569.955000px;}
.yf7{bottom:571.395000px;}
.y1ea{bottom:571.935000px;}
.y1c0{bottom:573.375000px;}
.y12d{bottom:583.455000px;}
.y155{bottom:584.895000px;}
.y188{bottom:585.255000px;}
.yf6{bottom:586.695000px;}
.y6c{bottom:590.475000px;}
.yc4{bottom:592.995000px;}
.y1e9{bottom:595.695000px;}
.y1bf{bottom:597.315000px;}
.y12c{bottom:598.755000px;}
.y187{bottom:601.275000px;}
.yf5{bottom:601.995000px;}
.y154{bottom:605.415000px;}
.y6b{bottom:613.515000px;}
.y12b{bottom:614.235000px;}
.y153{bottom:614.955000px;}
.yc3{bottom:615.855000px;}
.yf4{bottom:617.295000px;}
.y1e8{bottom:619.455000px;}
.y1be{bottom:621.075000px;}
.y12a{bottom:629.535000px;}
.y186{bottom:629.895000px;}
.yf3{bottom:632.595000px;}
.y6a{bottom:636.555000px;}
.y152{bottom:637.995000px;}
.yc2{bottom:638.895000px;}
.y1e7{bottom:643.215000px;}
.y129{bottom:644.835000px;}
.yf2{bottom:648.075000px;}
.y185{bottom:652.755000px;}
.y69{bottom:659.595000px;}
.y128{bottom:660.135000px;}
.yc1{bottom:661.935000px;}
.yf1{bottom:663.375000px;}
.y1e6{bottom:666.975000px;}
.y1bd{bottom:668.595000px;}
.y126{bottom:675.435000px;}
.y184{bottom:676.005000px;}
.yf0{bottom:678.705000px;}
.y68{bottom:682.485000px;}
.yc0{bottom:685.005000px;}
.y1e5{bottom:690.765000px;}
.y125{bottom:690.945000px;}
.y1bc{bottom:692.385000px;}
.yef{bottom:694.005000px;}
.y183{bottom:699.405000px;}
.y67{bottom:705.525000px;}
.y124{bottom:706.245000px;}
.yb3{bottom:708.045000px;}
.yee{bottom:710.205000px;}
.y1e4{bottom:714.525000px;}
.y1bb{bottom:716.145000px;}
.y22{bottom:718.485000px;}
.y123{bottom:721.545000px;}
.yaa{bottom:722.265000px;}
.y182{bottom:722.625000px;}
.y66{bottom:728.565000px;}
.y20{bottom:728.745000px;}
.y14d{bottom:731.085000px;}
.y122{bottom:736.845000px;}
.yac{bottom:737.565000px;}
.y1e3{bottom:738.465000px;}
.yed{bottom:738.645000px;}
.y1ba{bottom:739.905000px;}
.y1e{bottom:744.045000px;}
.y181{bottom:746.025000px;}
.y65{bottom:751.605000px;}
.y121{bottom:752.325000px;}
.yb2{bottom:753.045000px;}
.y14c{bottom:753.945000px;}
.y1d{bottom:761.145000px;}
.yec{bottom:761.685000px;}
.y1e2{bottom:762.225000px;}
.y1b9{bottom:763.665000px;}
.y120{bottom:767.625000px;}
.yad{bottom:768.345000px;}
.y180{bottom:769.245000px;}
.y64{bottom:774.645000px;}
.y14b{bottom:776.985000px;}
.y1b{bottom:779.505000px;}
.y11f{bottom:782.925000px;}
.yaf{bottom:783.645000px;}
.yeb{bottom:784.725000px;}
.y1e1{bottom:785.985000px;}
.y1b8{bottom:787.425000px;}
.y17f{bottom:792.645000px;}
.y19{bottom:796.425000px;}
.y63{bottom:797.685000px;}
.yb1{bottom:798.945000px;}
.y14a{bottom:800.025000px;}
.yea{bottom:807.765000px;}
.y1e0{bottom:809.745000px;}
.y1b7{bottom:811.185000px;}
.y17{bottom:811.905000px;}
.y11e{bottom:813.525000px;}
.yb0{bottom:814.425000px;}
.y17e{bottom:816.045000px;}
.y15{bottom:820.185000px;}
.y62{bottom:820.545000px;}
.ye9{bottom:821.985000px;}
.y149{bottom:823.065000px;}
.y96{bottom:829.725000px;}
.y1df{bottom:833.505000px;}
.y1b6{bottom:834.945000px;}
.ye8{bottom:837.285000px;}
.y17d{bottom:839.265000px;}
.y61{bottom:843.585000px;}
.y11d{bottom:844.305000px;}
.ya9{bottom:845.025000px;}
.y148{bottom:846.105000px;}
.y13{bottom:849.885000px;}
.ye7{bottom:852.765000px;}
.y1de{bottom:857.265000px;}
.y1b5{bottom:858.705000px;}
.y11{bottom:859.065000px;}
.y11c{bottom:859.605000px;}
.ya6{bottom:860.325000px;}
.y17c{bottom:862.665000px;}
.y60{bottom:866.625000px;}
.ye6{bottom:868.065000px;}
.y147{bottom:869.145000px;}
.y11b{bottom:874.905000px;}
.ya8{bottom:875.625000px;}
.y1dd{bottom:881.025000px;}
.y1b4{bottom:882.645000px;}
.ye5{bottom:883.365000px;}
.y17b{bottom:885.885000px;}
.yf{bottom:886.965000px;}
.y5f{bottom:889.665000px;}
.y11a{bottom:890.205000px;}
.ya7{bottom:891.105000px;}
.y146{bottom:892.005000px;}
.yb{bottom:892.185000px;}
.ye4{bottom:898.665000px;}
.y1dc{bottom:904.785000px;}
.y119{bottom:905.685000px;}
.ya2{bottom:906.405000px;}
.y17a{bottom:909.285000px;}
.y5e{bottom:912.750000px;}
.ye3{bottom:914.010000px;}
.y145{bottom:915.090000px;}
.y118{bottom:921.030000px;}
.ya5{bottom:921.750000px;}
.y1db{bottom:928.590000px;}
.ye2{bottom:929.490000px;}
.y1b3{bottom:930.210000px;}
.y179{bottom:932.730000px;}
.y5d{bottom:935.790000px;}
.y117{bottom:936.330000px;}
.ya4{bottom:937.050000px;}
.y144{bottom:938.130000px;}
.ye1{bottom:944.790000px;}
.y116{bottom:951.630000px;}
.y1da{bottom:952.350000px;}
.ya0{bottom:952.530000px;}
.y1b2{bottom:953.970000px;}
.y178{bottom:955.950000px;}
.y5c{bottom:958.650000px;}
.ye0{bottom:960.090000px;}
.y143{bottom:961.170000px;}
.y115{bottom:967.110000px;}
.ya1{bottom:967.830000px;}
.ydf{bottom:975.390000px;}
.y1d9{bottom:976.110000px;}
.y1b1{bottom:977.730000px;}
.y177{bottom:979.350000px;}
.y5b{bottom:981.690000px;}
.y114{bottom:982.410000px;}
.y9f{bottom:983.130000px;}
.y142{bottom:984.210000px;}
.yde{bottom:990.870000px;}
.y113{bottom:997.710000px;}
.y9d{bottom:998.430000px;}
.y1d8{bottom:999.870000px;}
.y1b0{bottom:1001.490000px;}
.y176{bottom:1002.570000px;}
.y5a{bottom:1004.730000px;}
.ydd{bottom:1006.170000px;}
.y112{bottom:1013.010000px;}
.ya{bottom:1013.550000px;}
.y98{bottom:1013.730000px;}
.ydc{bottom:1021.470000px;}
.y1d7{bottom:1023.810000px;}
.y1af{bottom:1025.250000px;}
.y175{bottom:1025.970000px;}
.y59{bottom:1027.770000px;}
.y111{bottom:1028.310000px;}
.y9b{bottom:1029.210000px;}
.y4{bottom:1030.290000px;}
.ydb{bottom:1036.770000px;}
.y45{bottom:1043.280000px;}
.y110{bottom:1043.790000px;}
.y9c{bottom:1044.510000px;}
.y1d6{bottom:1047.570000px;}
.y1ae{bottom:1049.010000px;}
.y174{bottom:1049.370000px;}
.y58{bottom:1050.810000px;}
.yda{bottom:1052.070000px;}
.y10f{bottom:1059.090000px;}
.y93{bottom:1059.810000px;}
.yd9{bottom:1068.270000px;}
.y1d5{bottom:1071.330000px;}
.y173{bottom:1072.590000px;}
.y1ad{bottom:1072.770000px;}
.y57{bottom:1073.850000px;}
.y95{bottom:1075.110000px;}
.y92{bottom:1091.310000px;}
.y1d4{bottom:1095.090000px;}
.y172{bottom:1095.990000px;}
.y1ac{bottom:1096.530000px;}
.y56{bottom:1096.710000px;}
.y1d3{bottom:1118.850000px;}
.y171{bottom:1119.210000px;}
.y55{bottom:1119.750000px;}
.y170{bottom:1142.610000px;}
.y54{bottom:1142.790000px;}
.y4e{bottom:1161.000000px;}
.y4c{bottom:1185.840000px;}
.h29{height:1.999688px;}
.h9{height:5.220000px;}
.h20{height:6.645000px;}
.h10{height:8.280000px;}
.hd{height:9.180000px;}
.h1d{height:10.260000px;}
.ha{height:12.190430px;}
.h35{height:15.285000px;}
.h1b{height:15.300000px;}
.h3c{height:15.322500px;}
.h47{height:15.330000px;}
.h39{height:15.465000px;}
.h12{height:15.480000px;}
.h4f{height:15.501000px;}
.h4a{height:15.510000px;}
.h21{height:16.543828px;}
.h14{height:16.920000px;}
.h19{height:17.100000px;}
.h2f{height:17.640000px;}
.h16{height:18.360000px;}
.h24{height:19.245000px;}
.h26{height:19.425000px;}
.h11{height:21.055781px;}
.he{height:22.975313px;}
.h4d{height:23.025000px;}
.h2{height:23.938500px;}
.h22{height:25.941000px;}
.h1e{height:27.228516px;}
.h30{height:27.898500px;}
.hb{height:27.900000px;}
.h23{height:29.145586px;}
.hf{height:29.700000px;}
.h36{height:30.585000px;}
.h3e{height:30.600000px;}
.h4b{height:30.765000px;}
.h49{height:30.780000px;}
.h48{height:31.485000px;}
.h43{height:31.605469px;}
.h32{height:34.684453px;}
.h27{height:40.472227px;}
.h1c{height:40.842773px;}
.h13{height:40.869141px;}
.h25{height:41.493516px;}
.h46{height:42.366094px;}
.h15{height:44.820000px;}
.hc{height:44.860781px;}
.h1a{height:45.199336px;}
.h18{height:45.695391px;}
.h45{height:45.885000px;}
.h38{height:46.065000px;}
.h3d{height:46.080000px;}
.h3b{height:46.102500px;}
.h17{height:50.100469px;}
.h3{height:50.597578px;}
.h2c{height:54.000000px;}
.h6{height:54.457031px;}
.h2e{height:56.084062px;}
.h2d{height:56.160000px;}
.h8{height:57.051211px;}
.h41{height:61.380000px;}
.h2b{height:63.180000px;}
.h4{height:70.664062px;}
.h31{height:72.562500px;}
.h34{height:91.965000px;}
.h40{height:92.160000px;}
.h7{height:106.942500px;}
.h3f{height:107.460000px;}
.h2a{height:114.660000px;}
.h5{height:124.590000px;}
.h28{height:135.705000px;}
.h3a{height:168.675000px;}
.h44{height:170.295000px;}
.h42{height:185.430000px;}
.h4c{height:199.830000px;}
.h37{height:230.070000px;}
.h1f{height:253.110000px;}
.h4e{height:342.375000px;}
.h33{height:716.535000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w32{width:23.781000px;}
.w30{width:25.005000px;}
.w34{width:25.545000px;}
.w41{width:26.989500px;}
.w2d{width:27.165000px;}
.w28{width:27.180000px;}
.w37{width:27.201000px;}
.w2e{width:27.345000px;}
.w29{width:27.360000px;}
.w2a{width:29.160000px;}
.w2f{width:30.225000px;}
.w33{width:30.405000px;}
.w2b{width:31.500000px;}
.w2c{width:31.536000px;}
.w31{width:33.105000px;}
.w35{width:35.085000px;}
.w40{width:49.845000px;}
.w10{width:52.189500px;}
.w43{width:53.985000px;}
.w3d{width:60.825000px;}
.w3c{width:64.620000px;}
.w3a{width:65.721000px;}
.w1e{width:66.621000px;}
.w44{width:74.145000px;}
.w13{width:74.329500px;}
.w1c{width:80.985000px;}
.w1a{width:81.540000px;}
.w3b{width:81.720000px;}
.w1d{width:81.885000px;}
.w3e{width:87.645000px;}
.w1b{width:93.096000px;}
.w4{width:101.329500px;}
.w1f{width:107.985000px;}
.w39{width:111.949500px;}
.w16{width:122.385000px;}
.w3f{width:125.661000px;}
.w14{width:130.521000px;}
.w15{width:131.796000px;}
.w21{width:141.876000px;}
.w9{width:154.429500px;}
.w24{width:161.299500px;}
.w19{width:162.919500px;}
.w22{width:165.765000px;}
.w27{width:169.395000px;}
.w25{width:169.920000px;}
.w23{width:169.935000px;}
.w26{width:174.450000px;}
.w20{width:197.479500px;}
.w17{width:216.015000px;}
.w3{width:265.155000px;}
.w11{width:280.320000px;}
.w8{width:291.075000px;}
.w18{width:324.019500px;}
.wc{width:325.815000px;}
.wf{width:333.555000px;}
.we{width:338.284500px;}
.w12{width:339.315000px;}
.wb{width:349.264500px;}
.w7{width:384.004500px;}
.w2{width:414.424500px;}
.w36{width:478.695000px;}
.w38{width:513.795000px;}
.w42{width:519.930000px;}
.wa{width:520.650000px;}
.wd{width:573.660000px;}
.w5{width:575.730000px;}
.w6{width:675.090000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x50{left:1.065000px;}
.x2{left:3.769500px;}
.x4e{left:5.025000px;}
.x16{left:6.465000px;}
.x4c{left:7.545000px;}
.x48{left:9.030000px;}
.x56{left:10.440000px;}
.x23{left:12.405000px;}
.x5d{left:16.380000px;}
.x14{left:17.809500px;}
.x20{left:19.800000px;}
.x22{left:21.060000px;}
.x2c{left:22.320000px;}
.x28{left:23.940000px;}
.x2d{left:25.230000px;}
.x25{left:26.805000px;}
.x2f{left:28.425000px;}
.x8{left:29.865000px;}
.x2a{left:31.320000px;}
.x18{left:32.565000px;}
.x2e{left:34.560000px;}
.x2b{left:36.900000px;}
.xc{left:38.370000px;}
.x29{left:39.420000px;}
.x31{left:43.920000px;}
.x33{left:48.045000px;}
.x3e{left:49.680000px;}
.x38{left:51.120000px;}
.x3a{left:53.280000px;}
.x40{left:54.900000px;}
.x3b{left:55.980000px;}
.x35{left:57.990000px;}
.x3d{left:60.285000px;}
.x43{left:61.590000px;}
.x36{left:63.165000px;}
.x3c{left:65.505000px;}
.x37{left:67.710000px;}
.x39{left:69.645000px;}
.x3f{left:72.210000px;}
.x1{left:106.786500px;}
.x5{left:108.036000px;}
.x13{left:122.025000px;}
.x60{left:135.046500px;}
.x4{left:141.510000px;}
.x19{left:143.445000px;}
.x15{left:164.385000px;}
.x1b{left:182.385000px;}
.x6{left:209.385000px;}
.x5a{left:220.005000px;}
.xd{left:221.115000px;}
.x9{left:263.385000px;}
.x41{left:269.355000px;}
.x1f{left:270.975000px;}
.xe{left:273.705000px;}
.x5b{left:285.735000px;}
.x1e{left:297.028500px;}
.xf{left:303.405000px;}
.x30{left:305.535000px;}
.x1c{left:312.915000px;}
.x44{left:323.895000px;}
.x10{left:341.025000px;}
.x45{left:351.255000px;}
.x21{left:352.515000px;}
.x5c{left:367.455000px;}
.x46{left:380.415000px;}
.x47{left:407.775000px;}
.x42{left:439.275000px;}
.x17{left:444.720000px;}
.x32{left:447.420000px;}
.x12{left:450.480000px;}
.xa{left:458.220000px;}
.xb{left:462.705000px;}
.x49{left:470.820000px;}
.x7{left:492.960000px;}
.x4a{left:498.000000px;}
.x3{left:521.220000px;}
.x5e{left:523.560000px;}
.x4b{left:525.360000px;}
.x24{left:526.620000px;}
.x4d{left:555.600000px;}
.x1d{left:567.120000px;}
.x11{left:573.990000px;}
.x4f{left:580.620000px;}
.x57{left:582.960000px;}
.x26{left:608.520000px;}
.x58{left:610.320000px;}
.x34{left:613.200000px;}
.x1a{left:634.603500px;}
.x51{left:637.530000px;}
.x61{left:654.990000px;}
.x52{left:667.950000px;}
.x27{left:675.150000px;}
.x53{left:695.310000px;}
.x62{left:708.990000px;}
.x54{left:722.490000px;}
.x5f{left:736.890000px;}
.x55{left:748.050000px;}
.x59{left:752.910000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.v1{vertical-align:16.000000pt;}
.ls2d{letter-spacing:-1.440000pt;}
.ls2c{letter-spacing:-1.232000pt;}
.ls2e{letter-spacing:-1.200000pt;}
.ls29{letter-spacing:-0.976000pt;}
.ls2a{letter-spacing:-0.800000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls2f{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.452267pt;}
.ls5{letter-spacing:-0.301867pt;}
.ls7{letter-spacing:-0.297067pt;}
.ls1b{letter-spacing:-0.288000pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls1f{letter-spacing:-0.240000pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls26{letter-spacing:-0.144000pt;}
.ls27{letter-spacing:-0.112000pt;}
.ls18{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:-0.086933pt;}
.ls11{letter-spacing:-0.080000pt;}
.ls1a{letter-spacing:-0.048000pt;}
.ls1e{letter-spacing:-0.032000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.028160pt;}
.ls2b{letter-spacing:0.032000pt;}
.ls16{letter-spacing:0.048000pt;}
.lse{letter-spacing:0.112000pt;}
.ls15{letter-spacing:0.192000pt;}
.ls1c{letter-spacing:0.224000pt;}
.ls17{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.304000pt;}
.ls8{letter-spacing:0.342933pt;}
.ls23{letter-spacing:0.352000pt;}
.ls14{letter-spacing:0.368000pt;}
.ls13{letter-spacing:0.384000pt;}
.ls24{letter-spacing:0.416000pt;}
.ls9{letter-spacing:0.464000pt;}
.lsc{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.496000pt;}
.lsf{letter-spacing:0.560000pt;}
.ls0{letter-spacing:0.595840pt;}
.ls21{letter-spacing:0.656000pt;}
.ls3b{letter-spacing:0.672000pt;}
.ls33{letter-spacing:0.688000pt;}
.ls38{letter-spacing:0.720000pt;}
.ls36{letter-spacing:0.736000pt;}
.lsb{letter-spacing:0.800000pt;}
.ls30{letter-spacing:0.896000pt;}
.ls20{letter-spacing:0.976000pt;}
.ls35{letter-spacing:1.024000pt;}
.ls1d{letter-spacing:1.104000pt;}
.ls3a{letter-spacing:1.120000pt;}
.ls31{letter-spacing:1.136000pt;}
.ls34{letter-spacing:1.248000pt;}
.ls39{letter-spacing:1.312000pt;}
.ls32{letter-spacing:1.360000pt;}
.ls37{letter-spacing:1.424000pt;}
.ls22{letter-spacing:10.192000pt;}
.ls10{letter-spacing:13.440000pt;}
.ls25{letter-spacing:56.272000pt;}
.ws1f{word-spacing:-48.000000pt;}
.ws2{word-spacing:-18.167040pt;}
.ws0{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.192640pt;}
.ws1{word-spacing:-14.080000pt;}
.ws27{word-spacing:-13.616000pt;}
.ws29{word-spacing:-13.552000pt;}
.ws2a{word-spacing:-13.504000pt;}
.ws8{word-spacing:-13.296533pt;}
.ws26{word-spacing:-13.088000pt;}
.wsc{word-spacing:-12.992000pt;}
.ws7{word-spacing:-12.953600pt;}
.ws25{word-spacing:-12.928000pt;}
.ws28{word-spacing:-12.912000pt;}
.ws2c{word-spacing:-12.864000pt;}
.ws2b{word-spacing:-12.688000pt;}
.ws6{word-spacing:-12.656533pt;}
.ws2d{word-spacing:-12.592000pt;}
.ws3{word-spacing:-12.192000pt;}
.wse{word-spacing:-12.128000pt;}
.ws12{word-spacing:-11.952000pt;}
.ws13{word-spacing:-11.936000pt;}
.ws15{word-spacing:-11.872000pt;}
.ws18{word-spacing:-11.792000pt;}
.ws24{word-spacing:-11.712000pt;}
.wsd{word-spacing:-11.680000pt;}
.ws14{word-spacing:-11.616000pt;}
.wsa{word-spacing:-11.599467pt;}
.ws1e{word-spacing:-11.584000pt;}
.ws4{word-spacing:-11.568000pt;}
.ws1b{word-spacing:-11.536000pt;}
.ws16{word-spacing:-11.520000pt;}
.wsf{word-spacing:-11.488000pt;}
.ws1d{word-spacing:-11.456000pt;}
.ws11{word-spacing:-11.408000pt;}
.ws1c{word-spacing:-11.328000pt;}
.ws10{word-spacing:-11.312000pt;}
.ws17{word-spacing:-11.280000pt;}
.ws23{word-spacing:-10.992000pt;}
.ws21{word-spacing:-10.960000pt;}
.ws20{word-spacing:-10.592000pt;}
.ws22{word-spacing:-10.336000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws19{word-spacing:-7.968000pt;}
.ws1a{word-spacing:-7.712000pt;}
.ws9{word-spacing:0.000000pt;}
._e{margin-left:-2.634453pt;}
._1{margin-left:-1.152000pt;}
._0{width:1.039147pt;}
._5{width:2.112000pt;}
._6{width:3.312000pt;}
._7{width:4.251520pt;}
._a{width:5.934293pt;}
._b{width:7.520000pt;}
._15{width:8.560853pt;}
._10{width:9.792000pt;}
._f{width:12.570667pt;}
._8{width:14.112000pt;}
._9{width:15.393707pt;}
._16{width:16.656000pt;}
._11{width:17.712000pt;}
._12{width:18.672000pt;}
._18{width:20.352000pt;}
._19{width:21.744000pt;}
._4{width:23.137920pt;}
._3{width:24.336000pt;}
._2{width:25.413120pt;}
._17{width:26.442880pt;}
._1e{width:27.462613pt;}
._13{width:28.704000pt;}
._1b{width:30.192000pt;}
._33{width:31.114667pt;}
._20{width:32.304000pt;}
._c{width:33.408000pt;}
._d{width:34.449707pt;}
._34{width:35.418880pt;}
._23{width:36.672000pt;}
._1a{width:37.728000pt;}
._14{width:38.736000pt;}
._22{width:39.792000pt;}
._2f{width:40.944000pt;}
._39{width:42.192000pt;}
._3a{width:43.226667pt;}
._24{width:44.256000pt;}
._25{width:45.520853pt;}
._1f{width:46.704000pt;}
._35{width:48.180907pt;}
._1c{width:49.392000pt;}
._1d{width:50.320853pt;}
._21{width:51.648000pt;}
._2a{width:52.848000pt;}
._36{width:56.137387pt;}
._37{width:57.412267pt;}
._28{width:58.800000pt;}
._29{width:60.096000pt;}
._3c{width:61.392000pt;}
._3d{width:62.352000pt;}
._38{width:63.387093pt;}
._27{width:66.954667pt;}
._40{width:69.302827pt;}
._2b{width:71.040000pt;}
._26{width:73.392000pt;}
._3b{width:81.600000pt;}
._3f{width:84.465707pt;}
._3e{width:85.445120pt;}
._30{width:89.328000pt;}
._31{width:90.592853pt;}
._32{width:94.954667pt;}
._2c{width:100.560000pt;}
._2d{width:101.664000pt;}
._2e{width:119.856000pt;}
.fsb{font-size:2.560000pt;}
.fs3{font-size:16.000000pt;}
.fs9{font-size:21.120000pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fsd{font-size:37.120000pt;}
.fse{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fsc{font-size:66.560000pt;}
.fs2{font-size:74.880000pt;}
.y4b{bottom:-16.346667pt;}
.y3c{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:1.280000pt;}
.y14{bottom:1.440000pt;}
.y18{bottom:1.760000pt;}
.y23{bottom:2.080000pt;}
.y4a{bottom:2.533333pt;}
.y14f{bottom:2.706667pt;}
.y21{bottom:2.720000pt;}
.y19d{bottom:2.866667pt;}
.y1a{bottom:2.880000pt;}
.y127{bottom:2.906667pt;}
.y4d{bottom:3.040000pt;}
.y1f{bottom:3.200000pt;}
.y1c{bottom:4.000000pt;}
.y34{bottom:5.746667pt;}
.y36{bottom:5.906667pt;}
.yb5{bottom:6.880000pt;}
.y82{bottom:6.906667pt;}
.yb9{bottom:7.026667pt;}
.y2{bottom:8.640000pt;}
.y87{bottom:9.586667pt;}
.y2f{bottom:9.760000pt;}
.y50{bottom:10.400000pt;}
.y51{bottom:12.160000pt;}
.y12{bottom:12.320000pt;}
.y9{bottom:12.800000pt;}
.y16{bottom:13.920000pt;}
.y32{bottom:14.586667pt;}
.y52{bottom:14.720000pt;}
.ye{bottom:15.680000pt;}
.y1a5{bottom:16.306667pt;}
.y94{bottom:16.320000pt;}
.y14e{bottom:16.466667pt;}
.y9a{bottom:16.480000pt;}
.y10e{bottom:17.120000pt;}
.y49{bottom:24.293333pt;}
.y86{bottom:30.066667pt;}
.y99{bottom:30.080000pt;}
.ya3{bottom:30.120000pt;}
.y2e{bottom:30.240000pt;}
.y8{bottom:40.480000pt;}
.y53{bottom:42.240000pt;}
.yae{bottom:43.680000pt;}
.y48{bottom:44.933333pt;}
.yd{bottom:47.400000pt;}
.y85{bottom:50.546667pt;}
.y2d{bottom:50.720000pt;}
.y3{bottom:51.840000pt;}
.y4f{bottom:56.640000pt;}
.y47{bottom:65.413333pt;}
.y1{bottom:66.240000pt;}
.y7{bottom:68.160000pt;}
.y84{bottom:71.026667pt;}
.y2c{bottom:71.040000pt;}
.yc{bottom:79.080000pt;}
.yab{bottom:84.640000pt;}
.y46{bottom:86.533333pt;}
.y2b{bottom:91.520000pt;}
.y5{bottom:95.680000pt;}
.y6{bottom:95.840000pt;}
.y1fb{bottom:106.720000pt;}
.y1d2{bottom:108.160000pt;}
.y44{bottom:110.080000pt;}
.y2a{bottom:112.000000pt;}
.y10d{bottom:113.280000pt;}
.y91{bottom:113.600000pt;}
.y16f{bottom:114.240000pt;}
.y1ab{bottom:114.400000pt;}
.y169{bottom:115.360000pt;}
.y80{bottom:115.840000pt;}
.y141{bottom:117.280000pt;}
.ybf{bottom:117.760000pt;}
.yd8{bottom:117.920000pt;}
.y1fa{bottom:127.840000pt;}
.y1d1{bottom:129.280000pt;}
.y43{bottom:130.560000pt;}
.y29{bottom:132.480000pt;}
.y10c{bottom:133.760000pt;}
.y90{bottom:134.080000pt;}
.y16e{bottom:134.880000pt;}
.y168{bottom:135.840000pt;}
.y7f{bottom:136.160000pt;}
.y140{bottom:137.760000pt;}
.ybe{bottom:138.080000pt;}
.yd7{bottom:138.400000pt;}
.y9e{bottom:139.080000pt;}
.y1f9{bottom:148.960000pt;}
.y1d0{bottom:150.400000pt;}
.y42{bottom:151.040000pt;}
.y28{bottom:152.960000pt;}
.y10b{bottom:154.240000pt;}
.y8f{bottom:154.560000pt;}
.y1aa{bottom:155.360000pt;}
.y16d{bottom:155.680000pt;}
.y167{bottom:156.320000pt;}
.y7e{bottom:156.640000pt;}
.y194{bottom:157.106667pt;}
.y13f{bottom:158.240000pt;}
.ybd{bottom:158.560000pt;}
.yd6{bottom:158.880000pt;}
.y1f8{bottom:170.240000pt;}
.y193{bottom:170.746667pt;}
.y41{bottom:171.360000pt;}
.y1cf{bottom:171.520000pt;}
.y27{bottom:173.440000pt;}
.y10a{bottom:174.560000pt;}
.y8e{bottom:175.040000pt;}
.y1a9{bottom:175.840000pt;}
.y16c{bottom:176.480000pt;}
.y166{bottom:176.800000pt;}
.y7d{bottom:177.120000pt;}
.y13e{bottom:178.560000pt;}
.ybc{bottom:179.040000pt;}
.yd5{bottom:179.360000pt;}
.y192{bottom:184.346667pt;}
.y1f7{bottom:191.386667pt;}
.y40{bottom:191.866667pt;}
.y1ce{bottom:192.666667pt;}
.y97{bottom:193.640000pt;}
.y26{bottom:193.786667pt;}
.y165{bottom:194.906667pt;}
.y109{bottom:195.066667pt;}
.y8d{bottom:195.546667pt;}
.y1a8{bottom:196.186667pt;}
.y16b{bottom:197.146667pt;}
.ybb{bottom:197.306667pt;}
.y7c{bottom:197.626667pt;}
.y191{bottom:197.946667pt;}
.y13d{bottom:199.066667pt;}
.yd4{bottom:199.706667pt;}
.yba{bottom:205.800000pt;}
.y190{bottom:211.706667pt;}
.y3f{bottom:212.346667pt;}
.y1f6{bottom:212.506667pt;}
.y164{bottom:213.146667pt;}
.y1cd{bottom:213.786667pt;}
.y25{bottom:214.266667pt;}
.y108{bottom:215.546667pt;}
.y8c{bottom:216.026667pt;}
.y1a7{bottom:216.666667pt;}
.y16a{bottom:217.946667pt;}
.y7b{bottom:218.106667pt;}
.y13c{bottom:219.546667pt;}
.yd3{bottom:220.186667pt;}
.y18f{bottom:225.306667pt;}
.y189{bottom:229.480000pt;}
.y3e{bottom:232.826667pt;}
.y163{bottom:233.626667pt;}
.y1cc{bottom:234.906667pt;}
.y107{bottom:236.026667pt;}
.y8b{bottom:236.346667pt;}
.y7a{bottom:238.586667pt;}
.y18e{bottom:238.906667pt;}
.y13b{bottom:240.026667pt;}
.yd2{bottom:240.666667pt;}
.y1a6{bottom:244.040000pt;}
.yb8{bottom:246.600000pt;}
.y18d{bottom:252.506667pt;}
.y3d{bottom:253.306667pt;}
.y151{bottom:253.480000pt;}
.y162{bottom:254.106667pt;}
.y1f5{bottom:254.746667pt;}
.y1cb{bottom:256.026667pt;}
.y106{bottom:256.506667pt;}
.y8a{bottom:256.826667pt;}
.y1a4{bottom:258.760000pt;}
.y79{bottom:258.906667pt;}
.y13a{bottom:260.506667pt;}
.yd1{bottom:261.146667pt;}
.y3b{bottom:264.040000pt;}
.y18c{bottom:266.106667pt;}
.y150{bottom:267.080000pt;}
.y161{bottom:274.586667pt;}
.y1f4{bottom:275.866667pt;}
.y105{bottom:276.986667pt;}
.y89{bottom:277.306667pt;}
.y78{bottom:279.386667pt;}
.y18b{bottom:279.866667pt;}
.y139{bottom:280.986667pt;}
.y3a{bottom:281.320000pt;}
.yd0{bottom:281.626667pt;}
.y1a3{bottom:286.920000pt;}
.y18a{bottom:293.466667pt;}
.y160{bottom:294.906667pt;}
.y88{bottom:296.986667pt;}
.y104{bottom:297.306667pt;}
.y1ca{bottom:298.426667pt;}
.y39{bottom:298.440000pt;}
.y77{bottom:299.866667pt;}
.y138{bottom:301.306667pt;}
.ycf{bottom:302.106667pt;}
.y83{bottom:307.880000pt;}
.y1a2{bottom:315.240000pt;}
.y15f{bottom:315.386667pt;}
.y38{bottom:315.720000pt;}
.y103{bottom:317.786667pt;}
.y1f3{bottom:318.106667pt;}
.y1c9{bottom:319.546667pt;}
.y76{bottom:320.346667pt;}
.y137{bottom:321.786667pt;}
.yce{bottom:322.426667pt;}
.y1a1{bottom:329.960000pt;}
.y37{bottom:333.000000pt;}
.y15e{bottom:335.866667pt;}
.y102{bottom:338.266667pt;}
.y1f2{bottom:339.226667pt;}
.y1c8{bottom:340.666667pt;}
.y75{bottom:340.826667pt;}
.y136{bottom:342.266667pt;}
.ycd{bottom:342.906667pt;}
.y1a0{bottom:344.520000pt;}
.y35{bottom:350.280000pt;}
.y15d{bottom:356.346667pt;}
.y101{bottom:358.746667pt;}
.y19f{bottom:359.080000pt;}
.y1f1{bottom:360.346667pt;}
.y74{bottom:361.306667pt;}
.y1c7{bottom:361.786667pt;}
.y135{bottom:362.746667pt;}
.ycc{bottom:363.386667pt;}
.y33{bottom:367.560000pt;}
.y19e{bottom:373.800000pt;}
.y15c{bottom:376.826667pt;}
.y100{bottom:379.226667pt;}
.y1f0{bottom:381.466667pt;}
.y73{bottom:381.626667pt;}
.y1c6{bottom:382.906667pt;}
.y134{bottom:383.226667pt;}
.ycb{bottom:383.866667pt;}
.y31{bottom:384.680000pt;}
.y19c{bottom:388.360000pt;}
.y81{bottom:389.640000pt;}
.y15b{bottom:397.346667pt;}
.yff{bottom:399.586667pt;}
.y72{bottom:402.146667pt;}
.y1ef{bottom:402.786667pt;}
.y19b{bottom:403.106667pt;}
.y133{bottom:403.586667pt;}
.y1c5{bottom:404.066667pt;}
.yca{bottom:404.386667pt;}
.yb7{bottom:405.346667pt;}
.y30{bottom:407.746667pt;}
.yfe{bottom:412.386667pt;}
.y24{bottom:413.666667pt;}
.yb6{bottom:413.826667pt;}
.y15a{bottom:417.666667pt;}
.y71{bottom:422.626667pt;}
.y1ee{bottom:423.906667pt;}
.y132{bottom:424.066667pt;}
.yc9{bottom:424.706667pt;}
.y1c4{bottom:425.186667pt;}
.yfd{bottom:425.986667pt;}
.y19a{bottom:432.386667pt;}
.y159{bottom:438.146667pt;}
.yfc{bottom:439.586667pt;}
.y70{bottom:443.106667pt;}
.y131{bottom:444.546667pt;}
.y1ed{bottom:445.026667pt;}
.yc8{bottom:445.186667pt;}
.y1c3{bottom:446.306667pt;}
.y199{bottom:446.946667pt;}
.yfb{bottom:453.346667pt;}
.yb4{bottom:454.786667pt;}
.y158{bottom:458.626667pt;}
.y198{bottom:461.666667pt;}
.y6f{bottom:463.586667pt;}
.y130{bottom:465.026667pt;}
.yc7{bottom:465.666667pt;}
.y1ec{bottom:466.146667pt;}
.yfa{bottom:466.946667pt;}
.y1c2{bottom:467.426667pt;}
.y197{bottom:476.226667pt;}
.y157{bottom:479.106667pt;}
.yf9{bottom:480.546667pt;}
.y6e{bottom:484.066667pt;}
.y12f{bottom:485.506667pt;}
.yc6{bottom:486.146667pt;}
.y1eb{bottom:487.266667pt;}
.y1c1{bottom:488.546667pt;}
.y196{bottom:490.946667pt;}
.yf8{bottom:494.146667pt;}
.y156{bottom:499.586667pt;}
.y6d{bottom:504.386667pt;}
.y195{bottom:505.506667pt;}
.y12e{bottom:505.986667pt;}
.yc5{bottom:506.626667pt;}
.yf7{bottom:507.906667pt;}
.y1ea{bottom:508.386667pt;}
.y1c0{bottom:509.666667pt;}
.y12d{bottom:518.626667pt;}
.y155{bottom:519.906667pt;}
.y188{bottom:520.226667pt;}
.yf6{bottom:521.506667pt;}
.y6c{bottom:524.866667pt;}
.yc4{bottom:527.106667pt;}
.y1e9{bottom:529.506667pt;}
.y1bf{bottom:530.946667pt;}
.y12c{bottom:532.226667pt;}
.y187{bottom:534.466667pt;}
.yf5{bottom:535.106667pt;}
.y154{bottom:538.146667pt;}
.y6b{bottom:545.346667pt;}
.y12b{bottom:545.986667pt;}
.y153{bottom:546.626667pt;}
.yc3{bottom:547.426667pt;}
.yf4{bottom:548.706667pt;}
.y1e8{bottom:550.626667pt;}
.y1be{bottom:552.066667pt;}
.y12a{bottom:559.586667pt;}
.y186{bottom:559.906667pt;}
.yf3{bottom:562.306667pt;}
.y6a{bottom:565.826667pt;}
.y152{bottom:567.106667pt;}
.yc2{bottom:567.906667pt;}
.y1e7{bottom:571.746667pt;}
.y129{bottom:573.186667pt;}
.yf2{bottom:576.066667pt;}
.y185{bottom:580.226667pt;}
.y69{bottom:586.306667pt;}
.y128{bottom:586.786667pt;}
.yc1{bottom:588.386667pt;}
.yf1{bottom:589.666667pt;}
.y1e6{bottom:592.866667pt;}
.y1bd{bottom:594.306667pt;}
.y126{bottom:600.386667pt;}
.y184{bottom:600.893333pt;}
.yf0{bottom:603.293333pt;}
.y68{bottom:606.653333pt;}
.yc0{bottom:608.893333pt;}
.y1e5{bottom:614.013333pt;}
.y125{bottom:614.173333pt;}
.y1bc{bottom:615.453333pt;}
.yef{bottom:616.893333pt;}
.y183{bottom:621.693333pt;}
.y67{bottom:627.133333pt;}
.y124{bottom:627.773333pt;}
.yb3{bottom:629.373333pt;}
.yee{bottom:631.293333pt;}
.y1e4{bottom:635.133333pt;}
.y1bb{bottom:636.573333pt;}
.y22{bottom:638.653333pt;}
.y123{bottom:641.373333pt;}
.yaa{bottom:642.013333pt;}
.y182{bottom:642.333333pt;}
.y66{bottom:647.613333pt;}
.y20{bottom:647.773333pt;}
.y14d{bottom:649.853333pt;}
.y122{bottom:654.973333pt;}
.yac{bottom:655.613333pt;}
.y1e3{bottom:656.413333pt;}
.yed{bottom:656.573333pt;}
.y1ba{bottom:657.693333pt;}
.y1e{bottom:661.373333pt;}
.y181{bottom:663.133333pt;}
.y65{bottom:668.093333pt;}
.y121{bottom:668.733333pt;}
.yb2{bottom:669.373333pt;}
.y14c{bottom:670.173333pt;}
.y1d{bottom:676.573333pt;}
.yec{bottom:677.053333pt;}
.y1e2{bottom:677.533333pt;}
.y1b9{bottom:678.813333pt;}
.y120{bottom:682.333333pt;}
.yad{bottom:682.973333pt;}
.y180{bottom:683.773333pt;}
.y64{bottom:688.573333pt;}
.y14b{bottom:690.653333pt;}
.y1b{bottom:692.893333pt;}
.y11f{bottom:695.933333pt;}
.yaf{bottom:696.573333pt;}
.yeb{bottom:697.533333pt;}
.y1e1{bottom:698.653333pt;}
.y1b8{bottom:699.933333pt;}
.y17f{bottom:704.573333pt;}
.y19{bottom:707.933333pt;}
.y63{bottom:709.053333pt;}
.yb1{bottom:710.173333pt;}
.y14a{bottom:711.133333pt;}
.yea{bottom:718.013333pt;}
.y1e0{bottom:719.773333pt;}
.y1b7{bottom:721.053333pt;}
.y17{bottom:721.693333pt;}
.y11e{bottom:723.133333pt;}
.yb0{bottom:723.933333pt;}
.y17e{bottom:725.373333pt;}
.y15{bottom:729.053333pt;}
.y62{bottom:729.373333pt;}
.ye9{bottom:730.653333pt;}
.y149{bottom:731.613333pt;}
.y96{bottom:737.533333pt;}
.y1df{bottom:740.893333pt;}
.y1b6{bottom:742.173333pt;}
.ye8{bottom:744.253333pt;}
.y17d{bottom:746.013333pt;}
.y61{bottom:749.853333pt;}
.y11d{bottom:750.493333pt;}
.ya9{bottom:751.133333pt;}
.y148{bottom:752.093333pt;}
.y13{bottom:755.453333pt;}
.ye7{bottom:758.013333pt;}
.y1de{bottom:762.013333pt;}
.y1b5{bottom:763.293333pt;}
.y11{bottom:763.613333pt;}
.y11c{bottom:764.093333pt;}
.ya6{bottom:764.733333pt;}
.y17c{bottom:766.813333pt;}
.y60{bottom:770.333333pt;}
.ye6{bottom:771.613333pt;}
.y147{bottom:772.573333pt;}
.y11b{bottom:777.693333pt;}
.ya8{bottom:778.333333pt;}
.y1dd{bottom:783.133333pt;}
.y1b4{bottom:784.573333pt;}
.ye5{bottom:785.213333pt;}
.y17b{bottom:787.453333pt;}
.yf{bottom:788.413333pt;}
.y5f{bottom:790.813333pt;}
.y11a{bottom:791.293333pt;}
.ya7{bottom:792.093333pt;}
.y146{bottom:792.893333pt;}
.yb{bottom:793.053333pt;}
.ye4{bottom:798.813333pt;}
.y1dc{bottom:804.253333pt;}
.y119{bottom:805.053333pt;}
.ya2{bottom:805.693333pt;}
.y17a{bottom:808.253333pt;}
.y5e{bottom:811.333333pt;}
.ye3{bottom:812.453333pt;}
.y145{bottom:813.413333pt;}
.y118{bottom:818.693333pt;}
.ya5{bottom:819.333333pt;}
.y1db{bottom:825.413333pt;}
.ye2{bottom:826.213333pt;}
.y1b3{bottom:826.853333pt;}
.y179{bottom:829.093333pt;}
.y5d{bottom:831.813333pt;}
.y117{bottom:832.293333pt;}
.ya4{bottom:832.933333pt;}
.y144{bottom:833.893333pt;}
.ye1{bottom:839.813333pt;}
.y116{bottom:845.893333pt;}
.y1da{bottom:846.533333pt;}
.ya0{bottom:846.693333pt;}
.y1b2{bottom:847.973333pt;}
.y178{bottom:849.733333pt;}
.y5c{bottom:852.133333pt;}
.ye0{bottom:853.413333pt;}
.y143{bottom:854.373333pt;}
.y115{bottom:859.653333pt;}
.ya1{bottom:860.293333pt;}
.ydf{bottom:867.013333pt;}
.y1d9{bottom:867.653333pt;}
.y1b1{bottom:869.093333pt;}
.y177{bottom:870.533333pt;}
.y5b{bottom:872.613333pt;}
.y114{bottom:873.253333pt;}
.y9f{bottom:873.893333pt;}
.y142{bottom:874.853333pt;}
.yde{bottom:880.773333pt;}
.y113{bottom:886.853333pt;}
.y9d{bottom:887.493333pt;}
.y1d8{bottom:888.773333pt;}
.y1b0{bottom:890.213333pt;}
.y176{bottom:891.173333pt;}
.y5a{bottom:893.093333pt;}
.ydd{bottom:894.373333pt;}
.y112{bottom:900.453333pt;}
.ya{bottom:900.933333pt;}
.y98{bottom:901.093333pt;}
.ydc{bottom:907.973333pt;}
.y1d7{bottom:910.053333pt;}
.y1af{bottom:911.333333pt;}
.y175{bottom:911.973333pt;}
.y59{bottom:913.573333pt;}
.y111{bottom:914.053333pt;}
.y9b{bottom:914.853333pt;}
.y4{bottom:915.813333pt;}
.ydb{bottom:921.573333pt;}
.y45{bottom:927.360000pt;}
.y110{bottom:927.813333pt;}
.y9c{bottom:928.453333pt;}
.y1d6{bottom:931.173333pt;}
.y1ae{bottom:932.453333pt;}
.y174{bottom:932.773333pt;}
.y58{bottom:934.053333pt;}
.yda{bottom:935.173333pt;}
.y10f{bottom:941.413333pt;}
.y93{bottom:942.053333pt;}
.yd9{bottom:949.573333pt;}
.y1d5{bottom:952.293333pt;}
.y173{bottom:953.413333pt;}
.y1ad{bottom:953.573333pt;}
.y57{bottom:954.533333pt;}
.y95{bottom:955.653333pt;}
.y92{bottom:970.053333pt;}
.y1d4{bottom:973.413333pt;}
.y172{bottom:974.213333pt;}
.y1ac{bottom:974.693333pt;}
.y56{bottom:974.853333pt;}
.y1d3{bottom:994.533333pt;}
.y171{bottom:994.853333pt;}
.y55{bottom:995.333333pt;}
.y170{bottom:1015.653333pt;}
.y54{bottom:1015.813333pt;}
.y4e{bottom:1032.000000pt;}
.y4c{bottom:1054.080000pt;}
.h29{height:1.777500pt;}
.h9{height:4.640000pt;}
.h20{height:5.906667pt;}
.h10{height:7.360000pt;}
.hd{height:8.160000pt;}
.h1d{height:9.120000pt;}
.ha{height:10.835938pt;}
.h35{height:13.586667pt;}
.h1b{height:13.600000pt;}
.h3c{height:13.620000pt;}
.h47{height:13.626667pt;}
.h39{height:13.746667pt;}
.h12{height:13.760000pt;}
.h4f{height:13.778667pt;}
.h4a{height:13.786667pt;}
.h21{height:14.705625pt;}
.h14{height:15.040000pt;}
.h19{height:15.200000pt;}
.h2f{height:15.680000pt;}
.h16{height:16.320000pt;}
.h24{height:17.106667pt;}
.h26{height:17.266667pt;}
.h11{height:18.716250pt;}
.he{height:20.422500pt;}
.h4d{height:20.466667pt;}
.h2{height:21.278667pt;}
.h22{height:23.058667pt;}
.h1e{height:24.203125pt;}
.h30{height:24.798667pt;}
.hb{height:24.800000pt;}
.h23{height:25.907187pt;}
.hf{height:26.400000pt;}
.h36{height:27.186667pt;}
.h3e{height:27.200000pt;}
.h4b{height:27.346667pt;}
.h49{height:27.360000pt;}
.h48{height:27.986667pt;}
.h43{height:28.093750pt;}
.h32{height:30.830625pt;}
.h27{height:35.975313pt;}
.h1c{height:36.304688pt;}
.h13{height:36.328125pt;}
.h25{height:36.883125pt;}
.h46{height:37.658750pt;}
.h15{height:39.840000pt;}
.hc{height:39.876250pt;}
.h1a{height:40.177188pt;}
.h18{height:40.618125pt;}
.h45{height:40.786667pt;}
.h38{height:40.946667pt;}
.h3d{height:40.960000pt;}
.h3b{height:40.980000pt;}
.h17{height:44.533750pt;}
.h3{height:44.975625pt;}
.h2c{height:48.000000pt;}
.h6{height:48.406250pt;}
.h2e{height:49.852500pt;}
.h2d{height:49.920000pt;}
.h8{height:50.712187pt;}
.h41{height:54.560000pt;}
.h2b{height:56.160000pt;}
.h4{height:62.812500pt;}
.h31{height:64.500000pt;}
.h34{height:81.746667pt;}
.h40{height:81.920000pt;}
.h7{height:95.060000pt;}
.h3f{height:95.520000pt;}
.h2a{height:101.920000pt;}
.h5{height:110.746667pt;}
.h28{height:120.626667pt;}
.h3a{height:149.933333pt;}
.h44{height:151.373333pt;}
.h42{height:164.826667pt;}
.h4c{height:177.626667pt;}
.h37{height:204.506667pt;}
.h1f{height:224.986667pt;}
.h4e{height:304.333333pt;}
.h33{height:636.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w32{width:21.138667pt;}
.w30{width:22.226667pt;}
.w34{width:22.706667pt;}
.w41{width:23.990667pt;}
.w2d{width:24.146667pt;}
.w28{width:24.160000pt;}
.w37{width:24.178667pt;}
.w2e{width:24.306667pt;}
.w29{width:24.320000pt;}
.w2a{width:25.920000pt;}
.w2f{width:26.866667pt;}
.w33{width:27.026667pt;}
.w2b{width:28.000000pt;}
.w2c{width:28.032000pt;}
.w31{width:29.426667pt;}
.w35{width:31.186667pt;}
.w40{width:44.306667pt;}
.w10{width:46.390667pt;}
.w43{width:47.986667pt;}
.w3d{width:54.066667pt;}
.w3c{width:57.440000pt;}
.w3a{width:58.418667pt;}
.w1e{width:59.218667pt;}
.w44{width:65.906667pt;}
.w13{width:66.070667pt;}
.w1c{width:71.986667pt;}
.w1a{width:72.480000pt;}
.w3b{width:72.640000pt;}
.w1d{width:72.786667pt;}
.w3e{width:77.906667pt;}
.w1b{width:82.752000pt;}
.w4{width:90.070667pt;}
.w1f{width:95.986667pt;}
.w39{width:99.510667pt;}
.w16{width:108.786667pt;}
.w3f{width:111.698667pt;}
.w14{width:116.018667pt;}
.w15{width:117.152000pt;}
.w21{width:126.112000pt;}
.w9{width:137.270667pt;}
.w24{width:143.377333pt;}
.w19{width:144.817333pt;}
.w22{width:147.346667pt;}
.w27{width:150.573333pt;}
.w25{width:151.040000pt;}
.w23{width:151.053333pt;}
.w26{width:155.066667pt;}
.w20{width:175.537333pt;}
.w17{width:192.013333pt;}
.w3{width:235.693333pt;}
.w11{width:249.173333pt;}
.w8{width:258.733333pt;}
.w18{width:288.017333pt;}
.wc{width:289.613333pt;}
.wf{width:296.493333pt;}
.we{width:300.697333pt;}
.w12{width:301.613333pt;}
.wb{width:310.457333pt;}
.w7{width:341.337333pt;}
.w2{width:368.377333pt;}
.w36{width:425.506667pt;}
.w38{width:456.706667pt;}
.w42{width:462.160000pt;}
.wa{width:462.800000pt;}
.wd{width:509.920000pt;}
.w5{width:511.760000pt;}
.w6{width:600.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x50{left:0.946667pt;}
.x2{left:3.350667pt;}
.x4e{left:4.466667pt;}
.x16{left:5.746667pt;}
.x4c{left:6.706667pt;}
.x48{left:8.026667pt;}
.x56{left:9.280000pt;}
.x23{left:11.026667pt;}
.x5d{left:14.560000pt;}
.x14{left:15.830667pt;}
.x20{left:17.600000pt;}
.x22{left:18.720000pt;}
.x2c{left:19.840000pt;}
.x28{left:21.280000pt;}
.x2d{left:22.426667pt;}
.x25{left:23.826667pt;}
.x2f{left:25.266667pt;}
.x8{left:26.546667pt;}
.x2a{left:27.840000pt;}
.x18{left:28.946667pt;}
.x2e{left:30.720000pt;}
.x2b{left:32.800000pt;}
.xc{left:34.106667pt;}
.x29{left:35.040000pt;}
.x31{left:39.040000pt;}
.x33{left:42.706667pt;}
.x3e{left:44.160000pt;}
.x38{left:45.440000pt;}
.x3a{left:47.360000pt;}
.x40{left:48.800000pt;}
.x3b{left:49.760000pt;}
.x35{left:51.546667pt;}
.x3d{left:53.586667pt;}
.x43{left:54.746667pt;}
.x36{left:56.146667pt;}
.x3c{left:58.226667pt;}
.x37{left:60.186667pt;}
.x39{left:61.906667pt;}
.x3f{left:64.186667pt;}
.x1{left:94.921333pt;}
.x5{left:96.032000pt;}
.x13{left:108.466667pt;}
.x60{left:120.041333pt;}
.x4{left:125.786667pt;}
.x19{left:127.506667pt;}
.x15{left:146.120000pt;}
.x1b{left:162.120000pt;}
.x6{left:186.120000pt;}
.x5a{left:195.560000pt;}
.xd{left:196.546667pt;}
.x9{left:234.120000pt;}
.x41{left:239.426667pt;}
.x1f{left:240.866667pt;}
.xe{left:243.293333pt;}
.x5b{left:253.986667pt;}
.x1e{left:264.025333pt;}
.xf{left:269.693333pt;}
.x30{left:271.586667pt;}
.x1c{left:278.146667pt;}
.x44{left:287.906667pt;}
.x10{left:303.133333pt;}
.x45{left:312.226667pt;}
.x21{left:313.346667pt;}
.x5c{left:326.626667pt;}
.x46{left:338.146667pt;}
.x47{left:362.466667pt;}
.x42{left:390.466667pt;}
.x17{left:395.306667pt;}
.x32{left:397.706667pt;}
.x12{left:400.426667pt;}
.xa{left:407.306667pt;}
.xb{left:411.293333pt;}
.x49{left:418.506667pt;}
.x7{left:438.186667pt;}
.x4a{left:442.666667pt;}
.x3{left:463.306667pt;}
.x5e{left:465.386667pt;}
.x4b{left:466.986667pt;}
.x24{left:468.106667pt;}
.x4d{left:493.866667pt;}
.x1d{left:504.106667pt;}
.x11{left:510.213333pt;}
.x4f{left:516.106667pt;}
.x57{left:518.186667pt;}
.x26{left:540.906667pt;}
.x58{left:542.506667pt;}
.x34{left:545.066667pt;}
.x1a{left:564.092000pt;}
.x51{left:566.693333pt;}
.x61{left:582.213333pt;}
.x52{left:593.733333pt;}
.x27{left:600.133333pt;}
.x53{left:618.053333pt;}
.x62{left:630.213333pt;}
.x54{left:642.213333pt;}
.x5f{left:655.013333pt;}
.x55{left:664.933333pt;}
.x59{left:669.253333pt;}
}




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