
    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_d737320d2db7e0745b9f3100.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_a9c7916dc7ed8240a6183423.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_cef787b210f6c4e1d48a2dfd.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f44f435bd268ec28efb58736.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_467a1ad78b119ccabcab1728.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.860840;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_cadb5378a32f898cd9fc2314.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_bfa4147edd2e868de01e83ae.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.687500;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_64f2a298daf8557caa408a34.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8ec371da246c4952095bc0ea.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.687500;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_a61271068a9e60b2f1bac8f9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ce31aad288938db28f32281d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.856934;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_6793e72dbe3f74a8e00b4fd5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e17b4f383e6ff11a3b21ddad.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_cd675d96ec787a7115f347c4.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_759b9d2390a408843ca0bd0e.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_9e92e1516c1bb176c01fc0a5.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.018000;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_566938d8d70d990059410f1e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910645;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_89ee728ac1c0ec772e5cae31.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_cd675d96ec787a7115f347c4.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_e1f5942a454f3450a4d34679.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.856934;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_ee5ad7bb979ab0a4ef53bc33.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_0d197c3e6474652331eef8dc.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_31f40ef9339c5187df1b8d5e.woff2')format("woff");}.ff17{font-family:ff17;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);}
.v2{vertical-align:-24.480000px;}
.v3{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls30{letter-spacing:-6.717265px;}
.ls2e{letter-spacing:-5.167194px;}
.ls2f{letter-spacing:-4.345376px;}
.ls2c{letter-spacing:-4.007320px;}
.ls2d{letter-spacing:-0.949076px;}
.ls12{letter-spacing:-0.399168px;}
.ls15{letter-spacing:-0.302400px;}
.ls1b{letter-spacing:-0.291456px;}
.ls10{letter-spacing:-0.241920px;}
.ls1d{letter-spacing:-0.240768px;}
.ls44{letter-spacing:-0.238464px;}
.ls13{letter-spacing:-0.223776px;}
.ls49{letter-spacing:-0.205344px;}
.ls3b{letter-spacing:-0.198720px;}
.ls70{letter-spacing:-0.185472px;}
.ls5b{letter-spacing:-0.178848px;}
.ls19{letter-spacing:-0.177408px;}
.ls14{letter-spacing:-0.175392px;}
.ls18{letter-spacing:-0.171072px;}
.ls52{letter-spacing:-0.165600px;}
.ls3a{letter-spacing:-0.158976px;}
.ls4c{letter-spacing:-0.152352px;}
.ls16{letter-spacing:-0.145728px;}
.ls1e{letter-spacing:-0.139104px;}
.ls1c{letter-spacing:-0.133056px;}
.ls4d{letter-spacing:-0.132480px;}
.ls24{letter-spacing:-0.125856px;}
.ls11{letter-spacing:-0.120960px;}
.ls17{letter-spacing:-0.120384px;}
.ls23{letter-spacing:-0.119232px;}
.ls4b{letter-spacing:-0.112608px;}
.lsd{letter-spacing:-0.112464px;}
.ls1a{letter-spacing:-0.107712px;}
.ls51{letter-spacing:-0.105984px;}
.ls4f{letter-spacing:-0.099360px;}
.lsc{letter-spacing:-0.092016px;}
.ls22{letter-spacing:-0.086112px;}
.ls21{letter-spacing:-0.079488px;}
.ls4e{letter-spacing:-0.066240px;}
.ls3c{letter-spacing:-0.059616px;}
.ls50{letter-spacing:-0.019872px;}
.lse{letter-spacing:-0.014400px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.014400px;}
.ls5{letter-spacing:0.060048px;}
.ls5a{letter-spacing:0.083520px;}
.ls34{letter-spacing:0.084960px;}
.ls20{letter-spacing:0.091872px;}
.ls76{letter-spacing:0.114768px;}
.ls28{letter-spacing:0.118800px;}
.ls3{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.119952px;}
.ls27{letter-spacing:0.123552px;}
.ls60{letter-spacing:0.126720px;}
.lsa{letter-spacing:0.159840px;}
.ls9{letter-spacing:0.160128px;}
.ls8{letter-spacing:0.160272px;}
.ls25{letter-spacing:0.161568px;}
.ls7b{letter-spacing:0.183744px;}
.ls43{letter-spacing:0.200448px;}
.ls77{letter-spacing:0.208800px;}
.ls59{letter-spacing:0.217152px;}
.ls1f{letter-spacing:0.225504px;}
.ls53{letter-spacing:0.225936px;}
.lsb{letter-spacing:0.237600px;}
.ls2{letter-spacing:0.240048px;}
.ls4{letter-spacing:0.240480px;}
.ls3d{letter-spacing:0.242208px;}
.ls7{letter-spacing:0.242352px;}
.ls40{letter-spacing:0.250560px;}
.ls7c{letter-spacing:0.267264px;}
.ls4a{letter-spacing:0.275616px;}
.ls35{letter-spacing:0.276480px;}
.ls26{letter-spacing:0.285120px;}
.ls5f{letter-spacing:0.288000px;}
.ls2a{letter-spacing:0.318384px;}
.ls45{letter-spacing:0.334080px;}
.ls29{letter-spacing:0.356400px;}
.ls2b{letter-spacing:0.446688px;}
.ls31{letter-spacing:0.496800px;}
.ls42{letter-spacing:0.612432px;}
.ls41{letter-spacing:0.893664px;}
.ls75{letter-spacing:1.939536px;}
.ls56{letter-spacing:1.942560px;}
.ls5d{letter-spacing:1.959984px;}
.ls66{letter-spacing:2.216304px;}
.ls72{letter-spacing:2.289600px;}
.ls7a{letter-spacing:2.543040px;}
.ls54{letter-spacing:2.625120px;}
.ls7f{letter-spacing:2.641248px;}
.ls95{letter-spacing:2.888640px;}
.ls96{letter-spacing:2.890080px;}
.ls47{letter-spacing:3.356064px;}
.ls74{letter-spacing:3.686400px;}
.ls8b{letter-spacing:3.703248px;}
.ls38{letter-spacing:3.767040px;}
.ls58{letter-spacing:3.951360px;}
.ls55{letter-spacing:3.981600px;}
.ls89{letter-spacing:3.983040px;}
.ls6b{letter-spacing:4.200480px;}
.ls6c{letter-spacing:4.201920px;}
.ls5c{letter-spacing:4.374720px;}
.ls6f{letter-spacing:4.574880px;}
.ls32{letter-spacing:5.594400px;}
.ls5e{letter-spacing:5.989968px;}
.ls71{letter-spacing:6.265440px;}
.ls39{letter-spacing:6.291360px;}
.ls36{letter-spacing:6.876000px;}
.ls6a{letter-spacing:7.026768px;}
.ls8e{letter-spacing:7.351200px;}
.ls68{letter-spacing:7.711200px;}
.ls67{letter-spacing:7.712640px;}
.ls94{letter-spacing:7.869600px;}
.ls6e{letter-spacing:8.760960px;}
.ls73{letter-spacing:9.580320px;}
.ls57{letter-spacing:9.640368px;}
.ls65{letter-spacing:9.678240px;}
.ls46{letter-spacing:9.729504px;}
.ls8d{letter-spacing:9.763200px;}
.ls8c{letter-spacing:9.763344px;}
.ls83{letter-spacing:9.901440px;}
.ls84{letter-spacing:9.902880px;}
.ls64{letter-spacing:10.284480px;}
.ls63{letter-spacing:10.284768px;}
.ls62{letter-spacing:10.284912px;}
.ls69{letter-spacing:10.578240px;}
.ls80{letter-spacing:12.375072px;}
.ls3f{letter-spacing:15.585984px;}
.ls78{letter-spacing:15.709104px;}
.ls33{letter-spacing:16.043040px;}
.ls48{letter-spacing:16.237728px;}
.ls6d{letter-spacing:17.179200px;}
.ls6{letter-spacing:19.771632px;}
.ls37{letter-spacing:20.488896px;}
.ls93{letter-spacing:22.887360px;}
.ls8a{letter-spacing:24.192000px;}
.ls82{letter-spacing:27.384480px;}
.ls91{letter-spacing:28.765440px;}
.ls92{letter-spacing:28.766880px;}
.ls79{letter-spacing:29.316960px;}
.ls88{letter-spacing:29.486880px;}
.ls7d{letter-spacing:32.428512px;}
.ls8f{letter-spacing:41.843520px;}
.ls90{letter-spacing:48.553920px;}
.ls85{letter-spacing:55.866240px;}
.ls3e{letter-spacing:62.761824px;}
.ls87{letter-spacing:64.830240px;}
.ls7e{letter-spacing:65.450880px;}
.ls61{letter-spacing:82.028160px;}
.ls81{letter-spacing:92.004480px;}
.ls86{letter-spacing:109.589760px;}
.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;}
}
.ws32{word-spacing:-19.209600px;}
.ws1f{word-spacing:-19.151136px;}
.ws34{word-spacing:-19.142784px;}
.ws1d{word-spacing:-19.126080px;}
.ws1a{word-spacing:-19.117728px;}
.wsc{word-spacing:-19.101024px;}
.ws2c{word-spacing:-19.092672px;}
.ws33{word-spacing:-19.059264px;}
.ws0{word-spacing:-18.984000px;}
.wsd{word-spacing:-18.967392px;}
.ws2d{word-spacing:-18.959040px;}
.ws4{word-spacing:-18.014400px;}
.ws3{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.985600px;}
.wse{word-spacing:-16.560000px;}
.ws35{word-spacing:-16.500384px;}
.ws18{word-spacing:-16.480512px;}
.ws19{word-spacing:-16.473888px;}
.ws1b{word-spacing:-16.440768px;}
.ws1e{word-spacing:-16.434144px;}
.ws1c{word-spacing:-16.401024px;}
.ws31{word-spacing:-16.361280px;}
.ws36{word-spacing:-16.354656px;}
.wsb{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.120000px;}
.ws28{word-spacing:-14.970240px;}
.ws27{word-spacing:-14.950368px;}
.ws7{word-spacing:-14.944608px;}
.ws24{word-spacing:-14.910624px;}
.ws25{word-spacing:-14.904000px;}
.ws5{word-spacing:-14.896224px;}
.ws20{word-spacing:-14.890752px;}
.ws2a{word-spacing:-14.884128px;}
.ws8{word-spacing:-14.878080px;}
.ws2e{word-spacing:-14.870880px;}
.ws29{word-spacing:-14.864256px;}
.ws26{word-spacing:-14.857632px;}
.ws21{word-spacing:-14.837760px;}
.wsa{word-spacing:-14.824512px;}
.ws22{word-spacing:-14.817888px;}
.ws9{word-spacing:-14.817600px;}
.ws2f{word-spacing:-14.811264px;}
.ws2b{word-spacing:-14.804640px;}
.ws30{word-spacing:-14.784768px;}
.ws23{word-spacing:-14.764896px;}
.ws15{word-spacing:-14.115628px;}
.ws13{word-spacing:-12.122352px;}
.ws12{word-spacing:-12.117600px;}
.ws11{word-spacing:-12.041568px;}
.wsf{word-spacing:-12.003552px;}
.ws10{word-spacing:-11.998800px;}
.ws14{word-spacing:-9.906987px;}
.ws16{word-spacing:-9.897511px;}
.ws17{word-spacing:-3.177961px;}
.ws1{word-spacing:0.000000px;}
._14{margin-left:-9.084017px;}
._2{margin-left:-7.353600px;}
._13{margin-left:-6.071076px;}
._3{margin-left:-4.284000px;}
._6{margin-left:-3.102720px;}
._1{margin-left:-1.996800px;}
._5{width:1.064016px;}
._15{width:2.111328px;}
._7{width:3.231360px;}
._d{width:4.348800px;}
._0{width:5.587200px;}
._a{width:7.040880px;}
._b{width:8.046720px;}
._c{width:9.052560px;}
._4{width:10.428480px;}
._12{width:11.448000px;}
._9{width:12.685104px;}
._e{width:13.750128px;}
._16{width:15.064272px;}
._8{width:16.727040px;}
._f{width:18.480960px;}
._17{width:20.269440px;}
._10{width:22.057920px;}
._11{width:23.316480px;}
._18{width:24.376320px;}
._1a{width:26.893440px;}
._22{width:28.946880px;}
._19{width:30.006720px;}
._21{width:32.258880px;}
._20{width:33.583680px;}
._2b{width:41.731200px;}
._1e{width:45.705600px;}
._2c{width:48.778848px;}
._27{width:56.039040px;}
._2a{width:64.197792px;}
._23{width:65.433888px;}
._24{width:66.449952px;}
._1c{width:71.605440px;}
._1d{width:80.945280px;}
._1b{width:82.203840px;}
._25{width:91.609920px;}
._26{width:92.653632px;}
._1f{width:109.428480px;}
._29{width:127.366272px;}
._28{width:128.795184px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,128);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fse{font-size:9.265193px;}
.fsc{font-size:13.914307px;}
.fsd{font-size:15.064705px;}
.fsb{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs6{font-size:47.520000px;}
.fs7{font-size:60.480000px;}
.fs9{font-size:63.360000px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fsa{font-size:83.520000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs3{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.y53{bottom:0.300000px;}
.y59{bottom:0.854544px;}
.y4f{bottom:1.920000px;}
.y51{bottom:2.280000px;}
.y54{bottom:2.820000px;}
.y5b{bottom:3.388606px;}
.yb9{bottom:4.500000px;}
.yc6{bottom:4.560000px;}
.y134{bottom:4.620000px;}
.ybc{bottom:4.680000px;}
.yda{bottom:4.740000px;}
.ye2{bottom:4.800000px;}
.y122{bottom:4.860000px;}
.y58{bottom:4.879487px;}
.yd8{bottom:4.920000px;}
.yb5{bottom:4.980000px;}
.yc2{bottom:5.040000px;}
.y130{bottom:5.100000px;}
.ye9{bottom:5.160000px;}
.ycb{bottom:5.280000px;}
.y11f{bottom:5.340000px;}
.yb1{bottom:5.460000px;}
.y127{bottom:5.520000px;}
.ydc{bottom:5.580000px;}
.ye4{bottom:5.640000px;}
.yc0{bottom:5.700000px;}
.ydf{bottom:5.760000px;}
.ye7{bottom:5.820000px;}
.y12c{bottom:5.880000px;}
.yae{bottom:5.940000px;}
.y5a{bottom:7.532646px;}
.yc{bottom:8.040000px;}
.y57{bottom:10.140601px;}
.y50{bottom:12.720000px;}
.yb8{bottom:24.660000px;}
.yc5{bottom:24.720000px;}
.ybb{bottom:24.840000px;}
.yb4{bottom:25.140000px;}
.yb0{bottom:25.620000px;}
.yc9{bottom:25.740000px;}
.ybf{bottom:25.860000px;}
.yad{bottom:26.100000px;}
.yb7{bottom:44.820000px;}
.yc4{bottom:44.880000px;}
.yb3{bottom:45.300000px;}
.yc8{bottom:45.900000px;}
.ybe{bottom:46.020000px;}
.y1b{bottom:47.445000px;}
.y1a{bottom:69.510000px;}
.y19{bottom:91.590000px;}
.y14{bottom:99.795000px;}
.y55{bottom:110.640000px;}
.y18{bottom:113.670000px;}
.y187{bottom:119.640000px;}
.y52{bottom:121.500000px;}
.y56{bottom:122.548875px;}
.y8c{bottom:123.240000px;}
.y121{bottom:124.500000px;}
.y159{bottom:126.120000px;}
.y10{bottom:133.935000px;}
.y19b{bottom:134.040000px;}
.y4e{bottom:135.000000px;}
.y17{bottom:135.750000px;}
.y186{bottom:138.720000px;}
.y101{bottom:139.800000px;}
.yca{bottom:141.000000px;}
.y8b{bottom:142.320000px;}
.ya9{bottom:143.760000px;}
.y120{bottom:144.000000px;}
.y158{bottom:145.200000px;}
.y19a{bottom:153.120000px;}
.y15{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y185{bottom:157.800000px;}
.y16{bottom:157.830000px;}
.y100{bottom:158.520000px;}
.y4d{bottom:158.880000px;}
.yc7{bottom:160.500000px;}
.y8a{bottom:161.400000px;}
.y157{bottom:164.280000px;}
.y11e{bottom:166.500000px;}
.y199{bottom:171.840000px;}
.y4c{bottom:172.560000px;}
.y184{bottom:176.520000px;}
.yff{bottom:177.600000px;}
.y89{bottom:180.120000px;}
.y156{bottom:183.360000px;}
.y4b{bottom:186.600000px;}
.ya8{bottom:188.400000px;}
.y198{bottom:190.920000px;}
.y11d{bottom:195.240000px;}
.y183{bottom:195.600000px;}
.yfe{bottom:196.680000px;}
.y88{bottom:199.200000px;}
.y4a{bottom:201.360000px;}
.y155{bottom:202.080000px;}
.ya7{bottom:207.480000px;}
.y197{bottom:210.000000px;}
.y182{bottom:214.680000px;}
.yfd{bottom:215.400000px;}
.y87{bottom:218.280000px;}
.y154{bottom:221.160000px;}
.yc3{bottom:222.000000px;}
.ya6{bottom:226.560000px;}
.y196{bottom:229.080000px;}
.y181{bottom:233.760000px;}
.yfc{bottom:234.480000px;}
.y11c{bottom:234.840000px;}
.y86{bottom:237.000000px;}
.y153{bottom:240.240000px;}
.ya5{bottom:245.280000px;}
.y195{bottom:247.800000px;}
.y49{bottom:251.760000px;}
.y180{bottom:252.480000px;}
.yfb{bottom:253.560000px;}
.y11b{bottom:253.920000px;}
.y85{bottom:256.080000px;}
.y152{bottom:258.960000px;}
.ya4{bottom:264.360000px;}
.y194{bottom:266.880000px;}
.y48{bottom:270.840000px;}
.y17f{bottom:271.560000px;}
.yfa{bottom:272.280000px;}
.y11a{bottom:272.640000px;}
.y84{bottom:275.160000px;}
.y151{bottom:278.040000px;}
.yc1{bottom:282.000000px;}
.ya3{bottom:283.440000px;}
.y193{bottom:285.960000px;}
.y47{bottom:289.920000px;}
.y17e{bottom:290.640000px;}
.yf9{bottom:291.360000px;}
.y119{bottom:291.720000px;}
.y83{bottom:294.240000px;}
.y150{bottom:297.120000px;}
.ybd{bottom:301.500000px;}
.ya2{bottom:302.520000px;}
.y192{bottom:304.680000px;}
.y46{bottom:309.000000px;}
.y17d{bottom:309.360000px;}
.yf8{bottom:310.440000px;}
.y82{bottom:312.960000px;}
.y14f{bottom:315.840000px;}
.ya1{bottom:321.240000px;}
.y191{bottom:323.760000px;}
.y45{bottom:327.720000px;}
.y17c{bottom:328.440000px;}
.yf7{bottom:329.520000px;}
.y81{bottom:332.040000px;}
.y118{bottom:333.840000px;}
.y14e{bottom:334.920000px;}
.ya0{bottom:340.320000px;}
.y190{bottom:342.840000px;}
.ya{bottom:344.680500px;}
.y44{bottom:346.800000px;}
.y17b{bottom:347.520000px;}
.yf6{bottom:348.240000px;}
.y80{bottom:351.120000px;}
.y14d{bottom:354.000000px;}
.y9f{bottom:359.400000px;}
.y18f{bottom:361.560000px;}
.yba{bottom:363.000000px;}
.y43{bottom:365.880000px;}
.y17a{bottom:366.600000px;}
.yf5{bottom:367.320000px;}
.y7f{bottom:369.840000px;}
.y14c{bottom:373.080000px;}
.y9e{bottom:378.120000px;}
.y117{bottom:378.480000px;}
.y18e{bottom:380.640000px;}
.y42{bottom:384.600000px;}
.y179{bottom:385.320000px;}
.yf4{bottom:386.400000px;}
.yd{bottom:386.490000px;}
.y7e{bottom:388.920000px;}
.y14b{bottom:391.800000px;}
.y9{bottom:395.689500px;}
.y9d{bottom:397.200000px;}
.y18d{bottom:399.720000px;}
.yb6{bottom:403.500000px;}
.y41{bottom:403.680000px;}
.y178{bottom:404.400000px;}
.yf3{bottom:405.120000px;}
.y7d{bottom:408.000000px;}
.y14a{bottom:410.880000px;}
.y9c{bottom:416.280000px;}
.y18c{bottom:418.800000px;}
.y40{bottom:422.760000px;}
.y177{bottom:423.480000px;}
.yf2{bottom:424.200000px;}
.y7c{bottom:426.720000px;}
.y149{bottom:429.960000px;}
.yb{bottom:434.850000px;}
.y9b{bottom:435.000000px;}
.y116{bottom:435.360000px;}
.y18b{bottom:437.520000px;}
.y3f{bottom:441.480000px;}
.y176{bottom:442.200000px;}
.yf1{bottom:443.280000px;}
.y7b{bottom:445.800000px;}
.y8{bottom:446.698500px;}
.y148{bottom:448.680000px;}
.y9a{bottom:454.080000px;}
.y115{bottom:455.520000px;}
.y18a{bottom:456.600000px;}
.y3e{bottom:460.560000px;}
.y175{bottom:461.280000px;}
.yf0{bottom:462.000000px;}
.yb2{bottom:463.500000px;}
.y7a{bottom:464.880000px;}
.y147{bottom:467.760000px;}
.y114{bottom:474.240000px;}
.y189{bottom:475.680000px;}
.y174{bottom:480.360000px;}
.yef{bottom:481.080000px;}
.y79{bottom:483.960000px;}
.y146{bottom:486.840000px;}
.y11{bottom:488.055000px;}
.y113{bottom:494.400000px;}
.y99{bottom:496.200000px;}
.y7{bottom:497.707500px;}
.y173{bottom:499.080000px;}
.yee{bottom:500.160000px;}
.y3d{bottom:502.680000px;}
.y145{bottom:505.560000px;}
.y112{bottom:513.480000px;}
.y172{bottom:518.160000px;}
.yed{bottom:519.240000px;}
.y78{bottom:521.760000px;}
.yaf{bottom:523.500000px;}
.y144{bottom:524.640000px;}
.y111{bottom:532.560000px;}
.y171{bottom:537.240000px;}
.yec{bottom:537.960000px;}
.y12{bottom:538.230000px;}
.y77{bottom:540.840000px;}
.y143{bottom:543.720000px;}
.y3c{bottom:546.960000px;}
.y6{bottom:548.716500px;}
.y110{bottom:551.280000px;}
.y170{bottom:556.320000px;}
.yeb{bottom:557.040000px;}
.y76{bottom:559.560000px;}
.y142{bottom:562.800000px;}
.yac{bottom:565.500000px;}
.y3b{bottom:566.040000px;}
.y10f{bottom:570.360000px;}
.y16f{bottom:575.040000px;}
.yea{bottom:576.120000px;}
.y75{bottom:578.640000px;}
.y141{bottom:581.520000px;}
.y3a{bottom:585.120000px;}
.y10e{bottom:589.440000px;}
.y1c{bottom:589.605000px;}
.ye8{bottom:594.000000px;}
.y16e{bottom:594.120000px;}
.y74{bottom:597.720000px;}
.y5{bottom:599.725500px;}
.y140{bottom:600.600000px;}
.y39{bottom:603.480000px;}
.y10d{bottom:608.520000px;}
.y16d{bottom:613.200000px;}
.ye6{bottom:613.500000px;}
.yab{bottom:615.000000px;}
.y73{bottom:616.800000px;}
.y13f{bottom:619.680000px;}
.y38{bottom:621.480000px;}
.y10c{bottom:627.240000px;}
.ye{bottom:631.920000px;}
.ye5{bottom:634.500000px;}
.yaa{bottom:635.160000px;}
.y72{bottom:635.520000px;}
.y13e{bottom:638.400000px;}
.y37{bottom:639.480000px;}
.y10b{bottom:646.320000px;}
.ye3{bottom:654.000000px;}
.y71{bottom:654.600000px;}
.y13d{bottom:657.480000px;}
.y36{bottom:657.840000px;}
.y10a{bottom:665.400000px;}
.y70{bottom:673.680000px;}
.y16c{bottom:674.040000px;}
.ye1{bottom:675.000000px;}
.y35{bottom:675.840000px;}
.y13c{bottom:676.560000px;}
.y109{bottom:684.120000px;}
.y6f{bottom:692.400000px;}
.y34{bottom:693.840000px;}
.ye0{bottom:694.500000px;}
.y13b{bottom:695.640000px;}
.y108{bottom:703.200000px;}
.y6e{bottom:711.480000px;}
.y33{bottom:711.840000px;}
.yde{bottom:714.000000px;}
.y13a{bottom:714.360000px;}
.y16b{bottom:718.680000px;}
.y107{bottom:722.280000px;}
.y32{bottom:730.200000px;}
.y6d{bottom:730.560000px;}
.y139{bottom:733.440000px;}
.ydd{bottom:735.000000px;}
.y16a{bottom:737.760000px;}
.y106{bottom:741.360000px;}
.y31{bottom:748.200000px;}
.y6c{bottom:749.280000px;}
.y138{bottom:751.500000px;}
.ydb{bottom:754.500000px;}
.y169{bottom:757.920000px;}
.y105{bottom:760.080000px;}
.y30{bottom:766.200000px;}
.y98{bottom:768.360000px;}
.y137{bottom:771.000000px;}
.yd9{bottom:775.500000px;}
.y168{bottom:776.640000px;}
.y4{bottom:778.225500px;}
.y104{bottom:779.160000px;}
.y2f{bottom:784.560000px;}
.y97{bottom:787.440000px;}
.y6b{bottom:791.400000px;}
.y136{bottom:792.000000px;}
.y167{bottom:795.720000px;}
.yd7{bottom:798.000000px;}
.y103{bottom:798.240000px;}
.y2e{bottom:802.560000px;}
.y96{bottom:806.520000px;}
.y135{bottom:811.500000px;}
.y166{bottom:814.800000px;}
.y13{bottom:815.670000px;}
.y102{bottom:816.960000px;}
.y2d{bottom:820.560000px;}
.y95{bottom:825.240000px;}
.yd6{bottom:826.320000px;}
.y133{bottom:832.500000px;}
.y165{bottom:833.520000px;}
.y6a{bottom:836.040000px;}
.y2c{bottom:838.920000px;}
.y94{bottom:844.320000px;}
.yd5{bottom:846.480000px;}
.y132{bottom:852.000000px;}
.y164{bottom:852.600000px;}
.y69{bottom:855.120000px;}
.y2b{bottom:856.920000px;}
.y93{bottom:863.400000px;}
.yd4{bottom:865.920000px;}
.y131{bottom:871.500000px;}
.y163{bottom:871.680000px;}
.y68{bottom:873.840000px;}
.y2a{bottom:874.920000px;}
.y92{bottom:882.120000px;}
.yd3{bottom:884.640000px;}
.y162{bottom:890.760000px;}
.y12f{bottom:892.500000px;}
.y67{bottom:892.920000px;}
.y29{bottom:893.280000px;}
.y91{bottom:901.200000px;}
.yd2{bottom:903.720000px;}
.y3{bottom:905.716500px;}
.y161{bottom:909.480000px;}
.y28{bottom:911.280000px;}
.y66{bottom:912.000000px;}
.y90{bottom:920.280000px;}
.y160{bottom:928.560000px;}
.y27{bottom:930.360000px;}
.y65{bottom:931.080000px;}
.y12e{bottom:933.000000px;}
.y8f{bottom:939.000000px;}
.yd1{bottom:945.840000px;}
.y15f{bottom:947.640000px;}
.y26{bottom:949.800000px;}
.y12d{bottom:952.500000px;}
.y8e{bottom:958.080000px;}
.y2{bottom:964.228500px;}
.y15e{bottom:966.360000px;}
.y25{bottom:968.880000px;}
.y12b{bottom:972.000000px;}
.y188{bottom:981.120000px;}
.y15d{bottom:985.440000px;}
.y64{bottom:987.960000px;}
.y1{bottom:989.716500px;}
.yd0{bottom:990.480000px;}
.y24{bottom:992.640000px;}
.y12a{bottom:993.000000px;}
.y8d{bottom:1000.200000px;}
.y15c{bottom:1004.520000px;}
.y63{bottom:1006.680000px;}
.ycf{bottom:1009.200000px;}
.y23{bottom:1009.920000px;}
.y129{bottom:1012.500000px;}
.y15b{bottom:1023.240000px;}
.y62{bottom:1025.760000px;}
.y22{bottom:1027.200000px;}
.y128{bottom:1033.500000px;}
.y21{bottom:1039.080000px;}
.y15a{bottom:1043.400000px;}
.y61{bottom:1044.840000px;}
.yce{bottom:1051.320000px;}
.y126{bottom:1053.000000px;}
.y20{bottom:1057.080000px;}
.y60{bottom:1063.560000px;}
.y125{bottom:1074.000000px;}
.y1f{bottom:1077.240000px;}
.y5f{bottom:1082.640000px;}
.y124{bottom:1093.500000px;}
.ycd{bottom:1095.960000px;}
.y1e{bottom:1099.920000px;}
.y5e{bottom:1101.720000px;}
.ycc{bottom:1114.500000px;}
.y5d{bottom:1120.800000px;}
.y1d{bottom:1130.880000px;}
.y123{bottom:1134.000000px;}
.y5c{bottom:1139.520000px;}
.h19{height:7.412155px;}
.h17{height:11.131446px;}
.h18{height:12.051764px;}
.h16{height:12.750000px;}
.h15{height:15.000000px;}
.h1e{height:21.000000px;}
.h13{height:22.500000px;}
.h14{height:24.996094px;}
.hd{height:26.274375px;}
.h4{height:33.000000px;}
.h12{height:33.018047px;}
.hc{height:40.310156px;}
.h1f{height:40.500000px;}
.h1b{height:42.000000px;}
.hf{height:43.993125px;}
.he{height:45.022500px;}
.h1a{height:45.281250px;}
.ha{height:46.025156px;}
.h11{height:57.093750px;}
.h3{height:58.406250px;}
.h1c{height:61.500000px;}
.h1d{height:63.000000px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h9{height:69.890625px;}
.hb{height:74.472187px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h10{height:1236.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wd{width:54.392010px;}
.wb{width:64.500000px;}
.w10{width:81.000000px;}
.we{width:141.000000px;}
.w11{width:162.000000px;}
.wf{width:235.500000px;}
.w13{width:253.500000px;}
.w15{width:295.500000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w14{width:384.000000px;}
.w12{width:426.000000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.wc{width:630.000000px;}
.w7{width:651.810000px;}
.wa{width:865.500000px;}
.w9{width:892.500000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.x14{left:6.320635px;}
.x1e{left:7.920036px;}
.x13{left:9.000000px;}
.x16{left:10.001232px;}
.x1c{left:21.866280px;}
.xd{left:27.000000px;}
.x15{left:32.400162px;}
.x1d{left:51.599400px;}
.x11{left:54.885132px;}
.x19{left:84.881520px;}
.xa{left:108.000000px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.xb{left:129.299904px;}
.x23{left:139.950072px;}
.x1f{left:163.206648px;}
.x12{left:171.000000px;}
.x21{left:172.930284px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.xc{left:193.049928px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.xe{left:241.200000px;}
.x17{left:247.500000px;}
.xf{left:276.401736px;}
.x18{left:310.500000px;}
.x10{left:345.299904px;}
.x22{left:490.500000px;}
.x20{left:532.500000px;}
.x1a{left:544.500000px;}
.x1b{left:624.000000px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v3{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls30{letter-spacing:-5.970902pt;}
.ls2e{letter-spacing:-4.593061pt;}
.ls2f{letter-spacing:-3.862556pt;}
.ls2c{letter-spacing:-3.562063pt;}
.ls2d{letter-spacing:-0.843623pt;}
.ls12{letter-spacing:-0.354816pt;}
.ls15{letter-spacing:-0.268800pt;}
.ls1b{letter-spacing:-0.259072pt;}
.ls10{letter-spacing:-0.215040pt;}
.ls1d{letter-spacing:-0.214016pt;}
.ls44{letter-spacing:-0.211968pt;}
.ls13{letter-spacing:-0.198912pt;}
.ls49{letter-spacing:-0.182528pt;}
.ls3b{letter-spacing:-0.176640pt;}
.ls70{letter-spacing:-0.164864pt;}
.ls5b{letter-spacing:-0.158976pt;}
.ls19{letter-spacing:-0.157696pt;}
.ls14{letter-spacing:-0.155904pt;}
.ls18{letter-spacing:-0.152064pt;}
.ls52{letter-spacing:-0.147200pt;}
.ls3a{letter-spacing:-0.141312pt;}
.ls4c{letter-spacing:-0.135424pt;}
.ls16{letter-spacing:-0.129536pt;}
.ls1e{letter-spacing:-0.123648pt;}
.ls1c{letter-spacing:-0.118272pt;}
.ls4d{letter-spacing:-0.117760pt;}
.ls24{letter-spacing:-0.111872pt;}
.ls11{letter-spacing:-0.107520pt;}
.ls17{letter-spacing:-0.107008pt;}
.ls23{letter-spacing:-0.105984pt;}
.ls4b{letter-spacing:-0.100096pt;}
.lsd{letter-spacing:-0.099968pt;}
.ls1a{letter-spacing:-0.095744pt;}
.ls51{letter-spacing:-0.094208pt;}
.ls4f{letter-spacing:-0.088320pt;}
.lsc{letter-spacing:-0.081792pt;}
.ls22{letter-spacing:-0.076544pt;}
.ls21{letter-spacing:-0.070656pt;}
.ls4e{letter-spacing:-0.058880pt;}
.ls3c{letter-spacing:-0.052992pt;}
.ls50{letter-spacing:-0.017664pt;}
.lse{letter-spacing:-0.012800pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.012800pt;}
.ls5{letter-spacing:0.053376pt;}
.ls5a{letter-spacing:0.074240pt;}
.ls34{letter-spacing:0.075520pt;}
.ls20{letter-spacing:0.081664pt;}
.ls76{letter-spacing:0.102016pt;}
.ls28{letter-spacing:0.105600pt;}
.ls3{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.106624pt;}
.ls27{letter-spacing:0.109824pt;}
.ls60{letter-spacing:0.112640pt;}
.lsa{letter-spacing:0.142080pt;}
.ls9{letter-spacing:0.142336pt;}
.ls8{letter-spacing:0.142464pt;}
.ls25{letter-spacing:0.143616pt;}
.ls7b{letter-spacing:0.163328pt;}
.ls43{letter-spacing:0.178176pt;}
.ls77{letter-spacing:0.185600pt;}
.ls59{letter-spacing:0.193024pt;}
.ls1f{letter-spacing:0.200448pt;}
.ls53{letter-spacing:0.200832pt;}
.lsb{letter-spacing:0.211200pt;}
.ls2{letter-spacing:0.213376pt;}
.ls4{letter-spacing:0.213760pt;}
.ls3d{letter-spacing:0.215296pt;}
.ls7{letter-spacing:0.215424pt;}
.ls40{letter-spacing:0.222720pt;}
.ls7c{letter-spacing:0.237568pt;}
.ls4a{letter-spacing:0.244992pt;}
.ls35{letter-spacing:0.245760pt;}
.ls26{letter-spacing:0.253440pt;}
.ls5f{letter-spacing:0.256000pt;}
.ls2a{letter-spacing:0.283008pt;}
.ls45{letter-spacing:0.296960pt;}
.ls29{letter-spacing:0.316800pt;}
.ls2b{letter-spacing:0.397056pt;}
.ls31{letter-spacing:0.441600pt;}
.ls42{letter-spacing:0.544384pt;}
.ls41{letter-spacing:0.794368pt;}
.ls75{letter-spacing:1.724032pt;}
.ls56{letter-spacing:1.726720pt;}
.ls5d{letter-spacing:1.742208pt;}
.ls66{letter-spacing:1.970048pt;}
.ls72{letter-spacing:2.035200pt;}
.ls7a{letter-spacing:2.260480pt;}
.ls54{letter-spacing:2.333440pt;}
.ls7f{letter-spacing:2.347776pt;}
.ls95{letter-spacing:2.567680pt;}
.ls96{letter-spacing:2.568960pt;}
.ls47{letter-spacing:2.983168pt;}
.ls74{letter-spacing:3.276800pt;}
.ls8b{letter-spacing:3.291776pt;}
.ls38{letter-spacing:3.348480pt;}
.ls58{letter-spacing:3.512320pt;}
.ls55{letter-spacing:3.539200pt;}
.ls89{letter-spacing:3.540480pt;}
.ls6b{letter-spacing:3.733760pt;}
.ls6c{letter-spacing:3.735040pt;}
.ls5c{letter-spacing:3.888640pt;}
.ls6f{letter-spacing:4.066560pt;}
.ls32{letter-spacing:4.972800pt;}
.ls5e{letter-spacing:5.324416pt;}
.ls71{letter-spacing:5.569280pt;}
.ls39{letter-spacing:5.592320pt;}
.ls36{letter-spacing:6.112000pt;}
.ls6a{letter-spacing:6.246016pt;}
.ls8e{letter-spacing:6.534400pt;}
.ls68{letter-spacing:6.854400pt;}
.ls67{letter-spacing:6.855680pt;}
.ls94{letter-spacing:6.995200pt;}
.ls6e{letter-spacing:7.787520pt;}
.ls73{letter-spacing:8.515840pt;}
.ls57{letter-spacing:8.569216pt;}
.ls65{letter-spacing:8.602880pt;}
.ls46{letter-spacing:8.648448pt;}
.ls8d{letter-spacing:8.678400pt;}
.ls8c{letter-spacing:8.678528pt;}
.ls83{letter-spacing:8.801280pt;}
.ls84{letter-spacing:8.802560pt;}
.ls64{letter-spacing:9.141760pt;}
.ls63{letter-spacing:9.142016pt;}
.ls62{letter-spacing:9.142144pt;}
.ls69{letter-spacing:9.402880pt;}
.ls80{letter-spacing:11.000064pt;}
.ls3f{letter-spacing:13.854208pt;}
.ls78{letter-spacing:13.963648pt;}
.ls33{letter-spacing:14.260480pt;}
.ls48{letter-spacing:14.433536pt;}
.ls6d{letter-spacing:15.270400pt;}
.ls6{letter-spacing:17.574784pt;}
.ls37{letter-spacing:18.212352pt;}
.ls93{letter-spacing:20.344320pt;}
.ls8a{letter-spacing:21.504000pt;}
.ls82{letter-spacing:24.341760pt;}
.ls91{letter-spacing:25.569280pt;}
.ls92{letter-spacing:25.570560pt;}
.ls79{letter-spacing:26.059520pt;}
.ls88{letter-spacing:26.210560pt;}
.ls7d{letter-spacing:28.825344pt;}
.ls8f{letter-spacing:37.194240pt;}
.ls90{letter-spacing:43.159040pt;}
.ls85{letter-spacing:49.658880pt;}
.ls3e{letter-spacing:55.788288pt;}
.ls87{letter-spacing:57.626880pt;}
.ls7e{letter-spacing:58.178560pt;}
.ls61{letter-spacing:72.913920pt;}
.ls81{letter-spacing:81.781760pt;}
.ls86{letter-spacing:97.413120pt;}
.ws32{word-spacing:-17.075200pt;}
.ws1f{word-spacing:-17.023232pt;}
.ws34{word-spacing:-17.015808pt;}
.ws1d{word-spacing:-17.000960pt;}
.ws1a{word-spacing:-16.993536pt;}
.wsc{word-spacing:-16.978688pt;}
.ws2c{word-spacing:-16.971264pt;}
.ws33{word-spacing:-16.941568pt;}
.ws0{word-spacing:-16.874667pt;}
.wsd{word-spacing:-16.859904pt;}
.ws2d{word-spacing:-16.852480pt;}
.ws4{word-spacing:-16.012800pt;}
.ws3{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.987200pt;}
.wse{word-spacing:-14.720000pt;}
.ws35{word-spacing:-14.667008pt;}
.ws18{word-spacing:-14.649344pt;}
.ws19{word-spacing:-14.643456pt;}
.ws1b{word-spacing:-14.614016pt;}
.ws1e{word-spacing:-14.608128pt;}
.ws1c{word-spacing:-14.578688pt;}
.ws31{word-spacing:-14.543360pt;}
.ws36{word-spacing:-14.537472pt;}
.wsb{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.440000pt;}
.ws28{word-spacing:-13.306880pt;}
.ws27{word-spacing:-13.289216pt;}
.ws7{word-spacing:-13.284096pt;}
.ws24{word-spacing:-13.253888pt;}
.ws25{word-spacing:-13.248000pt;}
.ws5{word-spacing:-13.241088pt;}
.ws20{word-spacing:-13.236224pt;}
.ws2a{word-spacing:-13.230336pt;}
.ws8{word-spacing:-13.224960pt;}
.ws2e{word-spacing:-13.218560pt;}
.ws29{word-spacing:-13.212672pt;}
.ws26{word-spacing:-13.206784pt;}
.ws21{word-spacing:-13.189120pt;}
.wsa{word-spacing:-13.177344pt;}
.ws22{word-spacing:-13.171456pt;}
.ws9{word-spacing:-13.171200pt;}
.ws2f{word-spacing:-13.165568pt;}
.ws2b{word-spacing:-13.159680pt;}
.ws30{word-spacing:-13.142016pt;}
.ws23{word-spacing:-13.124352pt;}
.ws15{word-spacing:-12.547225pt;}
.ws13{word-spacing:-10.775424pt;}
.ws12{word-spacing:-10.771200pt;}
.ws11{word-spacing:-10.703616pt;}
.wsf{word-spacing:-10.669824pt;}
.ws10{word-spacing:-10.665600pt;}
.ws14{word-spacing:-8.806210pt;}
.ws16{word-spacing:-8.797788pt;}
.ws17{word-spacing:-2.824854pt;}
.ws1{word-spacing:0.000000pt;}
._14{margin-left:-8.074682pt;}
._2{margin-left:-6.536533pt;}
._13{margin-left:-5.396512pt;}
._3{margin-left:-3.808000pt;}
._6{margin-left:-2.757973pt;}
._1{margin-left:-1.774933pt;}
._5{width:0.945792pt;}
._15{width:1.876736pt;}
._7{width:2.872320pt;}
._d{width:3.865600pt;}
._0{width:4.966400pt;}
._a{width:6.258560pt;}
._b{width:7.152640pt;}
._c{width:8.046720pt;}
._4{width:9.269760pt;}
._12{width:10.176000pt;}
._9{width:11.275648pt;}
._e{width:12.222336pt;}
._16{width:13.390464pt;}
._8{width:14.868480pt;}
._f{width:16.427520pt;}
._17{width:18.017280pt;}
._10{width:19.607040pt;}
._11{width:20.725760pt;}
._18{width:21.667840pt;}
._1a{width:23.905280pt;}
._22{width:25.730560pt;}
._19{width:26.672640pt;}
._21{width:28.674560pt;}
._20{width:29.852160pt;}
._2b{width:37.094400pt;}
._1e{width:40.627200pt;}
._2c{width:43.358976pt;}
._27{width:49.812480pt;}
._2a{width:57.064704pt;}
._23{width:58.163456pt;}
._24{width:59.066624pt;}
._1c{width:63.649280pt;}
._1d{width:71.951360pt;}
._1b{width:73.070080pt;}
._25{width:81.431040pt;}
._26{width:82.358784pt;}
._1f{width:97.269760pt;}
._29{width:113.214464pt;}
._28{width:114.484608pt;}
.fse{font-size:8.235727pt;}
.fsc{font-size:12.368273pt;}
.fsd{font-size:13.390849pt;}
.fsb{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs6{font-size:42.240000pt;}
.fs7{font-size:53.760000pt;}
.fs9{font-size:56.320000pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fsa{font-size:74.240000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs3{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:0.266667pt;}
.y59{bottom:0.759595pt;}
.y4f{bottom:1.706667pt;}
.y51{bottom:2.026667pt;}
.y54{bottom:2.506667pt;}
.y5b{bottom:3.012095pt;}
.yb9{bottom:4.000000pt;}
.yc6{bottom:4.053333pt;}
.y134{bottom:4.106667pt;}
.ybc{bottom:4.160000pt;}
.yda{bottom:4.213333pt;}
.ye2{bottom:4.266667pt;}
.y122{bottom:4.320000pt;}
.y58{bottom:4.337322pt;}
.yd8{bottom:4.373333pt;}
.yb5{bottom:4.426667pt;}
.yc2{bottom:4.480000pt;}
.y130{bottom:4.533333pt;}
.ye9{bottom:4.586667pt;}
.ycb{bottom:4.693333pt;}
.y11f{bottom:4.746667pt;}
.yb1{bottom:4.853333pt;}
.y127{bottom:4.906667pt;}
.ydc{bottom:4.960000pt;}
.ye4{bottom:5.013333pt;}
.yc0{bottom:5.066667pt;}
.ydf{bottom:5.120000pt;}
.ye7{bottom:5.173333pt;}
.y12c{bottom:5.226667pt;}
.yae{bottom:5.280000pt;}
.y5a{bottom:6.695686pt;}
.yc{bottom:7.146667pt;}
.y57{bottom:9.013867pt;}
.y50{bottom:11.306667pt;}
.yb8{bottom:21.920000pt;}
.yc5{bottom:21.973333pt;}
.ybb{bottom:22.080000pt;}
.yb4{bottom:22.346667pt;}
.yb0{bottom:22.773333pt;}
.yc9{bottom:22.880000pt;}
.ybf{bottom:22.986667pt;}
.yad{bottom:23.200000pt;}
.yb7{bottom:39.840000pt;}
.yc4{bottom:39.893333pt;}
.yb3{bottom:40.266667pt;}
.yc8{bottom:40.800000pt;}
.ybe{bottom:40.906667pt;}
.y1b{bottom:42.173333pt;}
.y1a{bottom:61.786667pt;}
.y19{bottom:81.413333pt;}
.y14{bottom:88.706667pt;}
.y55{bottom:98.346667pt;}
.y18{bottom:101.040000pt;}
.y187{bottom:106.346667pt;}
.y52{bottom:108.000000pt;}
.y56{bottom:108.932333pt;}
.y8c{bottom:109.546667pt;}
.y121{bottom:110.666667pt;}
.y159{bottom:112.106667pt;}
.y10{bottom:119.053333pt;}
.y19b{bottom:119.146667pt;}
.y4e{bottom:120.000000pt;}
.y17{bottom:120.666667pt;}
.y186{bottom:123.306667pt;}
.y101{bottom:124.266667pt;}
.yca{bottom:125.333333pt;}
.y8b{bottom:126.506667pt;}
.ya9{bottom:127.786667pt;}
.y120{bottom:128.000000pt;}
.y158{bottom:129.066667pt;}
.y19a{bottom:136.106667pt;}
.y15{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y185{bottom:140.266667pt;}
.y16{bottom:140.293333pt;}
.y100{bottom:140.906667pt;}
.y4d{bottom:141.226667pt;}
.yc7{bottom:142.666667pt;}
.y8a{bottom:143.466667pt;}
.y157{bottom:146.026667pt;}
.y11e{bottom:148.000000pt;}
.y199{bottom:152.746667pt;}
.y4c{bottom:153.386667pt;}
.y184{bottom:156.906667pt;}
.yff{bottom:157.866667pt;}
.y89{bottom:160.106667pt;}
.y156{bottom:162.986667pt;}
.y4b{bottom:165.866667pt;}
.ya8{bottom:167.466667pt;}
.y198{bottom:169.706667pt;}
.y11d{bottom:173.546667pt;}
.y183{bottom:173.866667pt;}
.yfe{bottom:174.826667pt;}
.y88{bottom:177.066667pt;}
.y4a{bottom:178.986667pt;}
.y155{bottom:179.626667pt;}
.ya7{bottom:184.426667pt;}
.y197{bottom:186.666667pt;}
.y182{bottom:190.826667pt;}
.yfd{bottom:191.466667pt;}
.y87{bottom:194.026667pt;}
.y154{bottom:196.586667pt;}
.yc3{bottom:197.333333pt;}
.ya6{bottom:201.386667pt;}
.y196{bottom:203.626667pt;}
.y181{bottom:207.786667pt;}
.yfc{bottom:208.426667pt;}
.y11c{bottom:208.746667pt;}
.y86{bottom:210.666667pt;}
.y153{bottom:213.546667pt;}
.ya5{bottom:218.026667pt;}
.y195{bottom:220.266667pt;}
.y49{bottom:223.786667pt;}
.y180{bottom:224.426667pt;}
.yfb{bottom:225.386667pt;}
.y11b{bottom:225.706667pt;}
.y85{bottom:227.626667pt;}
.y152{bottom:230.186667pt;}
.ya4{bottom:234.986667pt;}
.y194{bottom:237.226667pt;}
.y48{bottom:240.746667pt;}
.y17f{bottom:241.386667pt;}
.yfa{bottom:242.026667pt;}
.y11a{bottom:242.346667pt;}
.y84{bottom:244.586667pt;}
.y151{bottom:247.146667pt;}
.yc1{bottom:250.666667pt;}
.ya3{bottom:251.946667pt;}
.y193{bottom:254.186667pt;}
.y47{bottom:257.706667pt;}
.y17e{bottom:258.346667pt;}
.yf9{bottom:258.986667pt;}
.y119{bottom:259.306667pt;}
.y83{bottom:261.546667pt;}
.y150{bottom:264.106667pt;}
.ybd{bottom:268.000000pt;}
.ya2{bottom:268.906667pt;}
.y192{bottom:270.826667pt;}
.y46{bottom:274.666667pt;}
.y17d{bottom:274.986667pt;}
.yf8{bottom:275.946667pt;}
.y82{bottom:278.186667pt;}
.y14f{bottom:280.746667pt;}
.ya1{bottom:285.546667pt;}
.y191{bottom:287.786667pt;}
.y45{bottom:291.306667pt;}
.y17c{bottom:291.946667pt;}
.yf7{bottom:292.906667pt;}
.y81{bottom:295.146667pt;}
.y118{bottom:296.746667pt;}
.y14e{bottom:297.706667pt;}
.ya0{bottom:302.506667pt;}
.y190{bottom:304.746667pt;}
.ya{bottom:306.382667pt;}
.y44{bottom:308.266667pt;}
.y17b{bottom:308.906667pt;}
.yf6{bottom:309.546667pt;}
.y80{bottom:312.106667pt;}
.y14d{bottom:314.666667pt;}
.y9f{bottom:319.466667pt;}
.y18f{bottom:321.386667pt;}
.yba{bottom:322.666667pt;}
.y43{bottom:325.226667pt;}
.y17a{bottom:325.866667pt;}
.yf5{bottom:326.506667pt;}
.y7f{bottom:328.746667pt;}
.y14c{bottom:331.626667pt;}
.y9e{bottom:336.106667pt;}
.y117{bottom:336.426667pt;}
.y18e{bottom:338.346667pt;}
.y42{bottom:341.866667pt;}
.y179{bottom:342.506667pt;}
.yf4{bottom:343.466667pt;}
.yd{bottom:343.546667pt;}
.y7e{bottom:345.706667pt;}
.y14b{bottom:348.266667pt;}
.y9{bottom:351.724000pt;}
.y9d{bottom:353.066667pt;}
.y18d{bottom:355.306667pt;}
.yb6{bottom:358.666667pt;}
.y41{bottom:358.826667pt;}
.y178{bottom:359.466667pt;}
.yf3{bottom:360.106667pt;}
.y7d{bottom:362.666667pt;}
.y14a{bottom:365.226667pt;}
.y9c{bottom:370.026667pt;}
.y18c{bottom:372.266667pt;}
.y40{bottom:375.786667pt;}
.y177{bottom:376.426667pt;}
.yf2{bottom:377.066667pt;}
.y7c{bottom:379.306667pt;}
.y149{bottom:382.186667pt;}
.yb{bottom:386.533333pt;}
.y9b{bottom:386.666667pt;}
.y116{bottom:386.986667pt;}
.y18b{bottom:388.906667pt;}
.y3f{bottom:392.426667pt;}
.y176{bottom:393.066667pt;}
.yf1{bottom:394.026667pt;}
.y7b{bottom:396.266667pt;}
.y8{bottom:397.065333pt;}
.y148{bottom:398.826667pt;}
.y9a{bottom:403.626667pt;}
.y115{bottom:404.906667pt;}
.y18a{bottom:405.866667pt;}
.y3e{bottom:409.386667pt;}
.y175{bottom:410.026667pt;}
.yf0{bottom:410.666667pt;}
.yb2{bottom:412.000000pt;}
.y7a{bottom:413.226667pt;}
.y147{bottom:415.786667pt;}
.y114{bottom:421.546667pt;}
.y189{bottom:422.826667pt;}
.y174{bottom:426.986667pt;}
.yef{bottom:427.626667pt;}
.y79{bottom:430.186667pt;}
.y146{bottom:432.746667pt;}
.y11{bottom:433.826667pt;}
.y113{bottom:439.466667pt;}
.y99{bottom:441.066667pt;}
.y7{bottom:442.406667pt;}
.y173{bottom:443.626667pt;}
.yee{bottom:444.586667pt;}
.y3d{bottom:446.826667pt;}
.y145{bottom:449.386667pt;}
.y112{bottom:456.426667pt;}
.y172{bottom:460.586667pt;}
.yed{bottom:461.546667pt;}
.y78{bottom:463.786667pt;}
.yaf{bottom:465.333333pt;}
.y144{bottom:466.346667pt;}
.y111{bottom:473.386667pt;}
.y171{bottom:477.546667pt;}
.yec{bottom:478.186667pt;}
.y12{bottom:478.426667pt;}
.y77{bottom:480.746667pt;}
.y143{bottom:483.306667pt;}
.y3c{bottom:486.186667pt;}
.y6{bottom:487.748000pt;}
.y110{bottom:490.026667pt;}
.y170{bottom:494.506667pt;}
.yeb{bottom:495.146667pt;}
.y76{bottom:497.386667pt;}
.y142{bottom:500.266667pt;}
.yac{bottom:502.666667pt;}
.y3b{bottom:503.146667pt;}
.y10f{bottom:506.986667pt;}
.y16f{bottom:511.146667pt;}
.yea{bottom:512.106667pt;}
.y75{bottom:514.346667pt;}
.y141{bottom:516.906667pt;}
.y3a{bottom:520.106667pt;}
.y10e{bottom:523.946667pt;}
.y1c{bottom:524.093333pt;}
.ye8{bottom:528.000000pt;}
.y16e{bottom:528.106667pt;}
.y74{bottom:531.306667pt;}
.y5{bottom:533.089333pt;}
.y140{bottom:533.866667pt;}
.y39{bottom:536.426667pt;}
.y10d{bottom:540.906667pt;}
.y16d{bottom:545.066667pt;}
.ye6{bottom:545.333333pt;}
.yab{bottom:546.666667pt;}
.y73{bottom:548.266667pt;}
.y13f{bottom:550.826667pt;}
.y38{bottom:552.426667pt;}
.y10c{bottom:557.546667pt;}
.ye{bottom:561.706667pt;}
.ye5{bottom:564.000000pt;}
.yaa{bottom:564.586667pt;}
.y72{bottom:564.906667pt;}
.y13e{bottom:567.466667pt;}
.y37{bottom:568.426667pt;}
.y10b{bottom:574.506667pt;}
.ye3{bottom:581.333333pt;}
.y71{bottom:581.866667pt;}
.y13d{bottom:584.426667pt;}
.y36{bottom:584.746667pt;}
.y10a{bottom:591.466667pt;}
.y70{bottom:598.826667pt;}
.y16c{bottom:599.146667pt;}
.ye1{bottom:600.000000pt;}
.y35{bottom:600.746667pt;}
.y13c{bottom:601.386667pt;}
.y109{bottom:608.106667pt;}
.y6f{bottom:615.466667pt;}
.y34{bottom:616.746667pt;}
.ye0{bottom:617.333333pt;}
.y13b{bottom:618.346667pt;}
.y108{bottom:625.066667pt;}
.y6e{bottom:632.426667pt;}
.y33{bottom:632.746667pt;}
.yde{bottom:634.666667pt;}
.y13a{bottom:634.986667pt;}
.y16b{bottom:638.826667pt;}
.y107{bottom:642.026667pt;}
.y32{bottom:649.066667pt;}
.y6d{bottom:649.386667pt;}
.y139{bottom:651.946667pt;}
.ydd{bottom:653.333333pt;}
.y16a{bottom:655.786667pt;}
.y106{bottom:658.986667pt;}
.y31{bottom:665.066667pt;}
.y6c{bottom:666.026667pt;}
.y138{bottom:668.000000pt;}
.ydb{bottom:670.666667pt;}
.y169{bottom:673.706667pt;}
.y105{bottom:675.626667pt;}
.y30{bottom:681.066667pt;}
.y98{bottom:682.986667pt;}
.y137{bottom:685.333333pt;}
.yd9{bottom:689.333333pt;}
.y168{bottom:690.346667pt;}
.y4{bottom:691.756000pt;}
.y104{bottom:692.586667pt;}
.y2f{bottom:697.386667pt;}
.y97{bottom:699.946667pt;}
.y6b{bottom:703.466667pt;}
.y136{bottom:704.000000pt;}
.y167{bottom:707.306667pt;}
.yd7{bottom:709.333333pt;}
.y103{bottom:709.546667pt;}
.y2e{bottom:713.386667pt;}
.y96{bottom:716.906667pt;}
.y135{bottom:721.333333pt;}
.y166{bottom:724.266667pt;}
.y13{bottom:725.040000pt;}
.y102{bottom:726.186667pt;}
.y2d{bottom:729.386667pt;}
.y95{bottom:733.546667pt;}
.yd6{bottom:734.506667pt;}
.y133{bottom:740.000000pt;}
.y165{bottom:740.906667pt;}
.y6a{bottom:743.146667pt;}
.y2c{bottom:745.706667pt;}
.y94{bottom:750.506667pt;}
.yd5{bottom:752.426667pt;}
.y132{bottom:757.333333pt;}
.y164{bottom:757.866667pt;}
.y69{bottom:760.106667pt;}
.y2b{bottom:761.706667pt;}
.y93{bottom:767.466667pt;}
.yd4{bottom:769.706667pt;}
.y131{bottom:774.666667pt;}
.y163{bottom:774.826667pt;}
.y68{bottom:776.746667pt;}
.y2a{bottom:777.706667pt;}
.y92{bottom:784.106667pt;}
.yd3{bottom:786.346667pt;}
.y162{bottom:791.786667pt;}
.y12f{bottom:793.333333pt;}
.y67{bottom:793.706667pt;}
.y29{bottom:794.026667pt;}
.y91{bottom:801.066667pt;}
.yd2{bottom:803.306667pt;}
.y3{bottom:805.081333pt;}
.y161{bottom:808.426667pt;}
.y28{bottom:810.026667pt;}
.y66{bottom:810.666667pt;}
.y90{bottom:818.026667pt;}
.y160{bottom:825.386667pt;}
.y27{bottom:826.986667pt;}
.y65{bottom:827.626667pt;}
.y12e{bottom:829.333333pt;}
.y8f{bottom:834.666667pt;}
.yd1{bottom:840.746667pt;}
.y15f{bottom:842.346667pt;}
.y26{bottom:844.266667pt;}
.y12d{bottom:846.666667pt;}
.y8e{bottom:851.626667pt;}
.y2{bottom:857.092000pt;}
.y15e{bottom:858.986667pt;}
.y25{bottom:861.226667pt;}
.y12b{bottom:864.000000pt;}
.y188{bottom:872.106667pt;}
.y15d{bottom:875.946667pt;}
.y64{bottom:878.186667pt;}
.y1{bottom:879.748000pt;}
.yd0{bottom:880.426667pt;}
.y24{bottom:882.346667pt;}
.y12a{bottom:882.666667pt;}
.y8d{bottom:889.066667pt;}
.y15c{bottom:892.906667pt;}
.y63{bottom:894.826667pt;}
.ycf{bottom:897.066667pt;}
.y23{bottom:897.706667pt;}
.y129{bottom:900.000000pt;}
.y15b{bottom:909.546667pt;}
.y62{bottom:911.786667pt;}
.y22{bottom:913.066667pt;}
.y128{bottom:918.666667pt;}
.y21{bottom:923.626667pt;}
.y15a{bottom:927.466667pt;}
.y61{bottom:928.746667pt;}
.yce{bottom:934.506667pt;}
.y126{bottom:936.000000pt;}
.y20{bottom:939.626667pt;}
.y60{bottom:945.386667pt;}
.y125{bottom:954.666667pt;}
.y1f{bottom:957.546667pt;}
.y5f{bottom:962.346667pt;}
.y124{bottom:972.000000pt;}
.ycd{bottom:974.186667pt;}
.y1e{bottom:977.706667pt;}
.y5e{bottom:979.306667pt;}
.ycc{bottom:990.666667pt;}
.y5d{bottom:996.266667pt;}
.y1d{bottom:1005.226667pt;}
.y123{bottom:1008.000000pt;}
.y5c{bottom:1012.906667pt;}
.h19{height:6.588582pt;}
.h17{height:9.894618pt;}
.h18{height:10.712679pt;}
.h16{height:11.333333pt;}
.h15{height:13.333333pt;}
.h1e{height:18.666667pt;}
.h13{height:20.000000pt;}
.h14{height:22.218750pt;}
.hd{height:23.355000pt;}
.h4{height:29.333333pt;}
.h12{height:29.349375pt;}
.hc{height:35.831250pt;}
.h1f{height:36.000000pt;}
.h1b{height:37.333333pt;}
.hf{height:39.105000pt;}
.he{height:40.020000pt;}
.h1a{height:40.250000pt;}
.ha{height:40.911250pt;}
.h11{height:50.750000pt;}
.h3{height:51.916667pt;}
.h1c{height:54.666667pt;}
.h1d{height:56.000000pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h9{height:62.125000pt;}
.hb{height:66.197500pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h10{height:1098.666667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wd{width:48.348453pt;}
.wb{width:57.333333pt;}
.w10{width:72.000000pt;}
.we{width:125.333333pt;}
.w11{width:144.000000pt;}
.wf{width:209.333333pt;}
.w13{width:225.333333pt;}
.w15{width:262.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w14{width:341.333333pt;}
.w12{width:378.666667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.wc{width:560.000000pt;}
.w7{width:579.386667pt;}
.wa{width:769.333333pt;}
.w9{width:793.333333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.x14{left:5.618342pt;}
.x1e{left:7.040032pt;}
.x13{left:8.000000pt;}
.x16{left:8.889984pt;}
.x1c{left:19.436693pt;}
.xd{left:24.000000pt;}
.x15{left:28.800144pt;}
.x1d{left:45.866133pt;}
.x11{left:48.786784pt;}
.x19{left:75.450240pt;}
.xa{left:96.000000pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.xb{left:114.933248pt;}
.x23{left:124.400064pt;}
.x1f{left:145.072576pt;}
.x12{left:152.000000pt;}
.x21{left:153.715808pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.xc{left:171.599936pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.xe{left:214.400000pt;}
.x17{left:220.000000pt;}
.xf{left:245.690432pt;}
.x18{left:276.000000pt;}
.x10{left:306.933248pt;}
.x22{left:436.000000pt;}
.x20{left:473.333333pt;}
.x1a{left:484.000000pt;}
.x1b{left:554.666667pt;}
}




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