
    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_284e64259b2f2ee0d03a4765.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959961;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_2fefa50ccf3cf52bf9ede5e4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_282caec2a317428ea309ed29.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914551;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_dbde992e543a8849be1617b2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_71396ef958ab7bc7575a0d07.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_afbfa33fb45c272eb7cd99fe.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_10c16d97f4d6078312450801.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_fda29c926c05c435cdbd7d33.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_4e09879494fc9485c800907f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202148;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_5a9efed09b9c4fdee3cc89a9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_599af29abb1e810509152498.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.372070;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_375d59ceb55e0dbb1bafd601.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_836c156fd40f1702f79d44c9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.926758;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_300f60ad87e77930dbc0418b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.767578;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_9cd9d78f7e53742f6502b5b2.woff2')format("woff");}.fff{font-family:fff;line-height:0.767578;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_0db1ad15b2564771f03ca3e8.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.208008;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_3ad898bacf3fa5f3109671b6.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.311035;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_4a371ec7c2b9d871fb116750.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.921387;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_9a44d55957948c78d080cb1e.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.172852;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_132314caf5367550b609d12a.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_52a7208d6cfa0208e11adaff.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.172852;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_90800d3008bca1829971648d.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.035156;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_747c08ba53733f047b2c2a37.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.172852;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_56ac20e8340ffe3cec9be079.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.859375;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_9d369fcaaf82507dd5518189.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_d0452b66a7ae6d1c52147b10.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.915527;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;}
.m2{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m5{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,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);}
.m3{transform:matrix(0.264564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264564,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.298803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298803,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);}
.vb{vertical-align:-62.640000px;}
.vc{vertical-align:-57.960000px;}
.va{vertical-align:-51.480000px;}
.ve{vertical-align:-20.880000px;}
.v4{vertical-align:-12.240000px;}
.v2{vertical-align:-6.120000px;}
.v9{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:6.120000px;}
.v5{vertical-align:12.240000px;}
.vd{vertical-align:18.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:27.000000px;}
.v6{vertical-align:45.360000px;}
.v7{vertical-align:52.560000px;}
.ls26{letter-spacing:-3.510000px;}
.ls8{letter-spacing:-0.413400px;}
.ls33{letter-spacing:-0.400200px;}
.ls28{letter-spacing:-0.396000px;}
.ls20{letter-spacing:-0.360000px;}
.ls34{letter-spacing:-0.346800px;}
.ls9{letter-spacing:-0.306600px;}
.ls4{letter-spacing:-0.270000px;}
.ls12{letter-spacing:-0.220200px;}
.ls11{letter-spacing:-0.206400px;}
.ls2e{letter-spacing:-0.198000px;}
.ls1e{letter-spacing:-0.180000px;}
.ls7{letter-spacing:-0.153600px;}
.lsb{letter-spacing:-0.132600px;}
.ls36{letter-spacing:-0.114600px;}
.ls30{letter-spacing:-0.108000px;}
.ls10{letter-spacing:-0.053280px;}
.ls27{letter-spacing:-0.036000px;}
.ls38{letter-spacing:-0.027000px;}
.ls39{letter-spacing:-0.015840px;}
.ls1d{letter-spacing:-0.013320px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.001080px;}
.ls6{letter-spacing:0.013320px;}
.ls2f{letter-spacing:0.018000px;}
.lse{letter-spacing:0.036000px;}
.ls1a{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.060600px;}
.lsf{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.078600px;}
.ls2{letter-spacing:0.090000px;}
.ls17{letter-spacing:0.093600px;}
.ls1b{letter-spacing:0.103800px;}
.ls2b{letter-spacing:0.108000px;}
.ls18{letter-spacing:0.120000px;}
.ls31{letter-spacing:0.126000px;}
.ls19{letter-spacing:0.139800px;}
.ls1c{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls37{letter-spacing:0.327600px;}
.lsa{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.450000px;}
.ls2c{letter-spacing:0.480000px;}
.ls32{letter-spacing:0.499800px;}
.ls21{letter-spacing:1.170000px;}
.ls2a{letter-spacing:1.311120px;}
.ls25{letter-spacing:4.191120px;}
.ls22{letter-spacing:11.031120px;}
.ls16{letter-spacing:15.986520px;}
.ls15{letter-spacing:16.650360px;}
.ls14{letter-spacing:20.135880px;}
.lsd{letter-spacing:41.246640px;}
.lsc{letter-spacing:44.846640px;}
.ls35{letter-spacing:59.445360px;}
.ls23{letter-spacing:93.111120px;}
.ls29{letter-spacing:857.871120px;}
.ls1f{letter-spacing:1133.271120px;}
.ls2d{letter-spacing:1641.591120px;}
.sc_{text-shadow:none;}
.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;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2a{word-spacing:-65.880000px;}
.ws1e{word-spacing:-60.120000px;}
.ws27{word-spacing:-54.000000px;}
.ws8{word-spacing:-27.153480px;}
.ws9{word-spacing:-27.092880px;}
.ws4{word-spacing:-21.723120px;}
.ws29{word-spacing:-18.956880px;}
.ws2{word-spacing:-16.620000px;}
.ws2d{word-spacing:-15.216480px;}
.wse{word-spacing:-15.210000px;}
.ws1b{word-spacing:-15.183600px;}
.ws10{word-spacing:-15.169800px;}
.ws11{word-spacing:-15.083280px;}
.ws1c{word-spacing:-15.030000px;}
.ws1d{word-spacing:-15.016680px;}
.wsc{word-spacing:-14.976720px;}
.wsf{word-spacing:-14.889960px;}
.ws6{word-spacing:-14.888880px;}
.wsa{word-spacing:-14.876400px;}
.ws2e{word-spacing:-14.861880px;}
.ws1f{word-spacing:-14.850000px;}
.wsd{word-spacing:-14.823600px;}
.ws28{word-spacing:-14.809800px;}
.wsb{word-spacing:-14.723400px;}
.ws26{word-spacing:-13.626000px;}
.ws25{word-spacing:-13.392000px;}
.ws12{word-spacing:-13.330200px;}
.ws1a{word-spacing:-13.287000px;}
.ws13{word-spacing:-13.226400px;}
.ws21{word-spacing:-12.204000px;}
.ws23{word-spacing:-12.006000px;}
.ws5{word-spacing:-10.530000px;}
.ws7{word-spacing:-9.720000px;}
.ws2b{word-spacing:-9.519120px;}
.ws2c{word-spacing:-9.404520px;}
.ws20{word-spacing:-9.360000px;}
.ws16{word-spacing:-9.266400px;}
.ws24{word-spacing:-9.000000px;}
.ws22{word-spacing:-8.136000px;}
.ws19{word-spacing:-0.260280px;}
.ws3{word-spacing:0.000000px;}
.ws15{word-spacing:0.183960px;}
.ws14{word-spacing:7.179840px;}
.ws17{word-spacing:7.197840px;}
.ws18{word-spacing:54.455760px;}
.ws1{word-spacing:302.400000px;}
.ws0{word-spacing:335.760000px;}
._12{margin-left:-16.316760px;}
._19{margin-left:-7.877520px;}
._a{margin-left:-6.661800px;}
._6{margin-left:-5.468040px;}
._9{margin-left:-4.126920px;}
._4{margin-left:-2.403000px;}
._5{margin-left:-1.153440px;}
._7{width:1.042800px;}
._8{width:2.151720px;}
._f{width:3.484800px;}
._e{width:4.509000px;}
._10{width:5.517480px;}
._d{width:6.853680px;}
._15{width:8.005320px;}
._11{width:9.198360px;}
._b{width:10.761480px;}
._c{width:11.836440px;}
._1b{width:12.953280px;}
._1a{width:14.007960px;}
._17{width:16.953840px;}
._14{width:18.079680px;}
._13{width:19.134600px;}
._16{width:20.561040px;}
._18{width:21.643200px;}
._2{width:32.220000px;}
._3{width:65.580000px;}
._1{width:88.920000px;}
._0{width:148.860000px;}
._1d{width:538.911120px;}
._1c{width:646.911120px;}
.fc5{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(50,50,50);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:18.803681px;}
.fsa{font-size:23.394563px;}
.fsd{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:42.120000px;}
.fsc{font-size:47.880000px;}
.fs9{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs10{font-size:72.000000px;}
.fsf{font-size:83.880000px;}
.fs2{font-size:96.120000px;}
.fs0{font-size:108.000000px;}
.fs7{font-size:119.880000px;}
.fse{font-size:203.514482px;}
.fs8{font-size:263.372671px;}
.yc1{bottom:-1.200000px;}
.y0{bottom:0.000000px;}
.yc3{bottom:0.660000px;}
.y8f{bottom:2.564274px;}
.ybf{bottom:2.738515px;}
.y14f{bottom:2.880000px;}
.y155{bottom:2.970000px;}
.ye2{bottom:3.240000px;}
.ye4{bottom:5.400000px;}
.y8e{bottom:9.396526px;}
.y14d{bottom:10.620000px;}
.y145{bottom:11.682790px;}
.ye8{bottom:11.790000px;}
.ye0{bottom:11.880000px;}
.y44{bottom:15.118962px;}
.y8d{bottom:16.228556px;}
.y14b{bottom:18.450000px;}
.ye7{bottom:20.430000px;}
.ye1{bottom:20.520000px;}
.y14c{bottom:26.190000px;}
.y15c{bottom:28.170000px;}
.y151{bottom:28.260000px;}
.y14e{bottom:33.930000px;}
.y157{bottom:36.630000px;}
.y166{bottom:112.050000px;}
.y1bc{bottom:115.020000px;}
.y78{bottom:116.550000px;}
.y129{bottom:116.640000px;}
.y18f{bottom:118.530000px;}
.y12e{bottom:119.520000px;}
.y109{bottom:123.210000px;}
.ybd{bottom:123.840000px;}
.y1e6{bottom:125.460000px;}
.y42{bottom:126.360000px;}
.y117{bottom:126.540000px;}
.y165{bottom:130.680000px;}
.y206{bottom:132.210000px;}
.y1bb{bottom:132.300000px;}
.y229{bottom:134.370000px;}
.y77{bottom:135.180000px;}
.y128{bottom:135.270000px;}
.y18e{bottom:137.070000px;}
.y108{bottom:141.840000px;}
.ybc{bottom:142.470000px;}
.y19f{bottom:142.590000px;}
.y1e5{bottom:142.770000px;}
.y41{bottom:145.020000px;}
.y116{bottom:145.200000px;}
.y8b{bottom:146.640000px;}
.y12d{bottom:149.250000px;}
.y205{bottom:149.520000px;}
.y76{bottom:153.840000px;}
.y127{bottom:153.930000px;}
.y18d{bottom:155.730000px;}
.y1e4{bottom:159.960000px;}
.y107{bottom:160.500000px;}
.y19e{bottom:161.130000px;}
.y1ba{bottom:161.580000px;}
.ybb{bottom:162.120000px;}
.y164{bottom:163.380000px;}
.y40{bottom:163.650000px;}
.y115{bottom:163.830000px;}
.y8a{bottom:165.270000px;}
.y204{bottom:166.710000px;}
.y75{bottom:172.380000px;}
.y126{bottom:172.560000px;}
.y18c{bottom:174.360000px;}
.y160{bottom:176.970000px;}
.y1b9{bottom:178.860000px;}
.y106{bottom:179.040000px;}
.y19d{bottom:179.760000px;}
.yba{bottom:180.750000px;}
.y3f{bottom:182.280000px;}
.y114{bottom:182.460000px;}
.y89{bottom:183.900000px;}
.y203{bottom:183.990000px;}
.y1e3{bottom:189.210000px;}
.y74{bottom:191.010000px;}
.y125{bottom:191.100000px;}
.y18b{bottom:192.990000px;}
.y163{bottom:193.710000px;}
.y105{bottom:197.670000px;}
.y19c{bottom:198.390000px;}
.yb9{bottom:199.380000px;}
.y3e{bottom:200.820000px;}
.y113{bottom:201.090000px;}
.y202{bottom:201.270000px;}
.y88{bottom:202.440000px;}
.y1e2{bottom:206.490000px;}
.y1b8{bottom:208.020000px;}
.y73{bottom:209.640000px;}
.y124{bottom:209.730000px;}
.y162{bottom:210.450000px;}
.y18a{bottom:211.620000px;}
.y104{bottom:216.300000px;}
.y148{bottom:216.840000px;}
.y19b{bottom:217.020000px;}
.yb8{bottom:219.090000px;}
.y3d{bottom:219.450000px;}
.y112{bottom:219.630000px;}
.y87{bottom:221.070000px;}
.y1b7{bottom:225.300000px;}
.y161{bottom:227.190000px;}
.y72{bottom:228.270000px;}
.y123{bottom:228.360000px;}
.y189{bottom:230.160000px;}
.y201{bottom:230.430000px;}
.y103{bottom:234.930000px;}
.y19a{bottom:235.650000px;}
.y1e1{bottom:235.740000px;}
.yb7{bottom:237.720000px;}
.y3c{bottom:238.080000px;}
.y111{bottom:238.260000px;}
.y86{bottom:239.700000px;}
.y1b6{bottom:242.580000px;}
.y147{bottom:243.300000px;}
.y15b{bottom:243.930000px;}
.y71{bottom:246.900000px;}
.y122{bottom:246.990000px;}
.y200{bottom:247.710000px;}
.y188{bottom:248.790000px;}
.y15{bottom:251.199006px;}
.y1e0{bottom:253.020000px;}
.y102{bottom:253.560000px;}
.y199{bottom:254.190000px;}
.y143{bottom:255.450000px;}
.yb6{bottom:256.350000px;}
.y3b{bottom:256.710000px;}
.y110{bottom:256.890000px;}
.y85{bottom:258.330000px;}
.y15f{bottom:260.670000px;}
.y1ff{bottom:264.990000px;}
.y70{bottom:265.530000px;}
.y121{bottom:265.620000px;}
.y187{bottom:267.420000px;}
.y14{bottom:269.199006px;}
.y142{bottom:269.940000px;}
.y1b5{bottom:271.830000px;}
.y101{bottom:272.100000px;}
.y3a{bottom:275.340000px;}
.y10f{bottom:275.520000px;}
.yb5{bottom:275.970000px;}
.y84{bottom:276.960000px;}
.y15e{bottom:277.320000px;}
.y1df{bottom:282.180000px;}
.y6f{bottom:284.070000px;}
.y120{bottom:284.250000px;}
.y186{bottom:286.050000px;}
.y1b4{bottom:289.110000px;}
.y100{bottom:290.730000px;}
.y39{bottom:293.970000px;}
.y15d{bottom:294.060000px;}
.y10e{bottom:294.150000px;}
.y1fe{bottom:294.240000px;}
.yb4{bottom:294.600000px;}
.y83{bottom:295.500000px;}
.y1de{bottom:299.460000px;}
.y6e{bottom:302.700000px;}
.y11f{bottom:302.790000px;}
.y185{bottom:304.680000px;}
.y13{bottom:305.199006px;}
.y1b3{bottom:306.300000px;}
.yff{bottom:309.360000px;}
.y156{bottom:310.800000px;}
.y1fd{bottom:311.520000px;}
.y38{bottom:312.510000px;}
.y10d{bottom:312.780000px;}
.y82{bottom:314.130000px;}
.yb3{bottom:314.310000px;}
.y6d{bottom:321.330000px;}
.y11e{bottom:321.420000px;}
.y12{bottom:323.199006px;}
.y184{bottom:323.310000px;}
.y15a{bottom:327.540000px;}
.yfe{bottom:327.990000px;}
.y1dd{bottom:328.710000px;}
.y144{bottom:329.669548px;}
.y37{bottom:331.140000px;}
.yb2{bottom:332.940000px;}
.y1b2{bottom:337.350000px;}
.y6c{bottom:339.960000px;}
.y11d{bottom:340.410000px;}
.y11{bottom:341.199006px;}
.y183{bottom:341.850000px;}
.y159{bottom:344.280000px;}
.y10c{bottom:345.360000px;}
.y1dc{bottom:345.990000px;}
.yfd{bottom:346.620000px;}
.y81{bottom:346.800000px;}
.y36{bottom:349.770000px;}
.y1fc{bottom:357.960000px;}
.y6b{bottom:358.590000px;}
.y11c{bottom:359.040000px;}
.y10{bottom:359.199006px;}
.y8c{bottom:359.838264px;}
.y182{bottom:360.480000px;}
.y158{bottom:361.020000px;}
.yb1{bottom:361.740000px;}
.y10b{bottom:362.820000px;}
.yfc{bottom:365.250000px;}
.y198{bottom:368.310000px;}
.y35{bottom:368.400000px;}
.y1db{bottom:375.240000px;}
.yf{bottom:377.199006px;}
.y6a{bottom:377.220000px;}
.y11b{bottom:377.670000px;}
.y10a{bottom:378.480000px;}
.y181{bottom:379.110000px;}
.yfb{bottom:383.790000px;}
.y197{bottom:386.940000px;}
.y34{bottom:387.030000px;}
.y1fb{bottom:387.210000px;}
.y1da{bottom:392.520000px;}
.y150{bottom:394.410000px;}
.ye{bottom:395.199006px;}
.yeb{bottom:395.490000px;}
.y69{bottom:395.760000px;}
.y11a{bottom:396.300000px;}
.y1b1{bottom:397.470000px;}
.y180{bottom:397.740000px;}
.yfa{bottom:402.420000px;}
.yb0{bottom:403.230000px;}
.y1fa{bottom:404.490000px;}
.y33{bottom:405.570000px;}
.y1d9{bottom:409.710000px;}
.y154{bottom:411.150000px;}
.y68{bottom:414.390000px;}
.y1b0{bottom:416.010000px;}
.y17f{bottom:416.370000px;}
.yea{bottom:417.090000px;}
.yaf{bottom:420.600000px;}
.yf9{bottom:421.050000px;}
.y1f9{bottom:421.680000px;}
.ybe{bottom:423.929163px;}
.y32{bottom:424.200000px;}
.y43{bottom:426.632781px;}
.y153{bottom:427.890000px;}
.y119{bottom:428.880000px;}
.y67{bottom:433.020000px;}
.y1af{bottom:434.640000px;}
.y17e{bottom:435.000000px;}
.ye9{bottom:438.690000px;}
.y1d8{bottom:438.960000px;}
.yae{bottom:439.230000px;}
.yf8{bottom:439.680000px;}
.y196{bottom:442.830000px;}
.y118{bottom:443.370000px;}
.y152{bottom:444.630000px;}
.y212{bottom:450.030000px;}
.yd{bottom:450.699006px;}
.y1f8{bottom:450.930000px;}
.y66{bottom:451.650000px;}
.y1ae{bottom:453.270000px;}
.y17d{bottom:453.540000px;}
.y31{bottom:455.250000px;}
.y1d7{bottom:456.240000px;}
.yad{bottom:457.860000px;}
.yf7{bottom:458.310000px;}
.ye6{bottom:460.290000px;}
.y14a{bottom:461.370000px;}
.y195{bottom:461.460000px;}
.y1f7{bottom:468.210000px;}
.yc{bottom:468.699006px;}
.y65{bottom:470.280000px;}
.y17c{bottom:472.170000px;}
.y1d6{bottom:473.430000px;}
.yac{bottom:476.490000px;}
.yf6{bottom:476.940000px;}
.y194{bottom:480.000000px;}
.y1ad{bottom:482.070000px;}
.y211{bottom:483.690000px;}
.yb{bottom:486.699006px;}
.y64{bottom:488.820000px;}
.y1d5{bottom:490.710000px;}
.y17b{bottom:490.800000px;}
.ye5{bottom:494.760000px;}
.yab{bottom:495.120000px;}
.yf5{bottom:495.480000px;}
.y1f6{bottom:497.460000px;}
.y193{bottom:498.630000px;}
.y63{bottom:507.450000px;}
.y17a{bottom:509.430000px;}
.yaa{bottom:513.660000px;}
.yf4{bottom:514.110000px;}
.y210{bottom:514.650000px;}
.y1f5{bottom:514.740000px;}
.y30{bottom:515.370000px;}
.ye3{bottom:516.360000px;}
.y192{bottom:517.260000px;}
.yc2{bottom:517.500000px;}
.y1d4{bottom:519.960000px;}
.y1ac{bottom:520.500000px;}
.y62{bottom:526.080000px;}
.y149{bottom:527.250000px;}
.y179{bottom:528.060000px;}
.y20f{bottom:531.930000px;}
.ya9{bottom:532.290000px;}
.yf3{bottom:532.740000px;}
.y2f{bottom:534.000000px;}
.y1d3{bottom:537.240000px;}
.ydf{bottom:538.680000px;}
.y191{bottom:538.950000px;}
.y1f4{bottom:543.900000px;}
.y61{bottom:544.710000px;}
.y178{bottom:546.600000px;}
.y20e{bottom:549.210000px;}
.y1ab{bottom:550.650000px;}
.ya8{bottom:550.920000px;}
.yf2{bottom:551.370000px;}
.y2e{bottom:552.630000px;}
.ya{bottom:552.699016px;}
.y1f3{bottom:561.210000px;}
.y60{bottom:563.370000px;}
.y177{bottom:565.260000px;}
.y1d2{bottom:566.430000px;}
.ya7{bottom:569.580000px;}
.yf1{bottom:570.030000px;}
.y2d{bottom:571.200000px;}
.y227{bottom:572.640000px;}
.y20d{bottom:578.490000px;}
.yde{bottom:578.760000px;}
.y190{bottom:579.750000px;}
.y9{bottom:581.199016px;}
.y5f{bottom:582.000000px;}
.y1d1{bottom:583.710000px;}
.y176{bottom:583.890000px;}
.ya6{bottom:588.210000px;}
.yf0{bottom:588.570000px;}
.y2c{bottom:589.830000px;}
.y1aa{bottom:590.100000px;}
.y1f2{bottom:590.460000px;}
.y226{bottom:592.800000px;}
.y20c{bottom:595.770000px;}
.ydd{bottom:596.310000px;}
.y5e{bottom:600.540000px;}
.y175{bottom:602.520000px;}
.yc0{bottom:605.250000px;}
.ya5{bottom:606.840000px;}
.y1f1{bottom:607.740000px;}
.y2b{bottom:608.460000px;}
.y1a9{bottom:608.730000px;}
.y8{bottom:609.699016px;}
.y225{bottom:612.060000px;}
.y1d0{bottom:612.960000px;}
.ydc{bottom:614.940000px;}
.yef{bottom:617.370000px;}
.y5d{bottom:619.170000px;}
.y174{bottom:621.150000px;}
.y20b{bottom:624.930000px;}
.ya4{bottom:625.380000px;}
.y2a{bottom:627.090000px;}
.y1a8{bottom:627.360000px;}
.y1cf{bottom:630.240000px;}
.y224{bottom:631.050000px;}
.ydb{bottom:633.570000px;}
.y1f0{bottom:636.990000px;}
.y5c{bottom:637.800000px;}
.y173{bottom:639.780000px;}
.y20a{bottom:642.210000px;}
.ya3{bottom:644.010000px;}
.y29{bottom:645.720000px;}
.y1a7{bottom:645.990000px;}
.y80{bottom:651.930000px;}
.yda{bottom:652.200000px;}
.y1ef{bottom:654.270000px;}
.y5b{bottom:656.430000px;}
.y7{bottom:657.699016px;}
.y172{bottom:658.320000px;}
.y1ce{bottom:659.490000px;}
.y228{bottom:660.030000px;}
.ya2{bottom:662.640000px;}
.yee{bottom:663.270000px;}
.y28{bottom:664.260000px;}
.y7f{bottom:670.560000px;}
.yd9{bottom:670.830000px;}
.y1ee{bottom:671.460000px;}
.y1a6{bottom:674.790000px;}
.y5a{bottom:675.060000px;}
.y171{bottom:676.950000px;}
.ya1{bottom:681.270000px;}
.y27{bottom:682.890000px;}
.y1cd{bottom:688.740000px;}
.y7e{bottom:689.190000px;}
.yd8{bottom:689.370000px;}
.y141{bottom:693.240000px;}
.y59{bottom:693.690000px;}
.y170{bottom:695.580000px;}
.ya0{bottom:699.900000px;}
.y26{bottom:701.520000px;}
.y6{bottom:705.699016px;}
.y1cc{bottom:706.020000px;}
.y7d{bottom:707.820000px;}
.yd7{bottom:708.000000px;}
.y140{bottom:711.870000px;}
.y58{bottom:712.230000px;}
.y16f{bottom:714.210000px;}
.y1ed{bottom:717.990000px;}
.y9f{bottom:718.530000px;}
.y25{bottom:720.150000px;}
.yed{bottom:722.400000px;}
.y7c{bottom:726.450000px;}
.yd6{bottom:726.630000px;}
.y13f{bottom:730.500000px;}
.y57{bottom:730.860000px;}
.y16e{bottom:732.840000px;}
.y5{bottom:734.199016px;}
.y1cb{bottom:735.180000px;}
.yec{bottom:735.270000px;}
.y9e{bottom:737.070000px;}
.y24{bottom:738.780000px;}
.y7b{bottom:745.080000px;}
.yd5{bottom:745.260000px;}
.y13e{bottom:749.130000px;}
.y56{bottom:749.490000px;}
.y16d{bottom:751.470000px;}
.y1ca{bottom:752.460000px;}
.y9d{bottom:755.700000px;}
.y23{bottom:757.410000px;}
.y4{bottom:762.699016px;}
.yd4{bottom:763.890000px;}
.y1ec{bottom:764.430000px;}
.y13d{bottom:767.760000px;}
.y55{bottom:768.120000px;}
.y16c{bottom:770.010000px;}
.y7a{bottom:773.790000px;}
.y9c{bottom:774.330000px;}
.y22{bottom:775.950000px;}
.y1c9{bottom:781.710000px;}
.yd3{bottom:782.430000px;}
.y13c{bottom:786.300000px;}
.y54{bottom:786.750000px;}
.y16b{bottom:788.640000px;}
.y9b{bottom:792.960000px;}
.y146{bottom:794.250000px;}
.y21{bottom:794.580000px;}
.y1c8{bottom:798.990000px;}
.yd2{bottom:801.060000px;}
.y13b{bottom:804.930000px;}
.y53{bottom:805.290000px;}
.y16a{bottom:807.270000px;}
.y1eb{bottom:810.960000px;}
.y9a{bottom:811.590000px;}
.y20{bottom:813.210000px;}
.y3{bottom:818.199016px;}
.yd1{bottom:819.600000px;}
.y79{bottom:819.690000px;}
.y12c{bottom:821.400000px;}
.y13a{bottom:823.560000px;}
.y52{bottom:823.920000px;}
.y169{bottom:825.900000px;}
.y1c7{bottom:828.240000px;}
.yd0{bottom:829.680000px;}
.y99{bottom:830.130000px;}
.y1f{bottom:831.840000px;}
.y223{bottom:838.950000px;}
.y139{bottom:842.190000px;}
.y51{bottom:842.550000px;}
.y168{bottom:844.530000px;}
.y1c6{bottom:845.520000px;}
.y98{bottom:848.760000px;}
.y1e{bottom:850.470000px;}
.y12b{bottom:851.190000px;}
.y1ea{bottom:857.400000px;}
.ycf{bottom:857.940000px;}
.y2{bottom:858.699016px;}
.y222{bottom:859.020000px;}
.y138{bottom:860.820000px;}
.y50{bottom:861.180000px;}
.y1a5{bottom:863.070000px;}
.y97{bottom:867.390000px;}
.y1d{bottom:870.450000px;}
.y1c5{bottom:874.680000px;}
.y167{bottom:875.490000px;}
.yce{bottom:876.570000px;}
.y221{bottom:879.180000px;}
.y137{bottom:879.360000px;}
.y4f{bottom:879.810000px;}
.y12a{bottom:880.980000px;}
.y1a4{bottom:881.700000px;}
.y96{bottom:886.020000px;}
.y1c4{bottom:891.960000px;}
.ycd{bottom:895.200000px;}
.y136{bottom:897.990000px;}
.y4e{bottom:898.440000px;}
.y220{bottom:899.700000px;}
.y1a3{bottom:900.330000px;}
.y1c{bottom:903.300000px;}
.y95{bottom:904.650000px;}
.y1c3{bottom:909.240000px;}
.ycc{bottom:913.830000px;}
.y135{bottom:916.620000px;}
.y4d{bottom:916.980000px;}
.y1a2{bottom:918.960000px;}
.y21f{bottom:920.760000px;}
.y1e9{bottom:921.210000px;}
.y94{bottom:923.280000px;}
.y1{bottom:931.785016px;}
.ycb{bottom:932.370000px;}
.y134{bottom:935.250000px;}
.y4c{bottom:935.610000px;}
.y1b{bottom:935.790000px;}
.y1a1{bottom:937.590000px;}
.y1c2{bottom:938.400000px;}
.y1e8{bottom:938.490000px;}
.y218{bottom:939.120000px;}
.y21e{bottom:940.920000px;}
.y93{bottom:941.820000px;}
.yca{bottom:952.080000px;}
.y133{bottom:953.880000px;}
.y4b{bottom:954.240000px;}
.y1c1{bottom:955.680000px;}
.y1a{bottom:956.220000px;}
.y92{bottom:960.450000px;}
.y21d{bottom:961.350000px;}
.y217{bottom:961.800000px;}
.y1a0{bottom:968.640000px;}
.yc9{bottom:970.710000px;}
.y132{bottom:972.510000px;}
.y4a{bottom:972.870000px;}
.y1c0{bottom:972.960000px;}
.y19{bottom:976.200000px;}
.y91{bottom:979.110000px;}
.y21c{bottom:982.440000px;}
.y216{bottom:984.510000px;}
.y209{bottom:984.960000px;}
.yc8{bottom:989.370000px;}
.y131{bottom:991.080000px;}
.y49{bottom:991.530000px;}
.y18{bottom:995.400000px;}
.y1bf{bottom:1002.240000px;}
.y21b{bottom:1002.600000px;}
.y215{bottom:1007.100000px;}
.y90{bottom:1007.910000px;}
.yc7{bottom:1008.000000px;}
.y130{bottom:1009.710000px;}
.y48{bottom:1010.160000px;}
.y1be{bottom:1019.520000px;}
.y21a{bottom:1023.120000px;}
.y17{bottom:1025.550000px;}
.yc6{bottom:1026.540000px;}
.y12f{bottom:1028.340000px;}
.y47{bottom:1028.700000px;}
.y214{bottom:1029.690000px;}
.y208{bottom:1031.490000px;}
.y1bd{bottom:1036.710000px;}
.y219{bottom:1044.090000px;}
.yc5{bottom:1046.250000px;}
.y46{bottom:1047.330000px;}
.y1e7{bottom:1048.680000px;}
.y207{bottom:1048.770000px;}
.y16{bottom:1057.140000px;}
.y213{bottom:1064.250000px;}
.yc4{bottom:1064.880000px;}
.y45{bottom:1065.960000px;}
.h18{height:14.670000px;}
.h26{height:15.930000px;}
.h28{height:16.020000px;}
.h19{height:16.470000px;}
.h17{height:19.611651px;}
.h1e{height:21.600000px;}
.h14{height:24.399798px;}
.h1f{height:34.470000px;}
.h1c{height:34.500000px;}
.he{height:43.475449px;}
.h2{height:45.000000px;}
.h23{height:46.530000px;}
.h9{height:47.640762px;}
.h11{height:48.995859px;}
.hb{height:49.552031px;}
.h27{height:52.998047px;}
.h24{height:54.421875px;}
.h12{height:55.291992px;}
.h8{height:59.004492px;}
.hc{height:59.973223px;}
.h1d{height:60.589687px;}
.h15{height:62.703281px;}
.h3{height:62.818125px;}
.h7{height:64.657617px;}
.h6{height:65.526152px;}
.h25{height:66.150000px;}
.ha{height:67.456230px;}
.h2c{height:67.714259px;}
.h2d{height:74.004654px;}
.h1{height:81.000000px;}
.h29{height:82.890000px;}
.h2a{height:83.429473px;}
.h5{height:95.603730px;}
.h1a{height:98.845664px;}
.h1b{height:99.324492px;}
.h2b{height:119.236113px;}
.hd{height:125.031094px;}
.h22{height:148.164108px;}
.h2e{height:150.120000px;}
.h10{height:191.742506px;}
.h16{height:231.082519px;}
.h13{height:288.182579px;}
.h21{height:321.746629px;}
.hf{height:416.379552px;}
.h20{height:918.000000px;}
.h0{height:1063.500000px;}
.h4{height:1188.000000px;}
.w6{width:49.680000px;}
.w7{width:51.660000px;}
.w9{width:70.650000px;}
.w17{width:73.980000px;}
.w14{width:84.690000px;}
.w13{width:94.590000px;}
.w15{width:95.310000px;}
.w16{width:95.340000px;}
.wd{width:105.930000px;}
.we{width:106.230000px;}
.wb{width:108.120000px;}
.wa{width:113.400000px;}
.wc{width:113.670000px;}
.w8{width:132.870000px;}
.w5{width:273.490055px;}
.w12{width:321.746629px;}
.w4{width:360.899846px;}
.w3{width:416.379552px;}
.w18{width:737.010000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.w11{width:1187.999965px;}
.w10{width:1187.999982px;}
.wf{width:1188.000000px;}
.x0{left:0.000000px;}
.x32{left:8.100000px;}
.x17{left:10.920000px;}
.x27{left:11.970000px;}
.x22{left:13.770000px;}
.x20{left:15.120000px;}
.x26{left:16.740000px;}
.x29{left:18.090000px;}
.x24{left:19.350000px;}
.x1e{left:21.060000px;}
.x30{left:23.220000px;}
.x2e{left:25.110000px;}
.x2d{left:26.910000px;}
.x2c{left:27.990000px;}
.x2b{left:30.600000px;}
.x44{left:32.670000px;}
.x31{left:35.190000px;}
.x41{left:36.570000px;}
.x2f{left:37.710000px;}
.xa{left:39.953305px;}
.x2a{left:49.770000px;}
.x1c{left:52.290000px;}
.xb{left:55.889973px;}
.x7{left:64.259973px;}
.x3{left:72.629973px;}
.x4{left:80.999986px;}
.x1b{left:83.610000px;}
.x1{left:105.000000px;}
.x6{left:107.999986px;}
.xf{left:112.949986px;}
.x48{left:114.840000px;}
.x13{left:118.619986px;}
.x8{left:134.999986px;}
.x10{left:139.949986px;}
.x46{left:143.999986px;}
.x15{left:148.487628px;}
.x2{left:153.449986px;}
.x12{left:169.139986px;}
.xe{left:180.344266px;}
.x47{left:189.029986px;}
.x3d{left:193.800000px;}
.x3c{left:200.819986px;}
.x37{left:207.029986px;}
.x1d{left:216.480000px;}
.x14{left:230.625000px;}
.x9{left:245.381996px;}
.xd{left:264.975000px;}
.x19{left:284.429986px;}
.x1f{left:287.130000px;}
.x3e{left:288.750000px;}
.xc{left:293.699986px;}
.x35{left:306.299986px;}
.x45{left:324.569986px;}
.x1a{left:340.499986px;}
.x18{left:369.810000px;}
.x3f{left:373.800000px;}
.x16{left:381.420000px;}
.x21{left:400.530000px;}
.x5{left:408.449986px;}
.x39{left:428.919354px;}
.x11{left:459.029986px;}
.x40{left:469.470000px;}
.x3b{left:495.749982px;}
.x23{left:508.650000px;}
.x42{left:565.260000px;}
.x25{left:622.320000px;}
.x43{left:639.600000px;}
.x33{left:650.309986px;}
.x34{left:676.679986px;}
.x28{left:728.250000px;}
.x36{left:762.089986px;}
.x38{left:1094.219982px;}
.x3a{left:1122.839982px;}
@media print{
.vb{vertical-align:-55.680000pt;}
.vc{vertical-align:-51.520000pt;}
.va{vertical-align:-45.760000pt;}
.ve{vertical-align:-18.560000pt;}
.v4{vertical-align:-10.880000pt;}
.v2{vertical-align:-5.440000pt;}
.v9{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:5.440000pt;}
.v5{vertical-align:10.880000pt;}
.vd{vertical-align:16.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:24.000000pt;}
.v6{vertical-align:40.320000pt;}
.v7{vertical-align:46.720000pt;}
.ls26{letter-spacing:-3.120000pt;}
.ls8{letter-spacing:-0.367467pt;}
.ls33{letter-spacing:-0.355733pt;}
.ls28{letter-spacing:-0.352000pt;}
.ls20{letter-spacing:-0.320000pt;}
.ls34{letter-spacing:-0.308267pt;}
.ls9{letter-spacing:-0.272533pt;}
.ls4{letter-spacing:-0.240000pt;}
.ls12{letter-spacing:-0.195733pt;}
.ls11{letter-spacing:-0.183467pt;}
.ls2e{letter-spacing:-0.176000pt;}
.ls1e{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:-0.136533pt;}
.lsb{letter-spacing:-0.117867pt;}
.ls36{letter-spacing:-0.101867pt;}
.ls30{letter-spacing:-0.096000pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls27{letter-spacing:-0.032000pt;}
.ls38{letter-spacing:-0.024000pt;}
.ls39{letter-spacing:-0.014080pt;}
.ls1d{letter-spacing:-0.011840pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000960pt;}
.ls6{letter-spacing:0.011840pt;}
.ls2f{letter-spacing:0.016000pt;}
.lse{letter-spacing:0.032000pt;}
.ls1a{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.053867pt;}
.lsf{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.069867pt;}
.ls2{letter-spacing:0.080000pt;}
.ls17{letter-spacing:0.083200pt;}
.ls1b{letter-spacing:0.092267pt;}
.ls2b{letter-spacing:0.096000pt;}
.ls18{letter-spacing:0.106667pt;}
.ls31{letter-spacing:0.112000pt;}
.ls19{letter-spacing:0.124267pt;}
.ls1c{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls37{letter-spacing:0.291200pt;}
.lsa{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.400000pt;}
.ls2c{letter-spacing:0.426667pt;}
.ls32{letter-spacing:0.444267pt;}
.ls21{letter-spacing:1.040000pt;}
.ls2a{letter-spacing:1.165440pt;}
.ls25{letter-spacing:3.725440pt;}
.ls22{letter-spacing:9.805440pt;}
.ls16{letter-spacing:14.210240pt;}
.ls15{letter-spacing:14.800320pt;}
.ls14{letter-spacing:17.898560pt;}
.lsd{letter-spacing:36.663680pt;}
.lsc{letter-spacing:39.863680pt;}
.ls35{letter-spacing:52.840320pt;}
.ls23{letter-spacing:82.765440pt;}
.ls29{letter-spacing:762.552107pt;}
.ls1f{letter-spacing:1007.352107pt;}
.ls2d{letter-spacing:1459.192107pt;}
.ws2a{word-spacing:-58.560000pt;}
.ws1e{word-spacing:-53.440000pt;}
.ws27{word-spacing:-48.000000pt;}
.ws8{word-spacing:-24.136427pt;}
.ws9{word-spacing:-24.082560pt;}
.ws4{word-spacing:-19.309440pt;}
.ws29{word-spacing:-16.850560pt;}
.ws2{word-spacing:-14.773333pt;}
.ws2d{word-spacing:-13.525760pt;}
.wse{word-spacing:-13.520000pt;}
.ws1b{word-spacing:-13.496533pt;}
.ws10{word-spacing:-13.484267pt;}
.ws11{word-spacing:-13.407360pt;}
.ws1c{word-spacing:-13.360000pt;}
.ws1d{word-spacing:-13.348160pt;}
.wsc{word-spacing:-13.312640pt;}
.wsf{word-spacing:-13.235520pt;}
.ws6{word-spacing:-13.234560pt;}
.wsa{word-spacing:-13.223467pt;}
.ws2e{word-spacing:-13.210560pt;}
.ws1f{word-spacing:-13.200000pt;}
.wsd{word-spacing:-13.176533pt;}
.ws28{word-spacing:-13.164267pt;}
.wsb{word-spacing:-13.087467pt;}
.ws26{word-spacing:-12.112000pt;}
.ws25{word-spacing:-11.904000pt;}
.ws12{word-spacing:-11.849067pt;}
.ws1a{word-spacing:-11.810667pt;}
.ws13{word-spacing:-11.756800pt;}
.ws21{word-spacing:-10.848000pt;}
.ws23{word-spacing:-10.672000pt;}
.ws5{word-spacing:-9.360000pt;}
.ws7{word-spacing:-8.640000pt;}
.ws2b{word-spacing:-8.461440pt;}
.ws2c{word-spacing:-8.359573pt;}
.ws20{word-spacing:-8.320000pt;}
.ws16{word-spacing:-8.236800pt;}
.ws24{word-spacing:-8.000000pt;}
.ws22{word-spacing:-7.232000pt;}
.ws19{word-spacing:-0.231360pt;}
.ws3{word-spacing:0.000000pt;}
.ws15{word-spacing:0.163520pt;}
.ws14{word-spacing:6.382080pt;}
.ws17{word-spacing:6.398080pt;}
.ws18{word-spacing:48.405120pt;}
.ws1{word-spacing:268.800000pt;}
.ws0{word-spacing:298.453333pt;}
._12{margin-left:-14.503787pt;}
._19{margin-left:-7.002240pt;}
._a{margin-left:-5.921600pt;}
._6{margin-left:-4.860480pt;}
._9{margin-left:-3.668373pt;}
._4{margin-left:-2.136000pt;}
._5{margin-left:-1.025280pt;}
._7{width:0.926933pt;}
._8{width:1.912640pt;}
._f{width:3.097600pt;}
._e{width:4.008000pt;}
._10{width:4.904427pt;}
._d{width:6.092160pt;}
._15{width:7.115840pt;}
._11{width:8.176320pt;}
._b{width:9.565760pt;}
._c{width:10.521280pt;}
._1b{width:11.514027pt;}
._1a{width:12.451520pt;}
._17{width:15.070080pt;}
._14{width:16.070827pt;}
._13{width:17.008533pt;}
._16{width:18.276480pt;}
._18{width:19.238400pt;}
._2{width:28.640000pt;}
._3{width:58.293333pt;}
._1{width:79.040000pt;}
._0{width:132.320000pt;}
._1d{width:479.032107pt;}
._1c{width:575.032107pt;}
.fsb{font-size:16.714383pt;}
.fsa{font-size:20.795167pt;}
.fsd{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.440000pt;}
.fsc{font-size:42.560000pt;}
.fs9{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs10{font-size:64.000000pt;}
.fsf{font-size:74.560000pt;}
.fs2{font-size:85.440000pt;}
.fs0{font-size:96.000000pt;}
.fs7{font-size:106.560000pt;}
.fse{font-size:180.901762pt;}
.fs8{font-size:234.109040pt;}
.yc1{bottom:-1.066667pt;}
.y0{bottom:0.000000pt;}
.yc3{bottom:0.586667pt;}
.y8f{bottom:2.279355pt;}
.ybf{bottom:2.434236pt;}
.y14f{bottom:2.560000pt;}
.y155{bottom:2.640000pt;}
.ye2{bottom:2.880000pt;}
.ye4{bottom:4.800000pt;}
.y8e{bottom:8.352468pt;}
.y14d{bottom:9.440000pt;}
.y145{bottom:10.384702pt;}
.ye8{bottom:10.480000pt;}
.ye0{bottom:10.560000pt;}
.y44{bottom:13.439077pt;}
.y8d{bottom:14.425383pt;}
.y14b{bottom:16.400000pt;}
.ye7{bottom:18.160000pt;}
.ye1{bottom:18.240000pt;}
.y14c{bottom:23.280000pt;}
.y15c{bottom:25.040000pt;}
.y151{bottom:25.120000pt;}
.y14e{bottom:30.160000pt;}
.y157{bottom:32.560000pt;}
.y166{bottom:99.600000pt;}
.y1bc{bottom:102.240000pt;}
.y78{bottom:103.600000pt;}
.y129{bottom:103.680000pt;}
.y18f{bottom:105.360000pt;}
.y12e{bottom:106.240000pt;}
.y109{bottom:109.520000pt;}
.ybd{bottom:110.080000pt;}
.y1e6{bottom:111.520000pt;}
.y42{bottom:112.320000pt;}
.y117{bottom:112.480000pt;}
.y165{bottom:116.160000pt;}
.y206{bottom:117.520000pt;}
.y1bb{bottom:117.600000pt;}
.y229{bottom:119.440000pt;}
.y77{bottom:120.160000pt;}
.y128{bottom:120.240000pt;}
.y18e{bottom:121.840000pt;}
.y108{bottom:126.080000pt;}
.ybc{bottom:126.640000pt;}
.y19f{bottom:126.746667pt;}
.y1e5{bottom:126.906667pt;}
.y41{bottom:128.906667pt;}
.y116{bottom:129.066667pt;}
.y8b{bottom:130.346667pt;}
.y12d{bottom:132.666667pt;}
.y205{bottom:132.906667pt;}
.y76{bottom:136.746667pt;}
.y127{bottom:136.826667pt;}
.y18d{bottom:138.426667pt;}
.y1e4{bottom:142.186667pt;}
.y107{bottom:142.666667pt;}
.y19e{bottom:143.226667pt;}
.y1ba{bottom:143.626667pt;}
.ybb{bottom:144.106667pt;}
.y164{bottom:145.226667pt;}
.y40{bottom:145.466667pt;}
.y115{bottom:145.626667pt;}
.y8a{bottom:146.906667pt;}
.y204{bottom:148.186667pt;}
.y75{bottom:153.226667pt;}
.y126{bottom:153.386667pt;}
.y18c{bottom:154.986667pt;}
.y160{bottom:157.306667pt;}
.y1b9{bottom:158.986667pt;}
.y106{bottom:159.146667pt;}
.y19d{bottom:159.786667pt;}
.yba{bottom:160.666667pt;}
.y3f{bottom:162.026667pt;}
.y114{bottom:162.186667pt;}
.y89{bottom:163.466667pt;}
.y203{bottom:163.546667pt;}
.y1e3{bottom:168.186667pt;}
.y74{bottom:169.786667pt;}
.y125{bottom:169.866667pt;}
.y18b{bottom:171.546667pt;}
.y163{bottom:172.186667pt;}
.y105{bottom:175.706667pt;}
.y19c{bottom:176.346667pt;}
.yb9{bottom:177.226667pt;}
.y3e{bottom:178.506667pt;}
.y113{bottom:178.746667pt;}
.y202{bottom:178.906667pt;}
.y88{bottom:179.946667pt;}
.y1e2{bottom:183.546667pt;}
.y1b8{bottom:184.906667pt;}
.y73{bottom:186.346667pt;}
.y124{bottom:186.426667pt;}
.y162{bottom:187.066667pt;}
.y18a{bottom:188.106667pt;}
.y104{bottom:192.266667pt;}
.y148{bottom:192.746667pt;}
.y19b{bottom:192.906667pt;}
.yb8{bottom:194.746667pt;}
.y3d{bottom:195.066667pt;}
.y112{bottom:195.226667pt;}
.y87{bottom:196.506667pt;}
.y1b7{bottom:200.266667pt;}
.y161{bottom:201.946667pt;}
.y72{bottom:202.906667pt;}
.y123{bottom:202.986667pt;}
.y189{bottom:204.586667pt;}
.y201{bottom:204.826667pt;}
.y103{bottom:208.826667pt;}
.y19a{bottom:209.466667pt;}
.y1e1{bottom:209.546667pt;}
.yb7{bottom:211.306667pt;}
.y3c{bottom:211.626667pt;}
.y111{bottom:211.786667pt;}
.y86{bottom:213.066667pt;}
.y1b6{bottom:215.626667pt;}
.y147{bottom:216.266667pt;}
.y15b{bottom:216.826667pt;}
.y71{bottom:219.466667pt;}
.y122{bottom:219.546667pt;}
.y200{bottom:220.186667pt;}
.y188{bottom:221.146667pt;}
.y15{bottom:223.288005pt;}
.y1e0{bottom:224.906667pt;}
.y102{bottom:225.386667pt;}
.y199{bottom:225.946667pt;}
.y143{bottom:227.066667pt;}
.yb6{bottom:227.866667pt;}
.y3b{bottom:228.186667pt;}
.y110{bottom:228.346667pt;}
.y85{bottom:229.626667pt;}
.y15f{bottom:231.706667pt;}
.y1ff{bottom:235.546667pt;}
.y70{bottom:236.026667pt;}
.y121{bottom:236.106667pt;}
.y187{bottom:237.706667pt;}
.y14{bottom:239.288005pt;}
.y142{bottom:239.946667pt;}
.y1b5{bottom:241.626667pt;}
.y101{bottom:241.866667pt;}
.y3a{bottom:244.746667pt;}
.y10f{bottom:244.906667pt;}
.yb5{bottom:245.306667pt;}
.y84{bottom:246.186667pt;}
.y15e{bottom:246.506667pt;}
.y1df{bottom:250.826667pt;}
.y6f{bottom:252.506667pt;}
.y120{bottom:252.666667pt;}
.y186{bottom:254.266667pt;}
.y1b4{bottom:256.986667pt;}
.y100{bottom:258.426667pt;}
.y39{bottom:261.306667pt;}
.y15d{bottom:261.386667pt;}
.y10e{bottom:261.466667pt;}
.y1fe{bottom:261.546667pt;}
.yb4{bottom:261.866667pt;}
.y83{bottom:262.666667pt;}
.y1de{bottom:266.186667pt;}
.y6e{bottom:269.066667pt;}
.y11f{bottom:269.146667pt;}
.y185{bottom:270.826667pt;}
.y13{bottom:271.288005pt;}
.y1b3{bottom:272.266667pt;}
.yff{bottom:274.986667pt;}
.y156{bottom:276.266667pt;}
.y1fd{bottom:276.906667pt;}
.y38{bottom:277.786667pt;}
.y10d{bottom:278.026667pt;}
.y82{bottom:279.226667pt;}
.yb3{bottom:279.386667pt;}
.y6d{bottom:285.626667pt;}
.y11e{bottom:285.706667pt;}
.y12{bottom:287.288005pt;}
.y184{bottom:287.386667pt;}
.y15a{bottom:291.146667pt;}
.yfe{bottom:291.546667pt;}
.y1dd{bottom:292.186667pt;}
.y144{bottom:293.039598pt;}
.y37{bottom:294.346667pt;}
.yb2{bottom:295.946667pt;}
.y1b2{bottom:299.866667pt;}
.y6c{bottom:302.186667pt;}
.y11d{bottom:302.586667pt;}
.y11{bottom:303.288005pt;}
.y183{bottom:303.866667pt;}
.y159{bottom:306.026667pt;}
.y10c{bottom:306.986667pt;}
.y1dc{bottom:307.546667pt;}
.yfd{bottom:308.106667pt;}
.y81{bottom:308.266667pt;}
.y36{bottom:310.906667pt;}
.y1fc{bottom:318.186667pt;}
.y6b{bottom:318.746667pt;}
.y11c{bottom:319.146667pt;}
.y10{bottom:319.288005pt;}
.y8c{bottom:319.856234pt;}
.y182{bottom:320.426667pt;}
.y158{bottom:320.906667pt;}
.yb1{bottom:321.546667pt;}
.y10b{bottom:322.506667pt;}
.yfc{bottom:324.666667pt;}
.y198{bottom:327.386667pt;}
.y35{bottom:327.466667pt;}
.y1db{bottom:333.546667pt;}
.yf{bottom:335.288005pt;}
.y6a{bottom:335.306667pt;}
.y11b{bottom:335.706667pt;}
.y10a{bottom:336.426667pt;}
.y181{bottom:336.986667pt;}
.yfb{bottom:341.146667pt;}
.y197{bottom:343.946667pt;}
.y34{bottom:344.026667pt;}
.y1fb{bottom:344.186667pt;}
.y1da{bottom:348.906667pt;}
.y150{bottom:350.586667pt;}
.ye{bottom:351.288005pt;}
.yeb{bottom:351.546667pt;}
.y69{bottom:351.786667pt;}
.y11a{bottom:352.266667pt;}
.y1b1{bottom:353.306667pt;}
.y180{bottom:353.546667pt;}
.yfa{bottom:357.706667pt;}
.yb0{bottom:358.426667pt;}
.y1fa{bottom:359.546667pt;}
.y33{bottom:360.506667pt;}
.y1d9{bottom:364.186667pt;}
.y154{bottom:365.466667pt;}
.y68{bottom:368.346667pt;}
.y1b0{bottom:369.786667pt;}
.y17f{bottom:370.106667pt;}
.yea{bottom:370.746667pt;}
.yaf{bottom:373.866667pt;}
.yf9{bottom:374.266667pt;}
.y1f9{bottom:374.826667pt;}
.ybe{bottom:376.825923pt;}
.y32{bottom:377.066667pt;}
.y43{bottom:379.229138pt;}
.y153{bottom:380.346667pt;}
.y119{bottom:381.226667pt;}
.y67{bottom:384.906667pt;}
.y1af{bottom:386.346667pt;}
.y17e{bottom:386.666667pt;}
.ye9{bottom:389.946667pt;}
.y1d8{bottom:390.186667pt;}
.yae{bottom:390.426667pt;}
.yf8{bottom:390.826667pt;}
.y196{bottom:393.626667pt;}
.y118{bottom:394.106667pt;}
.y152{bottom:395.226667pt;}
.y212{bottom:400.026667pt;}
.yd{bottom:400.621338pt;}
.y1f8{bottom:400.826667pt;}
.y66{bottom:401.466667pt;}
.y1ae{bottom:402.906667pt;}
.y17d{bottom:403.146667pt;}
.y31{bottom:404.666667pt;}
.y1d7{bottom:405.546667pt;}
.yad{bottom:406.986667pt;}
.yf7{bottom:407.386667pt;}
.ye6{bottom:409.146667pt;}
.y14a{bottom:410.106667pt;}
.y195{bottom:410.186667pt;}
.y1f7{bottom:416.186667pt;}
.yc{bottom:416.621338pt;}
.y65{bottom:418.026667pt;}
.y17c{bottom:419.706667pt;}
.y1d6{bottom:420.826667pt;}
.yac{bottom:423.546667pt;}
.yf6{bottom:423.946667pt;}
.y194{bottom:426.666667pt;}
.y1ad{bottom:428.506667pt;}
.y211{bottom:429.946667pt;}
.yb{bottom:432.621338pt;}
.y64{bottom:434.506667pt;}
.y1d5{bottom:436.186667pt;}
.y17b{bottom:436.266667pt;}
.ye5{bottom:439.786667pt;}
.yab{bottom:440.106667pt;}
.yf5{bottom:440.426667pt;}
.y1f6{bottom:442.186667pt;}
.y193{bottom:443.226667pt;}
.y63{bottom:451.066667pt;}
.y17a{bottom:452.826667pt;}
.yaa{bottom:456.586667pt;}
.yf4{bottom:456.986667pt;}
.y210{bottom:457.466667pt;}
.y1f5{bottom:457.546667pt;}
.y30{bottom:458.106667pt;}
.ye3{bottom:458.986667pt;}
.y192{bottom:459.786667pt;}
.yc2{bottom:460.000000pt;}
.y1d4{bottom:462.186667pt;}
.y1ac{bottom:462.666667pt;}
.y62{bottom:467.626667pt;}
.y149{bottom:468.666667pt;}
.y179{bottom:469.386667pt;}
.y20f{bottom:472.826667pt;}
.ya9{bottom:473.146667pt;}
.yf3{bottom:473.546667pt;}
.y2f{bottom:474.666667pt;}
.y1d3{bottom:477.546667pt;}
.ydf{bottom:478.826667pt;}
.y191{bottom:479.066667pt;}
.y1f4{bottom:483.466667pt;}
.y61{bottom:484.186667pt;}
.y178{bottom:485.866667pt;}
.y20e{bottom:488.186667pt;}
.y1ab{bottom:489.466667pt;}
.ya8{bottom:489.706667pt;}
.yf2{bottom:490.106667pt;}
.y2e{bottom:491.226667pt;}
.ya{bottom:491.288014pt;}
.y1f3{bottom:498.853333pt;}
.y60{bottom:500.773333pt;}
.y177{bottom:502.453333pt;}
.y1d2{bottom:503.493333pt;}
.ya7{bottom:506.293333pt;}
.yf1{bottom:506.693333pt;}
.y2d{bottom:507.733333pt;}
.y227{bottom:509.013333pt;}
.y20d{bottom:514.213333pt;}
.yde{bottom:514.453333pt;}
.y190{bottom:515.333333pt;}
.y9{bottom:516.621348pt;}
.y5f{bottom:517.333333pt;}
.y1d1{bottom:518.853333pt;}
.y176{bottom:519.013333pt;}
.ya6{bottom:522.853333pt;}
.yf0{bottom:523.173333pt;}
.y2c{bottom:524.293333pt;}
.y1aa{bottom:524.533333pt;}
.y1f2{bottom:524.853333pt;}
.y226{bottom:526.933333pt;}
.y20c{bottom:529.573333pt;}
.ydd{bottom:530.053333pt;}
.y5e{bottom:533.813333pt;}
.y175{bottom:535.573333pt;}
.yc0{bottom:538.000000pt;}
.ya5{bottom:539.413333pt;}
.y1f1{bottom:540.213333pt;}
.y2b{bottom:540.853333pt;}
.y1a9{bottom:541.093333pt;}
.y8{bottom:541.954681pt;}
.y225{bottom:544.053333pt;}
.y1d0{bottom:544.853333pt;}
.ydc{bottom:546.613333pt;}
.yef{bottom:548.773333pt;}
.y5d{bottom:550.373333pt;}
.y174{bottom:552.133333pt;}
.y20b{bottom:555.493333pt;}
.ya4{bottom:555.893333pt;}
.y2a{bottom:557.413333pt;}
.y1a8{bottom:557.653333pt;}
.y1cf{bottom:560.213333pt;}
.y224{bottom:560.933333pt;}
.ydb{bottom:563.173333pt;}
.y1f0{bottom:566.213333pt;}
.y5c{bottom:566.933333pt;}
.y173{bottom:568.693333pt;}
.y20a{bottom:570.853333pt;}
.ya3{bottom:572.453333pt;}
.y29{bottom:573.973333pt;}
.y1a7{bottom:574.213333pt;}
.y80{bottom:579.493333pt;}
.yda{bottom:579.733333pt;}
.y1ef{bottom:581.573333pt;}
.y5b{bottom:583.493333pt;}
.y7{bottom:584.621348pt;}
.y172{bottom:585.173333pt;}
.y1ce{bottom:586.213333pt;}
.y228{bottom:586.693333pt;}
.ya2{bottom:589.013333pt;}
.yee{bottom:589.573333pt;}
.y28{bottom:590.453333pt;}
.y7f{bottom:596.053333pt;}
.yd9{bottom:596.293333pt;}
.y1ee{bottom:596.853333pt;}
.y1a6{bottom:599.813333pt;}
.y5a{bottom:600.053333pt;}
.y171{bottom:601.733333pt;}
.ya1{bottom:605.573333pt;}
.y27{bottom:607.013333pt;}
.y1cd{bottom:612.213333pt;}
.y7e{bottom:612.613333pt;}
.yd8{bottom:612.773333pt;}
.y141{bottom:616.213333pt;}
.y59{bottom:616.613333pt;}
.y170{bottom:618.293333pt;}
.ya0{bottom:622.133333pt;}
.y26{bottom:623.573333pt;}
.y6{bottom:627.288014pt;}
.y1cc{bottom:627.573333pt;}
.y7d{bottom:629.173333pt;}
.yd7{bottom:629.333333pt;}
.y140{bottom:632.773333pt;}
.y58{bottom:633.093333pt;}
.y16f{bottom:634.853333pt;}
.y1ed{bottom:638.213333pt;}
.y9f{bottom:638.693333pt;}
.y25{bottom:640.133333pt;}
.yed{bottom:642.133333pt;}
.y7c{bottom:645.733333pt;}
.yd6{bottom:645.893333pt;}
.y13f{bottom:649.333333pt;}
.y57{bottom:649.653333pt;}
.y16e{bottom:651.413333pt;}
.y5{bottom:652.621348pt;}
.y1cb{bottom:653.493333pt;}
.yec{bottom:653.573333pt;}
.y9e{bottom:655.173333pt;}
.y24{bottom:656.693333pt;}
.y7b{bottom:662.293333pt;}
.yd5{bottom:662.453333pt;}
.y13e{bottom:665.893333pt;}
.y56{bottom:666.213333pt;}
.y16d{bottom:667.973333pt;}
.y1ca{bottom:668.853333pt;}
.y9d{bottom:671.733333pt;}
.y23{bottom:673.253333pt;}
.y4{bottom:677.954681pt;}
.yd4{bottom:679.013333pt;}
.y1ec{bottom:679.493333pt;}
.y13d{bottom:682.453333pt;}
.y55{bottom:682.773333pt;}
.y16c{bottom:684.453333pt;}
.y7a{bottom:687.813333pt;}
.y9c{bottom:688.293333pt;}
.y22{bottom:689.733333pt;}
.y1c9{bottom:694.853333pt;}
.yd3{bottom:695.493333pt;}
.y13c{bottom:698.933333pt;}
.y54{bottom:699.333333pt;}
.y16b{bottom:701.013333pt;}
.y9b{bottom:704.853333pt;}
.y146{bottom:706.000000pt;}
.y21{bottom:706.293333pt;}
.y1c8{bottom:710.213333pt;}
.yd2{bottom:712.053333pt;}
.y13b{bottom:715.493333pt;}
.y53{bottom:715.813333pt;}
.y16a{bottom:717.573333pt;}
.y1eb{bottom:720.853333pt;}
.y9a{bottom:721.413333pt;}
.y20{bottom:722.853333pt;}
.y3{bottom:727.288014pt;}
.yd1{bottom:728.533333pt;}
.y79{bottom:728.613333pt;}
.y12c{bottom:730.133333pt;}
.y13a{bottom:732.053333pt;}
.y52{bottom:732.373333pt;}
.y169{bottom:734.133333pt;}
.y1c7{bottom:736.213333pt;}
.yd0{bottom:737.493333pt;}
.y99{bottom:737.893333pt;}
.y1f{bottom:739.413333pt;}
.y223{bottom:745.733333pt;}
.y139{bottom:748.613333pt;}
.y51{bottom:748.933333pt;}
.y168{bottom:750.693333pt;}
.y1c6{bottom:751.573333pt;}
.y98{bottom:754.453333pt;}
.y1e{bottom:755.973333pt;}
.y12b{bottom:756.613333pt;}
.y1ea{bottom:762.133333pt;}
.ycf{bottom:762.613333pt;}
.y2{bottom:763.288014pt;}
.y222{bottom:763.573333pt;}
.y138{bottom:765.173333pt;}
.y50{bottom:765.493333pt;}
.y1a5{bottom:767.173333pt;}
.y97{bottom:771.013333pt;}
.y1d{bottom:773.733333pt;}
.y1c5{bottom:777.493333pt;}
.y167{bottom:778.213333pt;}
.yce{bottom:779.173333pt;}
.y221{bottom:781.493333pt;}
.y137{bottom:781.653333pt;}
.y4f{bottom:782.053333pt;}
.y12a{bottom:783.093333pt;}
.y1a4{bottom:783.733333pt;}
.y96{bottom:787.573333pt;}
.y1c4{bottom:792.853333pt;}
.ycd{bottom:795.733333pt;}
.y136{bottom:798.213333pt;}
.y4e{bottom:798.613333pt;}
.y220{bottom:799.733333pt;}
.y1a3{bottom:800.293333pt;}
.y1c{bottom:802.933333pt;}
.y95{bottom:804.133333pt;}
.y1c3{bottom:808.213333pt;}
.ycc{bottom:812.293333pt;}
.y135{bottom:814.773333pt;}
.y4d{bottom:815.093333pt;}
.y1a2{bottom:816.853333pt;}
.y21f{bottom:818.453333pt;}
.y1e9{bottom:818.853333pt;}
.y94{bottom:820.693333pt;}
.y1{bottom:828.253348pt;}
.ycb{bottom:828.773333pt;}
.y134{bottom:831.333333pt;}
.y4c{bottom:831.653333pt;}
.y1b{bottom:831.813333pt;}
.y1a1{bottom:833.413333pt;}
.y1c2{bottom:834.133333pt;}
.y1e8{bottom:834.213333pt;}
.y218{bottom:834.773333pt;}
.y21e{bottom:836.373333pt;}
.y93{bottom:837.173333pt;}
.yca{bottom:846.293333pt;}
.y133{bottom:847.893333pt;}
.y4b{bottom:848.213333pt;}
.y1c1{bottom:849.493333pt;}
.y1a{bottom:849.973333pt;}
.y92{bottom:853.733333pt;}
.y21d{bottom:854.533333pt;}
.y217{bottom:854.933333pt;}
.y1a0{bottom:861.013333pt;}
.yc9{bottom:862.853333pt;}
.y132{bottom:864.453333pt;}
.y4a{bottom:864.773333pt;}
.y1c0{bottom:864.853333pt;}
.y19{bottom:867.733333pt;}
.y91{bottom:870.320000pt;}
.y21c{bottom:873.280000pt;}
.y216{bottom:875.120000pt;}
.y209{bottom:875.520000pt;}
.yc8{bottom:879.440000pt;}
.y131{bottom:880.960000pt;}
.y49{bottom:881.360000pt;}
.y18{bottom:884.800000pt;}
.y1bf{bottom:890.880000pt;}
.y21b{bottom:891.200000pt;}
.y215{bottom:895.200000pt;}
.y90{bottom:895.920000pt;}
.yc7{bottom:896.000000pt;}
.y130{bottom:897.520000pt;}
.y48{bottom:897.920000pt;}
.y1be{bottom:906.240000pt;}
.y21a{bottom:909.440000pt;}
.y17{bottom:911.600000pt;}
.yc6{bottom:912.480000pt;}
.y12f{bottom:914.080000pt;}
.y47{bottom:914.400000pt;}
.y214{bottom:915.280000pt;}
.y208{bottom:916.880000pt;}
.y1bd{bottom:921.520000pt;}
.y219{bottom:928.080000pt;}
.yc5{bottom:930.000000pt;}
.y46{bottom:930.960000pt;}
.y1e7{bottom:932.160000pt;}
.y207{bottom:932.240000pt;}
.y16{bottom:939.680000pt;}
.y213{bottom:946.000000pt;}
.yc4{bottom:946.560000pt;}
.y45{bottom:947.520000pt;}
.h18{height:13.040000pt;}
.h26{height:14.160000pt;}
.h28{height:14.240000pt;}
.h19{height:14.640000pt;}
.h17{height:17.432579pt;}
.h1e{height:19.200000pt;}
.h14{height:21.688709pt;}
.h1f{height:30.640000pt;}
.h1c{height:30.666667pt;}
.he{height:38.644844pt;}
.h2{height:40.000000pt;}
.h23{height:41.360000pt;}
.h9{height:42.347344pt;}
.h11{height:43.551875pt;}
.hb{height:44.046250pt;}
.h27{height:47.109375pt;}
.h24{height:48.375000pt;}
.h12{height:49.148438pt;}
.h8{height:52.448437pt;}
.hc{height:53.309531pt;}
.h1d{height:53.857500pt;}
.h15{height:55.736250pt;}
.h3{height:55.838333pt;}
.h7{height:57.473437pt;}
.h6{height:58.245469pt;}
.h25{height:58.800000pt;}
.ha{height:59.961094pt;}
.h2c{height:60.190452pt;}
.h2d{height:65.781915pt;}
.h1{height:72.000000pt;}
.h29{height:73.680000pt;}
.h2a{height:74.159531pt;}
.h5{height:84.981094pt;}
.h1a{height:87.862813pt;}
.h1b{height:88.288438pt;}
.h2b{height:105.987656pt;}
.hd{height:111.138750pt;}
.h22{height:131.701429pt;}
.h2e{height:133.440000pt;}
.h10{height:170.437783pt;}
.h16{height:205.406684pt;}
.h13{height:256.162292pt;}
.h21{height:285.997003pt;}
.hf{height:370.115158pt;}
.h20{height:816.000000pt;}
.h0{height:945.333333pt;}
.h4{height:1056.000000pt;}
.w6{width:44.160000pt;}
.w7{width:45.920000pt;}
.w9{width:62.800000pt;}
.w17{width:65.760000pt;}
.w14{width:75.280000pt;}
.w13{width:84.080000pt;}
.w15{width:84.720000pt;}
.w16{width:84.746667pt;}
.wd{width:94.160000pt;}
.we{width:94.426667pt;}
.wb{width:96.106667pt;}
.wa{width:100.800000pt;}
.wc{width:101.040000pt;}
.w8{width:118.106667pt;}
.w5{width:243.102271pt;}
.w12{width:285.997003pt;}
.w4{width:320.799863pt;}
.w3{width:370.115158pt;}
.w18{width:655.120000pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.w11{width:1055.999969pt;}
.w10{width:1055.999984pt;}
.wf{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x32{left:7.200000pt;}
.x17{left:9.706667pt;}
.x27{left:10.640000pt;}
.x22{left:12.240000pt;}
.x20{left:13.440000pt;}
.x26{left:14.880000pt;}
.x29{left:16.080000pt;}
.x24{left:17.200000pt;}
.x1e{left:18.720000pt;}
.x30{left:20.640000pt;}
.x2e{left:22.320000pt;}
.x2d{left:23.920000pt;}
.x2c{left:24.880000pt;}
.x2b{left:27.200000pt;}
.x44{left:29.040000pt;}
.x31{left:31.280000pt;}
.x41{left:32.506667pt;}
.x2f{left:33.520000pt;}
.xa{left:35.514049pt;}
.x2a{left:44.240000pt;}
.x1c{left:46.480000pt;}
.xb{left:49.679976pt;}
.x7{left:57.119976pt;}
.x3{left:64.559976pt;}
.x4{left:71.999988pt;}
.x1b{left:74.320000pt;}
.x1{left:93.333333pt;}
.x6{left:95.999988pt;}
.xf{left:100.399988pt;}
.x48{left:102.080000pt;}
.x13{left:105.439988pt;}
.x8{left:119.999988pt;}
.x10{left:124.399988pt;}
.x46{left:127.999988pt;}
.x15{left:131.989003pt;}
.x2{left:136.399988pt;}
.x12{left:150.346655pt;}
.xe{left:160.306014pt;}
.x47{left:168.026655pt;}
.x3d{left:172.266667pt;}
.x3c{left:178.506655pt;}
.x37{left:184.026655pt;}
.x1d{left:192.426667pt;}
.x14{left:205.000000pt;}
.x9{left:218.117330pt;}
.xd{left:235.533333pt;}
.x19{left:252.826655pt;}
.x1f{left:255.226667pt;}
.x3e{left:256.666667pt;}
.xc{left:261.066655pt;}
.x35{left:272.266655pt;}
.x45{left:288.506655pt;}
.x1a{left:302.666655pt;}
.x18{left:328.720000pt;}
.x3f{left:332.266667pt;}
.x16{left:339.040000pt;}
.x21{left:356.026667pt;}
.x5{left:363.066655pt;}
.x39{left:381.261648pt;}
.x11{left:408.026655pt;}
.x40{left:417.306667pt;}
.x3b{left:440.666651pt;}
.x23{left:452.133333pt;}
.x42{left:502.453333pt;}
.x25{left:553.173333pt;}
.x43{left:568.533333pt;}
.x33{left:578.053321pt;}
.x34{left:601.493321pt;}
.x28{left:647.333333pt;}
.x36{left:677.413321pt;}
.x38{left:972.639984pt;}
.x3a{left:998.079984pt;}
}




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