
    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_a3470efe1ea05ae792f03e22.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_152db21f16fdce3f7a2f5659.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.745605;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_4da06d266c607fd42fd9198b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.834473;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_17005ed26e94f6170f24379e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691895;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_2751223a9bdea31312c53341.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7937cb95f1e769e70e26c8a3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9bd89e63af8841449f0eca4b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.895996;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_5b12e23dc35f891d36c33441.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4f156434f7072b6bf89b1f7b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ef31090619f3f1307ea261b9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.691406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_be8314781c2f418a4cf7b0bf.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_8810d61fe12d0943423ebf6a.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_7b12b1354601a82e35b810f8.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_ff2c8f10a3e444e37dedef99.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4502a915be455b415e01c2c8.woff2')format("woff");}.fff{font-family:fff;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_43bfc0d1fe78a2ff8af42348.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.895996;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_03913ff17564b43a7eeaa05e.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.401855;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-23.760000px;}
.va{vertical-align:-21.600000px;}
.v1{vertical-align:-19.440000px;}
.v7{vertical-align:-17.280000px;}
.v9{vertical-align:-14.400000px;}
.v13{vertical-align:-11.520000px;}
.vc{vertical-align:-10.080000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:12.960000px;}
.v12{vertical-align:14.400000px;}
.v10{vertical-align:21.600000px;}
.v2{vertical-align:23.760000px;}
.v8{vertical-align:25.200000px;}
.vf{vertical-align:28.800000px;}
.ve{vertical-align:30.240000px;}
.v11{vertical-align:32.400000px;}
.v14{vertical-align:38.880000px;}
.v15{vertical-align:40.320000px;}
.v5{vertical-align:41.760000px;}
.v3{vertical-align:43.200000px;}
.v6{vertical-align:45.360000px;}
.vb{vertical-align:48.960000px;}
.v16{vertical-align:51.840000px;}
.ls3d{letter-spacing:-1.980000px;}
.ls3a{letter-spacing:-1.884000px;}
.ls3c{letter-spacing:-1.260000px;}
.ls60{letter-spacing:-1.218000px;}
.lsf{letter-spacing:-0.828000px;}
.ls78{letter-spacing:-0.678000px;}
.ls58{letter-spacing:-0.654000px;}
.ls3b{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.453600px;}
.ls1c{letter-spacing:-0.435000px;}
.ls4b{letter-spacing:-0.430200px;}
.ls76{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.341400px;}
.ls34{letter-spacing:-0.337200px;}
.ls8{letter-spacing:-0.302400px;}
.ls4f{letter-spacing:-0.271200px;}
.ls2e{letter-spacing:-0.270600px;}
.ls44{letter-spacing:-0.270000px;}
.ls49{letter-spacing:-0.269400px;}
.ls26{letter-spacing:-0.247800px;}
.ls65{letter-spacing:-0.229800px;}
.ls2f{letter-spacing:-0.224400px;}
.ls19{letter-spacing:-0.217200px;}
.ls15{letter-spacing:-0.213600px;}
.ls1{letter-spacing:-0.186000px;}
.ls3f{letter-spacing:-0.183000px;}
.ls42{letter-spacing:-0.181200px;}
.ls33{letter-spacing:-0.180000px;}
.ls3e{letter-spacing:-0.177000px;}
.ls55{letter-spacing:-0.167400px;}
.ls71{letter-spacing:-0.155400px;}
.ls50{letter-spacing:-0.144000px;}
.ls18{letter-spacing:-0.142800px;}
.ls25{letter-spacing:-0.117600px;}
.lsd{letter-spacing:-0.115200px;}
.ls6f{letter-spacing:-0.110400px;}
.lse{letter-spacing:-0.109200px;}
.ls5a{letter-spacing:-0.106800px;}
.ls6b{letter-spacing:-0.053280px;}
.ls83{letter-spacing:-0.042600px;}
.ls23{letter-spacing:-0.037440px;}
.ls77{letter-spacing:-0.036000px;}
.ls7f{letter-spacing:-0.021300px;}
.ls81{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.018720px;}
.ls2a{letter-spacing:0.028080px;}
.ls8c{letter-spacing:0.031980px;}
.ls79{letter-spacing:0.037440px;}
.ls4d{letter-spacing:0.046680px;}
.ls69{letter-spacing:0.053280px;}
.ls70{letter-spacing:0.057600px;}
.ls43{letter-spacing:0.063360px;}
.ls52{letter-spacing:0.063600px;}
.ls64{letter-spacing:0.064800px;}
.ls4a{letter-spacing:0.090000px;}
.ls74{letter-spacing:0.108000px;}
.ls5c{letter-spacing:0.117000px;}
.ls41{letter-spacing:0.136200px;}
.ls7b{letter-spacing:0.137280px;}
.ls5e{letter-spacing:0.141000px;}
.ls67{letter-spacing:0.144000px;}
.ls40{letter-spacing:0.162000px;}
.ls48{letter-spacing:0.163440px;}
.ls5d{letter-spacing:0.168000px;}
.ls1d{letter-spacing:0.180000px;}
.ls62{letter-spacing:0.182880px;}
.ls6e{letter-spacing:0.195600px;}
.ls84{letter-spacing:0.208200px;}
.ls6d{letter-spacing:0.213000px;}
.ls39{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.217200px;}
.ls45{letter-spacing:0.218880px;}
.ls5b{letter-spacing:0.224400px;}
.ls5f{letter-spacing:0.227520px;}
.ls22{letter-spacing:0.238464px;}
.ls21{letter-spacing:0.241200px;}
.ls61{letter-spacing:0.254400px;}
.ls59{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.264960px;}
.ls27{letter-spacing:0.265800px;}
.ls51{letter-spacing:0.269400px;}
.ls47{letter-spacing:0.270000px;}
.ls35{letter-spacing:0.273600px;}
.ls14{letter-spacing:0.285000px;}
.ls13{letter-spacing:0.285120px;}
.ls7{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.288600px;}
.ls4{letter-spacing:0.296640px;}
.ls68{letter-spacing:0.301200px;}
.lsb{letter-spacing:0.302400px;}
.ls6{letter-spacing:0.305280px;}
.ls80{letter-spacing:0.309600px;}
.ls20{letter-spacing:0.322560px;}
.ls36{letter-spacing:0.330240px;}
.ls2b{letter-spacing:0.341400px;}
.ls31{letter-spacing:0.343440px;}
.ls1e{letter-spacing:0.360000px;}
.ls6c{letter-spacing:0.366000px;}
.ls72{letter-spacing:0.396000px;}
.ls63{letter-spacing:0.401760px;}
.ls38{letter-spacing:0.450000px;}
.ls37{letter-spacing:0.504000px;}
.ls32{letter-spacing:0.642240px;}
.ls8b{letter-spacing:0.678000px;}
.ls7a{letter-spacing:0.698688px;}
.ls2d{letter-spacing:0.738000px;}
.ls29{letter-spacing:0.738720px;}
.ls4e{letter-spacing:0.743328px;}
.ls56{letter-spacing:0.744000px;}
.ls53{letter-spacing:0.786000px;}
.ls17{letter-spacing:0.936000px;}
.ls87{letter-spacing:0.937440px;}
.ls46{letter-spacing:0.989280px;}
.ls7d{letter-spacing:1.062000px;}
.ls11{letter-spacing:1.222560px;}
.ls16{letter-spacing:1.224000px;}
.ls4c{letter-spacing:1.332000px;}
.ls7e{letter-spacing:1.458000px;}
.ls7c{letter-spacing:1.458720px;}
.ls57{letter-spacing:1.464000px;}
.ls9{letter-spacing:1.704000px;}
.ls6a{letter-spacing:1.709280px;}
.lsa{letter-spacing:1.938000px;}
.ls12{letter-spacing:1.942560px;}
.ls2c{letter-spacing:2.178000px;}
.ls30{letter-spacing:2.178720px;}
.ls82{letter-spacing:2.856000px;}
.ls54{letter-spacing:3.666000px;}
.ls86{letter-spacing:5.058720px;}
.ls85{letter-spacing:5.778720px;}
.ls8a{letter-spacing:12.258720px;}
.ls66{letter-spacing:13.320000px;}
.ls88{letter-spacing:15.122688px;}
.ls89{letter-spacing:15.818688px;}
.ls5{letter-spacing:16.142400px;}
.ls73{letter-spacing:16.380000px;}
.ls75{letter-spacing:21.660000px;}
.ls2{letter-spacing:61.081920px;}
.ls3{letter-spacing:61.502400px;}
.ls1f{letter-spacing:405.326688px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws49{word-spacing:-84.240000px;}
.ws11{word-spacing:-45.832320px;}
.ws28{word-spacing:-28.296000px;}
.ws5e{word-spacing:-27.339312px;}
.ws56{word-spacing:-26.981280px;}
.ws58{word-spacing:-26.970912px;}
.ws1e{word-spacing:-26.962680px;}
.ws5c{word-spacing:-26.829480px;}
.ws5f{word-spacing:-26.693292px;}
.ws5a{word-spacing:-26.661312px;}
.ws55{word-spacing:-26.658720px;}
.ws57{word-spacing:-26.640012px;}
.ws1f{word-spacing:-26.640000px;}
.ws1d{word-spacing:-26.621280px;}
.ws5b{word-spacing:-26.618712px;}
.ws59{word-spacing:-26.602560px;}
.ws2a{word-spacing:-26.138400px;}
.ws2c{word-spacing:-25.470000px;}
.ws25{word-spacing:-25.200000px;}
.ws2b{word-spacing:-25.020000px;}
.ws23{word-spacing:-24.840000px;}
.ws43{word-spacing:-24.808320px;}
.ws52{word-spacing:-24.516000px;}
.ws54{word-spacing:-24.372000px;}
.ws5d{word-spacing:-24.219360px;}
.ws53{word-spacing:-24.048000px;}
.ws20{word-spacing:-23.760120px;}
.ws21{word-spacing:-23.437440px;}
.ws1a{word-spacing:-23.418720px;}
.ws14{word-spacing:-23.381280px;}
.ws17{word-spacing:-23.341152px;}
.ws15{word-spacing:-23.077320px;}
.wsb{word-spacing:-22.753440px;}
.ws1{word-spacing:-22.618080px;}
.wse{word-spacing:-22.106040px;}
.wsd{word-spacing:-22.102440px;}
.ws3{word-spacing:-22.057632px;}
.wsf{word-spacing:-22.034640px;}
.ws4{word-spacing:-22.017600px;}
.ws7{word-spacing:-21.902400px;}
.ws12{word-spacing:-21.817440px;}
.ws4b{word-spacing:-21.783120px;}
.ws2{word-spacing:-21.715200px;}
.ws1b{word-spacing:-21.682920px;}
.wsc{word-spacing:-21.674640px;}
.wsa{word-spacing:-21.603840px;}
.ws6{word-spacing:-21.564000px;}
.ws10{word-spacing:-21.382440px;}
.ws2e{word-spacing:-21.234120px;}
.ws36{word-spacing:-21.145920px;}
.ws3d{word-spacing:-20.903352px;}
.ws3c{word-spacing:-20.856672px;}
.ws39{word-spacing:-20.816640px;}
.ws3a{word-spacing:-20.689272px;}
.ws34{word-spacing:-20.520000px;}
.ws33{word-spacing:-20.430000px;}
.ws30{word-spacing:-20.340000px;}
.ws37{word-spacing:-19.872000px;}
.ws47{word-spacing:-19.824240px;}
.ws18{word-spacing:-19.808232px;}
.ws40{word-spacing:-19.439760px;}
.ws46{word-spacing:-19.103040px;}
.ws22{word-spacing:-18.990960px;}
.ws48{word-spacing:-18.808440px;}
.ws29{word-spacing:-18.614880px;}
.ws8{word-spacing:-18.305520px;}
.ws2d{word-spacing:-17.814240px;}
.ws9{word-spacing:-17.586720px;}
.ws4f{word-spacing:-17.118480px;}
.ws50{word-spacing:-16.980480px;}
.ws3e{word-spacing:-16.873080px;}
.ws51{word-spacing:-16.767480px;}
.ws24{word-spacing:-16.613280px;}
.ws4a{word-spacing:-16.560000px;}
.ws3f{word-spacing:-16.506480px;}
.ws4c{word-spacing:-16.272000px;}
.ws16{word-spacing:-15.612480px;}
.ws2f{word-spacing:-15.188232px;}
.ws4e{word-spacing:-15.183240px;}
.ws41{word-spacing:-15.170784px;}
.ws5{word-spacing:-14.611680px;}
.ws13{word-spacing:-14.211360px;}
.ws3b{word-spacing:-13.851072px;}
.ws1c{word-spacing:-13.505760px;}
.ws19{word-spacing:-13.450752px;}
.ws38{word-spacing:-13.410720px;}
.ws31{word-spacing:-13.141320px;}
.ws44{word-spacing:-11.554080px;}
.ws42{word-spacing:-11.299680px;}
.ws4d{word-spacing:-10.791840px;}
.ws26{word-spacing:-9.100560px;}
.ws35{word-spacing:-9.040104px;}
.ws32{word-spacing:-8.807040px;}
.ws45{word-spacing:-7.159680px;}
.ws27{word-spacing:-6.346080px;}
.ws0{word-spacing:0.000000px;}
._e{margin-left:-2756.927760px;}
._14{margin-left:-804.163200px;}
._b{margin-left:-9.777600px;}
._d{margin-left:-8.660160px;}
._3{margin-left:-7.207200px;}
._8{margin-left:-5.529600px;}
._a{margin-left:-4.296240px;}
._1{margin-left:-2.613600px;}
._0{margin-left:-1.346400px;}
._4{width:1.243200px;}
._2{width:2.613600px;}
._c{width:3.843600px;}
._17{width:5.568480px;}
._12{width:7.003920px;}
._11{width:8.170560px;}
._7{width:10.141920px;}
._19{width:11.557440px;}
._13{width:12.895488px;}
._18{width:15.329172px;}
._6{width:16.997760px;}
._9{width:20.777760px;}
._10{width:22.199040px;}
._5{width:60.521760px;}
._16{width:254.454240px;}
._15{width:309.717120px;}
._f{width:411.804000px;}
.fc0{color:rgb(255,192,0);}
.fc1{color:rgb(255,255,255);}
.fcd{color:rgb(0,116,0);}
.fc3{color:rgb(0,0,0);}
.fc4{color:rgb(64,64,64);}
.fc5{color:rgb(38,38,38);}
.fc9{color:rgb(137,137,137);}
.fc2{color:rgb(0,102,0);}
.fca{color:rgb(0,76,0);}
.fc6{color:transparent;}
.fc7{color:rgb(0,146,66);}
.fc8{color:rgb(31,73,125);}
.fcb{color:rgb(255,102,0);}
.fcc{color:rgb(12,124,6);}
.fs11{font-size:5.760000px;}
.fs2f{font-size:12.240000px;}
.fsa{font-size:23.760000px;}
.fs29{font-size:28.080000px;}
.fs2c{font-size:30.240000px;}
.fs33{font-size:31.680000px;}
.fs2d{font-size:36.000000px;}
.fs22{font-size:40.320000px;}
.fs28{font-size:41.760000px;}
.fs39{font-size:41.904000px;}
.fs3b{font-size:42.480000px;}
.fs1b{font-size:48.240000px;}
.fs1f{font-size:48.384000px;}
.fs3a{font-size:49.824000px;}
.fs13{font-size:51.120000px;}
.fs8{font-size:52.560000px;}
.fs27{font-size:54.000000px;}
.fs30{font-size:54.144000px;}
.fs1c{font-size:56.160000px;}
.fs20{font-size:56.304000px;}
.fs16{font-size:56.880000px;}
.fs18{font-size:59.760000px;}
.fs17{font-size:63.360000px;}
.fs2e{font-size:64.080000px;}
.fsb{font-size:66.240000px;}
.fs21{font-size:66.384000px;}
.fs2b{font-size:66.960000px;}
.fs26{font-size:69.120000px;}
.fs6{font-size:72.000000px;}
.fs1e{font-size:72.144000px;}
.fs15{font-size:74.160000px;}
.fs14{font-size:74.304000px;}
.fs9{font-size:74.880000px;}
.fs12{font-size:75.024000px;}
.fsf{font-size:77.040000px;}
.fs10{font-size:78.480000px;}
.fs0{font-size:79.200000px;}
.fs5{font-size:79.344000px;}
.fs4{font-size:81.360000px;}
.fsd{font-size:84.240000px;}
.fs1d{font-size:84.384000px;}
.fse{font-size:87.120000px;}
.fs3{font-size:90.000000px;}
.fs31{font-size:90.144000px;}
.fs7{font-size:91.440000px;}
.fs23{font-size:95.760000px;}
.fs1a{font-size:95.904000px;}
.fs2a{font-size:100.800000px;}
.fs2{font-size:102.240000px;}
.fsc{font-size:108.000000px;}
.fs3c{font-size:108.144000px;}
.fs38{font-size:120.240000px;}
.fs32{font-size:120.384000px;}
.fs35{font-size:131.760000px;}
.fs36{font-size:131.904000px;}
.fs19{font-size:156.240000px;}
.fs37{font-size:167.760000px;}
.fs24{font-size:192.240000px;}
.fs25{font-size:252.000000px;}
.fs34{font-size:264.240000px;}
.fs1{font-size:419.904000px;}
.ya2{bottom:-70.524000px;}
.ya1{bottom:-39.024000px;}
.ya0{bottom:-10.224000px;}
.y0{bottom:0.000000px;}
.y9f{bottom:18.576000px;}
.y4a{bottom:28.548000px;}
.y9e{bottom:47.412000px;}
.y5c{bottom:48.852000px;}
.y14{bottom:51.516000px;}
.yda{bottom:52.236000px;}
.yd7{bottom:55.512000px;}
.y49{bottom:60.048000px;}
.y83{bottom:63.936000px;}
.yaa{bottom:65.160000px;}
.y5b{bottom:75.492000px;}
.y9d{bottom:76.212000px;}
.yae{bottom:80.820000px;}
.y60{bottom:89.640000px;}
.yde{bottom:91.404000px;}
.y73{bottom:91.476000px;}
.y13{bottom:92.808000px;}
.y48{bottom:97.992000px;}
.y5a{bottom:102.312000px;}
.yad{bottom:102.600000px;}
.y9c{bottom:109.872000px;}
.yac{bottom:113.220000px;}
.y59{bottom:114.912000px;}
.y84{bottom:117.576000px;}
.y72{bottom:120.132000px;}
.y12{bottom:123.588000px;}
.y47{bottom:125.532000px;}
.y2b{bottom:128.988000px;}
.ye3{bottom:135.756000px;}
.y11{bottom:146.268000px;}
.y71{bottom:150.375000px;}
.y46{bottom:155.775000px;}
.y2a{bottom:157.290000px;}
.y9b{bottom:157.755000px;}
.y58{bottom:158.475000px;}
.ydd{bottom:163.830000px;}
.y70{bottom:168.555000px;}
.ya9{bottom:171.795000px;}
.y29{bottom:177.555000px;}
.ydf{bottom:178.380000px;}
.yd6{bottom:179.925000px;}
.y93{bottom:183.630000px;}
.y45{bottom:183.885000px;}
.ydc{bottom:190.875000px;}
.y92{bottom:196.410000px;}
.y9a{bottom:197.385000px;}
.y5d{bottom:198.030000px;}
.y6f{bottom:201.675000px;}
.y44{bottom:203.325000px;}
.y8f{bottom:204.270000px;}
.y91{bottom:206.895000px;}
.y28{bottom:210.315000px;}
.y34{bottom:211.215000px;}
.y2f{bottom:211.350000px;}
.y6e{bottom:216.435000px;}
.yd5{bottom:216.465000px;}
.y8e{bottom:217.080000px;}
.ydb{bottom:217.875000px;}
.y2e{bottom:227.010000px;}
.y8d{bottom:227.520000px;}
.y90{bottom:229.395000px;}
.y6d{bottom:230.835000px;}
.y43{bottom:231.405000px;}
.y7d{bottom:233.670000px;}
.y99{bottom:234.645000px;}
.y33{bottom:238.215000px;}
.y81{bottom:240.735000px;}
.yd4{bottom:242.565000px;}
.y27{bottom:242.895000px;}
.y57{bottom:245.805000px;}
.y7c{bottom:247.575000px;}
.y42{bottom:249.405000px;}
.y2d{bottom:251.850000px;}
.y7b{bottom:253.155000px;}
.y32{bottom:261.255000px;}
.y98{bottom:263.445000px;}
.y6c{bottom:266.505000px;}
.y41{bottom:272.445000px;}
.y2c{bottom:272.550000px;}
.y26{bottom:275.475000px;}
.yd3{bottom:281.445000px;}
.y80{bottom:291.810000px;}
.y97{bottom:291.885000px;}
.y31{bottom:292.350000px;}
.y4{bottom:299.985000px;}
.ybb{bottom:301.245000px;}
.y6b{bottom:302.145000px;}
.y40{bottom:303.225000px;}
.y89{bottom:305.100000px;}
.y7f{bottom:305.715000px;}
.y25{bottom:308.055000px;}
.y56{bottom:309.345000px;}
.y7e{bottom:311.295000px;}
.yec{bottom:312.690000px;}
.y30{bottom:318.630000px;}
.yd2{bottom:320.370000px;}
.y96{bottom:330.450000px;}
.y3{bottom:330.585000px;}
.y10{bottom:332.790000px;}
.y3f{bottom:337.470000px;}
.y6a{bottom:337.785000px;}
.yba{bottom:340.485000px;}
.y24{bottom:340.845000px;}
.yd9{bottom:341.490000px;}
.yab{bottom:343.365000px;}
.y55{bottom:343.950000px;}
.ye0{bottom:347.505000px;}
.yf{bottom:348.090000px;}
.yc1{bottom:350.460000px;}
.yeb{bottom:351.210000px;}
.yd1{bottom:359.250000px;}
.yb9{bottom:367.530000px;}
.y3e{bottom:369.690000px;}
.y23{bottom:373.425000px;}
.y54{bottom:378.510000px;}
.ye{bottom:380.490000px;}
.yc0{bottom:387.210000px;}
.yea{bottom:389.910000px;}
.y88{bottom:393.510000px;}
.yb8{bottom:397.050000px;}
.y95{bottom:398.130000px;}
.y3d{bottom:399.930000px;}
.y22{bottom:406.005000px;}
.yd{bottom:407.670000px;}
.y69{bottom:409.065000px;}
.y53{bottom:413.070000px;}
.y87{bottom:413.490000px;}
.yf3{bottom:426.780000px;}
.ye9{bottom:428.430000px;}
.y3c{bottom:430.170000px;}
.yb7{bottom:432.870000px;}
.y21{bottom:433.905000px;}
.y7a{bottom:435.495000px;}
.yd0{bottom:437.010000px;}
.ybc{bottom:439.920000px;}
.yc{bottom:440.070000px;}
.ybd{bottom:441.570000px;}
.y86{bottom:442.470000px;}
.y68{bottom:444.750000px;}
.y52{bottom:447.630000px;}
.y79{bottom:449.355000px;}
.y20{bottom:449.385000px;}
.y78{bottom:454.935000px;}
.yc8{bottom:458.820000px;}
.y3b{bottom:460.440000px;}
.yfb{bottom:466.020000px;}
.ye8{bottom:466.995000px;}
.yf2{bottom:470.160000px;}
.yb{bottom:471.420000px;}
.y85{bottom:474.555000px;}
.yb6{bottom:475.350000px;}
.ycf{bottom:475.920000px;}
.y1f{bottom:478.950000px;}
.y67{bottom:480.390000px;}
.y51{bottom:482.220000px;}
.yc7{bottom:484.020000px;}
.yd8{bottom:486.390000px;}
.y3a{bottom:490.680000px;}
.ya5{bottom:494.070000px;}
.ya8{bottom:494.100000px;}
.ya{bottom:498.420000px;}
.yb5{bottom:500.220000px;}
.yfa{bottom:500.610000px;}
.y77{bottom:504.510000px;}
.ye7{bottom:505.695000px;}
.yc6{bottom:506.010000px;}
.y1e{bottom:508.470000px;}
.yb4{bottom:508.680000px;}
.yf1{bottom:513.540000px;}
.yce{bottom:514.800000px;}
.yb3{bottom:515.700000px;}
.y66{bottom:516.030000px;}
.y50{bottom:516.780000px;}
.y76{bottom:518.370000px;}
.yc5{bottom:520.050000px;}
.y39{bottom:520.920000px;}
.y61{bottom:521.745000px;}
.y75{bottom:523.950000px;}
.y9{bottom:526.680000px;}
.yf9{bottom:530.850000px;}
.yb2{bottom:538.200000px;}
.y1d{bottom:541.950000px;}
.y74{bottom:543.315000px;}
.ye6{bottom:544.215000px;}
.yc4{bottom:545.250000px;}
.ya4{bottom:547.380000px;}
.ya7{bottom:547.455000px;}
.y8a{bottom:549.150000px;}
.y38{bottom:551.160000px;}
.y4f{bottom:551.340000px;}
.y65{bottom:551.670000px;}
.yf8{bottom:552.450000px;}
.ycd{bottom:553.680000px;}
.yf0{bottom:557.130000px;}
.y8{bottom:562.320000px;}
.y1c{bottom:567.150000px;}
.yc3{bottom:570.450000px;}
.y1b{bottom:571.470000px;}
.ya3{bottom:575.715000px;}
.ya6{bottom:575.745000px;}
.y37{bottom:580.680000px;}
.yb1{bottom:580.860000px;}
.ye5{bottom:582.915000px;}
.y4e{bottom:585.900000px;}
.y1a{bottom:586.950000px;}
.yf7{bottom:587.010000px;}
.y64{bottom:587.340000px;}
.ycc{bottom:591.300000px;}
.ye2{bottom:592.230000px;}
.y7{bottom:593.640000px;}
.yc2{bottom:595.650000px;}
.yef{bottom:600.510000px;}
.y5f{bottom:603.030000px;}
.y8b{bottom:604.620000px;}
.yb0{bottom:607.860000px;}
.y36{bottom:611.280000px;}
.y2{bottom:614.130000px;}
.y19{bottom:616.500000px;}
.ycb{bottom:618.150000px;}
.y4d{bottom:620.490000px;}
.y6{bottom:620.850000px;}
.ye4{bottom:621.465000px;}
.yf6{bottom:621.570000px;}
.y63{bottom:622.980000px;}
.yca{bottom:630.210000px;}
.ye1{bottom:632.775000px;}
.yaf{bottom:633.960000px;}
.y5e{bottom:639.210000px;}
.ybf{bottom:639.975000px;}
.y82{bottom:640.470000px;}
.yee{bottom:643.890000px;}
.y4b{bottom:645.330000px;}
.y94{bottom:645.990000px;}
.y18{bottom:649.980000px;}
.ybe{bottom:652.755000px;}
.y5{bottom:654.870000px;}
.y4c{bottom:655.410000px;}
.yf5{bottom:656.175000px;}
.y8c{bottom:659.415000px;}
.y62{bottom:661.500000px;}
.yc9{bottom:661.710000px;}
.y35{bottom:662.790000px;}
.yf4{bottom:688.575000px;}
.y17{bottom:743.760000px;}
.yed{bottom:759.600000px;}
.yfc{bottom:759.885000px;}
.y1{bottom:760.320000px;}
.y16{bottom:763.920000px;}
.y15{bottom:774.720000px;}
.h11{height:6.007500px;}
.h2d{height:12.765937px;}
.h35{height:16.520625px;}
.ha{height:24.780937px;}
.h48{height:25.839844px;}
.h2b{height:31.539375px;}
.h43{height:31.860000px;}
.h44{height:34.020000px;}
.h36{height:34.625391px;}
.h37{height:37.139062px;}
.h2c{height:37.546875px;}
.h28{height:38.759766px;}
.h41{height:38.863125px;}
.h17{height:40.826953px;}
.h21{height:41.551875px;}
.h1a{height:42.894141px;}
.h18{height:45.478125px;}
.h4d{height:46.057500px;}
.h42{height:46.157625px;}
.h45{height:48.060000px;}
.h27{height:50.062500px;}
.h1e{height:50.312812px;}
.h14{height:51.564375px;}
.h13{height:51.664500px;}
.h3f{height:51.679688px;}
.h50{height:51.783047px;}
.h16{height:52.065000px;}
.h15{height:52.165125px;}
.h4e{height:53.746875px;}
.h4f{height:53.850234px;}
.h4c{height:55.141875px;}
.h2e{height:56.320312px;}
.h2f{height:56.470500px;}
.h19{height:58.573125px;}
.h47{height:60.465234px;}
.h46{height:60.568594px;}
.h1d{height:62.327813px;}
.h34{height:62.578125px;}
.h30{height:62.678250px;}
.h32{height:64.599609px;}
.h3d{height:66.583125px;}
.h4b{height:66.757500px;}
.h39{height:68.733984px;}
.h3e{height:68.837344px;}
.hb{height:69.086250px;}
.h20{height:69.236437px;}
.h3{height:69.890625px;}
.h26{height:72.090000px;}
.h7{height:75.093750px;}
.hc{height:77.519531px;}
.h51{height:77.622891px;}
.h9{height:78.097500px;}
.h12{height:78.247687px;}
.hf{height:80.350312px;}
.h33{height:81.618750px;}
.h10{height:81.852187px;}
.h1{height:82.603125px;}
.h6{height:82.753312px;}
.h40{height:83.604375px;}
.h31{height:83.704500px;}
.h5{height:84.855937px;}
.hd{height:87.859687px;}
.h1f{height:88.009875px;}
.he{height:90.863438px;}
.h4{height:93.867188px;}
.h3a{height:94.573828px;}
.h3b{height:94.677188px;}
.h8{height:95.369062px;}
.h23{height:99.874688px;}
.h1c{height:100.024875px;}
.h29{height:105.131250px;}
.h22{height:106.633125px;}
.h49{height:108.843750px;}
.h4a{height:108.988875px;}
.h2a{height:112.640625px;}
.h3c{height:120.413672px;}
.h1b{height:162.953438px;}
.h38{height:180.245742px;}
.h24{height:200.500313px;}
.h25{height:262.828125px;}
.h2{height:283.353188px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x47{left:25.416000px;}
.x23{left:28.980000px;}
.x22{left:34.020000px;}
.x52{left:35.568000px;}
.x2{left:37.260000px;}
.x48{left:40.428000px;}
.x59{left:42.876000px;}
.x1b{left:43.992000px;}
.x4e{left:49.428000px;}
.x9{left:56.556000px;}
.x5b{left:59.472000px;}
.x1a{left:62.568000px;}
.x56{left:65.700000px;}
.x61{left:71.928000px;}
.x3{left:79.956000px;}
.x5f{left:87.768000px;}
.x1f{left:91.332000px;}
.x19{left:96.408000px;}
.x60{left:104.148000px;}
.x5c{left:108.648000px;}
.x27{left:150.810000px;}
.x34{left:161.970000px;}
.x29{left:187.350000px;}
.x4c{left:204.690000px;}
.x4{left:215.895000px;}
.x28{left:219.030000px;}
.x5a{left:234.435000px;}
.x35{left:274.170000px;}
.x1{left:307.335000px;}
.x2f{left:344.955000px;}
.x2d{left:355.035000px;}
.x2a{left:392.400000px;}
.x2e{left:394.995000px;}
.x50{left:396.210000px;}
.x2c{left:399.060000px;}
.x37{left:404.820000px;}
.x1d{left:411.735000px;}
.x2b{left:429.480000px;}
.x20{left:436.935000px;}
.x57{left:438.915000px;}
.x38{left:442.620000px;}
.x46{left:445.035000px;}
.x51{left:455.790000px;}
.xe{left:461.595000px;}
.x4d{left:465.195000px;}
.x5{left:475.305000px;}
.x3d{left:479.670000px;}
.xc{left:483.375000px;}
.x3c{left:491.190000px;}
.x25{left:499.035000px;}
.xd{left:505.875000px;}
.x6{left:517.290000px;}
.x62{left:524.955000px;}
.x26{left:532.155000px;}
.x14{left:533.625000px;}
.x3a{left:536.325000px;}
.x33{left:541.335000px;}
.x13{left:545.865000px;}
.x49{left:550.155000px;}
.xa{left:554.655000px;}
.x11{left:558.645000px;}
.x21{left:563.835000px;}
.x12{left:573.585000px;}
.x36{left:579.090000px;}
.x5d{left:582.585000px;}
.x8{left:584.850000px;}
.x39{left:598.170000px;}
.xb{left:638.025000px;}
.x41{left:640.005000px;}
.x3e{left:647.385000px;}
.x3f{left:653.865000px;}
.x30{left:663.195000px;}
.x54{left:675.030000px;}
.x24{left:678.420000px;}
.x1e{left:692.925000px;}
.x40{left:694.365000px;}
.x4b{left:697.710000px;}
.x32{left:699.585000px;}
.x58{left:701.070000px;}
.x3b{left:712.830000px;}
.x15{left:726.405000px;}
.xf{left:730.110000px;}
.x10{left:733.530000px;}
.x31{left:743.505000px;}
.x4f{left:759.315000px;}
.x55{left:771.990000px;}
.x53{left:810.255000px;}
.x45{left:814.245000px;}
.x42{left:819.285000px;}
.x43{left:828.105000px;}
.x5e{left:831.060000px;}
.x1c{left:842.865000px;}
.x44{left:847.725000px;}
.x4a{left:848.880000px;}
.x17{left:898.530000px;}
.x18{left:906.630000px;}
.x16{left:918.330000px;}
.x7{left:1049.070000px;}
@media print{
.v4{vertical-align:-21.120000pt;}
.va{vertical-align:-19.200000pt;}
.v1{vertical-align:-17.280000pt;}
.v7{vertical-align:-15.360000pt;}
.v9{vertical-align:-12.800000pt;}
.v13{vertical-align:-10.240000pt;}
.vc{vertical-align:-8.960000pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:11.520000pt;}
.v12{vertical-align:12.800000pt;}
.v10{vertical-align:19.200000pt;}
.v2{vertical-align:21.120000pt;}
.v8{vertical-align:22.400000pt;}
.vf{vertical-align:25.600000pt;}
.ve{vertical-align:26.880000pt;}
.v11{vertical-align:28.800000pt;}
.v14{vertical-align:34.560000pt;}
.v15{vertical-align:35.840000pt;}
.v5{vertical-align:37.120000pt;}
.v3{vertical-align:38.400000pt;}
.v6{vertical-align:40.320000pt;}
.vb{vertical-align:43.520000pt;}
.v16{vertical-align:46.080000pt;}
.ls3d{letter-spacing:-1.760000pt;}
.ls3a{letter-spacing:-1.674667pt;}
.ls3c{letter-spacing:-1.120000pt;}
.ls60{letter-spacing:-1.082667pt;}
.lsf{letter-spacing:-0.736000pt;}
.ls78{letter-spacing:-0.602667pt;}
.ls58{letter-spacing:-0.581333pt;}
.ls3b{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.403200pt;}
.ls1c{letter-spacing:-0.386667pt;}
.ls4b{letter-spacing:-0.382400pt;}
.ls76{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.303467pt;}
.ls34{letter-spacing:-0.299733pt;}
.ls8{letter-spacing:-0.268800pt;}
.ls4f{letter-spacing:-0.241067pt;}
.ls2e{letter-spacing:-0.240533pt;}
.ls44{letter-spacing:-0.240000pt;}
.ls49{letter-spacing:-0.239467pt;}
.ls26{letter-spacing:-0.220267pt;}
.ls65{letter-spacing:-0.204267pt;}
.ls2f{letter-spacing:-0.199467pt;}
.ls19{letter-spacing:-0.193067pt;}
.ls15{letter-spacing:-0.189867pt;}
.ls1{letter-spacing:-0.165333pt;}
.ls3f{letter-spacing:-0.162667pt;}
.ls42{letter-spacing:-0.161067pt;}
.ls33{letter-spacing:-0.160000pt;}
.ls3e{letter-spacing:-0.157333pt;}
.ls55{letter-spacing:-0.148800pt;}
.ls71{letter-spacing:-0.138133pt;}
.ls50{letter-spacing:-0.128000pt;}
.ls18{letter-spacing:-0.126933pt;}
.ls25{letter-spacing:-0.104533pt;}
.lsd{letter-spacing:-0.102400pt;}
.ls6f{letter-spacing:-0.098133pt;}
.lse{letter-spacing:-0.097067pt;}
.ls5a{letter-spacing:-0.094933pt;}
.ls6b{letter-spacing:-0.047360pt;}
.ls83{letter-spacing:-0.037867pt;}
.ls23{letter-spacing:-0.033280pt;}
.ls77{letter-spacing:-0.032000pt;}
.ls7f{letter-spacing:-0.018933pt;}
.ls81{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.016640pt;}
.ls2a{letter-spacing:0.024960pt;}
.ls8c{letter-spacing:0.028427pt;}
.ls79{letter-spacing:0.033280pt;}
.ls4d{letter-spacing:0.041493pt;}
.ls69{letter-spacing:0.047360pt;}
.ls70{letter-spacing:0.051200pt;}
.ls43{letter-spacing:0.056320pt;}
.ls52{letter-spacing:0.056533pt;}
.ls64{letter-spacing:0.057600pt;}
.ls4a{letter-spacing:0.080000pt;}
.ls74{letter-spacing:0.096000pt;}
.ls5c{letter-spacing:0.104000pt;}
.ls41{letter-spacing:0.121067pt;}
.ls7b{letter-spacing:0.122027pt;}
.ls5e{letter-spacing:0.125333pt;}
.ls67{letter-spacing:0.128000pt;}
.ls40{letter-spacing:0.144000pt;}
.ls48{letter-spacing:0.145280pt;}
.ls5d{letter-spacing:0.149333pt;}
.ls1d{letter-spacing:0.160000pt;}
.ls62{letter-spacing:0.162560pt;}
.ls6e{letter-spacing:0.173867pt;}
.ls84{letter-spacing:0.185067pt;}
.ls6d{letter-spacing:0.189333pt;}
.ls39{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.193067pt;}
.ls45{letter-spacing:0.194560pt;}
.ls5b{letter-spacing:0.199467pt;}
.ls5f{letter-spacing:0.202240pt;}
.ls22{letter-spacing:0.211968pt;}
.ls21{letter-spacing:0.214400pt;}
.ls61{letter-spacing:0.226133pt;}
.ls59{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.235520pt;}
.ls27{letter-spacing:0.236267pt;}
.ls51{letter-spacing:0.239467pt;}
.ls47{letter-spacing:0.240000pt;}
.ls35{letter-spacing:0.243200pt;}
.ls14{letter-spacing:0.253333pt;}
.ls13{letter-spacing:0.253440pt;}
.ls7{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.256533pt;}
.ls4{letter-spacing:0.263680pt;}
.ls68{letter-spacing:0.267733pt;}
.lsb{letter-spacing:0.268800pt;}
.ls6{letter-spacing:0.271360pt;}
.ls80{letter-spacing:0.275200pt;}
.ls20{letter-spacing:0.286720pt;}
.ls36{letter-spacing:0.293547pt;}
.ls2b{letter-spacing:0.303467pt;}
.ls31{letter-spacing:0.305280pt;}
.ls1e{letter-spacing:0.320000pt;}
.ls6c{letter-spacing:0.325333pt;}
.ls72{letter-spacing:0.352000pt;}
.ls63{letter-spacing:0.357120pt;}
.ls38{letter-spacing:0.400000pt;}
.ls37{letter-spacing:0.448000pt;}
.ls32{letter-spacing:0.570880pt;}
.ls8b{letter-spacing:0.602667pt;}
.ls7a{letter-spacing:0.621056pt;}
.ls2d{letter-spacing:0.656000pt;}
.ls29{letter-spacing:0.656640pt;}
.ls4e{letter-spacing:0.660736pt;}
.ls56{letter-spacing:0.661333pt;}
.ls53{letter-spacing:0.698667pt;}
.ls17{letter-spacing:0.832000pt;}
.ls87{letter-spacing:0.833280pt;}
.ls46{letter-spacing:0.879360pt;}
.ls7d{letter-spacing:0.944000pt;}
.ls11{letter-spacing:1.086720pt;}
.ls16{letter-spacing:1.088000pt;}
.ls4c{letter-spacing:1.184000pt;}
.ls7e{letter-spacing:1.296000pt;}
.ls7c{letter-spacing:1.296640pt;}
.ls57{letter-spacing:1.301333pt;}
.ls9{letter-spacing:1.514667pt;}
.ls6a{letter-spacing:1.519360pt;}
.lsa{letter-spacing:1.722667pt;}
.ls12{letter-spacing:1.726720pt;}
.ls2c{letter-spacing:1.936000pt;}
.ls30{letter-spacing:1.936640pt;}
.ls82{letter-spacing:2.538667pt;}
.ls54{letter-spacing:3.258667pt;}
.ls86{letter-spacing:4.496640pt;}
.ls85{letter-spacing:5.136640pt;}
.ls8a{letter-spacing:10.896640pt;}
.ls66{letter-spacing:11.840000pt;}
.ls88{letter-spacing:13.442389pt;}
.ls89{letter-spacing:14.061056pt;}
.ls5{letter-spacing:14.348800pt;}
.ls73{letter-spacing:14.560000pt;}
.ls75{letter-spacing:19.253333pt;}
.ls2{letter-spacing:54.295040pt;}
.ls3{letter-spacing:54.668800pt;}
.ls1f{letter-spacing:360.290389pt;}
.ws49{word-spacing:-74.880000pt;}
.ws11{word-spacing:-40.739840pt;}
.ws28{word-spacing:-25.152000pt;}
.ws5e{word-spacing:-24.301611pt;}
.ws56{word-spacing:-23.983360pt;}
.ws58{word-spacing:-23.974144pt;}
.ws1e{word-spacing:-23.966827pt;}
.ws5c{word-spacing:-23.848427pt;}
.ws5f{word-spacing:-23.727371pt;}
.ws5a{word-spacing:-23.698944pt;}
.ws55{word-spacing:-23.696640pt;}
.ws57{word-spacing:-23.680011pt;}
.ws1f{word-spacing:-23.680000pt;}
.ws1d{word-spacing:-23.663360pt;}
.ws5b{word-spacing:-23.661077pt;}
.ws59{word-spacing:-23.646720pt;}
.ws2a{word-spacing:-23.234133pt;}
.ws2c{word-spacing:-22.640000pt;}
.ws25{word-spacing:-22.400000pt;}
.ws2b{word-spacing:-22.240000pt;}
.ws23{word-spacing:-22.080000pt;}
.ws43{word-spacing:-22.051840pt;}
.ws52{word-spacing:-21.792000pt;}
.ws54{word-spacing:-21.664000pt;}
.ws5d{word-spacing:-21.528320pt;}
.ws53{word-spacing:-21.376000pt;}
.ws20{word-spacing:-21.120107pt;}
.ws21{word-spacing:-20.833280pt;}
.ws1a{word-spacing:-20.816640pt;}
.ws14{word-spacing:-20.783360pt;}
.ws17{word-spacing:-20.747691pt;}
.ws15{word-spacing:-20.513173pt;}
.wsb{word-spacing:-20.225280pt;}
.ws1{word-spacing:-20.104960pt;}
.wse{word-spacing:-19.649813pt;}
.wsd{word-spacing:-19.646613pt;}
.ws3{word-spacing:-19.606784pt;}
.wsf{word-spacing:-19.586347pt;}
.ws4{word-spacing:-19.571200pt;}
.ws7{word-spacing:-19.468800pt;}
.ws12{word-spacing:-19.393280pt;}
.ws4b{word-spacing:-19.362773pt;}
.ws2{word-spacing:-19.302400pt;}
.ws1b{word-spacing:-19.273707pt;}
.wsc{word-spacing:-19.266347pt;}
.wsa{word-spacing:-19.203413pt;}
.ws6{word-spacing:-19.168000pt;}
.ws10{word-spacing:-19.006613pt;}
.ws2e{word-spacing:-18.874773pt;}
.ws36{word-spacing:-18.796373pt;}
.ws3d{word-spacing:-18.580757pt;}
.ws3c{word-spacing:-18.539264pt;}
.ws39{word-spacing:-18.503680pt;}
.ws3a{word-spacing:-18.390464pt;}
.ws34{word-spacing:-18.240000pt;}
.ws33{word-spacing:-18.160000pt;}
.ws30{word-spacing:-18.080000pt;}
.ws37{word-spacing:-17.664000pt;}
.ws47{word-spacing:-17.621547pt;}
.ws18{word-spacing:-17.607317pt;}
.ws40{word-spacing:-17.279787pt;}
.ws46{word-spacing:-16.980480pt;}
.ws22{word-spacing:-16.880853pt;}
.ws48{word-spacing:-16.718613pt;}
.ws29{word-spacing:-16.546560pt;}
.ws8{word-spacing:-16.271573pt;}
.ws2d{word-spacing:-15.834880pt;}
.ws9{word-spacing:-15.632640pt;}
.ws4f{word-spacing:-15.216427pt;}
.ws50{word-spacing:-15.093760pt;}
.ws3e{word-spacing:-14.998293pt;}
.ws51{word-spacing:-14.904427pt;}
.ws24{word-spacing:-14.767360pt;}
.ws4a{word-spacing:-14.720000pt;}
.ws3f{word-spacing:-14.672427pt;}
.ws4c{word-spacing:-14.464000pt;}
.ws16{word-spacing:-13.877760pt;}
.ws2f{word-spacing:-13.500651pt;}
.ws4e{word-spacing:-13.496213pt;}
.ws41{word-spacing:-13.485141pt;}
.ws5{word-spacing:-12.988160pt;}
.ws13{word-spacing:-12.632320pt;}
.ws3b{word-spacing:-12.312064pt;}
.ws1c{word-spacing:-12.005120pt;}
.ws19{word-spacing:-11.956224pt;}
.ws38{word-spacing:-11.920640pt;}
.ws31{word-spacing:-11.681173pt;}
.ws44{word-spacing:-10.270293pt;}
.ws42{word-spacing:-10.044160pt;}
.ws4d{word-spacing:-9.592747pt;}
.ws26{word-spacing:-8.089387pt;}
.ws35{word-spacing:-8.035648pt;}
.ws32{word-spacing:-7.828480pt;}
.ws45{word-spacing:-6.364160pt;}
.ws27{word-spacing:-5.640960pt;}
.ws0{word-spacing:0.000000pt;}
._e{margin-left:-2450.602453pt;}
._14{margin-left:-714.811733pt;}
._b{margin-left:-8.691200pt;}
._d{margin-left:-7.697920pt;}
._3{margin-left:-6.406400pt;}
._8{margin-left:-4.915200pt;}
._a{margin-left:-3.818880pt;}
._1{margin-left:-2.323200pt;}
._0{margin-left:-1.196800pt;}
._4{width:1.105067pt;}
._2{width:2.323200pt;}
._c{width:3.416533pt;}
._17{width:4.949760pt;}
._12{width:6.225707pt;}
._11{width:7.262720pt;}
._7{width:9.015040pt;}
._19{width:10.273280pt;}
._13{width:11.462656pt;}
._18{width:13.625931pt;}
._6{width:15.109120pt;}
._9{width:18.469120pt;}
._10{width:19.732480pt;}
._5{width:53.797120pt;}
._16{width:226.181547pt;}
._15{width:275.304107pt;}
._f{width:366.048000pt;}
.fs11{font-size:5.120000pt;}
.fs2f{font-size:10.880000pt;}
.fsa{font-size:21.120000pt;}
.fs29{font-size:24.960000pt;}
.fs2c{font-size:26.880000pt;}
.fs33{font-size:28.160000pt;}
.fs2d{font-size:32.000000pt;}
.fs22{font-size:35.840000pt;}
.fs28{font-size:37.120000pt;}
.fs39{font-size:37.248000pt;}
.fs3b{font-size:37.760000pt;}
.fs1b{font-size:42.880000pt;}
.fs1f{font-size:43.008000pt;}
.fs3a{font-size:44.288000pt;}
.fs13{font-size:45.440000pt;}
.fs8{font-size:46.720000pt;}
.fs27{font-size:48.000000pt;}
.fs30{font-size:48.128000pt;}
.fs1c{font-size:49.920000pt;}
.fs20{font-size:50.048000pt;}
.fs16{font-size:50.560000pt;}
.fs18{font-size:53.120000pt;}
.fs17{font-size:56.320000pt;}
.fs2e{font-size:56.960000pt;}
.fsb{font-size:58.880000pt;}
.fs21{font-size:59.008000pt;}
.fs2b{font-size:59.520000pt;}
.fs26{font-size:61.440000pt;}
.fs6{font-size:64.000000pt;}
.fs1e{font-size:64.128000pt;}
.fs15{font-size:65.920000pt;}
.fs14{font-size:66.048000pt;}
.fs9{font-size:66.560000pt;}
.fs12{font-size:66.688000pt;}
.fsf{font-size:68.480000pt;}
.fs10{font-size:69.760000pt;}
.fs0{font-size:70.400000pt;}
.fs5{font-size:70.528000pt;}
.fs4{font-size:72.320000pt;}
.fsd{font-size:74.880000pt;}
.fs1d{font-size:75.008000pt;}
.fse{font-size:77.440000pt;}
.fs3{font-size:80.000000pt;}
.fs31{font-size:80.128000pt;}
.fs7{font-size:81.280000pt;}
.fs23{font-size:85.120000pt;}
.fs1a{font-size:85.248000pt;}
.fs2a{font-size:89.600000pt;}
.fs2{font-size:90.880000pt;}
.fsc{font-size:96.000000pt;}
.fs3c{font-size:96.128000pt;}
.fs38{font-size:106.880000pt;}
.fs32{font-size:107.008000pt;}
.fs35{font-size:117.120000pt;}
.fs36{font-size:117.248000pt;}
.fs19{font-size:138.880000pt;}
.fs37{font-size:149.120000pt;}
.fs24{font-size:170.880000pt;}
.fs25{font-size:224.000000pt;}
.fs34{font-size:234.880000pt;}
.fs1{font-size:373.248000pt;}
.ya2{bottom:-62.688000pt;}
.ya1{bottom:-34.688000pt;}
.ya0{bottom:-9.088000pt;}
.y0{bottom:0.000000pt;}
.y9f{bottom:16.512000pt;}
.y4a{bottom:25.376000pt;}
.y9e{bottom:42.144000pt;}
.y5c{bottom:43.424000pt;}
.y14{bottom:45.792000pt;}
.yda{bottom:46.432000pt;}
.yd7{bottom:49.344000pt;}
.y49{bottom:53.376000pt;}
.y83{bottom:56.832000pt;}
.yaa{bottom:57.920000pt;}
.y5b{bottom:67.104000pt;}
.y9d{bottom:67.744000pt;}
.yae{bottom:71.840000pt;}
.y60{bottom:79.680000pt;}
.yde{bottom:81.248000pt;}
.y73{bottom:81.312000pt;}
.y13{bottom:82.496000pt;}
.y48{bottom:87.104000pt;}
.y5a{bottom:90.944000pt;}
.yad{bottom:91.200000pt;}
.y9c{bottom:97.664000pt;}
.yac{bottom:100.640000pt;}
.y59{bottom:102.144000pt;}
.y84{bottom:104.512000pt;}
.y72{bottom:106.784000pt;}
.y12{bottom:109.856000pt;}
.y47{bottom:111.584000pt;}
.y2b{bottom:114.656000pt;}
.ye3{bottom:120.672000pt;}
.y11{bottom:130.016000pt;}
.y71{bottom:133.666667pt;}
.y46{bottom:138.466667pt;}
.y2a{bottom:139.813333pt;}
.y9b{bottom:140.226667pt;}
.y58{bottom:140.866667pt;}
.ydd{bottom:145.626667pt;}
.y70{bottom:149.826667pt;}
.ya9{bottom:152.706667pt;}
.y29{bottom:157.826667pt;}
.ydf{bottom:158.560000pt;}
.yd6{bottom:159.933333pt;}
.y93{bottom:163.226667pt;}
.y45{bottom:163.453333pt;}
.ydc{bottom:169.666667pt;}
.y92{bottom:174.586667pt;}
.y9a{bottom:175.453333pt;}
.y5d{bottom:176.026667pt;}
.y6f{bottom:179.266667pt;}
.y44{bottom:180.733333pt;}
.y8f{bottom:181.573333pt;}
.y91{bottom:183.906667pt;}
.y28{bottom:186.946667pt;}
.y34{bottom:187.746667pt;}
.y2f{bottom:187.866667pt;}
.y6e{bottom:192.386667pt;}
.yd5{bottom:192.413333pt;}
.y8e{bottom:192.960000pt;}
.ydb{bottom:193.666667pt;}
.y2e{bottom:201.786667pt;}
.y8d{bottom:202.240000pt;}
.y90{bottom:203.906667pt;}
.y6d{bottom:205.186667pt;}
.y43{bottom:205.693333pt;}
.y7d{bottom:207.706667pt;}
.y99{bottom:208.573333pt;}
.y33{bottom:211.746667pt;}
.y81{bottom:213.986667pt;}
.yd4{bottom:215.613333pt;}
.y27{bottom:215.906667pt;}
.y57{bottom:218.493333pt;}
.y7c{bottom:220.066667pt;}
.y42{bottom:221.693333pt;}
.y2d{bottom:223.866667pt;}
.y7b{bottom:225.026667pt;}
.y32{bottom:232.226667pt;}
.y98{bottom:234.173333pt;}
.y6c{bottom:236.893333pt;}
.y41{bottom:242.173333pt;}
.y2c{bottom:242.266667pt;}
.y26{bottom:244.866667pt;}
.yd3{bottom:250.173333pt;}
.y80{bottom:259.386667pt;}
.y97{bottom:259.453333pt;}
.y31{bottom:259.866667pt;}
.y4{bottom:266.653333pt;}
.ybb{bottom:267.773333pt;}
.y6b{bottom:268.573333pt;}
.y40{bottom:269.533333pt;}
.y89{bottom:271.200000pt;}
.y7f{bottom:271.746667pt;}
.y25{bottom:273.826667pt;}
.y56{bottom:274.973333pt;}
.y7e{bottom:276.706667pt;}
.yec{bottom:277.946667pt;}
.y30{bottom:283.226667pt;}
.yd2{bottom:284.773333pt;}
.y96{bottom:293.733333pt;}
.y3{bottom:293.853333pt;}
.y10{bottom:295.813333pt;}
.y3f{bottom:299.973333pt;}
.y6a{bottom:300.253333pt;}
.yba{bottom:302.653333pt;}
.y24{bottom:302.973333pt;}
.yd9{bottom:303.546667pt;}
.yab{bottom:305.213333pt;}
.y55{bottom:305.733333pt;}
.ye0{bottom:308.893333pt;}
.yf{bottom:309.413333pt;}
.yc1{bottom:311.520000pt;}
.yeb{bottom:312.186667pt;}
.yd1{bottom:319.333333pt;}
.yb9{bottom:326.693333pt;}
.y3e{bottom:328.613333pt;}
.y23{bottom:331.933333pt;}
.y54{bottom:336.453333pt;}
.ye{bottom:338.213333pt;}
.yc0{bottom:344.186667pt;}
.yea{bottom:346.586667pt;}
.y88{bottom:349.786667pt;}
.yb8{bottom:352.933333pt;}
.y95{bottom:353.893333pt;}
.y3d{bottom:355.493333pt;}
.y22{bottom:360.893333pt;}
.yd{bottom:362.373333pt;}
.y69{bottom:363.613333pt;}
.y53{bottom:367.173333pt;}
.y87{bottom:367.546667pt;}
.yf3{bottom:379.360000pt;}
.ye9{bottom:380.826667pt;}
.y3c{bottom:382.373333pt;}
.yb7{bottom:384.773333pt;}
.y21{bottom:385.693333pt;}
.y7a{bottom:387.106667pt;}
.yd0{bottom:388.453333pt;}
.ybc{bottom:391.040000pt;}
.yc{bottom:391.173333pt;}
.ybd{bottom:392.506667pt;}
.y86{bottom:393.306667pt;}
.y68{bottom:395.333333pt;}
.y52{bottom:397.893333pt;}
.y79{bottom:399.426667pt;}
.y20{bottom:399.453333pt;}
.y78{bottom:404.386667pt;}
.yc8{bottom:407.840000pt;}
.y3b{bottom:409.280000pt;}
.yfb{bottom:414.240000pt;}
.ye8{bottom:415.106667pt;}
.yf2{bottom:417.920000pt;}
.yb{bottom:419.040000pt;}
.y85{bottom:421.826667pt;}
.yb6{bottom:422.533333pt;}
.ycf{bottom:423.040000pt;}
.y1f{bottom:425.733333pt;}
.y67{bottom:427.013333pt;}
.y51{bottom:428.640000pt;}
.yc7{bottom:430.240000pt;}
.yd8{bottom:432.346667pt;}
.y3a{bottom:436.160000pt;}
.ya5{bottom:439.173333pt;}
.ya8{bottom:439.200000pt;}
.ya{bottom:443.040000pt;}
.yb5{bottom:444.640000pt;}
.yfa{bottom:444.986667pt;}
.y77{bottom:448.453333pt;}
.ye7{bottom:449.506667pt;}
.yc6{bottom:449.786667pt;}
.y1e{bottom:451.973333pt;}
.yb4{bottom:452.160000pt;}
.yf1{bottom:456.480000pt;}
.yce{bottom:457.600000pt;}
.yb3{bottom:458.400000pt;}
.y66{bottom:458.693333pt;}
.y50{bottom:459.360000pt;}
.y76{bottom:460.773333pt;}
.yc5{bottom:462.266667pt;}
.y39{bottom:463.040000pt;}
.y61{bottom:463.773333pt;}
.y75{bottom:465.733333pt;}
.y9{bottom:468.160000pt;}
.yf9{bottom:471.866667pt;}
.yb2{bottom:478.400000pt;}
.y1d{bottom:481.733333pt;}
.y74{bottom:482.946667pt;}
.ye6{bottom:483.746667pt;}
.yc4{bottom:484.666667pt;}
.ya4{bottom:486.560000pt;}
.ya7{bottom:486.626667pt;}
.y8a{bottom:488.133333pt;}
.y38{bottom:489.920000pt;}
.y4f{bottom:490.080000pt;}
.y65{bottom:490.373333pt;}
.yf8{bottom:491.066667pt;}
.ycd{bottom:492.160000pt;}
.yf0{bottom:495.226667pt;}
.y8{bottom:499.840000pt;}
.y1c{bottom:504.133333pt;}
.yc3{bottom:507.066667pt;}
.y1b{bottom:507.973333pt;}
.ya3{bottom:511.746667pt;}
.ya6{bottom:511.773333pt;}
.y37{bottom:516.160000pt;}
.yb1{bottom:516.320000pt;}
.ye5{bottom:518.146667pt;}
.y4e{bottom:520.800000pt;}
.y1a{bottom:521.733333pt;}
.yf7{bottom:521.786667pt;}
.y64{bottom:522.080000pt;}
.ycc{bottom:525.600000pt;}
.ye2{bottom:526.426667pt;}
.y7{bottom:527.680000pt;}
.yc2{bottom:529.466667pt;}
.yef{bottom:533.786667pt;}
.y5f{bottom:536.026667pt;}
.y8b{bottom:537.440000pt;}
.yb0{bottom:540.320000pt;}
.y36{bottom:543.360000pt;}
.y2{bottom:545.893333pt;}
.y19{bottom:548.000000pt;}
.ycb{bottom:549.466667pt;}
.y4d{bottom:551.546667pt;}
.y6{bottom:551.866667pt;}
.ye4{bottom:552.413333pt;}
.yf6{bottom:552.506667pt;}
.y63{bottom:553.760000pt;}
.yca{bottom:560.186667pt;}
.ye1{bottom:562.466667pt;}
.yaf{bottom:563.520000pt;}
.y5e{bottom:568.186667pt;}
.ybf{bottom:568.866667pt;}
.y82{bottom:569.306667pt;}
.yee{bottom:572.346667pt;}
.y4b{bottom:573.626667pt;}
.y94{bottom:574.213333pt;}
.y18{bottom:577.760000pt;}
.ybe{bottom:580.226667pt;}
.y5{bottom:582.106667pt;}
.y4c{bottom:582.586667pt;}
.yf5{bottom:583.266667pt;}
.y8c{bottom:586.146667pt;}
.y62{bottom:588.000000pt;}
.yc9{bottom:588.186667pt;}
.y35{bottom:589.146667pt;}
.yf4{bottom:612.066667pt;}
.y17{bottom:661.120000pt;}
.yed{bottom:675.200000pt;}
.yfc{bottom:675.453333pt;}
.y1{bottom:675.840000pt;}
.y16{bottom:679.040000pt;}
.y15{bottom:688.640000pt;}
.h11{height:5.340000pt;}
.h2d{height:11.347500pt;}
.h35{height:14.685000pt;}
.ha{height:22.027500pt;}
.h48{height:22.968750pt;}
.h2b{height:28.035000pt;}
.h43{height:28.320000pt;}
.h44{height:30.240000pt;}
.h36{height:30.778125pt;}
.h37{height:33.012500pt;}
.h2c{height:33.375000pt;}
.h28{height:34.453125pt;}
.h41{height:34.545000pt;}
.h17{height:36.290625pt;}
.h21{height:36.935000pt;}
.h1a{height:38.128125pt;}
.h18{height:40.425000pt;}
.h4d{height:40.940000pt;}
.h42{height:41.029000pt;}
.h45{height:42.720000pt;}
.h27{height:44.500000pt;}
.h1e{height:44.722500pt;}
.h14{height:45.835000pt;}
.h13{height:45.924000pt;}
.h3f{height:45.937500pt;}
.h50{height:46.029375pt;}
.h16{height:46.280000pt;}
.h15{height:46.369000pt;}
.h4e{height:47.775000pt;}
.h4f{height:47.866875pt;}
.h4c{height:49.015000pt;}
.h2e{height:50.062500pt;}
.h2f{height:50.196000pt;}
.h19{height:52.065000pt;}
.h47{height:53.746875pt;}
.h46{height:53.838750pt;}
.h1d{height:55.402500pt;}
.h34{height:55.625000pt;}
.h30{height:55.714000pt;}
.h32{height:57.421875pt;}
.h3d{height:59.185000pt;}
.h4b{height:59.340000pt;}
.h39{height:61.096875pt;}
.h3e{height:61.188750pt;}
.hb{height:61.410000pt;}
.h20{height:61.543500pt;}
.h3{height:62.125000pt;}
.h26{height:64.080000pt;}
.h7{height:66.750000pt;}
.hc{height:68.906250pt;}
.h51{height:68.998125pt;}
.h9{height:69.420000pt;}
.h12{height:69.553500pt;}
.hf{height:71.422500pt;}
.h33{height:72.550000pt;}
.h10{height:72.757500pt;}
.h1{height:73.425000pt;}
.h6{height:73.558500pt;}
.h40{height:74.315000pt;}
.h31{height:74.404000pt;}
.h5{height:75.427500pt;}
.hd{height:78.097500pt;}
.h1f{height:78.231000pt;}
.he{height:80.767500pt;}
.h4{height:83.437500pt;}
.h3a{height:84.065625pt;}
.h3b{height:84.157500pt;}
.h8{height:84.772500pt;}
.h23{height:88.777500pt;}
.h1c{height:88.911000pt;}
.h29{height:93.450000pt;}
.h22{height:94.785000pt;}
.h49{height:96.750000pt;}
.h4a{height:96.879000pt;}
.h2a{height:100.125000pt;}
.h3c{height:107.034375pt;}
.h1b{height:144.847500pt;}
.h38{height:160.218437pt;}
.h24{height:178.222500pt;}
.h25{height:233.625000pt;}
.h2{height:251.869500pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x47{left:22.592000pt;}
.x23{left:25.760000pt;}
.x22{left:30.240000pt;}
.x52{left:31.616000pt;}
.x2{left:33.120000pt;}
.x48{left:35.936000pt;}
.x59{left:38.112000pt;}
.x1b{left:39.104000pt;}
.x4e{left:43.936000pt;}
.x9{left:50.272000pt;}
.x5b{left:52.864000pt;}
.x1a{left:55.616000pt;}
.x56{left:58.400000pt;}
.x61{left:63.936000pt;}
.x3{left:71.072000pt;}
.x5f{left:78.016000pt;}
.x1f{left:81.184000pt;}
.x19{left:85.696000pt;}
.x60{left:92.576000pt;}
.x5c{left:96.576000pt;}
.x27{left:134.053333pt;}
.x34{left:143.973333pt;}
.x29{left:166.533333pt;}
.x4c{left:181.946667pt;}
.x4{left:191.906667pt;}
.x28{left:194.693333pt;}
.x5a{left:208.386667pt;}
.x35{left:243.706667pt;}
.x1{left:273.186667pt;}
.x2f{left:306.626667pt;}
.x2d{left:315.586667pt;}
.x2a{left:348.800000pt;}
.x2e{left:351.106667pt;}
.x50{left:352.186667pt;}
.x2c{left:354.720000pt;}
.x37{left:359.840000pt;}
.x1d{left:365.986667pt;}
.x2b{left:381.760000pt;}
.x20{left:388.386667pt;}
.x57{left:390.146667pt;}
.x38{left:393.440000pt;}
.x46{left:395.586667pt;}
.x51{left:405.146667pt;}
.xe{left:410.306667pt;}
.x4d{left:413.506667pt;}
.x5{left:422.493333pt;}
.x3d{left:426.373333pt;}
.xc{left:429.666667pt;}
.x3c{left:436.613333pt;}
.x25{left:443.586667pt;}
.xd{left:449.666667pt;}
.x6{left:459.813333pt;}
.x62{left:466.626667pt;}
.x26{left:473.026667pt;}
.x14{left:474.333333pt;}
.x3a{left:476.733333pt;}
.x33{left:481.186667pt;}
.x13{left:485.213333pt;}
.x49{left:489.026667pt;}
.xa{left:493.026667pt;}
.x11{left:496.573333pt;}
.x21{left:501.186667pt;}
.x12{left:509.853333pt;}
.x36{left:514.746667pt;}
.x5d{left:517.853333pt;}
.x8{left:519.866667pt;}
.x39{left:531.706667pt;}
.xb{left:567.133333pt;}
.x41{left:568.893333pt;}
.x3e{left:575.453333pt;}
.x3f{left:581.213333pt;}
.x30{left:589.506667pt;}
.x54{left:600.026667pt;}
.x24{left:603.040000pt;}
.x1e{left:615.933333pt;}
.x40{left:617.213333pt;}
.x4b{left:620.186667pt;}
.x32{left:621.853333pt;}
.x58{left:623.173333pt;}
.x3b{left:633.626667pt;}
.x15{left:645.693333pt;}
.xf{left:648.986667pt;}
.x10{left:652.026667pt;}
.x31{left:660.893333pt;}
.x4f{left:674.946667pt;}
.x55{left:686.213333pt;}
.x53{left:720.226667pt;}
.x45{left:723.773333pt;}
.x42{left:728.253333pt;}
.x43{left:736.093333pt;}
.x5e{left:738.720000pt;}
.x1c{left:749.213333pt;}
.x44{left:753.533333pt;}
.x4a{left:754.560000pt;}
.x17{left:798.693333pt;}
.x18{left:805.893333pt;}
.x16{left:816.293333pt;}
.x7{left:932.506667pt;}
}




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