
    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_783896adcf84d554a2c976cd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.062988;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_7d80d6ce28d9b6e699216512.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_ced8a6fce7638a2e18e5b710.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.943848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d7d07ba015c0b93ebd5f918e.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_a9d2daaefc0418985268c96f.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_ab9416292cbf2b29cadc432b.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_404cf4f9bae917fcf0bfbc78.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_dba6d56ee50cc39e9dca20f1.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.166504;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_23ec1cd63aa8dcba2197e9e2.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_51126a92b3b24fc14b4a76a5.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_41899518b1586a770adf2a15.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_a119e4bb9cb1eba995fa5708.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_9f60148ceecf0b2bb353a426.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.166504;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_ccac35784432c1a2310a8eea.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_b464f8100a26814c6c33d8ac.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.957520;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_6542d9bf066f6c27aafd863c.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_ce35b24d3999be22df1a4884.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_bb802fdc0b948be691442360.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_302db080432e95a54ec7721b.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.909180;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_38702ae1091abc74e079a393.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_281cf60a75e8ca9a27a1c258.woff2')format("woff");}.ff19{font-family:ff19;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.vb{vertical-align:15.120000px;}
.va{vertical-align:16.560000px;}
.v1{vertical-align:18.000000px;}
.v7{vertical-align:19.440000px;}
.v6{vertical-align:36.000000px;}
.v5{vertical-align:41.040000px;}
.v9{vertical-align:60.480000px;}
.v8{vertical-align:68.400000px;}
.ls37{letter-spacing:-1.782000px;}
.ls40{letter-spacing:-1.620000px;}
.ls36{letter-spacing:-1.530000px;}
.ls43{letter-spacing:-1.386000px;}
.ls44{letter-spacing:-1.350000px;}
.ls38{letter-spacing:-1.152000px;}
.ls3e{letter-spacing:-1.116000px;}
.ls28{letter-spacing:-0.900000px;}
.ls7{letter-spacing:-0.720000px;}
.ls39{letter-spacing:-0.666000px;}
.ls3f{letter-spacing:-0.630000px;}
.ls23{letter-spacing:-0.324000px;}
.lse{letter-spacing:-0.306000px;}
.lsd{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.270000px;}
.ls20{letter-spacing:-0.234000px;}
.ls6{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.097800px;}
.ls27{letter-spacing:-0.090000px;}
.ls16{letter-spacing:-0.036000px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.031680px;}
.ls1f{letter-spacing:0.054000px;}
.ls1d{letter-spacing:0.108000px;}
.ls15{letter-spacing:0.162000px;}
.lsf{letter-spacing:0.180000px;}
.ls25{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.234000px;}
.ls24{letter-spacing:0.252000px;}
.ls21{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.324000px;}
.ls30{letter-spacing:0.378000px;}
.ls8{letter-spacing:0.385800px;}
.ls9{letter-spacing:0.432000px;}
.ls34{letter-spacing:0.468000px;}
.lsa{letter-spacing:0.540000px;}
.ls1a{letter-spacing:0.630000px;}
.ls1{letter-spacing:0.670320px;}
.ls2{letter-spacing:0.702000px;}
.ls29{letter-spacing:0.756000px;}
.ls2f{letter-spacing:0.774000px;}
.ls31{letter-spacing:0.810000px;}
.ls3d{letter-spacing:0.900000px;}
.ls3c{letter-spacing:1.008000px;}
.ls35{letter-spacing:1.044000px;}
.ls18{letter-spacing:1.062000px;}
.ls41{letter-spacing:1.116000px;}
.ls2c{letter-spacing:1.152000px;}
.ls2a{letter-spacing:1.170000px;}
.ls3{letter-spacing:1.242000px;}
.ls3b{letter-spacing:1.260000px;}
.ls1e{letter-spacing:1.404000px;}
.ls2d{letter-spacing:1.476000px;}
.ls42{letter-spacing:1.620000px;}
.ls2b{letter-spacing:1.674000px;}
.ls33{letter-spacing:1.728000px;}
.ls2e{letter-spacing:1.764000px;}
.lsb{letter-spacing:2.106000px;}
.ls1c{letter-spacing:3.438720px;}
.ls1b{letter-spacing:5.832000px;}
.ls26{letter-spacing:6.426000px;}
.ls32{letter-spacing:10.026000px;}
.ls12{letter-spacing:12.078000px;}
.ls10{letter-spacing:15.030000px;}
.ls11{letter-spacing:15.282000px;}
.ls19{letter-spacing:17.838720px;}
.ls13{letter-spacing:25.992000px;}
.ls14{letter-spacing:28.242000px;}
.ls3a{letter-spacing:33.066000px;}
.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;}
}
.ws5{word-spacing:-20.437920px;}
.ws3{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.966720px;}
.ws4{word-spacing:-15.840000px;}
.ws2c{word-spacing:-15.336000px;}
.ws8{word-spacing:-14.958600px;}
.ws1f{word-spacing:-14.760000px;}
.ws24{word-spacing:-14.724000px;}
.ws25{word-spacing:-14.616000px;}
.ws1e{word-spacing:-14.526000px;}
.ws19{word-spacing:-14.490000px;}
.ws28{word-spacing:-14.472000px;}
.ws1d{word-spacing:-14.418000px;}
.ws2a{word-spacing:-14.274000px;}
.ws1c{word-spacing:-14.184000px;}
.ws18{word-spacing:-14.166000px;}
.ws2b{word-spacing:-14.130000px;}
.ws2d{word-spacing:-14.040000px;}
.ws23{word-spacing:-13.950000px;}
.ws1a{word-spacing:-13.770000px;}
.ws6{word-spacing:-13.716000px;}
.ws29{word-spacing:-13.554000px;}
.ws1b{word-spacing:-13.446000px;}
.ws10{word-spacing:-13.302000px;}
.ws15{word-spacing:-13.266000px;}
.ws16{word-spacing:-13.230000px;}
.ws0{word-spacing:-13.147200px;}
.ws13{word-spacing:-13.068000px;}
.ws22{word-spacing:-13.050000px;}
.wsa{word-spacing:-13.049400px;}
.wsc{word-spacing:-13.014000px;}
.ws17{word-spacing:-12.924000px;}
.ws11{word-spacing:-12.834000px;}
.ws12{word-spacing:-12.744000px;}
.wsd{word-spacing:-12.726000px;}
.wse{word-spacing:-12.708000px;}
.ws14{word-spacing:-12.690000px;}
.ws30{word-spacing:-12.600000px;}
.ws27{word-spacing:-12.384000px;}
.ws2f{word-spacing:-12.366000px;}
.ws2e{word-spacing:-12.330000px;}
.wsf{word-spacing:-11.880000px;}
.ws20{word-spacing:-11.484000px;}
.ws7{word-spacing:-9.720000px;}
.ws1{word-spacing:-9.576000px;}
.ws21{word-spacing:-8.676000px;}
.ws26{word-spacing:-7.560000px;}
.ws2{word-spacing:-7.408800px;}
.ws9{word-spacing:0.000000px;}
._47{margin-left:-3.345840px;}
._5{margin-left:-2.306880px;}
._1{margin-left:-1.296000px;}
._0{width:1.169040px;}
._7{width:2.376000px;}
._b{width:3.651360px;}
._23{width:4.698000px;}
._8{width:5.713680px;}
._c{width:6.774720px;}
._6{width:7.889760px;}
._9{width:9.779760px;}
._a{width:10.866000px;}
._d{width:11.902560px;}
._12{width:14.094000px;}
._15{width:15.498000px;}
._16{width:16.554000px;}
._14{width:18.424320px;}
._e{width:19.461840px;}
._f{width:20.655600px;}
._24{width:21.924000px;}
._21{width:23.220000px;}
._22{width:24.264960px;}
._29{width:25.269120px;}
._13{width:26.298000px;}
._20{width:27.558000px;}
._27{width:28.584960px;}
._1a{width:29.664000px;}
._17{width:30.780000px;}
._18{width:32.418960px;}
._1b{width:33.696000px;}
._4b{width:34.733520px;}
._11{width:35.748000px;}
._1e{width:37.314000px;}
._2{width:38.867040px;}
._4{width:39.985200px;}
._3{width:41.290079px;}
._1f{width:42.807842px;}
._37{width:43.877042px;}
._25{width:44.982000px;}
._26{width:46.062000px;}
._2b{width:48.157680px;}
._2e{width:49.628880px;}
._2d{width:51.000720px;}
._33{width:52.218000px;}
._32{width:54.210000px;}
._19{width:55.944000px;}
._1c{width:56.952000px;}
._1d{width:58.860000px;}
._28{width:60.750000px;}
._3e{width:62.172000px;}
._30{width:63.261600px;}
._2f{width:64.373760px;}
._45{width:66.096720px;}
._2c{width:68.658000px;}
._3d{width:70.385760px;}
._4c{width:71.390160px;}
._2a{width:74.227920px;}
._3b{width:76.032000px;}
._3a{width:78.030000px;}
._3f{width:80.316000px;}
._38{width:81.378000px;}
._39{width:82.416000px;}
._31{width:83.646000px;}
._35{width:90.018000px;}
._34{width:91.044000px;}
._3c{width:92.124000px;}
._44{width:94.352160px;}
._40{width:95.364000px;}
._43{width:99.670800px;}
._41{width:100.818000px;}
._42{width:101.898000px;}
._36{width:178.370400px;}
._4a{width:190.180560px;}
._48{width:192.965760px;}
._49{width:194.497200px;}
._46{width:856.861680px;}
._10{width:1404.960000px;}
.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);}
.fsd{font-size:2.880000px;}
.fs5{font-size:18.000000px;}
.fsb{font-size:23.760000px;}
.fs8{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fsf{font-size:41.760000px;}
.fs10{font-size:45.360000px;}
.fsa{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fse{font-size:74.880000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:88.795869px;}
.fs4{font-size:95.760000px;}
.y4d{bottom:-18.390000px;}
.y0{bottom:0.000000px;}
.yf{bottom:1.260000px;}
.y14{bottom:1.440000px;}
.y39{bottom:1.605000px;}
.y1a{bottom:1.980000px;}
.y25{bottom:2.340000px;}
.y4c{bottom:2.850000px;}
.y119{bottom:3.045000px;}
.y23{bottom:3.060000px;}
.y165{bottom:3.090000px;}
.y13d{bottom:3.105000px;}
.y11b{bottom:3.225000px;}
.y1c{bottom:3.240000px;}
.y4f{bottom:3.420000px;}
.y21{bottom:3.600000px;}
.y1e{bottom:4.500000px;}
.y44{bottom:6.480000px;}
.y3f{bottom:6.645000px;}
.y41{bottom:6.660000px;}
.y175{bottom:7.725000px;}
.y171{bottom:7.740000px;}
.y189{bottom:7.905000px;}
.yb5{bottom:7.920000px;}
.y37{bottom:10.965000px;}
.yb8{bottom:10.980000px;}
.y52{bottom:11.700000px;}
.y12{bottom:12.060000px;}
.y3d{bottom:12.405000px;}
.y53{bottom:13.680000px;}
.y18{bottom:14.040000px;}
.y9{bottom:14.400000px;}
.y2{bottom:14.580000px;}
.yd{bottom:15.480000px;}
.y3b{bottom:16.365000px;}
.y54{bottom:16.560000px;}
.y11f{bottom:18.345000px;}
.y12a{bottom:18.360000px;}
.y16b{bottom:18.540000px;}
.y10d{bottom:19.080000px;}
.y4b{bottom:27.330000px;}
.y16e{bottom:33.705000px;}
.y18a{bottom:33.825000px;}
.y36{bottom:34.005000px;}
.yb7{bottom:34.020000px;}
.y11{bottom:38.385000px;}
.y8{bottom:45.540000px;}
.y17{bottom:47.340000px;}
.y55{bottom:47.520000px;}
.yc{bottom:48.780000px;}
.y4a{bottom:50.550000px;}
.y35{bottom:57.045000px;}
.y3{bottom:58.320000px;}
.y51{bottom:63.720000px;}
.y49{bottom:73.590000px;}
.y1{bottom:74.520000px;}
.y16{bottom:75.420000px;}
.y7{bottom:76.680000px;}
.y34{bottom:79.905000px;}
.y48{bottom:97.350000px;}
.y33{bottom:102.945000px;}
.y5{bottom:107.640000px;}
.y6{bottom:107.820000px;}
.ye3{bottom:111.240000px;}
.y151{bottom:111.600000px;}
.yd4{bottom:113.040000px;}
.y1a5{bottom:117.180000px;}
.y84{bottom:117.900000px;}
.yb3{bottom:119.340000px;}
.y25a{bottom:120.060000px;}
.y10f{bottom:120.960000px;}
.y1e6{bottom:121.860000px;}
.y46{bottom:122.040000px;}
.y32{bottom:125.985000px;}
.y16a{bottom:126.900000px;}
.y2db{bottom:127.260000px;}
.y2b3{bottom:127.800000px;}
.y288{bottom:128.340000px;}
.y20b{bottom:129.780000px;}
.y17d{bottom:130.320000px;}
.y1c2{bottom:130.500000px;}
.y190{bottom:131.040000px;}
.ye2{bottom:133.380000px;}
.y45{bottom:134.100000px;}
.yd3{bottom:135.180000px;}
.y12c{bottom:136.440000px;}
.y1a4{bottom:139.500000px;}
.y83{bottom:140.040000px;}
.yb2{bottom:141.660000px;}
.y169{bottom:142.380000px;}
.y259{bottom:143.820000px;}
.y1e5{bottom:144.000000px;}
.y31{bottom:149.025000px;}
.y2b2{bottom:149.580000px;}
.y2da{bottom:149.760000px;}
.y287{bottom:149.940000px;}
.y12b{bottom:151.740000px;}
.y20a{bottom:152.280000px;}
.y17c{bottom:152.460000px;}
.y1e0{bottom:152.640000px;}
.y1c1{bottom:152.820000px;}
.y235{bottom:153.180000px;}
.y18f{bottom:153.360000px;}
.y43{bottom:153.540000px;}
.ye1{bottom:155.700000px;}
.yd2{bottom:157.500000px;}
.y168{bottom:157.680000px;}
.y1a3{bottom:161.640000px;}
.y82{bottom:162.360000px;}
.yb1{bottom:163.800000px;}
.y1e4{bottom:166.320000px;}
.y129{bottom:167.040000px;}
.y258{bottom:167.580000px;}
.y286{bottom:171.360000px;}
.y130{bottom:171.900000px;}
.y30{bottom:172.110000px;}
.y2d9{bottom:172.260000px;}
.y42{bottom:172.800000px;}
.y167{bottom:172.980000px;}
.y17b{bottom:174.780000px;}
.y209{bottom:174.960000px;}
.y1c0{bottom:175.140000px;}
.y18e{bottom:175.680000px;}
.y234{bottom:176.220000px;}
.ye0{bottom:177.840000px;}
.yd1{bottom:179.820000px;}
.y1a2{bottom:183.960000px;}
.y81{bottom:184.500000px;}
.yb0{bottom:186.120000px;}
.y16f{bottom:187.200000px;}
.y13a{bottom:187.245000px;}
.y166{bottom:188.280000px;}
.y1e3{bottom:188.460000px;}
.y257{bottom:191.520000px;}
.y40{bottom:192.240000px;}
.y285{bottom:192.780000px;}
.y2b1{bottom:193.140000px;}
.y2d8{bottom:194.940000px;}
.y2f{bottom:195.150000px;}
.y17a{bottom:196.920000px;}
.y1df{bottom:197.100000px;}
.y1bf{bottom:197.280000px;}
.y208{bottom:197.460000px;}
.y128{bottom:197.640000px;}
.y18d{bottom:197.820000px;}
.y233{bottom:199.260000px;}
.ydf{bottom:200.160000px;}
.yd0{bottom:201.960000px;}
.y148{bottom:202.530000px;}
.y164{bottom:203.760000px;}
.y1a1{bottom:206.130000px;}
.y1a9{bottom:206.310000px;}
.y80{bottom:206.850000px;}
.yaf{bottom:208.290000px;}
.y1e2{bottom:210.810000px;}
.y3e{bottom:211.725000px;}
.y2b0{bottom:212.790000px;}
.y127{bottom:213.165000px;}
.y284{bottom:214.230000px;}
.y256{bottom:215.310000px;}
.y2d7{bottom:217.470000px;}
.y2e{bottom:218.010000px;}
.y163{bottom:219.105000px;}
.y179{bottom:219.270000px;}
.y1be{bottom:219.630000px;}
.yde{bottom:219.810000px;}
.y207{bottom:219.990000px;}
.y18c{bottom:220.170000px;}
.y232{bottom:222.330000px;}
.ycf{bottom:224.310000px;}
.y1a0{bottom:228.450000px;}
.y126{bottom:228.465000px;}
.ydd{bottom:228.810000px;}
.y7f{bottom:229.170000px;}
.yae{bottom:230.610000px;}
.y3c{bottom:231.165000px;}
.y1e1{bottom:232.050000px;}
.y162{bottom:234.405000px;}
.y283{bottom:235.830000px;}
.y255{bottom:239.070000px;}
.y2d6{bottom:239.970000px;}
.y18b{bottom:240.150000px;}
.y2d{bottom:241.050000px;}
.y178{bottom:241.410000px;}
.y1de{bottom:241.590000px;}
.y1bd{bottom:241.770000px;}
.y206{bottom:242.670000px;}
.y125{bottom:243.765000px;}
.y231{bottom:245.370000px;}
.yce{bottom:246.450000px;}
.y161{bottom:249.705000px;}
.y19f{bottom:250.590000px;}
.y1a8{bottom:250.770000px;}
.y7e{bottom:251.310000px;}
.yad{bottom:252.750000px;}
.y2af{bottom:253.830000px;}
.y3a{bottom:256.365000px;}
.y282{bottom:257.250000px;}
.y124{bottom:259.065000px;}
.ydc{bottom:259.770000px;}
.y2d5{bottom:262.650000px;}
.y254{bottom:262.830000px;}
.y1a7{bottom:263.025000px;}
.y177{bottom:263.730000px;}
.y2c{bottom:264.090000px;}
.y160{bottom:265.005000px;}
.y205{bottom:265.170000px;}
.y230{bottom:268.410000px;}
.ycd{bottom:268.770000px;}
.y19e{bottom:271.830000px;}
.y7d{bottom:273.630000px;}
.y123{bottom:274.365000px;}
.yac{bottom:275.070000px;}
.y2ae{bottom:275.610000px;}
.y176{bottom:275.985000px;}
.y281{bottom:276.870000px;}
.y15f{bottom:280.485000px;}
.ydb{bottom:282.090000px;}
.y38{bottom:282.285000px;}
.y2d4{bottom:285.150000px;}
.y1dd{bottom:286.050000px;}
.y1a6{bottom:286.065000px;}
.y1bc{bottom:286.230000px;}
.y253{bottom:286.590000px;}
.y2b{bottom:287.130000px;}
.y204{bottom:287.670000px;}
.y26{bottom:288.945000px;}
.y122{bottom:289.845000px;}
.ycc{bottom:290.910000px;}
.y22f{bottom:291.270000px;}
.y19d{bottom:292.710000px;}
.y280{bottom:295.410000px;}
.y188{bottom:295.605000px;}
.y7c{bottom:295.770000px;}
.y15e{bottom:295.785000px;}
.yab{bottom:297.390000px;}
.y174{bottom:299.025000px;}
.yda{bottom:304.410000px;}
.y121{bottom:305.145000px;}
.y2d3{bottom:307.650000px;}
.y1dc{bottom:308.370000px;}
.y1bb{bottom:308.550000px;}
.y2a{bottom:310.170000px;}
.y203{bottom:310.350000px;}
.y15d{bottom:311.085000px;}
.ycb{bottom:313.230000px;}
.y22e{bottom:314.310000px;}
.y19c{bottom:314.850000px;}
.y27f{bottom:316.830000px;}
.y7b{bottom:318.090000px;}
.y2ad{bottom:319.170000px;}
.yaa{bottom:319.530000px;}
.y15c{bottom:326.385000px;}
.yd9{bottom:326.550000px;}
.y2d2{bottom:330.330000px;}
.y1db{bottom:330.510000px;}
.y1ba{bottom:330.690000px;}
.y202{bottom:332.850000px;}
.y29{bottom:333.210000px;}
.y252{bottom:334.110000px;}
.yca{bottom:335.550000px;}
.y120{bottom:335.745000px;}
.y19b{bottom:337.170000px;}
.y22d{bottom:337.350000px;}
.y27e{bottom:338.430000px;}
.y7a{bottom:340.230000px;}
.y2ac{bottom:340.950000px;}
.y15b{bottom:341.685000px;}
.ya9{bottom:341.850000px;}
.yd8{bottom:348.870000px;}
.y11e{bottom:351.225000px;}
.y1da{bottom:352.830000px;}
.y1b9{bottom:353.010000px;}
.y201{bottom:355.350000px;}
.y28{bottom:356.070000px;}
.y15a{bottom:357.165000px;}
.yc9{bottom:357.690000px;}
.y251{bottom:357.870000px;}
.y19a{bottom:359.490000px;}
.y27d{bottom:359.850000px;}
.y22c{bottom:360.390000px;}
.y79{bottom:362.550000px;}
.y2ab{bottom:362.730000px;}
.ya8{bottom:363.990000px;}
.yd7{bottom:371.010000px;}
.y159{bottom:372.465000px;}
.y1d9{bottom:374.970000px;}
.y1b8{bottom:375.330000px;}
.y200{bottom:378.030000px;}
.y27{bottom:379.110000px;}
.yc8{bottom:380.010000px;}
.y27c{bottom:381.270000px;}
.y199{bottom:381.630000px;}
.y11d{bottom:381.825000px;}
.y2aa{bottom:382.350000px;}
.y22b{bottom:383.430000px;}
.y78{bottom:384.870000px;}
.ya7{bottom:386.310000px;}
.yd6{bottom:390.630000px;}
.y11c{bottom:397.125000px;}
.y1d8{bottom:397.290000px;}
.y1b7{bottom:397.470000px;}
.y2d1{bottom:398.010000px;}
.yd5{bottom:399.630000px;}
.y1ff{bottom:400.530000px;}
.y2a9{bottom:401.430000px;}
.y152{bottom:402.015000px;}
.y27b{bottom:402.870000px;}
.y158{bottom:403.065000px;}
.yc7{bottom:403.230000px;}
.y198{bottom:403.950000px;}
.y250{bottom:405.390000px;}
.y22a{bottom:406.470000px;}
.y77{bottom:407.010000px;}
.ya6{bottom:408.450000px;}
.y11a{bottom:412.425000px;}
.y157{bottom:418.545000px;}
.y1d7{bottom:419.430000px;}
.y1b6{bottom:419.790000px;}
.y2d0{bottom:420.510000px;}
.y27a{bottom:422.310000px;}
.y1fe{bottom:423.030000px;}
.y2a8{bottom:423.210000px;}
.yc6{bottom:426.090000px;}
.y118{bottom:427.905000px;}
.y24f{bottom:429.150000px;}
.y76{bottom:429.330000px;}
.ya5{bottom:430.770000px;}
.y110{bottom:432.795000px;}
.y156{bottom:433.845000px;}
.y279{bottom:441.075000px;}
.y1d6{bottom:441.795000px;}
.y1b5{bottom:441.975000px;}
.y2cf{bottom:443.055000px;}
.y117{bottom:443.235000px;}
.y2a7{bottom:445.035000px;}
.y1fd{bottom:445.755000px;}
.y197{bottom:448.455000px;}
.yc5{bottom:449.175000px;}
.y75{bottom:451.515000px;}
.y229{bottom:452.415000px;}
.ya4{bottom:452.955000px;}
.y24e{bottom:453.135000px;}
.y116{bottom:458.535000px;}
.y187{bottom:460.335000px;}
.y278{bottom:462.495000px;}
.y1d5{bottom:464.115000px;}
.y1b4{bottom:464.295000px;}
.y155{bottom:464.475000px;}
.y2ce{bottom:465.735000px;}
.y2a6{bottom:466.995000px;}
.y1fc{bottom:468.255000px;}
.y196{bottom:470.595000px;}
.y173{bottom:471.855000px;}
.yc4{bottom:472.215000px;}
.y74{bottom:473.835000px;}
.ya3{bottom:475.275000px;}
.y228{bottom:475.455000px;}
.y24d{bottom:476.895000px;}
.y154{bottom:479.775000px;}
.y186{bottom:479.955000px;}
.y277{bottom:483.915000px;}
.y172{bottom:484.095000px;}
.y1d4{bottom:486.255000px;}
.y1b3{bottom:486.435000px;}
.y2cd{bottom:488.235000px;}
.y2a5{bottom:488.775000px;}
.y115{bottom:489.315000px;}
.y1fb{bottom:490.755000px;}
.y195{bottom:492.915000px;}
.yc3{bottom:495.255000px;}
.y73{bottom:495.975000px;}
.ya2{bottom:497.595000px;}
.y227{bottom:498.495000px;}
.y24c{bottom:500.655000px;}
.y185{bottom:502.095000px;}
.y276{bottom:503.535000px;}
.y114{bottom:504.615000px;}
.y170{bottom:507.135000px;}
.y1d3{bottom:508.575000px;}
.y1b2{bottom:508.755000px;}
.y153{bottom:510.555000px;}
.y2cc{bottom:510.735000px;}
.y1fa{bottom:513.435000px;}
.y194{bottom:515.235000px;}
.y72{bottom:518.295000px;}
.ya1{bottom:519.735000px;}
.y113{bottom:519.915000px;}
.y226{bottom:521.535000px;}
.y275{bottom:522.075000px;}
.y184{bottom:524.415000px;}
.y147{bottom:525.855000px;}
.y2a4{bottom:530.175000px;}
.y1d2{bottom:530.715000px;}
.y1b1{bottom:531.075000px;}
.y2cb{bottom:533.415000px;}
.y112{bottom:535.215000px;}
.y1f9{bottom:535.935000px;}
.y193{bottom:537.375000px;}
.y71{bottom:540.615000px;}
.yc2{bottom:541.155000px;}
.ya0{bottom:542.055000px;}
.y274{bottom:543.675000px;}
.y225{bottom:544.575000px;}
.y183{bottom:546.735000px;}
.y24b{bottom:548.175000px;}
.y2a3{bottom:549.255000px;}
.y192{bottom:549.615000px;}
.y111{bottom:550.515000px;}
.y1d1{bottom:550.695000px;}
.y1b0{bottom:553.215000px;}
.y2ca{bottom:555.915000px;}
.y150{bottom:556.635000px;}
.y1f8{bottom:558.435000px;}
.y70{bottom:562.755000px;}
.y273{bottom:563.295000px;}
.y9f{bottom:564.195000px;}
.y10c{bottom:566.715000px;}
.y224{bottom:567.435000px;}
.y182{bottom:568.875000px;}
.y1d0{bottom:570.315000px;}
.y2a2{bottom:571.035000px;}
.y14f{bottom:571.935000px;}
.y191{bottom:572.655000px;}
.y1af{bottom:575.535000px;}
.y2c9{bottom:578.595000px;}
.y1f7{bottom:581.115000px;}
.y272{bottom:581.835000px;}
.y10e{bottom:582.735000px;}
.y6f{bottom:585.075000px;}
.y9e{bottom:586.515000px;}
.yc1{bottom:587.235000px;}
.y223{bottom:590.475000px;}
.y181{bottom:591.195000px;}
.y1cf{bottom:592.455000px;}
.y2a1{bottom:592.815000px;}
.y24a{bottom:595.695000px;}
.y1ae{bottom:597.675000px;}
.y2c8{bottom:601.095000px;}
.y14e{bottom:602.535000px;}
.y271{bottom:603.255000px;}
.y1f6{bottom:603.615000px;}
.y6e{bottom:607.215000px;}
.y9d{bottom:608.655000px;}
.yc0{bottom:610.275000px;}
.y180{bottom:613.335000px;}
.y222{bottom:613.515000px;}
.y2a0{bottom:614.595000px;}
.y1ce{bottom:614.775000px;}
.y14d{bottom:617.835000px;}
.y249{bottom:619.455000px;}
.y1ad{bottom:619.995000px;}
.y2c7{bottom:623.595000px;}
.y270{bottom:624.675000px;}
.y1f5{bottom:626.115000px;}
.y6d{bottom:629.535000px;}
.y9c{bottom:630.975000px;}
.y10b{bottom:632.595000px;}
.ybf{bottom:633.315000px;}
.y17f{bottom:635.655000px;}
.y29f{bottom:636.375000px;}
.y221{bottom:636.555000px;}
.y1cd{bottom:637.095000px;}
.y1ac{bottom:642.135000px;}
.y248{bottom:643.215000px;}
.y26f{bottom:646.275000px;}
.y14c{bottom:648.615000px;}
.y1f4{bottom:648.795000px;}
.y6c{bottom:651.675000px;}
.y9b{bottom:653.295000px;}
.yf9{bottom:654.915000px;}
.ybe{bottom:656.355000px;}
.y10a{bottom:656.895000px;}
.y17e{bottom:657.795000px;}
.y29e{bottom:658.155000px;}
.y1cc{bottom:659.235000px;}
.y220{bottom:659.595000px;}
.y14b{bottom:663.915000px;}
.y1ab{bottom:664.455000px;}
.y247{bottom:666.975000px;}
.y26e{bottom:667.695000px;}
.y2c6{bottom:668.775000px;}
.y1f3{bottom:671.295000px;}
.y6b{bottom:673.995000px;}
.y9a{bottom:675.435000px;}
.y1aa{bottom:676.725000px;}
.yf8{bottom:677.085000px;}
.y109{bottom:679.065000px;}
.ybd{bottom:679.245000px;}
.y29d{bottom:679.965000px;}
.y24{bottom:680.145000px;}
.y1cb{bottom:681.585000px;}
.y21f{bottom:682.485000px;}
.y26d{bottom:689.145000px;}
.y22{bottom:690.405000px;}
.y246{bottom:690.765000px;}
.y2c5{bottom:691.305000px;}
.y1f2{bottom:693.825000px;}
.y14a{bottom:694.545000px;}
.y6a{bottom:696.165000px;}
.y99{bottom:697.785000px;}
.yf7{bottom:699.405000px;}
.y108{bottom:701.385000px;}
.y29c{bottom:701.925000px;}
.ybc{bottom:702.285000px;}
.y1ca{bottom:703.725000px;}
.y21e{bottom:705.525000px;}
.y20{bottom:705.705000px;}
.y26c{bottom:708.765000px;}
.y149{bottom:710.025000px;}
.y2c4{bottom:713.985000px;}
.y245{bottom:714.525000px;}
.y1f1{bottom:716.505000px;}
.y69{bottom:718.485000px;}
.y98{bottom:719.925000px;}
.yf6{bottom:721.545000px;}
.y1f{bottom:722.805000px;}
.y107{bottom:723.525000px;}
.y29b{bottom:723.705000px;}
.ybb{bottom:725.325000px;}
.y1c9{bottom:726.045000px;}
.y26b{bottom:727.305000px;}
.y21d{bottom:728.565000px;}
.y2c3{bottom:736.485000px;}
.y244{bottom:738.465000px;}
.y1f0{bottom:739.005000px;}
.y139{bottom:740.625000px;}
.y68{bottom:740.805000px;}
.y1d{bottom:741.165000px;}
.y97{bottom:742.245000px;}
.y29a{bottom:743.325000px;}
.yf5{bottom:743.865000px;}
.y106{bottom:745.845000px;}
.y1c8{bottom:748.185000px;}
.yba{bottom:748.365000px;}
.y26a{bottom:748.905000px;}
.y21c{bottom:751.605000px;}
.y146{bottom:755.925000px;}
.y1b{bottom:758.085000px;}
.y2c2{bottom:758.985000px;}
.y1ef{bottom:761.505000px;}
.y243{bottom:762.225000px;}
.y299{bottom:762.405000px;}
.y67{bottom:763.305000px;}
.y96{bottom:764.385000px;}
.yf4{bottom:766.005000px;}
.y105{bottom:767.985000px;}
.yb9{bottom:770.325000px;}
.y1c7{bottom:770.505000px;}
.y145{bottom:771.405000px;}
.y19{bottom:773.565000px;}
.y21b{bottom:774.645000px;}
.y2c1{bottom:781.665000px;}
.y15{bottom:781.845000px;}
.yb6{bottom:782.565000px;}
.y1ee{bottom:784.185000px;}
.y66{bottom:785.985000px;}
.y95{bottom:786.705000px;}
.yf3{bottom:788.325000px;}
.y104{bottom:790.305000px;}
.y269{bottom:791.745000px;}
.y1c6{bottom:792.825000px;}
.y21a{bottom:797.685000px;}
.y144{bottom:802.005000px;}
.y2c0{bottom:804.165000px;}
.y298{bottom:805.965000px;}
.y1ed{bottom:806.685000px;}
.y65{bottom:808.125000px;}
.y94{bottom:809.025000px;}
.y242{bottom:809.745000px;}
.y103{bottom:812.625000px;}
.y268{bottom:813.345000px;}
.y1c5{bottom:813.885000px;}
.yf2{bottom:817.125000px;}
.y143{bottom:817.305000px;}
.y219{bottom:820.545000px;}
.y1c4{bottom:824.685000px;}
.y2ef{bottom:825.945000px;}
.y2bf{bottom:826.665000px;}
.y297{bottom:827.745000px;}
.yb4{bottom:828.645000px;}
.y1ec{bottom:829.185000px;}
.y64{bottom:830.445000px;}
.y93{bottom:831.165000px;}
.y142{bottom:832.605000px;}
.y241{bottom:833.505000px;}
.y102{bottom:834.765000px;}
.y218{bottom:843.585000px;}
.y296{bottom:846.645000px;}
.y141{bottom:848.085000px;}
.yf1{bottom:848.985000px;}
.y2be{bottom:849.345000px;}
.y1eb{bottom:851.865000px;}
.y63{bottom:852.585000px;}
.y92{bottom:853.485000px;}
.y267{bottom:854.385000px;}
.y101{bottom:857.085000px;}
.y240{bottom:857.265000px;}
.y140{bottom:863.385000px;}
.y295{bottom:864.105000px;}
.y13{bottom:866.085000px;}
.y217{bottom:866.625000px;}
.y1c3{bottom:870.765000px;}
.yf0{bottom:871.305000px;}
.y2bd{bottom:871.845000px;}
.y2e4{bottom:872.565000px;}
.y266{bottom:872.925000px;}
.y1ea{bottom:874.365000px;}
.y62{bottom:874.905000px;}
.y10{bottom:875.085000px;}
.y2ee{bottom:875.265000px;}
.y91{bottom:875.625000px;}
.y13f{bottom:878.685000px;}
.y100{bottom:879.225000px;}
.y23f{bottom:881.025000px;}
.y294{bottom:885.885000px;}
.y216{bottom:889.665000px;}
.yef{bottom:893.445000px;}
.y13e{bottom:893.985000px;}
.y265{bottom:894.345000px;}
.y1e9{bottom:896.865000px;}
.y61{bottom:897.225000px;}
.y90{bottom:897.945000px;}
.yff{bottom:901.545000px;}
.y23e{bottom:904.785000px;}
.y293{bottom:907.665000px;}
.y13c{bottom:909.465000px;}
.y215{bottom:912.750000px;}
.yee{bottom:915.810000px;}
.y264{bottom:915.990000px;}
.y2bc{bottom:917.070000px;}
.y2ed{bottom:918.330000px;}
.y60{bottom:919.410000px;}
.y1e8{bottom:919.590000px;}
.y8f{bottom:920.130000px;}
.y2e3{bottom:921.750000px;}
.yfe{bottom:923.730000px;}
.y13b{bottom:924.810000px;}
.ye{bottom:927.510000px;}
.y23d{bottom:928.590000px;}
.y292{bottom:929.490000px;}
.yb{bottom:932.550000px;}
.y263{bottom:935.430000px;}
.y214{bottom:935.790000px;}
.yed{bottom:937.950000px;}
.y2bb{bottom:939.570000px;}
.y2ec{bottom:939.750000px;}
.y12f{bottom:940.110000px;}
.y5f{bottom:941.730000px;}
.y1e7{bottom:942.090000px;}
.y8e{bottom:942.450000px;}
.yfd{bottom:946.050000px;}
.y2e2{bottom:946.230000px;}
.y291{bottom:951.270000px;}
.y23c{bottom:952.350000px;}
.y262{bottom:954.150000px;}
.y16d{bottom:955.410000px;}
.y213{bottom:958.650000px;}
.yec{bottom:960.270000px;}
.y2eb{bottom:961.350000px;}
.y2ba{bottom:962.070000px;}
.y5e{bottom:963.870000px;}
.y8d{bottom:964.590000px;}
.yfc{bottom:968.370000px;}
.y138{bottom:970.710000px;}
.y2e1{bottom:970.890000px;}
.y290{bottom:973.050000px;}
.y261{bottom:975.570000px;}
.y23b{bottom:976.110000px;}
.y2ea{bottom:980.790000px;}
.yeb{bottom:981.510000px;}
.y212{bottom:981.690000px;}
.y2b9{bottom:984.750000px;}
.y5d{bottom:986.190000px;}
.y8c{bottom:986.910000px;}
.yfb{bottom:990.870000px;}
.y28f{bottom:992.670000px;}
.y2e0{bottom:995.370000px;}
.y260{bottom:996.990000px;}
.y2e9{bottom:999.510000px;}
.yfa{bottom:999.870000px;}
.y137{bottom:1001.490000px;}
.yea{bottom:1002.210000px;}
.y211{bottom:1004.730000px;}
.y2b8{bottom:1007.250000px;}
.y5c{bottom:1008.330000px;}
.y8b{bottom:1009.230000px;}
.y28e{bottom:1011.930000px;}
.ya{bottom:1013.550000px;}
.y16c{bottom:1016.790000px;}
.y25f{bottom:1018.590000px;}
.y2df{bottom:1019.850000px;}
.y2e8{bottom:1020.930000px;}
.y23a{bottom:1023.810000px;}
.ye9{bottom:1024.530000px;}
.y210{bottom:1027.770000px;}
.y2b7{bottom:1029.750000px;}
.y4{bottom:1030.290000px;}
.y5b{bottom:1030.650000px;}
.y8a{bottom:1031.370000px;}
.y136{bottom:1032.090000px;}
.y28d{bottom:1033.710000px;}
.y25e{bottom:1040.010000px;}
.y2e7{bottom:1042.350000px;}
.y47{bottom:1043.280000px;}
.y2de{bottom:1044.510000px;}
.ye8{bottom:1046.670000px;}
.y135{bottom:1047.390000px;}
.y239{bottom:1047.570000px;}
.y20f{bottom:1050.810000px;}
.y2b6{bottom:1052.430000px;}
.y5a{bottom:1052.790000px;}
.y89{bottom:1053.690000px;}
.y28c{bottom:1055.490000px;}
.y25d{bottom:1059.630000px;}
.y134{bottom:1062.870000px;}
.y2e6{bottom:1063.950000px;}
.ye7{bottom:1066.650000px;}
.y2dd{bottom:1068.990000px;}
.y238{bottom:1071.330000px;}
.y20e{bottom:1073.850000px;}
.ye5{bottom:1074.750000px;}
.y2b5{bottom:1074.930000px;}
.y59{bottom:1075.110000px;}
.y88{bottom:1075.830000px;}
.y28b{bottom:1077.270000px;}
.y133{bottom:1078.170000px;}
.y2e5{bottom:1082.490000px;}
.ye4{bottom:1083.750000px;}
.y132{bottom:1093.470000px;}
.y237{bottom:1095.090000px;}
.y20d{bottom:1096.710000px;}
.y58{bottom:1097.430000px;}
.y87{bottom:1098.150000px;}
.y28a{bottom:1099.050000px;}
.y25c{bottom:1099.590000px;}
.ye6{bottom:1103.730000px;}
.y131{bottom:1108.770000px;}
.y2dc{bottom:1118.130000px;}
.y236{bottom:1118.850000px;}
.y57{bottom:1119.570000px;}
.y20c{bottom:1119.750000px;}
.y2b4{bottom:1120.110000px;}
.y86{bottom:1120.290000px;}
.y289{bottom:1120.830000px;}
.y25b{bottom:1121.190000px;}
.y12e{bottom:1124.250000px;}
.y12d{bottom:1139.550000px;}
.y85{bottom:1142.610000px;}
.y56{bottom:1142.790000px;}
.y50{bottom:1161.000000px;}
.y4e{bottom:1185.840000px;}
.h30{height:1.999688px;}
.hb{height:5.025000px;}
.h23{height:6.645000px;}
.h13{height:8.280000px;}
.hf{height:9.000000px;}
.h1f{height:10.260000px;}
.hc{height:12.190430px;}
.h45{height:15.285000px;}
.h4c{height:15.298500px;}
.h1e{height:15.300000px;}
.h48{height:15.321000px;}
.h51{height:15.322500px;}
.h4e{height:15.330000px;}
.h54{height:15.336000px;}
.h47{height:15.465000px;}
.h4d{height:15.478500px;}
.h15{height:15.480000px;}
.h4a{height:15.516000px;}
.h24{height:16.543828px;}
.h17{height:16.920000px;}
.h1c{height:17.100000px;}
.h36{height:17.640000px;}
.h19{height:18.360000px;}
.h2d{height:19.260000px;}
.h29{height:19.425000px;}
.h2e{height:19.438500px;}
.h2c{height:19.440000px;}
.h2b{height:19.476000px;}
.h14{height:21.055781px;}
.h10{height:22.975313px;}
.h59{height:23.025000px;}
.h12{height:23.980781px;}
.h27{height:25.185000px;}
.h25{height:25.905000px;}
.h37{height:27.898500px;}
.h2{height:28.798500px;}
.h26{height:29.145586px;}
.h49{height:30.585000px;}
.h4b{height:30.600000px;}
.h55{height:30.765000px;}
.h44{height:31.305000px;}
.h39{height:34.684453px;}
.h20{height:35.595703px;}
.h5f{height:36.486211px;}
.h5b{height:39.659766px;}
.h2a{height:40.472227px;}
.h63{height:41.291016px;}
.h28{height:41.493516px;}
.h18{height:44.820000px;}
.he{height:44.860781px;}
.h1b{height:45.695391px;}
.h42{height:45.813867px;}
.h5d{height:45.885000px;}
.h56{height:45.922500px;}
.h3c{height:46.080000px;}
.h3f{height:48.220313px;}
.h1a{height:50.100469px;}
.h3{height:50.597578px;}
.h22{height:51.284180px;}
.hd{height:52.402500px;}
.h16{height:53.393555px;}
.h33{height:54.000000px;}
.h6{height:54.457031px;}
.h35{height:56.084062px;}
.h34{height:56.160000px;}
.h8{height:57.051211px;}
.h1d{height:59.088867px;}
.h9{height:60.136655px;}
.h32{height:63.180000px;}
.ha{height:64.853086px;}
.h7{height:66.585000px;}
.h3a{height:66.972656px;}
.h4{height:70.664062px;}
.h38{height:72.562500px;}
.h11{height:84.240000px;}
.h3e{height:87.284180px;}
.h41{height:102.972656px;}
.h3d{height:108.012656px;}
.h43{height:108.700312px;}
.h31{height:114.660000px;}
.h2f{height:122.256000px;}
.h5{height:124.590000px;}
.h5c{height:156.975000px;}
.h58{height:162.885000px;}
.h5a{height:162.915000px;}
.h61{height:165.060000px;}
.h62{height:172.830000px;}
.h40{height:176.412656px;}
.h4f{height:184.125000px;}
.h57{height:199.440000px;}
.h50{height:199.470000px;}
.h5e{height:203.970000px;}
.h52{height:214.770000px;}
.h3b{height:237.270000px;}
.h21{height:391.200000px;}
.h53{height:414.253500px;}
.h60{height:423.960000px;}
.h46{height:445.033500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w21{width:33.105000px;}
.w1f{width:35.085000px;}
.w1d{width:37.785000px;}
.w1b{width:38.505000px;}
.w1a{width:45.165000px;}
.w1e{width:47.901000px;}
.w1c{width:51.285000px;}
.w10{width:52.189500px;}
.w20{width:53.265000px;}
.w14{width:82.609500px;}
.w18{width:83.001000px;}
.w16{width:83.685000px;}
.w19{width:86.385000px;}
.w17{width:89.085000px;}
.w4{width:101.329500px;}
.w9{width:154.429500px;}
.w8{width:243.915000px;}
.w15{width:250.260000px;}
.w3{width:265.155000px;}
.w11{width:280.320000px;}
.w22{width:324.015000px;}
.w13{width:324.019500px;}
.wc{width:325.815000px;}
.wf{width:333.555000px;}
.we{width:338.284500px;}
.w12{width:339.315000px;}
.wb{width:349.264500px;}
.w2{width:414.424500px;}
.w7{width:431.164500px;}
.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;}
.x3f{left:1.080000px;}
.x33{left:2.325000px;}
.x2{left:3.769500px;}
.x36{left:5.040000px;}
.x17{left:6.465000px;}
.xa{left:7.725000px;}
.x3d{left:8.805000px;}
.x3e{left:9.930000px;}
.x29{left:10.965000px;}
.x35{left:12.060000px;}
.x31{left:13.665000px;}
.x38{left:15.285000px;}
.x2b{left:16.545000px;}
.x15{left:17.809500px;}
.x39{left:18.885000px;}
.x3b{left:20.550000px;}
.x3a{left:21.765000px;}
.x3c{left:22.860000px;}
.x2d{left:23.970000px;}
.x2f{left:27.720000px;}
.x19{left:32.565000px;}
.xd{left:38.370000px;}
.x1{left:106.786500px;}
.x5{left:108.036000px;}
.x14{left:122.025000px;}
.x1a{left:143.445000px;}
.x16{left:164.385000px;}
.x27{left:190.665000px;}
.x4{left:197.670000px;}
.x1f{left:205.950000px;}
.x6{left:209.385000px;}
.xe{left:221.115000px;}
.x23{left:235.830000px;}
.x21{left:253.110000px;}
.x20{left:259.050000px;}
.x24{left:262.290000px;}
.xb{left:263.385000px;}
.xf{left:273.705000px;}
.x10{left:303.405000px;}
.x41{left:308.190000px;}
.x40{left:313.228500px;}
.x22{left:315.615000px;}
.x1c{left:324.028500px;}
.x11{left:341.025000px;}
.x7{left:368.518500px;}
.x28{left:440.940000px;}
.x18{left:444.720000px;}
.x13{left:450.480000px;}
.xc{left:458.220000px;}
.x1b{left:462.705000px;}
.x30{left:486.120000px;}
.x3{left:521.220000px;}
.x2a{left:524.640000px;}
.x9{left:540.120000px;}
.x8{left:546.223500px;}
.x25{left:560.625000px;}
.x1d{left:571.605000px;}
.x12{left:573.990000px;}
.x32{left:575.940000px;}
.x2c{left:613.740000px;}
.x26{left:624.210000px;}
.x1e{left:659.850000px;}
.x34{left:661.650000px;}
.x2e{left:696.750000px;}
.x37{left:750.030000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.vb{vertical-align:13.440000pt;}
.va{vertical-align:14.720000pt;}
.v1{vertical-align:16.000000pt;}
.v7{vertical-align:17.280000pt;}
.v6{vertical-align:32.000000pt;}
.v5{vertical-align:36.480000pt;}
.v9{vertical-align:53.760000pt;}
.v8{vertical-align:60.800000pt;}
.ls37{letter-spacing:-1.584000pt;}
.ls40{letter-spacing:-1.440000pt;}
.ls36{letter-spacing:-1.360000pt;}
.ls43{letter-spacing:-1.232000pt;}
.ls44{letter-spacing:-1.200000pt;}
.ls38{letter-spacing:-1.024000pt;}
.ls3e{letter-spacing:-0.992000pt;}
.ls28{letter-spacing:-0.800000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls39{letter-spacing:-0.592000pt;}
.ls3f{letter-spacing:-0.560000pt;}
.ls23{letter-spacing:-0.288000pt;}
.lse{letter-spacing:-0.272000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.240000pt;}
.ls20{letter-spacing:-0.208000pt;}
.ls6{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.086933pt;}
.ls27{letter-spacing:-0.080000pt;}
.ls16{letter-spacing:-0.032000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.028160pt;}
.ls1f{letter-spacing:0.048000pt;}
.ls1d{letter-spacing:0.096000pt;}
.ls15{letter-spacing:0.144000pt;}
.lsf{letter-spacing:0.160000pt;}
.ls25{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.208000pt;}
.ls24{letter-spacing:0.224000pt;}
.ls21{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.288000pt;}
.ls30{letter-spacing:0.336000pt;}
.ls8{letter-spacing:0.342933pt;}
.ls9{letter-spacing:0.384000pt;}
.ls34{letter-spacing:0.416000pt;}
.lsa{letter-spacing:0.480000pt;}
.ls1a{letter-spacing:0.560000pt;}
.ls1{letter-spacing:0.595840pt;}
.ls2{letter-spacing:0.624000pt;}
.ls29{letter-spacing:0.672000pt;}
.ls2f{letter-spacing:0.688000pt;}
.ls31{letter-spacing:0.720000pt;}
.ls3d{letter-spacing:0.800000pt;}
.ls3c{letter-spacing:0.896000pt;}
.ls35{letter-spacing:0.928000pt;}
.ls18{letter-spacing:0.944000pt;}
.ls41{letter-spacing:0.992000pt;}
.ls2c{letter-spacing:1.024000pt;}
.ls2a{letter-spacing:1.040000pt;}
.ls3{letter-spacing:1.104000pt;}
.ls3b{letter-spacing:1.120000pt;}
.ls1e{letter-spacing:1.248000pt;}
.ls2d{letter-spacing:1.312000pt;}
.ls42{letter-spacing:1.440000pt;}
.ls2b{letter-spacing:1.488000pt;}
.ls33{letter-spacing:1.536000pt;}
.ls2e{letter-spacing:1.568000pt;}
.lsb{letter-spacing:1.872000pt;}
.ls1c{letter-spacing:3.056640pt;}
.ls1b{letter-spacing:5.184000pt;}
.ls26{letter-spacing:5.712000pt;}
.ls32{letter-spacing:8.912000pt;}
.ls12{letter-spacing:10.736000pt;}
.ls10{letter-spacing:13.360000pt;}
.ls11{letter-spacing:13.584000pt;}
.ls19{letter-spacing:15.856640pt;}
.ls13{letter-spacing:23.104000pt;}
.ls14{letter-spacing:25.104000pt;}
.ls3a{letter-spacing:29.392000pt;}
.ws5{word-spacing:-18.167040pt;}
.ws3{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.192640pt;}
.ws4{word-spacing:-14.080000pt;}
.ws2c{word-spacing:-13.632000pt;}
.ws8{word-spacing:-13.296533pt;}
.ws1f{word-spacing:-13.120000pt;}
.ws24{word-spacing:-13.088000pt;}
.ws25{word-spacing:-12.992000pt;}
.ws1e{word-spacing:-12.912000pt;}
.ws19{word-spacing:-12.880000pt;}
.ws28{word-spacing:-12.864000pt;}
.ws1d{word-spacing:-12.816000pt;}
.ws2a{word-spacing:-12.688000pt;}
.ws1c{word-spacing:-12.608000pt;}
.ws18{word-spacing:-12.592000pt;}
.ws2b{word-spacing:-12.560000pt;}
.ws2d{word-spacing:-12.480000pt;}
.ws23{word-spacing:-12.400000pt;}
.ws1a{word-spacing:-12.240000pt;}
.ws6{word-spacing:-12.192000pt;}
.ws29{word-spacing:-12.048000pt;}
.ws1b{word-spacing:-11.952000pt;}
.ws10{word-spacing:-11.824000pt;}
.ws15{word-spacing:-11.792000pt;}
.ws16{word-spacing:-11.760000pt;}
.ws0{word-spacing:-11.686400pt;}
.ws13{word-spacing:-11.616000pt;}
.ws22{word-spacing:-11.600000pt;}
.wsa{word-spacing:-11.599467pt;}
.wsc{word-spacing:-11.568000pt;}
.ws17{word-spacing:-11.488000pt;}
.ws11{word-spacing:-11.408000pt;}
.ws12{word-spacing:-11.328000pt;}
.wsd{word-spacing:-11.312000pt;}
.wse{word-spacing:-11.296000pt;}
.ws14{word-spacing:-11.280000pt;}
.ws30{word-spacing:-11.200000pt;}
.ws27{word-spacing:-11.008000pt;}
.ws2f{word-spacing:-10.992000pt;}
.ws2e{word-spacing:-10.960000pt;}
.wsf{word-spacing:-10.560000pt;}
.ws20{word-spacing:-10.208000pt;}
.ws7{word-spacing:-8.640000pt;}
.ws1{word-spacing:-8.512000pt;}
.ws21{word-spacing:-7.712000pt;}
.ws26{word-spacing:-6.720000pt;}
.ws2{word-spacing:-6.585600pt;}
.ws9{word-spacing:0.000000pt;}
._47{margin-left:-2.974080pt;}
._5{margin-left:-2.050560pt;}
._1{margin-left:-1.152000pt;}
._0{width:1.039147pt;}
._7{width:2.112000pt;}
._b{width:3.245653pt;}
._23{width:4.176000pt;}
._8{width:5.078827pt;}
._c{width:6.021973pt;}
._6{width:7.013120pt;}
._9{width:8.693120pt;}
._a{width:9.658667pt;}
._d{width:10.580053pt;}
._12{width:12.528000pt;}
._15{width:13.776000pt;}
._16{width:14.714667pt;}
._14{width:16.377173pt;}
._e{width:17.299413pt;}
._f{width:18.360533pt;}
._24{width:19.488000pt;}
._21{width:20.640000pt;}
._22{width:21.568853pt;}
._29{width:22.461440pt;}
._13{width:23.376000pt;}
._20{width:24.496000pt;}
._27{width:25.408853pt;}
._1a{width:26.368000pt;}
._17{width:27.360000pt;}
._18{width:28.816853pt;}
._1b{width:29.952000pt;}
._4b{width:30.874240pt;}
._11{width:31.776000pt;}
._1e{width:33.168000pt;}
._2{width:34.548480pt;}
._4{width:35.542400pt;}
._3{width:36.702292pt;}
._1f{width:38.051415pt;}
._37{width:39.001815pt;}
._25{width:39.984000pt;}
._26{width:40.944000pt;}
._2b{width:42.806827pt;}
._2e{width:44.114560pt;}
._2d{width:45.333973pt;}
._33{width:46.416000pt;}
._32{width:48.186667pt;}
._19{width:49.728000pt;}
._1c{width:50.624000pt;}
._1d{width:52.320000pt;}
._28{width:54.000000pt;}
._3e{width:55.264000pt;}
._30{width:56.232533pt;}
._2f{width:57.221120pt;}
._45{width:58.752640pt;}
._2c{width:61.029333pt;}
._3d{width:62.565120pt;}
._4c{width:63.457920pt;}
._2a{width:65.980373pt;}
._3b{width:67.584000pt;}
._3a{width:69.360000pt;}
._3f{width:71.392000pt;}
._38{width:72.336000pt;}
._39{width:73.258667pt;}
._31{width:74.352000pt;}
._35{width:80.016000pt;}
._34{width:80.928000pt;}
._3c{width:81.888000pt;}
._44{width:83.868587pt;}
._40{width:84.768000pt;}
._43{width:88.596267pt;}
._41{width:89.616000pt;}
._42{width:90.576000pt;}
._36{width:158.551467pt;}
._4a{width:169.049387pt;}
._48{width:171.525120pt;}
._49{width:172.886400pt;}
._46{width:761.654827pt;}
._10{width:1248.853333pt;}
.fsd{font-size:2.560000pt;}
.fs5{font-size:16.000000pt;}
.fsb{font-size:21.120000pt;}
.fs8{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fsf{font-size:37.120000pt;}
.fs10{font-size:40.320000pt;}
.fsa{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fse{font-size:66.560000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:78.929661pt;}
.fs4{font-size:85.120000pt;}
.y4d{bottom:-16.346667pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:1.120000pt;}
.y14{bottom:1.280000pt;}
.y39{bottom:1.426667pt;}
.y1a{bottom:1.760000pt;}
.y25{bottom:2.080000pt;}
.y4c{bottom:2.533333pt;}
.y119{bottom:2.706667pt;}
.y23{bottom:2.720000pt;}
.y165{bottom:2.746667pt;}
.y13d{bottom:2.760000pt;}
.y11b{bottom:2.866667pt;}
.y1c{bottom:2.880000pt;}
.y4f{bottom:3.040000pt;}
.y21{bottom:3.200000pt;}
.y1e{bottom:4.000000pt;}
.y44{bottom:5.760000pt;}
.y3f{bottom:5.906667pt;}
.y41{bottom:5.920000pt;}
.y175{bottom:6.866667pt;}
.y171{bottom:6.880000pt;}
.y189{bottom:7.026667pt;}
.yb5{bottom:7.040000pt;}
.y37{bottom:9.746667pt;}
.yb8{bottom:9.760000pt;}
.y52{bottom:10.400000pt;}
.y12{bottom:10.720000pt;}
.y3d{bottom:11.026667pt;}
.y53{bottom:12.160000pt;}
.y18{bottom:12.480000pt;}
.y9{bottom:12.800000pt;}
.y2{bottom:12.960000pt;}
.yd{bottom:13.760000pt;}
.y3b{bottom:14.546667pt;}
.y54{bottom:14.720000pt;}
.y11f{bottom:16.306667pt;}
.y12a{bottom:16.320000pt;}
.y16b{bottom:16.480000pt;}
.y10d{bottom:16.960000pt;}
.y4b{bottom:24.293333pt;}
.y16e{bottom:29.960000pt;}
.y18a{bottom:30.066667pt;}
.y36{bottom:30.226667pt;}
.yb7{bottom:30.240000pt;}
.y11{bottom:34.120000pt;}
.y8{bottom:40.480000pt;}
.y17{bottom:42.080000pt;}
.y55{bottom:42.240000pt;}
.yc{bottom:43.360000pt;}
.y4a{bottom:44.933333pt;}
.y35{bottom:50.706667pt;}
.y3{bottom:51.840000pt;}
.y51{bottom:56.640000pt;}
.y49{bottom:65.413333pt;}
.y1{bottom:66.240000pt;}
.y16{bottom:67.040000pt;}
.y7{bottom:68.160000pt;}
.y34{bottom:71.026667pt;}
.y48{bottom:86.533333pt;}
.y33{bottom:91.506667pt;}
.y5{bottom:95.680000pt;}
.y6{bottom:95.840000pt;}
.ye3{bottom:98.880000pt;}
.y151{bottom:99.200000pt;}
.yd4{bottom:100.480000pt;}
.y1a5{bottom:104.160000pt;}
.y84{bottom:104.800000pt;}
.yb3{bottom:106.080000pt;}
.y25a{bottom:106.720000pt;}
.y10f{bottom:107.520000pt;}
.y1e6{bottom:108.320000pt;}
.y46{bottom:108.480000pt;}
.y32{bottom:111.986667pt;}
.y16a{bottom:112.800000pt;}
.y2db{bottom:113.120000pt;}
.y2b3{bottom:113.600000pt;}
.y288{bottom:114.080000pt;}
.y20b{bottom:115.360000pt;}
.y17d{bottom:115.840000pt;}
.y1c2{bottom:116.000000pt;}
.y190{bottom:116.480000pt;}
.ye2{bottom:118.560000pt;}
.y45{bottom:119.200000pt;}
.yd3{bottom:120.160000pt;}
.y12c{bottom:121.280000pt;}
.y1a4{bottom:124.000000pt;}
.y83{bottom:124.480000pt;}
.yb2{bottom:125.920000pt;}
.y169{bottom:126.560000pt;}
.y259{bottom:127.840000pt;}
.y1e5{bottom:128.000000pt;}
.y31{bottom:132.466667pt;}
.y2b2{bottom:132.960000pt;}
.y2da{bottom:133.120000pt;}
.y287{bottom:133.280000pt;}
.y12b{bottom:134.880000pt;}
.y20a{bottom:135.360000pt;}
.y17c{bottom:135.520000pt;}
.y1e0{bottom:135.680000pt;}
.y1c1{bottom:135.840000pt;}
.y235{bottom:136.160000pt;}
.y18f{bottom:136.320000pt;}
.y43{bottom:136.480000pt;}
.ye1{bottom:138.400000pt;}
.yd2{bottom:140.000000pt;}
.y168{bottom:140.160000pt;}
.y1a3{bottom:143.680000pt;}
.y82{bottom:144.320000pt;}
.yb1{bottom:145.600000pt;}
.y1e4{bottom:147.840000pt;}
.y129{bottom:148.480000pt;}
.y258{bottom:148.960000pt;}
.y286{bottom:152.320000pt;}
.y130{bottom:152.800000pt;}
.y30{bottom:152.986667pt;}
.y2d9{bottom:153.120000pt;}
.y42{bottom:153.600000pt;}
.y167{bottom:153.760000pt;}
.y17b{bottom:155.360000pt;}
.y209{bottom:155.520000pt;}
.y1c0{bottom:155.680000pt;}
.y18e{bottom:156.160000pt;}
.y234{bottom:156.640000pt;}
.ye0{bottom:158.080000pt;}
.yd1{bottom:159.840000pt;}
.y1a2{bottom:163.520000pt;}
.y81{bottom:164.000000pt;}
.yb0{bottom:165.440000pt;}
.y16f{bottom:166.400000pt;}
.y13a{bottom:166.440000pt;}
.y166{bottom:167.360000pt;}
.y1e3{bottom:167.520000pt;}
.y257{bottom:170.240000pt;}
.y40{bottom:170.880000pt;}
.y285{bottom:171.360000pt;}
.y2b1{bottom:171.680000pt;}
.y2d8{bottom:173.280000pt;}
.y2f{bottom:173.466667pt;}
.y17a{bottom:175.040000pt;}
.y1df{bottom:175.200000pt;}
.y1bf{bottom:175.360000pt;}
.y208{bottom:175.520000pt;}
.y128{bottom:175.680000pt;}
.y18d{bottom:175.840000pt;}
.y233{bottom:177.120000pt;}
.ydf{bottom:177.920000pt;}
.yd0{bottom:179.520000pt;}
.y148{bottom:180.026667pt;}
.y164{bottom:181.120000pt;}
.y1a1{bottom:183.226667pt;}
.y1a9{bottom:183.386667pt;}
.y80{bottom:183.866667pt;}
.yaf{bottom:185.146667pt;}
.y1e2{bottom:187.386667pt;}
.y3e{bottom:188.200000pt;}
.y2b0{bottom:189.146667pt;}
.y127{bottom:189.480000pt;}
.y284{bottom:190.426667pt;}
.y256{bottom:191.386667pt;}
.y2d7{bottom:193.306667pt;}
.y2e{bottom:193.786667pt;}
.y163{bottom:194.760000pt;}
.y179{bottom:194.906667pt;}
.y1be{bottom:195.226667pt;}
.yde{bottom:195.386667pt;}
.y207{bottom:195.546667pt;}
.y18c{bottom:195.706667pt;}
.y232{bottom:197.626667pt;}
.ycf{bottom:199.386667pt;}
.y1a0{bottom:203.066667pt;}
.y126{bottom:203.080000pt;}
.ydd{bottom:203.386667pt;}
.y7f{bottom:203.706667pt;}
.yae{bottom:204.986667pt;}
.y3c{bottom:205.480000pt;}
.y1e1{bottom:206.266667pt;}
.y162{bottom:208.360000pt;}
.y283{bottom:209.626667pt;}
.y255{bottom:212.506667pt;}
.y2d6{bottom:213.306667pt;}
.y18b{bottom:213.466667pt;}
.y2d{bottom:214.266667pt;}
.y178{bottom:214.586667pt;}
.y1de{bottom:214.746667pt;}
.y1bd{bottom:214.906667pt;}
.y206{bottom:215.706667pt;}
.y125{bottom:216.680000pt;}
.y231{bottom:218.106667pt;}
.yce{bottom:219.066667pt;}
.y161{bottom:221.960000pt;}
.y19f{bottom:222.746667pt;}
.y1a8{bottom:222.906667pt;}
.y7e{bottom:223.386667pt;}
.yad{bottom:224.666667pt;}
.y2af{bottom:225.626667pt;}
.y3a{bottom:227.880000pt;}
.y282{bottom:228.666667pt;}
.y124{bottom:230.280000pt;}
.ydc{bottom:230.906667pt;}
.y2d5{bottom:233.466667pt;}
.y254{bottom:233.626667pt;}
.y1a7{bottom:233.800000pt;}
.y177{bottom:234.426667pt;}
.y2c{bottom:234.746667pt;}
.y160{bottom:235.560000pt;}
.y205{bottom:235.706667pt;}
.y230{bottom:238.586667pt;}
.ycd{bottom:238.906667pt;}
.y19e{bottom:241.626667pt;}
.y7d{bottom:243.226667pt;}
.y123{bottom:243.880000pt;}
.yac{bottom:244.506667pt;}
.y2ae{bottom:244.986667pt;}
.y176{bottom:245.320000pt;}
.y281{bottom:246.106667pt;}
.y15f{bottom:249.320000pt;}
.ydb{bottom:250.746667pt;}
.y38{bottom:250.920000pt;}
.y2d4{bottom:253.466667pt;}
.y1dd{bottom:254.266667pt;}
.y1a6{bottom:254.280000pt;}
.y1bc{bottom:254.426667pt;}
.y253{bottom:254.746667pt;}
.y2b{bottom:255.226667pt;}
.y204{bottom:255.706667pt;}
.y26{bottom:256.840000pt;}
.y122{bottom:257.640000pt;}
.ycc{bottom:258.586667pt;}
.y22f{bottom:258.906667pt;}
.y19d{bottom:260.186667pt;}
.y280{bottom:262.586667pt;}
.y188{bottom:262.760000pt;}
.y7c{bottom:262.906667pt;}
.y15e{bottom:262.920000pt;}
.yab{bottom:264.346667pt;}
.y174{bottom:265.800000pt;}
.yda{bottom:270.586667pt;}
.y121{bottom:271.240000pt;}
.y2d3{bottom:273.466667pt;}
.y1dc{bottom:274.106667pt;}
.y1bb{bottom:274.266667pt;}
.y2a{bottom:275.706667pt;}
.y203{bottom:275.866667pt;}
.y15d{bottom:276.520000pt;}
.ycb{bottom:278.426667pt;}
.y22e{bottom:279.386667pt;}
.y19c{bottom:279.866667pt;}
.y27f{bottom:281.626667pt;}
.y7b{bottom:282.746667pt;}
.y2ad{bottom:283.706667pt;}
.yaa{bottom:284.026667pt;}
.y15c{bottom:290.120000pt;}
.yd9{bottom:290.266667pt;}
.y2d2{bottom:293.626667pt;}
.y1db{bottom:293.786667pt;}
.y1ba{bottom:293.946667pt;}
.y202{bottom:295.866667pt;}
.y29{bottom:296.186667pt;}
.y252{bottom:296.986667pt;}
.yca{bottom:298.266667pt;}
.y120{bottom:298.440000pt;}
.y19b{bottom:299.706667pt;}
.y22d{bottom:299.866667pt;}
.y27e{bottom:300.826667pt;}
.y7a{bottom:302.426667pt;}
.y2ac{bottom:303.066667pt;}
.y15b{bottom:303.720000pt;}
.ya9{bottom:303.866667pt;}
.yd8{bottom:310.106667pt;}
.y11e{bottom:312.200000pt;}
.y1da{bottom:313.626667pt;}
.y1b9{bottom:313.786667pt;}
.y201{bottom:315.866667pt;}
.y28{bottom:316.506667pt;}
.y15a{bottom:317.480000pt;}
.yc9{bottom:317.946667pt;}
.y251{bottom:318.106667pt;}
.y19a{bottom:319.546667pt;}
.y27d{bottom:319.866667pt;}
.y22c{bottom:320.346667pt;}
.y79{bottom:322.266667pt;}
.y2ab{bottom:322.426667pt;}
.ya8{bottom:323.546667pt;}
.yd7{bottom:329.786667pt;}
.y159{bottom:331.080000pt;}
.y1d9{bottom:333.306667pt;}
.y1b8{bottom:333.626667pt;}
.y200{bottom:336.026667pt;}
.y27{bottom:336.986667pt;}
.yc8{bottom:337.786667pt;}
.y27c{bottom:338.906667pt;}
.y199{bottom:339.226667pt;}
.y11d{bottom:339.400000pt;}
.y2aa{bottom:339.866667pt;}
.y22b{bottom:340.826667pt;}
.y78{bottom:342.106667pt;}
.ya7{bottom:343.386667pt;}
.yd6{bottom:347.226667pt;}
.y11c{bottom:353.000000pt;}
.y1d8{bottom:353.146667pt;}
.y1b7{bottom:353.306667pt;}
.y2d1{bottom:353.786667pt;}
.yd5{bottom:355.226667pt;}
.y1ff{bottom:356.026667pt;}
.y2a9{bottom:356.826667pt;}
.y152{bottom:357.346667pt;}
.y27b{bottom:358.106667pt;}
.y158{bottom:358.280000pt;}
.yc7{bottom:358.426667pt;}
.y198{bottom:359.066667pt;}
.y250{bottom:360.346667pt;}
.y22a{bottom:361.306667pt;}
.y77{bottom:361.786667pt;}
.ya6{bottom:363.066667pt;}
.y11a{bottom:366.600000pt;}
.y157{bottom:372.040000pt;}
.y1d7{bottom:372.826667pt;}
.y1b6{bottom:373.146667pt;}
.y2d0{bottom:373.786667pt;}
.y27a{bottom:375.386667pt;}
.y1fe{bottom:376.026667pt;}
.y2a8{bottom:376.186667pt;}
.yc6{bottom:378.746667pt;}
.y118{bottom:380.360000pt;}
.y24f{bottom:381.466667pt;}
.y76{bottom:381.626667pt;}
.ya5{bottom:382.906667pt;}
.y110{bottom:384.706667pt;}
.y156{bottom:385.640000pt;}
.y279{bottom:392.066667pt;}
.y1d6{bottom:392.706667pt;}
.y1b5{bottom:392.866667pt;}
.y2cf{bottom:393.826667pt;}
.y117{bottom:393.986667pt;}
.y2a7{bottom:395.586667pt;}
.y1fd{bottom:396.226667pt;}
.y197{bottom:398.626667pt;}
.yc5{bottom:399.266667pt;}
.y75{bottom:401.346667pt;}
.y229{bottom:402.146667pt;}
.ya4{bottom:402.626667pt;}
.y24e{bottom:402.786667pt;}
.y116{bottom:407.586667pt;}
.y187{bottom:409.186667pt;}
.y278{bottom:411.106667pt;}
.y1d5{bottom:412.546667pt;}
.y1b4{bottom:412.706667pt;}
.y155{bottom:412.866667pt;}
.y2ce{bottom:413.986667pt;}
.y2a6{bottom:415.106667pt;}
.y1fc{bottom:416.226667pt;}
.y196{bottom:418.306667pt;}
.y173{bottom:419.426667pt;}
.yc4{bottom:419.746667pt;}
.y74{bottom:421.186667pt;}
.ya3{bottom:422.466667pt;}
.y228{bottom:422.626667pt;}
.y24d{bottom:423.906667pt;}
.y154{bottom:426.466667pt;}
.y186{bottom:426.626667pt;}
.y277{bottom:430.146667pt;}
.y172{bottom:430.306667pt;}
.y1d4{bottom:432.226667pt;}
.y1b3{bottom:432.386667pt;}
.y2cd{bottom:433.986667pt;}
.y2a5{bottom:434.466667pt;}
.y115{bottom:434.946667pt;}
.y1fb{bottom:436.226667pt;}
.y195{bottom:438.146667pt;}
.yc3{bottom:440.226667pt;}
.y73{bottom:440.866667pt;}
.ya2{bottom:442.306667pt;}
.y227{bottom:443.106667pt;}
.y24c{bottom:445.026667pt;}
.y185{bottom:446.306667pt;}
.y276{bottom:447.586667pt;}
.y114{bottom:448.546667pt;}
.y170{bottom:450.786667pt;}
.y1d3{bottom:452.066667pt;}
.y1b2{bottom:452.226667pt;}
.y153{bottom:453.826667pt;}
.y2cc{bottom:453.986667pt;}
.y1fa{bottom:456.386667pt;}
.y194{bottom:457.986667pt;}
.y72{bottom:460.706667pt;}
.ya1{bottom:461.986667pt;}
.y113{bottom:462.146667pt;}
.y226{bottom:463.586667pt;}
.y275{bottom:464.066667pt;}
.y184{bottom:466.146667pt;}
.y147{bottom:467.426667pt;}
.y2a4{bottom:471.266667pt;}
.y1d2{bottom:471.746667pt;}
.y1b1{bottom:472.066667pt;}
.y2cb{bottom:474.146667pt;}
.y112{bottom:475.746667pt;}
.y1f9{bottom:476.386667pt;}
.y193{bottom:477.666667pt;}
.y71{bottom:480.546667pt;}
.yc2{bottom:481.026667pt;}
.ya0{bottom:481.826667pt;}
.y274{bottom:483.266667pt;}
.y225{bottom:484.066667pt;}
.y183{bottom:485.986667pt;}
.y24b{bottom:487.266667pt;}
.y2a3{bottom:488.226667pt;}
.y192{bottom:488.546667pt;}
.y111{bottom:489.346667pt;}
.y1d1{bottom:489.506667pt;}
.y1b0{bottom:491.746667pt;}
.y2ca{bottom:494.146667pt;}
.y150{bottom:494.786667pt;}
.y1f8{bottom:496.386667pt;}
.y70{bottom:500.226667pt;}
.y273{bottom:500.706667pt;}
.y9f{bottom:501.506667pt;}
.y10c{bottom:503.746667pt;}
.y224{bottom:504.386667pt;}
.y182{bottom:505.666667pt;}
.y1d0{bottom:506.946667pt;}
.y2a2{bottom:507.586667pt;}
.y14f{bottom:508.386667pt;}
.y191{bottom:509.026667pt;}
.y1af{bottom:511.586667pt;}
.y2c9{bottom:514.306667pt;}
.y1f7{bottom:516.546667pt;}
.y272{bottom:517.186667pt;}
.y10e{bottom:517.986667pt;}
.y6f{bottom:520.066667pt;}
.y9e{bottom:521.346667pt;}
.yc1{bottom:521.986667pt;}
.y223{bottom:524.866667pt;}
.y181{bottom:525.506667pt;}
.y1cf{bottom:526.626667pt;}
.y2a1{bottom:526.946667pt;}
.y24a{bottom:529.506667pt;}
.y1ae{bottom:531.266667pt;}
.y2c8{bottom:534.306667pt;}
.y14e{bottom:535.586667pt;}
.y271{bottom:536.226667pt;}
.y1f6{bottom:536.546667pt;}
.y6e{bottom:539.746667pt;}
.y9d{bottom:541.026667pt;}
.yc0{bottom:542.466667pt;}
.y180{bottom:545.186667pt;}
.y222{bottom:545.346667pt;}
.y2a0{bottom:546.306667pt;}
.y1ce{bottom:546.466667pt;}
.y14d{bottom:549.186667pt;}
.y249{bottom:550.626667pt;}
.y1ad{bottom:551.106667pt;}
.y2c7{bottom:554.306667pt;}
.y270{bottom:555.266667pt;}
.y1f5{bottom:556.546667pt;}
.y6d{bottom:559.586667pt;}
.y9c{bottom:560.866667pt;}
.y10b{bottom:562.306667pt;}
.ybf{bottom:562.946667pt;}
.y17f{bottom:565.026667pt;}
.y29f{bottom:565.666667pt;}
.y221{bottom:565.826667pt;}
.y1cd{bottom:566.306667pt;}
.y1ac{bottom:570.786667pt;}
.y248{bottom:571.746667pt;}
.y26f{bottom:574.466667pt;}
.y14c{bottom:576.546667pt;}
.y1f4{bottom:576.706667pt;}
.y6c{bottom:579.266667pt;}
.y9b{bottom:580.706667pt;}
.yf9{bottom:582.146667pt;}
.ybe{bottom:583.426667pt;}
.y10a{bottom:583.906667pt;}
.y17e{bottom:584.706667pt;}
.y29e{bottom:585.026667pt;}
.y1cc{bottom:585.986667pt;}
.y220{bottom:586.306667pt;}
.y14b{bottom:590.146667pt;}
.y1ab{bottom:590.626667pt;}
.y247{bottom:592.866667pt;}
.y26e{bottom:593.506667pt;}
.y2c6{bottom:594.466667pt;}
.y1f3{bottom:596.706667pt;}
.y6b{bottom:599.106667pt;}
.y9a{bottom:600.386667pt;}
.y1aa{bottom:601.533333pt;}
.yf8{bottom:601.853333pt;}
.y109{bottom:603.613333pt;}
.ybd{bottom:603.773333pt;}
.y29d{bottom:604.413333pt;}
.y24{bottom:604.573333pt;}
.y1cb{bottom:605.853333pt;}
.y21f{bottom:606.653333pt;}
.y26d{bottom:612.573333pt;}
.y22{bottom:613.693333pt;}
.y246{bottom:614.013333pt;}
.y2c5{bottom:614.493333pt;}
.y1f2{bottom:616.733333pt;}
.y14a{bottom:617.373333pt;}
.y6a{bottom:618.813333pt;}
.y99{bottom:620.253333pt;}
.yf7{bottom:621.693333pt;}
.y108{bottom:623.453333pt;}
.y29c{bottom:623.933333pt;}
.ybc{bottom:624.253333pt;}
.y1ca{bottom:625.533333pt;}
.y21e{bottom:627.133333pt;}
.y20{bottom:627.293333pt;}
.y26c{bottom:630.013333pt;}
.y149{bottom:631.133333pt;}
.y2c4{bottom:634.653333pt;}
.y245{bottom:635.133333pt;}
.y1f1{bottom:636.893333pt;}
.y69{bottom:638.653333pt;}
.y98{bottom:639.933333pt;}
.yf6{bottom:641.373333pt;}
.y1f{bottom:642.493333pt;}
.y107{bottom:643.133333pt;}
.y29b{bottom:643.293333pt;}
.ybb{bottom:644.733333pt;}
.y1c9{bottom:645.373333pt;}
.y26b{bottom:646.493333pt;}
.y21d{bottom:647.613333pt;}
.y2c3{bottom:654.653333pt;}
.y244{bottom:656.413333pt;}
.y1f0{bottom:656.893333pt;}
.y139{bottom:658.333333pt;}
.y68{bottom:658.493333pt;}
.y1d{bottom:658.813333pt;}
.y97{bottom:659.773333pt;}
.y29a{bottom:660.733333pt;}
.yf5{bottom:661.213333pt;}
.y106{bottom:662.973333pt;}
.y1c8{bottom:665.053333pt;}
.yba{bottom:665.213333pt;}
.y26a{bottom:665.693333pt;}
.y21c{bottom:668.093333pt;}
.y146{bottom:671.933333pt;}
.y1b{bottom:673.853333pt;}
.y2c2{bottom:674.653333pt;}
.y1ef{bottom:676.893333pt;}
.y243{bottom:677.533333pt;}
.y299{bottom:677.693333pt;}
.y67{bottom:678.493333pt;}
.y96{bottom:679.453333pt;}
.yf4{bottom:680.893333pt;}
.y105{bottom:682.653333pt;}
.yb9{bottom:684.733333pt;}
.y1c7{bottom:684.893333pt;}
.y145{bottom:685.693333pt;}
.y19{bottom:687.613333pt;}
.y21b{bottom:688.573333pt;}
.y2c1{bottom:694.813333pt;}
.y15{bottom:694.973333pt;}
.yb6{bottom:695.613333pt;}
.y1ee{bottom:697.053333pt;}
.y66{bottom:698.653333pt;}
.y95{bottom:699.293333pt;}
.yf3{bottom:700.733333pt;}
.y104{bottom:702.493333pt;}
.y269{bottom:703.773333pt;}
.y1c6{bottom:704.733333pt;}
.y21a{bottom:709.053333pt;}
.y144{bottom:712.893333pt;}
.y2c0{bottom:714.813333pt;}
.y298{bottom:716.413333pt;}
.y1ed{bottom:717.053333pt;}
.y65{bottom:718.333333pt;}
.y94{bottom:719.133333pt;}
.y242{bottom:719.773333pt;}
.y103{bottom:722.333333pt;}
.y268{bottom:722.973333pt;}
.y1c5{bottom:723.453333pt;}
.yf2{bottom:726.333333pt;}
.y143{bottom:726.493333pt;}
.y219{bottom:729.373333pt;}
.y1c4{bottom:733.053333pt;}
.y2ef{bottom:734.173333pt;}
.y2bf{bottom:734.813333pt;}
.y297{bottom:735.773333pt;}
.yb4{bottom:736.573333pt;}
.y1ec{bottom:737.053333pt;}
.y64{bottom:738.173333pt;}
.y93{bottom:738.813333pt;}
.y142{bottom:740.093333pt;}
.y241{bottom:740.893333pt;}
.y102{bottom:742.013333pt;}
.y218{bottom:749.853333pt;}
.y296{bottom:752.573333pt;}
.y141{bottom:753.853333pt;}
.yf1{bottom:754.653333pt;}
.y2be{bottom:754.973333pt;}
.y1eb{bottom:757.213333pt;}
.y63{bottom:757.853333pt;}
.y92{bottom:758.653333pt;}
.y267{bottom:759.453333pt;}
.y101{bottom:761.853333pt;}
.y240{bottom:762.013333pt;}
.y140{bottom:767.453333pt;}
.y295{bottom:768.093333pt;}
.y13{bottom:769.853333pt;}
.y217{bottom:770.333333pt;}
.y1c3{bottom:774.013333pt;}
.yf0{bottom:774.493333pt;}
.y2bd{bottom:774.973333pt;}
.y2e4{bottom:775.613333pt;}
.y266{bottom:775.933333pt;}
.y1ea{bottom:777.213333pt;}
.y62{bottom:777.693333pt;}
.y10{bottom:777.853333pt;}
.y2ee{bottom:778.013333pt;}
.y91{bottom:778.333333pt;}
.y13f{bottom:781.053333pt;}
.y100{bottom:781.533333pt;}
.y23f{bottom:783.133333pt;}
.y294{bottom:787.453333pt;}
.y216{bottom:790.813333pt;}
.yef{bottom:794.173333pt;}
.y13e{bottom:794.653333pt;}
.y265{bottom:794.973333pt;}
.y1e9{bottom:797.213333pt;}
.y61{bottom:797.533333pt;}
.y90{bottom:798.173333pt;}
.yff{bottom:801.373333pt;}
.y23e{bottom:804.253333pt;}
.y293{bottom:806.813333pt;}
.y13c{bottom:808.413333pt;}
.y215{bottom:811.333333pt;}
.yee{bottom:814.053333pt;}
.y264{bottom:814.213333pt;}
.y2bc{bottom:815.173333pt;}
.y2ed{bottom:816.293333pt;}
.y60{bottom:817.253333pt;}
.y1e8{bottom:817.413333pt;}
.y8f{bottom:817.893333pt;}
.y2e3{bottom:819.333333pt;}
.yfe{bottom:821.093333pt;}
.y13b{bottom:822.053333pt;}
.ye{bottom:824.453333pt;}
.y23d{bottom:825.413333pt;}
.y292{bottom:826.213333pt;}
.yb{bottom:828.933333pt;}
.y263{bottom:831.493333pt;}
.y214{bottom:831.813333pt;}
.yed{bottom:833.733333pt;}
.y2bb{bottom:835.173333pt;}
.y2ec{bottom:835.333333pt;}
.y12f{bottom:835.653333pt;}
.y5f{bottom:837.093333pt;}
.y1e7{bottom:837.413333pt;}
.y8e{bottom:837.733333pt;}
.yfd{bottom:840.933333pt;}
.y2e2{bottom:841.093333pt;}
.y291{bottom:845.573333pt;}
.y23c{bottom:846.533333pt;}
.y262{bottom:848.133333pt;}
.y16d{bottom:849.253333pt;}
.y213{bottom:852.133333pt;}
.yec{bottom:853.573333pt;}
.y2eb{bottom:854.533333pt;}
.y2ba{bottom:855.173333pt;}
.y5e{bottom:856.773333pt;}
.y8d{bottom:857.413333pt;}
.yfc{bottom:860.773333pt;}
.y138{bottom:862.853333pt;}
.y2e1{bottom:863.013333pt;}
.y290{bottom:864.933333pt;}
.y261{bottom:867.173333pt;}
.y23b{bottom:867.653333pt;}
.y2ea{bottom:871.813333pt;}
.yeb{bottom:872.453333pt;}
.y212{bottom:872.613333pt;}
.y2b9{bottom:875.333333pt;}
.y5d{bottom:876.613333pt;}
.y8c{bottom:877.253333pt;}
.yfb{bottom:880.773333pt;}
.y28f{bottom:882.373333pt;}
.y2e0{bottom:884.773333pt;}
.y260{bottom:886.213333pt;}
.y2e9{bottom:888.453333pt;}
.yfa{bottom:888.773333pt;}
.y137{bottom:890.213333pt;}
.yea{bottom:890.853333pt;}
.y211{bottom:893.093333pt;}
.y2b8{bottom:895.333333pt;}
.y5c{bottom:896.293333pt;}
.y8b{bottom:897.093333pt;}
.y28e{bottom:899.493333pt;}
.ya{bottom:900.933333pt;}
.y16c{bottom:903.813333pt;}
.y25f{bottom:905.413333pt;}
.y2df{bottom:906.533333pt;}
.y2e8{bottom:907.493333pt;}
.y23a{bottom:910.053333pt;}
.ye9{bottom:910.693333pt;}
.y210{bottom:913.573333pt;}
.y2b7{bottom:915.333333pt;}
.y4{bottom:915.813333pt;}
.y5b{bottom:916.133333pt;}
.y8a{bottom:916.773333pt;}
.y136{bottom:917.413333pt;}
.y28d{bottom:918.853333pt;}
.y25e{bottom:924.453333pt;}
.y2e7{bottom:926.533333pt;}
.y47{bottom:927.360000pt;}
.y2de{bottom:928.453333pt;}
.ye8{bottom:930.373333pt;}
.y135{bottom:931.013333pt;}
.y239{bottom:931.173333pt;}
.y20f{bottom:934.053333pt;}
.y2b6{bottom:935.493333pt;}
.y5a{bottom:935.813333pt;}
.y89{bottom:936.613333pt;}
.y28c{bottom:938.213333pt;}
.y25d{bottom:941.893333pt;}
.y134{bottom:944.773333pt;}
.y2e6{bottom:945.733333pt;}
.ye7{bottom:948.133333pt;}
.y2dd{bottom:950.213333pt;}
.y238{bottom:952.293333pt;}
.y20e{bottom:954.533333pt;}
.ye5{bottom:955.333333pt;}
.y2b5{bottom:955.493333pt;}
.y59{bottom:955.653333pt;}
.y88{bottom:956.293333pt;}
.y28b{bottom:957.573333pt;}
.y133{bottom:958.373333pt;}
.y2e5{bottom:962.213333pt;}
.ye4{bottom:963.333333pt;}
.y132{bottom:971.973333pt;}
.y237{bottom:973.413333pt;}
.y20d{bottom:974.853333pt;}
.y58{bottom:975.493333pt;}
.y87{bottom:976.133333pt;}
.y28a{bottom:976.933333pt;}
.y25c{bottom:977.413333pt;}
.ye6{bottom:981.093333pt;}
.y131{bottom:985.573333pt;}
.y2dc{bottom:993.893333pt;}
.y236{bottom:994.533333pt;}
.y57{bottom:995.173333pt;}
.y20c{bottom:995.333333pt;}
.y2b4{bottom:995.653333pt;}
.y86{bottom:995.813333pt;}
.y289{bottom:996.293333pt;}
.y25b{bottom:996.613333pt;}
.y12e{bottom:999.333333pt;}
.y12d{bottom:1012.933333pt;}
.y85{bottom:1015.653333pt;}
.y56{bottom:1015.813333pt;}
.y50{bottom:1032.000000pt;}
.y4e{bottom:1054.080000pt;}
.h30{height:1.777500pt;}
.hb{height:4.466667pt;}
.h23{height:5.906667pt;}
.h13{height:7.360000pt;}
.hf{height:8.000000pt;}
.h1f{height:9.120000pt;}
.hc{height:10.835938pt;}
.h45{height:13.586667pt;}
.h4c{height:13.598667pt;}
.h1e{height:13.600000pt;}
.h48{height:13.618667pt;}
.h51{height:13.620000pt;}
.h4e{height:13.626667pt;}
.h54{height:13.632000pt;}
.h47{height:13.746667pt;}
.h4d{height:13.758667pt;}
.h15{height:13.760000pt;}
.h4a{height:13.792000pt;}
.h24{height:14.705625pt;}
.h17{height:15.040000pt;}
.h1c{height:15.200000pt;}
.h36{height:15.680000pt;}
.h19{height:16.320000pt;}
.h2d{height:17.120000pt;}
.h29{height:17.266667pt;}
.h2e{height:17.278667pt;}
.h2c{height:17.280000pt;}
.h2b{height:17.312000pt;}
.h14{height:18.716250pt;}
.h10{height:20.422500pt;}
.h59{height:20.466667pt;}
.h12{height:21.316250pt;}
.h27{height:22.386667pt;}
.h25{height:23.026667pt;}
.h37{height:24.798667pt;}
.h2{height:25.598667pt;}
.h26{height:25.907188pt;}
.h49{height:27.186667pt;}
.h4b{height:27.200000pt;}
.h55{height:27.346667pt;}
.h44{height:27.826667pt;}
.h39{height:30.830625pt;}
.h20{height:31.640625pt;}
.h5f{height:32.432187pt;}
.h5b{height:35.253125pt;}
.h2a{height:35.975313pt;}
.h63{height:36.703125pt;}
.h28{height:36.883125pt;}
.h18{height:39.840000pt;}
.he{height:39.876250pt;}
.h1b{height:40.618125pt;}
.h42{height:40.723437pt;}
.h5d{height:40.786667pt;}
.h56{height:40.820000pt;}
.h3c{height:40.960000pt;}
.h3f{height:42.862500pt;}
.h1a{height:44.533750pt;}
.h3{height:44.975625pt;}
.h22{height:45.585938pt;}
.hd{height:46.580000pt;}
.h16{height:47.460938pt;}
.h33{height:48.000000pt;}
.h6{height:48.406250pt;}
.h35{height:49.852500pt;}
.h34{height:49.920000pt;}
.h8{height:50.712187pt;}
.h1d{height:52.523438pt;}
.h9{height:53.454805pt;}
.h32{height:56.160000pt;}
.ha{height:57.647187pt;}
.h7{height:59.186667pt;}
.h3a{height:59.531250pt;}
.h4{height:62.812500pt;}
.h38{height:64.500000pt;}
.h11{height:74.880000pt;}
.h3e{height:77.585938pt;}
.h41{height:91.531250pt;}
.h3d{height:96.011250pt;}
.h43{height:96.622500pt;}
.h31{height:101.920000pt;}
.h2f{height:108.672000pt;}
.h5{height:110.746667pt;}
.h5c{height:139.533333pt;}
.h58{height:144.786667pt;}
.h5a{height:144.813333pt;}
.h61{height:146.720000pt;}
.h62{height:153.626667pt;}
.h40{height:156.811250pt;}
.h4f{height:163.666667pt;}
.h57{height:177.280000pt;}
.h50{height:177.306667pt;}
.h5e{height:181.306667pt;}
.h52{height:190.906667pt;}
.h3b{height:210.906667pt;}
.h21{height:347.733333pt;}
.h53{height:368.225333pt;}
.h60{height:376.853333pt;}
.h46{height:395.585333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w21{width:29.426667pt;}
.w1f{width:31.186667pt;}
.w1d{width:33.586667pt;}
.w1b{width:34.226667pt;}
.w1a{width:40.146667pt;}
.w1e{width:42.578667pt;}
.w1c{width:45.586667pt;}
.w10{width:46.390667pt;}
.w20{width:47.346667pt;}
.w14{width:73.430667pt;}
.w18{width:73.778667pt;}
.w16{width:74.386667pt;}
.w19{width:76.786667pt;}
.w17{width:79.186667pt;}
.w4{width:90.070667pt;}
.w9{width:137.270667pt;}
.w8{width:216.813333pt;}
.w15{width:222.453333pt;}
.w3{width:235.693333pt;}
.w11{width:249.173333pt;}
.w22{width:288.013333pt;}
.w13{width:288.017333pt;}
.wc{width:289.613333pt;}
.wf{width:296.493333pt;}
.we{width:300.697333pt;}
.w12{width:301.613333pt;}
.wb{width:310.457333pt;}
.w2{width:368.377333pt;}
.w7{width:383.257333pt;}
.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;}
.x3f{left:0.960000pt;}
.x33{left:2.066667pt;}
.x2{left:3.350667pt;}
.x36{left:4.480000pt;}
.x17{left:5.746667pt;}
.xa{left:6.866667pt;}
.x3d{left:7.826667pt;}
.x3e{left:8.826667pt;}
.x29{left:9.746667pt;}
.x35{left:10.720000pt;}
.x31{left:12.146667pt;}
.x38{left:13.586667pt;}
.x2b{left:14.706667pt;}
.x15{left:15.830667pt;}
.x39{left:16.786667pt;}
.x3b{left:18.266667pt;}
.x3a{left:19.346667pt;}
.x3c{left:20.320000pt;}
.x2d{left:21.306667pt;}
.x2f{left:24.640000pt;}
.x19{left:28.946667pt;}
.xd{left:34.106667pt;}
.x1{left:94.921333pt;}
.x5{left:96.032000pt;}
.x14{left:108.466667pt;}
.x1a{left:127.506667pt;}
.x16{left:146.120000pt;}
.x27{left:169.480000pt;}
.x4{left:175.706667pt;}
.x1f{left:183.066667pt;}
.x6{left:186.120000pt;}
.xe{left:196.546667pt;}
.x23{left:209.626667pt;}
.x21{left:224.986667pt;}
.x20{left:230.266667pt;}
.x24{left:233.146667pt;}
.xb{left:234.120000pt;}
.xf{left:243.293333pt;}
.x10{left:269.693333pt;}
.x41{left:273.946667pt;}
.x40{left:278.425333pt;}
.x22{left:280.546667pt;}
.x1c{left:288.025333pt;}
.x11{left:303.133333pt;}
.x7{left:327.572000pt;}
.x28{left:391.946667pt;}
.x18{left:395.306667pt;}
.x13{left:400.426667pt;}
.xc{left:407.306667pt;}
.x1b{left:411.293333pt;}
.x30{left:432.106667pt;}
.x3{left:463.306667pt;}
.x2a{left:466.346667pt;}
.x9{left:480.106667pt;}
.x8{left:485.532000pt;}
.x25{left:498.333333pt;}
.x1d{left:508.093333pt;}
.x12{left:510.213333pt;}
.x32{left:511.946667pt;}
.x2c{left:545.546667pt;}
.x26{left:554.853333pt;}
.x1e{left:586.533333pt;}
.x34{left:588.133333pt;}
.x2e{left:619.333333pt;}
.x37{left:666.693333pt;}
}




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