
    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_691abbb55e48b859e5163886.woff')format("woff");}.ff1{font-family:ff1;line-height:0.920000;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_d0442fad663f55840ee6ec73.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_f13a1fe8f8e82e7dc55f7e56.woff')format("woff");}.ff3{font-family:ff3;line-height:0.728111;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_578d6c125599262c73af9a44.woff')format("woff");}.ff4{font-family:ff4;line-height:0.929199;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_0ce7d5e0b412e4df7a082f01.woff')format("woff");}.ff5{font-family:ff5;line-height:0.920000;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_553db62f694de6c72c696721.woff')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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_8a53235d81fc69042b01860d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.139000;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_0a40dfc741481a2123d88482.woff')format("woff");}.ff8{font-family:ff8;line-height:0.700000;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_dbf418fe169ed36b35206272.woff')format("woff");}.ff9{font-family:ff9;line-height:0.700000;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_f7a9debab72b63c0ea2139e4.woff')format("woff");}.ffa{font-family:ffa;line-height:1.139000;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_387ece00e7eefeb2e61a32a9.woff')format("woff");}.ffb{font-family:ffb;line-height:0.724121;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_babd09d588d16717dff4e66a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7b55a3cc30cdb53e63111f63.woff')format("woff");}.ffd{font-family:ffd;line-height:0.922462;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_cb6af38621b514f7d33e6adc.woff')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_5b0a5114fa56853e48f5d7dd.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_d555b2a3fa0b194db018a7fd.woff')format("woff");}.ff10{font-family:ff10;line-height:0.921111;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_954dddc9287a40dbff88d794.woff')format("woff");}.ff11{font-family:ff11;line-height:0.921111;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_7e0144826dea2a38184d1cec.woff')format("woff");}.ff12{font-family:ff12;line-height:0.921111;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_d5cf1e534b11ee5c8eb082a6.woff')format("woff");}.ff13{font-family:ff13;line-height:1.074219;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_0a5e199fc0698e6e3ce72f49.woff')format("woff");}.ff14{font-family:ff14;line-height:1.057129;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_88a1e4e34b2d7f72051a0531.woff')format("woff");}.ff15{font-family:ff15;line-height:0.920000;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_ce070ae3ecf7eff704facb79.woff')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_11f00ff17f9cbff7ef897682.woff')format("woff");}.ff17{font-family:ff17;line-height:0.700000;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_115fa8ef259296a955c3bfeb.woff')format("woff");}.ff18{font-family:ff18;line-height:0.700000;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_ef28b356b90b4249778e34b1.woff')format("woff");}.ff19{font-family:ff19;line-height:1.057129;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_2b93f54564eae90f93591316.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.713867;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_03a4868a4711a4d32a3e3392.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.787598;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);}
.v2{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls30{letter-spacing:-0.318384px;}
.ls40{letter-spacing:-0.299088px;}
.ls2c{letter-spacing:-0.289440px;}
.ls12{letter-spacing:-0.231840px;}
.ls28{letter-spacing:-0.218592px;}
.ls1e{letter-spacing:-0.211968px;}
.ls8{letter-spacing:-0.205344px;}
.ls1b{letter-spacing:-0.185472px;}
.lsa{letter-spacing:-0.178848px;}
.ls1a{letter-spacing:-0.172224px;}
.ls7{letter-spacing:-0.165600px;}
.ls10{letter-spacing:-0.158976px;}
.ls11{letter-spacing:-0.152352px;}
.ls9{letter-spacing:-0.145728px;}
.ls26{letter-spacing:-0.144720px;}
.lsd{letter-spacing:-0.139104px;}
.ls27{letter-spacing:-0.132480px;}
.lsc{letter-spacing:-0.125856px;}
.ls31{letter-spacing:-0.119232px;}
.ls2a{letter-spacing:-0.112608px;}
.lse{letter-spacing:-0.099360px;}
.ls1d{letter-spacing:-0.086112px;}
.ls1c{letter-spacing:-0.079488px;}
.lsf{letter-spacing:-0.072864px;}
.ls29{letter-spacing:-0.066240px;}
.lsb{letter-spacing:-0.059616px;}
.ls2f{letter-spacing:-0.052992px;}
.ls0{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.023040px;}
.ls3c{letter-spacing:0.031968px;}
.ls3a{letter-spacing:0.096624px;}
.ls3d{letter-spacing:0.131472px;}
.ls35{letter-spacing:0.133920px;}
.ls6{letter-spacing:0.134208px;}
.ls3{letter-spacing:0.134352px;}
.ls14{letter-spacing:0.152064px;}
.ls1{letter-spacing:0.186624px;}
.ls15{letter-spacing:0.194832px;}
.ls3f{letter-spacing:0.200448px;}
.ls34{letter-spacing:0.225504px;}
.ls38{letter-spacing:0.227520px;}
.ls37{letter-spacing:0.227808px;}
.ls39{letter-spacing:0.239040px;}
.ls3b{letter-spacing:0.243648px;}
.ls4{letter-spacing:0.249984px;}
.ls18{letter-spacing:0.275616px;}
.ls2d{letter-spacing:0.283968px;}
.ls13{letter-spacing:0.294624px;}
.ls2{letter-spacing:0.316800px;}
.ls32{letter-spacing:0.317376px;}
.ls17{letter-spacing:0.337392px;}
.ls16{letter-spacing:0.413424px;}
.ls5{letter-spacing:0.428976px;}
.ls22{letter-spacing:30.846528px;}
.ls33{letter-spacing:32.364144px;}
.ls23{letter-spacing:32.892912px;}
.ls20{letter-spacing:34.410528px;}
.ls21{letter-spacing:34.542288px;}
.ls24{letter-spacing:37.379808px;}
.ls1f{letter-spacing:53.879760px;}
.ls2b{letter-spacing:55.199520px;}
.ls19{letter-spacing:837.178560px;}
.ls36{letter-spacing:843.984000px;}
.ls2e{letter-spacing:845.585280px;}
.ls25{letter-spacing:847.440000px;}
.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:-20.160000px;}
.ws6{word-spacing:-18.547200px;}
.ws19{word-spacing:-18.494208px;}
.ws13{word-spacing:-18.487584px;}
.wsc{word-spacing:-18.474336px;}
.ws14{word-spacing:-18.467712px;}
.ws16{word-spacing:-18.461088px;}
.wsa{word-spacing:-18.447840px;}
.ws18{word-spacing:-18.434592px;}
.ws12{word-spacing:-18.421344px;}
.wsf{word-spacing:-18.414720px;}
.ws10{word-spacing:-18.408096px;}
.wsd{word-spacing:-18.401472px;}
.wse{word-spacing:-18.394848px;}
.ws7{word-spacing:-18.388224px;}
.ws1d{word-spacing:-18.374976px;}
.ws15{word-spacing:-18.368352px;}
.ws11{word-spacing:-18.361728px;}
.ws17{word-spacing:-18.288864px;}
.wsb{word-spacing:-16.560000px;}
.ws9{word-spacing:-13.642992px;}
.ws3{word-spacing:-1.134000px;}
.ws1e{word-spacing:-0.358560px;}
.ws1b{word-spacing:-0.309024px;}
.ws20{word-spacing:-0.283968px;}
.ws1f{word-spacing:-0.119520px;}
.ws1a{word-spacing:-0.083520px;}
.ws1c{word-spacing:-0.066240px;}
.ws5{word-spacing:-0.038880px;}
.ws8{word-spacing:-0.030240px;}
.ws1{word-spacing:0.000000px;}
.ws4{word-spacing:3.942000px;}
.ws2{word-spacing:6.534000px;}
._2{margin-left:-5.124000px;}
._1{margin-left:-2.880000px;}
._0{margin-left:-1.440000px;}
._3{width:1.088640px;}
.fc9{color:rgb(57,55,54);}
.fc7{color:rgb(255,0,0);}
.fc6{color:transparent;}
.fc3{color:rgb(17,85,204);}
.fc5{color:rgb(102,102,102);}
.fc4{color:rgb(67,67,67);}
.fc2{color:rgb(0,0,0);}
.fca{color:rgb(0,0,255);}
.fc8{color:rgb(24,29,39);}
.fc1{color:rgb(220,209,197);}
.fc0{color:rgb(242,240,237);}
.fs8{font-size:30.240000px;}
.fs7{font-size:38.880000px;}
.fs9{font-size:47.520000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:60.480000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fsb{font-size:83.520000px;}
.fs2{font-size:84.000000px;}
.fsa{font-size:96.480000px;}
.fsd{font-size:108.000000px;}
.fsc{font-size:119.520000px;}
.fs0{font-size:144.000000px;}
.fs5{font-size:155.520000px;}
.y14a{bottom:-12.840000px;}
.ya4{bottom:-12.240000px;}
.yb4{bottom:-9.300000px;}
.y159{bottom:-9.180000px;}
.y99{bottom:-9.000000px;}
.y97{bottom:-8.940000px;}
.y16a{bottom:-8.880000px;}
.y19e{bottom:-8.760000px;}
.y1d6{bottom:-8.580000px;}
.yd9{bottom:-8.280000px;}
.y1d7{bottom:-8.220000px;}
.y74{bottom:-8.160000px;}
.y89{bottom:-8.100000px;}
.ya6{bottom:-6.180000px;}
.y129{bottom:-4.020000px;}
.y0{bottom:0.000000px;}
.yd8{bottom:3.600000px;}
.yc8{bottom:5.340000px;}
.y3e{bottom:7.320000px;}
.y3c{bottom:7.560000px;}
.y3a{bottom:7.800000px;}
.y41{bottom:8.400000px;}
.y15b{bottom:8.520000px;}
.y16c{bottom:8.580000px;}
.y201{bottom:11.400000px;}
.yb6{bottom:16.380000px;}
.y38{bottom:17.040000px;}
.yef{bottom:18.720000px;}
.y40{bottom:31.080000px;}
.ya2{bottom:32.700000px;}
.yc6{bottom:56.580000px;}
.yb{bottom:60.480000px;}
.ya{bottom:60.606600px;}
.y9{bottom:76.806600px;}
.y8{bottom:93.006600px;}
.y7{bottom:109.206600px;}
.y35{bottom:110.880000px;}
.y1eb{bottom:112.320000px;}
.y196{bottom:116.640000px;}
.y34{bottom:125.280000px;}
.y148{bottom:126.000000px;}
.yc4{bottom:127.440000px;}
.y1b1{bottom:128.160000px;}
.y1bd{bottom:130.680000px;}
.y109{bottom:132.120000px;}
.yee{bottom:135.000000px;}
.y195{bottom:139.680000px;}
.y168{bottom:140.400000px;}
.y33{bottom:141.120000px;}
.y87{bottom:148.320000px;}
.y147{bottom:148.680000px;}
.yc3{bottom:150.480000px;}
.y1b0{bottom:151.920000px;}
.y1bc{bottom:153.360000px;}
.y1ea{bottom:154.080000px;}
.y108{bottom:154.800000px;}
.y212{bottom:158.760000px;}
.y32{bottom:159.120000px;}
.y1d4{bottom:161.640000px;}
.y194{bottom:162.360000px;}
.y167{bottom:163.080000px;}
.y31{bottom:170.640000px;}
.y86{bottom:171.000000px;}
.y146{bottom:171.360000px;}
.yc2{bottom:173.160000px;}
.y1ff{bottom:174.240000px;}
.y1af{bottom:174.600000px;}
.y1bb{bottom:176.040000px;}
.y107{bottom:177.840000px;}
.y211{bottom:183.960000px;}
.y1d3{bottom:184.320000px;}
.y193{bottom:185.040000px;}
.y166{bottom:185.760000px;}
.y215{bottom:186.120000px;}
.y19c{bottom:186.480000px;}
.y85{bottom:193.680000px;}
.y145{bottom:194.040000px;}
.yc1{bottom:195.840000px;}
.y1ae{bottom:197.280000px;}
.y1ba{bottom:198.720000px;}
.y127{bottom:199.440000px;}
.y106{bottom:200.520000px;}
.y95{bottom:200.880000px;}
.y1d2{bottom:203.040000px;}
.y1fe{bottom:203.400000px;}
.y192{bottom:207.720000px;}
.y165{bottom:208.800000px;}
.y19b{bottom:209.160000px;}
.y72{bottom:209.520000px;}
.y30{bottom:211.320000px;}
.yc0{bottom:214.560000px;}
.y144{bottom:217.080000px;}
.y94{bottom:219.600000px;}
.y1b9{bottom:221.760000px;}
.y126{bottom:222.120000px;}
.yb2{bottom:223.200000px;}
.y84{bottom:224.640000px;}
.y17f{bottom:229.320000px;}
.y191{bottom:230.760000px;}
.y164{bottom:231.480000px;}
.y19a{bottom:232.200000px;}
.y2f{bottom:235.440000px;}
.y143{bottom:239.760000px;}
.y73{bottom:240.000000px;}
.y1e9{bottom:241.200000px;}
.yc5{bottom:241.500000px;}
.y1c7{bottom:243.360000px;}
.y1b8{bottom:244.440000px;}
.y125{bottom:244.800000px;}
.y105{bottom:245.880000px;}
.y1ad{bottom:247.680000px;}
.yb1{bottom:248.760000px;}
.y17e{bottom:253.440000px;}
.y163{bottom:254.160000px;}
.y199{bottom:254.880000px;}
.y2e{bottom:259.920000px;}
.y142{bottom:262.440000px;}
.y1e8{bottom:263.880000px;}
.y1ac{bottom:266.400000px;}
.y1b7{bottom:267.120000px;}
.y124{bottom:267.480000px;}
.y104{bottom:268.920000px;}
.y83{bottom:275.400000px;}
.y17d{bottom:276.120000px;}
.y214{bottom:277.200000px;}
.y198{bottom:277.560000px;}
.y2d{bottom:284.040000px;}
.y141{bottom:285.120000px;}
.y1e7{bottom:286.560000px;}
.y1b6{bottom:289.800000px;}
.y123{bottom:290.520000px;}
.y103{bottom:291.600000px;}
.y6a{bottom:293.040000px;}
.y197{bottom:296.280000px;}
.y82{bottom:298.080000px;}
.y17c{bottom:298.800000px;}
.y213{bottom:299.880000px;}
.y140{bottom:308.160000px;}
.y2c{bottom:308.520000px;}
.y1e6{bottom:309.240000px;}
.y122{bottom:313.200000px;}
.y102{bottom:314.280000px;}
.y1fd{bottom:316.800000px;}
.y81{bottom:321.120000px;}
.y17b{bottom:321.480000px;}
.y190{bottom:321.840000px;}
.y69{bottom:322.560000px;}
.y13f{bottom:330.840000px;}
.y1e5{bottom:332.280000px;}
.y2b{bottom:332.640000px;}
.y121{bottom:335.880000px;}
.y101{bottom:336.960000px;}
.y1fc{bottom:344.160000px;}
.y17a{bottom:344.520000px;}
.y68{bottom:345.240000px;}
.ya0{bottom:350.280000px;}
.y13e{bottom:353.520000px;}
.y1e4{bottom:354.960000px;}
.y2a{bottom:357.120000px;}
.y120{bottom:358.560000px;}
.y162{bottom:358.920000px;}
.y100{bottom:360.000000px;}
.y179{bottom:367.200000px;}
.y67{bottom:368.280000px;}
.y9f{bottom:369.000000px;}
.y1fb{bottom:375.120000px;}
.y13d{bottom:376.200000px;}
.y161{bottom:377.640000px;}
.y29{bottom:381.240000px;}
.y11f{bottom:381.600000px;}
.yff{bottom:382.680000px;}
.y18f{bottom:389.880000px;}
.y66{bottom:390.960000px;}
.yd6{bottom:393.480000px;}
.y178{bottom:394.560000px;}
.y19d{bottom:399.000000px;}
.y13c{bottom:399.240000px;}
.y1e3{bottom:400.320000px;}
.yfe{bottom:401.400000px;}
.y11e{bottom:404.280000px;}
.y1c6{bottom:405.360000px;}
.y28{bottom:405.720000px;}
.yed{bottom:408.960000px;}
.y157{bottom:410.400000px;}
.y18e{bottom:412.920000px;}
.y65{bottom:413.640000px;}
.yd5{bottom:416.160000px;}
.y13b{bottom:421.920000px;}
.y1e2{bottom:423.360000px;}
.y11d{bottom:426.960000px;}
.y1c5{bottom:428.040000px;}
.y27{bottom:429.840000px;}
.y1fa{bottom:430.560000px;}
.yec{bottom:431.640000px;}
.y156{bottom:433.080000px;}
.y18d{bottom:435.600000px;}
.y64{bottom:436.320000px;}
.yd4{bottom:438.840000px;}
.yc7{bottom:442.500000px;}
.y13a{bottom:444.600000px;}
.y1e1{bottom:446.040000px;}
.y1c4{bottom:446.760000px;}
.y177{bottom:449.280000px;}
.y11c{bottom:449.640000px;}
.y26{bottom:454.320000px;}
.yeb{bottom:454.680000px;}
.y155{bottom:455.760000px;}
.y210{bottom:456.840000px;}
.y1f9{bottom:457.920000px;}
.y18c{bottom:458.280000px;}
.y63{bottom:459.360000px;}
.yd3{bottom:461.520000px;}
.y1e0{bottom:465.120000px;}
.y139{bottom:467.280000px;}
.y176{bottom:468.000000px;}
.y11b{bottom:472.680000px;}
.yea{bottom:477.360000px;}
.y25{bottom:478.440000px;}
.y20f{bottom:479.520000px;}
.y18b{bottom:480.960000px;}
.y62{bottom:482.040000px;}
.yd2{bottom:484.560000px;}
.y1f8{bottom:485.280000px;}
.y1ab{bottom:487.800000px;}
.y138{bottom:490.320000px;}
.y11a{bottom:495.360000px;}
.ye9{bottom:500.040000px;}
.y154{bottom:501.480000px;}
.y20e{bottom:502.200000px;}
.y24{bottom:502.920000px;}
.y18a{bottom:504.000000px;}
.y61{bottom:504.720000px;}
.ya1{bottom:505.500000px;}
.y1f7{bottom:507.960000px;}
.y1aa{bottom:510.480000px;}
.y137{bottom:513.000000px;}
.y71{bottom:513.360000px;}
.ybf{bottom:514.080000px;}
.y1df{bottom:516.960000px;}
.y119{bottom:518.040000px;}
.ye8{bottom:522.720000px;}
.y153{bottom:524.160000px;}
.y189{bottom:526.680000px;}
.y23{bottom:527.040000px;}
.y60{bottom:527.400000px;}
.y20d{bottom:529.560000px;}
.y1f6{bottom:530.640000px;}
.y1a9{bottom:533.520000px;}
.y70{bottom:536.040000px;}
.ybe{bottom:536.760000px;}
.yb3{bottom:538.500000px;}
.y1de{bottom:539.640000px;}
.y118{bottom:540.720000px;}
.y136{bottom:542.880000px;}
.ye7{bottom:545.760000px;}
.y152{bottom:546.840000px;}
.y188{bottom:549.360000px;}
.y5f{bottom:550.440000px;}
.y22{bottom:551.520000px;}
.y20c{bottom:552.240000px;}
.y1f5{bottom:553.680000px;}
.y1a8{bottom:556.200000px;}
.y1be{bottom:558.000000px;}
.ybd{bottom:559.800000px;}
.yb0{bottom:561.960000px;}
.y1dd{bottom:562.320000px;}
.y117{bottom:563.760000px;}
.y6f{bottom:567.000000px;}
.ye6{bottom:568.440000px;}
.y151{bottom:569.520000px;}
.y175{bottom:569.880000px;}
.y187{bottom:572.040000px;}
.y1f4{bottom:572.400000px;}
.y5e{bottom:573.120000px;}
.y21{bottom:575.640000px;}
.y1a7{bottom:578.880000px;}
.ybc{bottom:582.480000px;}
.y224{bottom:582.840000px;}
.y20b{bottom:583.200000px;}
.yaf{bottom:584.640000px;}
.y1dc{bottom:585.360000px;}
.y116{bottom:586.440000px;}
.y135{bottom:587.520000px;}
.ye5{bottom:591.120000px;}
.y150{bottom:592.560000px;}
.y1d1{bottom:592.920000px;}
.y186{bottom:595.080000px;}
.y5d{bottom:595.800000px;}
.y20{bottom:600.120000px;}
.y96{bottom:601.500000px;}
.y1a6{bottom:601.560000px;}
.ybb{bottom:605.160000px;}
.y223{bottom:605.520000px;}
.yae{bottom:607.320000px;}
.y1b5{bottom:608.040000px;}
.y115{bottom:609.120000px;}
.y134{bottom:610.200000px;}
.ye4{bottom:613.800000px;}
.y14f{bottom:615.240000px;}
.y1d0{bottom:615.600000px;}
.y158{bottom:616.500000px;}
.y6e{bottom:617.760000px;}
.y5c{bottom:618.480000px;}
.y80{bottom:623.880000px;}
.y1f{bottom:624.240000px;}
.y93{bottom:627.120000px;}
.yba{bottom:627.840000px;}
.y222{bottom:628.200000px;}
.yad{bottom:630.000000px;}
.y1b4{bottom:631.080000px;}
.y1a5{bottom:631.440000px;}
.y114{bottom:631.800000px;}
.y133{bottom:633.240000px;}
.y20a{bottom:637.200000px;}
.y14e{bottom:637.920000px;}
.y1cf{bottom:638.640000px;}
.y1db{bottom:639.000000px;}
.y6d{bottom:640.440000px;}
.y5b{bottom:641.520000px;}
.y185{bottom:642.960000px;}
.ye3{bottom:643.680000px;}
.y7f{bottom:646.560000px;}
.y1e{bottom:648.720000px;}
.y92{bottom:649.800000px;}
.yb9{bottom:650.880000px;}
.y221{bottom:651.240000px;}
.y1b3{bottom:653.760000px;}
.y113{bottom:654.840000px;}
.y132{bottom:655.920000px;}
.y14d{bottom:660.600000px;}
.yac{bottom:660.960000px;}
.y1ce{bottom:661.320000px;}
.y6c{bottom:663.480000px;}
.y5a{bottom:664.200000px;}
.y184{bottom:668.520000px;}
.y7e{bottom:669.240000px;}
.y1d{bottom:672.840000px;}
.y220{bottom:673.200000px;}
.yb8{bottom:673.560000px;}
.y1a4{bottom:676.440000px;}
.y112{bottom:677.520000px;}
.y131{bottom:678.600000px;}
.y14c{bottom:683.640000px;}
.y1cd{bottom:684.000000px;}
.y1da{bottom:685.800000px;}
.y6b{bottom:686.160000px;}
.y59{bottom:686.880000px;}
.ye2{bottom:688.680000px;}
.y183{bottom:691.200000px;}
.y7d{bottom:692.280000px;}
.y1c8{bottom:693.000000px;}
.y21f{bottom:695.160000px;}
.y91{bottom:695.520000px;}
.y1c{bottom:697.320000px;}
.y1a3{bottom:699.120000px;}
.y111{bottom:700.200000px;}
.y130{bottom:701.280000px;}
.yb7{bottom:704.520000px;}
.y14b{bottom:706.320000px;}
.y1cc{bottom:706.680000px;}
.y58{bottom:709.560000px;}
.y160{bottom:709.920000px;}
.y174{bottom:711.000000px;}
.ye1{bottom:711.360000px;}
.yab{bottom:711.720000px;}
.y182{bottom:713.880000px;}
.y7c{bottom:714.960000px;}
.y1b2{bottom:718.200000px;}
.y1b{bottom:721.440000px;}
.y1a2{bottom:721.800000px;}
.y110{bottom:722.880000px;}
.y12f{bottom:724.320000px;}
.y21e{bottom:725.760000px;}
.y90{bottom:726.480000px;}
.yd7{bottom:729.000000px;}
.y1cb{bottom:729.720000px;}
.y57{bottom:732.600000px;}
.ye0{bottom:734.040000px;}
.yaa{bottom:734.760000px;}
.y181{bottom:736.920000px;}
.y7b{bottom:737.640000px;}
.y173{bottom:738.360000px;}
.y1a{bottom:745.920000px;}
.y12e{bottom:747.000000px;}
.y1a1{bottom:747.360000px;}
.ya5{bottom:748.500000px;}
.y1c3{bottom:749.520000px;}
.yfd{bottom:751.680000px;}
.y1ca{bottom:752.400000px;}
.y56{bottom:755.280000px;}
.ydf{bottom:756.720000px;}
.ya9{bottom:757.440000px;}
.y180{bottom:759.600000px;}
.y7a{bottom:760.320000px;}
.y172{bottom:761.040000px;}
.y10f{bottom:768.600000px;}
.y12d{bottom:769.680000px;}
.y19{bottom:770.040000px;}
.y1c9{bottom:771.120000px;}
.y1c2{bottom:772.200000px;}
.yfc{bottom:774.720000px;}
.y9e{bottom:776.520000px;}
.y8f{bottom:777.240000px;}
.y55{bottom:777.960000px;}
.y15f{bottom:778.320000px;}
.yde{bottom:779.760000px;}
.ya8{bottom:780.120000px;}
.y171{bottom:784.080000px;}
.y200{bottom:786.000000px;}
.y10e{bottom:787.320000px;}
.y79{bottom:791.280000px;}
.y12c{bottom:792.360000px;}
.y1a0{bottom:792.720000px;}
.y1c1{bottom:794.880000px;}
.y18{bottom:797.040000px;}
.yfb{bottom:797.400000px;}
.y21d{bottom:799.200000px;}
.y9d{bottom:799.560000px;}
.y8e{bottom:799.920000px;}
.y54{bottom:800.640000px;}
.y15e{bottom:801.000000px;}
.ydd{bottom:802.440000px;}
.ya7{bottom:802.800000px;}
.y170{bottom:806.760000px;}
.y19f{bottom:811.440000px;}
.y12b{bottom:815.400000px;}
.y17{bottom:816.840000px;}
.y1c0{bottom:817.560000px;}
.yfa{bottom:820.080000px;}
.y21c{bottom:821.880000px;}
.y15a{bottom:822.000000px;}
.y9c{bottom:822.240000px;}
.y8d{bottom:822.600000px;}
.y53{bottom:823.680000px;}
.ydc{bottom:825.120000px;}
.yd1{bottom:825.480000px;}
.y16f{bottom:829.440000px;}
.y209{bottom:833.040000px;}
.y12a{bottom:834.120000px;}
.y16{bottom:836.640000px;}
.y78{bottom:838.080000px;}
.y9b{bottom:840.600000px;}
.yf9{bottom:842.760000px;}
.y21b{bottom:844.920000px;}
.y8c{bottom:845.640000px;}
.y52{bottom:846.360000px;}
.ydb{bottom:847.800000px;}
.yd0{bottom:848.160000px;}
.y1f3{bottom:849.600000px;}
.y16e{bottom:852.120000px;}
.y208{bottom:855.720000px;}
.y15{bottom:856.440000px;}
.y44{bottom:857.160000px;}
.y1bf{bottom:859.320000px;}
.y149{bottom:861.000000px;}
.yf8{bottom:865.800000px;}
.y21a{bottom:867.600000px;}
.y8b{bottom:868.320000px;}
.y51{bottom:869.040000px;}
.y15d{bottom:869.400000px;}
.ycf{bottom:870.840000px;}
.y1f2{bottom:872.280000px;}
.y14{bottom:876.240000px;}
.y207{bottom:878.760000px;}
.y16d{bottom:883.080000px;}
.y43{bottom:886.680000px;}
.y8a{bottom:887.040000px;}
.y15c{bottom:888.120000px;}
.yf7{bottom:888.480000px;}
.yda{bottom:889.560000px;}
.y219{bottom:890.280000px;}
.y50{bottom:891.720000px;}
.yce{bottom:893.880000px;}
.y1f1{bottom:894.960000px;}
.y88{bottom:895.500000px;}
.y13{bottom:896.040000px;}
.y1d5{bottom:898.500000px;}
.y206{bottom:901.440000px;}
.y4{bottom:902.727150px;}
.y98{bottom:909.000000px;}
.y42{bottom:909.720000px;}
.yf6{bottom:911.160000px;}
.y218{bottom:912.960000px;}
.y4f{bottom:914.760000px;}
.y12{bottom:915.840000px;}
.ycd{bottom:916.560000px;}
.y1f0{bottom:918.000000px;}
.y205{bottom:924.120000px;}
.y3f{bottom:933.000000px;}
.yf5{bottom:933.840000px;}
.ycc{bottom:935.280000px;}
.y1{bottom:937.374900px;}
.y4e{bottom:937.440000px;}
.y11{bottom:938.880000px;}
.y217{bottom:944.280000px;}
.y1ef{bottom:948.600000px;}
.y204{bottom:955.080000px;}
.yf4{bottom:956.880000px;}
.yb5{bottom:958.500000px;}
.y4d{bottom:960.120000px;}
.y10{bottom:961.560000px;}
.y128{bottom:973.500000px;}
.yf3{bottom:979.560000px;}
.y203{bottom:981.000000px;}
.y4c{bottom:982.800000px;}
.y3d{bottom:996.000000px;}
.y216{bottom:996.840000px;}
.yf{bottom:998.640000px;}
.ya3{bottom:999.000000px;}
.y1ee{bottom:999.720000px;}
.yf2{bottom:1002.240000px;}
.y4b{bottom:1005.840000px;}
.y169{bottom:1014.000000px;}
.yf1{bottom:1024.920000px;}
.y4a{bottom:1028.520000px;}
.y1ed{bottom:1032.120000px;}
.y3b{bottom:1035.000000px;}
.y1d9{bottom:1039.680000px;}
.ye{bottom:1046.520000px;}
.yf0{bottom:1047.960000px;}
.y49{bottom:1051.200000px;}
.y1ec{bottom:1056.240000px;}
.y1d8{bottom:1062.720000px;}
.ycb{bottom:1070.640000px;}
.y48{bottom:1073.880000px;}
.y39{bottom:1074.000000px;}
.y202{bottom:1081.080000px;}
.yd{bottom:1082.160000px;}
.y10d{bottom:1085.400000px;}
.yca{bottom:1093.320000px;}
.y47{bottom:1096.920000px;}
.y77{bottom:1104.120000px;}
.y10c{bottom:1108.080000px;}
.y16b{bottom:1108.500000px;}
.y37{bottom:1113.000000px;}
.yc9{bottom:1116.000000px;}
.y46{bottom:1119.600000px;}
.y76{bottom:1126.800000px;}
.y10b{bottom:1130.760000px;}
.y9a{bottom:1139.040000px;}
.yc{bottom:1140.480000px;}
.y45{bottom:1154.880000px;}
.y75{bottom:1157.760000px;}
.y10a{bottom:1160.640000px;}
.y36{bottom:1161.720000px;}
.y6{bottom:1162.481250px;}
.y2{bottom:1168.691400px;}
.y5{bottom:1184.081250px;}
.y3{bottom:1191.731400px;}
.h1f{height:3.000000px;}
.h17{height:4.500000px;}
.h20{height:6.000000px;}
.h15{height:7.500000px;}
.h18{height:10.500000px;}
.h1e{height:12.000000px;}
.h1c{height:19.500000px;}
.h1b{height:22.500000px;}
.h11{height:24.000000px;}
.h21{height:28.500000px;}
.h22{height:30.000000px;}
.hd{height:30.221280px;}
.hf{height:33.000000px;}
.h27{height:34.500000px;}
.hb{height:42.336000px;}
.h6{height:43.200000px;}
.he{height:44.621280px;}
.h19{height:45.000000px;}
.h9{height:47.610000px;}
.h23{height:47.692800px;}
.h10{height:47.855852px;}
.h12{height:48.000000px;}
.h1d{height:49.500000px;}
.h3{height:51.840000px;}
.h5{height:51.920000px;}
.h14{height:60.227200px;}
.hc{height:62.199360px;}
.h4{height:67.200000px;}
.h13{height:69.572800px;}
.h28{height:71.982422px;}
.h16{height:76.500000px;}
.h25{height:83.664000px;}
.h26{height:85.321406px;}
.h24{height:100.800000px;}
.h2{height:103.680000px;}
.ha{height:111.974400px;}
.h1a{height:124.500000px;}
.h8{height:1262.250000px;}
.h7{height:1262.520000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w10{width:25.500000px;}
.wc{width:27.000000px;}
.w12{width:28.500000px;}
.wb{width:33.000000px;}
.w19{width:39.000000px;}
.w17{width:40.500000px;}
.wf{width:45.000000px;}
.wa{width:55.500000px;}
.w8{width:58.500000px;}
.w18{width:60.000000px;}
.w15{width:66.000000px;}
.w7{width:84.000000px;}
.w13{width:93.000000px;}
.w4{width:103.500000px;}
.w9{width:123.000000px;}
.we{width:138.000000px;}
.wd{width:141.000000px;}
.w14{width:166.500000px;}
.w16{width:174.000000px;}
.w11{width:192.000000px;}
.w5{width:241.500000px;}
.w6{width:366.000000px;}
.w3{width:711.000000px;}
.w0{width:892.914000px;}
.w2{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:6.780036px;}
.x13{left:8.040144px;}
.x30{left:12.284916px;}
.x26{left:13.919880px;}
.x24{left:16.387320px;}
.x4c{left:19.192560px;}
.x42{left:20.414820px;}
.x2c{left:22.169664px;}
.x22{left:28.185000px;}
.x1b{left:29.280000px;}
.x39{left:32.789784px;}
.x17{left:41.835192px;}
.x36{left:46.274772px;}
.x5{left:59.527500px;}
.x20{left:61.919760px;}
.x2a{left:68.894916px;}
.x28{left:70.244736px;}
.x37{left:82.995240px;}
.x3d{left:86.790156px;}
.x33{left:96.089880px;}
.x38{left:105.000000px;}
.x34{left:106.500000px;}
.x7{left:108.000000px;}
.x10{left:109.500000px;}
.x46{left:112.500000px;}
.x27{left:115.500000px;}
.x2b{left:117.000000px;}
.x29{left:120.000000px;}
.xc{left:135.000000px;}
.x16{left:138.000000px;}
.xd{left:162.000000px;}
.x9{left:170.490240px;}
.x1{left:189.095400px;}
.x3c{left:192.000000px;}
.x1e{left:208.500000px;}
.x12{left:213.000000px;}
.x3a{left:217.439928px;}
.xa{left:230.537124px;}
.x40{left:240.000000px;}
.x8{left:243.000000px;}
.x4{left:253.344000px;}
.x6{left:261.496050px;}
.x2f{left:295.500000px;}
.x1f{left:307.500000px;}
.x35{left:316.500000px;}
.xe{left:324.000000px;}
.x2e{left:325.439928px;}
.x31{left:327.000000px;}
.x45{left:333.000000px;}
.x1a{left:339.000000px;}
.x49{left:355.319856px;}
.x32{left:357.000000px;}
.x3b{left:407.160000px;}
.x21{left:417.000000px;}
.xb{left:446.587200px;}
.x14{left:454.500000px;}
.x4a{left:520.920000px;}
.x41{left:523.087200px;}
.x4d{left:617.047560px;}
.x15{left:619.920000px;}
.x18{left:628.920000px;}
.x3{left:646.512900px;}
.x19{left:655.387200px;}
.x3e{left:677.527200px;}
.x44{left:688.687560px;}
.x2{left:709.494900px;}
.x1c{left:723.247200px;}
.x23{left:739.500000px;}
.x47{left:750.600000px;}
.x25{left:757.500000px;}
.x4b{left:761.040000px;}
.x43{left:763.200000px;}
.x2d{left:766.821960px;}
.x3f{left:769.320000px;}
.xf{left:775.998360px;}
.x48{left:777.960000px;}
.x1d{left:785.160000px;}
@media print{
.v2{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls30{letter-spacing:-0.283008pt;}
.ls40{letter-spacing:-0.265856pt;}
.ls2c{letter-spacing:-0.257280pt;}
.ls12{letter-spacing:-0.206080pt;}
.ls28{letter-spacing:-0.194304pt;}
.ls1e{letter-spacing:-0.188416pt;}
.ls8{letter-spacing:-0.182528pt;}
.ls1b{letter-spacing:-0.164864pt;}
.lsa{letter-spacing:-0.158976pt;}
.ls1a{letter-spacing:-0.153088pt;}
.ls7{letter-spacing:-0.147200pt;}
.ls10{letter-spacing:-0.141312pt;}
.ls11{letter-spacing:-0.135424pt;}
.ls9{letter-spacing:-0.129536pt;}
.ls26{letter-spacing:-0.128640pt;}
.lsd{letter-spacing:-0.123648pt;}
.ls27{letter-spacing:-0.117760pt;}
.lsc{letter-spacing:-0.111872pt;}
.ls31{letter-spacing:-0.105984pt;}
.ls2a{letter-spacing:-0.100096pt;}
.lse{letter-spacing:-0.088320pt;}
.ls1d{letter-spacing:-0.076544pt;}
.ls1c{letter-spacing:-0.070656pt;}
.lsf{letter-spacing:-0.064768pt;}
.ls29{letter-spacing:-0.058880pt;}
.lsb{letter-spacing:-0.052992pt;}
.ls2f{letter-spacing:-0.047104pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.020480pt;}
.ls3c{letter-spacing:0.028416pt;}
.ls3a{letter-spacing:0.085888pt;}
.ls3d{letter-spacing:0.116864pt;}
.ls35{letter-spacing:0.119040pt;}
.ls6{letter-spacing:0.119296pt;}
.ls3{letter-spacing:0.119424pt;}
.ls14{letter-spacing:0.135168pt;}
.ls1{letter-spacing:0.165888pt;}
.ls15{letter-spacing:0.173184pt;}
.ls3f{letter-spacing:0.178176pt;}
.ls34{letter-spacing:0.200448pt;}
.ls38{letter-spacing:0.202240pt;}
.ls37{letter-spacing:0.202496pt;}
.ls39{letter-spacing:0.212480pt;}
.ls3b{letter-spacing:0.216576pt;}
.ls4{letter-spacing:0.222208pt;}
.ls18{letter-spacing:0.244992pt;}
.ls2d{letter-spacing:0.252416pt;}
.ls13{letter-spacing:0.261888pt;}
.ls2{letter-spacing:0.281600pt;}
.ls32{letter-spacing:0.282112pt;}
.ls17{letter-spacing:0.299904pt;}
.ls16{letter-spacing:0.367488pt;}
.ls5{letter-spacing:0.381312pt;}
.ls22{letter-spacing:27.419136pt;}
.ls33{letter-spacing:28.768128pt;}
.ls23{letter-spacing:29.238144pt;}
.ls20{letter-spacing:30.587136pt;}
.ls21{letter-spacing:30.704256pt;}
.ls24{letter-spacing:33.226496pt;}
.ls1f{letter-spacing:47.893120pt;}
.ls2b{letter-spacing:49.066240pt;}
.ls19{letter-spacing:744.158720pt;}
.ls36{letter-spacing:750.208000pt;}
.ls2e{letter-spacing:751.631360pt;}
.ls25{letter-spacing:753.280000pt;}
.ws0{word-spacing:-17.920000pt;}
.ws6{word-spacing:-16.486400pt;}
.ws19{word-spacing:-16.439296pt;}
.ws13{word-spacing:-16.433408pt;}
.wsc{word-spacing:-16.421632pt;}
.ws14{word-spacing:-16.415744pt;}
.ws16{word-spacing:-16.409856pt;}
.wsa{word-spacing:-16.398080pt;}
.ws18{word-spacing:-16.386304pt;}
.ws12{word-spacing:-16.374528pt;}
.wsf{word-spacing:-16.368640pt;}
.ws10{word-spacing:-16.362752pt;}
.wsd{word-spacing:-16.356864pt;}
.wse{word-spacing:-16.350976pt;}
.ws7{word-spacing:-16.345088pt;}
.ws1d{word-spacing:-16.333312pt;}
.ws15{word-spacing:-16.327424pt;}
.ws11{word-spacing:-16.321536pt;}
.ws17{word-spacing:-16.256768pt;}
.wsb{word-spacing:-14.720000pt;}
.ws9{word-spacing:-12.127104pt;}
.ws3{word-spacing:-1.008000pt;}
.ws1e{word-spacing:-0.318720pt;}
.ws1b{word-spacing:-0.274688pt;}
.ws20{word-spacing:-0.252416pt;}
.ws1f{word-spacing:-0.106240pt;}
.ws1a{word-spacing:-0.074240pt;}
.ws1c{word-spacing:-0.058880pt;}
.ws5{word-spacing:-0.034560pt;}
.ws8{word-spacing:-0.026880pt;}
.ws1{word-spacing:0.000000pt;}
.ws4{word-spacing:3.504000pt;}
.ws2{word-spacing:5.808000pt;}
._2{margin-left:-4.554667pt;}
._1{margin-left:-2.560000pt;}
._0{margin-left:-1.280000pt;}
._3{width:0.967680pt;}
.fs8{font-size:26.880000pt;}
.fs7{font-size:34.560000pt;}
.fs9{font-size:42.240000pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.760000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fsb{font-size:74.240000pt;}
.fs2{font-size:74.666667pt;}
.fsa{font-size:85.760000pt;}
.fsd{font-size:96.000000pt;}
.fsc{font-size:106.240000pt;}
.fs0{font-size:128.000000pt;}
.fs5{font-size:138.240000pt;}
.y14a{bottom:-11.413333pt;}
.ya4{bottom:-10.880000pt;}
.yb4{bottom:-8.266667pt;}
.y159{bottom:-8.160000pt;}
.y99{bottom:-8.000000pt;}
.y97{bottom:-7.946667pt;}
.y16a{bottom:-7.893333pt;}
.y19e{bottom:-7.786667pt;}
.y1d6{bottom:-7.626667pt;}
.yd9{bottom:-7.360000pt;}
.y1d7{bottom:-7.306667pt;}
.y74{bottom:-7.253333pt;}
.y89{bottom:-7.200000pt;}
.ya6{bottom:-5.493333pt;}
.y129{bottom:-3.573333pt;}
.y0{bottom:0.000000pt;}
.yd8{bottom:3.200000pt;}
.yc8{bottom:4.746667pt;}
.y3e{bottom:6.506667pt;}
.y3c{bottom:6.720000pt;}
.y3a{bottom:6.933333pt;}
.y41{bottom:7.466667pt;}
.y15b{bottom:7.573333pt;}
.y16c{bottom:7.626667pt;}
.y201{bottom:10.133333pt;}
.yb6{bottom:14.560000pt;}
.y38{bottom:15.146667pt;}
.yef{bottom:16.640000pt;}
.y40{bottom:27.626667pt;}
.ya2{bottom:29.066667pt;}
.yc6{bottom:50.293333pt;}
.yb{bottom:53.760000pt;}
.ya{bottom:53.872533pt;}
.y9{bottom:68.272533pt;}
.y8{bottom:82.672533pt;}
.y7{bottom:97.072533pt;}
.y35{bottom:98.560000pt;}
.y1eb{bottom:99.840000pt;}
.y196{bottom:103.680000pt;}
.y34{bottom:111.360000pt;}
.y148{bottom:112.000000pt;}
.yc4{bottom:113.280000pt;}
.y1b1{bottom:113.920000pt;}
.y1bd{bottom:116.160000pt;}
.y109{bottom:117.440000pt;}
.yee{bottom:120.000000pt;}
.y195{bottom:124.160000pt;}
.y168{bottom:124.800000pt;}
.y33{bottom:125.440000pt;}
.y87{bottom:131.840000pt;}
.y147{bottom:132.160000pt;}
.yc3{bottom:133.760000pt;}
.y1b0{bottom:135.040000pt;}
.y1bc{bottom:136.320000pt;}
.y1ea{bottom:136.960000pt;}
.y108{bottom:137.600000pt;}
.y212{bottom:141.120000pt;}
.y32{bottom:141.440000pt;}
.y1d4{bottom:143.680000pt;}
.y194{bottom:144.320000pt;}
.y167{bottom:144.960000pt;}
.y31{bottom:151.680000pt;}
.y86{bottom:152.000000pt;}
.y146{bottom:152.320000pt;}
.yc2{bottom:153.920000pt;}
.y1ff{bottom:154.880000pt;}
.y1af{bottom:155.200000pt;}
.y1bb{bottom:156.480000pt;}
.y107{bottom:158.080000pt;}
.y211{bottom:163.520000pt;}
.y1d3{bottom:163.840000pt;}
.y193{bottom:164.480000pt;}
.y166{bottom:165.120000pt;}
.y215{bottom:165.440000pt;}
.y19c{bottom:165.760000pt;}
.y85{bottom:172.160000pt;}
.y145{bottom:172.480000pt;}
.yc1{bottom:174.080000pt;}
.y1ae{bottom:175.360000pt;}
.y1ba{bottom:176.640000pt;}
.y127{bottom:177.280000pt;}
.y106{bottom:178.240000pt;}
.y95{bottom:178.560000pt;}
.y1d2{bottom:180.480000pt;}
.y1fe{bottom:180.800000pt;}
.y192{bottom:184.640000pt;}
.y165{bottom:185.600000pt;}
.y19b{bottom:185.920000pt;}
.y72{bottom:186.240000pt;}
.y30{bottom:187.840000pt;}
.yc0{bottom:190.720000pt;}
.y144{bottom:192.960000pt;}
.y94{bottom:195.200000pt;}
.y1b9{bottom:197.120000pt;}
.y126{bottom:197.440000pt;}
.yb2{bottom:198.400000pt;}
.y84{bottom:199.680000pt;}
.y17f{bottom:203.840000pt;}
.y191{bottom:205.120000pt;}
.y164{bottom:205.760000pt;}
.y19a{bottom:206.400000pt;}
.y2f{bottom:209.280000pt;}
.y143{bottom:213.120000pt;}
.y73{bottom:213.333333pt;}
.y1e9{bottom:214.400000pt;}
.yc5{bottom:214.666667pt;}
.y1c7{bottom:216.320000pt;}
.y1b8{bottom:217.280000pt;}
.y125{bottom:217.600000pt;}
.y105{bottom:218.560000pt;}
.y1ad{bottom:220.160000pt;}
.yb1{bottom:221.120000pt;}
.y17e{bottom:225.280000pt;}
.y163{bottom:225.920000pt;}
.y199{bottom:226.560000pt;}
.y2e{bottom:231.040000pt;}
.y142{bottom:233.280000pt;}
.y1e8{bottom:234.560000pt;}
.y1ac{bottom:236.800000pt;}
.y1b7{bottom:237.440000pt;}
.y124{bottom:237.760000pt;}
.y104{bottom:239.040000pt;}
.y83{bottom:244.800000pt;}
.y17d{bottom:245.440000pt;}
.y214{bottom:246.400000pt;}
.y198{bottom:246.720000pt;}
.y2d{bottom:252.480000pt;}
.y141{bottom:253.440000pt;}
.y1e7{bottom:254.720000pt;}
.y1b6{bottom:257.600000pt;}
.y123{bottom:258.240000pt;}
.y103{bottom:259.200000pt;}
.y6a{bottom:260.480000pt;}
.y197{bottom:263.360000pt;}
.y82{bottom:264.960000pt;}
.y17c{bottom:265.600000pt;}
.y213{bottom:266.560000pt;}
.y140{bottom:273.920000pt;}
.y2c{bottom:274.240000pt;}
.y1e6{bottom:274.880000pt;}
.y122{bottom:278.400000pt;}
.y102{bottom:279.360000pt;}
.y1fd{bottom:281.600000pt;}
.y81{bottom:285.440000pt;}
.y17b{bottom:285.760000pt;}
.y190{bottom:286.080000pt;}
.y69{bottom:286.720000pt;}
.y13f{bottom:294.080000pt;}
.y1e5{bottom:295.360000pt;}
.y2b{bottom:295.680000pt;}
.y121{bottom:298.560000pt;}
.y101{bottom:299.520000pt;}
.y1fc{bottom:305.920000pt;}
.y17a{bottom:306.240000pt;}
.y68{bottom:306.880000pt;}
.ya0{bottom:311.360000pt;}
.y13e{bottom:314.240000pt;}
.y1e4{bottom:315.520000pt;}
.y2a{bottom:317.440000pt;}
.y120{bottom:318.720000pt;}
.y162{bottom:319.040000pt;}
.y100{bottom:320.000000pt;}
.y179{bottom:326.400000pt;}
.y67{bottom:327.360000pt;}
.y9f{bottom:328.000000pt;}
.y1fb{bottom:333.440000pt;}
.y13d{bottom:334.400000pt;}
.y161{bottom:335.680000pt;}
.y29{bottom:338.880000pt;}
.y11f{bottom:339.200000pt;}
.yff{bottom:340.160000pt;}
.y18f{bottom:346.560000pt;}
.y66{bottom:347.520000pt;}
.yd6{bottom:349.760000pt;}
.y178{bottom:350.720000pt;}
.y19d{bottom:354.666667pt;}
.y13c{bottom:354.880000pt;}
.y1e3{bottom:355.840000pt;}
.yfe{bottom:356.800000pt;}
.y11e{bottom:359.360000pt;}
.y1c6{bottom:360.320000pt;}
.y28{bottom:360.640000pt;}
.yed{bottom:363.520000pt;}
.y157{bottom:364.800000pt;}
.y18e{bottom:367.040000pt;}
.y65{bottom:367.680000pt;}
.yd5{bottom:369.920000pt;}
.y13b{bottom:375.040000pt;}
.y1e2{bottom:376.320000pt;}
.y11d{bottom:379.520000pt;}
.y1c5{bottom:380.480000pt;}
.y27{bottom:382.080000pt;}
.y1fa{bottom:382.720000pt;}
.yec{bottom:383.680000pt;}
.y156{bottom:384.960000pt;}
.y18d{bottom:387.200000pt;}
.y64{bottom:387.840000pt;}
.yd4{bottom:390.080000pt;}
.yc7{bottom:393.333333pt;}
.y13a{bottom:395.200000pt;}
.y1e1{bottom:396.480000pt;}
.y1c4{bottom:397.120000pt;}
.y177{bottom:399.360000pt;}
.y11c{bottom:399.680000pt;}
.y26{bottom:403.840000pt;}
.yeb{bottom:404.160000pt;}
.y155{bottom:405.120000pt;}
.y210{bottom:406.080000pt;}
.y1f9{bottom:407.040000pt;}
.y18c{bottom:407.360000pt;}
.y63{bottom:408.320000pt;}
.yd3{bottom:410.240000pt;}
.y1e0{bottom:413.440000pt;}
.y139{bottom:415.360000pt;}
.y176{bottom:416.000000pt;}
.y11b{bottom:420.160000pt;}
.yea{bottom:424.320000pt;}
.y25{bottom:425.280000pt;}
.y20f{bottom:426.240000pt;}
.y18b{bottom:427.520000pt;}
.y62{bottom:428.480000pt;}
.yd2{bottom:430.720000pt;}
.y1f8{bottom:431.360000pt;}
.y1ab{bottom:433.600000pt;}
.y138{bottom:435.840000pt;}
.y11a{bottom:440.320000pt;}
.ye9{bottom:444.480000pt;}
.y154{bottom:445.760000pt;}
.y20e{bottom:446.400000pt;}
.y24{bottom:447.040000pt;}
.y18a{bottom:448.000000pt;}
.y61{bottom:448.640000pt;}
.ya1{bottom:449.333333pt;}
.y1f7{bottom:451.520000pt;}
.y1aa{bottom:453.760000pt;}
.y137{bottom:456.000000pt;}
.y71{bottom:456.320000pt;}
.ybf{bottom:456.960000pt;}
.y1df{bottom:459.520000pt;}
.y119{bottom:460.480000pt;}
.ye8{bottom:464.640000pt;}
.y153{bottom:465.920000pt;}
.y189{bottom:468.160000pt;}
.y23{bottom:468.480000pt;}
.y60{bottom:468.800000pt;}
.y20d{bottom:470.720000pt;}
.y1f6{bottom:471.680000pt;}
.y1a9{bottom:474.240000pt;}
.y70{bottom:476.480000pt;}
.ybe{bottom:477.120000pt;}
.yb3{bottom:478.666667pt;}
.y1de{bottom:479.680000pt;}
.y118{bottom:480.640000pt;}
.y136{bottom:482.560000pt;}
.ye7{bottom:485.120000pt;}
.y152{bottom:486.080000pt;}
.y188{bottom:488.320000pt;}
.y5f{bottom:489.280000pt;}
.y22{bottom:490.240000pt;}
.y20c{bottom:490.880000pt;}
.y1f5{bottom:492.160000pt;}
.y1a8{bottom:494.400000pt;}
.y1be{bottom:496.000000pt;}
.ybd{bottom:497.600000pt;}
.yb0{bottom:499.520000pt;}
.y1dd{bottom:499.840000pt;}
.y117{bottom:501.120000pt;}
.y6f{bottom:504.000000pt;}
.ye6{bottom:505.280000pt;}
.y151{bottom:506.240000pt;}
.y175{bottom:506.560000pt;}
.y187{bottom:508.480000pt;}
.y1f4{bottom:508.800000pt;}
.y5e{bottom:509.440000pt;}
.y21{bottom:511.680000pt;}
.y1a7{bottom:514.560000pt;}
.ybc{bottom:517.760000pt;}
.y224{bottom:518.080000pt;}
.y20b{bottom:518.400000pt;}
.yaf{bottom:519.680000pt;}
.y1dc{bottom:520.320000pt;}
.y116{bottom:521.280000pt;}
.y135{bottom:522.240000pt;}
.ye5{bottom:525.440000pt;}
.y150{bottom:526.720000pt;}
.y1d1{bottom:527.040000pt;}
.y186{bottom:528.960000pt;}
.y5d{bottom:529.600000pt;}
.y20{bottom:533.440000pt;}
.y96{bottom:534.666667pt;}
.y1a6{bottom:534.720000pt;}
.ybb{bottom:537.920000pt;}
.y223{bottom:538.240000pt;}
.yae{bottom:539.840000pt;}
.y1b5{bottom:540.480000pt;}
.y115{bottom:541.440000pt;}
.y134{bottom:542.400000pt;}
.ye4{bottom:545.600000pt;}
.y14f{bottom:546.880000pt;}
.y1d0{bottom:547.200000pt;}
.y158{bottom:548.000000pt;}
.y6e{bottom:549.120000pt;}
.y5c{bottom:549.760000pt;}
.y80{bottom:554.560000pt;}
.y1f{bottom:554.880000pt;}
.y93{bottom:557.440000pt;}
.yba{bottom:558.080000pt;}
.y222{bottom:558.400000pt;}
.yad{bottom:560.000000pt;}
.y1b4{bottom:560.960000pt;}
.y1a5{bottom:561.280000pt;}
.y114{bottom:561.600000pt;}
.y133{bottom:562.880000pt;}
.y20a{bottom:566.400000pt;}
.y14e{bottom:567.040000pt;}
.y1cf{bottom:567.680000pt;}
.y1db{bottom:568.000000pt;}
.y6d{bottom:569.280000pt;}
.y5b{bottom:570.240000pt;}
.y185{bottom:571.520000pt;}
.ye3{bottom:572.160000pt;}
.y7f{bottom:574.720000pt;}
.y1e{bottom:576.640000pt;}
.y92{bottom:577.600000pt;}
.yb9{bottom:578.560000pt;}
.y221{bottom:578.880000pt;}
.y1b3{bottom:581.120000pt;}
.y113{bottom:582.080000pt;}
.y132{bottom:583.040000pt;}
.y14d{bottom:587.200000pt;}
.yac{bottom:587.520000pt;}
.y1ce{bottom:587.840000pt;}
.y6c{bottom:589.760000pt;}
.y5a{bottom:590.400000pt;}
.y184{bottom:594.240000pt;}
.y7e{bottom:594.880000pt;}
.y1d{bottom:598.080000pt;}
.y220{bottom:598.400000pt;}
.yb8{bottom:598.720000pt;}
.y1a4{bottom:601.280000pt;}
.y112{bottom:602.240000pt;}
.y131{bottom:603.200000pt;}
.y14c{bottom:607.680000pt;}
.y1cd{bottom:608.000000pt;}
.y1da{bottom:609.600000pt;}
.y6b{bottom:609.920000pt;}
.y59{bottom:610.560000pt;}
.ye2{bottom:612.160000pt;}
.y183{bottom:614.400000pt;}
.y7d{bottom:615.360000pt;}
.y1c8{bottom:616.000000pt;}
.y21f{bottom:617.920000pt;}
.y91{bottom:618.240000pt;}
.y1c{bottom:619.840000pt;}
.y1a3{bottom:621.440000pt;}
.y111{bottom:622.400000pt;}
.y130{bottom:623.360000pt;}
.yb7{bottom:626.240000pt;}
.y14b{bottom:627.840000pt;}
.y1cc{bottom:628.160000pt;}
.y58{bottom:630.720000pt;}
.y160{bottom:631.040000pt;}
.y174{bottom:632.000000pt;}
.ye1{bottom:632.320000pt;}
.yab{bottom:632.640000pt;}
.y182{bottom:634.560000pt;}
.y7c{bottom:635.520000pt;}
.y1b2{bottom:638.400000pt;}
.y1b{bottom:641.280000pt;}
.y1a2{bottom:641.600000pt;}
.y110{bottom:642.560000pt;}
.y12f{bottom:643.840000pt;}
.y21e{bottom:645.120000pt;}
.y90{bottom:645.760000pt;}
.yd7{bottom:648.000000pt;}
.y1cb{bottom:648.640000pt;}
.y57{bottom:651.200000pt;}
.ye0{bottom:652.480000pt;}
.yaa{bottom:653.120000pt;}
.y181{bottom:655.040000pt;}
.y7b{bottom:655.680000pt;}
.y173{bottom:656.320000pt;}
.y1a{bottom:663.040000pt;}
.y12e{bottom:664.000000pt;}
.y1a1{bottom:664.320000pt;}
.ya5{bottom:665.333333pt;}
.y1c3{bottom:666.240000pt;}
.yfd{bottom:668.160000pt;}
.y1ca{bottom:668.800000pt;}
.y56{bottom:671.360000pt;}
.ydf{bottom:672.640000pt;}
.ya9{bottom:673.280000pt;}
.y180{bottom:675.200000pt;}
.y7a{bottom:675.840000pt;}
.y172{bottom:676.480000pt;}
.y10f{bottom:683.200000pt;}
.y12d{bottom:684.160000pt;}
.y19{bottom:684.480000pt;}
.y1c9{bottom:685.440000pt;}
.y1c2{bottom:686.400000pt;}
.yfc{bottom:688.640000pt;}
.y9e{bottom:690.240000pt;}
.y8f{bottom:690.880000pt;}
.y55{bottom:691.520000pt;}
.y15f{bottom:691.840000pt;}
.yde{bottom:693.120000pt;}
.ya8{bottom:693.440000pt;}
.y171{bottom:696.960000pt;}
.y200{bottom:698.666667pt;}
.y10e{bottom:699.840000pt;}
.y79{bottom:703.360000pt;}
.y12c{bottom:704.320000pt;}
.y1a0{bottom:704.640000pt;}
.y1c1{bottom:706.560000pt;}
.y18{bottom:708.480000pt;}
.yfb{bottom:708.800000pt;}
.y21d{bottom:710.400000pt;}
.y9d{bottom:710.720000pt;}
.y8e{bottom:711.040000pt;}
.y54{bottom:711.680000pt;}
.y15e{bottom:712.000000pt;}
.ydd{bottom:713.280000pt;}
.ya7{bottom:713.600000pt;}
.y170{bottom:717.120000pt;}
.y19f{bottom:721.280000pt;}
.y12b{bottom:724.800000pt;}
.y17{bottom:726.080000pt;}
.y1c0{bottom:726.720000pt;}
.yfa{bottom:728.960000pt;}
.y21c{bottom:730.560000pt;}
.y15a{bottom:730.666667pt;}
.y9c{bottom:730.880000pt;}
.y8d{bottom:731.200000pt;}
.y53{bottom:732.160000pt;}
.ydc{bottom:733.440000pt;}
.yd1{bottom:733.760000pt;}
.y16f{bottom:737.280000pt;}
.y209{bottom:740.480000pt;}
.y12a{bottom:741.440000pt;}
.y16{bottom:743.680000pt;}
.y78{bottom:744.960000pt;}
.y9b{bottom:747.200000pt;}
.yf9{bottom:749.120000pt;}
.y21b{bottom:751.040000pt;}
.y8c{bottom:751.680000pt;}
.y52{bottom:752.320000pt;}
.ydb{bottom:753.600000pt;}
.yd0{bottom:753.920000pt;}
.y1f3{bottom:755.200000pt;}
.y16e{bottom:757.440000pt;}
.y208{bottom:760.640000pt;}
.y15{bottom:761.280000pt;}
.y44{bottom:761.920000pt;}
.y1bf{bottom:763.840000pt;}
.y149{bottom:765.333333pt;}
.yf8{bottom:769.600000pt;}
.y21a{bottom:771.200000pt;}
.y8b{bottom:771.840000pt;}
.y51{bottom:772.480000pt;}
.y15d{bottom:772.800000pt;}
.ycf{bottom:774.080000pt;}
.y1f2{bottom:775.360000pt;}
.y14{bottom:778.880000pt;}
.y207{bottom:781.120000pt;}
.y16d{bottom:784.960000pt;}
.y43{bottom:788.160000pt;}
.y8a{bottom:788.480000pt;}
.y15c{bottom:789.440000pt;}
.yf7{bottom:789.760000pt;}
.yda{bottom:790.720000pt;}
.y219{bottom:791.360000pt;}
.y50{bottom:792.640000pt;}
.yce{bottom:794.560000pt;}
.y1f1{bottom:795.520000pt;}
.y88{bottom:796.000000pt;}
.y13{bottom:796.480000pt;}
.y1d5{bottom:798.666667pt;}
.y206{bottom:801.280000pt;}
.y4{bottom:802.424133pt;}
.y98{bottom:808.000000pt;}
.y42{bottom:808.640000pt;}
.yf6{bottom:809.920000pt;}
.y218{bottom:811.520000pt;}
.y4f{bottom:813.120000pt;}
.y12{bottom:814.080000pt;}
.ycd{bottom:814.720000pt;}
.y1f0{bottom:816.000000pt;}
.y205{bottom:821.440000pt;}
.y3f{bottom:829.333333pt;}
.yf5{bottom:830.080000pt;}
.ycc{bottom:831.360000pt;}
.y1{bottom:833.222133pt;}
.y4e{bottom:833.280000pt;}
.y11{bottom:834.560000pt;}
.y217{bottom:839.360000pt;}
.y1ef{bottom:843.200000pt;}
.y204{bottom:848.960000pt;}
.yf4{bottom:850.560000pt;}
.yb5{bottom:852.000000pt;}
.y4d{bottom:853.440000pt;}
.y10{bottom:854.720000pt;}
.y128{bottom:865.333333pt;}
.yf3{bottom:870.720000pt;}
.y203{bottom:872.000000pt;}
.y4c{bottom:873.600000pt;}
.y3d{bottom:885.333333pt;}
.y216{bottom:886.080000pt;}
.yf{bottom:887.680000pt;}
.ya3{bottom:888.000000pt;}
.y1ee{bottom:888.640000pt;}
.yf2{bottom:890.880000pt;}
.y4b{bottom:894.080000pt;}
.y169{bottom:901.333333pt;}
.yf1{bottom:911.040000pt;}
.y4a{bottom:914.240000pt;}
.y1ed{bottom:917.440000pt;}
.y3b{bottom:920.000000pt;}
.y1d9{bottom:924.160000pt;}
.ye{bottom:930.240000pt;}
.yf0{bottom:931.520000pt;}
.y49{bottom:934.400000pt;}
.y1ec{bottom:938.880000pt;}
.y1d8{bottom:944.640000pt;}
.ycb{bottom:951.680000pt;}
.y48{bottom:954.560000pt;}
.y39{bottom:954.666667pt;}
.y202{bottom:960.960000pt;}
.yd{bottom:961.920000pt;}
.y10d{bottom:964.800000pt;}
.yca{bottom:971.840000pt;}
.y47{bottom:975.040000pt;}
.y77{bottom:981.440000pt;}
.y10c{bottom:984.960000pt;}
.y16b{bottom:985.333333pt;}
.y37{bottom:989.333333pt;}
.yc9{bottom:992.000000pt;}
.y46{bottom:995.200000pt;}
.y76{bottom:1001.600000pt;}
.y10b{bottom:1005.120000pt;}
.y9a{bottom:1012.480000pt;}
.yc{bottom:1013.760000pt;}
.y45{bottom:1026.560000pt;}
.y75{bottom:1029.120000pt;}
.y10a{bottom:1031.680000pt;}
.y36{bottom:1032.640000pt;}
.y6{bottom:1033.316667pt;}
.y2{bottom:1038.836800pt;}
.y5{bottom:1052.516667pt;}
.y3{bottom:1059.316800pt;}
.h1f{height:2.666667pt;}
.h17{height:4.000000pt;}
.h20{height:5.333333pt;}
.h15{height:6.666667pt;}
.h18{height:9.333333pt;}
.h1e{height:10.666667pt;}
.h1c{height:17.333333pt;}
.h1b{height:20.000000pt;}
.h11{height:21.333333pt;}
.h21{height:25.333333pt;}
.h22{height:26.666667pt;}
.hd{height:26.863360pt;}
.hf{height:29.333333pt;}
.h27{height:30.666667pt;}
.hb{height:37.632000pt;}
.h6{height:38.400000pt;}
.he{height:39.663360pt;}
.h19{height:40.000000pt;}
.h9{height:42.320000pt;}
.h23{height:42.393600pt;}
.h10{height:42.538535pt;}
.h12{height:42.666667pt;}
.h1d{height:44.000000pt;}
.h3{height:46.080000pt;}
.h5{height:46.151111pt;}
.h14{height:53.535289pt;}
.hc{height:55.288320pt;}
.h4{height:59.733333pt;}
.h13{height:61.842489pt;}
.h28{height:63.984375pt;}
.h16{height:68.000000pt;}
.h25{height:74.368000pt;}
.h26{height:75.841250pt;}
.h24{height:89.600000pt;}
.h2{height:92.160000pt;}
.ha{height:99.532800pt;}
.h1a{height:110.666667pt;}
.h8{height:1122.000000pt;}
.h7{height:1122.240000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w10{width:22.666667pt;}
.wc{width:24.000000pt;}
.w12{width:25.333333pt;}
.wb{width:29.333333pt;}
.w19{width:34.666667pt;}
.w17{width:36.000000pt;}
.wf{width:40.000000pt;}
.wa{width:49.333333pt;}
.w8{width:52.000000pt;}
.w18{width:53.333333pt;}
.w15{width:58.666667pt;}
.w7{width:74.666667pt;}
.w13{width:82.666667pt;}
.w4{width:92.000000pt;}
.w9{width:109.333333pt;}
.we{width:122.666667pt;}
.wd{width:125.333333pt;}
.w14{width:148.000000pt;}
.w16{width:154.666667pt;}
.w11{width:170.666667pt;}
.w5{width:214.666667pt;}
.w6{width:325.333333pt;}
.w3{width:632.000000pt;}
.w0{width:793.701333pt;}
.w2{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.026699pt;}
.x13{left:7.146795pt;}
.x30{left:10.919925pt;}
.x26{left:12.373227pt;}
.x24{left:14.566507pt;}
.x4c{left:17.060053pt;}
.x42{left:18.146507pt;}
.x2c{left:19.706368pt;}
.x22{left:25.053333pt;}
.x1b{left:26.026667pt;}
.x39{left:29.146475pt;}
.x17{left:37.186837pt;}
.x36{left:41.133131pt;}
.x5{left:52.913333pt;}
.x20{left:55.039787pt;}
.x2a{left:61.239925pt;}
.x28{left:62.439765pt;}
.x37{left:73.773547pt;}
.x3d{left:77.146805pt;}
.x33{left:85.413227pt;}
.x38{left:93.333333pt;}
.x34{left:94.666667pt;}
.x7{left:96.000000pt;}
.x10{left:97.333333pt;}
.x46{left:100.000000pt;}
.x27{left:102.666667pt;}
.x2b{left:104.000000pt;}
.x29{left:106.666667pt;}
.xc{left:120.000000pt;}
.x16{left:122.666667pt;}
.xd{left:144.000000pt;}
.x9{left:151.546880pt;}
.x1{left:168.084800pt;}
.x3c{left:170.666667pt;}
.x1e{left:185.333333pt;}
.x12{left:189.333333pt;}
.x3a{left:193.279936pt;}
.xa{left:204.921888pt;}
.x40{left:213.333333pt;}
.x8{left:216.000000pt;}
.x4{left:225.194667pt;}
.x6{left:232.440933pt;}
.x2f{left:262.666667pt;}
.x1f{left:273.333333pt;}
.x35{left:281.333333pt;}
.xe{left:288.000000pt;}
.x2e{left:289.279936pt;}
.x31{left:290.666667pt;}
.x45{left:296.000000pt;}
.x1a{left:301.333333pt;}
.x49{left:315.839872pt;}
.x32{left:317.333333pt;}
.x3b{left:361.920000pt;}
.x21{left:370.666667pt;}
.xb{left:396.966400pt;}
.x14{left:404.000000pt;}
.x4a{left:463.040000pt;}
.x41{left:464.966400pt;}
.x4d{left:548.486720pt;}
.x15{left:551.040000pt;}
.x18{left:559.040000pt;}
.x3{left:574.678133pt;}
.x19{left:582.566400pt;}
.x3e{left:602.246400pt;}
.x44{left:612.166720pt;}
.x2{left:630.662133pt;}
.x1c{left:642.886400pt;}
.x23{left:657.333333pt;}
.x47{left:667.200000pt;}
.x25{left:673.333333pt;}
.x4b{left:676.480000pt;}
.x43{left:678.400000pt;}
.x2d{left:681.619520pt;}
.x3f{left:683.840000pt;}
.xf{left:689.776320pt;}
.x48{left:691.520000pt;}
.x1d{left:697.920000pt;}
}




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