
    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_e53887d26622949b4108376c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.675293;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_6c31160b68e04090b29e05a8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_d989fa7a307539bd13729638.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_af17ec6bae2212ed7336a170.woff')format("woff");}.ff4{font-family:ff4;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1419026c2711a4ea21d29306.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_a4adc5eb0f5760a9c300dea7.woff')format("woff");}.ff6{font-family:ff6;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_68871c18d979ab9887295501.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_ab566e65fb0af67e86448e31.woff')format("woff");}.ff8{font-family:ff8;line-height:0.851074;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_b34b51fdda5c93bc988efd17.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_1e45c615179db448773b029f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7c7fe25d21823feb6c5a3c9b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.857422;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_b31cbece03fc1d90058064db.woff')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_976808fd74a7f12739f653d4.woff')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_a9d0a5b9902e4f057f52a177.woff')format("woff");}.ffe{font-family:ffe;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_2d353f10e5b4b4aa24ece9ca.woff')format("woff");}.fff{font-family:fff;line-height:0.957031;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_0e655b37b458b49c232551ab.woff')format("woff");}.ff10{font-family:ff10;line-height:0.940000;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_a121d9dcc62693d510f9fb4b.woff')format("woff");}.ff11{font-family:ff11;line-height:0.940000;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_b767b8ed7437412653ed642c.woff')format("woff");}.ff12{font-family:ff12;line-height:0.666504;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_ebce385902fe98f02f5670d1.woff')format("woff");}.ff13{font-family:ff13;line-height:0.851074;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_711d0836b45c1eaec9369e44.woff')format("woff");}.ff14{font-family:ff14;line-height:0.928000;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_20b435f1da398f39a6660234.woff')format("woff");}.ff15{font-family:ff15;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_250513cf3d9a85dc4ce6998f.woff')format("woff");}.ff16{font-family:ff16;line-height:0.893555;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_b5756b341c5411921f2132c5.woff')format("woff");}.ff17{font-family:ff17;line-height:0.871094;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_517d961ca07b325dcd741b48.woff')format("woff");}.ff18{font-family:ff18;line-height:0.666504;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_188651763cef0f292e564c41.woff')format("woff");}.ff19{font-family:ff19;line-height:0.861816;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_49f9cb908db6dd229bcc805b.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.666504;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_7257d16259f3890564145918.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.666504;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_38a7ad4ac78b0012061f3410.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.851074;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:ff1d;src:url('chunks/assets/font_a8193cf022531ae54911428c.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_28baeb711efc8c2e37cd51e8.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.666504;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:ff1f;src:url('chunks/assets/font_ec0f76ffbf9eabfafd019940.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.ls27{letter-spacing:-0.266112px;}
.ls28{letter-spacing:-0.260064px;}
.ls26{letter-spacing:-0.211968px;}
.ls1b{letter-spacing:-0.205344px;}
.ls1a{letter-spacing:-0.198720px;}
.ls35{letter-spacing:-0.192096px;}
.ls1f{letter-spacing:-0.185472px;}
.ls1d{letter-spacing:-0.172224px;}
.ls10{letter-spacing:-0.165600px;}
.ls23{letter-spacing:-0.158976px;}
.ls25{letter-spacing:-0.152352px;}
.lsf{letter-spacing:-0.145728px;}
.ls14{letter-spacing:-0.139104px;}
.ls12{letter-spacing:-0.132480px;}
.ls1e{letter-spacing:-0.125856px;}
.ls19{letter-spacing:-0.119232px;}
.ls11{letter-spacing:-0.112608px;}
.ls36{letter-spacing:-0.105984px;}
.ls24{letter-spacing:-0.099360px;}
.ls15{letter-spacing:-0.092736px;}
.ls37{letter-spacing:-0.086112px;}
.ls1c{letter-spacing:-0.079488px;}
.ls13{letter-spacing:-0.072864px;}
.ls17{letter-spacing:-0.066240px;}
.ls16{letter-spacing:-0.059616px;}
.ls22{letter-spacing:-0.052992px;}
.ls18{letter-spacing:-0.046368px;}
.ls9{letter-spacing:-0.043200px;}
.ls29{letter-spacing:-0.039744px;}
.ls3c{letter-spacing:-0.028800px;}
.ls8{letter-spacing:-0.021600px;}
.ls34{letter-spacing:-0.019872px;}
.ls33{letter-spacing:-0.014400px;}
.lse{letter-spacing:-0.007200px;}
.ls7{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.001440px;}
.ls20{letter-spacing:0.007200px;}
.ls39{letter-spacing:0.008496px;}
.ls3{letter-spacing:0.008928px;}
.ls4{letter-spacing:0.009072px;}
.ls3b{letter-spacing:0.012960px;}
.ls5{letter-spacing:0.014400px;}
.ls0{letter-spacing:0.021600px;}
.ls1{letter-spacing:0.027360px;}
.lsa{letter-spacing:0.028800px;}
.ls2b{letter-spacing:0.036000px;}
.ls3a{letter-spacing:0.043200px;}
.ls2{letter-spacing:0.108000px;}
.ls31{letter-spacing:0.263520px;}
.ls2f{letter-spacing:0.646560px;}
.ls30{letter-spacing:1.445760px;}
.ls2e{letter-spacing:5.847840px;}
.lsb{letter-spacing:17.903808px;}
.lsc{letter-spacing:17.904960px;}
.ls32{letter-spacing:17.971200px;}
.ls2d{letter-spacing:28.412640px;}
.ls2c{letter-spacing:31.867488px;}
.ls38{letter-spacing:35.476848px;}
.lsd{letter-spacing:59.227920px;}
.ls6{letter-spacing:837.000432px;}
.ls3e{letter-spacing:843.984000px;}
.ls2a{letter-spacing:846.000000px;}
.ls3d{letter-spacing:847.186560px;}
.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;}
}
.ws4{word-spacing:-43.869600px;}
.ws3{word-spacing:-43.848000px;}
.ws1{word-spacing:-21.945600px;}
.ws0{word-spacing:-21.924000px;}
.ws2{word-spacing:-21.902400px;}
.ws11{word-spacing:-18.414720px;}
.wsf{word-spacing:-18.355104px;}
.wsd{word-spacing:-18.335232px;}
.ws12{word-spacing:-18.288864px;}
.ws10{word-spacing:-18.282240px;}
.wse{word-spacing:-18.275616px;}
.ws1b{word-spacing:-16.813440px;}
.ws1a{word-spacing:-16.547328px;}
.ws26{word-spacing:-14.970240px;}
.ws25{word-spacing:-14.884128px;}
.ws27{word-spacing:-14.857632px;}
.ws28{word-spacing:-14.837760px;}
.ws34{word-spacing:-14.659200px;}
.ws30{word-spacing:-14.652000px;}
.ws6{word-spacing:-14.644800px;}
.ws35{word-spacing:-14.637600px;}
.ws5{word-spacing:-14.630400px;}
.ws1d{word-spacing:-14.623200px;}
.ws2f{word-spacing:-14.616000px;}
.ws31{word-spacing:-14.608800px;}
.ws37{word-spacing:-14.601600px;}
.ws36{word-spacing:-14.594400px;}
.ws32{word-spacing:-14.587200px;}
.ws15{word-spacing:-13.446720px;}
.ws14{word-spacing:-13.400352px;}
.ws21{word-spacing:-13.393728px;}
.ws1f{word-spacing:-13.387104px;}
.ws2e{word-spacing:-13.380480px;}
.ws22{word-spacing:-13.373856px;}
.ws23{word-spacing:-13.353984px;}
.ws17{word-spacing:-13.347360px;}
.ws24{word-spacing:-13.340736px;}
.ws1e{word-spacing:-13.334112px;}
.ws18{word-spacing:-13.327488px;}
.ws16{word-spacing:-13.320864px;}
.wsb{word-spacing:-13.314240px;}
.ws13{word-spacing:-13.307616px;}
.ws8{word-spacing:-13.300992px;}
.ws1c{word-spacing:-13.294368px;}
.ws2d{word-spacing:-13.287744px;}
.ws9{word-spacing:-13.281120px;}
.ws33{word-spacing:-13.254624px;}
.wsc{word-spacing:-13.248000px;}
.ws20{word-spacing:-13.241376px;}
.ws19{word-spacing:-13.234752px;}
.ws29{word-spacing:-0.080640px;}
.wsa{word-spacing:-0.066240px;}
.ws2c{word-spacing:-0.046368px;}
.ws7{word-spacing:0.000000px;}
.ws2a{word-spacing:0.019872px;}
.ws2b{word-spacing:0.079488px;}
._0{margin-left:-1.360800px;}
._2{width:1.001376px;}
._12{width:2.310624px;}
._17{width:3.650976px;}
._11{width:5.178240px;}
._10{width:6.522624px;}
._a{width:8.743680px;}
._c{width:10.730880px;}
._19{width:11.813040px;}
._15{width:12.854016px;}
._b{width:15.102720px;}
._13{width:16.648992px;}
._1{width:17.797968px;}
._3{width:19.046592px;}
._16{width:20.136960px;}
._8{width:21.329280px;}
._5{width:22.654080px;}
._9{width:23.780160px;}
._f{width:27.574128px;}
._e{width:28.803600px;}
._4{width:33.914880px;}
._7{width:40.030848px;}
._d{width:42.724800px;}
._14{width:67.527360px;}
._6{width:846.000000px;}
._18{width:848.880000px;}
.fc2{color:rgb(238,0,0);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs1{font-size:60.480000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:80.640000px;}
.fs0{font-size:108.000000px;}
.fs2{font-size:168.480000px;}
.fs3{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y180{bottom:2.700000px;}
.y1ec{bottom:2.880000px;}
.y1a0{bottom:3.000000px;}
.yca{bottom:3.540000px;}
.y1a4{bottom:4.680000px;}
.y12d{bottom:4.860000px;}
.yf2{bottom:4.920000px;}
.y1b2{bottom:4.980000px;}
.yab{bottom:5.040000px;}
.y5d{bottom:5.100000px;}
.y11c{bottom:5.160000px;}
.y52{bottom:5.220000px;}
.y60{bottom:5.280000px;}
.ye6{bottom:5.340000px;}
.y55{bottom:5.400000px;}
.y13d{bottom:5.460000px;}
.y105{bottom:5.520000px;}
.yb0{bottom:5.580000px;}
.y6c{bottom:5.640000px;}
.y132{bottom:5.700000px;}
.y5b{bottom:5.760000px;}
.y117{bottom:5.820000px;}
.y50{bottom:5.880000px;}
.y14c{bottom:5.940000px;}
.y75{bottom:6.000000px;}
.yd2{bottom:6.060000px;}
.y45{bottom:6.120000px;}
.y101{bottom:6.180000px;}
.y57{bottom:6.240000px;}
.ydd{bottom:6.300000px;}
.yc9{bottom:14.700000px;}
.y17f{bottom:15.660000px;}
.y1eb{bottom:15.840000px;}
.y19f{bottom:16.320000px;}
.y1cc{bottom:16.500000px;}
.y1b4{bottom:23.220000px;}
.y1a3{bottom:23.760000px;}
.y1ab{bottom:23.820000px;}
.y194{bottom:24.300000px;}
.y18f{bottom:24.660000px;}
.y1a6{bottom:24.780000px;}
.y11b{bottom:24.960000px;}
.y12c{bottom:25.020000px;}
.yf1{bottom:25.080000px;}
.y1b1{bottom:25.140000px;}
.yaa{bottom:25.200000px;}
.y7f{bottom:25.260000px;}
.y126{bottom:25.320000px;}
.ya8{bottom:25.380000px;}
.y5f{bottom:25.440000px;}
.ye5{bottom:25.500000px;}
.y54{bottom:25.560000px;}
.y116{bottom:25.620000px;}
.y104{bottom:25.680000px;}
.yaf{bottom:25.740000px;}
.y6b{bottom:25.800000px;}
.y131{bottom:25.860000px;}
.y5a{bottom:25.920000px;}
.y122{bottom:25.980000px;}
.y4f{bottom:26.040000px;}
.ydc{bottom:26.100000px;}
.y79{bottom:26.160000px;}
.yd1{bottom:26.220000px;}
.yf8{bottom:26.280000px;}
.y100{bottom:26.340000px;}
.y13a{bottom:26.400000px;}
.y140{bottom:26.460000px;}
.yc8{bottom:27.660000px;}
.y74{bottom:27.960000px;}
.y71{bottom:33.000000px;}
.y17e{bottom:35.820000px;}
.y1ea{bottom:36.000000px;}
.y19e{bottom:36.480000px;}
.y1cb{bottom:36.660000px;}
.y1dc{bottom:43.800000px;}
.y1af{bottom:43.860000px;}
.y18d{bottom:44.040000px;}
.y183{bottom:44.100000px;}
.y1dd{bottom:44.160000px;}
.y1ad{bottom:44.340000px;}
.yd6{bottom:44.460000px;}
.y191{bottom:44.760000px;}
.y188{bottom:44.820000px;}
.ycf{bottom:44.940000px;}
.y11a{bottom:45.120000px;}
.y12b{bottom:45.180000px;}
.yf0{bottom:45.240000px;}
.y1b0{bottom:45.300000px;}
.ycd{bottom:45.360000px;}
.y7e{bottom:45.420000px;}
.y125{bottom:45.480000px;}
.y10a{bottom:45.540000px;}
.ydf{bottom:45.600000px;}
.ye4{bottom:45.660000px;}
.y136{bottom:45.720000px;}
.y115{bottom:45.780000px;}
.y103{bottom:45.840000px;}
.yae{bottom:45.900000px;}
.y6a{bottom:45.960000px;}
.y130{bottom:46.020000px;}
.y59{bottom:46.080000px;}
.y121{bottom:46.140000px;}
.y4e{bottom:46.200000px;}
.yd8{bottom:46.260000px;}
.y78{bottom:46.320000px;}
.yd0{bottom:46.380000px;}
.yf7{bottom:46.440000px;}
.yff{bottom:46.500000px;}
.y139{bottom:46.560000px;}
.y13f{bottom:46.620000px;}
.yd4{bottom:46.740000px;}
.yfa{bottom:46.800000px;}
.yc7{bottom:47.820000px;}
.y73{bottom:49.920000px;}
.y70{bottom:53.160000px;}
.y1b8{bottom:55.980000px;}
.y1e9{bottom:56.160000px;}
.y17d{bottom:56.340000px;}
.y1ca{bottom:56.820000px;}
.y19d{bottom:57.000000px;}
.y14e{bottom:63.840000px;}
.y156{bottom:63.900000px;}
.yee{bottom:63.960000px;}
.y13c{bottom:64.140000px;}
.y173{bottom:64.200000px;}
.y1d3{bottom:64.380000px;}
.y163{bottom:64.440000px;}
.y114{bottom:64.500000px;}
.y1d0{bottom:64.680000px;}
.y11e{bottom:64.800000px;}
.yda{bottom:64.980000px;}
.ye1{bottom:65.040000px;}
.yf6{bottom:65.160000px;}
.y14f{bottom:65.280000px;}
.y12a{bottom:65.340000px;}
.yef{bottom:65.400000px;}
.yea{bottom:65.520000px;}
.y7d{bottom:65.580000px;}
.y119{bottom:65.640000px;}
.y109{bottom:65.700000px;}
.y187{bottom:65.760000px;}
.y15e{bottom:65.820000px;}
.ycc{bottom:65.880000px;}
.y112{bottom:65.940000px;}
.y124{bottom:66.000000px;}
.y1ef{bottom:66.060000px;}
.y69{bottom:66.120000px;}
.ye3{bottom:66.180000px;}
.y110{bottom:66.240000px;}
.y120{bottom:66.300000px;}
.y4d{bottom:66.360000px;}
.ydb{bottom:66.420000px;}
.y77{bottom:66.480000px;}
.y12f{bottom:66.540000px;}
.yf4{bottom:66.600000px;}
.yfe{bottom:66.660000px;}
.yec{bottom:66.720000px;}
.y14b{bottom:66.780000px;}
.y16a{bottom:66.840000px;}
.y10c{bottom:66.900000px;}
.y138{bottom:67.080000px;}
.y13e{bottom:67.140000px;}
.yc6{bottom:68.340000px;}
.y72{bottom:71.880000px;}
.y6f{bottom:73.320000px;}
.y17c{bottom:75.780000px;}
.y1e8{bottom:76.320000px;}
.y19c{bottom:76.440000px;}
.y1b7{bottom:76.500000px;}
.y1c9{bottom:76.980000px;}
.y1d8{bottom:77.340000px;}
.y153{bottom:84.000000px;}
.y128{bottom:84.060000px;}
.y15c{bottom:84.180000px;}
.ye8{bottom:84.240000px;}
.y171{bottom:84.300000px;}
.y167{bottom:84.360000px;}
.y107{bottom:84.420000px;}
.y134{bottom:84.600000px;}
.y142{bottom:84.660000px;}
.y16c{bottom:84.900000px;}
.y10e{bottom:84.960000px;}
.yfc{bottom:85.020000px;}
.y158{bottom:85.140000px;}
.y160{bottom:85.260000px;}
.y154{bottom:85.440000px;}
.y129{bottom:85.500000px;}
.y15d{bottom:85.620000px;}
.ye9{bottom:85.680000px;}
.y7c{bottom:85.740000px;}
.y168{bottom:85.800000px;}
.y108{bottom:85.860000px;}
.y1c0{bottom:85.920000px;}
.y135{bottom:86.040000px;}
.y143{bottom:86.100000px;}
.y68{bottom:86.280000px;}
.y16d{bottom:86.340000px;}
.y10f{bottom:86.400000px;}
.yfd{bottom:86.460000px;}
.y4c{bottom:86.520000px;}
.y159{bottom:86.580000px;}
.y161{bottom:86.700000px;}
.yc5{bottom:87.780000px;}
.y17b{bottom:89.100000px;}
.y19b{bottom:89.400000px;}
.y6e{bottom:93.480000px;}
.y1b6{bottom:95.940000px;}
.y1d7{bottom:96.780000px;}
.y1e7{bottom:96.840000px;}
.y1c8{bottom:97.500000px;}
.yc4{bottom:101.100000px;}
.y1be{bottom:104.640000px;}
.y1ba{bottom:104.760000px;}
.y7b{bottom:105.900000px;}
.y1bf{bottom:106.080000px;}
.y1bb{bottom:106.200000px;}
.y4b{bottom:106.320000px;}
.y67{bottom:106.440000px;}
.y17a{bottom:108.900000px;}
.y19a{bottom:109.560000px;}
.y1d6{bottom:110.100000px;}
.y150{bottom:111.000000px;}
.yac{bottom:112.500000px;}
.y190{bottom:114.000000px;}
.y1e6{bottom:116.280000px;}
.y1c7{bottom:116.940000px;}
.y1d5{bottom:117.000000px;}
.y76{bottom:120.000000px;}
.yc3{bottom:120.900000px;}
.yeb{bottom:123.000000px;}
.y4a{bottom:126.480000px;}
.y199{bottom:127.560000px;}
.y179{bottom:129.060000px;}
.y1e5{bottom:129.600000px;}
.y1c6{bottom:129.900000px;}
.y118{bottom:132.000000px;}
.y16f{bottom:135.000000px;}
.yc2{bottom:138.900000px;}
.y198{bottom:141.240000px;}
.y49{bottom:146.640000px;}
.y178{bottom:147.060000px;}
.y1e4{bottom:149.400000px;}
.y1c5{bottom:150.060000px;}
.y1b3{bottom:151.500000px;}
.yc1{bottom:152.580000px;}
.ya9{bottom:153.000000px;}
.y15b{bottom:154.500000px;}
.y177{bottom:160.740000px;}
.y48{bottom:166.800000px;}
.y1c4{bottom:168.060000px;}
.y1e3{bottom:169.560000px;}
.y18e{bottom:175.500000px;}
.y1c3{bottom:181.740000px;}
.y47{bottom:186.960000px;}
.y1e2{bottom:187.560000px;}
.ya7{bottom:193.500000px;}
.y14d{bottom:195.000000px;}
.y13b{bottom:196.500000px;}
.y1d4{bottom:198.000000px;}
.y6d{bottom:201.000000px;}
.y1e1{bottom:201.240000px;}
.ye7{bottom:207.000000px;}
.y1d{bottom:211.680000px;}
.y113{bottom:214.500000px;}
.y16e{bottom:216.000000px;}
.y1c{bottom:233.640000px;}
.y1ae{bottom:235.500000px;}
.ya6{bottom:239.040000px;}
.y1b{bottom:254.880000px;}
.y15a{bottom:255.000000px;}
.y18c{bottom:258.000000px;}
.ya5{bottom:259.200000px;}
.y1a{bottom:273.240000px;}
.y14a{bottom:274.500000px;}
.y137{bottom:276.000000px;}
.ya4{bottom:279.000000px;}
.y1d2{bottom:280.500000px;}
.y19{bottom:291.240000px;}
.y111{bottom:295.500000px;}
.y16b{bottom:298.500000px;}
.ya3{bottom:302.400000px;}
.ye2{bottom:307.500000px;}
.y66{bottom:309.000000px;}
.y18{bottom:309.600000px;}
.y18b{bottom:318.000000px;}
.ya2{bottom:322.560000px;}
.y17{bottom:327.960000px;}
.y157{bottom:337.500000px;}
.ya1{bottom:343.080000px;}
.y16{bottom:349.560000px;}
.y41{bottom:351.360000px;}
.y149{bottom:358.500000px;}
.y133{bottom:360.000000px;}
.y1d1{bottom:361.500000px;}
.ya0{bottom:363.240000px;}
.y40{bottom:372.240000px;}
.y10d{bottom:378.000000px;}
.y15{bottom:382.680000px;}
.y9f{bottom:383.400000px;}
.ye0{bottom:390.000000px;}
.y3f{bottom:393.480000px;}
.y169{bottom:399.000000px;}
.y18a{bottom:400.500000px;}
.y9e{bottom:403.560000px;}
.y3e{bottom:413.640000px;}
.y14{bottom:415.440000px;}
.y1ac{bottom:418.500000px;}
.y9d{bottom:423.720000px;}
.y3d{bottom:433.800000px;}
.y65{bottom:435.600000px;}
.y148{bottom:438.000000px;}
.y9c{bottom:443.880000px;}
.y1cf{bottom:444.000000px;}
.y13{bottom:448.560000px;}
.y3c{bottom:453.960000px;}
.y64{bottom:455.760000px;}
.y12e{bottom:460.500000px;}
.y189{bottom:462.000000px;}
.y9b{bottom:464.040000px;}
.yde{bottom:471.000000px;}
.y1df{bottom:472.680000px;}
.y3b{bottom:474.120000px;}
.y63{bottom:475.560000px;}
.y10b{bottom:478.500000px;}
.y12{bottom:481.320000px;}
.y166{bottom:483.000000px;}
.y9a{bottom:484.200000px;}
.y1de{bottom:491.400000px;}
.y3a{bottom:494.280000px;}
.y62{bottom:495.360000px;}
.y1aa{bottom:502.500000px;}
.y99{bottom:504.360000px;}
.y11{bottom:514.440000px;}
.y147{bottom:522.000000px;}
.y98{bottom:524.520000px;}
.y1ce{bottom:525.000000px;}
.y39{bottom:534.240000px;}
.y1c1{bottom:535.680000px;}
.y1a9{bottom:543.000000px;}
.y127{bottom:544.500000px;}
.y97{bottom:544.680000px;}
.y61{bottom:546.120000px;}
.yd9{bottom:553.500000px;}
.y38{bottom:554.400000px;}
.y10{bottom:554.760000px;}
.y106{bottom:562.500000px;}
.y96{bottom:564.840000px;}
.y1f1{bottom:570.960000px;}
.y37{bottom:574.560000px;}
.y5e{bottom:579.000000px;}
.y165{bottom:583.500000px;}
.y95{bottom:585.000000px;}
.y1bd{bottom:588.000000px;}
.y1f0{bottom:589.680000px;}
.y175{bottom:592.560000px;}
.y36{bottom:593.640000px;}
.y94{bottom:605.160000px;}
.y186{bottom:606.000000px;}
.y1cd{bottom:607.500000px;}
.y174{bottom:611.280000px;}
.yf{bottom:611.640000px;}
.y35{bottom:613.440000px;}
.y5c{bottom:619.500000px;}
.y146{bottom:622.500000px;}
.y93{bottom:625.320000px;}
.y1a8{bottom:625.500000px;}
.yd7{bottom:634.500000px;}
.y58{bottom:639.000000px;}
.y34{bottom:642.240000px;}
.y123{bottom:645.000000px;}
.y92{bottom:645.480000px;}
.ye{bottom:646.920000px;}
.y33{bottom:661.680000px;}
.y102{bottom:663.000000px;}
.y91{bottom:665.640000px;}
.y164{bottom:666.000000px;}
.y1db{bottom:669.000000px;}
.y32{bottom:681.840000px;}
.y1a7{bottom:685.500000px;}
.y90{bottom:685.800000px;}
.y185{bottom:688.500000px;}
.yd5{bottom:697.500000px;}
.yd{bottom:697.680000px;}
.y56{bottom:699.000000px;}
.y31{bottom:702.360000px;}
.y8f{bottom:705.600000px;}
.y145{bottom:706.500000px;}
.y1bc{bottom:708.000000px;}
.y53{bottom:720.000000px;}
.y30{bottom:722.520000px;}
.y172{bottom:724.500000px;}
.y8e{bottom:725.760000px;}
.y11f{bottom:727.500000px;}
.y1da{bottom:729.000000px;}
.yfb{bottom:745.500000px;}
.y8d{bottom:745.920000px;}
.y162{bottom:747.000000px;}
.y184{bottom:748.500000px;}
.yc{bottom:748.800000px;}
.yd3{bottom:757.500000px;}
.y51{bottom:760.500000px;}
.y2f{bottom:760.680000px;}
.y8c{bottom:766.080000px;}
.y1ee{bottom:769.500000px;}
.y46{bottom:780.000000px;}
.y2e{bottom:780.840000px;}
.y155{bottom:786.000000px;}
.y8b{bottom:786.240000px;}
.y1a5{bottom:789.000000px;}
.y1b9{bottom:792.000000px;}
.y2d{bottom:801.000000px;}
.yb{bottom:801.720000px;}
.y8a{bottom:806.400000px;}
.y144{bottom:807.000000px;}
.y170{bottom:808.500000px;}
.y1d9{bottom:811.500000px;}
.yce{bottom:820.500000px;}
.y2c{bottom:821.160000px;}
.y89{bottom:826.560000px;}
.y11d{bottom:828.000000px;}
.y182{bottom:832.500000px;}
.y2b{bottom:841.320000px;}
.ya{bottom:844.200000px;}
.yf9{bottom:846.000000px;}
.y88{bottom:846.720000px;}
.y1ed{bottom:852.000000px;}
.y2a{bottom:861.480000px;}
.y9{bottom:865.800000px;}
.y87{bottom:866.880000px;}
.y152{bottom:870.000000px;}
.y1a2{bottom:873.000000px;}
.ycb{bottom:882.000000px;}
.y29{bottom:882.720000px;}
.y86{bottom:887.040000px;}
.y141{bottom:889.500000px;}
.y181{bottom:892.500000px;}
.ybe{bottom:898.200000px;}
.y8{bottom:898.920000px;}
.y28{bottom:903.960000px;}
.y85{bottom:907.200000px;}
.yf5{bottom:909.000000px;}
.y1a1{bottom:913.500000px;}
.ybd{bottom:919.440000px;}
.y27{bottom:925.200000px;}
.y84{bottom:927.360000px;}
.y7{bottom:931.680000px;}
.y1e0{bottom:936.000000px;}
.ybc{bottom:939.600000px;}
.y26{bottom:945.360000px;}
.y83{bottom:947.520000px;}
.y1c2{bottom:955.500000px;}
.ybb{bottom:959.760000px;}
.yc0{bottom:964.500000px;}
.y6{bottom:964.800000px;}
.y25{bottom:966.600000px;}
.y82{bottom:967.680000px;}
.y151{bottom:970.500000px;}
.y176{bottom:976.500000px;}
.y196{bottom:978.480000px;}
.yba{bottom:979.920000px;}
.y44{bottom:981.000000px;}
.y24{bottom:987.840000px;}
.yf3{bottom:990.000000px;}
.y15f{bottom:991.500000px;}
.y197{bottom:996.000000px;}
.y81{bottom:996.840000px;}
.y195{bottom:997.200000px;}
.y5{bottom:997.560000px;}
.yb9{bottom:1000.080000px;}
.y43{bottom:1006.920000px;}
.y23{bottom:1008.000000px;}
.y80{bottom:1017.360000px;}
.yb2{bottom:1019.880000px;}
.yb8{bottom:1020.240000px;}
.y22{bottom:1028.160000px;}
.y193{bottom:1030.500000px;}
.y4{bottom:1030.680000px;}
.y7a{bottom:1033.500000px;}
.yb7{bottom:1040.400000px;}
.y21{bottom:1048.320000px;}
.yb1{bottom:1053.000000px;}
.yb6{bottom:1060.560000px;}
.y3{bottom:1063.440000px;}
.y20{bottom:1068.480000px;}
.y192{bottom:1071.000000px;}
.yed{bottom:1074.000000px;}
.yb5{bottom:1080.720000px;}
.y42{bottom:1088.280000px;}
.y1f{bottom:1088.640000px;}
.yad{bottom:1093.500000px;}
.y2{bottom:1096.560000px;}
.yb4{bottom:1100.880000px;}
.y1{bottom:1129.320000px;}
.y1e{bottom:1137.960000px;}
.yb3{bottom:1138.320000px;}
.ybf{bottom:1139.400000px;}
.y1b5{bottom:1140.840000px;}
.hf{height:21.000000px;}
.hd{height:22.500000px;}
.h1a{height:23.994141px;}
.h21{height:24.000000px;}
.h3{height:40.310156px;}
.h24{height:40.500000px;}
.h10{height:42.000000px;}
.h9{height:44.149219px;}
.hc{height:44.181563px;}
.h8{height:44.602031px;}
.h17{height:45.895781px;}
.h7{height:47.988281px;}
.h6{height:48.023438px;}
.hb{height:48.421440px;}
.ha{height:48.742031px;}
.h16{height:48.796875px;}
.h18{height:53.746875px;}
.h11{height:61.500000px;}
.h1c{height:63.000000px;}
.h1d{height:64.500000px;}
.h2{height:71.982422px;}
.h1f{height:81.000000px;}
.h14{height:82.500000px;}
.h1b{height:84.000000px;}
.h1e{height:102.000000px;}
.h20{height:103.500000px;}
.h13{height:109.500000px;}
.h4{height:112.292578px;}
.h15{height:121.500000px;}
.h12{height:123.000000px;}
.h5{height:143.964844px;}
.h23{height:159.000000px;}
.h19{height:169.500000px;}
.h22{height:178.500000px;}
.h25{height:199.500000px;}
.he{height:202.500000px;}
.h26{height:219.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:60.000000px;}
.wa{width:66.000000px;}
.wc{width:124.500000px;}
.w6{width:135.000000px;}
.w2{width:150.000000px;}
.w4{width:181.500000px;}
.w5{width:484.500000px;}
.w3{width:489.000000px;}
.w7{width:502.500000px;}
.wb{width:561.000000px;}
.w8{width:684.000000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x4{left:7.920036px;}
.x7{left:9.000000px;}
.x12{left:12.254892px;}
.xd{left:18.149772px;}
.x14{left:22.905024px;}
.x15{left:28.799904px;}
.x13{left:33.555192px;}
.x11{left:40.334832px;}
.xb{left:67.319820px;}
.xe{left:99.000000px;}
.xc{left:100.500000px;}
.x1{left:108.000000px;}
.xa{left:126.719964px;}
.x2{left:135.000000px;}
.xf{left:157.500000px;}
.x3{left:162.000000px;}
.x8{left:189.000000px;}
.x10{left:223.500000px;}
.x9{left:243.000000px;}
.x5{left:256.500000px;}
.x6{left:288.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls27{letter-spacing:-0.236544pt;}
.ls28{letter-spacing:-0.231168pt;}
.ls26{letter-spacing:-0.188416pt;}
.ls1b{letter-spacing:-0.182528pt;}
.ls1a{letter-spacing:-0.176640pt;}
.ls35{letter-spacing:-0.170752pt;}
.ls1f{letter-spacing:-0.164864pt;}
.ls1d{letter-spacing:-0.153088pt;}
.ls10{letter-spacing:-0.147200pt;}
.ls23{letter-spacing:-0.141312pt;}
.ls25{letter-spacing:-0.135424pt;}
.lsf{letter-spacing:-0.129536pt;}
.ls14{letter-spacing:-0.123648pt;}
.ls12{letter-spacing:-0.117760pt;}
.ls1e{letter-spacing:-0.111872pt;}
.ls19{letter-spacing:-0.105984pt;}
.ls11{letter-spacing:-0.100096pt;}
.ls36{letter-spacing:-0.094208pt;}
.ls24{letter-spacing:-0.088320pt;}
.ls15{letter-spacing:-0.082432pt;}
.ls37{letter-spacing:-0.076544pt;}
.ls1c{letter-spacing:-0.070656pt;}
.ls13{letter-spacing:-0.064768pt;}
.ls17{letter-spacing:-0.058880pt;}
.ls16{letter-spacing:-0.052992pt;}
.ls22{letter-spacing:-0.047104pt;}
.ls18{letter-spacing:-0.041216pt;}
.ls9{letter-spacing:-0.038400pt;}
.ls29{letter-spacing:-0.035328pt;}
.ls3c{letter-spacing:-0.025600pt;}
.ls8{letter-spacing:-0.019200pt;}
.ls34{letter-spacing:-0.017664pt;}
.ls33{letter-spacing:-0.012800pt;}
.lse{letter-spacing:-0.006400pt;}
.ls7{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.001280pt;}
.ls20{letter-spacing:0.006400pt;}
.ls39{letter-spacing:0.007552pt;}
.ls3{letter-spacing:0.007936pt;}
.ls4{letter-spacing:0.008064pt;}
.ls3b{letter-spacing:0.011520pt;}
.ls5{letter-spacing:0.012800pt;}
.ls0{letter-spacing:0.019200pt;}
.ls1{letter-spacing:0.024320pt;}
.lsa{letter-spacing:0.025600pt;}
.ls2b{letter-spacing:0.032000pt;}
.ls3a{letter-spacing:0.038400pt;}
.ls2{letter-spacing:0.096000pt;}
.ls31{letter-spacing:0.234240pt;}
.ls2f{letter-spacing:0.574720pt;}
.ls30{letter-spacing:1.285120pt;}
.ls2e{letter-spacing:5.198080pt;}
.lsb{letter-spacing:15.914496pt;}
.lsc{letter-spacing:15.915520pt;}
.ls32{letter-spacing:15.974400pt;}
.ls2d{letter-spacing:25.255680pt;}
.ls2c{letter-spacing:28.326656pt;}
.ls38{letter-spacing:31.534976pt;}
.lsd{letter-spacing:52.647040pt;}
.ls6{letter-spacing:744.000384pt;}
.ls3e{letter-spacing:750.208000pt;}
.ls2a{letter-spacing:752.000000pt;}
.ls3d{letter-spacing:753.054720pt;}
.ws4{word-spacing:-38.995200pt;}
.ws3{word-spacing:-38.976000pt;}
.ws1{word-spacing:-19.507200pt;}
.ws0{word-spacing:-19.488000pt;}
.ws2{word-spacing:-19.468800pt;}
.ws11{word-spacing:-16.368640pt;}
.wsf{word-spacing:-16.315648pt;}
.wsd{word-spacing:-16.297984pt;}
.ws12{word-spacing:-16.256768pt;}
.ws10{word-spacing:-16.250880pt;}
.wse{word-spacing:-16.244992pt;}
.ws1b{word-spacing:-14.945280pt;}
.ws1a{word-spacing:-14.708736pt;}
.ws26{word-spacing:-13.306880pt;}
.ws25{word-spacing:-13.230336pt;}
.ws27{word-spacing:-13.206784pt;}
.ws28{word-spacing:-13.189120pt;}
.ws34{word-spacing:-13.030400pt;}
.ws30{word-spacing:-13.024000pt;}
.ws6{word-spacing:-13.017600pt;}
.ws35{word-spacing:-13.011200pt;}
.ws5{word-spacing:-13.004800pt;}
.ws1d{word-spacing:-12.998400pt;}
.ws2f{word-spacing:-12.992000pt;}
.ws31{word-spacing:-12.985600pt;}
.ws37{word-spacing:-12.979200pt;}
.ws36{word-spacing:-12.972800pt;}
.ws32{word-spacing:-12.966400pt;}
.ws15{word-spacing:-11.952640pt;}
.ws14{word-spacing:-11.911424pt;}
.ws21{word-spacing:-11.905536pt;}
.ws1f{word-spacing:-11.899648pt;}
.ws2e{word-spacing:-11.893760pt;}
.ws22{word-spacing:-11.887872pt;}
.ws23{word-spacing:-11.870208pt;}
.ws17{word-spacing:-11.864320pt;}
.ws24{word-spacing:-11.858432pt;}
.ws1e{word-spacing:-11.852544pt;}
.ws18{word-spacing:-11.846656pt;}
.ws16{word-spacing:-11.840768pt;}
.wsb{word-spacing:-11.834880pt;}
.ws13{word-spacing:-11.828992pt;}
.ws8{word-spacing:-11.823104pt;}
.ws1c{word-spacing:-11.817216pt;}
.ws2d{word-spacing:-11.811328pt;}
.ws9{word-spacing:-11.805440pt;}
.ws33{word-spacing:-11.781888pt;}
.wsc{word-spacing:-11.776000pt;}
.ws20{word-spacing:-11.770112pt;}
.ws19{word-spacing:-11.764224pt;}
.ws29{word-spacing:-0.071680pt;}
.wsa{word-spacing:-0.058880pt;}
.ws2c{word-spacing:-0.041216pt;}
.ws7{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.017664pt;}
.ws2b{word-spacing:0.070656pt;}
._0{margin-left:-1.209600pt;}
._2{width:0.890112pt;}
._12{width:2.053888pt;}
._17{width:3.245312pt;}
._11{width:4.602880pt;}
._10{width:5.797888pt;}
._a{width:7.772160pt;}
._c{width:9.538560pt;}
._19{width:10.500480pt;}
._15{width:11.425792pt;}
._b{width:13.424640pt;}
._13{width:14.799104pt;}
._1{width:15.820416pt;}
._3{width:16.930304pt;}
._16{width:17.899520pt;}
._8{width:18.959360pt;}
._5{width:20.136960pt;}
._9{width:21.137920pt;}
._f{width:24.510336pt;}
._e{width:25.603200pt;}
._4{width:30.146560pt;}
._7{width:35.582976pt;}
._d{width:37.977600pt;}
._14{width:60.024320pt;}
._6{width:752.000000pt;}
._18{width:754.560000pt;}
.fs7{font-size:32.000000pt;}
.fs1{font-size:53.760000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:71.680000pt;}
.fs0{font-size:96.000000pt;}
.fs2{font-size:149.760000pt;}
.fs3{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y180{bottom:2.400000pt;}
.y1ec{bottom:2.560000pt;}
.y1a0{bottom:2.666667pt;}
.yca{bottom:3.146667pt;}
.y1a4{bottom:4.160000pt;}
.y12d{bottom:4.320000pt;}
.yf2{bottom:4.373333pt;}
.y1b2{bottom:4.426667pt;}
.yab{bottom:4.480000pt;}
.y5d{bottom:4.533333pt;}
.y11c{bottom:4.586667pt;}
.y52{bottom:4.640000pt;}
.y60{bottom:4.693333pt;}
.ye6{bottom:4.746667pt;}
.y55{bottom:4.800000pt;}
.y13d{bottom:4.853333pt;}
.y105{bottom:4.906667pt;}
.yb0{bottom:4.960000pt;}
.y6c{bottom:5.013333pt;}
.y132{bottom:5.066667pt;}
.y5b{bottom:5.120000pt;}
.y117{bottom:5.173333pt;}
.y50{bottom:5.226667pt;}
.y14c{bottom:5.280000pt;}
.y75{bottom:5.333333pt;}
.yd2{bottom:5.386667pt;}
.y45{bottom:5.440000pt;}
.y101{bottom:5.493333pt;}
.y57{bottom:5.546667pt;}
.ydd{bottom:5.600000pt;}
.yc9{bottom:13.066667pt;}
.y17f{bottom:13.920000pt;}
.y1eb{bottom:14.080000pt;}
.y19f{bottom:14.506667pt;}
.y1cc{bottom:14.666667pt;}
.y1b4{bottom:20.640000pt;}
.y1a3{bottom:21.120000pt;}
.y1ab{bottom:21.173333pt;}
.y194{bottom:21.600000pt;}
.y18f{bottom:21.920000pt;}
.y1a6{bottom:22.026667pt;}
.y11b{bottom:22.186667pt;}
.y12c{bottom:22.240000pt;}
.yf1{bottom:22.293333pt;}
.y1b1{bottom:22.346667pt;}
.yaa{bottom:22.400000pt;}
.y7f{bottom:22.453333pt;}
.y126{bottom:22.506667pt;}
.ya8{bottom:22.560000pt;}
.y5f{bottom:22.613333pt;}
.ye5{bottom:22.666667pt;}
.y54{bottom:22.720000pt;}
.y116{bottom:22.773333pt;}
.y104{bottom:22.826667pt;}
.yaf{bottom:22.880000pt;}
.y6b{bottom:22.933333pt;}
.y131{bottom:22.986667pt;}
.y5a{bottom:23.040000pt;}
.y122{bottom:23.093333pt;}
.y4f{bottom:23.146667pt;}
.ydc{bottom:23.200000pt;}
.y79{bottom:23.253333pt;}
.yd1{bottom:23.306667pt;}
.yf8{bottom:23.360000pt;}
.y100{bottom:23.413333pt;}
.y13a{bottom:23.466667pt;}
.y140{bottom:23.520000pt;}
.yc8{bottom:24.586667pt;}
.y74{bottom:24.853333pt;}
.y71{bottom:29.333333pt;}
.y17e{bottom:31.840000pt;}
.y1ea{bottom:32.000000pt;}
.y19e{bottom:32.426667pt;}
.y1cb{bottom:32.586667pt;}
.y1dc{bottom:38.933333pt;}
.y1af{bottom:38.986667pt;}
.y18d{bottom:39.146667pt;}
.y183{bottom:39.200000pt;}
.y1dd{bottom:39.253333pt;}
.y1ad{bottom:39.413333pt;}
.yd6{bottom:39.520000pt;}
.y191{bottom:39.786667pt;}
.y188{bottom:39.840000pt;}
.ycf{bottom:39.946667pt;}
.y11a{bottom:40.106667pt;}
.y12b{bottom:40.160000pt;}
.yf0{bottom:40.213333pt;}
.y1b0{bottom:40.266667pt;}
.ycd{bottom:40.320000pt;}
.y7e{bottom:40.373333pt;}
.y125{bottom:40.426667pt;}
.y10a{bottom:40.480000pt;}
.ydf{bottom:40.533333pt;}
.ye4{bottom:40.586667pt;}
.y136{bottom:40.640000pt;}
.y115{bottom:40.693333pt;}
.y103{bottom:40.746667pt;}
.yae{bottom:40.800000pt;}
.y6a{bottom:40.853333pt;}
.y130{bottom:40.906667pt;}
.y59{bottom:40.960000pt;}
.y121{bottom:41.013333pt;}
.y4e{bottom:41.066667pt;}
.yd8{bottom:41.120000pt;}
.y78{bottom:41.173333pt;}
.yd0{bottom:41.226667pt;}
.yf7{bottom:41.280000pt;}
.yff{bottom:41.333333pt;}
.y139{bottom:41.386667pt;}
.y13f{bottom:41.440000pt;}
.yd4{bottom:41.546667pt;}
.yfa{bottom:41.600000pt;}
.yc7{bottom:42.506667pt;}
.y73{bottom:44.373333pt;}
.y70{bottom:47.253333pt;}
.y1b8{bottom:49.760000pt;}
.y1e9{bottom:49.920000pt;}
.y17d{bottom:50.080000pt;}
.y1ca{bottom:50.506667pt;}
.y19d{bottom:50.666667pt;}
.y14e{bottom:56.746667pt;}
.y156{bottom:56.800000pt;}
.yee{bottom:56.853333pt;}
.y13c{bottom:57.013333pt;}
.y173{bottom:57.066667pt;}
.y1d3{bottom:57.226667pt;}
.y163{bottom:57.280000pt;}
.y114{bottom:57.333333pt;}
.y1d0{bottom:57.493333pt;}
.y11e{bottom:57.600000pt;}
.yda{bottom:57.760000pt;}
.ye1{bottom:57.813333pt;}
.yf6{bottom:57.920000pt;}
.y14f{bottom:58.026667pt;}
.y12a{bottom:58.080000pt;}
.yef{bottom:58.133333pt;}
.yea{bottom:58.240000pt;}
.y7d{bottom:58.293333pt;}
.y119{bottom:58.346667pt;}
.y109{bottom:58.400000pt;}
.y187{bottom:58.453333pt;}
.y15e{bottom:58.506667pt;}
.ycc{bottom:58.560000pt;}
.y112{bottom:58.613333pt;}
.y124{bottom:58.666667pt;}
.y1ef{bottom:58.720000pt;}
.y69{bottom:58.773333pt;}
.ye3{bottom:58.826667pt;}
.y110{bottom:58.880000pt;}
.y120{bottom:58.933333pt;}
.y4d{bottom:58.986667pt;}
.ydb{bottom:59.040000pt;}
.y77{bottom:59.093333pt;}
.y12f{bottom:59.146667pt;}
.yf4{bottom:59.200000pt;}
.yfe{bottom:59.253333pt;}
.yec{bottom:59.306667pt;}
.y14b{bottom:59.360000pt;}
.y16a{bottom:59.413333pt;}
.y10c{bottom:59.466667pt;}
.y138{bottom:59.626667pt;}
.y13e{bottom:59.680000pt;}
.yc6{bottom:60.746667pt;}
.y72{bottom:63.893333pt;}
.y6f{bottom:65.173333pt;}
.y17c{bottom:67.360000pt;}
.y1e8{bottom:67.840000pt;}
.y19c{bottom:67.946667pt;}
.y1b7{bottom:68.000000pt;}
.y1c9{bottom:68.426667pt;}
.y1d8{bottom:68.746667pt;}
.y153{bottom:74.666667pt;}
.y128{bottom:74.720000pt;}
.y15c{bottom:74.826667pt;}
.ye8{bottom:74.880000pt;}
.y171{bottom:74.933333pt;}
.y167{bottom:74.986667pt;}
.y107{bottom:75.040000pt;}
.y134{bottom:75.200000pt;}
.y142{bottom:75.253333pt;}
.y16c{bottom:75.466667pt;}
.y10e{bottom:75.520000pt;}
.yfc{bottom:75.573333pt;}
.y158{bottom:75.680000pt;}
.y160{bottom:75.786667pt;}
.y154{bottom:75.946667pt;}
.y129{bottom:76.000000pt;}
.y15d{bottom:76.106667pt;}
.ye9{bottom:76.160000pt;}
.y7c{bottom:76.213333pt;}
.y168{bottom:76.266667pt;}
.y108{bottom:76.320000pt;}
.y1c0{bottom:76.373333pt;}
.y135{bottom:76.480000pt;}
.y143{bottom:76.533333pt;}
.y68{bottom:76.693333pt;}
.y16d{bottom:76.746667pt;}
.y10f{bottom:76.800000pt;}
.yfd{bottom:76.853333pt;}
.y4c{bottom:76.906667pt;}
.y159{bottom:76.960000pt;}
.y161{bottom:77.066667pt;}
.yc5{bottom:78.026667pt;}
.y17b{bottom:79.200000pt;}
.y19b{bottom:79.466667pt;}
.y6e{bottom:83.093333pt;}
.y1b6{bottom:85.280000pt;}
.y1d7{bottom:86.026667pt;}
.y1e7{bottom:86.080000pt;}
.y1c8{bottom:86.666667pt;}
.yc4{bottom:89.866667pt;}
.y1be{bottom:93.013333pt;}
.y1ba{bottom:93.120000pt;}
.y7b{bottom:94.133333pt;}
.y1bf{bottom:94.293333pt;}
.y1bb{bottom:94.400000pt;}
.y4b{bottom:94.506667pt;}
.y67{bottom:94.613333pt;}
.y17a{bottom:96.800000pt;}
.y19a{bottom:97.386667pt;}
.y1d6{bottom:97.866667pt;}
.y150{bottom:98.666667pt;}
.yac{bottom:100.000000pt;}
.y190{bottom:101.333333pt;}
.y1e6{bottom:103.360000pt;}
.y1c7{bottom:103.946667pt;}
.y1d5{bottom:104.000000pt;}
.y76{bottom:106.666667pt;}
.yc3{bottom:107.466667pt;}
.yeb{bottom:109.333333pt;}
.y4a{bottom:112.426667pt;}
.y199{bottom:113.386667pt;}
.y179{bottom:114.720000pt;}
.y1e5{bottom:115.200000pt;}
.y1c6{bottom:115.466667pt;}
.y118{bottom:117.333333pt;}
.y16f{bottom:120.000000pt;}
.yc2{bottom:123.466667pt;}
.y198{bottom:125.546667pt;}
.y49{bottom:130.346667pt;}
.y178{bottom:130.720000pt;}
.y1e4{bottom:132.800000pt;}
.y1c5{bottom:133.386667pt;}
.y1b3{bottom:134.666667pt;}
.yc1{bottom:135.626667pt;}
.ya9{bottom:136.000000pt;}
.y15b{bottom:137.333333pt;}
.y177{bottom:142.880000pt;}
.y48{bottom:148.266667pt;}
.y1c4{bottom:149.386667pt;}
.y1e3{bottom:150.720000pt;}
.y18e{bottom:156.000000pt;}
.y1c3{bottom:161.546667pt;}
.y47{bottom:166.186667pt;}
.y1e2{bottom:166.720000pt;}
.ya7{bottom:172.000000pt;}
.y14d{bottom:173.333333pt;}
.y13b{bottom:174.666667pt;}
.y1d4{bottom:176.000000pt;}
.y6d{bottom:178.666667pt;}
.y1e1{bottom:178.880000pt;}
.ye7{bottom:184.000000pt;}
.y1d{bottom:188.160000pt;}
.y113{bottom:190.666667pt;}
.y16e{bottom:192.000000pt;}
.y1c{bottom:207.680000pt;}
.y1ae{bottom:209.333333pt;}
.ya6{bottom:212.480000pt;}
.y1b{bottom:226.560000pt;}
.y15a{bottom:226.666667pt;}
.y18c{bottom:229.333333pt;}
.ya5{bottom:230.400000pt;}
.y1a{bottom:242.880000pt;}
.y14a{bottom:244.000000pt;}
.y137{bottom:245.333333pt;}
.ya4{bottom:248.000000pt;}
.y1d2{bottom:249.333333pt;}
.y19{bottom:258.880000pt;}
.y111{bottom:262.666667pt;}
.y16b{bottom:265.333333pt;}
.ya3{bottom:268.800000pt;}
.ye2{bottom:273.333333pt;}
.y66{bottom:274.666667pt;}
.y18{bottom:275.200000pt;}
.y18b{bottom:282.666667pt;}
.ya2{bottom:286.720000pt;}
.y17{bottom:291.520000pt;}
.y157{bottom:300.000000pt;}
.ya1{bottom:304.960000pt;}
.y16{bottom:310.720000pt;}
.y41{bottom:312.320000pt;}
.y149{bottom:318.666667pt;}
.y133{bottom:320.000000pt;}
.y1d1{bottom:321.333333pt;}
.ya0{bottom:322.880000pt;}
.y40{bottom:330.880000pt;}
.y10d{bottom:336.000000pt;}
.y15{bottom:340.160000pt;}
.y9f{bottom:340.800000pt;}
.ye0{bottom:346.666667pt;}
.y3f{bottom:349.760000pt;}
.y169{bottom:354.666667pt;}
.y18a{bottom:356.000000pt;}
.y9e{bottom:358.720000pt;}
.y3e{bottom:367.680000pt;}
.y14{bottom:369.280000pt;}
.y1ac{bottom:372.000000pt;}
.y9d{bottom:376.640000pt;}
.y3d{bottom:385.600000pt;}
.y65{bottom:387.200000pt;}
.y148{bottom:389.333333pt;}
.y9c{bottom:394.560000pt;}
.y1cf{bottom:394.666667pt;}
.y13{bottom:398.720000pt;}
.y3c{bottom:403.520000pt;}
.y64{bottom:405.120000pt;}
.y12e{bottom:409.333333pt;}
.y189{bottom:410.666667pt;}
.y9b{bottom:412.480000pt;}
.yde{bottom:418.666667pt;}
.y1df{bottom:420.160000pt;}
.y3b{bottom:421.440000pt;}
.y63{bottom:422.720000pt;}
.y10b{bottom:425.333333pt;}
.y12{bottom:427.840000pt;}
.y166{bottom:429.333333pt;}
.y9a{bottom:430.400000pt;}
.y1de{bottom:436.800000pt;}
.y3a{bottom:439.360000pt;}
.y62{bottom:440.320000pt;}
.y1aa{bottom:446.666667pt;}
.y99{bottom:448.320000pt;}
.y11{bottom:457.280000pt;}
.y147{bottom:464.000000pt;}
.y98{bottom:466.240000pt;}
.y1ce{bottom:466.666667pt;}
.y39{bottom:474.880000pt;}
.y1c1{bottom:476.160000pt;}
.y1a9{bottom:482.666667pt;}
.y127{bottom:484.000000pt;}
.y97{bottom:484.160000pt;}
.y61{bottom:485.440000pt;}
.yd9{bottom:492.000000pt;}
.y38{bottom:492.800000pt;}
.y10{bottom:493.120000pt;}
.y106{bottom:500.000000pt;}
.y96{bottom:502.080000pt;}
.y1f1{bottom:507.520000pt;}
.y37{bottom:510.720000pt;}
.y5e{bottom:514.666667pt;}
.y165{bottom:518.666667pt;}
.y95{bottom:520.000000pt;}
.y1bd{bottom:522.666667pt;}
.y1f0{bottom:524.160000pt;}
.y175{bottom:526.720000pt;}
.y36{bottom:527.680000pt;}
.y94{bottom:537.920000pt;}
.y186{bottom:538.666667pt;}
.y1cd{bottom:540.000000pt;}
.y174{bottom:543.360000pt;}
.yf{bottom:543.680000pt;}
.y35{bottom:545.280000pt;}
.y5c{bottom:550.666667pt;}
.y146{bottom:553.333333pt;}
.y93{bottom:555.840000pt;}
.y1a8{bottom:556.000000pt;}
.yd7{bottom:564.000000pt;}
.y58{bottom:568.000000pt;}
.y34{bottom:570.880000pt;}
.y123{bottom:573.333333pt;}
.y92{bottom:573.760000pt;}
.ye{bottom:575.040000pt;}
.y33{bottom:588.160000pt;}
.y102{bottom:589.333333pt;}
.y91{bottom:591.680000pt;}
.y164{bottom:592.000000pt;}
.y1db{bottom:594.666667pt;}
.y32{bottom:606.080000pt;}
.y1a7{bottom:609.333333pt;}
.y90{bottom:609.600000pt;}
.y185{bottom:612.000000pt;}
.yd5{bottom:620.000000pt;}
.yd{bottom:620.160000pt;}
.y56{bottom:621.333333pt;}
.y31{bottom:624.320000pt;}
.y8f{bottom:627.200000pt;}
.y145{bottom:628.000000pt;}
.y1bc{bottom:629.333333pt;}
.y53{bottom:640.000000pt;}
.y30{bottom:642.240000pt;}
.y172{bottom:644.000000pt;}
.y8e{bottom:645.120000pt;}
.y11f{bottom:646.666667pt;}
.y1da{bottom:648.000000pt;}
.yfb{bottom:662.666667pt;}
.y8d{bottom:663.040000pt;}
.y162{bottom:664.000000pt;}
.y184{bottom:665.333333pt;}
.yc{bottom:665.600000pt;}
.yd3{bottom:673.333333pt;}
.y51{bottom:676.000000pt;}
.y2f{bottom:676.160000pt;}
.y8c{bottom:680.960000pt;}
.y1ee{bottom:684.000000pt;}
.y46{bottom:693.333333pt;}
.y2e{bottom:694.080000pt;}
.y155{bottom:698.666667pt;}
.y8b{bottom:698.880000pt;}
.y1a5{bottom:701.333333pt;}
.y1b9{bottom:704.000000pt;}
.y2d{bottom:712.000000pt;}
.yb{bottom:712.640000pt;}
.y8a{bottom:716.800000pt;}
.y144{bottom:717.333333pt;}
.y170{bottom:718.666667pt;}
.y1d9{bottom:721.333333pt;}
.yce{bottom:729.333333pt;}
.y2c{bottom:729.920000pt;}
.y89{bottom:734.720000pt;}
.y11d{bottom:736.000000pt;}
.y182{bottom:740.000000pt;}
.y2b{bottom:747.840000pt;}
.ya{bottom:750.400000pt;}
.yf9{bottom:752.000000pt;}
.y88{bottom:752.640000pt;}
.y1ed{bottom:757.333333pt;}
.y2a{bottom:765.760000pt;}
.y9{bottom:769.600000pt;}
.y87{bottom:770.560000pt;}
.y152{bottom:773.333333pt;}
.y1a2{bottom:776.000000pt;}
.ycb{bottom:784.000000pt;}
.y29{bottom:784.640000pt;}
.y86{bottom:788.480000pt;}
.y141{bottom:790.666667pt;}
.y181{bottom:793.333333pt;}
.ybe{bottom:798.400000pt;}
.y8{bottom:799.040000pt;}
.y28{bottom:803.520000pt;}
.y85{bottom:806.400000pt;}
.yf5{bottom:808.000000pt;}
.y1a1{bottom:812.000000pt;}
.ybd{bottom:817.280000pt;}
.y27{bottom:822.400000pt;}
.y84{bottom:824.320000pt;}
.y7{bottom:828.160000pt;}
.y1e0{bottom:832.000000pt;}
.ybc{bottom:835.200000pt;}
.y26{bottom:840.320000pt;}
.y83{bottom:842.240000pt;}
.y1c2{bottom:849.333333pt;}
.ybb{bottom:853.120000pt;}
.yc0{bottom:857.333333pt;}
.y6{bottom:857.600000pt;}
.y25{bottom:859.200000pt;}
.y82{bottom:860.160000pt;}
.y151{bottom:862.666667pt;}
.y176{bottom:868.000000pt;}
.y196{bottom:869.760000pt;}
.yba{bottom:871.040000pt;}
.y44{bottom:872.000000pt;}
.y24{bottom:878.080000pt;}
.yf3{bottom:880.000000pt;}
.y15f{bottom:881.333333pt;}
.y197{bottom:885.333333pt;}
.y81{bottom:886.080000pt;}
.y195{bottom:886.400000pt;}
.y5{bottom:886.720000pt;}
.yb9{bottom:888.960000pt;}
.y43{bottom:895.040000pt;}
.y23{bottom:896.000000pt;}
.y80{bottom:904.320000pt;}
.yb2{bottom:906.560000pt;}
.yb8{bottom:906.880000pt;}
.y22{bottom:913.920000pt;}
.y193{bottom:916.000000pt;}
.y4{bottom:916.160000pt;}
.y7a{bottom:918.666667pt;}
.yb7{bottom:924.800000pt;}
.y21{bottom:931.840000pt;}
.yb1{bottom:936.000000pt;}
.yb6{bottom:942.720000pt;}
.y3{bottom:945.280000pt;}
.y20{bottom:949.760000pt;}
.y192{bottom:952.000000pt;}
.yed{bottom:954.666667pt;}
.yb5{bottom:960.640000pt;}
.y42{bottom:967.360000pt;}
.y1f{bottom:967.680000pt;}
.yad{bottom:972.000000pt;}
.y2{bottom:974.720000pt;}
.yb4{bottom:978.560000pt;}
.y1{bottom:1003.840000pt;}
.y1e{bottom:1011.520000pt;}
.yb3{bottom:1011.840000pt;}
.ybf{bottom:1012.800000pt;}
.y1b5{bottom:1014.080000pt;}
.hf{height:18.666667pt;}
.hd{height:20.000000pt;}
.h1a{height:21.328125pt;}
.h21{height:21.333333pt;}
.h3{height:35.831250pt;}
.h24{height:36.000000pt;}
.h10{height:37.333333pt;}
.h9{height:39.243750pt;}
.hc{height:39.272500pt;}
.h8{height:39.646250pt;}
.h17{height:40.796250pt;}
.h7{height:42.656250pt;}
.h6{height:42.687500pt;}
.hb{height:43.041280pt;}
.ha{height:43.326250pt;}
.h16{height:43.375000pt;}
.h18{height:47.775000pt;}
.h11{height:54.666667pt;}
.h1c{height:56.000000pt;}
.h1d{height:57.333333pt;}
.h2{height:63.984375pt;}
.h1f{height:72.000000pt;}
.h14{height:73.333333pt;}
.h1b{height:74.666667pt;}
.h1e{height:90.666667pt;}
.h20{height:92.000000pt;}
.h13{height:97.333333pt;}
.h4{height:99.815625pt;}
.h15{height:108.000000pt;}
.h12{height:109.333333pt;}
.h5{height:127.968750pt;}
.h23{height:141.333333pt;}
.h19{height:150.666667pt;}
.h22{height:158.666667pt;}
.h25{height:177.333333pt;}
.he{height:180.000000pt;}
.h26{height:194.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:53.333333pt;}
.wa{width:58.666667pt;}
.wc{width:110.666667pt;}
.w6{width:120.000000pt;}
.w2{width:133.333333pt;}
.w4{width:161.333333pt;}
.w5{width:430.666667pt;}
.w3{width:434.666667pt;}
.w7{width:446.666667pt;}
.wb{width:498.666667pt;}
.w8{width:608.000000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x4{left:7.040032pt;}
.x7{left:8.000000pt;}
.x12{left:10.893237pt;}
.xd{left:16.133131pt;}
.x14{left:20.360021pt;}
.x15{left:25.599915pt;}
.x13{left:29.826837pt;}
.x11{left:35.853184pt;}
.xb{left:59.839840pt;}
.xe{left:88.000000pt;}
.xc{left:89.333333pt;}
.x1{left:96.000000pt;}
.xa{left:112.639968pt;}
.x2{left:120.000000pt;}
.xf{left:140.000000pt;}
.x3{left:144.000000pt;}
.x8{left:168.000000pt;}
.x10{left:198.666667pt;}
.x9{left:216.000000pt;}
.x5{left:228.000000pt;}
.x6{left:256.000000pt;}
}




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