
    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_9dc97777275d1b18a3a227e6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_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_dc256998c17102037b37d31c.woff2')format("woff");}.ff5{font-family:ff5;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: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_5f15e339668c476d5b6bbb2f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941895;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_ea80bfee99691db61cb4c634.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_9f30ffad916ef6e61c33633c.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_245e197eabbf7e3c263fd396.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_433c8e8f8722d273e3be8906.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.205566;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_22c2ea3ad619621a431dbfbf.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_51126a92b3b24fc14b4a76a5.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_80c35aeee72b7bf54c3b7f25.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.769531;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_50c50f2d421435217838cd3c.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_23ec1cd63aa8dcba2197e9e2.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_fddff42da0f862893f1e478a.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_530b6c0a3837da1933134aae.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.959473;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_dc7b37aca528a636155fbb84.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_699b1963557016d41915be3e.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_e8d2c9e6df5ca621745ea04f.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_feaecbe35dd1dc04fdd4823b.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_c550d9ae7bf094ab1ecf4067.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_8a86f917578fe9c7f126faf6.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.205566;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);}
.v3{vertical-align:-20.880000px;}
.v2{vertical-align:-18.180000px;}
.v6{vertical-align:-15.120000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.880000px;}
.v4{vertical-align:15.120000px;}
.v1{vertical-align:18.180000px;}
.ls1f{letter-spacing:-0.900000px;}
.lsd{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.334200px;}
.ls16{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.270000px;}
.ls1b{letter-spacing:-0.252000px;}
.ls17{letter-spacing:-0.180000px;}
.ls19{letter-spacing:-0.162000px;}
.ls14{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.137400px;}
.ls11{letter-spacing:-0.097800px;}
.lsc{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.015120px;}
.ls6{letter-spacing:0.031680px;}
.ls1c{letter-spacing:0.036000px;}
.ls8{letter-spacing:0.052560px;}
.ls1a{letter-spacing:0.054000px;}
.ls5{letter-spacing:0.090000px;}
.ls9{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.252000px;}
.ls4{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.302400px;}
.ls7{letter-spacing:0.311040px;}
.ls0{letter-spacing:0.324000px;}
.ls10{letter-spacing:0.385800px;}
.ls2a{letter-spacing:0.450000px;}
.ls1d{letter-spacing:0.540000px;}
.ls29{letter-spacing:0.558000px;}
.ls1e{letter-spacing:0.612000px;}
.ls2{letter-spacing:0.670320px;}
.ls27{letter-spacing:0.756000px;}
.ls26{letter-spacing:0.810000px;}
.lsb{letter-spacing:0.900000px;}
.ls25{letter-spacing:0.936000px;}
.ls12{letter-spacing:1.080000px;}
.ls22{letter-spacing:1.242000px;}
.ls21{letter-spacing:1.278000px;}
.ls20{letter-spacing:1.350000px;}
.ls24{letter-spacing:1.458000px;}
.ls23{letter-spacing:1.476000px;}
.ls28{letter-spacing:1.548000px;}
.ls2b{letter-spacing:1.620000px;}
.ls2c{letter-spacing:1.674000px;}
.ls13{letter-spacing:1.728000px;}
.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;}
}
.ws4{word-spacing:-20.437920px;}
.ws2{word-spacing:-16.560000px;}
.wsf{word-spacing:-15.966720px;}
.ws3{word-spacing:-15.840000px;}
.ws27{word-spacing:-15.390000px;}
.ws25{word-spacing:-15.336000px;}
.ws23{word-spacing:-15.264000px;}
.ws8{word-spacing:-14.992560px;}
.wsc{word-spacing:-14.958600px;}
.ws7{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.802600px;}
.ws26{word-spacing:-14.652000px;}
.ws1f{word-spacing:-14.616000px;}
.wsb{word-spacing:-14.572800px;}
.ws20{word-spacing:-14.526000px;}
.ws21{word-spacing:-14.472000px;}
.ws1e{word-spacing:-14.364000px;}
.ws24{word-spacing:-14.256000px;}
.wsa{word-spacing:-14.238600px;}
.ws22{word-spacing:-13.950000px;}
.ws5{word-spacing:-13.716000px;}
.ws1b{word-spacing:-13.464000px;}
.ws15{word-spacing:-13.302000px;}
.ws13{word-spacing:-13.266000px;}
.ws0{word-spacing:-13.147200px;}
.ws1a{word-spacing:-13.068000px;}
.wse{word-spacing:-13.049400px;}
.ws11{word-spacing:-13.014000px;}
.ws12{word-spacing:-12.870000px;}
.ws18{word-spacing:-12.852000px;}
.ws16{word-spacing:-12.834000px;}
.ws17{word-spacing:-12.744000px;}
.ws14{word-spacing:-12.726000px;}
.ws10{word-spacing:-9.756000px;}
.ws6{word-spacing:-9.720000px;}
.ws1{word-spacing:-9.576000px;}
.ws1c{word-spacing:-9.288000px;}
.ws1d{word-spacing:-9.144000px;}
.ws19{word-spacing:-8.676000px;}
.wsd{word-spacing:0.000000px;}
._7{margin-left:-2.580000px;}
._1{margin-left:-1.296000px;}
._0{width:1.169040px;}
._8{width:2.308320px;}
._6{width:3.424320px;}
._5{width:4.438080px;}
._4{width:5.535360px;}
._9{width:7.290000px;}
._a{width:8.436000px;}
._1a{width:9.450000px;}
._b{width:10.476000px;}
._c{width:11.660880px;}
._17{width:14.436960px;}
._e{width:15.492960px;}
._3{width:16.511040px;}
._2{width:17.807040px;}
._18{width:19.440000px;}
._19{width:20.628000px;}
._1d{width:22.158000px;}
._f{width:23.166000px;}
._23{width:24.300960px;}
._29{width:25.357920px;}
._16{width:26.514000px;}
._24{width:27.702000px;}
._25{width:29.214000px;}
._10{width:30.240000px;}
._11{width:31.536000px;}
._21{width:32.634960px;}
._22{width:33.910080px;}
._27{width:35.032800px;}
._2f{width:36.546000px;}
._d{width:38.070000px;}
._13{width:40.068000px;}
._2d{width:41.094000px;}
._2a{width:42.228000px;}
._2e{width:44.010000px;}
._20{width:45.846000px;}
._26{width:46.980000px;}
._2b{width:48.114000px;}
._31{width:49.647840px;}
._30{width:50.695680px;}
._1c{width:52.398000px;}
._1b{width:53.460000px;}
._12{width:54.594000px;}
._37{width:56.705760px;}
._3c{width:57.763920px;}
._14{width:62.586000px;}
._15{width:63.990000px;}
._38{width:65.129760px;}
._35{width:67.578720px;}
._2c{width:69.822000px;}
._3b{width:80.527680px;}
._3a{width:81.742800px;}
._34{width:85.810800px;}
._1e{width:87.210000px;}
._1f{width:88.452000px;}
._39{width:90.636720px;}
._28{width:95.785680px;}
._33{width:125.267280px;}
._32{width:126.587520px;}
._36{width:135.602640px;}
.fc8{color:transparent;}
.fc6{color:rgb(79,129,189);}
.fc7{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);}
.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;}
.y4d{bottom:-18.390000px;}
.y0{bottom:0.000000px;}
.yf{bottom:1.440000px;}
.y35{bottom:1.605000px;}
.y13{bottom:1.620000px;}
.y1a{bottom:1.980000px;}
.y25{bottom:2.340000px;}
.y4c{bottom:2.850000px;}
.y1c{bottom:3.060000px;}
.y4f{bottom:3.420000px;}
.y22{bottom:3.600000px;}
.y20{bottom:4.320000px;}
.yd8{bottom:4.665000px;}
.y1e{bottom:4.680000px;}
.yd6{bottom:4.845000px;}
.ye3{bottom:4.860000px;}
.ye0{bottom:4.890000px;}
.y3c{bottom:6.465000px;}
.y42{bottom:6.510000px;}
.y3a{bottom:6.645000px;}
.y115{bottom:7.740000px;}
.y18c{bottom:7.905000px;}
.y113{bottom:7.920000px;}
.y119{bottom:9.180000px;}
.y2{bottom:9.720000px;}
.y39{bottom:10.425000px;}
.y143{bottom:10.800000px;}
.y33{bottom:10.965000px;}
.y16a{bottom:10.980000px;}
.y52{bottom:11.700000px;}
.y53{bottom:13.680000px;}
.y11{bottom:13.860000px;}
.y18{bottom:14.040000px;}
.y9{bottom:14.400000px;}
.y37{bottom:16.365000px;}
.y54{bottom:16.560000px;}
.yd{bottom:17.640000px;}
.y4b{bottom:27.330000px;}
.y118{bottom:30.780000px;}
.y169{bottom:33.840000px;}
.y142{bottom:33.870000px;}
.y32{bottom:34.005000px;}
.y171{bottom:34.020000px;}
.y8{bottom:45.540000px;}
.y17{bottom:47.340000px;}
.y55{bottom:47.520000px;}
.y4a{bottom:50.550000px;}
.yc{bottom:53.280000px;}
.y31{bottom:57.045000px;}
.y3{bottom:58.320000px;}
.y51{bottom:63.720000px;}
.y16{bottom:70.200000px;}
.y49{bottom:73.590000px;}
.y1{bottom:74.520000px;}
.y7{bottom:76.680000px;}
.y30{bottom:79.950000px;}
.y48{bottom:97.350000px;}
.y2f{bottom:102.990000px;}
.y15{bottom:103.500000px;}
.y5{bottom:107.640000px;}
.y6{bottom:107.820000px;}
.ye6{bottom:114.840000px;}
.y84{bottom:118.620000px;}
.yb3{bottom:119.340000px;}
.y1d6{bottom:120.060000px;}
.y46{bottom:122.940000px;}
.y111{bottom:124.380000px;}
.y1ae{bottom:125.460000px;}
.y2e{bottom:126.030000px;}
.y16d{bottom:130.140000px;}
.y165{bottom:130.320000px;}
.y180{bottom:130.860000px;}
.y13e{bottom:135.360000px;}
.y158{bottom:136.260000px;}
.ye5{bottom:137.160000px;}
.y83{bottom:140.760000px;}
.yb2{bottom:141.660000px;}
.y1d5{bottom:143.820000px;}
.y45{bottom:145.980000px;}
.y128{bottom:147.420000px;}
.y110{bottom:147.600000px;}
.y2d{bottom:149.070000px;}
.y1ad{bottom:149.220000px;}
.ye4{bottom:151.560000px;}
.y164{bottom:153.180000px;}
.y17f{bottom:153.900000px;}
.y13d{bottom:158.400000px;}
.y157{bottom:159.300000px;}
.y82{bottom:163.080000px;}
.yb1{bottom:163.800000px;}
.y1d4{bottom:167.580000px;}
.ye2{bottom:168.480000px;}
.y44{bottom:169.020000px;}
.y127{bottom:170.460000px;}
.y10f{bottom:170.640000px;}
.y2c{bottom:172.110000px;}
.y1ac{bottom:172.980000px;}
.y18e{bottom:173.700000px;}
.y163{bottom:176.220000px;}
.y17e{bottom:176.940000px;}
.y13c{bottom:181.440000px;}
.y156{bottom:182.340000px;}
.y18d{bottom:183.240000px;}
.y81{bottom:185.220000px;}
.ye1{bottom:185.400000px;}
.yb0{bottom:186.120000px;}
.y1d3{bottom:191.520000px;}
.y43{bottom:192.060000px;}
.y126{bottom:193.320000px;}
.y10e{bottom:193.860000px;}
.y2b{bottom:195.150000px;}
.y1ab{bottom:196.740000px;}
.y162{bottom:199.260000px;}
.y17d{bottom:199.980000px;}
.ydf{bottom:202.140000px;}
.y41{bottom:204.120000px;}
.y13b{bottom:204.480000px;}
.y155{bottom:205.380000px;}
.y80{bottom:207.570000px;}
.yaf{bottom:208.290000px;}
.y1d2{bottom:215.310000px;}
.y125{bottom:216.390000px;}
.y10d{bottom:217.110000px;}
.y2a{bottom:218.010000px;}
.yde{bottom:219.105000px;}
.y1aa{bottom:220.530000px;}
.y161{bottom:222.330000px;}
.y17c{bottom:223.050000px;}
.y40{bottom:223.425000px;}
.y13a{bottom:227.370000px;}
.y154{bottom:228.450000px;}
.y18b{bottom:229.185000px;}
.y7f{bottom:229.890000px;}
.yae{bottom:230.610000px;}
.ydd{bottom:236.025000px;}
.y1d1{bottom:239.070000px;}
.y124{bottom:239.430000px;}
.y10c{bottom:240.150000px;}
.y29{bottom:241.050000px;}
.y3f{bottom:242.865000px;}
.y1a9{bottom:244.470000px;}
.y160{bottom:245.370000px;}
.y17b{bottom:246.090000px;}
.y139{bottom:250.410000px;}
.y153{bottom:251.490000px;}
.y7e{bottom:252.030000px;}
.yad{bottom:252.750000px;}
.ydc{bottom:252.945000px;}
.y3e{bottom:262.305000px;}
.y123{bottom:262.470000px;}
.y1d0{bottom:262.830000px;}
.y10b{bottom:263.370000px;}
.y28{bottom:264.090000px;}
.y16c{bottom:268.230000px;}
.y15f{bottom:268.410000px;}
.y17a{bottom:268.950000px;}
.ydb{bottom:269.685000px;}
.y138{bottom:273.450000px;}
.y7d{bottom:274.350000px;}
.yac{bottom:275.070000px;}
.y3d{bottom:281.745000px;}
.y122{bottom:285.510000px;}
.y10a{bottom:286.410000px;}
.y1cf{bottom:286.590000px;}
.yda{bottom:286.605000px;}
.y27{bottom:287.130000px;}
.y15e{bottom:291.270000px;}
.y179{bottom:291.990000px;}
.y7c{bottom:296.490000px;}
.yab{bottom:297.390000px;}
.y3b{bottom:301.185000px;}
.yd9{bottom:303.525000px;}
.y121{bottom:308.550000px;}
.y109{bottom:309.630000px;}
.y1ce{bottom:310.350000px;}
.y15d{bottom:314.310000px;}
.y178{bottom:315.030000px;}
.y1a8{bottom:315.750000px;}
.y7b{bottom:318.810000px;}
.yaa{bottom:319.530000px;}
.y152{bottom:320.430000px;}
.y38{bottom:320.445000px;}
.y120{bottom:331.410000px;}
.y108{bottom:332.670000px;}
.y1cd{bottom:334.110000px;}
.yd7{bottom:337.185000px;}
.y15c{bottom:337.350000px;}
.y177{bottom:338.070000px;}
.y1a7{bottom:339.510000px;}
.y36{bottom:339.885000px;}
.y7a{bottom:340.950000px;}
.ya9{bottom:341.850000px;}
.y137{bottom:342.390000px;}
.y151{bottom:343.470000px;}
.y11f{bottom:354.450000px;}
.yd5{bottom:354.825000px;}
.y107{bottom:355.890000px;}
.y1cc{bottom:357.870000px;}
.y15b{bottom:360.390000px;}
.y176{bottom:361.110000px;}
.y79{bottom:363.270000px;}
.ya8{bottom:363.990000px;}
.y136{bottom:365.430000px;}
.y34{bottom:365.805000px;}
.y150{bottom:366.510000px;}
.y26{bottom:372.465000px;}
.y11e{bottom:377.490000px;}
.y106{bottom:378.930000px;}
.y1cb{bottom:381.630000px;}
.y16b{bottom:383.250000px;}
.y15a{bottom:383.430000px;}
.yd4{bottom:383.970000px;}
.y175{bottom:384.150000px;}
.y78{bottom:385.590000px;}
.ya7{bottom:386.310000px;}
.y1a6{bottom:387.030000px;}
.y135{bottom:388.470000px;}
.y14f{bottom:389.550000px;}
.y11d{bottom:400.530000px;}
.y105{bottom:402.150000px;}
.y1ca{bottom:405.390000px;}
.yd3{bottom:406.290000px;}
.y159{bottom:406.470000px;}
.y174{bottom:407.010000px;}
.y77{bottom:407.730000px;}
.ya6{bottom:408.450000px;}
.y1a5{bottom:410.790000px;}
.y134{bottom:411.510000px;}
.y14e{bottom:412.410000px;}
.y11c{bottom:423.570000px;}
.y104{bottom:425.190000px;}
.y1c9{bottom:429.150000px;}
.yd2{bottom:429.330000px;}
.y76{bottom:430.050000px;}
.ya5{bottom:430.770000px;}
.y133{bottom:434.550000px;}
.y14d{bottom:435.450000px;}
.y11b{bottom:446.475000px;}
.y103{bottom:448.455000px;}
.y75{bottom:452.235000px;}
.yd1{bottom:452.415000px;}
.ya4{bottom:452.955000px;}
.y173{bottom:453.135000px;}
.y18a{bottom:455.295000px;}
.y132{bottom:457.635000px;}
.y1a4{bottom:458.355000px;}
.y14c{bottom:458.535000px;}
.y11a{bottom:466.995000px;}
.y102{bottom:471.495000px;}
.y74{bottom:474.555000px;}
.ya3{bottom:475.275000px;}
.yd0{bottom:475.455000px;}
.y172{bottom:476.175000px;}
.y117{bottom:476.535000px;}
.y1c8{bottom:476.895000px;}
.y131{bottom:480.495000px;}
.y14b{bottom:481.575000px;}
.y1a3{bottom:482.115000px;}
.y168{bottom:487.515000px;}
.y170{bottom:488.235000px;}
.y101{bottom:494.715000px;}
.y73{bottom:496.695000px;}
.ya2{bottom:497.595000px;}
.ycf{bottom:498.495000px;}
.y1c7{bottom:500.655000px;}
.y130{bottom:503.535000px;}
.y14a{bottom:504.615000px;}
.y1a2{bottom:505.875000px;}
.y100{bottom:517.935000px;}
.y72{bottom:519.015000px;}
.y116{bottom:519.555000px;}
.ya1{bottom:519.735000px;}
.yce{bottom:521.535000px;}
.y1c6{bottom:524.415000px;}
.y12f{bottom:526.575000px;}
.y149{bottom:527.655000px;}
.y1a1{bottom:529.815000px;}
.y167{bottom:533.415000px;}
.y16f{bottom:534.315000px;}
.yff{bottom:540.975000px;}
.y71{bottom:541.155000px;}
.ya0{bottom:542.055000px;}
.ycd{bottom:544.575000px;}
.y1c5{bottom:548.175000px;}
.y12e{bottom:549.615000px;}
.y148{bottom:550.515000px;}
.y1a0{bottom:553.575000px;}
.y1ec{bottom:561.855000px;}
.y70{bottom:563.475000px;}
.y9f{bottom:564.195000px;}
.ycc{bottom:567.435000px;}
.y1c4{bottom:571.935000px;}
.y12d{bottom:572.655000px;}
.y147{bottom:573.555000px;}
.y19f{bottom:577.335000px;}
.y6f{bottom:585.795000px;}
.y1eb{bottom:586.155000px;}
.y9e{bottom:586.515000px;}
.yfe{bottom:587.235000px;}
.ycb{bottom:590.475000px;}
.y12c{bottom:595.695000px;}
.y146{bottom:596.595000px;}
.y19e{bottom:601.095000px;}
.y6e{bottom:607.935000px;}
.y9d{bottom:608.655000px;}
.yfd{bottom:610.455000px;}
.y1ea{bottom:610.815000px;}
.yca{bottom:613.515000px;}
.y12b{bottom:618.555000px;}
.y1c3{bottom:619.455000px;}
.y145{bottom:619.635000px;}
.y19d{bottom:624.855000px;}
.y6d{bottom:630.255000px;}
.y9c{bottom:630.975000px;}
.yfc{bottom:633.495000px;}
.y1e9{bottom:635.295000px;}
.yc9{bottom:636.555000px;}
.y12a{bottom:641.595000px;}
.y144{bottom:642.675000px;}
.y1c2{bottom:643.215000px;}
.y19c{bottom:648.615000px;}
.y6c{bottom:652.395000px;}
.y9b{bottom:653.295000px;}
.y141{bottom:654.735000px;}
.yfb{bottom:656.715000px;}
.yc8{bottom:659.595000px;}
.y1e8{bottom:659.775000px;}
.y129{bottom:662.115000px;}
.y1c1{bottom:666.975000px;}
.y24{bottom:671.655000px;}
.y19b{bottom:672.375000px;}
.y6b{bottom:674.715000px;}
.y9a{bottom:675.435000px;}
.yfa{bottom:679.785000px;}
.y23{bottom:681.945000px;}
.yc7{bottom:682.485000px;}
.y1e7{bottom:684.465000px;}
.y189{bottom:688.965000px;}
.y1c0{bottom:690.765000px;}
.y19a{bottom:696.165000px;}
.y6a{bottom:696.885000px;}
.y21{bottom:697.245000px;}
.y99{bottom:697.785000px;}
.y140{bottom:700.665000px;}
.yf9{bottom:703.005000px;}
.yc6{bottom:705.525000px;}
.y1e6{bottom:708.945000px;}
.y188{bottom:710.745000px;}
.y1f{bottom:714.345000px;}
.y1bf{bottom:714.525000px;}
.y114{bottom:716.145000px;}
.y69{bottom:719.205000px;}
.y98{bottom:719.925000px;}
.yf8{bottom:726.045000px;}
.yc5{bottom:728.565000px;}
.y1d{bottom:732.525000px;}
.y1e5{bottom:733.605000px;}
.y187{bottom:733.785000px;}
.y1be{bottom:738.465000px;}
.y68{bottom:741.525000px;}
.y97{bottom:742.245000px;}
.y199{bottom:743.685000px;}
.yf7{bottom:749.265000px;}
.y1b{bottom:749.625000px;}
.yc4{bottom:751.605000px;}
.y166{bottom:753.405000px;}
.y16e{bottom:756.645000px;}
.y1bd{bottom:762.225000px;}
.y67{bottom:763.665000px;}
.y96{bottom:764.385000px;}
.y19{bottom:764.925000px;}
.y198{bottom:767.445000px;}
.yf6{bottom:772.305000px;}
.y14{bottom:773.205000px;}
.yc3{bottom:774.645000px;}
.y186{bottom:779.685000px;}
.y1e4{bottom:779.865000px;}
.y66{bottom:785.985000px;}
.y95{bottom:786.705000px;}
.y197{bottom:791.385000px;}
.yf5{bottom:795.525000px;}
.yc2{bottom:797.685000px;}
.y185{bottom:802.725000px;}
.y1e3{bottom:804.345000px;}
.y65{bottom:808.125000px;}
.y94{bottom:809.025000px;}
.y1bc{bottom:809.745000px;}
.y196{bottom:815.145000px;}
.yf4{bottom:818.565000px;}
.yc1{bottom:820.545000px;}
.y184{bottom:825.765000px;}
.y1e2{bottom:829.005000px;}
.y64{bottom:830.445000px;}
.y93{bottom:831.165000px;}
.y1bb{bottom:833.505000px;}
.y195{bottom:838.905000px;}
.yf3{bottom:841.785000px;}
.yc0{bottom:843.585000px;}
.y183{bottom:848.805000px;}
.y1e1{bottom:852.045000px;}
.y63{bottom:852.585000px;}
.y92{bottom:853.485000px;}
.y1ba{bottom:857.265000px;}
.y194{bottom:862.665000px;}
.yf2{bottom:865.005000px;}
.ybf{bottom:866.625000px;}
.y182{bottom:871.665000px;}
.y62{bottom:874.905000px;}
.y1e0{bottom:875.265000px;}
.y91{bottom:875.625000px;}
.y1b9{bottom:881.025000px;}
.y12{bottom:885.525000px;}
.y193{bottom:886.425000px;}
.yf1{bottom:888.045000px;}
.ybe{bottom:889.665000px;}
.y181{bottom:892.185000px;}
.y10{bottom:894.705000px;}
.y61{bottom:897.225000px;}
.y90{bottom:897.945000px;}
.y1df{bottom:899.925000px;}
.y1b8{bottom:904.785000px;}
.y192{bottom:910.185000px;}
.yf0{bottom:911.310000px;}
.ybd{bottom:912.750000px;}
.y60{bottom:919.410000px;}
.y8f{bottom:920.130000px;}
.ye{bottom:922.650000px;}
.y13f{bottom:924.450000px;}
.yb{bottom:927.870000px;}
.y1b7{bottom:928.590000px;}
.y191{bottom:933.990000px;}
.yef{bottom:934.350000px;}
.y112{bottom:935.610000px;}
.ybc{bottom:935.790000px;}
.y5f{bottom:941.730000px;}
.y8e{bottom:942.450000px;}
.y1de{bottom:948.930000px;}
.y1b6{bottom:952.350000px;}
.yee{bottom:957.570000px;}
.y190{bottom:957.750000px;}
.ybb{bottom:958.650000px;}
.y5e{bottom:963.870000px;}
.y8d{bottom:964.590000px;}
.y1dd{bottom:973.590000px;}
.y1b5{bottom:976.110000px;}
.yed{bottom:980.610000px;}
.y18f{bottom:981.510000px;}
.yba{bottom:981.690000px;}
.y5d{bottom:986.190000px;}
.y8c{bottom:986.910000px;}
.y1dc{bottom:998.070000px;}
.y1b4{bottom:999.870000px;}
.yec{bottom:1003.830000px;}
.yb9{bottom:1004.730000px;}
.y5c{bottom:1008.330000px;}
.y8b{bottom:1009.230000px;}
.ya{bottom:1013.550000px;}
.y1db{bottom:1022.550000px;}
.y1b3{bottom:1023.810000px;}
.yeb{bottom:1026.870000px;}
.yb8{bottom:1027.770000px;}
.y4{bottom:1030.290000px;}
.y5b{bottom:1030.650000px;}
.y8a{bottom:1031.370000px;}
.y47{bottom:1043.280000px;}
.y1da{bottom:1045.770000px;}
.y1b2{bottom:1047.570000px;}
.yea{bottom:1050.090000px;}
.yb7{bottom:1050.810000px;}
.y5a{bottom:1052.790000px;}
.y89{bottom:1053.690000px;}
.y1d9{bottom:1068.990000px;}
.y1b1{bottom:1071.330000px;}
.ye9{bottom:1073.130000px;}
.yb6{bottom:1073.850000px;}
.y59{bottom:1075.110000px;}
.y88{bottom:1075.830000px;}
.y1d8{bottom:1093.470000px;}
.y1b0{bottom:1095.090000px;}
.ye8{bottom:1096.350000px;}
.yb5{bottom:1096.710000px;}
.y58{bottom:1097.430000px;}
.y87{bottom:1098.150000px;}
.y1d7{bottom:1118.130000px;}
.y1af{bottom:1118.850000px;}
.ye7{bottom:1119.390000px;}
.y57{bottom:1119.570000px;}
.yb4{bottom:1119.750000px;}
.y86{bottom:1120.290000px;}
.y85{bottom:1142.610000px;}
.y56{bottom:1142.790000px;}
.y50{bottom:1161.000000px;}
.y4e{bottom:1185.840000px;}
.h2b{height:2.005313px;}
.h9{height:5.205000px;}
.h20{height:6.645000px;}
.h12{height:8.280000px;}
.hd{height:9.180000px;}
.h1c{height:10.290000px;}
.ha{height:12.190430px;}
.h14{height:15.300000px;}
.h21{height:16.543828px;}
.h36{height:16.725000px;}
.h38{height:16.740000px;}
.h35{height:16.905000px;}
.h39{height:16.920000px;}
.h37{height:16.956000px;}
.h16{height:17.100000px;}
.h31{height:17.640000px;}
.h18{height:18.180000px;}
.h27{height:19.245000px;}
.h29{height:19.296000px;}
.h24{height:19.425000px;}
.h13{height:21.055781px;}
.he{height:22.975313px;}
.h2{height:23.938500px;}
.h10{height:23.980781px;}
.h22{height:25.905000px;}
.h25{height:27.071719px;}
.h32{height:27.898500px;}
.hb{height:27.922500px;}
.h23{height:29.145586px;}
.h34{height:34.684453px;}
.h1d{height:35.595703px;}
.h3e{height:38.089687px;}
.h28{height:40.472227px;}
.h26{height:41.610234px;}
.h3d{height:43.005000px;}
.h48{height:44.000156px;}
.h17{height:44.820000px;}
.h11{height:44.860781px;}
.h1a{height:45.695391px;}
.h44{height:45.885000px;}
.h41{height:45.930000px;}
.h4b{height:45.936000px;}
.h47{height:46.065000px;}
.h4c{height:47.698242px;}
.hc{height:48.761719px;}
.h1f{height:49.253906px;}
.h19{height:50.068125px;}
.h3{height:50.597578px;}
.h15{height:53.393555px;}
.h2e{height:54.000000px;}
.h6{height:54.457031px;}
.h30{height:56.084062px;}
.h2f{height:56.160000px;}
.h8{height:57.051211px;}
.h1b{height:59.088867px;}
.h2d{height:63.180000px;}
.h4{height:70.664062px;}
.h7{height:71.265000px;}
.h33{height:72.562500px;}
.hf{height:112.320000px;}
.h2c{height:114.660000px;}
.h5{height:124.590000px;}
.h2a{height:135.756000px;}
.h3c{height:196.590000px;}
.h42{height:217.290000px;}
.h3a{height:219.270000px;}
.h3b{height:219.450000px;}
.h43{height:219.990000px;}
.h46{height:222.330000px;}
.h40{height:223.770000px;}
.h49{height:223.950000px;}
.h4a{height:226.095000px;}
.h3f{height:230.430000px;}
.h45{height:237.090000px;}
.h1e{height:299.175000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:52.189500px;}
.w4{width:101.329500px;}
.w15{width:109.641000px;}
.w16{width:138.585000px;}
.w14{width:146.016000px;}
.w9{width:154.429500px;}
.w3{width:265.155000px;}
.w11{width:280.320000px;}
.w13{width:280.819500px;}
.w8{width:284.415000px;}
.w17{width:324.015000px;}
.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:390.664500px;}
.w2{width:414.424500px;}
.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;}
.x2{left:3.769500px;}
.x16{left:6.465000px;}
.x14{left:17.809500px;}
.x8{left:23.025000px;}
.x2d{left:27.885000px;}
.x18{left:32.565000px;}
.xc{left:38.370000px;}
.x21{left:39.405000px;}
.x23{left:42.825000px;}
.x1d{left:43.905000px;}
.x26{left:46.785000px;}
.x20{left:48.060000px;}
.x1f{left:51.120000px;}
.x29{left:52.590000px;}
.x22{left:54.000000px;}
.x1b{left:55.830000px;}
.x24{left:57.420000px;}
.x25{left:61.380000px;}
.x27{left:65.190000px;}
.x28{left:66.780000px;}
.x2b{left:69.300000px;}
.x2c{left:70.410000px;}
.x2a{left:72.930000px;}
.x1{left:106.786500px;}
.x5{left:108.036000px;}
.x13{left:122.025000px;}
.x19{left:143.445000px;}
.x15{left:164.385000px;}
.x4{left:184.530000px;}
.x6{left:209.385000px;}
.xd{left:221.115000px;}
.x9{left:263.385000px;}
.xe{left:273.705000px;}
.xf{left:303.405000px;}
.x2e{left:324.030000px;}
.x10{left:341.025000px;}
.x1a{left:388.875000px;}
.x17{left:444.720000px;}
.x12{left:450.480000px;}
.xa{left:458.220000px;}
.xb{left:462.705000px;}
.x7{left:499.620000px;}
.x3{left:521.220000px;}
.x1c{left:534.900000px;}
.x11{left:573.990000px;}
.x1e{left:644.550000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v2{vertical-align:-16.160000pt;}
.v6{vertical-align:-13.440000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.560000pt;}
.v4{vertical-align:13.440000pt;}
.v1{vertical-align:16.160000pt;}
.ls1f{letter-spacing:-0.800000pt;}
.lsd{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.297067pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.240000pt;}
.ls1b{letter-spacing:-0.224000pt;}
.ls17{letter-spacing:-0.160000pt;}
.ls19{letter-spacing:-0.144000pt;}
.ls14{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.122133pt;}
.ls11{letter-spacing:-0.086933pt;}
.lsc{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.013440pt;}
.ls6{letter-spacing:0.028160pt;}
.ls1c{letter-spacing:0.032000pt;}
.ls8{letter-spacing:0.046720pt;}
.ls1a{letter-spacing:0.048000pt;}
.ls5{letter-spacing:0.080000pt;}
.ls9{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.224000pt;}
.ls4{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.268800pt;}
.ls7{letter-spacing:0.276480pt;}
.ls0{letter-spacing:0.288000pt;}
.ls10{letter-spacing:0.342933pt;}
.ls2a{letter-spacing:0.400000pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls29{letter-spacing:0.496000pt;}
.ls1e{letter-spacing:0.544000pt;}
.ls2{letter-spacing:0.595840pt;}
.ls27{letter-spacing:0.672000pt;}
.ls26{letter-spacing:0.720000pt;}
.lsb{letter-spacing:0.800000pt;}
.ls25{letter-spacing:0.832000pt;}
.ls12{letter-spacing:0.960000pt;}
.ls22{letter-spacing:1.104000pt;}
.ls21{letter-spacing:1.136000pt;}
.ls20{letter-spacing:1.200000pt;}
.ls24{letter-spacing:1.296000pt;}
.ls23{letter-spacing:1.312000pt;}
.ls28{letter-spacing:1.376000pt;}
.ls2b{letter-spacing:1.440000pt;}
.ls2c{letter-spacing:1.488000pt;}
.ls13{letter-spacing:1.536000pt;}
.ws4{word-spacing:-18.167040pt;}
.ws2{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.192640pt;}
.ws3{word-spacing:-14.080000pt;}
.ws27{word-spacing:-13.680000pt;}
.ws25{word-spacing:-13.632000pt;}
.ws23{word-spacing:-13.568000pt;}
.ws8{word-spacing:-13.326720pt;}
.wsc{word-spacing:-13.296533pt;}
.ws7{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.157867pt;}
.ws26{word-spacing:-13.024000pt;}
.ws1f{word-spacing:-12.992000pt;}
.wsb{word-spacing:-12.953600pt;}
.ws20{word-spacing:-12.912000pt;}
.ws21{word-spacing:-12.864000pt;}
.ws1e{word-spacing:-12.768000pt;}
.ws24{word-spacing:-12.672000pt;}
.wsa{word-spacing:-12.656533pt;}
.ws22{word-spacing:-12.400000pt;}
.ws5{word-spacing:-12.192000pt;}
.ws1b{word-spacing:-11.968000pt;}
.ws15{word-spacing:-11.824000pt;}
.ws13{word-spacing:-11.792000pt;}
.ws0{word-spacing:-11.686400pt;}
.ws1a{word-spacing:-11.616000pt;}
.wse{word-spacing:-11.599467pt;}
.ws11{word-spacing:-11.568000pt;}
.ws12{word-spacing:-11.440000pt;}
.ws18{word-spacing:-11.424000pt;}
.ws16{word-spacing:-11.408000pt;}
.ws17{word-spacing:-11.328000pt;}
.ws14{word-spacing:-11.312000pt;}
.ws10{word-spacing:-8.672000pt;}
.ws6{word-spacing:-8.640000pt;}
.ws1{word-spacing:-8.512000pt;}
.ws1c{word-spacing:-8.256000pt;}
.ws1d{word-spacing:-8.128000pt;}
.ws19{word-spacing:-7.712000pt;}
.wsd{word-spacing:0.000000pt;}
._7{margin-left:-2.293333pt;}
._1{margin-left:-1.152000pt;}
._0{width:1.039147pt;}
._8{width:2.051840pt;}
._6{width:3.043840pt;}
._5{width:3.944960pt;}
._4{width:4.920320pt;}
._9{width:6.480000pt;}
._a{width:7.498667pt;}
._1a{width:8.400000pt;}
._b{width:9.312000pt;}
._c{width:10.365227pt;}
._17{width:12.832853pt;}
._e{width:13.771520pt;}
._3{width:14.676480pt;}
._2{width:15.828480pt;}
._18{width:17.280000pt;}
._19{width:18.336000pt;}
._1d{width:19.696000pt;}
._f{width:20.592000pt;}
._23{width:21.600853pt;}
._29{width:22.540373pt;}
._16{width:23.568000pt;}
._24{width:24.624000pt;}
._25{width:25.968000pt;}
._10{width:26.880000pt;}
._11{width:28.032000pt;}
._21{width:29.008853pt;}
._22{width:30.142293pt;}
._27{width:31.140267pt;}
._2f{width:32.485333pt;}
._d{width:33.840000pt;}
._13{width:35.616000pt;}
._2d{width:36.528000pt;}
._2a{width:37.536000pt;}
._2e{width:39.120000pt;}
._20{width:40.752000pt;}
._26{width:41.760000pt;}
._2b{width:42.768000pt;}
._31{width:44.131413pt;}
._30{width:45.062827pt;}
._1c{width:46.576000pt;}
._1b{width:47.520000pt;}
._12{width:48.528000pt;}
._37{width:50.405120pt;}
._3c{width:51.345707pt;}
._14{width:55.632000pt;}
._15{width:56.880000pt;}
._38{width:57.893120pt;}
._35{width:60.069973pt;}
._2c{width:62.064000pt;}
._3b{width:71.580160pt;}
._3a{width:72.660267pt;}
._34{width:76.276267pt;}
._1e{width:77.520000pt;}
._1f{width:78.624000pt;}
._39{width:80.565973pt;}
._28{width:85.142827pt;}
._33{width:111.348693pt;}
._32{width:112.522240pt;}
._36{width:120.535680pt;}
.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;}
.y4d{bottom:-16.346667pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:1.280000pt;}
.y35{bottom:1.426667pt;}
.y13{bottom:1.440000pt;}
.y1a{bottom:1.760000pt;}
.y25{bottom:2.080000pt;}
.y4c{bottom:2.533333pt;}
.y1c{bottom:2.720000pt;}
.y4f{bottom:3.040000pt;}
.y22{bottom:3.200000pt;}
.y20{bottom:3.840000pt;}
.yd8{bottom:4.146667pt;}
.y1e{bottom:4.160000pt;}
.yd6{bottom:4.306667pt;}
.ye3{bottom:4.320000pt;}
.ye0{bottom:4.346667pt;}
.y3c{bottom:5.746667pt;}
.y42{bottom:5.786667pt;}
.y3a{bottom:5.906667pt;}
.y115{bottom:6.880000pt;}
.y18c{bottom:7.026667pt;}
.y113{bottom:7.040000pt;}
.y119{bottom:8.160000pt;}
.y2{bottom:8.640000pt;}
.y39{bottom:9.266667pt;}
.y143{bottom:9.600000pt;}
.y33{bottom:9.746667pt;}
.y16a{bottom:9.760000pt;}
.y52{bottom:10.400000pt;}
.y53{bottom:12.160000pt;}
.y11{bottom:12.320000pt;}
.y18{bottom:12.480000pt;}
.y9{bottom:12.800000pt;}
.y37{bottom:14.546667pt;}
.y54{bottom:14.720000pt;}
.yd{bottom:15.680000pt;}
.y4b{bottom:24.293333pt;}
.y118{bottom:27.360000pt;}
.y169{bottom:30.080000pt;}
.y142{bottom:30.106667pt;}
.y32{bottom:30.226667pt;}
.y171{bottom:30.240000pt;}
.y8{bottom:40.480000pt;}
.y17{bottom:42.080000pt;}
.y55{bottom:42.240000pt;}
.y4a{bottom:44.933333pt;}
.yc{bottom:47.360000pt;}
.y31{bottom:50.706667pt;}
.y3{bottom:51.840000pt;}
.y51{bottom:56.640000pt;}
.y16{bottom:62.400000pt;}
.y49{bottom:65.413333pt;}
.y1{bottom:66.240000pt;}
.y7{bottom:68.160000pt;}
.y30{bottom:71.066667pt;}
.y48{bottom:86.533333pt;}
.y2f{bottom:91.546667pt;}
.y15{bottom:92.000000pt;}
.y5{bottom:95.680000pt;}
.y6{bottom:95.840000pt;}
.ye6{bottom:102.080000pt;}
.y84{bottom:105.440000pt;}
.yb3{bottom:106.080000pt;}
.y1d6{bottom:106.720000pt;}
.y46{bottom:109.280000pt;}
.y111{bottom:110.560000pt;}
.y1ae{bottom:111.520000pt;}
.y2e{bottom:112.026667pt;}
.y16d{bottom:115.680000pt;}
.y165{bottom:115.840000pt;}
.y180{bottom:116.320000pt;}
.y13e{bottom:120.320000pt;}
.y158{bottom:121.120000pt;}
.ye5{bottom:121.920000pt;}
.y83{bottom:125.120000pt;}
.yb2{bottom:125.920000pt;}
.y1d5{bottom:127.840000pt;}
.y45{bottom:129.760000pt;}
.y128{bottom:131.040000pt;}
.y110{bottom:131.200000pt;}
.y2d{bottom:132.506667pt;}
.y1ad{bottom:132.640000pt;}
.ye4{bottom:134.720000pt;}
.y164{bottom:136.160000pt;}
.y17f{bottom:136.800000pt;}
.y13d{bottom:140.800000pt;}
.y157{bottom:141.600000pt;}
.y82{bottom:144.960000pt;}
.yb1{bottom:145.600000pt;}
.y1d4{bottom:148.960000pt;}
.ye2{bottom:149.760000pt;}
.y44{bottom:150.240000pt;}
.y127{bottom:151.520000pt;}
.y10f{bottom:151.680000pt;}
.y2c{bottom:152.986667pt;}
.y1ac{bottom:153.760000pt;}
.y18e{bottom:154.400000pt;}
.y163{bottom:156.640000pt;}
.y17e{bottom:157.280000pt;}
.y13c{bottom:161.280000pt;}
.y156{bottom:162.080000pt;}
.y18d{bottom:162.880000pt;}
.y81{bottom:164.640000pt;}
.ye1{bottom:164.800000pt;}
.yb0{bottom:165.440000pt;}
.y1d3{bottom:170.240000pt;}
.y43{bottom:170.720000pt;}
.y126{bottom:171.840000pt;}
.y10e{bottom:172.320000pt;}
.y2b{bottom:173.466667pt;}
.y1ab{bottom:174.880000pt;}
.y162{bottom:177.120000pt;}
.y17d{bottom:177.760000pt;}
.ydf{bottom:179.680000pt;}
.y41{bottom:181.440000pt;}
.y13b{bottom:181.760000pt;}
.y155{bottom:182.560000pt;}
.y80{bottom:184.506667pt;}
.yaf{bottom:185.146667pt;}
.y1d2{bottom:191.386667pt;}
.y125{bottom:192.346667pt;}
.y10d{bottom:192.986667pt;}
.y2a{bottom:193.786667pt;}
.yde{bottom:194.760000pt;}
.y1aa{bottom:196.026667pt;}
.y161{bottom:197.626667pt;}
.y17c{bottom:198.266667pt;}
.y40{bottom:198.600000pt;}
.y13a{bottom:202.106667pt;}
.y154{bottom:203.066667pt;}
.y18b{bottom:203.720000pt;}
.y7f{bottom:204.346667pt;}
.yae{bottom:204.986667pt;}
.ydd{bottom:209.800000pt;}
.y1d1{bottom:212.506667pt;}
.y124{bottom:212.826667pt;}
.y10c{bottom:213.466667pt;}
.y29{bottom:214.266667pt;}
.y3f{bottom:215.880000pt;}
.y1a9{bottom:217.306667pt;}
.y160{bottom:218.106667pt;}
.y17b{bottom:218.746667pt;}
.y139{bottom:222.586667pt;}
.y153{bottom:223.546667pt;}
.y7e{bottom:224.026667pt;}
.yad{bottom:224.666667pt;}
.ydc{bottom:224.840000pt;}
.y3e{bottom:233.160000pt;}
.y123{bottom:233.306667pt;}
.y1d0{bottom:233.626667pt;}
.y10b{bottom:234.106667pt;}
.y28{bottom:234.746667pt;}
.y16c{bottom:238.426667pt;}
.y15f{bottom:238.586667pt;}
.y17a{bottom:239.066667pt;}
.ydb{bottom:239.720000pt;}
.y138{bottom:243.066667pt;}
.y7d{bottom:243.866667pt;}
.yac{bottom:244.506667pt;}
.y3d{bottom:250.440000pt;}
.y122{bottom:253.786667pt;}
.y10a{bottom:254.586667pt;}
.y1cf{bottom:254.746667pt;}
.yda{bottom:254.760000pt;}
.y27{bottom:255.226667pt;}
.y15e{bottom:258.906667pt;}
.y179{bottom:259.546667pt;}
.y7c{bottom:263.546667pt;}
.yab{bottom:264.346667pt;}
.y3b{bottom:267.720000pt;}
.yd9{bottom:269.800000pt;}
.y121{bottom:274.266667pt;}
.y109{bottom:275.226667pt;}
.y1ce{bottom:275.866667pt;}
.y15d{bottom:279.386667pt;}
.y178{bottom:280.026667pt;}
.y1a8{bottom:280.666667pt;}
.y7b{bottom:283.386667pt;}
.yaa{bottom:284.026667pt;}
.y152{bottom:284.826667pt;}
.y38{bottom:284.840000pt;}
.y120{bottom:294.586667pt;}
.y108{bottom:295.706667pt;}
.y1cd{bottom:296.986667pt;}
.yd7{bottom:299.720000pt;}
.y15c{bottom:299.866667pt;}
.y177{bottom:300.506667pt;}
.y1a7{bottom:301.786667pt;}
.y36{bottom:302.120000pt;}
.y7a{bottom:303.066667pt;}
.ya9{bottom:303.866667pt;}
.y137{bottom:304.346667pt;}
.y151{bottom:305.306667pt;}
.y11f{bottom:315.066667pt;}
.yd5{bottom:315.400000pt;}
.y107{bottom:316.346667pt;}
.y1cc{bottom:318.106667pt;}
.y15b{bottom:320.346667pt;}
.y176{bottom:320.986667pt;}
.y79{bottom:322.906667pt;}
.ya8{bottom:323.546667pt;}
.y136{bottom:324.826667pt;}
.y34{bottom:325.160000pt;}
.y150{bottom:325.786667pt;}
.y26{bottom:331.080000pt;}
.y11e{bottom:335.546667pt;}
.y106{bottom:336.826667pt;}
.y1cb{bottom:339.226667pt;}
.y16b{bottom:340.666667pt;}
.y15a{bottom:340.826667pt;}
.yd4{bottom:341.306667pt;}
.y175{bottom:341.466667pt;}
.y78{bottom:342.746667pt;}
.ya7{bottom:343.386667pt;}
.y1a6{bottom:344.026667pt;}
.y135{bottom:345.306667pt;}
.y14f{bottom:346.266667pt;}
.y11d{bottom:356.026667pt;}
.y105{bottom:357.466667pt;}
.y1ca{bottom:360.346667pt;}
.yd3{bottom:361.146667pt;}
.y159{bottom:361.306667pt;}
.y174{bottom:361.786667pt;}
.y77{bottom:362.426667pt;}
.ya6{bottom:363.066667pt;}
.y1a5{bottom:365.146667pt;}
.y134{bottom:365.786667pt;}
.y14e{bottom:366.586667pt;}
.y11c{bottom:376.506667pt;}
.y104{bottom:377.946667pt;}
.y1c9{bottom:381.466667pt;}
.yd2{bottom:381.626667pt;}
.y76{bottom:382.266667pt;}
.ya5{bottom:382.906667pt;}
.y133{bottom:386.266667pt;}
.y14d{bottom:387.066667pt;}
.y11b{bottom:396.866667pt;}
.y103{bottom:398.626667pt;}
.y75{bottom:401.986667pt;}
.yd1{bottom:402.146667pt;}
.ya4{bottom:402.626667pt;}
.y173{bottom:402.786667pt;}
.y18a{bottom:404.706667pt;}
.y132{bottom:406.786667pt;}
.y1a4{bottom:407.426667pt;}
.y14c{bottom:407.586667pt;}
.y11a{bottom:415.106667pt;}
.y102{bottom:419.106667pt;}
.y74{bottom:421.826667pt;}
.ya3{bottom:422.466667pt;}
.yd0{bottom:422.626667pt;}
.y172{bottom:423.266667pt;}
.y117{bottom:423.586667pt;}
.y1c8{bottom:423.906667pt;}
.y131{bottom:427.106667pt;}
.y14b{bottom:428.066667pt;}
.y1a3{bottom:428.546667pt;}
.y168{bottom:433.346667pt;}
.y170{bottom:433.986667pt;}
.y101{bottom:439.746667pt;}
.y73{bottom:441.506667pt;}
.ya2{bottom:442.306667pt;}
.ycf{bottom:443.106667pt;}
.y1c7{bottom:445.026667pt;}
.y130{bottom:447.586667pt;}
.y14a{bottom:448.546667pt;}
.y1a2{bottom:449.666667pt;}
.y100{bottom:460.386667pt;}
.y72{bottom:461.346667pt;}
.y116{bottom:461.826667pt;}
.ya1{bottom:461.986667pt;}
.yce{bottom:463.586667pt;}
.y1c6{bottom:466.146667pt;}
.y12f{bottom:468.066667pt;}
.y149{bottom:469.026667pt;}
.y1a1{bottom:470.946667pt;}
.y167{bottom:474.146667pt;}
.y16f{bottom:474.946667pt;}
.yff{bottom:480.866667pt;}
.y71{bottom:481.026667pt;}
.ya0{bottom:481.826667pt;}
.ycd{bottom:484.066667pt;}
.y1c5{bottom:487.266667pt;}
.y12e{bottom:488.546667pt;}
.y148{bottom:489.346667pt;}
.y1a0{bottom:492.066667pt;}
.y1ec{bottom:499.426667pt;}
.y70{bottom:500.866667pt;}
.y9f{bottom:501.506667pt;}
.ycc{bottom:504.386667pt;}
.y1c4{bottom:508.386667pt;}
.y12d{bottom:509.026667pt;}
.y147{bottom:509.826667pt;}
.y19f{bottom:513.186667pt;}
.y6f{bottom:520.706667pt;}
.y1eb{bottom:521.026667pt;}
.y9e{bottom:521.346667pt;}
.yfe{bottom:521.986667pt;}
.ycb{bottom:524.866667pt;}
.y12c{bottom:529.506667pt;}
.y146{bottom:530.306667pt;}
.y19e{bottom:534.306667pt;}
.y6e{bottom:540.386667pt;}
.y9d{bottom:541.026667pt;}
.yfd{bottom:542.626667pt;}
.y1ea{bottom:542.946667pt;}
.yca{bottom:545.346667pt;}
.y12b{bottom:549.826667pt;}
.y1c3{bottom:550.626667pt;}
.y145{bottom:550.786667pt;}
.y19d{bottom:555.426667pt;}
.y6d{bottom:560.226667pt;}
.y9c{bottom:560.866667pt;}
.yfc{bottom:563.106667pt;}
.y1e9{bottom:564.706667pt;}
.yc9{bottom:565.826667pt;}
.y12a{bottom:570.306667pt;}
.y144{bottom:571.266667pt;}
.y1c2{bottom:571.746667pt;}
.y19c{bottom:576.546667pt;}
.y6c{bottom:579.906667pt;}
.y9b{bottom:580.706667pt;}
.y141{bottom:581.986667pt;}
.yfb{bottom:583.746667pt;}
.yc8{bottom:586.306667pt;}
.y1e8{bottom:586.466667pt;}
.y129{bottom:588.546667pt;}
.y1c1{bottom:592.866667pt;}
.y24{bottom:597.026667pt;}
.y19b{bottom:597.666667pt;}
.y6b{bottom:599.746667pt;}
.y9a{bottom:600.386667pt;}
.yfa{bottom:604.253333pt;}
.y23{bottom:606.173333pt;}
.yc7{bottom:606.653333pt;}
.y1e7{bottom:608.413333pt;}
.y189{bottom:612.413333pt;}
.y1c0{bottom:614.013333pt;}
.y19a{bottom:618.813333pt;}
.y6a{bottom:619.453333pt;}
.y21{bottom:619.773333pt;}
.y99{bottom:620.253333pt;}
.y140{bottom:622.813333pt;}
.yf9{bottom:624.893333pt;}
.yc6{bottom:627.133333pt;}
.y1e6{bottom:630.173333pt;}
.y188{bottom:631.773333pt;}
.y1f{bottom:634.973333pt;}
.y1bf{bottom:635.133333pt;}
.y114{bottom:636.573333pt;}
.y69{bottom:639.293333pt;}
.y98{bottom:639.933333pt;}
.yf8{bottom:645.373333pt;}
.yc5{bottom:647.613333pt;}
.y1d{bottom:651.133333pt;}
.y1e5{bottom:652.093333pt;}
.y187{bottom:652.253333pt;}
.y1be{bottom:656.413333pt;}
.y68{bottom:659.133333pt;}
.y97{bottom:659.773333pt;}
.y199{bottom:661.053333pt;}
.yf7{bottom:666.013333pt;}
.y1b{bottom:666.333333pt;}
.yc4{bottom:668.093333pt;}
.y166{bottom:669.693333pt;}
.y16e{bottom:672.573333pt;}
.y1bd{bottom:677.533333pt;}
.y67{bottom:678.813333pt;}
.y96{bottom:679.453333pt;}
.y19{bottom:679.933333pt;}
.y198{bottom:682.173333pt;}
.yf6{bottom:686.493333pt;}
.y14{bottom:687.293333pt;}
.yc3{bottom:688.573333pt;}
.y186{bottom:693.053333pt;}
.y1e4{bottom:693.213333pt;}
.y66{bottom:698.653333pt;}
.y95{bottom:699.293333pt;}
.y197{bottom:703.453333pt;}
.yf5{bottom:707.133333pt;}
.yc2{bottom:709.053333pt;}
.y185{bottom:713.533333pt;}
.y1e3{bottom:714.973333pt;}
.y65{bottom:718.333333pt;}
.y94{bottom:719.133333pt;}
.y1bc{bottom:719.773333pt;}
.y196{bottom:724.573333pt;}
.yf4{bottom:727.613333pt;}
.yc1{bottom:729.373333pt;}
.y184{bottom:734.013333pt;}
.y1e2{bottom:736.893333pt;}
.y64{bottom:738.173333pt;}
.y93{bottom:738.813333pt;}
.y1bb{bottom:740.893333pt;}
.y195{bottom:745.693333pt;}
.yf3{bottom:748.253333pt;}
.yc0{bottom:749.853333pt;}
.y183{bottom:754.493333pt;}
.y1e1{bottom:757.373333pt;}
.y63{bottom:757.853333pt;}
.y92{bottom:758.653333pt;}
.y1ba{bottom:762.013333pt;}
.y194{bottom:766.813333pt;}
.yf2{bottom:768.893333pt;}
.ybf{bottom:770.333333pt;}
.y182{bottom:774.813333pt;}
.y62{bottom:777.693333pt;}
.y1e0{bottom:778.013333pt;}
.y91{bottom:778.333333pt;}
.y1b9{bottom:783.133333pt;}
.y12{bottom:787.133333pt;}
.y193{bottom:787.933333pt;}
.yf1{bottom:789.373333pt;}
.ybe{bottom:790.813333pt;}
.y181{bottom:793.053333pt;}
.y10{bottom:795.293333pt;}
.y61{bottom:797.533333pt;}
.y90{bottom:798.173333pt;}
.y1df{bottom:799.933333pt;}
.y1b8{bottom:804.253333pt;}
.y192{bottom:809.053333pt;}
.yf0{bottom:810.053333pt;}
.ybd{bottom:811.333333pt;}
.y60{bottom:817.253333pt;}
.y8f{bottom:817.893333pt;}
.ye{bottom:820.133333pt;}
.y13f{bottom:821.733333pt;}
.yb{bottom:824.773333pt;}
.y1b7{bottom:825.413333pt;}
.y191{bottom:830.213333pt;}
.yef{bottom:830.533333pt;}
.y112{bottom:831.653333pt;}
.ybc{bottom:831.813333pt;}
.y5f{bottom:837.093333pt;}
.y8e{bottom:837.733333pt;}
.y1de{bottom:843.493333pt;}
.y1b6{bottom:846.533333pt;}
.yee{bottom:851.173333pt;}
.y190{bottom:851.333333pt;}
.ybb{bottom:852.133333pt;}
.y5e{bottom:856.773333pt;}
.y8d{bottom:857.413333pt;}
.y1dd{bottom:865.413333pt;}
.y1b5{bottom:867.653333pt;}
.yed{bottom:871.653333pt;}
.y18f{bottom:872.453333pt;}
.yba{bottom:872.613333pt;}
.y5d{bottom:876.613333pt;}
.y8c{bottom:877.253333pt;}
.y1dc{bottom:887.173333pt;}
.y1b4{bottom:888.773333pt;}
.yec{bottom:892.293333pt;}
.yb9{bottom:893.093333pt;}
.y5c{bottom:896.293333pt;}
.y8b{bottom:897.093333pt;}
.ya{bottom:900.933333pt;}
.y1db{bottom:908.933333pt;}
.y1b3{bottom:910.053333pt;}
.yeb{bottom:912.773333pt;}
.yb8{bottom:913.573333pt;}
.y4{bottom:915.813333pt;}
.y5b{bottom:916.133333pt;}
.y8a{bottom:916.773333pt;}
.y47{bottom:927.360000pt;}
.y1da{bottom:929.573333pt;}
.y1b2{bottom:931.173333pt;}
.yea{bottom:933.413333pt;}
.yb7{bottom:934.053333pt;}
.y5a{bottom:935.813333pt;}
.y89{bottom:936.613333pt;}
.y1d9{bottom:950.213333pt;}
.y1b1{bottom:952.293333pt;}
.ye9{bottom:953.893333pt;}
.yb6{bottom:954.533333pt;}
.y59{bottom:955.653333pt;}
.y88{bottom:956.293333pt;}
.y1d8{bottom:971.973333pt;}
.y1b0{bottom:973.413333pt;}
.ye8{bottom:974.533333pt;}
.yb5{bottom:974.853333pt;}
.y58{bottom:975.493333pt;}
.y87{bottom:976.133333pt;}
.y1d7{bottom:993.893333pt;}
.y1af{bottom:994.533333pt;}
.ye7{bottom:995.013333pt;}
.y57{bottom:995.173333pt;}
.yb4{bottom:995.333333pt;}
.y86{bottom:995.813333pt;}
.y85{bottom:1015.653333pt;}
.y56{bottom:1015.813333pt;}
.y50{bottom:1032.000000pt;}
.y4e{bottom:1054.080000pt;}
.h2b{height:1.782500pt;}
.h9{height:4.626667pt;}
.h20{height:5.906667pt;}
.h12{height:7.360000pt;}
.hd{height:8.160000pt;}
.h1c{height:9.146667pt;}
.ha{height:10.835938pt;}
.h14{height:13.600000pt;}
.h21{height:14.705625pt;}
.h36{height:14.866667pt;}
.h38{height:14.880000pt;}
.h35{height:15.026667pt;}
.h39{height:15.040000pt;}
.h37{height:15.072000pt;}
.h16{height:15.200000pt;}
.h31{height:15.680000pt;}
.h18{height:16.160000pt;}
.h27{height:17.106667pt;}
.h29{height:17.152000pt;}
.h24{height:17.266667pt;}
.h13{height:18.716250pt;}
.he{height:20.422500pt;}
.h2{height:21.278667pt;}
.h10{height:21.316250pt;}
.h22{height:23.026667pt;}
.h25{height:24.063750pt;}
.h32{height:24.798667pt;}
.hb{height:24.820000pt;}
.h23{height:25.907188pt;}
.h34{height:30.830625pt;}
.h1d{height:31.640625pt;}
.h3e{height:33.857500pt;}
.h28{height:35.975313pt;}
.h26{height:36.986875pt;}
.h3d{height:38.226667pt;}
.h48{height:39.111250pt;}
.h17{height:39.840000pt;}
.h11{height:39.876250pt;}
.h1a{height:40.618125pt;}
.h44{height:40.786667pt;}
.h41{height:40.826667pt;}
.h4b{height:40.832000pt;}
.h47{height:40.946667pt;}
.h4c{height:42.398437pt;}
.hc{height:43.343750pt;}
.h1f{height:43.781250pt;}
.h19{height:44.505000pt;}
.h3{height:44.975625pt;}
.h15{height:47.460938pt;}
.h2e{height:48.000000pt;}
.h6{height:48.406250pt;}
.h30{height:49.852500pt;}
.h2f{height:49.920000pt;}
.h8{height:50.712187pt;}
.h1b{height:52.523438pt;}
.h2d{height:56.160000pt;}
.h4{height:62.812500pt;}
.h7{height:63.346667pt;}
.h33{height:64.500000pt;}
.hf{height:99.840000pt;}
.h2c{height:101.920000pt;}
.h5{height:110.746667pt;}
.h2a{height:120.672000pt;}
.h3c{height:174.746667pt;}
.h42{height:193.146667pt;}
.h3a{height:194.906667pt;}
.h3b{height:195.066667pt;}
.h43{height:195.546667pt;}
.h46{height:197.626667pt;}
.h40{height:198.906667pt;}
.h49{height:199.066667pt;}
.h4a{height:200.973333pt;}
.h3f{height:204.826667pt;}
.h45{height:210.746667pt;}
.h1e{height:265.933333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:46.390667pt;}
.w4{width:90.070667pt;}
.w15{width:97.458667pt;}
.w16{width:123.186667pt;}
.w14{width:129.792000pt;}
.w9{width:137.270667pt;}
.w3{width:235.693333pt;}
.w11{width:249.173333pt;}
.w13{width:249.617333pt;}
.w8{width:252.813333pt;}
.w17{width:288.013333pt;}
.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:347.257333pt;}
.w2{width:368.377333pt;}
.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;}
.x2{left:3.350667pt;}
.x16{left:5.746667pt;}
.x14{left:15.830667pt;}
.x8{left:20.466667pt;}
.x2d{left:24.786667pt;}
.x18{left:28.946667pt;}
.xc{left:34.106667pt;}
.x21{left:35.026667pt;}
.x23{left:38.066667pt;}
.x1d{left:39.026667pt;}
.x26{left:41.586667pt;}
.x20{left:42.720000pt;}
.x1f{left:45.440000pt;}
.x29{left:46.746667pt;}
.x22{left:48.000000pt;}
.x1b{left:49.626667pt;}
.x24{left:51.040000pt;}
.x25{left:54.560000pt;}
.x27{left:57.946667pt;}
.x28{left:59.360000pt;}
.x2b{left:61.600000pt;}
.x2c{left:62.586667pt;}
.x2a{left:64.826667pt;}
.x1{left:94.921333pt;}
.x5{left:96.032000pt;}
.x13{left:108.466667pt;}
.x19{left:127.506667pt;}
.x15{left:146.120000pt;}
.x4{left:164.026667pt;}
.x6{left:186.120000pt;}
.xd{left:196.546667pt;}
.x9{left:234.120000pt;}
.xe{left:243.293333pt;}
.xf{left:269.693333pt;}
.x2e{left:288.026667pt;}
.x10{left:303.133333pt;}
.x1a{left:345.666667pt;}
.x17{left:395.306667pt;}
.x12{left:400.426667pt;}
.xa{left:407.306667pt;}
.xb{left:411.293333pt;}
.x7{left:444.106667pt;}
.x3{left:463.306667pt;}
.x1c{left:475.466667pt;}
.x11{left:510.213333pt;}
.x1e{left:572.933333pt;}
}




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