
    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_26b2cbe08b75848552d3028b.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_2711c011fcbe9d6cfc7d8f28.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_a30908b2da5945da15a0fd13.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_c3626421abb31bc5bf7d515d.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_2dc9b0728e2dc98aecaf539b.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_c599693ea331542231f36ce7.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_11ec1db7a3658ba7fca918fd.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_bcb9d1e8c6177705f26e52bf.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.972656;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_3f2a20f40c328a8ef4a8c5b0.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_bbfed6248e8a71b934d9e6d7.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_102f6659d6927d168a2aaa43.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_8738959e89202a7b87b38f98.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.952148;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_58be3ef1892e135428b05ec7.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_48cc8080dd59d1c13084bf6c.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_df3a384fae12cc4f7ccea0a3.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_f3311ebe4db2d5e065088bb7.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_8a323e9b998812e9eadebace.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-18.180000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.180000px;}
.lsf{letter-spacing:-1.620000px;}
.ls10{letter-spacing:-1.242000px;}
.lse{letter-spacing:-0.900000px;}
.ls30{letter-spacing:-0.684000px;}
.ls4{letter-spacing:-0.334200px;}
.lsb{letter-spacing:-0.324000px;}
.ls24{letter-spacing:-0.306000px;}
.ls1e{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.270000px;}
.lsa{letter-spacing:-0.180000px;}
.ls1d{letter-spacing:-0.126000px;}
.ls9{letter-spacing:-0.108000px;}
.ls5{letter-spacing:-0.097800px;}
.ls3{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.031680px;}
.ls31{letter-spacing:0.036000px;}
.ls1a{letter-spacing:0.054000px;}
.ls2b{letter-spacing:0.090000px;}
.ls6{letter-spacing:0.108000px;}
.ls26{letter-spacing:0.144000px;}
.ls2f{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.216000px;}
.ls2a{letter-spacing:0.234000px;}
.lsc{letter-spacing:0.252000px;}
.ls1f{letter-spacing:0.288000px;}
.ls29{letter-spacing:0.324000px;}
.ls33{letter-spacing:0.342000px;}
.ls7{letter-spacing:0.414000px;}
.ls2e{letter-spacing:0.468000px;}
.ls2d{letter-spacing:0.522000px;}
.ls21{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.558000px;}
.ls0{letter-spacing:0.670320px;}
.ls18{letter-spacing:0.828000px;}
.ls27{letter-spacing:0.936000px;}
.ls28{letter-spacing:1.260000px;}
.ls25{letter-spacing:1.566000px;}
.ls19{letter-spacing:2.268000px;}
.ls22{letter-spacing:2.844000px;}
.ls1c{letter-spacing:4.266000px;}
.ls17{letter-spacing:5.868000px;}
.ls8{letter-spacing:7.920000px;}
.ls2c{letter-spacing:19.386000px;}
.ls16{letter-spacing:20.268000px;}
.ls13{letter-spacing:21.708000px;}
.ls12{letter-spacing:22.428000px;}
.ls14{letter-spacing:23.868000px;}
.ls15{letter-spacing:25.308000px;}
.ls11{letter-spacing:29.628000px;}
.ls23{letter-spacing:30.204000px;}
.ls1b{letter-spacing:30.906000px;}
.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;}
}
.ws3{word-spacing:-20.437920px;}
.ws2{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.966720px;}
.ws19{word-spacing:-14.580000px;}
.ws6{word-spacing:-14.238600px;}
.ws1a{word-spacing:-13.950000px;}
.ws17{word-spacing:-13.932000px;}
.ws1c{word-spacing:-13.896000px;}
.ws1d{word-spacing:-13.806000px;}
.ws1b{word-spacing:-13.770000px;}
.ws1f{word-spacing:-13.752000px;}
.ws4{word-spacing:-13.716000px;}
.ws18{word-spacing:-13.428000px;}
.ws15{word-spacing:-13.302000px;}
.wse{word-spacing:-13.266000px;}
.ws16{word-spacing:-13.230000px;}
.ws20{word-spacing:-13.158000px;}
.ws0{word-spacing:-13.147200px;}
.wsa{word-spacing:-13.122000px;}
.ws13{word-spacing:-13.068000px;}
.ws8{word-spacing:-13.049400px;}
.ws1e{word-spacing:-13.032000px;}
.ws10{word-spacing:-13.014000px;}
.wsb{word-spacing:-12.906000px;}
.ws12{word-spacing:-12.888000px;}
.wsc{word-spacing:-12.834000px;}
.wsf{word-spacing:-12.744000px;}
.ws14{word-spacing:-12.726000px;}
.wsd{word-spacing:-12.690000px;}
.ws11{word-spacing:-12.474000px;}
.ws5{word-spacing:-9.720000px;}
.ws1{word-spacing:-9.576000px;}
.ws7{word-spacing:0.000000px;}
._29{margin-left:-10.854000px;}
._2a{margin-left:-8.046000px;}
._28{margin-left:-3.888000px;}
._4{margin-left:-2.526000px;}
._1{margin-left:-1.296000px;}
._0{width:1.169040px;}
._6{width:2.706960px;}
._7{width:3.949200px;}
._9{width:5.459760px;}
._5{width:7.336800px;}
._2{width:8.592480px;}
._3{width:9.700560px;}
._a{width:11.612880px;}
._d{width:14.256000px;}
._16{width:15.408960px;}
._24{width:16.451040px;}
._11{width:17.496000px;}
._12{width:18.738000px;}
._13{width:20.160960px;}
._23{width:21.222000px;}
._e{width:22.440960px;}
._8{width:23.549760px;}
._2f{width:24.552720px;}
._18{width:25.713360px;}
._17{width:26.798160px;}
._c{width:27.937920px;}
._b{width:29.325840px;}
._14{width:30.672000px;}
._15{width:31.752000px;}
._f{width:32.778000px;}
._1b{width:33.879840px;}
._25{width:35.128560px;}
._1e{width:36.544800px;}
._1f{width:38.034960px;}
._1d{width:40.016880px;}
._1a{width:41.096880px;}
._3c{width:42.103920px;}
._33{width:43.159200px;}
._1c{width:44.698800px;}
._19{width:45.846000px;}
._2b{width:46.885200px;}
._10{width:48.762000px;}
._26{width:50.160000px;}
._27{width:51.246000px;}
._35{width:52.326000px;}
._36{width:53.838000px;}
._21{width:55.965360px;}
._20{width:56.987760px;}
._38{width:60.534000px;}
._2c{width:62.118000px;}
._34{width:63.918000px;}
._31{width:66.960000px;}
._32{width:68.040000px;}
._3d{width:71.712000px;}
._3e{width:73.026960px;}
._2d{width:74.250000px;}
._2e{width:76.122000px;}
._22{width:79.239840px;}
._3b{width:80.622000px;}
._39{width:84.888000px;}
._3a{width:86.184000px;}
._30{width:91.206000px;}
._37{width:106.542000px;}
._41{width:137.970000px;}
._3f{width:234.090000px;}
._40{width:235.332000px;}
.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;}
.fsf{font-size:51.120000px;}
.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;}
.y4e{bottom:-18.390000px;}
.y42{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.yf{bottom:1.440000px;}
.y36{bottom:1.605000px;}
.y13{bottom:1.620000px;}
.y18{bottom:1.980000px;}
.y24{bottom:2.160000px;}
.y55{bottom:2.340000px;}
.y4d{bottom:2.850000px;}
.y136{bottom:3.045000px;}
.y1a{bottom:3.060000px;}
.y134{bottom:3.225000px;}
.y1f{bottom:3.240000px;}
.y21{bottom:3.420000px;}
.y1e{bottom:4.500000px;}
.y1c{bottom:4.680000px;}
.yba{bottom:5.400000px;}
.y3c{bottom:6.465000px;}
.y3a{bottom:6.645000px;}
.y2{bottom:9.720000px;}
.y38{bottom:10.425000px;}
.y34{bottom:10.965000px;}
.y52{bottom:11.700000px;}
.y53{bottom:13.680000px;}
.y11{bottom:13.860000px;}
.y16{bottom:14.040000px;}
.y9{bottom:14.400000px;}
.y54{bottom:16.560000px;}
.yd{bottom:17.640000px;}
.y181{bottom:18.360000px;}
.y183{bottom:18.405000px;}
.y17b{bottom:18.540000px;}
.y144{bottom:19.080000px;}
.y130{bottom:19.260000px;}
.y15b{bottom:20.700000px;}
.ybc{bottom:23.040000px;}
.yec{bottom:23.085000px;}
.y4c{bottom:27.330000px;}
.y180{bottom:33.660000px;}
.y186{bottom:33.840000px;}
.y33{bottom:34.005000px;}
.yc1{bottom:40.680000px;}
.yc3{bottom:40.725000px;}
.y15{bottom:42.120000px;}
.y8{bottom:45.540000px;}
.y56{bottom:47.520000px;}
.y4b{bottom:50.550000px;}
.yc{bottom:53.280000px;}
.y32{bottom:57.045000px;}
.y3{bottom:58.320000px;}
.y51{bottom:63.720000px;}
.y4a{bottom:73.590000px;}
.y1{bottom:74.520000px;}
.y7{bottom:76.680000px;}
.y31{bottom:80.130000px;}
.y49{bottom:97.350000px;}
.y30{bottom:102.990000px;}
.y5{bottom:107.640000px;}
.y6{bottom:107.820000px;}
.y1b2{bottom:111.600000px;}
.yb8{bottom:112.860000px;}
.y8b{bottom:113.040000px;}
.y47{bottom:115.920000px;}
.ye5{bottom:118.080000px;}
.y1dd{bottom:120.060000px;}
.y1de{bottom:120.240000px;}
.y2f{bottom:126.030000px;}
.y19f{bottom:126.180000px;}
.y8a{bottom:129.600000px;}
.y108{bottom:130.140000px;}
.y83{bottom:130.320000px;}
.y1ac{bottom:132.840000px;}
.y1b1{bottom:133.920000px;}
.y177{bottom:134.100000px;}
.yb7{bottom:135.720000px;}
.y46{bottom:138.960000px;}
.ye4{bottom:141.120000px;}
.y1dc{bottom:143.820000px;}
.y89{bottom:145.980000px;}
.y19e{bottom:149.040000px;}
.y2e{bottom:149.070000px;}
.y82{bottom:153.180000px;}
.y141{bottom:153.360000px;}
.y1ab{bottom:155.880000px;}
.y1b0{bottom:156.240000px;}
.y176{bottom:157.680000px;}
.yb6{bottom:158.580000px;}
.y45{bottom:162.000000px;}
.y88{bottom:162.540000px;}
.ye3{bottom:164.160000px;}
.y1db{bottom:167.580000px;}
.y19d{bottom:172.080000px;}
.y2d{bottom:172.110000px;}
.y81{bottom:176.220000px;}
.y140{bottom:176.400000px;}
.y1af{bottom:178.380000px;}
.y87{bottom:178.920000px;}
.yb5{bottom:181.440000px;}
.y44{bottom:185.040000px;}
.ye2{bottom:187.200000px;}
.y1da{bottom:191.520000px;}
.y86{bottom:195.120000px;}
.y2c{bottom:195.150000px;}
.y107{bottom:199.080000px;}
.y80{bottom:199.260000px;}
.y13f{bottom:199.440000px;}
.y1ae{bottom:200.700000px;}
.y1aa{bottom:201.780000px;}
.yb4{bottom:204.300000px;}
.y175{bottom:205.380000px;}
.y43{bottom:208.110000px;}
.ye1{bottom:210.090000px;}
.y1d9{bottom:215.310000px;}
.y2b{bottom:218.010000px;}
.y19c{bottom:218.190000px;}
.y41{bottom:220.185000px;}
.y106{bottom:222.150000px;}
.y7f{bottom:222.330000px;}
.y13e{bottom:222.510000px;}
.y1ad{bottom:222.870000px;}
.y85{bottom:223.590000px;}
.y1a9{bottom:224.850000px;}
.yb3{bottom:227.190000px;}
.y174{bottom:229.170000px;}
.ye0{bottom:233.130000px;}
.y1d8{bottom:239.070000px;}
.y40{bottom:239.445000px;}
.y2a{bottom:241.050000px;}
.y19b{bottom:241.230000px;}
.y105{bottom:245.190000px;}
.y7e{bottom:245.370000px;}
.y13d{bottom:245.550000px;}
.y84{bottom:245.910000px;}
.y1a8{bottom:247.890000px;}
.yb2{bottom:250.050000px;}
.y173{bottom:252.930000px;}
.ydf{bottom:256.170000px;}
.y3f{bottom:258.885000px;}
.y1d7{bottom:262.830000px;}
.y29{bottom:264.090000px;}
.y104{bottom:268.230000px;}
.y7d{bottom:268.410000px;}
.y1a7{bottom:270.930000px;}
.yb1{bottom:273.090000px;}
.y172{bottom:276.690000px;}
.y3e{bottom:278.325000px;}
.yde{bottom:279.210000px;}
.y1d6{bottom:286.590000px;}
.y28{bottom:287.130000px;}
.y7c{bottom:291.270000px;}
.y13c{bottom:291.450000px;}
.y1a6{bottom:293.970000px;}
.yb0{bottom:295.950000px;}
.y3d{bottom:297.765000px;}
.y171{bottom:300.450000px;}
.ydd{bottom:302.250000px;}
.y19a{bottom:310.170000px;}
.y27{bottom:310.200000px;}
.y1d5{bottom:310.350000px;}
.y103{bottom:314.130000px;}
.y7b{bottom:314.310000px;}
.y13b{bottom:314.490000px;}
.y1a5{bottom:316.830000px;}
.y3b{bottom:317.205000px;}
.yaf{bottom:318.810000px;}
.y170{bottom:324.210000px;}
.ydc{bottom:325.290000px;}
.y199{bottom:333.210000px;}
.y26{bottom:333.240000px;}
.y1d4{bottom:334.110000px;}
.y39{bottom:336.465000px;}
.y102{bottom:337.170000px;}
.y7a{bottom:337.350000px;}
.y13a{bottom:337.530000px;}
.y1a4{bottom:339.870000px;}
.yae{bottom:341.670000px;}
.y16f{bottom:347.970000px;}
.ydb{bottom:348.150000px;}
.y37{bottom:355.905000px;}
.y198{bottom:356.250000px;}
.y1d3{bottom:357.870000px;}
.y101{bottom:360.210000px;}
.y79{bottom:360.390000px;}
.y139{bottom:360.570000px;}
.y1a3{bottom:362.910000px;}
.yad{bottom:364.530000px;}
.yda{bottom:371.190000px;}
.y16e{bottom:371.730000px;}
.y35{bottom:375.885000px;}
.y197{bottom:379.290000px;}
.y1d2{bottom:381.630000px;}
.y25{bottom:382.545000px;}
.y100{bottom:383.250000px;}
.y78{bottom:383.430000px;}
.y138{bottom:383.610000px;}
.y1a2{bottom:385.950000px;}
.yac{bottom:387.390000px;}
.yd9{bottom:394.230000px;}
.y16d{bottom:395.490000px;}
.y137{bottom:397.845000px;}
.y196{bottom:402.150000px;}
.y1d1{bottom:405.390000px;}
.yff{bottom:406.290000px;}
.y77{bottom:406.470000px;}
.y1a1{bottom:408.990000px;}
.yab{bottom:410.250000px;}
.y135{bottom:413.145000px;}
.yd8{bottom:417.270000px;}
.y16c{bottom:419.250000px;}
.y195{bottom:425.190000px;}
.y133{bottom:428.445000px;}
.y1d0{bottom:429.150000px;}
.y76{bottom:429.330000px;}
.y1a0{bottom:430.590000px;}
.yaa{bottom:433.110000px;}
.yd7{bottom:440.310000px;}
.y16b{bottom:443.055000px;}
.y132{bottom:443.955000px;}
.y194{bottom:448.275000px;}
.yfe{bottom:452.235000px;}
.y75{bottom:452.415000px;}
.y1cf{bottom:453.135000px;}
.ya9{bottom:456.195000px;}
.y12f{bottom:459.975000px;}
.yd6{bottom:463.395000px;}
.y16a{bottom:466.815000px;}
.y193{bottom:471.315000px;}
.yfd{bottom:475.275000px;}
.y74{bottom:475.455000px;}
.y131{bottom:475.995000px;}
.y1ce{bottom:476.895000px;}
.ya8{bottom:479.055000px;}
.yd5{bottom:486.255000px;}
.yfc{bottom:489.675000px;}
.y169{bottom:490.755000px;}
.y192{bottom:494.355000px;}
.y73{bottom:498.495000px;}
.y1cd{bottom:500.655000px;}
.ya7{bottom:501.915000px;}
.y12e{bottom:504.615000px;}
.yfb{bottom:507.315000px;}
.yd4{bottom:509.295000px;}
.y168{bottom:514.515000px;}
.y191{bottom:517.395000px;}
.y72{bottom:521.535000px;}
.y1cc{bottom:524.415000px;}
.ya6{bottom:524.775000px;}
.yfa{bottom:524.955000px;}
.y12d{bottom:527.655000px;}
.yd3{bottom:532.335000px;}
.y167{bottom:537.555000px;}
.y190{bottom:540.255000px;}
.y71{bottom:544.575000px;}
.yd2{bottom:546.735000px;}
.ya5{bottom:547.635000px;}
.y1cb{bottom:548.175000px;}
.y12c{bottom:551.235000px;}
.y117{bottom:551.955000px;}
.yf9{bottom:560.235000px;}
.y18f{bottom:563.295000px;}
.yd1{bottom:564.375000px;}
.y70{bottom:567.435000px;}
.y166{bottom:568.335000px;}
.ya4{bottom:570.495000px;}
.y1ca{bottom:571.935000px;}
.y116{bottom:574.995000px;}
.yf8{bottom:577.875000px;}
.yd0{bottom:582.015000px;}
.y165{bottom:584.895000px;}
.y18e{bottom:586.335000px;}
.y6f{bottom:590.475000px;}
.ya3{bottom:593.355000px;}
.y1c9{bottom:595.695000px;}
.y115{bottom:598.035000px;}
.y12b{bottom:598.755000px;}
.ycf{bottom:599.655000px;}
.y163{bottom:600.915000px;}
.y18d{bottom:609.375000px;}
.yf7{bottom:613.155000px;}
.y6e{bottom:613.515000px;}
.ya2{bottom:616.215000px;}
.yce{bottom:617.295000px;}
.y164{bottom:618.555000px;}
.y1c8{bottom:619.455000px;}
.y114{bottom:621.075000px;}
.y12a{bottom:622.515000px;}
.yf6{bottom:630.795000px;}
.y18c{bottom:632.415000px;}
.ycd{bottom:634.935000px;}
.y6d{bottom:636.555000px;}
.ya1{bottom:639.075000px;}
.y1c7{bottom:643.215000px;}
.y113{bottom:644.115000px;}
.y129{bottom:646.275000px;}
.y162{bottom:647.175000px;}
.yf5{bottom:648.435000px;}
.ycc{bottom:652.575000px;}
.y18b{bottom:655.455000px;}
.y6c{bottom:659.595000px;}
.ya0{bottom:662.115000px;}
.yf4{bottom:666.075000px;}
.y1c6{bottom:666.975000px;}
.y112{bottom:667.155000px;}
.y128{bottom:670.035000px;}
.ycb{bottom:670.215000px;}
.y18a{bottom:678.345000px;}
.y6b{bottom:682.485000px;}
.yf3{bottom:683.745000px;}
.y9f{bottom:685.005000px;}
.yca{bottom:687.885000px;}
.y111{bottom:690.045000px;}
.y1c5{bottom:690.765000px;}
.y189{bottom:692.745000px;}
.y161{bottom:693.105000px;}
.y127{bottom:693.825000px;}
.yf2{bottom:701.385000px;}
.y6a{bottom:705.525000px;}
.y160{bottom:707.505000px;}
.y9e{bottom:707.865000px;}
.y110{bottom:710.565000px;}
.y1c4{bottom:714.525000px;}
.y126{bottom:717.585000px;}
.y10f{bottom:722.265000px;}
.yc9{bottom:723.165000px;}
.y15f{bottom:723.885000px;}
.y188{bottom:724.605000px;}
.y23{bottom:727.845000px;}
.y69{bottom:728.565000px;}
.y9d{bottom:730.725000px;}
.yf1{bottom:736.665000px;}
.y10e{bottom:737.565000px;}
.y22{bottom:737.925000px;}
.y1c3{bottom:738.465000px;}
.y15e{bottom:740.445000px;}
.yc8{bottom:740.805000px;}
.y125{bottom:741.525000px;}
.y68{bottom:751.605000px;}
.y10d{bottom:753.045000px;}
.y20{bottom:753.405000px;}
.y9c{bottom:753.585000px;}
.yf0{bottom:754.305000px;}
.y15d{bottom:756.825000px;}
.yc7{bottom:758.445000px;}
.y1c2{bottom:762.225000px;}
.y124{bottom:765.285000px;}
.y10c{bottom:768.345000px;}
.y1d{bottom:770.325000px;}
.y187{bottom:771.585000px;}
.y15a{bottom:772.845000px;}
.y67{bottom:774.645000px;}
.yc6{bottom:776.085000px;}
.y9b{bottom:776.445000px;}
.y10b{bottom:783.645000px;}
.y1c1{bottom:785.985000px;}
.y1b{bottom:788.685000px;}
.y123{bottom:789.045000px;}
.yef{bottom:789.585000px;}
.y15c{bottom:790.485000px;}
.yc5{bottom:793.725000px;}
.y66{bottom:797.685000px;}
.y10a{bottom:798.945000px;}
.y9a{bottom:799.305000px;}
.y19{bottom:805.785000px;}
.y1c0{bottom:809.745000px;}
.y122{bottom:812.805000px;}
.y109{bottom:815.145000px;}
.y185{bottom:818.745000px;}
.y159{bottom:819.105000px;}
.y65{bottom:820.545000px;}
.y17{bottom:821.085000px;}
.y99{bottom:822.165000px;}
.yee{bottom:824.865000px;}
.yc4{bottom:829.005000px;}
.y14{bottom:829.365000px;}
.y1bf{bottom:833.505000px;}
.y121{bottom:836.565000px;}
.y158{bottom:842.145000px;}
.y64{bottom:843.585000px;}
.y98{bottom:845.025000px;}
.y1be{bottom:857.265000px;}
.yed{bottom:860.145000px;}
.y120{bottom:860.325000px;}
.y157{bottom:865.185000px;}
.y14b{bottom:865.725000px;}
.y184{bottom:865.905000px;}
.y63{bottom:866.625000px;}
.y97{bottom:868.065000px;}
.y1bd{bottom:881.025000px;}
.yc2{bottom:881.925000px;}
.y11f{bottom:884.085000px;}
.y12{bottom:885.525000px;}
.y156{bottom:888.585000px;}
.y14a{bottom:888.765000px;}
.y62{bottom:889.665000px;}
.y96{bottom:890.925000px;}
.y10{bottom:894.705000px;}
.yeb{bottom:895.425000px;}
.y182{bottom:897.765000px;}
.y149{bottom:902.985000px;}
.y1bc{bottom:904.785000px;}
.y11e{bottom:907.845000px;}
.y155{bottom:911.850000px;}
.y61{bottom:912.750000px;}
.y95{bottom:913.830000px;}
.y148{bottom:918.510000px;}
.ye{bottom:922.650000px;}
.yb{bottom:927.870000px;}
.y1ee{bottom:928.050000px;}
.y1bb{bottom:928.590000px;}
.y17f{bottom:929.670000px;}
.yea{bottom:930.750000px;}
.y11d{bottom:931.650000px;}
.y147{bottom:933.810000px;}
.yc0{bottom:934.890000px;}
.y154{bottom:935.250000px;}
.y60{bottom:935.790000px;}
.y94{bottom:936.690000px;}
.y146{bottom:949.110000px;}
.y1e7{bottom:949.290000px;}
.y1ba{bottom:952.350000px;}
.y11c{bottom:955.410000px;}
.y153{bottom:957.210000px;}
.y5f{bottom:958.650000px;}
.y93{bottom:959.550000px;}
.y143{bottom:965.310000px;}
.ye9{bottom:966.030000px;}
.y1e6{bottom:970.890000px;}
.y1b9{bottom:976.110000px;}
.y17e{bottom:976.290000px;}
.y11b{bottom:979.170000px;}
.y152{bottom:979.350000px;}
.y145{bottom:981.330000px;}
.y5e{bottom:981.690000px;}
.y92{bottom:982.410000px;}
.ybf{bottom:987.810000px;}
.y1e5{bottom:992.310000px;}
.y1ed{bottom:995.550000px;}
.y1b8{bottom:999.870000px;}
.ye8{bottom:1002.030000px;}
.y151{bottom:1002.570000px;}
.y11a{bottom:1003.110000px;}
.y5d{bottom:1004.730000px;}
.y17d{bottom:1004.910000px;}
.y91{bottom:1005.270000px;}
.y142{bottom:1009.770000px;}
.ya{bottom:1013.550000px;}
.y1e4{bottom:1013.730000px;}
.y1ec{bottom:1019.850000px;}
.ybe{bottom:1023.090000px;}
.y1b7{bottom:1023.810000px;}
.y150{bottom:1025.970000px;}
.y119{bottom:1026.870000px;}
.y5c{bottom:1027.770000px;}
.y17c{bottom:1027.950000px;}
.y90{bottom:1028.130000px;}
.y4{bottom:1030.290000px;}
.ye7{bottom:1032.810000px;}
.y1e3{bottom:1035.150000px;}
.y17a{bottom:1042.170000px;}
.y48{bottom:1043.280000px;}
.y1eb{bottom:1044.510000px;}
.y1b6{bottom:1047.570000px;}
.y14f{bottom:1049.370000px;}
.y118{bottom:1050.630000px;}
.y5b{bottom:1050.810000px;}
.y8f{bottom:1051.170000px;}
.ye6{bottom:1053.330000px;}
.y1e2{bottom:1056.750000px;}
.ybd{bottom:1058.370000px;}
.y1ea{bottom:1068.990000px;}
.y1b5{bottom:1071.330000px;}
.y14e{bottom:1072.590000px;}
.y178{bottom:1073.670000px;}
.y5a{bottom:1073.850000px;}
.y8e{bottom:1074.030000px;}
.ybb{bottom:1076.010000px;}
.y1e1{bottom:1078.170000px;}
.y179{bottom:1091.310000px;}
.y1e9{bottom:1093.470000px;}
.y1b4{bottom:1095.090000px;}
.y14d{bottom:1095.990000px;}
.y59{bottom:1096.710000px;}
.y8d{bottom:1096.890000px;}
.y1e0{bottom:1099.590000px;}
.yb9{bottom:1112.010000px;}
.y1e8{bottom:1118.130000px;}
.y1b3{bottom:1118.850000px;}
.y14c{bottom:1119.210000px;}
.y58{bottom:1119.750000px;}
.y1df{bottom:1121.190000px;}
.y8c{bottom:1142.610000px;}
.y57{bottom:1142.790000px;}
.y50{bottom:1161.000000px;}
.y4f{bottom:1185.840000px;}
.h2a{height:1.999688px;}
.h9{height:5.205000px;}
.h21{height:6.645000px;}
.h11{height:8.280000px;}
.hd{height:9.180000px;}
.h1e{height:10.080000px;}
.ha{height:12.190430px;}
.h44{height:15.285000px;}
.h35{height:15.298500px;}
.h13{height:15.300000px;}
.h34{height:15.336000px;}
.h43{height:15.465000px;}
.h1c{height:15.480000px;}
.h45{height:15.501000px;}
.h47{height:15.502500px;}
.h22{height:16.543828px;}
.h1a{height:16.920000px;}
.h15{height:17.100000px;}
.h36{height:17.625000px;}
.h2f{height:17.640000px;}
.h3d{height:17.670000px;}
.h17{height:18.360000px;}
.h27{height:19.245000px;}
.h25{height:19.425000px;}
.h23{height:19.965000px;}
.h12{height:21.055781px;}
.he{height:22.975313px;}
.h2{height:23.938500px;}
.h1f{height:27.228516px;}
.h30{height:27.898500px;}
.hb{height:27.922500px;}
.h24{height:29.145586px;}
.h51{height:30.600000px;}
.h4d{height:30.622500px;}
.h4b{height:30.765000px;}
.h4e{height:30.780000px;}
.h46{height:31.305000px;}
.h42{height:31.485000px;}
.h3f{height:31.585078px;}
.h41{height:31.605469px;}
.h4a{height:32.925000px;}
.h49{height:32.940000px;}
.h32{height:34.684453px;}
.h37{height:35.265000px;}
.h3c{height:35.280000px;}
.h40{height:35.302500px;}
.h52{height:36.486211px;}
.h48{height:36.509766px;}
.h33{height:38.664492px;}
.h28{height:40.472227px;}
.h3e{height:40.816406px;}
.h1d{height:40.842773px;}
.h14{height:40.869141px;}
.h26{height:41.493516px;}
.h16{height:44.820000px;}
.h10{height:44.860781px;}
.h1b{height:45.199336px;}
.h19{height:45.695391px;}
.h4c{height:45.885000px;}
.h50{height:45.900000px;}
.h4f{height:46.080000px;}
.hc{height:48.761719px;}
.h18{height:50.068125px;}
.h3{height:50.597578px;}
.h39{height:52.905000px;}
.h3b{height:52.920000px;}
.h3a{height:52.942500px;}
.h2d{height:54.000000px;}
.h6{height:54.457031px;}
.h38{height:55.503491px;}
.h2e{height:56.084062px;}
.hf{height:56.160000px;}
.h8{height:57.051211px;}
.h2c{height:63.180000px;}
.h4{height:70.664062px;}
.h7{height:71.265000px;}
.h31{height:72.562500px;}
.h2b{height:114.660000px;}
.h5{height:124.590000px;}
.h29{height:135.705000px;}
.h20{height:345.300000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1a{width:40.485000px;}
.w19{width:47.145000px;}
.w10{width:52.189500px;}
.w17{width:53.985000px;}
.w31{width:67.485000px;}
.w26{width:67.521000px;}
.w24{width:73.440000px;}
.w35{width:80.136000px;}
.w28{width:81.000000px;}
.w20{width:93.636000px;}
.w25{width:94.489500px;}
.w30{width:94.536000px;}
.w1c{width:96.321000px;}
.w2e{width:97.041000px;}
.w2f{width:98.625000px;}
.w37{width:99.021000px;}
.w23{width:100.281000px;}
.w4{width:101.329500px;}
.w13{width:101.869500px;}
.w2b{width:105.501000px;}
.w1d{width:106.200000px;}
.w21{width:106.905000px;}
.w14{width:110.001000px;}
.w15{width:112.140000px;}
.w36{width:120.405000px;}
.w1b{width:121.489500px;}
.w29{width:128.329500px;}
.w33{width:128.361000px;}
.w1e{width:133.549500px;}
.w32{width:134.989500px;}
.w9{width:154.429500px;}
.w27{width:162.000000px;}
.w2d{width:162.030000px;}
.w22{width:167.055000px;}
.w34{width:172.455000px;}
.w1f{width:173.895000px;}
.w2a{width:178.935000px;}
.w2c{width:263.359500px;}
.w3{width:265.155000px;}
.w11{width:280.320000px;}
.w8{width:304.575000px;}
.wc{width:325.815000px;}
.wf{width:333.555000px;}
.we{width:338.284500px;}
.w12{width:339.315000px;}
.wb{width:349.264500px;}
.w7{width:370.504500px;}
.w2{width:414.424500px;}
.wa{width:520.650000px;}
.w16{width:567.090000px;}
.wd{width:573.660000px;}
.w5{width:575.730000px;}
.w18{width:587.430000px;}
.w6{width:675.090000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x42{left:1.965000px;}
.x2{left:3.769500px;}
.x46{left:4.845000px;}
.x15{left:6.465000px;}
.x38{left:7.740000px;}
.x3f{left:8.985000px;}
.x21{left:10.080000px;}
.x25{left:12.960000px;}
.x26{left:14.400000px;}
.x29{left:15.660000px;}
.x23{left:17.100000px;}
.x3d{left:19.260000px;}
.x24{left:20.509500px;}
.x13{left:22.309500px;}
.x19{left:23.565000px;}
.x3c{left:26.085000px;}
.x34{left:27.525000px;}
.x48{left:28.800000px;}
.x39{left:30.630000px;}
.x17{left:32.565000px;}
.x1c{left:33.660000px;}
.x2c{left:35.820000px;}
.x2f{left:37.110000px;}
.xc{left:38.370000px;}
.x1f{left:39.960000px;}
.x2d{left:41.430000px;}
.x8{left:43.365000px;}
.x1e{left:44.445000px;}
.x1b{left:45.705000px;}
.x1d{left:46.965000px;}
.x2e{left:50.580000px;}
.x36{left:56.910000px;}
.x31{left:67.530000px;}
.x1{left:106.786500px;}
.x5{left:108.036000px;}
.x4a{left:128.556000px;}
.x12{left:130.845000px;}
.x18{left:143.445000px;}
.x14{left:164.385000px;}
.x3a{left:202.545000px;}
.x6{left:209.385000px;}
.x4{left:220.890000px;}
.x2a{left:229.545000px;}
.x3e{left:236.385000px;}
.x30{left:241.605000px;}
.x47{left:243.045000px;}
.x9{left:263.385000px;}
.x3b{left:270.075000px;}
.xd{left:273.705000px;}
.xe{left:303.405000px;}
.x1a{left:319.935000px;}
.x2b{left:325.875000px;}
.x37{left:341.895000px;}
.xf{left:350.745000px;}
.x40{left:371.415000px;}
.x32{left:415.335000px;}
.x16{left:444.720000px;}
.x11{left:450.480000px;}
.xa{left:458.220000px;}
.xb{left:462.705000px;}
.x45{left:465.960000px;}
.x7{left:479.460000px;}
.x4b{left:483.225000px;}
.x49{left:495.660000px;}
.x33{left:509.160000px;}
.x3{left:521.220000px;}
.x41{left:533.460000px;}
.x10{left:573.990000px;}
.x43{left:587.460000px;}
.x35{left:616.080000px;}
.x20{left:675.150000px;}
.x44{left:684.510000px;}
.x27{left:695.490000px;}
.x22{left:729.150000px;}
.x28{left:742.650000px;}
@media print{
.v2{vertical-align:-16.160000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.160000pt;}
.lsf{letter-spacing:-1.440000pt;}
.ls10{letter-spacing:-1.104000pt;}
.lse{letter-spacing:-0.800000pt;}
.ls30{letter-spacing:-0.608000pt;}
.ls4{letter-spacing:-0.297067pt;}
.lsb{letter-spacing:-0.288000pt;}
.ls24{letter-spacing:-0.272000pt;}
.ls1e{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.240000pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls1d{letter-spacing:-0.112000pt;}
.ls9{letter-spacing:-0.096000pt;}
.ls5{letter-spacing:-0.086933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.028160pt;}
.ls31{letter-spacing:0.032000pt;}
.ls1a{letter-spacing:0.048000pt;}
.ls2b{letter-spacing:0.080000pt;}
.ls6{letter-spacing:0.096000pt;}
.ls26{letter-spacing:0.128000pt;}
.ls2f{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.192000pt;}
.ls2a{letter-spacing:0.208000pt;}
.lsc{letter-spacing:0.224000pt;}
.ls1f{letter-spacing:0.256000pt;}
.ls29{letter-spacing:0.288000pt;}
.ls33{letter-spacing:0.304000pt;}
.ls7{letter-spacing:0.368000pt;}
.ls2e{letter-spacing:0.416000pt;}
.ls2d{letter-spacing:0.464000pt;}
.ls21{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.496000pt;}
.ls0{letter-spacing:0.595840pt;}
.ls18{letter-spacing:0.736000pt;}
.ls27{letter-spacing:0.832000pt;}
.ls28{letter-spacing:1.120000pt;}
.ls25{letter-spacing:1.392000pt;}
.ls19{letter-spacing:2.016000pt;}
.ls22{letter-spacing:2.528000pt;}
.ls1c{letter-spacing:3.792000pt;}
.ls17{letter-spacing:5.216000pt;}
.ls8{letter-spacing:7.040000pt;}
.ls2c{letter-spacing:17.232000pt;}
.ls16{letter-spacing:18.016000pt;}
.ls13{letter-spacing:19.296000pt;}
.ls12{letter-spacing:19.936000pt;}
.ls14{letter-spacing:21.216000pt;}
.ls15{letter-spacing:22.496000pt;}
.ls11{letter-spacing:26.336000pt;}
.ls23{letter-spacing:26.848000pt;}
.ls1b{letter-spacing:27.472000pt;}
.ws3{word-spacing:-18.167040pt;}
.ws2{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.192640pt;}
.ws19{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.656533pt;}
.ws1a{word-spacing:-12.400000pt;}
.ws17{word-spacing:-12.384000pt;}
.ws1c{word-spacing:-12.352000pt;}
.ws1d{word-spacing:-12.272000pt;}
.ws1b{word-spacing:-12.240000pt;}
.ws1f{word-spacing:-12.224000pt;}
.ws4{word-spacing:-12.192000pt;}
.ws18{word-spacing:-11.936000pt;}
.ws15{word-spacing:-11.824000pt;}
.wse{word-spacing:-11.792000pt;}
.ws16{word-spacing:-11.760000pt;}
.ws20{word-spacing:-11.696000pt;}
.ws0{word-spacing:-11.686400pt;}
.wsa{word-spacing:-11.664000pt;}
.ws13{word-spacing:-11.616000pt;}
.ws8{word-spacing:-11.599467pt;}
.ws1e{word-spacing:-11.584000pt;}
.ws10{word-spacing:-11.568000pt;}
.wsb{word-spacing:-11.472000pt;}
.ws12{word-spacing:-11.456000pt;}
.wsc{word-spacing:-11.408000pt;}
.wsf{word-spacing:-11.328000pt;}
.ws14{word-spacing:-11.312000pt;}
.wsd{word-spacing:-11.280000pt;}
.ws11{word-spacing:-11.088000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws1{word-spacing:-8.512000pt;}
.ws7{word-spacing:0.000000pt;}
._29{margin-left:-9.648000pt;}
._2a{margin-left:-7.152000pt;}
._28{margin-left:-3.456000pt;}
._4{margin-left:-2.245333pt;}
._1{margin-left:-1.152000pt;}
._0{width:1.039147pt;}
._6{width:2.406187pt;}
._7{width:3.510400pt;}
._9{width:4.853120pt;}
._5{width:6.521600pt;}
._2{width:7.637760pt;}
._3{width:8.622720pt;}
._a{width:10.322560pt;}
._d{width:12.672000pt;}
._16{width:13.696853pt;}
._24{width:14.623147pt;}
._11{width:15.552000pt;}
._12{width:16.656000pt;}
._13{width:17.920853pt;}
._23{width:18.864000pt;}
._e{width:19.947520pt;}
._8{width:20.933120pt;}
._2f{width:21.824640pt;}
._18{width:22.856320pt;}
._17{width:23.820587pt;}
._c{width:24.833707pt;}
._b{width:26.067413pt;}
._14{width:27.264000pt;}
._15{width:28.224000pt;}
._f{width:29.136000pt;}
._1b{width:30.115413pt;}
._25{width:31.225387pt;}
._1e{width:32.484267pt;}
._1f{width:33.808853pt;}
._1d{width:35.570560pt;}
._1a{width:36.530560pt;}
._3c{width:37.425707pt;}
._33{width:38.363733pt;}
._1c{width:39.732267pt;}
._19{width:40.752000pt;}
._2b{width:41.675733pt;}
._10{width:43.344000pt;}
._26{width:44.586667pt;}
._27{width:45.552000pt;}
._35{width:46.512000pt;}
._36{width:47.856000pt;}
._21{width:49.746987pt;}
._20{width:50.655787pt;}
._38{width:53.808000pt;}
._2c{width:55.216000pt;}
._34{width:56.816000pt;}
._31{width:59.520000pt;}
._32{width:60.480000pt;}
._3d{width:63.744000pt;}
._3e{width:64.912853pt;}
._2d{width:66.000000pt;}
._2e{width:67.664000pt;}
._22{width:70.435413pt;}
._3b{width:71.664000pt;}
._39{width:75.456000pt;}
._3a{width:76.608000pt;}
._30{width:81.072000pt;}
._37{width:94.704000pt;}
._41{width:122.640000pt;}
._3f{width:208.080000pt;}
._40{width:209.184000pt;}
.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;}
.fsf{font-size:45.440000pt;}
.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;}
.y4e{bottom:-16.346667pt;}
.y42{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:1.280000pt;}
.y36{bottom:1.426667pt;}
.y13{bottom:1.440000pt;}
.y18{bottom:1.760000pt;}
.y24{bottom:1.920000pt;}
.y55{bottom:2.080000pt;}
.y4d{bottom:2.533333pt;}
.y136{bottom:2.706667pt;}
.y1a{bottom:2.720000pt;}
.y134{bottom:2.866667pt;}
.y1f{bottom:2.880000pt;}
.y21{bottom:3.040000pt;}
.y1e{bottom:4.000000pt;}
.y1c{bottom:4.160000pt;}
.yba{bottom:4.800000pt;}
.y3c{bottom:5.746667pt;}
.y3a{bottom:5.906667pt;}
.y2{bottom:8.640000pt;}
.y38{bottom:9.266667pt;}
.y34{bottom:9.746667pt;}
.y52{bottom:10.400000pt;}
.y53{bottom:12.160000pt;}
.y11{bottom:12.320000pt;}
.y16{bottom:12.480000pt;}
.y9{bottom:12.800000pt;}
.y54{bottom:14.720000pt;}
.yd{bottom:15.680000pt;}
.y181{bottom:16.320000pt;}
.y183{bottom:16.360000pt;}
.y17b{bottom:16.480000pt;}
.y144{bottom:16.960000pt;}
.y130{bottom:17.120000pt;}
.y15b{bottom:18.400000pt;}
.ybc{bottom:20.480000pt;}
.yec{bottom:20.520000pt;}
.y4c{bottom:24.293333pt;}
.y180{bottom:29.920000pt;}
.y186{bottom:30.080000pt;}
.y33{bottom:30.226667pt;}
.yc1{bottom:36.160000pt;}
.yc3{bottom:36.200000pt;}
.y15{bottom:37.440000pt;}
.y8{bottom:40.480000pt;}
.y56{bottom:42.240000pt;}
.y4b{bottom:44.933333pt;}
.yc{bottom:47.360000pt;}
.y32{bottom:50.706667pt;}
.y3{bottom:51.840000pt;}
.y51{bottom:56.640000pt;}
.y4a{bottom:65.413333pt;}
.y1{bottom:66.240000pt;}
.y7{bottom:68.160000pt;}
.y31{bottom:71.226667pt;}
.y49{bottom:86.533333pt;}
.y30{bottom:91.546667pt;}
.y5{bottom:95.680000pt;}
.y6{bottom:95.840000pt;}
.y1b2{bottom:99.200000pt;}
.yb8{bottom:100.320000pt;}
.y8b{bottom:100.480000pt;}
.y47{bottom:103.040000pt;}
.ye5{bottom:104.960000pt;}
.y1dd{bottom:106.720000pt;}
.y1de{bottom:106.880000pt;}
.y2f{bottom:112.026667pt;}
.y19f{bottom:112.160000pt;}
.y8a{bottom:115.200000pt;}
.y108{bottom:115.680000pt;}
.y83{bottom:115.840000pt;}
.y1ac{bottom:118.080000pt;}
.y1b1{bottom:119.040000pt;}
.y177{bottom:119.200000pt;}
.yb7{bottom:120.640000pt;}
.y46{bottom:123.520000pt;}
.ye4{bottom:125.440000pt;}
.y1dc{bottom:127.840000pt;}
.y89{bottom:129.760000pt;}
.y19e{bottom:132.480000pt;}
.y2e{bottom:132.506667pt;}
.y82{bottom:136.160000pt;}
.y141{bottom:136.320000pt;}
.y1ab{bottom:138.560000pt;}
.y1b0{bottom:138.880000pt;}
.y176{bottom:140.160000pt;}
.yb6{bottom:140.960000pt;}
.y45{bottom:144.000000pt;}
.y88{bottom:144.480000pt;}
.ye3{bottom:145.920000pt;}
.y1db{bottom:148.960000pt;}
.y19d{bottom:152.960000pt;}
.y2d{bottom:152.986667pt;}
.y81{bottom:156.640000pt;}
.y140{bottom:156.800000pt;}
.y1af{bottom:158.560000pt;}
.y87{bottom:159.040000pt;}
.yb5{bottom:161.280000pt;}
.y44{bottom:164.480000pt;}
.ye2{bottom:166.400000pt;}
.y1da{bottom:170.240000pt;}
.y86{bottom:173.440000pt;}
.y2c{bottom:173.466667pt;}
.y107{bottom:176.960000pt;}
.y80{bottom:177.120000pt;}
.y13f{bottom:177.280000pt;}
.y1ae{bottom:178.400000pt;}
.y1aa{bottom:179.360000pt;}
.yb4{bottom:181.600000pt;}
.y175{bottom:182.560000pt;}
.y43{bottom:184.986667pt;}
.ye1{bottom:186.746667pt;}
.y1d9{bottom:191.386667pt;}
.y2b{bottom:193.786667pt;}
.y19c{bottom:193.946667pt;}
.y41{bottom:195.720000pt;}
.y106{bottom:197.466667pt;}
.y7f{bottom:197.626667pt;}
.y13e{bottom:197.786667pt;}
.y1ad{bottom:198.106667pt;}
.y85{bottom:198.746667pt;}
.y1a9{bottom:199.866667pt;}
.yb3{bottom:201.946667pt;}
.y174{bottom:203.706667pt;}
.ye0{bottom:207.226667pt;}
.y1d8{bottom:212.506667pt;}
.y40{bottom:212.840000pt;}
.y2a{bottom:214.266667pt;}
.y19b{bottom:214.426667pt;}
.y105{bottom:217.946667pt;}
.y7e{bottom:218.106667pt;}
.y13d{bottom:218.266667pt;}
.y84{bottom:218.586667pt;}
.y1a8{bottom:220.346667pt;}
.yb2{bottom:222.266667pt;}
.y173{bottom:224.826667pt;}
.ydf{bottom:227.706667pt;}
.y3f{bottom:230.120000pt;}
.y1d7{bottom:233.626667pt;}
.y29{bottom:234.746667pt;}
.y104{bottom:238.426667pt;}
.y7d{bottom:238.586667pt;}
.y1a7{bottom:240.826667pt;}
.yb1{bottom:242.746667pt;}
.y172{bottom:245.946667pt;}
.y3e{bottom:247.400000pt;}
.yde{bottom:248.186667pt;}
.y1d6{bottom:254.746667pt;}
.y28{bottom:255.226667pt;}
.y7c{bottom:258.906667pt;}
.y13c{bottom:259.066667pt;}
.y1a6{bottom:261.306667pt;}
.yb0{bottom:263.066667pt;}
.y3d{bottom:264.680000pt;}
.y171{bottom:267.066667pt;}
.ydd{bottom:268.666667pt;}
.y19a{bottom:275.706667pt;}
.y27{bottom:275.733333pt;}
.y1d5{bottom:275.866667pt;}
.y103{bottom:279.226667pt;}
.y7b{bottom:279.386667pt;}
.y13b{bottom:279.546667pt;}
.y1a5{bottom:281.626667pt;}
.y3b{bottom:281.960000pt;}
.yaf{bottom:283.386667pt;}
.y170{bottom:288.186667pt;}
.ydc{bottom:289.146667pt;}
.y199{bottom:296.186667pt;}
.y26{bottom:296.213333pt;}
.y1d4{bottom:296.986667pt;}
.y39{bottom:299.080000pt;}
.y102{bottom:299.706667pt;}
.y7a{bottom:299.866667pt;}
.y13a{bottom:300.026667pt;}
.y1a4{bottom:302.106667pt;}
.yae{bottom:303.706667pt;}
.y16f{bottom:309.306667pt;}
.ydb{bottom:309.466667pt;}
.y37{bottom:316.360000pt;}
.y198{bottom:316.666667pt;}
.y1d3{bottom:318.106667pt;}
.y101{bottom:320.186667pt;}
.y79{bottom:320.346667pt;}
.y139{bottom:320.506667pt;}
.y1a3{bottom:322.586667pt;}
.yad{bottom:324.026667pt;}
.yda{bottom:329.946667pt;}
.y16e{bottom:330.426667pt;}
.y35{bottom:334.120000pt;}
.y197{bottom:337.146667pt;}
.y1d2{bottom:339.226667pt;}
.y25{bottom:340.040000pt;}
.y100{bottom:340.666667pt;}
.y78{bottom:340.826667pt;}
.y138{bottom:340.986667pt;}
.y1a2{bottom:343.066667pt;}
.yac{bottom:344.346667pt;}
.yd9{bottom:350.426667pt;}
.y16d{bottom:351.546667pt;}
.y137{bottom:353.640000pt;}
.y196{bottom:357.466667pt;}
.y1d1{bottom:360.346667pt;}
.yff{bottom:361.146667pt;}
.y77{bottom:361.306667pt;}
.y1a1{bottom:363.546667pt;}
.yab{bottom:364.666667pt;}
.y135{bottom:367.240000pt;}
.yd8{bottom:370.906667pt;}
.y16c{bottom:372.666667pt;}
.y195{bottom:377.946667pt;}
.y133{bottom:380.840000pt;}
.y1d0{bottom:381.466667pt;}
.y76{bottom:381.626667pt;}
.y1a0{bottom:382.746667pt;}
.yaa{bottom:384.986667pt;}
.yd7{bottom:391.386667pt;}
.y16b{bottom:393.826667pt;}
.y132{bottom:394.626667pt;}
.y194{bottom:398.466667pt;}
.yfe{bottom:401.986667pt;}
.y75{bottom:402.146667pt;}
.y1cf{bottom:402.786667pt;}
.ya9{bottom:405.506667pt;}
.y12f{bottom:408.866667pt;}
.yd6{bottom:411.906667pt;}
.y16a{bottom:414.946667pt;}
.y193{bottom:418.946667pt;}
.yfd{bottom:422.466667pt;}
.y74{bottom:422.626667pt;}
.y131{bottom:423.106667pt;}
.y1ce{bottom:423.906667pt;}
.ya8{bottom:425.826667pt;}
.yd5{bottom:432.226667pt;}
.yfc{bottom:435.266667pt;}
.y169{bottom:436.226667pt;}
.y192{bottom:439.426667pt;}
.y73{bottom:443.106667pt;}
.y1cd{bottom:445.026667pt;}
.ya7{bottom:446.146667pt;}
.y12e{bottom:448.546667pt;}
.yfb{bottom:450.946667pt;}
.yd4{bottom:452.706667pt;}
.y168{bottom:457.346667pt;}
.y191{bottom:459.906667pt;}
.y72{bottom:463.586667pt;}
.y1cc{bottom:466.146667pt;}
.ya6{bottom:466.466667pt;}
.yfa{bottom:466.626667pt;}
.y12d{bottom:469.026667pt;}
.yd3{bottom:473.186667pt;}
.y167{bottom:477.826667pt;}
.y190{bottom:480.226667pt;}
.y71{bottom:484.066667pt;}
.yd2{bottom:485.986667pt;}
.ya5{bottom:486.786667pt;}
.y1cb{bottom:487.266667pt;}
.y12c{bottom:489.986667pt;}
.y117{bottom:490.626667pt;}
.yf9{bottom:497.986667pt;}
.y18f{bottom:500.706667pt;}
.yd1{bottom:501.666667pt;}
.y70{bottom:504.386667pt;}
.y166{bottom:505.186667pt;}
.ya4{bottom:507.106667pt;}
.y1ca{bottom:508.386667pt;}
.y116{bottom:511.106667pt;}
.yf8{bottom:513.666667pt;}
.yd0{bottom:517.346667pt;}
.y165{bottom:519.906667pt;}
.y18e{bottom:521.186667pt;}
.y6f{bottom:524.866667pt;}
.ya3{bottom:527.426667pt;}
.y1c9{bottom:529.506667pt;}
.y115{bottom:531.586667pt;}
.y12b{bottom:532.226667pt;}
.ycf{bottom:533.026667pt;}
.y163{bottom:534.146667pt;}
.y18d{bottom:541.666667pt;}
.yf7{bottom:545.026667pt;}
.y6e{bottom:545.346667pt;}
.ya2{bottom:547.746667pt;}
.yce{bottom:548.706667pt;}
.y164{bottom:549.826667pt;}
.y1c8{bottom:550.626667pt;}
.y114{bottom:552.066667pt;}
.y12a{bottom:553.346667pt;}
.yf6{bottom:560.706667pt;}
.y18c{bottom:562.146667pt;}
.ycd{bottom:564.386667pt;}
.y6d{bottom:565.826667pt;}
.ya1{bottom:568.066667pt;}
.y1c7{bottom:571.746667pt;}
.y113{bottom:572.546667pt;}
.y129{bottom:574.466667pt;}
.y162{bottom:575.266667pt;}
.yf5{bottom:576.386667pt;}
.ycc{bottom:580.066667pt;}
.y18b{bottom:582.626667pt;}
.y6c{bottom:586.306667pt;}
.ya0{bottom:588.546667pt;}
.yf4{bottom:592.066667pt;}
.y1c6{bottom:592.866667pt;}
.y112{bottom:593.026667pt;}
.y128{bottom:595.586667pt;}
.ycb{bottom:595.746667pt;}
.y18a{bottom:602.973333pt;}
.y6b{bottom:606.653333pt;}
.yf3{bottom:607.773333pt;}
.y9f{bottom:608.893333pt;}
.yca{bottom:611.453333pt;}
.y111{bottom:613.373333pt;}
.y1c5{bottom:614.013333pt;}
.y189{bottom:615.773333pt;}
.y161{bottom:616.093333pt;}
.y127{bottom:616.733333pt;}
.yf2{bottom:623.453333pt;}
.y6a{bottom:627.133333pt;}
.y160{bottom:628.893333pt;}
.y9e{bottom:629.213333pt;}
.y110{bottom:631.613333pt;}
.y1c4{bottom:635.133333pt;}
.y126{bottom:637.853333pt;}
.y10f{bottom:642.013333pt;}
.yc9{bottom:642.813333pt;}
.y15f{bottom:643.453333pt;}
.y188{bottom:644.093333pt;}
.y23{bottom:646.973333pt;}
.y69{bottom:647.613333pt;}
.y9d{bottom:649.533333pt;}
.yf1{bottom:654.813333pt;}
.y10e{bottom:655.613333pt;}
.y22{bottom:655.933333pt;}
.y1c3{bottom:656.413333pt;}
.y15e{bottom:658.173333pt;}
.yc8{bottom:658.493333pt;}
.y125{bottom:659.133333pt;}
.y68{bottom:668.093333pt;}
.y10d{bottom:669.373333pt;}
.y20{bottom:669.693333pt;}
.y9c{bottom:669.853333pt;}
.yf0{bottom:670.493333pt;}
.y15d{bottom:672.733333pt;}
.yc7{bottom:674.173333pt;}
.y1c2{bottom:677.533333pt;}
.y124{bottom:680.253333pt;}
.y10c{bottom:682.973333pt;}
.y1d{bottom:684.733333pt;}
.y187{bottom:685.853333pt;}
.y15a{bottom:686.973333pt;}
.y67{bottom:688.573333pt;}
.yc6{bottom:689.853333pt;}
.y9b{bottom:690.173333pt;}
.y10b{bottom:696.573333pt;}
.y1c1{bottom:698.653333pt;}
.y1b{bottom:701.053333pt;}
.y123{bottom:701.373333pt;}
.yef{bottom:701.853333pt;}
.y15c{bottom:702.653333pt;}
.yc5{bottom:705.533333pt;}
.y66{bottom:709.053333pt;}
.y10a{bottom:710.173333pt;}
.y9a{bottom:710.493333pt;}
.y19{bottom:716.253333pt;}
.y1c0{bottom:719.773333pt;}
.y122{bottom:722.493333pt;}
.y109{bottom:724.573333pt;}
.y185{bottom:727.773333pt;}
.y159{bottom:728.093333pt;}
.y65{bottom:729.373333pt;}
.y17{bottom:729.853333pt;}
.y99{bottom:730.813333pt;}
.yee{bottom:733.213333pt;}
.yc4{bottom:736.893333pt;}
.y14{bottom:737.213333pt;}
.y1bf{bottom:740.893333pt;}
.y121{bottom:743.613333pt;}
.y158{bottom:748.573333pt;}
.y64{bottom:749.853333pt;}
.y98{bottom:751.133333pt;}
.y1be{bottom:762.013333pt;}
.yed{bottom:764.573333pt;}
.y120{bottom:764.733333pt;}
.y157{bottom:769.053333pt;}
.y14b{bottom:769.533333pt;}
.y184{bottom:769.693333pt;}
.y63{bottom:770.333333pt;}
.y97{bottom:771.613333pt;}
.y1bd{bottom:783.133333pt;}
.yc2{bottom:783.933333pt;}
.y11f{bottom:785.853333pt;}
.y12{bottom:787.133333pt;}
.y156{bottom:789.853333pt;}
.y14a{bottom:790.013333pt;}
.y62{bottom:790.813333pt;}
.y96{bottom:791.933333pt;}
.y10{bottom:795.293333pt;}
.yeb{bottom:795.933333pt;}
.y182{bottom:798.013333pt;}
.y149{bottom:802.653333pt;}
.y1bc{bottom:804.253333pt;}
.y11e{bottom:806.973333pt;}
.y155{bottom:810.533333pt;}
.y61{bottom:811.333333pt;}
.y95{bottom:812.293333pt;}
.y148{bottom:816.453333pt;}
.ye{bottom:820.133333pt;}
.yb{bottom:824.773333pt;}
.y1ee{bottom:824.933333pt;}
.y1bb{bottom:825.413333pt;}
.y17f{bottom:826.373333pt;}
.yea{bottom:827.333333pt;}
.y11d{bottom:828.133333pt;}
.y147{bottom:830.053333pt;}
.yc0{bottom:831.013333pt;}
.y154{bottom:831.333333pt;}
.y60{bottom:831.813333pt;}
.y94{bottom:832.613333pt;}
.y146{bottom:843.653333pt;}
.y1e7{bottom:843.813333pt;}
.y1ba{bottom:846.533333pt;}
.y11c{bottom:849.253333pt;}
.y153{bottom:850.853333pt;}
.y5f{bottom:852.133333pt;}
.y93{bottom:852.933333pt;}
.y143{bottom:858.053333pt;}
.ye9{bottom:858.693333pt;}
.y1e6{bottom:863.013333pt;}
.y1b9{bottom:867.653333pt;}
.y17e{bottom:867.813333pt;}
.y11b{bottom:870.373333pt;}
.y152{bottom:870.533333pt;}
.y145{bottom:872.293333pt;}
.y5e{bottom:872.613333pt;}
.y92{bottom:873.253333pt;}
.ybf{bottom:878.053333pt;}
.y1e5{bottom:882.053333pt;}
.y1ed{bottom:884.933333pt;}
.y1b8{bottom:888.773333pt;}
.ye8{bottom:890.693333pt;}
.y151{bottom:891.173333pt;}
.y11a{bottom:891.653333pt;}
.y5d{bottom:893.093333pt;}
.y17d{bottom:893.253333pt;}
.y91{bottom:893.573333pt;}
.y142{bottom:897.573333pt;}
.ya{bottom:900.933333pt;}
.y1e4{bottom:901.093333pt;}
.y1ec{bottom:906.533333pt;}
.ybe{bottom:909.413333pt;}
.y1b7{bottom:910.053333pt;}
.y150{bottom:911.973333pt;}
.y119{bottom:912.773333pt;}
.y5c{bottom:913.573333pt;}
.y17c{bottom:913.733333pt;}
.y90{bottom:913.893333pt;}
.y4{bottom:915.813333pt;}
.ye7{bottom:918.053333pt;}
.y1e3{bottom:920.133333pt;}
.y17a{bottom:926.373333pt;}
.y48{bottom:927.360000pt;}
.y1eb{bottom:928.453333pt;}
.y1b6{bottom:931.173333pt;}
.y14f{bottom:932.773333pt;}
.y118{bottom:933.893333pt;}
.y5b{bottom:934.053333pt;}
.y8f{bottom:934.373333pt;}
.ye6{bottom:936.293333pt;}
.y1e2{bottom:939.333333pt;}
.ybd{bottom:940.773333pt;}
.y1ea{bottom:950.213333pt;}
.y1b5{bottom:952.293333pt;}
.y14e{bottom:953.413333pt;}
.y178{bottom:954.373333pt;}
.y5a{bottom:954.533333pt;}
.y8e{bottom:954.693333pt;}
.ybb{bottom:956.453333pt;}
.y1e1{bottom:958.373333pt;}
.y179{bottom:970.053333pt;}
.y1e9{bottom:971.973333pt;}
.y1b4{bottom:973.413333pt;}
.y14d{bottom:974.213333pt;}
.y59{bottom:974.853333pt;}
.y8d{bottom:975.013333pt;}
.y1e0{bottom:977.413333pt;}
.yb9{bottom:988.453333pt;}
.y1e8{bottom:993.893333pt;}
.y1b3{bottom:994.533333pt;}
.y14c{bottom:994.853333pt;}
.y58{bottom:995.333333pt;}
.y1df{bottom:996.613333pt;}
.y8c{bottom:1015.653333pt;}
.y57{bottom:1015.813333pt;}
.y50{bottom:1032.000000pt;}
.y4f{bottom:1054.080000pt;}
.h2a{height:1.777500pt;}
.h9{height:4.626667pt;}
.h21{height:5.906667pt;}
.h11{height:7.360000pt;}
.hd{height:8.160000pt;}
.h1e{height:8.960000pt;}
.ha{height:10.835938pt;}
.h44{height:13.586667pt;}
.h35{height:13.598667pt;}
.h13{height:13.600000pt;}
.h34{height:13.632000pt;}
.h43{height:13.746667pt;}
.h1c{height:13.760000pt;}
.h45{height:13.778667pt;}
.h47{height:13.780000pt;}
.h22{height:14.705625pt;}
.h1a{height:15.040000pt;}
.h15{height:15.200000pt;}
.h36{height:15.666667pt;}
.h2f{height:15.680000pt;}
.h3d{height:15.706667pt;}
.h17{height:16.320000pt;}
.h27{height:17.106667pt;}
.h25{height:17.266667pt;}
.h23{height:17.746667pt;}
.h12{height:18.716250pt;}
.he{height:20.422500pt;}
.h2{height:21.278667pt;}
.h1f{height:24.203125pt;}
.h30{height:24.798667pt;}
.hb{height:24.820000pt;}
.h24{height:25.907187pt;}
.h51{height:27.200000pt;}
.h4d{height:27.220000pt;}
.h4b{height:27.346667pt;}
.h4e{height:27.360000pt;}
.h46{height:27.826667pt;}
.h42{height:27.986667pt;}
.h3f{height:28.075625pt;}
.h41{height:28.093750pt;}
.h4a{height:29.266667pt;}
.h49{height:29.280000pt;}
.h32{height:30.830625pt;}
.h37{height:31.346667pt;}
.h3c{height:31.360000pt;}
.h40{height:31.380000pt;}
.h52{height:32.432187pt;}
.h48{height:32.453125pt;}
.h33{height:34.368437pt;}
.h28{height:35.975313pt;}
.h3e{height:36.281250pt;}
.h1d{height:36.304688pt;}
.h14{height:36.328125pt;}
.h26{height:36.883125pt;}
.h16{height:39.840000pt;}
.h10{height:39.876250pt;}
.h1b{height:40.177188pt;}
.h19{height:40.618125pt;}
.h4c{height:40.786667pt;}
.h50{height:40.800000pt;}
.h4f{height:40.960000pt;}
.hc{height:43.343750pt;}
.h18{height:44.505000pt;}
.h3{height:44.975625pt;}
.h39{height:47.026667pt;}
.h3b{height:47.040000pt;}
.h3a{height:47.060000pt;}
.h2d{height:48.000000pt;}
.h6{height:48.406250pt;}
.h38{height:49.336436pt;}
.h2e{height:49.852500pt;}
.hf{height:49.920000pt;}
.h8{height:50.712187pt;}
.h2c{height:56.160000pt;}
.h4{height:62.812500pt;}
.h7{height:63.346667pt;}
.h31{height:64.500000pt;}
.h2b{height:101.920000pt;}
.h5{height:110.746667pt;}
.h29{height:120.626667pt;}
.h20{height:306.933333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1a{width:35.986667pt;}
.w19{width:41.906667pt;}
.w10{width:46.390667pt;}
.w17{width:47.986667pt;}
.w31{width:59.986667pt;}
.w26{width:60.018667pt;}
.w24{width:65.280000pt;}
.w35{width:71.232000pt;}
.w28{width:72.000000pt;}
.w20{width:83.232000pt;}
.w25{width:83.990667pt;}
.w30{width:84.032000pt;}
.w1c{width:85.618667pt;}
.w2e{width:86.258667pt;}
.w2f{width:87.666667pt;}
.w37{width:88.018667pt;}
.w23{width:89.138667pt;}
.w4{width:90.070667pt;}
.w13{width:90.550667pt;}
.w2b{width:93.778667pt;}
.w1d{width:94.400000pt;}
.w21{width:95.026667pt;}
.w14{width:97.778667pt;}
.w15{width:99.680000pt;}
.w36{width:107.026667pt;}
.w1b{width:107.990667pt;}
.w29{width:114.070667pt;}
.w33{width:114.098667pt;}
.w1e{width:118.710667pt;}
.w32{width:119.990667pt;}
.w9{width:137.270667pt;}
.w27{width:144.000000pt;}
.w2d{width:144.026667pt;}
.w22{width:148.493333pt;}
.w34{width:153.293333pt;}
.w1f{width:154.573333pt;}
.w2a{width:159.053333pt;}
.w2c{width:234.097333pt;}
.w3{width:235.693333pt;}
.w11{width:249.173333pt;}
.w8{width:270.733333pt;}
.wc{width:289.613333pt;}
.wf{width:296.493333pt;}
.we{width:300.697333pt;}
.w12{width:301.613333pt;}
.wb{width:310.457333pt;}
.w7{width:329.337333pt;}
.w2{width:368.377333pt;}
.wa{width:462.800000pt;}
.w16{width:504.080000pt;}
.wd{width:509.920000pt;}
.w5{width:511.760000pt;}
.w18{width:522.160000pt;}
.w6{width:600.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x42{left:1.746667pt;}
.x2{left:3.350667pt;}
.x46{left:4.306667pt;}
.x15{left:5.746667pt;}
.x38{left:6.880000pt;}
.x3f{left:7.986667pt;}
.x21{left:8.960000pt;}
.x25{left:11.520000pt;}
.x26{left:12.800000pt;}
.x29{left:13.920000pt;}
.x23{left:15.200000pt;}
.x3d{left:17.120000pt;}
.x24{left:18.230667pt;}
.x13{left:19.830667pt;}
.x19{left:20.946667pt;}
.x3c{left:23.186667pt;}
.x34{left:24.466667pt;}
.x48{left:25.600000pt;}
.x39{left:27.226667pt;}
.x17{left:28.946667pt;}
.x1c{left:29.920000pt;}
.x2c{left:31.840000pt;}
.x2f{left:32.986667pt;}
.xc{left:34.106667pt;}
.x1f{left:35.520000pt;}
.x2d{left:36.826667pt;}
.x8{left:38.546667pt;}
.x1e{left:39.506667pt;}
.x1b{left:40.626667pt;}
.x1d{left:41.746667pt;}
.x2e{left:44.960000pt;}
.x36{left:50.586667pt;}
.x31{left:60.026667pt;}
.x1{left:94.921333pt;}
.x5{left:96.032000pt;}
.x4a{left:114.272000pt;}
.x12{left:116.306667pt;}
.x18{left:127.506667pt;}
.x14{left:146.120000pt;}
.x3a{left:180.040000pt;}
.x6{left:186.120000pt;}
.x4{left:196.346667pt;}
.x2a{left:204.040000pt;}
.x3e{left:210.120000pt;}
.x30{left:214.760000pt;}
.x47{left:216.040000pt;}
.x9{left:234.120000pt;}
.x3b{left:240.066667pt;}
.xd{left:243.293333pt;}
.xe{left:269.693333pt;}
.x1a{left:284.386667pt;}
.x2b{left:289.666667pt;}
.x37{left:303.906667pt;}
.xf{left:311.773333pt;}
.x40{left:330.146667pt;}
.x32{left:369.186667pt;}
.x16{left:395.306667pt;}
.x11{left:400.426667pt;}
.xa{left:407.306667pt;}
.xb{left:411.293333pt;}
.x45{left:414.186667pt;}
.x7{left:426.186667pt;}
.x4b{left:429.533333pt;}
.x49{left:440.586667pt;}
.x33{left:452.586667pt;}
.x3{left:463.306667pt;}
.x41{left:474.186667pt;}
.x10{left:510.213333pt;}
.x43{left:522.186667pt;}
.x35{left:547.626667pt;}
.x20{left:600.133333pt;}
.x44{left:608.453333pt;}
.x27{left:618.213333pt;}
.x22{left:648.133333pt;}
.x28{left:660.133333pt;}
}




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