
    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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.281250;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_850748854d028d5c44464164.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.972168;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_993e0b9ad90ed04fda8b2d5a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6508a7f393651e97bf990d2e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024902;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_25b95b3119e305c570f748d4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.750000;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_dce380279b8fd30af692c446.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_580a4dce988cec6f243e2c2e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.956543;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_0d4bc5628ee7700a771e91ae.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.866699;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_83daa8a1158002d54543dd1e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.875488;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_f427a0241732b1ae1eaf3d14.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_21d6f9dc6172fab626742032.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_470671982f98852b34297ea6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.435059;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_cbd2f5ba1c351c52a65a75aa.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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_e12e65ae61c8d29290462dcc.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_753192d3fc2f93b5a694b499.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;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_c2476f29ed5109fce3f5fe21.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;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_5b94fdd0198b6691766748d9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938965;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_e7b9de772898932df483b67f.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910156;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_66ca8ae132fd1c8323357b3b.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;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_3f1f70b7047c5794f72bcf16.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.715820;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_885318626047463463588672.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.432129;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_62046625fbf540b35c1c7271.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.432129;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_e9c4eb9a409c87a02b38d973.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.432129;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_3f1f70b7047c5794f72bcf16.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.715820;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_5b3a1ac15d7591927bd23b6d.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_23bbda4432fe8b12ecc60476.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_a9f14bf87535c44bda0e597a.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_f2b8f924ffc45f3a323f1ad1.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.432129;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;}
.m3{transform:matrix(0.186258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186258,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.236696,0.000000,-0.078891,0.237226,0,0);-ms-transform:matrix(0.236696,0.000000,-0.078891,0.237226,0,0);-webkit-transform:matrix(0.236696,0.000000,-0.078891,0.237226,0,0);}
.m4{transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249441,0.000000,0.000000,0.250000,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);}
.m2{transform:matrix(0.258258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258258,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-30.240000px;}
.v3{vertical-align:-9.360000px;}
.v8{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:9.360000px;}
.v5{vertical-align:17.658840px;}
.v1{vertical-align:30.240000px;}
.v4{vertical-align:49.663687px;}
.v6{vertical-align:56.454048px;}
.ls13{letter-spacing:-1.026000px;}
.ls21{letter-spacing:-0.984000px;}
.ls20{letter-spacing:-0.942000px;}
.ls15{letter-spacing:-0.828000px;}
.ls6{letter-spacing:-0.457800px;}
.ls12{letter-spacing:-0.414600px;}
.lse{letter-spacing:-0.368400px;}
.ls5{letter-spacing:-0.351600px;}
.lsd{letter-spacing:-0.305400px;}
.ls9{letter-spacing:-0.296400px;}
.ls1b{letter-spacing:-0.262200px;}
.ls1d{letter-spacing:-0.178800px;}
.ls7{letter-spacing:-0.109200px;}
.ls22{letter-spacing:-0.089400px;}
.ls3{letter-spacing:-0.078156px;}
.ls8{letter-spacing:-0.078000px;}
.ls28{letter-spacing:-0.066000px;}
.ls4{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.017400px;}
.ls25{letter-spacing:0.034560px;}
.ls1f{letter-spacing:0.034800px;}
.ls1{letter-spacing:0.056640px;}
.ls0{letter-spacing:0.080640px;}
.ls1e{letter-spacing:0.089400px;}
.ls23{letter-spacing:0.261360px;}
.ls10{letter-spacing:0.262080px;}
.lsa{letter-spacing:0.262200px;}
.ls29{letter-spacing:0.304800px;}
.ls16{letter-spacing:0.305280px;}
.lsb{letter-spacing:0.305400px;}
.ls11{letter-spacing:0.354240px;}
.ls1c{letter-spacing:0.494400px;}
.ls24{letter-spacing:0.558720px;}
.ls1a{letter-spacing:0.612000px;}
.ls2{letter-spacing:0.619200px;}
.ls27{letter-spacing:1.339200px;}
.ls18{letter-spacing:17.634240px;}
.ls19{letter-spacing:19.074240px;}
.ls14{letter-spacing:52.145280px;}
.ls2a{letter-spacing:74.880000px;}
.lsf{letter-spacing:81.230400px;}
.lsc{letter-spacing:216.369706px;}
.ls17{letter-spacing:370.552258px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-66.240000px;}
.ws1a{word-spacing:-41.917057px;}
.ws19{word-spacing:-39.775291px;}
.wsf{word-spacing:-38.880030px;}
.ws12{word-spacing:-36.365760px;}
.ws2{word-spacing:-24.624000px;}
.wsd{word-spacing:-23.316480px;}
.wse{word-spacing:-22.948080px;}
.ws8{word-spacing:-22.654080px;}
.ws1f{word-spacing:-21.712080px;}
.ws29{word-spacing:-20.016000px;}
.wsc{word-spacing:-18.720120px;}
.wsa{word-spacing:-18.676920px;}
.ws9{word-spacing:-18.414720px;}
.ws5{word-spacing:-18.305520px;}
.ws21{word-spacing:-18.152520px;}
.wsb{word-spacing:-18.109320px;}
.ws1d{word-spacing:-18.000120px;}
.ws3{word-spacing:-17.956920px;}
.ws15{word-spacing:-17.586720px;}
.ws14{word-spacing:-17.388720px;}
.ws27{word-spacing:-15.137520px;}
.ws25{word-spacing:-15.120120px;}
.ws24{word-spacing:-15.102720px;}
.ws28{word-spacing:-15.036720px;}
.ws1c{word-spacing:-11.698680px;}
.ws4{word-spacing:-11.609280px;}
.ws22{word-spacing:-11.519880px;}
.ws1b{word-spacing:-11.430480px;}
.ws26{word-spacing:-9.521280px;}
.ws0{word-spacing:-0.463680px;}
.ws13{word-spacing:-0.113081px;}
.ws18{word-spacing:-0.072450px;}
.ws11{word-spacing:-0.070820px;}
.ws6{word-spacing:0.000000px;}
.ws7{word-spacing:15.201840px;}
.ws16{word-spacing:23.735640px;}
.ws1e{word-spacing:34.668720px;}
.ws23{word-spacing:57.397175px;}
.ws20{word-spacing:72.801600px;}
.ws17{word-spacing:108.528512px;}
.ws10{word-spacing:291.835177px;}
._11{margin-left:-345.925970px;}
._e{margin-left:-335.355474px;}
._a{margin-left:-305.332383px;}
._8{margin-left:-268.417225px;}
._4{margin-left:-254.050898px;}
._5{margin-left:-216.787612px;}
._f{margin-left:-164.729403px;}
._9{margin-left:-151.820993px;}
._10{margin-left:-143.652415px;}
._6{margin-left:-112.863841px;}
._7{margin-left:-107.485727px;}
._2{margin-left:-2.252425px;}
._0{margin-left:-1.192121px;}
._1{width:1.067723px;}
._3{width:2.186384px;}
._14{width:3.380544px;}
._16{width:16.672121px;}
._15{width:17.712000px;}
._18{width:27.968702px;}
._17{width:29.232000px;}
._13{width:39.247862px;}
._b{width:42.651671px;}
._1b{width:44.928000px;}
._19{width:46.152000px;}
._1a{width:47.716145px;}
._12{width:76.077104px;}
._c{width:165.936809px;}
._d{width:186.754486px;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.309587px;}
.fs3{font-size:41.760000px;}
.fs8{font-size:59.760000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:60.120000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:70.819727px;}
.fs1{font-size:72.000000px;}
.fsa{font-size:72.450438px;}
.fsb{font-size:76.351652px;}
.fs9{font-size:95.620255px;}
.fs5{font-size:106.229590px;}
.y0{bottom:0.000000px;}
.ye9{bottom:4.094489px;}
.y90{bottom:5.382633px;}
.y1d4{bottom:8.100000px;}
.y1d9{bottom:8.145000px;}
.y1d8{bottom:8.280000px;}
.y1d6{bottom:8.820000px;}
.y1d2{bottom:9.180000px;}
.y145{bottom:9.360000px;}
.y144{bottom:10.260000px;}
.y147{bottom:17.100000px;}
.y93{bottom:17.798555px;}
.y8f{bottom:18.122637px;}
.y1f1{bottom:18.180000px;}
.ye8{bottom:18.208001px;}
.ye7{bottom:18.281379px;}
.y1ee{bottom:18.360000px;}
.y95{bottom:20.190000px;}
.y91{bottom:22.213265px;}
.y133{bottom:24.480000px;}
.y1f0{bottom:27.000000px;}
.y1ed{bottom:27.180000px;}
.yea{bottom:29.578646px;}
.yec{bottom:31.140000px;}
.y41{bottom:33.498900px;}
.y92{bottom:40.155857px;}
.y181{bottom:45.000000px;}
.y40{bottom:50.422680px;}
.y3f{bottom:67.436640px;}
.y3e{bottom:84.450600px;}
.y3d{bottom:101.464560px;}
.yc2{bottom:111.960000px;}
.y15d{bottom:113.220000px;}
.y5c{bottom:118.440000px;}
.y3c{bottom:118.478520px;}
.y173{bottom:122.760000px;}
.y131{bottom:125.820000px;}
.y18f{bottom:128.160000px;}
.y78{bottom:130.320000px;}
.y106{bottom:133.200000px;}
.y3b{bottom:135.402300px;}
.y97{bottom:140.940000px;}
.ye3{bottom:144.000000px;}
.yc1{bottom:149.760000px;}
.y15c{bottom:151.200000px;}
.y3a{bottom:152.416260px;}
.y5b{bottom:156.420000px;}
.y172{bottom:160.740000px;}
.y130{bottom:163.800000px;}
.yf1{bottom:165.600000px;}
.y18e{bottom:165.960000px;}
.y77{bottom:168.300000px;}
.y39{bottom:169.430220px;}
.y105{bottom:171.180000px;}
.y1b4{bottom:171.360000px;}
.yab{bottom:172.260000px;}
.y14c{bottom:174.780000px;}
.y96{bottom:178.740000px;}
.ye2{bottom:181.800000px;}
.y38{bottom:186.444180px;}
.yc0{bottom:187.740000px;}
.y15b{bottom:189.180000px;}
.y1a1{bottom:189.720000px;}
.y1cf{bottom:192.420000px;}
.y183{bottom:192.960000px;}
.yd3{bottom:195.120000px;}
.y171{bottom:198.720000px;}
.y12f{bottom:201.780000px;}
.y37{bottom:203.458140px;}
.yf0{bottom:204.840000px;}
.y11a{bottom:207.720000px;}
.y104{bottom:208.980000px;}
.y1b3{bottom:209.340000px;}
.yaa{bottom:210.240000px;}
.y94{bottom:212.040000px;}
.y8e{bottom:212.115000px;}
.y5a{bottom:212.400000px;}
.y18d{bottom:212.940000px;}
.y14b{bottom:214.050000px;}
.ye1{bottom:219.810000px;}
.y36{bottom:220.381920px;}
.y76{bottom:224.130000px;}
.ybf{bottom:225.750000px;}
.y1a0{bottom:227.730000px;}
.y15a{bottom:228.450000px;}
.y1ce{bottom:230.430000px;}
.y182{bottom:230.790000px;}
.y1e9{bottom:233.310000px;}
.yd2{bottom:234.390000px;}
.y170{bottom:236.730000px;}
.y35{bottom:237.395880px;}
.y12e{bottom:239.790000px;}
.yef{bottom:244.110000px;}
.y119{bottom:245.730000px;}
.y103{bottom:246.990000px;}
.y1b2{bottom:247.350000px;}
.ya9{bottom:248.250000px;}
.y59{bottom:250.410000px;}
.y14a{bottom:252.030000px;}
.y34{bottom:254.409840px;}
.ye0{bottom:257.790000px;}
.y75{bottom:262.110000px;}
.ybe{bottom:263.730000px;}
.y180{bottom:264.090000px;}
.y19f{bottom:265.710000px;}
.y159{bottom:267.510000px;}
.y1cd{bottom:268.410000px;}
.y18c{bottom:270.030000px;}
.y33{bottom:271.423800px;}
.yd1{bottom:274.710000px;}
.y12d{bottom:277.590000px;}
.yee{bottom:283.350000px;}
.y118{bottom:283.710000px;}
.y102{bottom:284.970000px;}
.y1b1{bottom:285.330000px;}
.ya8{bottom:286.050000px;}
.y58{bottom:288.390000px;}
.y32{bottom:288.437760px;}
.y149{bottom:290.010000px;}
.y1bf{bottom:295.590000px;}
.y1e8{bottom:296.130000px;}
.y74{bottom:300.090000px;}
.y19e{bottom:303.510000px;}
.y31{bottom:305.361540px;}
.y8d{bottom:305.490000px;}
.y1cc{bottom:306.390000px;}
.y18b{bottom:308.010000px;}
.ydf{bottom:313.770000px;}
.yd0{bottom:313.950000px;}
.y12c{bottom:315.570000px;}
.ybd{bottom:319.710000px;}
.y117{bottom:321.510000px;}
.y30{bottom:322.375500px;}
.y101{bottom:322.950000px;}
.y1b0{bottom:323.310000px;}
.y158{bottom:323.490000px;}
.ya7{bottom:324.030000px;}
.y1e7{bottom:324.750000px;}
.y57{bottom:326.190000px;}
.y148{bottom:329.070000px;}
.y1be{bottom:333.570000px;}
.y73{bottom:338.070000px;}
.y2f{bottom:339.389460px;}
.yed{bottom:340.410000px;}
.y16f{bottom:340.770000px;}
.y19d{bottom:341.490000px;}
.y1cb{bottom:344.190000px;}
.y8c{bottom:344.550000px;}
.y18a{bottom:345.990000px;}
.yde{bottom:351.750000px;}
.ycf{bottom:351.930000px;}
.y12b{bottom:353.550000px;}
.y1e6{bottom:354.990000px;}
.y2e{bottom:356.403420px;}
.ybc{bottom:357.510000px;}
.y100{bottom:360.930000px;}
.y157{bottom:361.470000px;}
.ya6{bottom:362.010000px;}
.y146{bottom:363.630000px;}
.y56{bottom:364.170000px;}
.y1bd{bottom:371.550000px;}
.y202{bottom:372.810000px;}
.y2d{bottom:373.417380px;}
.yeb{bottom:373.710000px;}
.y72{bottom:376.050000px;}
.y116{bottom:377.490000px;}
.y16e{bottom:378.750000px;}
.y1af{bottom:379.290000px;}
.y19c{bottom:379.470000px;}
.y1ca{bottom:382.170000px;}
.ye6{bottom:382.740000px;}
.ydd{bottom:389.550000px;}
.y2c{bottom:390.431340px;}
.y12a{bottom:391.530000px;}
.ybb{bottom:395.490000px;}
.y17f{bottom:396.750000px;}
.yff{bottom:398.910000px;}
.y156{bottom:399.450000px;}
.ya5{bottom:399.990000px;}
.y8b{bottom:400.530000px;}
.y189{bottom:401.970000px;}
.y55{bottom:402.150000px;}
.y2b{bottom:407.355120px;}
.yce{bottom:407.910000px;}
.y143{bottom:409.530000px;}
.y115{bottom:415.470000px;}
.y1ae{bottom:417.090000px;}
.y1c9{bottom:420.150000px;}
.y2a{bottom:424.369080px;}
.y201{bottom:425.730000px;}
.y19b{bottom:426.450000px;}
.ydc{bottom:427.530000px;}
.y129{bottom:429.510000px;}
.y71{bottom:431.850000px;}
.yba{bottom:433.470000px;}
.y16d{bottom:434.550000px;}
.y17e{bottom:435.810000px;}
.yfe{bottom:436.710000px;}
.y8a{bottom:438.510000px;}
.y188{bottom:439.950000px;}
.y29{bottom:441.383040px;}
.ycd{bottom:445.710000px;}
.y1bc{bottom:447.555000px;}
.y114{bottom:453.495000px;}
.y1ad{bottom:455.115000px;}
.ya4{bottom:456.015000px;}
.y155{bottom:456.555000px;}
.y54{bottom:458.175000px;}
.y28{bottom:458.397000px;}
.ydb{bottom:465.555000px;}
.y128{bottom:467.355000px;}
.y70{bottom:469.875000px;}
.y16c{bottom:472.575000px;}
.yb9{bottom:472.755000px;}
.y27{bottom:475.410960px;}
.y89{bottom:476.355000px;}
.y187{bottom:477.795000px;}
.y200{bottom:478.695000px;}
.ye5{bottom:478.875000px;}
.y142{bottom:480.315000px;}
.ycc{bottom:483.735000px;}
.y1bb{bottom:485.355000px;}
.y1e5{bottom:487.695000px;}
.y113{bottom:491.475000px;}
.y26{bottom:492.334740px;}
.y19a{bottom:492.555000px;}
.yfd{bottom:492.735000px;}
.y1ac{bottom:493.095000px;}
.ya3{bottom:493.815000px;}
.y53{bottom:496.155000px;}
.y154{bottom:497.055000px;}
.yda{bottom:503.535000px;}
.y6f{bottom:507.855000px;}
.y25{bottom:509.348700px;}
.y16b{bottom:510.555000px;}
.y88{bottom:515.595000px;}
.y1e4{bottom:516.315000px;}
.ye4{bottom:516.855000px;}
.y141{bottom:518.295000px;}
.ycb{bottom:521.715000px;}
.y127{bottom:523.335000px;}
.y24{bottom:526.362660px;}
.y112{bottom:529.455000px;}
.yb8{bottom:529.815000px;}
.y199{bottom:530.535000px;}
.yfc{bottom:530.715000px;}
.y1ab{bottom:531.075000px;}
.y1ff{bottom:531.615000px;}
.ya2{bottom:533.055000px;}
.y52{bottom:533.955000px;}
.y1c8{bottom:534.135000px;}
.y23{bottom:543.376620px;}
.y1e3{bottom:544.935000px;}
.y6e{bottom:545.835000px;}
.y16a{bottom:549.795000px;}
.yd9{bottom:550.515000px;}
.y17d{bottom:553.395000px;}
.y153{bottom:554.295000px;}
.y87{bottom:554.835000px;}
.y186{bottom:555.915000px;}
.yca{bottom:559.695000px;}
.y22{bottom:560.390580px;}
.y126{bottom:561.315000px;}
.y111{bottom:568.515000px;}
.yfb{bottom:568.695000px;}
.yb7{bottom:569.055000px;}
.y198{bottom:569.595000px;}
.y1fe{bottom:569.775000px;}
.y51{bottom:571.935000px;}
.ya1{bottom:572.295000px;}
.y1e2{bottom:573.735000px;}
.y140{bottom:574.275000px;}
.y21{bottom:577.314360px;}
.y6d{bottom:583.815000px;}
.y1aa{bottom:587.055000px;}
.y17c{bottom:591.375000px;}
.y86{bottom:592.815000px;}
.y185{bottom:593.895000px;}
.y20{bottom:594.328320px;}
.yc9{bottom:598.755000px;}
.y125{bottom:599.295000px;}
.y1e1{bottom:602.355000px;}
.yfa{bottom:606.675000px;}
.y169{bottom:606.855000px;}
.yb6{bottom:608.295000px;}
.yd8{bottom:608.655000px;}
.y1c7{bottom:609.915000px;}
.y197{bottom:610.095000px;}
.ya0{bottom:610.275000px;}
.y1f{bottom:611.342280px;}
.y13f{bottom:612.255000px;}
.y1fd{bottom:622.515000px;}
.y1a9{bottom:624.855000px;}
.y110{bottom:625.755000px;}
.y50{bottom:627.915000px;}
.y1e{bottom:628.356240px;}
.y85{bottom:630.795000px;}
.y1e0{bottom:630.975000px;}
.y124{bottom:637.275000px;}
.yc8{bottom:637.995000px;}
.y6c{bottom:639.795000px;}
.y168{bottom:644.835000px;}
.y1d{bottom:645.370200px;}
.yb5{bottom:646.275000px;}
.y17b{bottom:647.355000px;}
.y1c6{bottom:647.895000px;}
.y9f{bottom:648.255000px;}
.yd7{bottom:648.795000px;}
.y196{bottom:649.335000px;}
.y184{bottom:649.875000px;}
.y13e{bottom:650.055000px;}
.yf9{bottom:653.655000px;}
.y1df{bottom:659.775000px;}
.y1c{bottom:662.293980px;}
.y1a8{bottom:662.835000px;}
.y10f{bottom:663.735000px;}
.y4f{bottom:665.895000px;}
.y1ba{bottom:675.255000px;}
.y1fc{bottom:675.615000px;}
.y6b{bottom:677.595000px;}
.y84{bottom:677.775000px;}
.y1b{bottom:679.307940px;}
.y167{bottom:682.845000px;}
.yb4{bottom:684.285000px;}
.y17a{bottom:685.365000px;}
.y13d{bottom:685.725000px;}
.y1c5{bottom:685.905000px;}
.yd6{bottom:687.885000px;}
.y1de{bottom:688.425000px;}
.y123{bottom:693.285000px;}
.yc7{bottom:694.005000px;}
.y9e{bottom:695.265000px;}
.y1a{bottom:696.321900px;}
.y1a7{bottom:700.845000px;}
.y10e{bottom:702.825000px;}
.y152{bottom:704.085000px;}
.y4e{bottom:705.165000px;}
.y195{bottom:705.345000px;}
.yf8{bottom:710.745000px;}
.y1b9{bottom:713.085000px;}
.y19{bottom:713.335860px;}
.y1fb{bottom:713.625000px;}
.y6a{bottom:715.605000px;}
.y1dd{bottom:717.045000px;}
.y166{bottom:720.825000px;}
.yb3{bottom:722.085000px;}
.y179{bottom:723.345000px;}
.y1c4{bottom:723.885000px;}
.yd5{bottom:725.685000px;}
.y13c{bottom:726.045000px;}
.y18{bottom:730.349820px;}
.y122{bottom:731.085000px;}
.yc6{bottom:733.245000px;}
.y1a6{bottom:738.825000px;}
.y10d{bottom:742.065000px;}
.y194{bottom:743.145000px;}
.y83{bottom:743.685000px;}
.y4d{bottom:744.225000px;}
.y1dc{bottom:745.845000px;}
.y17{bottom:747.273600px;}
.yf7{bottom:748.545000px;}
.y1b8{bottom:751.065000px;}
.y69{bottom:753.585000px;}
.y165{bottom:758.805000px;}
.yb2{bottom:760.065000px;}
.y9d{bottom:761.145000px;}
.y1c3{bottom:761.685000px;}
.yd4{bottom:763.665000px;}
.y13b{bottom:764.025000px;}
.y16{bottom:764.287560px;}
.y1fa{bottom:766.365000px;}
.y121{bottom:769.065000px;}
.y1db{bottom:775.905000px;}
.y1a5{bottom:776.805000px;}
.y10c{bottom:780.045000px;}
.y193{bottom:781.125000px;}
.y15{bottom:781.301520px;}
.yc5{bottom:781.485000px;}
.y82{bottom:781.665000px;}
.y4c{bottom:782.205000px;}
.y1b7{bottom:789.045000px;}
.y14{bottom:798.315480px;}
.y9c{bottom:799.125000px;}
.y1c2{bottom:799.665000px;}
.yf6{bottom:805.785000px;}
.yb1{bottom:807.045000px;}
.y68{bottom:809.565000px;}
.y164{bottom:814.605000px;}
.y13{bottom:815.329440px;}
.y192{bottom:819.105000px;}
.y1f9{bottom:819.465000px;}
.y81{bottom:819.645000px;}
.y13a{bottom:820.005000px;}
.y4b{bottom:822.525000px;}
.y151{bottom:827.025000px;}
.yc4{bottom:829.545000px;}
.y12{bottom:832.253220px;}
.y10b{bottom:836.025000px;}
.y178{bottom:837.105000px;}
.y1c1{bottom:837.645000px;}
.y9b{bottom:838.365000px;}
.yf5{bottom:845.025000px;}
.y67{bottom:847.545000px;}
.y11{bottom:849.267180px;}
.y163{bottom:852.585000px;}
.y191{bottom:857.085000px;}
.y80{bottom:857.625000px;}
.y139{bottom:857.985000px;}
.y120{bottom:863.025000px;}
.y4a{bottom:865.005000px;}
.y10{bottom:866.281140px;}
.y1a4{bottom:870.585000px;}
.y1f8{bottom:872.385000px;}
.y10a{bottom:874.005000px;}
.yb0{bottom:874.365000px;}
.y1da{bottom:874.545000px;}
.y1c0{bottom:875.625000px;}
.y9a{bottom:877.605000px;}
.yf4{bottom:883.005000px;}
.yf{bottom:883.295100px;}
.y66{bottom:885.345000px;}
.y209{bottom:886.605000px;}
.y162{bottom:890.565000px;}
.y150{bottom:893.085000px;}
.y7f{bottom:895.605000px;}
.y138{bottom:895.785000px;}
.ye{bottom:900.309060px;}
.y11f{bottom:901.005000px;}
.y1b6{bottom:902.985000px;}
.y49{bottom:903.165000px;}
.y1a3{bottom:908.565000px;}
.y109{bottom:913.110000px;}
.yaf{bottom:913.650000px;}
.y99{bottom:915.630000px;}
.yd{bottom:917.232840px;}
.yf3{bottom:920.850000px;}
.y1f7{bottom:925.350000px;}
.y208{bottom:928.050000px;}
.y14f{bottom:931.110000px;}
.y137{bottom:932.910000px;}
.y7e{bottom:933.630000px;}
.yc{bottom:934.246800px;}
.y1d7{bottom:937.230000px;}
.y11e{bottom:938.850000px;}
.y48{bottom:941.190000px;}
.y65{bottom:941.370000px;}
.y1f3{bottom:945.150000px;}
.y161{bottom:946.590000px;}
.y1a2{bottom:947.850000px;}
.y190{bottom:951.090000px;}
.yb{bottom:951.260760px;}
.yae{bottom:951.630000px;}
.y108{bottom:952.350000px;}
.y98{bottom:953.430000px;}
.yf2{bottom:960.090000px;}
.y1d5{bottom:967.290000px;}
.ya{bottom:968.274720px;}
.y14e{bottom:969.090000px;}
.y136{bottom:969.810000px;}
.y1b5{bottom:970.170000px;}
.y207{bottom:970.710000px;}
.y7d{bottom:971.430000px;}
.y11d{bottom:976.830000px;}
.y1f6{bottom:978.270000px;}
.y64{bottom:979.350000px;}
.y1f2{bottom:980.430000px;}
.y160{bottom:984.570000px;}
.y9{bottom:985.288680px;}
.y47{bottom:986.910000px;}
.y177{bottom:987.090000px;}
.yad{bottom:989.430000px;}
.y1d3{bottom:997.170000px;}
.y107{bottom:999.330000px;}
.y8{bottom:1002.212460px;}
.y135{bottom:1006.890000px;}
.y7c{bottom:1009.410000px;}
.y206{bottom:1012.110000px;}
.y11c{bottom:1014.810000px;}
.y46{bottom:1017.330000px;}
.y7{bottom:1019.226420px;}
.y15f{bottom:1023.630000px;}
.y176{bottom:1024.890000px;}
.yac{bottom:1027.410000px;}
.y1ef{bottom:1029.390000px;}
.y1f5{bottom:1031.190000px;}
.y6{bottom:1036.240380px;}
.y45{bottom:1044.870000px;}
.y14d{bottom:1046.130000px;}
.yc3{bottom:1047.390000px;}
.y5{bottom:1053.254340px;}
.y11b{bottom:1054.050000px;}
.y205{bottom:1054.770000px;}
.y63{bottom:1055.310000px;}
.y1d1{bottom:1059.810000px;}
.y134{bottom:1062.690000px;}
.y175{bottom:1062.870000px;}
.y15e{bottom:1064.130000px;}
.y7b{bottom:1065.390000px;}
.y4{bottom:1070.268300px;}
.y44{bottom:1075.470000px;}
.y1ec{bottom:1078.170000px;}
.y1f4{bottom:1084.110000px;}
.y3{bottom:1087.192080px;}
.y62{bottom:1093.110000px;}
.y132{bottom:1095.990000px;}
.y204{bottom:1096.170000px;}
.y174{bottom:1102.110000px;}
.y7a{bottom:1103.370000px;}
.y2{bottom:1104.206040px;}
.y43{bottom:1116.690000px;}
.y1{bottom:1121.220000px;}
.y1eb{bottom:1128.570000px;}
.y42{bottom:1138.650000px;}
.y203{bottom:1138.830000px;}
.y61{bottom:1140.270000px;}
.y79{bottom:1141.350000px;}
.y1d0{bottom:1141.530000px;}
.y60{bottom:1183.383000px;}
.y5f{bottom:1201.383000px;}
.y5e{bottom:1219.383000px;}
.y5d{bottom:1237.383000px;}
.y1ea{bottom:1244.880000px;}
.h23{height:27.900000px;}
.h28{height:27.936000px;}
.h2a{height:28.080000px;}
.h2c{height:28.116000px;}
.h25{height:29.160000px;}
.h26{height:29.340000px;}
.h1f{height:30.060000px;}
.he{height:30.598947px;}
.h7{height:34.174687px;}
.h10{height:40.522930px;}
.h12{height:40.543100px;}
.ha{height:40.693359px;}
.h20{height:45.900000px;}
.h27{height:45.992812px;}
.h16{height:46.800447px;}
.h2e{height:48.060000px;}
.h22{height:48.224531px;}
.h2d{height:48.240000px;}
.h24{height:48.256875px;}
.h29{height:48.402422px;}
.hb{height:50.650312px;}
.hc{height:51.621000px;}
.h13{height:51.696000px;}
.hf{height:52.457776px;}
.h1a{height:53.665681px;}
.h8{height:54.208125px;}
.h4{height:55.054688px;}
.h1b{height:56.555398px;}
.h3{height:58.975137px;}
.h1d{height:60.696000px;}
.h2b{height:62.578125px;}
.h6{height:64.414687px;}
.h1c{height:64.440000px;}
.h15{height:68.956875px;}
.h9{height:69.086250px;}
.h5{height:70.664062px;}
.h17{height:70.828090px;}
.h18{height:71.070767px;}
.h14{height:73.794375px;}
.h30{height:75.093750px;}
.h1e{height:78.446250px;}
.hd{height:78.686664px;}
.h21{height:91.980000px;}
.h19{height:110.119730px;}
.h11{height:136.793637px;}
.h2f{height:918.000000px;}
.h2{height:1188.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:50.040000px;}
.wd{width:50.076000px;}
.w14{width:52.236000px;}
.we{width:52.380000px;}
.w1a{width:57.240000px;}
.w1b{width:57.276000px;}
.w19{width:57.456000px;}
.wa{width:65.160000px;}
.w18{width:67.860000px;}
.w12{width:74.520000px;}
.w11{width:76.356000px;}
.w15{width:76.536000px;}
.w16{width:78.480000px;}
.w13{width:78.696000px;}
.w17{width:94.680000px;}
.w10{width:107.280000px;}
.wf{width:120.816000px;}
.w9{width:136.656000px;}
.w4{width:143.402594px;}
.w2{width:153.153811px;}
.wc{width:156.810000px;}
.w5{width:167.610000px;}
.w6{width:209.730000px;}
.w7{width:251.850000px;}
.w8{width:272.055000px;}
.w3{width:324.075000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w1d{width:918.000000px;}
.w1c{width:1188.000000px;}
.x0{left:0.000000px;}
.x20{left:3.877408px;}
.x21{left:6.511644px;}
.x25{left:8.100000px;}
.x1f{left:12.474184px;}
.x38{left:15.165000px;}
.x45{left:17.460000px;}
.x36{left:18.585000px;}
.x35{left:20.520000px;}
.x1d{left:21.949526px;}
.x37{left:23.040000px;}
.x41{left:24.300000px;}
.xd{left:25.438500px;}
.x1{left:27.000000px;}
.x43{left:28.080000px;}
.x34{left:30.600000px;}
.x44{left:32.940000px;}
.x2e{left:35.100000px;}
.x40{left:36.720000px;}
.x4f{left:38.160000px;}
.x46{left:39.240000px;}
.x42{left:40.860000px;}
.x31{left:45.390000px;}
.x14{left:46.801710px;}
.x2b{left:73.440000px;}
.xe{left:81.632930px;}
.x12{left:85.387007px;}
.x11{left:87.468637px;}
.xf{left:89.438671px;}
.x2d{left:92.370000px;}
.x13{left:94.792284px;}
.x22{left:99.979432px;}
.x4e{left:107.496000px;}
.x24{left:119.556000px;}
.x1e{left:122.696240px;}
.xc{left:127.656000px;}
.x10{left:128.805137px;}
.x1c{left:130.536000px;}
.x27{left:132.696000px;}
.x1b{left:135.216000px;}
.x19{left:139.716000px;}
.x5{left:145.476000px;}
.x23{left:148.896000px;}
.x17{left:154.470000px;}
.x7{left:156.270000px;}
.x1a{left:159.690000px;}
.x28{left:170.130000px;}
.x18{left:181.110000px;}
.x2a{left:184.530000px;}
.x4d{left:187.410000px;}
.x3a{left:191.550000px;}
.x4{left:199.110000px;}
.x50{left:201.990000px;}
.x6{left:220.710000px;}
.x3{left:224.130000px;}
.x2{left:227.370000px;}
.xa{left:230.250000px;}
.x8{left:239.610000px;}
.x3b{left:243.930000px;}
.x48{left:252.030000px;}
.x47{left:253.290000px;}
.x51{left:269.850000px;}
.x16{left:295.995000px;}
.x49{left:304.275000px;}
.x9{left:307.875000px;}
.x2f{left:321.195000px;}
.x39{left:324.075000px;}
.x52{left:327.315000px;}
.x3c{left:364.755000px;}
.x5a{left:370.515000px;}
.x29{left:374.115000px;}
.x53{left:384.555000px;}
.x30{left:386.355000px;}
.xb{left:393.555000px;}
.x4a{left:411.555000px;}
.x2c{left:436.395000px;}
.x54{left:441.795000px;}
.x15{left:443.775000px;}
.x3d{left:472.035000px;}
.x4b{left:488.085000px;}
.x55{left:499.065000px;}
.x3e{left:548.385000px;}
.x56{left:556.305000px;}
.x4c{left:562.605000px;}
.x26{left:563.865000px;}
.x32{left:593.205000px;}
.x57{left:613.545000px;}
.x3f{left:622.905000px;}
.x33{left:658.365000px;}
.x58{left:671.010000px;}
.x59{left:728.250000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v3{vertical-align:-8.320000pt;}
.v8{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:8.320000pt;}
.v5{vertical-align:15.696747pt;}
.v1{vertical-align:26.880000pt;}
.v4{vertical-align:44.145500pt;}
.v6{vertical-align:50.181376pt;}
.ls13{letter-spacing:-0.912000pt;}
.ls21{letter-spacing:-0.874667pt;}
.ls20{letter-spacing:-0.837333pt;}
.ls15{letter-spacing:-0.736000pt;}
.ls6{letter-spacing:-0.406933pt;}
.ls12{letter-spacing:-0.368533pt;}
.lse{letter-spacing:-0.327467pt;}
.ls5{letter-spacing:-0.312533pt;}
.lsd{letter-spacing:-0.271467pt;}
.ls9{letter-spacing:-0.263467pt;}
.ls1b{letter-spacing:-0.233067pt;}
.ls1d{letter-spacing:-0.158933pt;}
.ls7{letter-spacing:-0.097067pt;}
.ls22{letter-spacing:-0.079467pt;}
.ls3{letter-spacing:-0.069472pt;}
.ls8{letter-spacing:-0.069333pt;}
.ls28{letter-spacing:-0.058667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.015467pt;}
.ls25{letter-spacing:0.030720pt;}
.ls1f{letter-spacing:0.030933pt;}
.ls1{letter-spacing:0.050347pt;}
.ls0{letter-spacing:0.071680pt;}
.ls1e{letter-spacing:0.079467pt;}
.ls23{letter-spacing:0.232320pt;}
.ls10{letter-spacing:0.232960pt;}
.lsa{letter-spacing:0.233067pt;}
.ls29{letter-spacing:0.270933pt;}
.ls16{letter-spacing:0.271360pt;}
.lsb{letter-spacing:0.271467pt;}
.ls11{letter-spacing:0.314880pt;}
.ls1c{letter-spacing:0.439467pt;}
.ls24{letter-spacing:0.496640pt;}
.ls1a{letter-spacing:0.544000pt;}
.ls2{letter-spacing:0.550400pt;}
.ls27{letter-spacing:1.190400pt;}
.ls18{letter-spacing:15.674880pt;}
.ls19{letter-spacing:16.954880pt;}
.ls14{letter-spacing:46.351360pt;}
.ls2a{letter-spacing:66.560000pt;}
.lsf{letter-spacing:72.204800pt;}
.lsc{letter-spacing:192.328628pt;}
.ls17{letter-spacing:329.379785pt;}
.ws1{word-spacing:-58.880000pt;}
.ws1a{word-spacing:-37.259606pt;}
.ws19{word-spacing:-35.355814pt;}
.wsf{word-spacing:-34.560027pt;}
.ws12{word-spacing:-32.325120pt;}
.ws2{word-spacing:-21.888000pt;}
.wsd{word-spacing:-20.725760pt;}
.wse{word-spacing:-20.398293pt;}
.ws8{word-spacing:-20.136960pt;}
.ws1f{word-spacing:-19.299627pt;}
.ws29{word-spacing:-17.792000pt;}
.wsc{word-spacing:-16.640107pt;}
.wsa{word-spacing:-16.601707pt;}
.ws9{word-spacing:-16.368640pt;}
.ws5{word-spacing:-16.271573pt;}
.ws21{word-spacing:-16.135573pt;}
.wsb{word-spacing:-16.097173pt;}
.ws1d{word-spacing:-16.000107pt;}
.ws3{word-spacing:-15.961707pt;}
.ws15{word-spacing:-15.632640pt;}
.ws14{word-spacing:-15.456640pt;}
.ws27{word-spacing:-13.455573pt;}
.ws25{word-spacing:-13.440107pt;}
.ws24{word-spacing:-13.424640pt;}
.ws28{word-spacing:-13.365973pt;}
.ws1c{word-spacing:-10.398827pt;}
.ws4{word-spacing:-10.319360pt;}
.ws22{word-spacing:-10.239893pt;}
.ws1b{word-spacing:-10.160427pt;}
.ws26{word-spacing:-8.463360pt;}
.ws0{word-spacing:-0.412160pt;}
.ws13{word-spacing:-0.100517pt;}
.ws18{word-spacing:-0.064400pt;}
.ws11{word-spacing:-0.062951pt;}
.ws6{word-spacing:0.000000pt;}
.ws7{word-spacing:13.512747pt;}
.ws16{word-spacing:21.098347pt;}
.ws1e{word-spacing:30.816640pt;}
.ws23{word-spacing:51.019711pt;}
.ws20{word-spacing:64.712533pt;}
.ws17{word-spacing:96.469788pt;}
.ws10{word-spacing:259.409047pt;}
._11{margin-left:-307.489751pt;}
._e{margin-left:-298.093755pt;}
._a{margin-left:-271.406563pt;}
._8{margin-left:-238.593089pt;}
._4{margin-left:-225.823021pt;}
._5{margin-left:-192.700099pt;}
._f{margin-left:-146.426136pt;}
._9{margin-left:-134.951994pt;}
._10{margin-left:-127.691036pt;}
._6{margin-left:-100.323414pt;}
._7{margin-left:-95.542869pt;}
._2{margin-left:-2.002156pt;}
._0{margin-left:-1.059663pt;}
._1{width:0.949087pt;}
._3{width:1.943452pt;}
._14{width:3.004928pt;}
._16{width:14.819663pt;}
._15{width:15.744000pt;}
._18{width:24.861069pt;}
._17{width:25.984000pt;}
._13{width:34.886989pt;}
._b{width:37.912596pt;}
._1b{width:39.936000pt;}
._19{width:41.024000pt;}
._1a{width:42.414351pt;}
._12{width:67.624092pt;}
._c{width:147.499386pt;}
._d{width:166.003988pt;}
.fs6{font-size:36.719633pt;}
.fs3{font-size:37.120000pt;}
.fs8{font-size:53.120000pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:53.440000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:62.950868pt;}
.fs1{font-size:64.000000pt;}
.fsa{font-size:64.400390pt;}
.fsb{font-size:67.868135pt;}
.fs9{font-size:84.995783pt;}
.fs5{font-size:94.426303pt;}
.y0{bottom:0.000000pt;}
.ye9{bottom:3.639546pt;}
.y90{bottom:4.784563pt;}
.y1d4{bottom:7.200000pt;}
.y1d9{bottom:7.240000pt;}
.y1d8{bottom:7.360000pt;}
.y1d6{bottom:7.840000pt;}
.y1d2{bottom:8.160000pt;}
.y145{bottom:8.320000pt;}
.y144{bottom:9.120000pt;}
.y147{bottom:15.200000pt;}
.y93{bottom:15.820938pt;}
.y8f{bottom:16.109010pt;}
.y1f1{bottom:16.160000pt;}
.ye8{bottom:16.184890pt;}
.ye7{bottom:16.250115pt;}
.y1ee{bottom:16.320000pt;}
.y95{bottom:17.946667pt;}
.y91{bottom:19.745125pt;}
.y133{bottom:21.760000pt;}
.y1f0{bottom:24.000000pt;}
.y1ed{bottom:24.160000pt;}
.yea{bottom:26.292130pt;}
.yec{bottom:27.680000pt;}
.y41{bottom:29.776800pt;}
.y92{bottom:35.694095pt;}
.y181{bottom:40.000000pt;}
.y40{bottom:44.820160pt;}
.y3f{bottom:59.943680pt;}
.y3e{bottom:75.067200pt;}
.y3d{bottom:90.190720pt;}
.yc2{bottom:99.520000pt;}
.y15d{bottom:100.640000pt;}
.y5c{bottom:105.280000pt;}
.y3c{bottom:105.314240pt;}
.y173{bottom:109.120000pt;}
.y131{bottom:111.840000pt;}
.y18f{bottom:113.920000pt;}
.y78{bottom:115.840000pt;}
.y106{bottom:118.400000pt;}
.y3b{bottom:120.357600pt;}
.y97{bottom:125.280000pt;}
.ye3{bottom:128.000000pt;}
.yc1{bottom:133.120000pt;}
.y15c{bottom:134.400000pt;}
.y3a{bottom:135.481120pt;}
.y5b{bottom:139.040000pt;}
.y172{bottom:142.880000pt;}
.y130{bottom:145.600000pt;}
.yf1{bottom:147.200000pt;}
.y18e{bottom:147.520000pt;}
.y77{bottom:149.600000pt;}
.y39{bottom:150.604640pt;}
.y105{bottom:152.160000pt;}
.y1b4{bottom:152.320000pt;}
.yab{bottom:153.120000pt;}
.y14c{bottom:155.360000pt;}
.y96{bottom:158.880000pt;}
.ye2{bottom:161.600000pt;}
.y38{bottom:165.728160pt;}
.yc0{bottom:166.880000pt;}
.y15b{bottom:168.160000pt;}
.y1a1{bottom:168.640000pt;}
.y1cf{bottom:171.040000pt;}
.y183{bottom:171.520000pt;}
.yd3{bottom:173.440000pt;}
.y171{bottom:176.640000pt;}
.y12f{bottom:179.360000pt;}
.y37{bottom:180.851680pt;}
.yf0{bottom:182.080000pt;}
.y11a{bottom:184.640000pt;}
.y104{bottom:185.760000pt;}
.y1b3{bottom:186.080000pt;}
.yaa{bottom:186.880000pt;}
.y94{bottom:188.480000pt;}
.y8e{bottom:188.546667pt;}
.y5a{bottom:188.800000pt;}
.y18d{bottom:189.280000pt;}
.y14b{bottom:190.266667pt;}
.ye1{bottom:195.386667pt;}
.y36{bottom:195.895040pt;}
.y76{bottom:199.226667pt;}
.ybf{bottom:200.666667pt;}
.y1a0{bottom:202.426667pt;}
.y15a{bottom:203.066667pt;}
.y1ce{bottom:204.826667pt;}
.y182{bottom:205.146667pt;}
.y1e9{bottom:207.386667pt;}
.yd2{bottom:208.346667pt;}
.y170{bottom:210.426667pt;}
.y35{bottom:211.018560pt;}
.y12e{bottom:213.146667pt;}
.yef{bottom:216.986667pt;}
.y119{bottom:218.426667pt;}
.y103{bottom:219.546667pt;}
.y1b2{bottom:219.866667pt;}
.ya9{bottom:220.666667pt;}
.y59{bottom:222.586667pt;}
.y14a{bottom:224.026667pt;}
.y34{bottom:226.142080pt;}
.ye0{bottom:229.146667pt;}
.y75{bottom:232.986667pt;}
.ybe{bottom:234.426667pt;}
.y180{bottom:234.746667pt;}
.y19f{bottom:236.186667pt;}
.y159{bottom:237.786667pt;}
.y1cd{bottom:238.586667pt;}
.y18c{bottom:240.026667pt;}
.y33{bottom:241.265600pt;}
.yd1{bottom:244.186667pt;}
.y12d{bottom:246.746667pt;}
.yee{bottom:251.866667pt;}
.y118{bottom:252.186667pt;}
.y102{bottom:253.306667pt;}
.y1b1{bottom:253.626667pt;}
.ya8{bottom:254.266667pt;}
.y58{bottom:256.346667pt;}
.y32{bottom:256.389120pt;}
.y149{bottom:257.786667pt;}
.y1bf{bottom:262.746667pt;}
.y1e8{bottom:263.226667pt;}
.y74{bottom:266.746667pt;}
.y19e{bottom:269.786667pt;}
.y31{bottom:271.432480pt;}
.y8d{bottom:271.546667pt;}
.y1cc{bottom:272.346667pt;}
.y18b{bottom:273.786667pt;}
.ydf{bottom:278.906667pt;}
.yd0{bottom:279.066667pt;}
.y12c{bottom:280.506667pt;}
.ybd{bottom:284.186667pt;}
.y117{bottom:285.786667pt;}
.y30{bottom:286.556000pt;}
.y101{bottom:287.066667pt;}
.y1b0{bottom:287.386667pt;}
.y158{bottom:287.546667pt;}
.ya7{bottom:288.026667pt;}
.y1e7{bottom:288.666667pt;}
.y57{bottom:289.946667pt;}
.y148{bottom:292.506667pt;}
.y1be{bottom:296.506667pt;}
.y73{bottom:300.506667pt;}
.y2f{bottom:301.679520pt;}
.yed{bottom:302.586667pt;}
.y16f{bottom:302.906667pt;}
.y19d{bottom:303.546667pt;}
.y1cb{bottom:305.946667pt;}
.y8c{bottom:306.266667pt;}
.y18a{bottom:307.546667pt;}
.yde{bottom:312.666667pt;}
.ycf{bottom:312.826667pt;}
.y12b{bottom:314.266667pt;}
.y1e6{bottom:315.546667pt;}
.y2e{bottom:316.803040pt;}
.ybc{bottom:317.786667pt;}
.y100{bottom:320.826667pt;}
.y157{bottom:321.306667pt;}
.ya6{bottom:321.786667pt;}
.y146{bottom:323.226667pt;}
.y56{bottom:323.706667pt;}
.y1bd{bottom:330.266667pt;}
.y202{bottom:331.386667pt;}
.y2d{bottom:331.926560pt;}
.yeb{bottom:332.186667pt;}
.y72{bottom:334.266667pt;}
.y116{bottom:335.546667pt;}
.y16e{bottom:336.666667pt;}
.y1af{bottom:337.146667pt;}
.y19c{bottom:337.306667pt;}
.y1ca{bottom:339.706667pt;}
.ye6{bottom:340.213333pt;}
.ydd{bottom:346.266667pt;}
.y2c{bottom:347.050080pt;}
.y12a{bottom:348.026667pt;}
.ybb{bottom:351.546667pt;}
.y17f{bottom:352.666667pt;}
.yff{bottom:354.586667pt;}
.y156{bottom:355.066667pt;}
.ya5{bottom:355.546667pt;}
.y8b{bottom:356.026667pt;}
.y189{bottom:357.306667pt;}
.y55{bottom:357.466667pt;}
.y2b{bottom:362.093440pt;}
.yce{bottom:362.586667pt;}
.y143{bottom:364.026667pt;}
.y115{bottom:369.306667pt;}
.y1ae{bottom:370.746667pt;}
.y1c9{bottom:373.466667pt;}
.y2a{bottom:377.216960pt;}
.y201{bottom:378.426667pt;}
.y19b{bottom:379.066667pt;}
.ydc{bottom:380.026667pt;}
.y129{bottom:381.786667pt;}
.y71{bottom:383.866667pt;}
.yba{bottom:385.306667pt;}
.y16d{bottom:386.266667pt;}
.y17e{bottom:387.386667pt;}
.yfe{bottom:388.186667pt;}
.y8a{bottom:389.786667pt;}
.y188{bottom:391.066667pt;}
.y29{bottom:392.340480pt;}
.ycd{bottom:396.186667pt;}
.y1bc{bottom:397.826667pt;}
.y114{bottom:403.106667pt;}
.y1ad{bottom:404.546667pt;}
.ya4{bottom:405.346667pt;}
.y155{bottom:405.826667pt;}
.y54{bottom:407.266667pt;}
.y28{bottom:407.464000pt;}
.ydb{bottom:413.826667pt;}
.y128{bottom:415.426667pt;}
.y70{bottom:417.666667pt;}
.y16c{bottom:420.066667pt;}
.yb9{bottom:420.226667pt;}
.y27{bottom:422.587520pt;}
.y89{bottom:423.426667pt;}
.y187{bottom:424.706667pt;}
.y200{bottom:425.506667pt;}
.ye5{bottom:425.666667pt;}
.y142{bottom:426.946667pt;}
.ycc{bottom:429.986667pt;}
.y1bb{bottom:431.426667pt;}
.y1e5{bottom:433.506667pt;}
.y113{bottom:436.866667pt;}
.y26{bottom:437.630880pt;}
.y19a{bottom:437.826667pt;}
.yfd{bottom:437.986667pt;}
.y1ac{bottom:438.306667pt;}
.ya3{bottom:438.946667pt;}
.y53{bottom:441.026667pt;}
.y154{bottom:441.826667pt;}
.yda{bottom:447.586667pt;}
.y6f{bottom:451.426667pt;}
.y25{bottom:452.754400pt;}
.y16b{bottom:453.826667pt;}
.y88{bottom:458.306667pt;}
.y1e4{bottom:458.946667pt;}
.ye4{bottom:459.426667pt;}
.y141{bottom:460.706667pt;}
.ycb{bottom:463.746667pt;}
.y127{bottom:465.186667pt;}
.y24{bottom:467.877920pt;}
.y112{bottom:470.626667pt;}
.yb8{bottom:470.946667pt;}
.y199{bottom:471.586667pt;}
.yfc{bottom:471.746667pt;}
.y1ab{bottom:472.066667pt;}
.y1ff{bottom:472.546667pt;}
.ya2{bottom:473.826667pt;}
.y52{bottom:474.626667pt;}
.y1c8{bottom:474.786667pt;}
.y23{bottom:483.001440pt;}
.y1e3{bottom:484.386667pt;}
.y6e{bottom:485.186667pt;}
.y16a{bottom:488.706667pt;}
.yd9{bottom:489.346667pt;}
.y17d{bottom:491.906667pt;}
.y153{bottom:492.706667pt;}
.y87{bottom:493.186667pt;}
.y186{bottom:494.146667pt;}
.yca{bottom:497.506667pt;}
.y22{bottom:498.124960pt;}
.y126{bottom:498.946667pt;}
.y111{bottom:505.346667pt;}
.yfb{bottom:505.506667pt;}
.yb7{bottom:505.826667pt;}
.y198{bottom:506.306667pt;}
.y1fe{bottom:506.466667pt;}
.y51{bottom:508.386667pt;}
.ya1{bottom:508.706667pt;}
.y1e2{bottom:509.986667pt;}
.y140{bottom:510.466667pt;}
.y21{bottom:513.168320pt;}
.y6d{bottom:518.946667pt;}
.y1aa{bottom:521.826667pt;}
.y17c{bottom:525.666667pt;}
.y86{bottom:526.946667pt;}
.y185{bottom:527.906667pt;}
.y20{bottom:528.291840pt;}
.yc9{bottom:532.226667pt;}
.y125{bottom:532.706667pt;}
.y1e1{bottom:535.426667pt;}
.yfa{bottom:539.266667pt;}
.y169{bottom:539.426667pt;}
.yb6{bottom:540.706667pt;}
.yd8{bottom:541.026667pt;}
.y1c7{bottom:542.146667pt;}
.y197{bottom:542.306667pt;}
.ya0{bottom:542.466667pt;}
.y1f{bottom:543.415360pt;}
.y13f{bottom:544.226667pt;}
.y1fd{bottom:553.346667pt;}
.y1a9{bottom:555.426667pt;}
.y110{bottom:556.226667pt;}
.y50{bottom:558.146667pt;}
.y1e{bottom:558.538880pt;}
.y85{bottom:560.706667pt;}
.y1e0{bottom:560.866667pt;}
.y124{bottom:566.466667pt;}
.yc8{bottom:567.106667pt;}
.y6c{bottom:568.706667pt;}
.y168{bottom:573.186667pt;}
.y1d{bottom:573.662400pt;}
.yb5{bottom:574.466667pt;}
.y17b{bottom:575.426667pt;}
.y1c6{bottom:575.906667pt;}
.y9f{bottom:576.226667pt;}
.yd7{bottom:576.706667pt;}
.y196{bottom:577.186667pt;}
.y184{bottom:577.666667pt;}
.y13e{bottom:577.826667pt;}
.yf9{bottom:581.026667pt;}
.y1df{bottom:586.466667pt;}
.y1c{bottom:588.705760pt;}
.y1a8{bottom:589.186667pt;}
.y10f{bottom:589.986667pt;}
.y4f{bottom:591.906667pt;}
.y1ba{bottom:600.226667pt;}
.y1fc{bottom:600.546667pt;}
.y6b{bottom:602.306667pt;}
.y84{bottom:602.466667pt;}
.y1b{bottom:603.829280pt;}
.y167{bottom:606.973333pt;}
.yb4{bottom:608.253333pt;}
.y17a{bottom:609.213333pt;}
.y13d{bottom:609.533333pt;}
.y1c5{bottom:609.693333pt;}
.yd6{bottom:611.453333pt;}
.y1de{bottom:611.933333pt;}
.y123{bottom:616.253333pt;}
.yc7{bottom:616.893333pt;}
.y9e{bottom:618.013333pt;}
.y1a{bottom:618.952800pt;}
.y1a7{bottom:622.973333pt;}
.y10e{bottom:624.733333pt;}
.y152{bottom:625.853333pt;}
.y4e{bottom:626.813333pt;}
.y195{bottom:626.973333pt;}
.yf8{bottom:631.773333pt;}
.y1b9{bottom:633.853333pt;}
.y19{bottom:634.076320pt;}
.y1fb{bottom:634.333333pt;}
.y6a{bottom:636.093333pt;}
.y1dd{bottom:637.373333pt;}
.y166{bottom:640.733333pt;}
.yb3{bottom:641.853333pt;}
.y179{bottom:642.973333pt;}
.y1c4{bottom:643.453333pt;}
.yd5{bottom:645.053333pt;}
.y13c{bottom:645.373333pt;}
.y18{bottom:649.199840pt;}
.y122{bottom:649.853333pt;}
.yc6{bottom:651.773333pt;}
.y1a6{bottom:656.733333pt;}
.y10d{bottom:659.613333pt;}
.y194{bottom:660.573333pt;}
.y83{bottom:661.053333pt;}
.y4d{bottom:661.533333pt;}
.y1dc{bottom:662.973333pt;}
.y17{bottom:664.243200pt;}
.yf7{bottom:665.373333pt;}
.y1b8{bottom:667.613333pt;}
.y69{bottom:669.853333pt;}
.y165{bottom:674.493333pt;}
.yb2{bottom:675.613333pt;}
.y9d{bottom:676.573333pt;}
.y1c3{bottom:677.053333pt;}
.yd4{bottom:678.813333pt;}
.y13b{bottom:679.133333pt;}
.y16{bottom:679.366720pt;}
.y1fa{bottom:681.213333pt;}
.y121{bottom:683.613333pt;}
.y1db{bottom:689.693333pt;}
.y1a5{bottom:690.493333pt;}
.y10c{bottom:693.373333pt;}
.y193{bottom:694.333333pt;}
.y15{bottom:694.490240pt;}
.yc5{bottom:694.653333pt;}
.y82{bottom:694.813333pt;}
.y4c{bottom:695.293333pt;}
.y1b7{bottom:701.373333pt;}
.y14{bottom:709.613760pt;}
.y9c{bottom:710.333333pt;}
.y1c2{bottom:710.813333pt;}
.yf6{bottom:716.253333pt;}
.yb1{bottom:717.373333pt;}
.y68{bottom:719.613333pt;}
.y164{bottom:724.093333pt;}
.y13{bottom:724.737280pt;}
.y192{bottom:728.093333pt;}
.y1f9{bottom:728.413333pt;}
.y81{bottom:728.573333pt;}
.y13a{bottom:728.893333pt;}
.y4b{bottom:731.133333pt;}
.y151{bottom:735.133333pt;}
.yc4{bottom:737.373333pt;}
.y12{bottom:739.780640pt;}
.y10b{bottom:743.133333pt;}
.y178{bottom:744.093333pt;}
.y1c1{bottom:744.573333pt;}
.y9b{bottom:745.213333pt;}
.yf5{bottom:751.133333pt;}
.y67{bottom:753.373333pt;}
.y11{bottom:754.904160pt;}
.y163{bottom:757.853333pt;}
.y191{bottom:761.853333pt;}
.y80{bottom:762.333333pt;}
.y139{bottom:762.653333pt;}
.y120{bottom:767.133333pt;}
.y4a{bottom:768.893333pt;}
.y10{bottom:770.027680pt;}
.y1a4{bottom:773.853333pt;}
.y1f8{bottom:775.453333pt;}
.y10a{bottom:776.893333pt;}
.yb0{bottom:777.213333pt;}
.y1da{bottom:777.373333pt;}
.y1c0{bottom:778.333333pt;}
.y9a{bottom:780.093333pt;}
.yf4{bottom:784.893333pt;}
.yf{bottom:785.151200pt;}
.y66{bottom:786.973333pt;}
.y209{bottom:788.093333pt;}
.y162{bottom:791.613333pt;}
.y150{bottom:793.853333pt;}
.y7f{bottom:796.093333pt;}
.y138{bottom:796.253333pt;}
.ye{bottom:800.274720pt;}
.y11f{bottom:800.893333pt;}
.y1b6{bottom:802.653333pt;}
.y49{bottom:802.813333pt;}
.y1a3{bottom:807.613333pt;}
.y109{bottom:811.653333pt;}
.yaf{bottom:812.133333pt;}
.y99{bottom:813.893333pt;}
.yd{bottom:815.318080pt;}
.yf3{bottom:818.533333pt;}
.y1f7{bottom:822.533333pt;}
.y208{bottom:824.933333pt;}
.y14f{bottom:827.653333pt;}
.y137{bottom:829.253333pt;}
.y7e{bottom:829.893333pt;}
.yc{bottom:830.441600pt;}
.y1d7{bottom:833.093333pt;}
.y11e{bottom:834.533333pt;}
.y48{bottom:836.613333pt;}
.y65{bottom:836.773333pt;}
.y1f3{bottom:840.133333pt;}
.y161{bottom:841.413333pt;}
.y1a2{bottom:842.533333pt;}
.y190{bottom:845.413333pt;}
.yb{bottom:845.565120pt;}
.yae{bottom:845.893333pt;}
.y108{bottom:846.533333pt;}
.y98{bottom:847.493333pt;}
.yf2{bottom:853.413333pt;}
.y1d5{bottom:859.813333pt;}
.ya{bottom:860.688640pt;}
.y14e{bottom:861.413333pt;}
.y136{bottom:862.053333pt;}
.y1b5{bottom:862.373333pt;}
.y207{bottom:862.853333pt;}
.y7d{bottom:863.493333pt;}
.y11d{bottom:868.293333pt;}
.y1f6{bottom:869.573333pt;}
.y64{bottom:870.533333pt;}
.y1f2{bottom:871.493333pt;}
.y160{bottom:875.173333pt;}
.y9{bottom:875.812160pt;}
.y47{bottom:877.253333pt;}
.y177{bottom:877.413333pt;}
.yad{bottom:879.493333pt;}
.y1d3{bottom:886.373333pt;}
.y107{bottom:888.293333pt;}
.y8{bottom:890.855520pt;}
.y135{bottom:895.013333pt;}
.y7c{bottom:897.253333pt;}
.y206{bottom:899.653333pt;}
.y11c{bottom:902.053333pt;}
.y46{bottom:904.293333pt;}
.y7{bottom:905.979040pt;}
.y15f{bottom:909.893333pt;}
.y176{bottom:911.013333pt;}
.yac{bottom:913.253333pt;}
.y1ef{bottom:915.013333pt;}
.y1f5{bottom:916.613333pt;}
.y6{bottom:921.102560pt;}
.y45{bottom:928.773333pt;}
.y14d{bottom:929.893333pt;}
.yc3{bottom:931.013333pt;}
.y5{bottom:936.226080pt;}
.y11b{bottom:936.933333pt;}
.y205{bottom:937.573333pt;}
.y63{bottom:938.053333pt;}
.y1d1{bottom:942.053333pt;}
.y134{bottom:944.613333pt;}
.y175{bottom:944.773333pt;}
.y15e{bottom:945.893333pt;}
.y7b{bottom:947.013333pt;}
.y4{bottom:951.349600pt;}
.y44{bottom:955.973333pt;}
.y1ec{bottom:958.373333pt;}
.y1f4{bottom:963.653333pt;}
.y3{bottom:966.392960pt;}
.y62{bottom:971.653333pt;}
.y132{bottom:974.213333pt;}
.y204{bottom:974.373333pt;}
.y174{bottom:979.653333pt;}
.y7a{bottom:980.773333pt;}
.y2{bottom:981.516480pt;}
.y43{bottom:992.613333pt;}
.y1{bottom:996.640000pt;}
.y1eb{bottom:1003.173333pt;}
.y42{bottom:1012.133333pt;}
.y203{bottom:1012.293333pt;}
.y61{bottom:1013.573333pt;}
.y79{bottom:1014.533333pt;}
.y1d0{bottom:1014.693333pt;}
.y60{bottom:1051.896000pt;}
.y5f{bottom:1067.896000pt;}
.y5e{bottom:1083.896000pt;}
.y5d{bottom:1099.896000pt;}
.y1ea{bottom:1106.560000pt;}
.h23{height:24.800000pt;}
.h28{height:24.832000pt;}
.h2a{height:24.960000pt;}
.h2c{height:24.992000pt;}
.h25{height:25.920000pt;}
.h26{height:26.080000pt;}
.h1f{height:26.720000pt;}
.he{height:27.199064pt;}
.h7{height:30.377500pt;}
.h10{height:36.020382pt;}
.h12{height:36.038311pt;}
.ha{height:36.171875pt;}
.h20{height:40.800000pt;}
.h27{height:40.882500pt;}
.h16{height:41.600398pt;}
.h2e{height:42.720000pt;}
.h22{height:42.866250pt;}
.h2d{height:42.880000pt;}
.h24{height:42.895000pt;}
.h29{height:43.024375pt;}
.hb{height:45.022500pt;}
.hc{height:45.885333pt;}
.h13{height:45.952000pt;}
.hf{height:46.629134pt;}
.h1a{height:47.702828pt;}
.h8{height:48.185000pt;}
.h4{height:48.937500pt;}
.h1b{height:50.271465pt;}
.h3{height:52.422344pt;}
.h1d{height:53.952000pt;}
.h2b{height:55.625000pt;}
.h6{height:57.257500pt;}
.h1c{height:57.280000pt;}
.h15{height:61.295000pt;}
.h9{height:61.410000pt;}
.h5{height:62.812500pt;}
.h17{height:62.958302pt;}
.h18{height:63.174015pt;}
.h14{height:65.595000pt;}
.h30{height:66.750000pt;}
.h1e{height:69.730000pt;}
.hd{height:69.943702pt;}
.h21{height:81.760000pt;}
.h19{height:97.884204pt;}
.h11{height:121.594344pt;}
.h2f{height:816.000000pt;}
.h2{height:1056.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:44.480000pt;}
.wd{width:44.512000pt;}
.w14{width:46.432000pt;}
.we{width:46.560000pt;}
.w1a{width:50.880000pt;}
.w1b{width:50.912000pt;}
.w19{width:51.072000pt;}
.wa{width:57.920000pt;}
.w18{width:60.320000pt;}
.w12{width:66.240000pt;}
.w11{width:67.872000pt;}
.w15{width:68.032000pt;}
.w16{width:69.760000pt;}
.w13{width:69.952000pt;}
.w17{width:84.160000pt;}
.w10{width:95.360000pt;}
.wf{width:107.392000pt;}
.w9{width:121.472000pt;}
.w4{width:127.468973pt;}
.w2{width:136.136721pt;}
.wc{width:139.386667pt;}
.w5{width:148.986667pt;}
.w6{width:186.426667pt;}
.w7{width:223.866667pt;}
.w8{width:241.826667pt;}
.w3{width:288.066667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w1d{width:816.000000pt;}
.w1c{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x20{left:3.446585pt;}
.x21{left:5.788128pt;}
.x25{left:7.200000pt;}
.x1f{left:11.088163pt;}
.x38{left:13.480000pt;}
.x45{left:15.520000pt;}
.x36{left:16.520000pt;}
.x35{left:18.240000pt;}
.x1d{left:19.510690pt;}
.x37{left:20.480000pt;}
.x41{left:21.600000pt;}
.xd{left:22.612000pt;}
.x1{left:24.000000pt;}
.x43{left:24.960000pt;}
.x34{left:27.200000pt;}
.x44{left:29.280000pt;}
.x2e{left:31.200000pt;}
.x40{left:32.640000pt;}
.x4f{left:33.920000pt;}
.x46{left:34.880000pt;}
.x42{left:36.320000pt;}
.x31{left:40.346667pt;}
.x14{left:41.601520pt;}
.x2b{left:65.280000pt;}
.xe{left:72.562605pt;}
.x12{left:75.899561pt;}
.x11{left:77.749899pt;}
.xf{left:79.501041pt;}
.x2d{left:82.106667pt;}
.x13{left:84.259808pt;}
.x22{left:88.870606pt;}
.x4e{left:95.552000pt;}
.x24{left:106.272000pt;}
.x1e{left:109.063324pt;}
.xc{left:113.472000pt;}
.x10{left:114.493455pt;}
.x1c{left:116.032000pt;}
.x27{left:117.952000pt;}
.x1b{left:120.192000pt;}
.x19{left:124.192000pt;}
.x5{left:129.312000pt;}
.x23{left:132.352000pt;}
.x17{left:137.306667pt;}
.x7{left:138.906667pt;}
.x1a{left:141.946667pt;}
.x28{left:151.226667pt;}
.x18{left:160.986667pt;}
.x2a{left:164.026667pt;}
.x4d{left:166.586667pt;}
.x3a{left:170.266667pt;}
.x4{left:176.986667pt;}
.x50{left:179.546667pt;}
.x6{left:196.186667pt;}
.x3{left:199.226667pt;}
.x2{left:202.106667pt;}
.xa{left:204.666667pt;}
.x8{left:212.986667pt;}
.x3b{left:216.826667pt;}
.x48{left:224.026667pt;}
.x47{left:225.146667pt;}
.x51{left:239.866667pt;}
.x16{left:263.106667pt;}
.x49{left:270.466667pt;}
.x9{left:273.666667pt;}
.x2f{left:285.506667pt;}
.x39{left:288.066667pt;}
.x52{left:290.946667pt;}
.x3c{left:324.226667pt;}
.x5a{left:329.346667pt;}
.x29{left:332.546667pt;}
.x53{left:341.826667pt;}
.x30{left:343.426667pt;}
.xb{left:349.826667pt;}
.x4a{left:365.826667pt;}
.x2c{left:387.906667pt;}
.x54{left:392.706667pt;}
.x15{left:394.466667pt;}
.x3d{left:419.586667pt;}
.x4b{left:433.853333pt;}
.x55{left:443.613333pt;}
.x3e{left:487.453333pt;}
.x56{left:494.493333pt;}
.x4c{left:500.093333pt;}
.x26{left:501.213333pt;}
.x32{left:527.293333pt;}
.x57{left:545.373333pt;}
.x3f{left:553.693333pt;}
.x33{left:585.213333pt;}
.x58{left:596.453333pt;}
.x59{left:647.333333pt;}
}




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