
    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_0665c75812a9763ef7986b05.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e77adb8e8e5d23299746a773.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.026855;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_16cfc611c31d1aacaaa91950.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.162598;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_efdfa5e12d4c04530d018968.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.035645;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_1c7615821cb678da0aba07a7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.683105;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_304fe564663693e04f2628bb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.680176;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_4c0b2b741bd29ad05fe2afcb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.922852;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_85b42e2037d87836b2433b74.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.035645;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_a575c0ed5825ad5cda47ed15.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.721191;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_3b395823716d04e4c76dff25.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.684082;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_e6591f157588197253dd637e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_47709e45bcf05c2a343cb41d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.691406;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_f5b0de2739aa6afc3d3cd92b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.680176;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_dd0565acb9614119d9593246.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.035645;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_9b71831ae62f91aa4f86f2a3.woff2')format("woff");}.fff{font-family:fff;line-height:0.687988;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_4853edeff44b49ab1588131a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.680176;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_f8df0131e94ed0fb2d62bde9.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_67efc81480c38f7daa87d774.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.718750;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_293a7f98b7b1d4a64d3fe43f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.731445;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_2bb6b6acba83d762e1a9a083.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_810dc74ab62ca0f28237221c.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_5cc79627ffe3cd99d68c26d1.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.933594;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_8ee461f1fa0c1a8ce5a6c2e3.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.809082;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_fdb820a2e6bee377e2b77b29.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.915039;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_69fd842ab4f684536fa7404a.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.683105;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_33334b25cc6f5d265befb53b.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.026855;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_0894e483db535b3f0d3ab2f4.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.035645;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_28439787e2f002836053ed95.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.887207;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_f011414cdbaf7ad68f5c41e6.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_5ae1dfda58508b367f34f179.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.894531;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_1a790924259dcb77ac7bd7db.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.683105;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:ff20;src:url('chunks/assets/font_68b4e146d6a8afbe8333dc76.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.700195;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;}
.v3{vertical-align:2.880000px;}
.v4{vertical-align:5.760000px;}
.v2{vertical-align:24.480000px;}
.v1{vertical-align:38.880000px;}
.ls3b{letter-spacing:-14.169600px;}
.ls3d{letter-spacing:-11.541600px;}
.ls3c{letter-spacing:-5.025600px;}
.lsb{letter-spacing:-0.495360px;}
.ls17{letter-spacing:-0.478080px;}
.ls21{letter-spacing:-0.443520px;}
.ls15{letter-spacing:-0.437760px;}
.ls18{letter-spacing:-0.391680px;}
.ls16{letter-spacing:-0.380160px;}
.ls1b{letter-spacing:-0.374400px;}
.lse{letter-spacing:-0.356832px;}
.lsf{letter-spacing:-0.326592px;}
.lsd{letter-spacing:-0.290304px;}
.ls26{letter-spacing:-0.284256px;}
.ls10{letter-spacing:-0.241920px;}
.ls23{letter-spacing:-0.211968px;}
.ls33{letter-spacing:-0.192096px;}
.ls32{letter-spacing:-0.178848px;}
.ls38{letter-spacing:-0.172224px;}
.ls31{letter-spacing:-0.165600px;}
.ls22{letter-spacing:-0.158976px;}
.ls2c{letter-spacing:-0.145728px;}
.ls2b{letter-spacing:-0.132480px;}
.ls30{letter-spacing:-0.119232px;}
.ls2f{letter-spacing:-0.112608px;}
.ls3a{letter-spacing:-0.099360px;}
.ls37{letter-spacing:-0.092736px;}
.ls39{letter-spacing:-0.086112px;}
.ls34{letter-spacing:-0.079488px;}
.ls2d{letter-spacing:-0.066240px;}
.ls2e{letter-spacing:-0.059616px;}
.ls13{letter-spacing:-0.014400px;}
.lsc{letter-spacing:-0.007200px;}
.ls9{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.000288px;}
.ls12{letter-spacing:0.007200px;}
.ls20{letter-spacing:0.008496px;}
.ls6{letter-spacing:0.008640px;}
.ls2a{letter-spacing:0.010080px;}
.ls1c{letter-spacing:0.011520px;}
.ls29{letter-spacing:0.012384px;}
.ls7{letter-spacing:0.014400px;}
.ls19{letter-spacing:0.014688px;}
.ls14{letter-spacing:0.015840px;}
.ls1a{letter-spacing:0.020160px;}
.ls36{letter-spacing:0.021600px;}
.ls8{letter-spacing:0.030096px;}
.ls2{letter-spacing:0.119952px;}
.ls4{letter-spacing:0.120096px;}
.ls5{letter-spacing:0.120960px;}
.ls1{letter-spacing:0.250560px;}
.lsa{letter-spacing:0.309024px;}
.ls3{letter-spacing:0.317376px;}
.ls0{letter-spacing:0.344592px;}
.ls25{letter-spacing:0.720576px;}
.ls24{letter-spacing:0.858240px;}
.ls35{letter-spacing:1.199520px;}
.ls27{letter-spacing:18.000000px;}
.ls28{letter-spacing:19.864944px;}
.ls1f{letter-spacing:33.984000px;}
.ls1e{letter-spacing:44.495712px;}
.ls11{letter-spacing:846.000000px;}
.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;}
}
.ws0{word-spacing:-27.000000px;}
.ws2{word-spacing:-21.197376px;}
.ws1{word-spacing:-21.130560px;}
.ws9{word-spacing:-18.014400px;}
.wsf{word-spacing:-18.007200px;}
.wsb{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.992800px;}
.wsa{word-spacing:-17.985600px;}
.ws14{word-spacing:-16.560000px;}
.ws16{word-spacing:-16.500384px;}
.ws19{word-spacing:-16.480512px;}
.ws17{word-spacing:-16.447392px;}
.ws18{word-spacing:-16.348032px;}
.ws5{word-spacing:-15.120000px;}
.ws6{word-spacing:-14.878080px;}
.ws15{word-spacing:-14.835744px;}
.ws10{word-spacing:-14.025600px;}
.ws13{word-spacing:-14.019840px;}
.wse{word-spacing:-14.008320px;}
.wsd{word-spacing:-13.962240px;}
.ws12{word-spacing:-13.956480px;}
.ws1a{word-spacing:-13.921920px;}
.ws3{word-spacing:-13.904640px;}
.ws1b{word-spacing:-6.458400px;}
.ws7{word-spacing:-0.246240px;}
.ws11{word-spacing:-0.072000px;}
.ws4{word-spacing:-0.047520px;}
.ws8{word-spacing:0.000000px;}
._8{margin-left:-14.265072px;}
._e{margin-left:-13.220352px;}
._6{margin-left:-10.935504px;}
._5{margin-left:-7.905600px;}
._9{margin-left:-6.487200px;}
._3{margin-left:-5.018400px;}
._7{margin-left:-3.464352px;}
._4{margin-left:-2.281248px;}
._0{margin-left:-1.156176px;}
._1{width:1.021824px;}
._a{width:2.310048px;}
._d{width:5.024160px;}
._f{width:6.379776px;}
._b{width:7.824672px;}
._c{width:14.152320px;}
._2{width:19.902240px;}
.fc6{color:rgb(6,6,7);}
.fc5{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(55,65,81);}
.fc4{color:rgb(13,13,13);}
.fc3{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fsc{font-size:41.760000px;}
.fs4{font-size:47.520000px;}
.fs0{font-size:54.720000px;}
.fs6{font-size:57.600000px;}
.fs9{font-size:60.480000px;}
.fs7{font-size:66.240000px;}
.fs3{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.fs2{font-size:108.000000px;}
.fsa{font-size:246.240000px;}
.fsb{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.yf1{bottom:10.020000px;}
.yeb{bottom:10.080000px;}
.yfa{bottom:10.320000px;}
.yf4{bottom:10.380000px;}
.yd7{bottom:10.500000px;}
.yee{bottom:10.800000px;}
.ye4{bottom:10.860000px;}
.y16c{bottom:10.980000px;}
.yfc{bottom:11.040000px;}
.yf7{bottom:11.100000px;}
.y16a{bottom:11.400000px;}
.y168{bottom:11.460000px;}
.y174{bottom:11.520000px;}
.y172{bottom:11.940000px;}
.y170{bottom:12.000000px;}
.y16e{bottom:12.420000px;}
.y166{bottom:14.040000px;}
.y24{bottom:15.360000px;}
.y176{bottom:17.340000px;}
.y17a{bottom:24.780000px;}
.y180{bottom:24.840000px;}
.y187{bottom:25.620000px;}
.y182{bottom:26.100000px;}
.y164{bottom:28.800000px;}
.yf0{bottom:39.900000px;}
.yea{bottom:39.960000px;}
.yd6{bottom:40.020000px;}
.yf9{bottom:40.200000px;}
.yf3{bottom:40.260000px;}
.y185{bottom:40.380000px;}
.y17e{bottom:40.560000px;}
.yed{bottom:40.680000px;}
.ye3{bottom:40.740000px;}
.y183{bottom:40.860000px;}
.yfb{bottom:40.920000px;}
.yf6{bottom:40.980000px;}
.y165{bottom:43.920000px;}
.y186{bottom:55.500000px;}
.y2{bottom:59.760000px;}
.yd5{bottom:69.900000px;}
.y17d{bottom:70.080000px;}
.y188{bottom:70.260000px;}
.y12a{bottom:111.960000px;}
.y22{bottom:112.680000px;}
.y15f{bottom:115.200000px;}
.y110{bottom:118.440000px;}
.y144{bottom:120.240000px;}
.y1a4{bottom:122.400000px;}
.y65{bottom:126.360000px;}
.y21{bottom:134.280000px;}
.y129{bottom:135.360000px;}
.yce{bottom:136.080000px;}
.yb0{bottom:137.520000px;}
.y15e{bottom:142.560000px;}
.y7b{bottom:145.080000px;}
.y10f{bottom:148.320000px;}
.y143{bottom:150.120000px;}
.y1a3{bottom:152.280000px;}
.y1b5{bottom:155.160000px;}
.y20{bottom:155.520000px;}
.y64{bottom:156.240000px;}
.y128{bottom:160.920000px;}
.y45{bottom:163.440000px;}
.ycd{bottom:166.320000px;}
.y8b{bottom:167.040000px;}
.ya0{bottom:167.400000px;}
.y15d{bottom:169.920000px;}
.yd3{bottom:172.440000px;}
.y7a{bottom:174.960000px;}
.y10e{bottom:178.200000px;}
.y142{bottom:180.000000px;}
.y1f{bottom:180.720000px;}
.y1b4{bottom:181.080000px;}
.y178{bottom:182.880000px;}
.y63{bottom:186.120000px;}
.y127{bottom:190.800000px;}
.ycc{bottom:196.200000px;}
.y1a2{bottom:196.920000px;}
.y8a{bottom:197.280000px;}
.y9f{bottom:197.640000px;}
.yd2{bottom:202.320000px;}
.y79{bottom:204.840000px;}
.y1b3{bottom:207.000000px;}
.y44{bottom:208.080000px;}
.yaf{bottom:208.440000px;}
.y141{bottom:209.880000px;}
.y177{bottom:210.960000px;}
.y62{bottom:216.000000px;}
.y1e{bottom:217.080000px;}
.ye1{bottom:220.560000px;}
.y15c{bottom:224.640000px;}
.ycb{bottom:226.080000px;}
.y89{bottom:227.160000px;}
.y9e{bottom:227.520000px;}
.y175{bottom:232.500000px;}
.y10d{bottom:237.960000px;}
.y43{bottom:238.320000px;}
.yd1{bottom:243.360000px;}
.y61{bottom:245.880000px;}
.y1d{bottom:246.960000px;}
.y1b2{bottom:248.040000px;}
.ye0{bottom:250.440000px;}
.yae{bottom:252.720000px;}
.y140{bottom:254.520000px;}
.yca{bottom:255.960000px;}
.y126{bottom:256.680000px;}
.y88{bottom:257.040000px;}
.y9d{bottom:257.400000px;}
.y10c{bottom:267.840000px;}
.y42{bottom:268.200000px;}
.y1b1{bottom:273.960000px;}
.y60{bottom:275.760000px;}
.y1c{bottom:276.840000px;}
.y173{bottom:279.000000px;}
.ydf{bottom:280.320000px;}
.yad{bottom:282.960000px;}
.y13f{bottom:284.760000px;}
.yc9{bottom:285.840000px;}
.y125{bottom:286.560000px;}
.y87{bottom:286.920000px;}
.y9c{bottom:287.280000px;}
.y78{bottom:290.160000px;}
.y18e{bottom:293.400000px;}
.yd0{bottom:294.480000px;}
.y41{bottom:298.080000px;}
.y1b0{bottom:299.880000px;}
.y5f{bottom:305.640000px;}
.y1b{bottom:306.720000px;}
.y10b{bottom:308.880000px;}
.yde{bottom:310.200000px;}
.yac{bottom:312.840000px;}
.y171{bottom:313.500000px;}
.y13e{bottom:314.640000px;}
.yc8{bottom:315.720000px;}
.y124{bottom:316.440000px;}
.y1a1{bottom:316.800000px;}
.y9b{bottom:317.160000px;}
.y77{bottom:320.400000px;}
.yd8{bottom:327.000000px;}
.y40{bottom:327.960000px;}
.y5e{bottom:335.520000px;}
.y1a{bottom:336.600000px;}
.ydd{bottom:340.080000px;}
.y1af{bottom:340.920000px;}
.yab{bottom:342.720000px;}
.y13d{bottom:344.160000px;}
.yc7{bottom:345.600000px;}
.y123{bottom:346.320000px;}
.y1a0{bottom:346.680000px;}
.y9a{bottom:347.040000px;}
.y16f{bottom:348.000000px;}
.y76{bottom:350.280000px;}
.y18d{bottom:352.800000px;}
.ye8{bottom:357.720000px;}
.y3f{bottom:357.840000px;}
.y10a{bottom:361.440000px;}
.y5d{bottom:365.400000px;}
.y19{bottom:366.480000px;}
.yaa{bottom:372.600000px;}
.ydc{bottom:372.840000px;}
.y13c{bottom:374.040000px;}
.yc6{bottom:375.480000px;}
.y122{bottom:376.200000px;}
.y19f{bottom:376.560000px;}
.y99{bottom:376.920000px;}
.y75{bottom:380.160000px;}
.y1ae{bottom:381.960000px;}
.y16d{bottom:382.500000px;}
.ye7{bottom:387.600000px;}
.y3e{bottom:387.720000px;}
.yf8{bottom:390.000000px;}
.y109{bottom:391.320000px;}
.ya9{bottom:402.480000px;}
.y13b{bottom:403.920000px;}
.y121{bottom:406.080000px;}
.y19e{bottom:406.440000px;}
.y18c{bottom:407.520000px;}
.y1ad{bottom:407.880000px;}
.ydb{bottom:408.840000px;}
.y5c{bottom:409.680000px;}
.y74{bottom:410.040000px;}
.y18{bottom:410.760000px;}
.yc5{bottom:416.520000px;}
.y3d{bottom:417.240000px;}
.ye6{bottom:417.480000px;}
.y16b{bottom:418.500000px;}
.y98{bottom:431.640000px;}
.ya8{bottom:432.360000px;}
.y13a{bottom:433.800000px;}
.y18b{bottom:434.880000px;}
.y19d{bottom:436.320000px;}
.y5b{bottom:439.920000px;}
.y17{bottom:441.000000px;}
.y108{bottom:443.520000px;}
.yda{bottom:444.480000px;}
.yc4{bottom:446.400000px;}
.y3c{bottom:447.120000px;}
.ye5{bottom:447.360000px;}
.yf5{bottom:451.500000px;}
.y169{bottom:453.000000px;}
.y120{bottom:454.680000px;}
.y97{bottom:461.880000px;}
.ya7{bottom:462.240000px;}
.y139{bottom:463.680000px;}
.y5a{bottom:469.800000px;}
.y16{bottom:470.880000px;}
.y107{bottom:473.400000px;}
.y1ac{bottom:474.840000px;}
.yc3{bottom:476.280000px;}
.y3b{bottom:477.000000px;}
.yd9{bottom:477.240000px;}
.y14e{bottom:477.720000px;}
.y19c{bottom:480.600000px;}
.y167{bottom:487.500000px;}
.y18a{bottom:489.600000px;}
.ya6{bottom:492.120000px;}
.y138{bottom:493.560000px;}
.y11f{bottom:498.960000px;}
.y59{bottom:499.680000px;}
.y15{bottom:500.760000px;}
.y106{bottom:503.280000px;}
.yc2{bottom:506.160000px;}
.y96{bottom:506.520000px;}
.y3a{bottom:506.880000px;}
.y14d{bottom:507.600000px;}
.y19b{bottom:510.840000px;}
.y189{bottom:511.920000px;}
.yf2{bottom:514.500000px;}
.y163{bottom:522.000000px;}
.y137{bottom:523.440000px;}
.y11e{bottom:529.200000px;}
.y58{bottom:529.560000px;}
.y14{bottom:530.640000px;}
.y105{bottom:533.160000px;}
.yc1{bottom:536.040000px;}
.y39{bottom:536.760000px;}
.y19a{bottom:540.720000px;}
.y1ab{bottom:541.800000px;}
.y148{bottom:551.520000px;}
.y136{bottom:553.320000px;}
.y11d{bottom:559.080000px;}
.y57{bottom:559.440000px;}
.y13{bottom:560.520000px;}
.y104{bottom:563.040000px;}
.y14c{bottom:564.120000px;}
.yc0{bottom:565.920000px;}
.y38{bottom:566.640000px;}
.ya5{bottom:567.000000px;}
.y1aa{bottom:567.720000px;}
.y199{bottom:570.600000px;}
.yef{bottom:577.500000px;}
.y95{bottom:581.400000px;}
.y147{bottom:581.760000px;}
.y11c{bottom:588.960000px;}
.y56{bottom:589.320000px;}
.y12{bottom:590.400000px;}
.y14b{bottom:591.480000px;}
.y103{bottom:592.920000px;}
.ybf{bottom:595.800000px;}
.y37{bottom:596.520000px;}
.ya4{bottom:596.880000px;}
.y135{bottom:597.960000px;}
.y198{bottom:600.480000px;}
.y162{bottom:601.560000px;}
.y1a9{bottom:608.760000px;}
.y94{bottom:611.640000px;}
.y11b{bottom:618.840000px;}
.y55{bottom:619.200000px;}
.y11{bottom:620.280000px;}
.y102{bottom:622.800000px;}
.ybe{bottom:625.680000px;}
.y86{bottom:626.400000px;}
.ya3{bottom:626.760000px;}
.y134{bottom:628.200000px;}
.y197{bottom:630.360000px;}
.y161{bottom:631.080000px;}
.y1a8{bottom:634.680000px;}
.yec{bottom:639.000000px;}
.y36{bottom:641.160000px;}
.y146{bottom:641.520000px;}
.y14a{bottom:646.200000px;}
.y54{bottom:649.080000px;}
.y10{bottom:650.160000px;}
.y101{bottom:652.680000px;}
.y93{bottom:655.920000px;}
.y85{bottom:656.280000px;}
.ya2{bottom:656.640000px;}
.y133{bottom:658.080000px;}
.y160{bottom:658.440000px;}
.ybd{bottom:658.800000px;}
.y196{bottom:660.240000px;}
.y1a7{bottom:660.600000px;}
.y1c4{bottom:662.040000px;}
.y73{bottom:663.480000px;}
.y149{bottom:668.520000px;}
.y11a{bottom:670.680000px;}
.y35{bottom:671.400000px;}
.y53{bottom:678.960000px;}
.yf{bottom:680.040000px;}
.y100{bottom:682.560000px;}
.y84{bottom:686.160000px;}
.ya1{bottom:686.520000px;}
.y15b{bottom:687.240000px;}
.y132{bottom:687.960000px;}
.y195{bottom:690.120000px;}
.y184{bottom:691.500000px;}
.ybc{bottom:691.560000px;}
.y1c3{bottom:691.920000px;}
.y72{bottom:693.720000px;}
.y119{bottom:700.920000px;}
.y34{bottom:701.280000px;}
.y1a6{bottom:701.640000px;}
.ye9{bottom:702.000000px;}
.y52{bottom:708.840000px;}
.ye{bottom:709.920000px;}
.yff{bottom:712.440000px;}
.y83{bottom:716.040000px;}
.y15a{bottom:717.120000px;}
.y131{bottom:717.840000px;}
.y194{bottom:720.000000px;}
.y1c2{bottom:721.800000px;}
.y71{bottom:723.600000px;}
.ybb{bottom:724.680000px;}
.y1a5{bottom:727.560000px;}
.y118{bottom:730.800000px;}
.y33{bottom:731.160000px;}
.y51{bottom:738.720000px;}
.yd{bottom:739.800000px;}
.y82{bottom:745.920000px;}
.y159{bottom:747.000000px;}
.y130{bottom:747.720000px;}
.y193{bottom:749.880000px;}
.y70{bottom:753.480000px;}
.yba{bottom:760.680000px;}
.y32{bottom:761.040000px;}
.y1c1{bottom:762.840000px;}
.ye2{bottom:763.500000px;}
.yfe{bottom:764.640000px;}
.y50{bottom:768.600000px;}
.yc{bottom:769.680000px;}
.y81{bottom:775.800000px;}
.y158{bottom:776.880000px;}
.y12f{bottom:777.600000px;}
.y192{bottom:779.760000px;}
.y6f{bottom:783.360000px;}
.y181{bottom:787.500000px;}
.y1c0{bottom:788.760000px;}
.y117{bottom:790.560000px;}
.y31{bottom:790.920000px;}
.yb9{bottom:793.440000px;}
.yfd{bottom:794.520000px;}
.y4f{bottom:798.480000px;}
.yb{bottom:799.560000px;}
.y145{bottom:805.320000px;}
.y80{bottom:805.680000px;}
.y12e{bottom:807.480000px;}
.y191{bottom:809.640000px;}
.y6e{bottom:813.240000px;}
.y116{bottom:820.440000px;}
.y30{bottom:820.800000px;}
.yb8{bottom:823.320000px;}
.y157{bottom:824.400000px;}
.yd4{bottom:826.500000px;}
.ya{bottom:829.440000px;}
.y1bf{bottom:829.800000px;}
.y7f{bottom:835.560000px;}
.y12d{bottom:837.360000px;}
.y190{bottom:839.520000px;}
.y4e{bottom:843.120000px;}
.y23{bottom:849.000000px;}
.y2f{bottom:850.680000px;}
.yb7{bottom:853.200000px;}
.y156{bottom:854.280000px;}
.y17f{bottom:855.000000px;}
.y1be{bottom:855.720000px;}
.y6d{bottom:857.880000px;}
.y9{bottom:859.320000px;}
.y7e{bottom:865.440000px;}
.y115{bottom:872.640000px;}
.y4d{bottom:873.360000px;}
.y12c{bottom:878.040000px;}
.y92{bottom:880.200000px;}
.yb6{bottom:883.080000px;}
.y18f{bottom:883.800000px;}
.y155{bottom:884.160000px;}
.y6c{bottom:888.120000px;}
.y8{bottom:891.000000px;}
.y2e{bottom:894.960000px;}
.y7d{bottom:895.320000px;}
.y1bd{bottom:896.760000px;}
.y114{bottom:902.880000px;}
.y4c{bottom:903.240000px;}
.y91{bottom:910.440000px;}
.yb5{bottom:912.960000px;}
.y154{bottom:914.040000px;}
.y6b{bottom:918.000000px;}
.y12b{bottom:919.080000px;}
.y17c{bottom:921.000000px;}
.y1bc{bottom:922.680000px;}
.y2d{bottom:925.200000px;}
.y113{bottom:932.760000px;}
.y4b{bottom:933.120000px;}
.y7{bottom:935.280000px;}
.y90{bottom:940.320000px;}
.y153{bottom:943.920000px;}
.yb4{bottom:946.080000px;}
.y6a{bottom:947.880000px;}
.y1bb{bottom:948.600000px;}
.y2c{bottom:955.080000px;}
.y4a{bottom:962.640000px;}
.y8f{bottom:970.200000px;}
.y152{bottom:973.800000px;}
.y69{bottom:977.760000px;}
.yb3{bottom:978.840000px;}
.y6{bottom:981.720000px;}
.ycf{bottom:984.600000px;}
.y2b{bottom:984.960000px;}
.y1ba{bottom:989.640000px;}
.y112{bottom:992.160000px;}
.y49{bottom:992.520000px;}
.y8e{bottom:999.720000px;}
.y151{bottom:1003.680000px;}
.yb2{bottom:1008.720000px;}
.y2a{bottom:1014.840000px;}
.y1b9{bottom:1015.560000px;}
.y17b{bottom:1017.000000px;}
.y68{bottom:1018.800000px;}
.y48{bottom:1022.400000px;}
.y8d{bottom:1029.600000px;}
.y150{bottom:1033.560000px;}
.y5{bottom:1034.640000px;}
.y1b8{bottom:1041.480000px;}
.yb1{bottom:1041.840000px;}
.y111{bottom:1044.360000px;}
.y29{bottom:1044.720000px;}
.y47{bottom:1052.280000px;}
.y7c{bottom:1059.120000px;}
.y67{bottom:1059.480000px;}
.y14f{bottom:1063.440000px;}
.y8c{bottom:1074.240000px;}
.y28{bottom:1074.600000px;}
.y4{bottom:1079.640000px;}
.y1b7{bottom:1082.520000px;}
.y179{bottom:1090.500000px;}
.y46{bottom:1093.320000px;}
.y66{bottom:1104.120000px;}
.y27{bottom:1104.480000px;}
.y1b6{bottom:1108.440000px;}
.y3{bottom:1124.280000px;}
.y26{bottom:1134.360000px;}
.y25{bottom:1188.360000px;}
.y1{bottom:1195.920000px;}
.h15{height:33.000000px;}
.h16{height:34.500000px;}
.h2{height:36.471094px;}
.h8{height:44.149219px;}
.h17{height:45.000000px;}
.ha{height:45.832500px;}
.h13{height:49.615313px;}
.hd{height:50.197500px;}
.h9{height:51.592500px;}
.h7{height:54.562500px;}
.h10{height:59.765625px;}
.h12{height:60.000000px;}
.h11{height:61.500000px;}
.h6{height:62.558438px;}
.h3{height:63.703125px;}
.hb{height:66.000000px;}
.h14{height:67.500000px;}
.h4{height:81.843750px;}
.h5{height:85.893750px;}
.he{height:90.000000px;}
.h18{height:91.500000px;}
.hc{height:195.890625px;}
.hf{height:498.000000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:42.000000px;}
.w8{width:64.500000px;}
.w7{width:72.000000px;}
.wd{width:75.000000px;}
.w5{width:85.500000px;}
.w4{width:91.500000px;}
.w6{width:96.000000px;}
.w9{width:97.500000px;}
.we{width:118.500000px;}
.w3{width:120.000000px;}
.w10{width:126.000000px;}
.wa{width:127.500000px;}
.wb{width:138.000000px;}
.wf{width:153.000000px;}
.wc{width:159.000000px;}
.w11{width:183.000000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x38{left:-2.099760px;}
.x0{left:0.000000px;}
.x19{left:1.019928px;}
.x6{left:3.000000px;}
.x18{left:7.980108px;}
.x5{left:105.000000px;}
.x1{left:108.000000px;}
.x2c{left:109.038204px;}
.x26{left:111.298104px;}
.x3a{left:113.932620px;}
.x17{left:124.500000px;}
.x2b{left:131.580684px;}
.x2d{left:133.373304px;}
.xe{left:135.000000px;}
.x27{left:136.575792px;}
.x3b{left:137.800404px;}
.x3{left:145.604376px;}
.x28{left:154.489752px;}
.xf{left:162.000000px;}
.x34{left:166.500000px;}
.x10{left:189.000000px;}
.x11{left:216.000000px;}
.x2e{left:219.857292px;}
.x9{left:227.296512px;}
.xa{left:244.292004px;}
.x20{left:258.787008px;}
.x30{left:261.000000px;}
.xb{left:265.172256px;}
.x14{left:266.251824px;}
.x35{left:283.500000px;}
.x21{left:297.795024px;}
.x7{left:306.795024px;}
.x24{left:314.267976px;}
.xc{left:318.113172px;}
.x2f{left:321.983280px;}
.x4{left:324.000000px;}
.x22{left:328.290912px;}
.x1a{left:336.000000px;}
.x29{left:345.038436px;}
.x12{left:350.206416px;}
.x23{left:363.861000px;}
.x13{left:376.367040px;}
.x1f{left:378.300600px;}
.xd{left:381.552480px;}
.x15{left:386.088120px;}
.x2{left:387.279000px;}
.x3c{left:389.324880px;}
.x8{left:392.087520px;}
.x3d{left:396.074880px;}
.x31{left:399.000000px;}
.x16{left:404.654760px;}
.x1b{left:421.500000px;}
.x36{left:435.000000px;}
.x1c{left:517.500000px;}
.x32{left:558.000000px;}
.x37{left:559.500000px;}
.x1d{left:589.500000px;}
.x33{left:633.000000px;}
.x1e{left:654.000000px;}
.x2a{left:739.087200px;}
.x39{left:751.680000px;}
.x25{left:770.047560px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.560000pt;}
.v4{vertical-align:5.120000pt;}
.v2{vertical-align:21.760000pt;}
.v1{vertical-align:34.560000pt;}
.ls3b{letter-spacing:-12.595200pt;}
.ls3d{letter-spacing:-10.259200pt;}
.ls3c{letter-spacing:-4.467200pt;}
.lsb{letter-spacing:-0.440320pt;}
.ls17{letter-spacing:-0.424960pt;}
.ls21{letter-spacing:-0.394240pt;}
.ls15{letter-spacing:-0.389120pt;}
.ls18{letter-spacing:-0.348160pt;}
.ls16{letter-spacing:-0.337920pt;}
.ls1b{letter-spacing:-0.332800pt;}
.lse{letter-spacing:-0.317184pt;}
.lsf{letter-spacing:-0.290304pt;}
.lsd{letter-spacing:-0.258048pt;}
.ls26{letter-spacing:-0.252672pt;}
.ls10{letter-spacing:-0.215040pt;}
.ls23{letter-spacing:-0.188416pt;}
.ls33{letter-spacing:-0.170752pt;}
.ls32{letter-spacing:-0.158976pt;}
.ls38{letter-spacing:-0.153088pt;}
.ls31{letter-spacing:-0.147200pt;}
.ls22{letter-spacing:-0.141312pt;}
.ls2c{letter-spacing:-0.129536pt;}
.ls2b{letter-spacing:-0.117760pt;}
.ls30{letter-spacing:-0.105984pt;}
.ls2f{letter-spacing:-0.100096pt;}
.ls3a{letter-spacing:-0.088320pt;}
.ls37{letter-spacing:-0.082432pt;}
.ls39{letter-spacing:-0.076544pt;}
.ls34{letter-spacing:-0.070656pt;}
.ls2d{letter-spacing:-0.058880pt;}
.ls2e{letter-spacing:-0.052992pt;}
.ls13{letter-spacing:-0.012800pt;}
.lsc{letter-spacing:-0.006400pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.000256pt;}
.ls12{letter-spacing:0.006400pt;}
.ls20{letter-spacing:0.007552pt;}
.ls6{letter-spacing:0.007680pt;}
.ls2a{letter-spacing:0.008960pt;}
.ls1c{letter-spacing:0.010240pt;}
.ls29{letter-spacing:0.011008pt;}
.ls7{letter-spacing:0.012800pt;}
.ls19{letter-spacing:0.013056pt;}
.ls14{letter-spacing:0.014080pt;}
.ls1a{letter-spacing:0.017920pt;}
.ls36{letter-spacing:0.019200pt;}
.ls8{letter-spacing:0.026752pt;}
.ls2{letter-spacing:0.106624pt;}
.ls4{letter-spacing:0.106752pt;}
.ls5{letter-spacing:0.107520pt;}
.ls1{letter-spacing:0.222720pt;}
.lsa{letter-spacing:0.274688pt;}
.ls3{letter-spacing:0.282112pt;}
.ls0{letter-spacing:0.306304pt;}
.ls25{letter-spacing:0.640512pt;}
.ls24{letter-spacing:0.762880pt;}
.ls35{letter-spacing:1.066240pt;}
.ls27{letter-spacing:16.000000pt;}
.ls28{letter-spacing:17.657728pt;}
.ls1f{letter-spacing:30.208000pt;}
.ls1e{letter-spacing:39.551744pt;}
.ls11{letter-spacing:752.000000pt;}
.ws0{word-spacing:-24.000000pt;}
.ws2{word-spacing:-18.842112pt;}
.ws1{word-spacing:-18.782720pt;}
.ws9{word-spacing:-16.012800pt;}
.wsf{word-spacing:-16.006400pt;}
.wsb{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.993600pt;}
.wsa{word-spacing:-15.987200pt;}
.ws14{word-spacing:-14.720000pt;}
.ws16{word-spacing:-14.667008pt;}
.ws19{word-spacing:-14.649344pt;}
.ws17{word-spacing:-14.619904pt;}
.ws18{word-spacing:-14.531584pt;}
.ws5{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.224960pt;}
.ws15{word-spacing:-13.187328pt;}
.ws10{word-spacing:-12.467200pt;}
.ws13{word-spacing:-12.462080pt;}
.wse{word-spacing:-12.451840pt;}
.wsd{word-spacing:-12.410880pt;}
.ws12{word-spacing:-12.405760pt;}
.ws1a{word-spacing:-12.375040pt;}
.ws3{word-spacing:-12.359680pt;}
.ws1b{word-spacing:-5.740800pt;}
.ws7{word-spacing:-0.218880pt;}
.ws11{word-spacing:-0.064000pt;}
.ws4{word-spacing:-0.042240pt;}
.ws8{word-spacing:0.000000pt;}
._8{margin-left:-12.680064pt;}
._e{margin-left:-11.751424pt;}
._6{margin-left:-9.720448pt;}
._5{margin-left:-7.027200pt;}
._9{margin-left:-5.766400pt;}
._3{margin-left:-4.460800pt;}
._7{margin-left:-3.079424pt;}
._4{margin-left:-2.027776pt;}
._0{margin-left:-1.027712pt;}
._1{width:0.908288pt;}
._a{width:2.053376pt;}
._d{width:4.465920pt;}
._f{width:5.670912pt;}
._b{width:6.955264pt;}
._c{width:12.579840pt;}
._2{width:17.690880pt;}
.fs8{font-size:34.560000pt;}
.fsc{font-size:37.120000pt;}
.fs4{font-size:42.240000pt;}
.fs0{font-size:48.640000pt;}
.fs6{font-size:51.200000pt;}
.fs9{font-size:53.760000pt;}
.fs7{font-size:58.880000pt;}
.fs3{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.fs2{font-size:96.000000pt;}
.fsa{font-size:218.880000pt;}
.fsb{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.yf1{bottom:8.906667pt;}
.yeb{bottom:8.960000pt;}
.yfa{bottom:9.173333pt;}
.yf4{bottom:9.226667pt;}
.yd7{bottom:9.333333pt;}
.yee{bottom:9.600000pt;}
.ye4{bottom:9.653333pt;}
.y16c{bottom:9.760000pt;}
.yfc{bottom:9.813333pt;}
.yf7{bottom:9.866667pt;}
.y16a{bottom:10.133333pt;}
.y168{bottom:10.186667pt;}
.y174{bottom:10.240000pt;}
.y172{bottom:10.613333pt;}
.y170{bottom:10.666667pt;}
.y16e{bottom:11.040000pt;}
.y166{bottom:12.480000pt;}
.y24{bottom:13.653333pt;}
.y176{bottom:15.413333pt;}
.y17a{bottom:22.026667pt;}
.y180{bottom:22.080000pt;}
.y187{bottom:22.773333pt;}
.y182{bottom:23.200000pt;}
.y164{bottom:25.600000pt;}
.yf0{bottom:35.466667pt;}
.yea{bottom:35.520000pt;}
.yd6{bottom:35.573333pt;}
.yf9{bottom:35.733333pt;}
.yf3{bottom:35.786667pt;}
.y185{bottom:35.893333pt;}
.y17e{bottom:36.053333pt;}
.yed{bottom:36.160000pt;}
.ye3{bottom:36.213333pt;}
.y183{bottom:36.320000pt;}
.yfb{bottom:36.373333pt;}
.yf6{bottom:36.426667pt;}
.y165{bottom:39.040000pt;}
.y186{bottom:49.333333pt;}
.y2{bottom:53.120000pt;}
.yd5{bottom:62.133333pt;}
.y17d{bottom:62.293333pt;}
.y188{bottom:62.453333pt;}
.y12a{bottom:99.520000pt;}
.y22{bottom:100.160000pt;}
.y15f{bottom:102.400000pt;}
.y110{bottom:105.280000pt;}
.y144{bottom:106.880000pt;}
.y1a4{bottom:108.800000pt;}
.y65{bottom:112.320000pt;}
.y21{bottom:119.360000pt;}
.y129{bottom:120.320000pt;}
.yce{bottom:120.960000pt;}
.yb0{bottom:122.240000pt;}
.y15e{bottom:126.720000pt;}
.y7b{bottom:128.960000pt;}
.y10f{bottom:131.840000pt;}
.y143{bottom:133.440000pt;}
.y1a3{bottom:135.360000pt;}
.y1b5{bottom:137.920000pt;}
.y20{bottom:138.240000pt;}
.y64{bottom:138.880000pt;}
.y128{bottom:143.040000pt;}
.y45{bottom:145.280000pt;}
.ycd{bottom:147.840000pt;}
.y8b{bottom:148.480000pt;}
.ya0{bottom:148.800000pt;}
.y15d{bottom:151.040000pt;}
.yd3{bottom:153.280000pt;}
.y7a{bottom:155.520000pt;}
.y10e{bottom:158.400000pt;}
.y142{bottom:160.000000pt;}
.y1f{bottom:160.640000pt;}
.y1b4{bottom:160.960000pt;}
.y178{bottom:162.560000pt;}
.y63{bottom:165.440000pt;}
.y127{bottom:169.600000pt;}
.ycc{bottom:174.400000pt;}
.y1a2{bottom:175.040000pt;}
.y8a{bottom:175.360000pt;}
.y9f{bottom:175.680000pt;}
.yd2{bottom:179.840000pt;}
.y79{bottom:182.080000pt;}
.y1b3{bottom:184.000000pt;}
.y44{bottom:184.960000pt;}
.yaf{bottom:185.280000pt;}
.y141{bottom:186.560000pt;}
.y177{bottom:187.520000pt;}
.y62{bottom:192.000000pt;}
.y1e{bottom:192.960000pt;}
.ye1{bottom:196.053333pt;}
.y15c{bottom:199.680000pt;}
.ycb{bottom:200.960000pt;}
.y89{bottom:201.920000pt;}
.y9e{bottom:202.240000pt;}
.y175{bottom:206.666667pt;}
.y10d{bottom:211.520000pt;}
.y43{bottom:211.840000pt;}
.yd1{bottom:216.320000pt;}
.y61{bottom:218.560000pt;}
.y1d{bottom:219.520000pt;}
.y1b2{bottom:220.480000pt;}
.ye0{bottom:222.613333pt;}
.yae{bottom:224.640000pt;}
.y140{bottom:226.240000pt;}
.yca{bottom:227.520000pt;}
.y126{bottom:228.160000pt;}
.y88{bottom:228.480000pt;}
.y9d{bottom:228.800000pt;}
.y10c{bottom:238.080000pt;}
.y42{bottom:238.400000pt;}
.y1b1{bottom:243.520000pt;}
.y60{bottom:245.120000pt;}
.y1c{bottom:246.080000pt;}
.y173{bottom:248.000000pt;}
.ydf{bottom:249.173333pt;}
.yad{bottom:251.520000pt;}
.y13f{bottom:253.120000pt;}
.yc9{bottom:254.080000pt;}
.y125{bottom:254.720000pt;}
.y87{bottom:255.040000pt;}
.y9c{bottom:255.360000pt;}
.y78{bottom:257.920000pt;}
.y18e{bottom:260.800000pt;}
.yd0{bottom:261.760000pt;}
.y41{bottom:264.960000pt;}
.y1b0{bottom:266.560000pt;}
.y5f{bottom:271.680000pt;}
.y1b{bottom:272.640000pt;}
.y10b{bottom:274.560000pt;}
.yde{bottom:275.733333pt;}
.yac{bottom:278.080000pt;}
.y171{bottom:278.666667pt;}
.y13e{bottom:279.680000pt;}
.yc8{bottom:280.640000pt;}
.y124{bottom:281.280000pt;}
.y1a1{bottom:281.600000pt;}
.y9b{bottom:281.920000pt;}
.y77{bottom:284.800000pt;}
.yd8{bottom:290.666667pt;}
.y40{bottom:291.520000pt;}
.y5e{bottom:298.240000pt;}
.y1a{bottom:299.200000pt;}
.ydd{bottom:302.293333pt;}
.y1af{bottom:303.040000pt;}
.yab{bottom:304.640000pt;}
.y13d{bottom:305.920000pt;}
.yc7{bottom:307.200000pt;}
.y123{bottom:307.840000pt;}
.y1a0{bottom:308.160000pt;}
.y9a{bottom:308.480000pt;}
.y16f{bottom:309.333333pt;}
.y76{bottom:311.360000pt;}
.y18d{bottom:313.600000pt;}
.ye8{bottom:317.973333pt;}
.y3f{bottom:318.080000pt;}
.y10a{bottom:321.280000pt;}
.y5d{bottom:324.800000pt;}
.y19{bottom:325.760000pt;}
.yaa{bottom:331.200000pt;}
.ydc{bottom:331.413333pt;}
.y13c{bottom:332.480000pt;}
.yc6{bottom:333.760000pt;}
.y122{bottom:334.400000pt;}
.y19f{bottom:334.720000pt;}
.y99{bottom:335.040000pt;}
.y75{bottom:337.920000pt;}
.y1ae{bottom:339.520000pt;}
.y16d{bottom:340.000000pt;}
.ye7{bottom:344.533333pt;}
.y3e{bottom:344.640000pt;}
.yf8{bottom:346.666667pt;}
.y109{bottom:347.840000pt;}
.ya9{bottom:357.760000pt;}
.y13b{bottom:359.040000pt;}
.y121{bottom:360.960000pt;}
.y19e{bottom:361.280000pt;}
.y18c{bottom:362.240000pt;}
.y1ad{bottom:362.560000pt;}
.ydb{bottom:363.413333pt;}
.y5c{bottom:364.160000pt;}
.y74{bottom:364.480000pt;}
.y18{bottom:365.120000pt;}
.yc5{bottom:370.240000pt;}
.y3d{bottom:370.880000pt;}
.ye6{bottom:371.093333pt;}
.y16b{bottom:372.000000pt;}
.y98{bottom:383.680000pt;}
.ya8{bottom:384.320000pt;}
.y13a{bottom:385.600000pt;}
.y18b{bottom:386.560000pt;}
.y19d{bottom:387.840000pt;}
.y5b{bottom:391.040000pt;}
.y17{bottom:392.000000pt;}
.y108{bottom:394.240000pt;}
.yda{bottom:395.093333pt;}
.yc4{bottom:396.800000pt;}
.y3c{bottom:397.440000pt;}
.ye5{bottom:397.653333pt;}
.yf5{bottom:401.333333pt;}
.y169{bottom:402.666667pt;}
.y120{bottom:404.160000pt;}
.y97{bottom:410.560000pt;}
.ya7{bottom:410.880000pt;}
.y139{bottom:412.160000pt;}
.y5a{bottom:417.600000pt;}
.y16{bottom:418.560000pt;}
.y107{bottom:420.800000pt;}
.y1ac{bottom:422.080000pt;}
.yc3{bottom:423.360000pt;}
.y3b{bottom:424.000000pt;}
.yd9{bottom:424.213333pt;}
.y14e{bottom:424.640000pt;}
.y19c{bottom:427.200000pt;}
.y167{bottom:433.333333pt;}
.y18a{bottom:435.200000pt;}
.ya6{bottom:437.440000pt;}
.y138{bottom:438.720000pt;}
.y11f{bottom:443.520000pt;}
.y59{bottom:444.160000pt;}
.y15{bottom:445.120000pt;}
.y106{bottom:447.360000pt;}
.yc2{bottom:449.920000pt;}
.y96{bottom:450.240000pt;}
.y3a{bottom:450.560000pt;}
.y14d{bottom:451.200000pt;}
.y19b{bottom:454.080000pt;}
.y189{bottom:455.040000pt;}
.yf2{bottom:457.333333pt;}
.y163{bottom:464.000000pt;}
.y137{bottom:465.280000pt;}
.y11e{bottom:470.400000pt;}
.y58{bottom:470.720000pt;}
.y14{bottom:471.680000pt;}
.y105{bottom:473.920000pt;}
.yc1{bottom:476.480000pt;}
.y39{bottom:477.120000pt;}
.y19a{bottom:480.640000pt;}
.y1ab{bottom:481.600000pt;}
.y148{bottom:490.240000pt;}
.y136{bottom:491.840000pt;}
.y11d{bottom:496.960000pt;}
.y57{bottom:497.280000pt;}
.y13{bottom:498.240000pt;}
.y104{bottom:500.480000pt;}
.y14c{bottom:501.440000pt;}
.yc0{bottom:503.040000pt;}
.y38{bottom:503.680000pt;}
.ya5{bottom:504.000000pt;}
.y1aa{bottom:504.640000pt;}
.y199{bottom:507.200000pt;}
.yef{bottom:513.333333pt;}
.y95{bottom:516.800000pt;}
.y147{bottom:517.120000pt;}
.y11c{bottom:523.520000pt;}
.y56{bottom:523.840000pt;}
.y12{bottom:524.800000pt;}
.y14b{bottom:525.760000pt;}
.y103{bottom:527.040000pt;}
.ybf{bottom:529.600000pt;}
.y37{bottom:530.240000pt;}
.ya4{bottom:530.560000pt;}
.y135{bottom:531.520000pt;}
.y198{bottom:533.760000pt;}
.y162{bottom:534.720000pt;}
.y1a9{bottom:541.120000pt;}
.y94{bottom:543.680000pt;}
.y11b{bottom:550.080000pt;}
.y55{bottom:550.400000pt;}
.y11{bottom:551.360000pt;}
.y102{bottom:553.600000pt;}
.ybe{bottom:556.160000pt;}
.y86{bottom:556.800000pt;}
.ya3{bottom:557.120000pt;}
.y134{bottom:558.400000pt;}
.y197{bottom:560.320000pt;}
.y161{bottom:560.960000pt;}
.y1a8{bottom:564.160000pt;}
.yec{bottom:568.000000pt;}
.y36{bottom:569.920000pt;}
.y146{bottom:570.240000pt;}
.y14a{bottom:574.400000pt;}
.y54{bottom:576.960000pt;}
.y10{bottom:577.920000pt;}
.y101{bottom:580.160000pt;}
.y93{bottom:583.040000pt;}
.y85{bottom:583.360000pt;}
.ya2{bottom:583.680000pt;}
.y133{bottom:584.960000pt;}
.y160{bottom:585.280000pt;}
.ybd{bottom:585.600000pt;}
.y196{bottom:586.880000pt;}
.y1a7{bottom:587.200000pt;}
.y1c4{bottom:588.480000pt;}
.y73{bottom:589.760000pt;}
.y149{bottom:594.240000pt;}
.y11a{bottom:596.160000pt;}
.y35{bottom:596.800000pt;}
.y53{bottom:603.520000pt;}
.yf{bottom:604.480000pt;}
.y100{bottom:606.720000pt;}
.y84{bottom:609.920000pt;}
.ya1{bottom:610.240000pt;}
.y15b{bottom:610.880000pt;}
.y132{bottom:611.520000pt;}
.y195{bottom:613.440000pt;}
.y184{bottom:614.666667pt;}
.ybc{bottom:614.720000pt;}
.y1c3{bottom:615.040000pt;}
.y72{bottom:616.640000pt;}
.y119{bottom:623.040000pt;}
.y34{bottom:623.360000pt;}
.y1a6{bottom:623.680000pt;}
.ye9{bottom:624.000000pt;}
.y52{bottom:630.080000pt;}
.ye{bottom:631.040000pt;}
.yff{bottom:633.280000pt;}
.y83{bottom:636.480000pt;}
.y15a{bottom:637.440000pt;}
.y131{bottom:638.080000pt;}
.y194{bottom:640.000000pt;}
.y1c2{bottom:641.600000pt;}
.y71{bottom:643.200000pt;}
.ybb{bottom:644.160000pt;}
.y1a5{bottom:646.720000pt;}
.y118{bottom:649.600000pt;}
.y33{bottom:649.920000pt;}
.y51{bottom:656.640000pt;}
.yd{bottom:657.600000pt;}
.y82{bottom:663.040000pt;}
.y159{bottom:664.000000pt;}
.y130{bottom:664.640000pt;}
.y193{bottom:666.560000pt;}
.y70{bottom:669.760000pt;}
.yba{bottom:676.160000pt;}
.y32{bottom:676.480000pt;}
.y1c1{bottom:678.080000pt;}
.ye2{bottom:678.666667pt;}
.yfe{bottom:679.680000pt;}
.y50{bottom:683.200000pt;}
.yc{bottom:684.160000pt;}
.y81{bottom:689.600000pt;}
.y158{bottom:690.560000pt;}
.y12f{bottom:691.200000pt;}
.y192{bottom:693.120000pt;}
.y6f{bottom:696.320000pt;}
.y181{bottom:700.000000pt;}
.y1c0{bottom:701.120000pt;}
.y117{bottom:702.720000pt;}
.y31{bottom:703.040000pt;}
.yb9{bottom:705.280000pt;}
.yfd{bottom:706.240000pt;}
.y4f{bottom:709.760000pt;}
.yb{bottom:710.720000pt;}
.y145{bottom:715.840000pt;}
.y80{bottom:716.160000pt;}
.y12e{bottom:717.760000pt;}
.y191{bottom:719.680000pt;}
.y6e{bottom:722.880000pt;}
.y116{bottom:729.280000pt;}
.y30{bottom:729.600000pt;}
.yb8{bottom:731.840000pt;}
.y157{bottom:732.800000pt;}
.yd4{bottom:734.666667pt;}
.ya{bottom:737.280000pt;}
.y1bf{bottom:737.600000pt;}
.y7f{bottom:742.720000pt;}
.y12d{bottom:744.320000pt;}
.y190{bottom:746.240000pt;}
.y4e{bottom:749.440000pt;}
.y23{bottom:754.666667pt;}
.y2f{bottom:756.160000pt;}
.yb7{bottom:758.400000pt;}
.y156{bottom:759.360000pt;}
.y17f{bottom:760.000000pt;}
.y1be{bottom:760.640000pt;}
.y6d{bottom:762.560000pt;}
.y9{bottom:763.840000pt;}
.y7e{bottom:769.280000pt;}
.y115{bottom:775.680000pt;}
.y4d{bottom:776.320000pt;}
.y12c{bottom:780.480000pt;}
.y92{bottom:782.400000pt;}
.yb6{bottom:784.960000pt;}
.y18f{bottom:785.600000pt;}
.y155{bottom:785.920000pt;}
.y6c{bottom:789.440000pt;}
.y8{bottom:792.000000pt;}
.y2e{bottom:795.520000pt;}
.y7d{bottom:795.840000pt;}
.y1bd{bottom:797.120000pt;}
.y114{bottom:802.560000pt;}
.y4c{bottom:802.880000pt;}
.y91{bottom:809.280000pt;}
.yb5{bottom:811.520000pt;}
.y154{bottom:812.480000pt;}
.y6b{bottom:816.000000pt;}
.y12b{bottom:816.960000pt;}
.y17c{bottom:818.666667pt;}
.y1bc{bottom:820.160000pt;}
.y2d{bottom:822.400000pt;}
.y113{bottom:829.120000pt;}
.y4b{bottom:829.440000pt;}
.y7{bottom:831.360000pt;}
.y90{bottom:835.840000pt;}
.y153{bottom:839.040000pt;}
.yb4{bottom:840.960000pt;}
.y6a{bottom:842.560000pt;}
.y1bb{bottom:843.200000pt;}
.y2c{bottom:848.960000pt;}
.y4a{bottom:855.680000pt;}
.y8f{bottom:862.400000pt;}
.y152{bottom:865.600000pt;}
.y69{bottom:869.120000pt;}
.yb3{bottom:870.080000pt;}
.y6{bottom:872.640000pt;}
.ycf{bottom:875.200000pt;}
.y2b{bottom:875.520000pt;}
.y1ba{bottom:879.680000pt;}
.y112{bottom:881.920000pt;}
.y49{bottom:882.240000pt;}
.y8e{bottom:888.640000pt;}
.y151{bottom:892.160000pt;}
.yb2{bottom:896.640000pt;}
.y2a{bottom:902.080000pt;}
.y1b9{bottom:902.720000pt;}
.y17b{bottom:904.000000pt;}
.y68{bottom:905.600000pt;}
.y48{bottom:908.800000pt;}
.y8d{bottom:915.200000pt;}
.y150{bottom:918.720000pt;}
.y5{bottom:919.680000pt;}
.y1b8{bottom:925.760000pt;}
.yb1{bottom:926.080000pt;}
.y111{bottom:928.320000pt;}
.y29{bottom:928.640000pt;}
.y47{bottom:935.360000pt;}
.y7c{bottom:941.440000pt;}
.y67{bottom:941.760000pt;}
.y14f{bottom:945.280000pt;}
.y8c{bottom:954.880000pt;}
.y28{bottom:955.200000pt;}
.y4{bottom:959.680000pt;}
.y1b7{bottom:962.240000pt;}
.y179{bottom:969.333333pt;}
.y46{bottom:971.840000pt;}
.y66{bottom:981.440000pt;}
.y27{bottom:981.760000pt;}
.y1b6{bottom:985.280000pt;}
.y3{bottom:999.360000pt;}
.y26{bottom:1008.320000pt;}
.y25{bottom:1056.320000pt;}
.y1{bottom:1063.040000pt;}
.h15{height:29.333333pt;}
.h16{height:30.666667pt;}
.h2{height:32.418750pt;}
.h8{height:39.243750pt;}
.h17{height:40.000000pt;}
.ha{height:40.740000pt;}
.h13{height:44.102500pt;}
.hd{height:44.620000pt;}
.h9{height:45.860000pt;}
.h7{height:48.500000pt;}
.h10{height:53.125000pt;}
.h12{height:53.333333pt;}
.h11{height:54.666667pt;}
.h6{height:55.607500pt;}
.h3{height:56.625000pt;}
.hb{height:58.666667pt;}
.h14{height:60.000000pt;}
.h4{height:72.750000pt;}
.h5{height:76.350000pt;}
.he{height:80.000000pt;}
.h18{height:81.333333pt;}
.hc{height:174.125000pt;}
.hf{height:442.666667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:37.333333pt;}
.w8{width:57.333333pt;}
.w7{width:64.000000pt;}
.wd{width:66.666667pt;}
.w5{width:76.000000pt;}
.w4{width:81.333333pt;}
.w6{width:85.333333pt;}
.w9{width:86.666667pt;}
.we{width:105.333333pt;}
.w3{width:106.666667pt;}
.w10{width:112.000000pt;}
.wa{width:113.333333pt;}
.wb{width:122.666667pt;}
.wf{width:136.000000pt;}
.wc{width:141.333333pt;}
.w11{width:162.666667pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x38{left:-1.866453pt;}
.x0{left:0.000000pt;}
.x19{left:0.906603pt;}
.x6{left:2.666667pt;}
.x18{left:7.093429pt;}
.x5{left:93.333333pt;}
.x1{left:96.000000pt;}
.x2c{left:96.922848pt;}
.x26{left:98.931648pt;}
.x3a{left:101.273440pt;}
.x17{left:110.666667pt;}
.x2b{left:116.960608pt;}
.x2d{left:118.554048pt;}
.xe{left:120.000000pt;}
.x27{left:121.400704pt;}
.x3b{left:122.489248pt;}
.x3{left:129.426112pt;}
.x28{left:137.324224pt;}
.xf{left:144.000000pt;}
.x34{left:148.000000pt;}
.x10{left:168.000000pt;}
.x11{left:192.000000pt;}
.x2e{left:195.428704pt;}
.x9{left:202.041344pt;}
.xa{left:217.148448pt;}
.x20{left:230.032896pt;}
.x30{left:232.000000pt;}
.xb{left:235.708672pt;}
.x14{left:236.668288pt;}
.x35{left:252.000000pt;}
.x21{left:264.706688pt;}
.x7{left:272.706688pt;}
.x24{left:279.349312pt;}
.xc{left:282.767264pt;}
.x2f{left:286.207360pt;}
.x4{left:288.000000pt;}
.x22{left:291.814144pt;}
.x1a{left:298.666667pt;}
.x29{left:306.700832pt;}
.x12{left:311.294592pt;}
.x23{left:323.432000pt;}
.x13{left:334.548480pt;}
.x1f{left:336.267200pt;}
.xd{left:339.157760pt;}
.x15{left:343.189440pt;}
.x2{left:344.248000pt;}
.x3c{left:346.066560pt;}
.x8{left:348.522240pt;}
.x3d{left:352.066560pt;}
.x31{left:354.666667pt;}
.x16{left:359.693120pt;}
.x1b{left:374.666667pt;}
.x36{left:386.666667pt;}
.x1c{left:460.000000pt;}
.x32{left:496.000000pt;}
.x37{left:497.333333pt;}
.x1d{left:524.000000pt;}
.x33{left:562.666667pt;}
.x1e{left:581.333333pt;}
.x2a{left:656.966400pt;}
.x39{left:668.160000pt;}
.x25{left:684.486720pt;}
}




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