
    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_eacae86730e8f083412ee4e6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.059570;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_685e75f9e1b365d71ab8495d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.041555;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_b858147690489c901f7af0fb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.060547;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_6f9d8a84c0c4f941b818d97d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_892ef6fc4bba87472a3a985e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.063477;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_359d01edf130577d36b3965b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.035156;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_7ffeaffdb114c7e5cb8fe01c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.062012;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_b7fb9e4a243655635b9fdab0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.062012;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003906;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_0d64d7517486f375b366ecb1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_d13dde93e4ceee86026c0901.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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_920d2fe90ed938778e5b4403.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.776855;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_2b9866b3ddd68a903fc48266.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;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_351cbd472a7d771d7250a543.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.061035;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_e13f0f6589052fec3febe918.woff2')format("woff");}.fff{font-family:fff;line-height:0.739258;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_2fd3fe723ff445b9b12e534d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.976562;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_d9fb2d544179f5ddd62c6386.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.946777;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_6431166f4bfe477f67bada6a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.916992;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_f01082a7afc2a7da5a8374a6.woff2')format("woff");}.ff13{font-family:ff13;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-9.360000px;}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.880000px;}
.v4{vertical-align:33.120000px;}
.ls41{letter-spacing:-0.792000px;}
.ls60{letter-spacing:-0.720000px;}
.ls50{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.536400px;}
.ls2a{letter-spacing:-0.504000px;}
.ls38{letter-spacing:-0.432000px;}
.lsab{letter-spacing:-0.366000px;}
.ls57{letter-spacing:-0.360000px;}
.ls6f{letter-spacing:-0.327600px;}
.ls1d{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.277200px;}
.ls9c{letter-spacing:-0.259800px;}
.ls98{letter-spacing:-0.222600px;}
.ls1c{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.183600px;}
.ls17{letter-spacing:-0.178800px;}
.ls3{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.126600px;}
.ls10{letter-spacing:-0.123600px;}
.ls9a{letter-spacing:-0.087600px;}
.ls19{letter-spacing:-0.072000px;}
.lsaa{letter-spacing:-0.052560px;}
.lsa8{letter-spacing:-0.027360px;}
.ls2{letter-spacing:0.000000px;}
.ls9b{letter-spacing:0.015120px;}
.ls79{letter-spacing:0.019200px;}
.ls1{letter-spacing:0.026640px;}
.ls7a{letter-spacing:0.043200px;}
.ls5c{letter-spacing:0.048000px;}
.lsa9{letter-spacing:0.049680px;}
.lsac{letter-spacing:0.069600px;}
.ls29{letter-spacing:0.072000px;}
.ls33{letter-spacing:0.108000px;}
.ls16{letter-spacing:0.109200px;}
.lsb{letter-spacing:0.117360px;}
.ls7{letter-spacing:0.120240px;}
.ls0{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.183600px;}
.ls11{letter-spacing:0.188400px;}
.lsa6{letter-spacing:0.188640px;}
.lsad{letter-spacing:0.198600px;}
.ls9d{letter-spacing:0.212400px;}
.ls1e{letter-spacing:0.216000px;}
.ls93{letter-spacing:0.229800px;}
.ls82{letter-spacing:0.252000px;}
.lsf{letter-spacing:0.268560px;}
.ls4{letter-spacing:0.288000px;}
.ls2b{letter-spacing:0.295920px;}
.ls62{letter-spacing:0.304560px;}
.ls97{letter-spacing:0.324000px;}
.lsc{letter-spacing:0.360000px;}
.ls99{letter-spacing:0.460200px;}
.ls45{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.684000px;}
.ls64{letter-spacing:0.720000px;}
.ls75{letter-spacing:0.792000px;}
.ls8{letter-spacing:0.840240px;}
.ls12{letter-spacing:0.906000px;}
.ls7e{letter-spacing:1.008000px;}
.ls72{letter-spacing:1.440000px;}
.ls42{letter-spacing:2.160000px;}
.ls56{letter-spacing:2.232000px;}
.ls4b{letter-spacing:2.280000px;}
.ls76{letter-spacing:2.880000px;}
.ls55{letter-spacing:2.952000px;}
.lsa3{letter-spacing:3.600000px;}
.ls40{letter-spacing:4.320000px;}
.lsd{letter-spacing:4.440240px;}
.ls83{letter-spacing:5.040000px;}
.ls7b{letter-spacing:5.760000px;}
.ls73{letter-spacing:6.480000px;}
.ls71{letter-spacing:7.200000px;}
.ls92{letter-spacing:7.920000px;}
.ls94{letter-spacing:8.064000px;}
.ls4c{letter-spacing:8.640000px;}
.ls5e{letter-spacing:9.288000px;}
.ls81{letter-spacing:9.336000px;}
.ls8f{letter-spacing:10.080000px;}
.ls2c{letter-spacing:10.980000px;}
.ls51{letter-spacing:11.520000px;}
.ls43{letter-spacing:12.240000px;}
.ls4d{letter-spacing:12.960000px;}
.ls47{letter-spacing:15.840000px;}
.ls28{letter-spacing:17.280000px;}
.ls63{letter-spacing:18.000000px;}
.ls89{letter-spacing:18.072000px;}
.ls65{letter-spacing:18.720000px;}
.ls3c{letter-spacing:19.440000px;}
.ls7d{letter-spacing:20.808000px;}
.ls34{letter-spacing:20.880000px;}
.ls5b{letter-spacing:20.952000px;}
.ls9e{letter-spacing:22.986720px;}
.ls8a{letter-spacing:23.040000px;}
.ls31{letter-spacing:23.760000px;}
.ls74{letter-spacing:24.480000px;}
.ls3f{letter-spacing:25.200000px;}
.ls6e{letter-spacing:25.920000px;}
.ls69{letter-spacing:26.640000px;}
.lse{letter-spacing:26.760240px;}
.ls67{letter-spacing:27.360000px;}
.ls22{letter-spacing:28.800000px;}
.ls21{letter-spacing:28.920000px;}
.ls54{letter-spacing:30.240000px;}
.ls91{letter-spacing:30.384000px;}
.ls8e{letter-spacing:31.104000px;}
.ls5a{letter-spacing:32.520000px;}
.ls1f{letter-spacing:33.120000px;}
.ls48{letter-spacing:33.192000px;}
.lsa{letter-spacing:33.237360px;}
.ls95{letter-spacing:33.786720px;}
.ls59{letter-spacing:34.560000px;}
.ls8c{letter-spacing:34.704000px;}
.ls1b{letter-spacing:35.280000px;}
.ls90{letter-spacing:35.424000px;}
.ls68{letter-spacing:36.000000px;}
.ls7c{letter-spacing:36.720000px;}
.ls8d{letter-spacing:36.864000px;}
.ls20{letter-spacing:38.880000px;}
.ls58{letter-spacing:38.952000px;}
.ls4a{letter-spacing:40.320000px;}
.ls87{letter-spacing:41.736000px;}
.ls6a{letter-spacing:41.760000px;}
.ls80{letter-spacing:41.940000px;}
.ls32{letter-spacing:42.480000px;}
.ls18{letter-spacing:43.920000px;}
.ls46{letter-spacing:44.640000px;}
.ls44{letter-spacing:46.080000px;}
.ls8b{letter-spacing:46.944000px;}
.ls3d{letter-spacing:47.520000px;}
.ls85{letter-spacing:48.240000px;}
.ls6b{letter-spacing:49.680000px;}
.ls70{letter-spacing:50.580000px;}
.ls1a{letter-spacing:51.120000px;}
.ls7f{letter-spacing:53.280000px;}
.ls86{letter-spacing:59.760000px;}
.ls84{letter-spacing:60.012000px;}
.ls6d{letter-spacing:60.480000px;}
.ls52{letter-spacing:60.660000px;}
.ls6c{letter-spacing:61.200000px;}
.lsa7{letter-spacing:61.920000px;}
.lsa1{letter-spacing:63.306720px;}
.ls5f{letter-spacing:66.240000px;}
.lsa2{letter-spacing:66.906720px;}
.lsa0{letter-spacing:68.346720px;}
.ls66{letter-spacing:69.120000px;}
.lsa4{letter-spacing:69.775200px;}
.ls53{letter-spacing:69.840000px;}
.lsa5{letter-spacing:69.895200px;}
.ls96{letter-spacing:70.740000px;}
.ls30{letter-spacing:72.000000px;}
.ls2f{letter-spacing:72.720000px;}
.ls88{letter-spacing:73.440000px;}
.ls4f{letter-spacing:75.600000px;}
.ls4e{letter-spacing:75.672000px;}
.ls77{letter-spacing:78.480000px;}
.ls3e{letter-spacing:82.800000px;}
.ls61{letter-spacing:83.520000px;}
.ls35{letter-spacing:87.120000px;}
.ls78{letter-spacing:97.200000px;}
.ls2e{letter-spacing:102.960000px;}
.ls2d{letter-spacing:103.680000px;}
.ls9f{letter-spacing:118.800000px;}
.ls26{letter-spacing:119.664000px;}
.ls5d{letter-spacing:120.168000px;}
.ls3a{letter-spacing:121.608000px;}
.ls23{letter-spacing:125.424000px;}
.ls25{letter-spacing:126.864000px;}
.ls36{letter-spacing:127.368000px;}
.ls39{letter-spacing:128.808000px;}
.ls24{letter-spacing:131.184000px;}
.ls27{letter-spacing:131.904000px;}
.ls37{letter-spacing:133.128000px;}
.ls3b{letter-spacing:133.848000px;}
.ls49{letter-spacing:214.560000px;}
.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;}
}
.ws2{word-spacing:-34.704000px;}
.ws3{word-spacing:-34.416000px;}
.ws1{word-spacing:-34.272000px;}
.ws5{word-spacing:-20.316960px;}
.ws4{word-spacing:-19.596960px;}
.ws30{word-spacing:-18.720000px;}
.ws0{word-spacing:-18.584640px;}
.ws21{word-spacing:-18.432000px;}
.ws2a{word-spacing:-18.360000px;}
.ws16{word-spacing:-18.288000px;}
.ws31{word-spacing:-18.216000px;}
.ws27{word-spacing:-18.144000px;}
.ws10{word-spacing:-18.072000px;}
.ws11{word-spacing:-18.000000px;}
.ws1b{word-spacing:-17.856000px;}
.ws15{word-spacing:-17.784000px;}
.ws1d{word-spacing:-17.568000px;}
.ws20{word-spacing:-17.496000px;}
.ws1c{word-spacing:-17.424000px;}
.ws25{word-spacing:-17.352000px;}
.wsf{word-spacing:-17.208000px;}
.ws18{word-spacing:-17.136000px;}
.ws1f{word-spacing:-16.992000px;}
.ws19{word-spacing:-16.920000px;}
.ws1a{word-spacing:-16.848000px;}
.ws13{word-spacing:-16.704000px;}
.ws17{word-spacing:-16.632000px;}
.ws14{word-spacing:-16.560000px;}
.ws24{word-spacing:-16.416000px;}
.ws12{word-spacing:-16.344000px;}
.ws1e{word-spacing:-16.272000px;}
.ws26{word-spacing:-16.128000px;}
.wse{word-spacing:-15.108960px;}
.ws36{word-spacing:-15.069360px;}
.ws33{word-spacing:-15.049440px;}
.ws2d{word-spacing:-15.014880px;}
.ws7{word-spacing:-14.999760px;}
.ws34{word-spacing:-14.947200px;}
.ws8{word-spacing:-14.876160px;}
.wsd{word-spacing:-14.722560px;}
.ws35{word-spacing:-14.633760px;}
.ws9{word-spacing:-14.282640px;}
.ws2b{word-spacing:-14.205000px;}
.wsc{word-spacing:-14.159040px;}
.wsb{word-spacing:-14.156040px;}
.wsa{word-spacing:-14.099040px;}
.ws2f{word-spacing:-13.957200px;}
.ws37{word-spacing:-13.943400px;}
.ws28{word-spacing:-13.744800px;}
.ws32{word-spacing:-13.717440px;}
.ws2c{word-spacing:-13.657200px;}
.ws29{word-spacing:-13.522200px;}
.ws2e{word-spacing:-13.485000px;}
.ws22{word-spacing:-12.108240px;}
.ws23{word-spacing:-10.767600px;}
.ws6{word-spacing:0.000000px;}
._67{margin-left:-2.376000px;}
._0{margin-left:-1.010880px;}
._1{width:1.010880px;}
._35{width:2.121120px;}
._e{width:3.154560px;}
._f{width:4.183200px;}
._7{width:5.497920px;}
._8{width:7.395600px;}
._19{width:9.392160px;}
._9{width:10.637280px;}
._a{width:11.718000px;}
._38{width:13.566000px;}
._18{width:15.192000px;}
._16{width:17.640000px;}
._2a{width:18.881760px;}
._26{width:20.373120px;}
._27{width:21.744000px;}
._22{width:22.898880px;}
._21{width:24.120000px;}
._10{width:25.836960px;}
._59{width:26.864160px;}
._b{width:27.907920px;}
._c{width:28.983600px;}
._17{width:30.039120px;}
._5{width:32.031360px;}
._6{width:33.569520px;}
._13{width:35.198640px;}
._3b{width:36.216000px;}
._3{width:37.290240px;}
._4{width:38.485440px;}
._23{width:40.464000px;}
._11{width:41.951520px;}
._12{width:43.045680px;}
._14{width:44.863440px;}
._20{width:45.937200px;}
._5d{width:46.944000px;}
._2{width:48.031680px;}
._46{width:49.229280px;}
._d{width:50.997600px;}
._15{width:52.560000px;}
._32{width:54.576000px;}
._31{width:55.992000px;}
._4a{width:57.096000px;}
._1d{width:58.248000px;}
._1e{width:59.285760px;}
._41{width:60.480000px;}
._1c{width:62.424000px;}
._1b{width:63.648000px;}
._5c{width:64.872000px;}
._25{width:66.240000px;}
._24{width:67.968000px;}
._3d{width:69.192000px;}
._49{width:70.272000px;}
._4b{width:71.606880px;}
._1f{width:72.696000px;}
._55{width:74.016000px;}
._48{width:76.008000px;}
._47{width:77.052000px;}
._5f{width:78.105120px;}
._58{width:79.200000px;}
._4e{width:80.928000px;}
._30{width:81.936000px;}
._2f{width:83.232000px;}
._36{width:84.600000px;}
._54{width:86.256000px;}
._29{width:87.600000px;}
._6a{width:88.944000px;}
._45{width:93.878880px;}
._44{width:95.088000px;}
._3f{width:96.408000px;}
._3e{width:97.416000px;}
._28{width:99.288000px;}
._69{width:101.378880px;}
._68{width:102.648000px;}
._1a{width:103.800000px;}
._37{width:108.501120px;}
._5a{width:110.088000px;}
._34{width:111.816000px;}
._62{width:114.984000px;}
._6b{width:118.639440px;}
._50{width:120.170880px;}
._2d{width:121.968000px;}
._52{width:123.048000px;}
._53{width:124.404000px;}
._33{width:127.512000px;}
._2c{width:129.168000px;}
._42{width:131.030880px;}
._2b{width:133.056000px;}
._2e{width:134.208000px;}
._66{width:135.288000px;}
._65{width:136.584000px;}
._57{width:139.176000px;}
._56{width:140.181120px;}
._40{width:141.624000px;}
._5b{width:145.917120px;}
._60{width:147.600000px;}
._51{width:151.128000px;}
._61{width:152.640000px;}
._4f{width:154.344000px;}
._3a{width:165.528000px;}
._39{width:166.692000px;}
._3c{width:177.120000px;}
._5e{width:181.224000px;}
._4d{width:182.808000px;}
._4c{width:184.032000px;}
._43{width:214.608000px;}
._64{width:223.992000px;}
._63{width:225.072000px;}
.fc3{color:rgb(0,0,128);}
.fc7{color:rgb(34,34,34);}
.fc6{color:rgb(84,84,84);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(192,192,192);}
.fc2{color:rgb(128,128,128);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:144.000000px;}
.fs7{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:38.376000px;}
.y1b{bottom:59.076000px;}
.y67{bottom:81.756000px;}
.ydf{bottom:82.836000px;}
.y1a{bottom:83.196000px;}
.yc4{bottom:84.096000px;}
.yf3{bottom:86.796000px;}
.y44{bottom:90.216000px;}
.y13d{bottom:91.656000px;}
.y14a{bottom:92.556000px;}
.y85{bottom:93.816000px;}
.y141{bottom:96.696000px;}
.y14e{bottom:96.876000px;}
.y105{bottom:99.936000px;}
.yfa{bottom:100.656000px;}
.ya4{bottom:101.196000px;}
.y66{bottom:102.456000px;}
.yde{bottom:104.796000px;}
.y19{bottom:105.876000px;}
.yc3{bottom:106.056000px;}
.yf2{bottom:108.756000px;}
.y43{bottom:110.376000px;}
.y124{bottom:110.556000px;}
.y181{bottom:112.716000px;}
.y13c{bottom:113.616000px;}
.y149{bottom:114.516000px;}
.y140{bottom:118.656000px;}
.y10b{bottom:118.836000px;}
.y84{bottom:119.556000px;}
.yf9{bottom:122.616000px;}
.y65{bottom:123.156000px;}
.ydd{bottom:126.756000px;}
.y107{bottom:126.936000px;}
.yc2{bottom:128.016000px;}
.y42{bottom:130.536000px;}
.yf1{bottom:130.716000px;}
.y18{bottom:131.616000px;}
.y123{bottom:132.516000px;}
.y180{bottom:133.416000px;}
.y13b{bottom:135.576000px;}
.y148{bottom:136.476000px;}
.y83{bottom:140.616000px;}
.y64{bottom:143.856000px;}
.yf8{bottom:144.576000px;}
.ya3{bottom:145.296000px;}
.ydc{bottom:148.716000px;}
.yc1{bottom:149.976000px;}
.y41{bottom:150.690000px;}
.yf0{bottom:152.670000px;}
.y17f{bottom:154.110000px;}
.y122{bottom:154.470000px;}
.y17{bottom:157.170000px;}
.y147{bottom:158.430000px;}
.y13a{bottom:161.850000px;}
.y82{bottom:162.570000px;}
.y63{bottom:164.550000px;}
.yf7{bottom:166.530000px;}
.ya2{bottom:167.250000px;}
.ydb{bottom:170.670000px;}
.y40{bottom:170.850000px;}
.yc0{bottom:171.930000px;}
.yef{bottom:174.630000px;}
.y121{bottom:176.430000px;}
.y16{bottom:182.010000px;}
.y139{bottom:183.630000px;}
.y81{bottom:184.530000px;}
.y146{bottom:184.710000px;}
.y62{bottom:185.250000px;}
.yf6{bottom:188.490000px;}
.y151{bottom:188.670000px;}
.ya1{bottom:189.030000px;}
.y3f{bottom:191.010000px;}
.yda{bottom:192.630000px;}
.ybf{bottom:193.890000px;}
.y17e{bottom:195.150000px;}
.yee{bottom:196.590000px;}
.y120{bottom:198.390000px;}
.y15{bottom:203.970000px;}
.y138{bottom:205.590000px;}
.y61{bottom:205.950000px;}
.y80{bottom:206.490000px;}
.y104{bottom:210.630000px;}
.y154{bottom:210.810000px;}
.y3e{bottom:211.170000px;}
.ya0{bottom:213.150000px;}
.y17d{bottom:213.870000px;}
.yd9{bottom:214.590000px;}
.yf5{bottom:214.770000px;}
.ybe{bottom:215.850000px;}
.yed{bottom:218.730000px;}
.y153{bottom:218.910000px;}
.y11f{bottom:220.350000px;}
.y14{bottom:225.930000px;}
.y60{bottom:226.470000px;}
.y137{bottom:227.595000px;}
.y7f{bottom:228.495000px;}
.y3d{bottom:230.295000px;}
.y103{bottom:232.635000px;}
.y158{bottom:232.815000px;}
.y17c{bottom:234.255000px;}
.y9f{bottom:235.155000px;}
.yd8{bottom:236.595000px;}
.y152{bottom:236.775000px;}
.ybd{bottom:237.855000px;}
.yec{bottom:240.735000px;}
.y11e{bottom:242.355000px;}
.y3c{bottom:247.215000px;}
.y13{bottom:247.935000px;}
.y136{bottom:249.555000px;}
.y7e{bottom:250.455000px;}
.y17b{bottom:252.975000px;}
.y102{bottom:254.595000px;}
.y10a{bottom:254.775000px;}
.y9e{bottom:256.395000px;}
.y106{bottom:257.835000px;}
.yd7{bottom:258.555000px;}
.y156{bottom:258.735000px;}
.ybc{bottom:259.815000px;}
.yeb{bottom:262.695000px;}
.y11d{bottom:264.315000px;}
.y3b{bottom:265.575000px;}
.y5f{bottom:267.915000px;}
.y12{bottom:269.895000px;}
.y135{bottom:271.515000px;}
.y7d{bottom:272.415000px;}
.y17a{bottom:273.675000px;}
.y101{bottom:276.555000px;}
.y15a{bottom:276.735000px;}
.y9d{bottom:277.815000px;}
.yd6{bottom:280.515000px;}
.y109{bottom:280.695000px;}
.ybb{bottom:281.775000px;}
.y3a{bottom:283.755000px;}
.yea{bottom:284.655000px;}
.y11c{bottom:286.275000px;}
.y5e{bottom:288.615000px;}
.y11{bottom:291.855000px;}
.y134{bottom:293.475000px;}
.y179{bottom:294.195000px;}
.y7c{bottom:294.375000px;}
.y100{bottom:298.515000px;}
.y14d{bottom:298.695000px;}
.y9c{bottom:299.775000px;}
.y39{bottom:302.115000px;}
.yd5{bottom:302.475000px;}
.yba{bottom:303.735000px;}
.ye9{bottom:306.615000px;}
.ye8{bottom:306.795000px;}
.y5d{bottom:309.315000px;}
.y11b{bottom:312.555000px;}
.y10{bottom:313.815000px;}
.y133{bottom:315.435000px;}
.y7b{bottom:316.335000px;}
.y38{bottom:320.475000px;}
.y9b{bottom:321.735000px;}
.yd4{bottom:324.435000px;}
.y15b{bottom:324.615000px;}
.yb9{bottom:325.695000px;}
.ye7{bottom:328.575000px;}
.yfb{bottom:328.755000px;}
.y5c{bottom:330.015000px;}
.y11a{bottom:334.335000px;}
.yf{bottom:335.955000px;}
.y178{bottom:336.135000px;}
.y132{bottom:337.395000px;}
.y145{bottom:338.295000px;}
.y37{bottom:338.835000px;}
.yff{bottom:342.435000px;}
.y7a{bottom:342.615000px;}
.y9a{bottom:343.695000px;}
.yd3{bottom:346.395000px;}
.y164{bottom:346.575000px;}
.yb8{bottom:347.835000px;}
.ye6{bottom:350.535000px;}
.y5b{bottom:350.715000px;}
.y119{bottom:356.295000px;}
.y177{bottom:356.835000px;}
.y36{bottom:357.015000px;}
.ye{bottom:357.915000px;}
.y131{bottom:359.535000px;}
.y144{bottom:360.435000px;}
.y79{bottom:364.395000px;}
.y163{bottom:364.575000px;}
.y99{bottom:365.655000px;}
.yd2{bottom:368.535000px;}
.yb7{bottom:369.795000px;}
.y5a{bottom:371.415000px;}
.ye5{bottom:372.495000px;}
.y35{bottom:375.375000px;}
.y176{bottom:378.075000px;}
.y118{bottom:378.255000px;}
.y130{bottom:381.495000px;}
.y162{bottom:382.395000px;}
.yd{bottom:384.735000px;}
.y78{bottom:386.355000px;}
.y143{bottom:386.535000px;}
.y98{bottom:387.615000px;}
.yd1{bottom:390.495000px;}
.y157{bottom:390.675000px;}
.yb6{bottom:391.755000px;}
.y59{bottom:392.115000px;}
.y34{bottom:393.735000px;}
.ye4{bottom:394.455000px;}
.yfc{bottom:394.635000px;}
.y175{bottom:398.775000px;}
.y117{bottom:400.215000px;}
.y161{bottom:404.355000px;}
.y12f{bottom:407.595000px;}
.y77{bottom:408.315000px;}
.y97{bottom:409.575000px;}
.y33{bottom:411.915000px;}
.yd0{bottom:412.455000px;}
.yfe{bottom:412.635000px;}
.y58{bottom:412.815000px;}
.yb5{bottom:413.715000px;}
.y192{bottom:414.615000px;}
.ye3{bottom:416.415000px;}
.y108{bottom:416.595000px;}
.y174{bottom:420.045000px;}
.y116{bottom:422.205000px;}
.y160{bottom:426.345000px;}
.yc{bottom:428.685000px;}
.y12e{bottom:429.405000px;}
.y32{bottom:430.305000px;}
.y57{bottom:433.545000px;}
.ycf{bottom:434.445000px;}
.y150{bottom:434.625000px;}
.yb4{bottom:435.705000px;}
.y96{bottom:435.885000px;}
.ye2{bottom:438.405000px;}
.yf4{bottom:438.585000px;}
.y173{bottom:440.205000px;}
.y191{bottom:444.705000px;}
.y115{bottom:448.485000px;}
.y31{bottom:448.665000px;}
.y12d{bottom:451.365000px;}
.y76{bottom:452.265000px;}
.y15f{bottom:452.445000px;}
.y56{bottom:454.245000px;}
.yce{bottom:456.405000px;}
.y159{bottom:456.585000px;}
.y95{bottom:457.665000px;}
.ye1{bottom:460.365000px;}
.y172{bottom:461.805000px;}
.y190{bottom:465.045000px;}
.y30{bottom:467.025000px;}
.yb{bottom:472.605000px;}
.y12c{bottom:473.325000px;}
.y75{bottom:474.225000px;}
.y114{bottom:474.405000px;}
.y55{bottom:474.945000px;}
.ycd{bottom:478.365000px;}
.y13f{bottom:478.545000px;}
.yb3{bottom:479.625000px;}
.ye0{bottom:482.325000px;}
.y171{bottom:482.505000px;}
.y94{bottom:482.865000px;}
.y18f{bottom:483.765000px;}
.y2f{bottom:485.205000px;}
.y12b{bottom:495.285000px;}
.y54{bottom:495.645000px;}
.y74{bottom:496.185000px;}
.ycc{bottom:500.325000px;}
.y14c{bottom:500.505000px;}
.yb2{bottom:501.585000px;}
.y2e{bottom:503.565000px;}
.y93{bottom:504.285000px;}
.y18e{bottom:504.465000px;}
.y53{bottom:516.345000px;}
.ya{bottom:516.525000px;}
.y12a{bottom:517.425000px;}
.y73{bottom:518.325000px;}
.y2d{bottom:521.925000px;}
.ycb{bottom:522.285000px;}
.yb1{bottom:523.545000px;}
.y170{bottom:524.265000px;}
.y18d{bottom:525.165000px;}
.y92{bottom:526.425000px;}
.y10c{bottom:526.605000px;}
.y52{bottom:537.045000px;}
.y129{bottom:539.385000px;}
.y2c{bottom:540.285000px;}
.yca{bottom:544.245000px;}
.y16f{bottom:544.605000px;}
.yb0{bottom:545.505000px;}
.y18c{bottom:545.685000px;}
.y91{bottom:548.385000px;}
.y9{bottom:555.585000px;}
.y51{bottom:557.745000px;}
.y2b{bottom:558.465000px;}
.y128{bottom:561.345000px;}
.y72{bottom:562.245000px;}
.yc9{bottom:566.205000px;}
.y113{bottom:566.385000px;}
.y18b{bottom:566.565000px;}
.yaf{bottom:567.465000px;}
.y90{bottom:570.345000px;}
.y2a{bottom:576.825000px;}
.y8{bottom:577.545000px;}
.y50{bottom:578.805000px;}
.y127{bottom:583.305000px;}
.y71{bottom:584.205000px;}
.y16e{bottom:586.905000px;}
.y18a{bottom:587.265000px;}
.yc8{bottom:588.165000px;}
.y142{bottom:588.345000px;}
.yae{bottom:589.425000px;}
.y8f{bottom:592.305000px;}
.y29{bottom:595.185000px;}
.y7{bottom:600.405000px;}
.y4f{bottom:600.765000px;}
.y126{bottom:605.265000px;}
.y70{bottom:606.165000px;}
.y16d{bottom:607.425000px;}
.y189{bottom:608.010000px;}
.yc7{bottom:610.170000px;}
.yad{bottom:611.430000px;}
.y28{bottom:613.410000px;}
.y8e{bottom:614.310000px;}
.yfd{bottom:614.490000px;}
.y4e{bottom:622.950000px;}
.y6{bottom:625.290000px;}
.y125{bottom:627.270000px;}
.y6f{bottom:628.170000px;}
.y16c{bottom:628.710000px;}
.y27{bottom:631.770000px;}
.yc6{bottom:632.130000px;}
.y15e{bottom:632.310000px;}
.yac{bottom:633.390000px;}
.y8d{bottom:636.270000px;}
.y14f{bottom:636.450000px;}
.y4d{bottom:644.910000px;}
.y5{bottom:647.250000px;}
.y16b{bottom:649.410000px;}
.y26{bottom:650.130000px;}
.y112{bottom:654.090000px;}
.yab{bottom:655.530000px;}
.y8c{bottom:658.230000px;}
.yc5{bottom:658.410000px;}
.y4c{bottom:666.870000px;}
.y25{bottom:668.490000px;}
.y16a{bottom:670.110000px;}
.y6e{bottom:672.090000px;}
.y111{bottom:676.050000px;}
.yaa{bottom:677.490000px;}
.y8b{bottom:680.190000px;}
.y24{bottom:686.670000px;}
.y4b{bottom:688.830000px;}
.y188{bottom:690.810000px;}
.y169{bottom:691.350000px;}
.y6d{bottom:694.050000px;}
.y110{bottom:698.190000px;}
.ya9{bottom:699.450000px;}
.y8a{bottom:702.150000px;}
.y13e{bottom:702.330000px;}
.y23{bottom:705.030000px;}
.y4a{bottom:710.790000px;}
.y187{bottom:711.510000px;}
.y168{bottom:711.870000px;}
.y6c{bottom:716.010000px;}
.y10f{bottom:720.150000px;}
.ya8{bottom:721.410000px;}
.y22{bottom:723.390000px;}
.y89{bottom:724.110000px;}
.y14b{bottom:724.290000px;}
.y186{bottom:731.850000px;}
.y49{bottom:732.750000px;}
.y167{bottom:733.110000px;}
.y4{bottom:735.450000px;}
.y21{bottom:741.750000px;}
.y10e{bottom:742.110000px;}
.y6b{bottom:742.290000px;}
.ya7{bottom:743.370000px;}
.y88{bottom:746.070000px;}
.y155{bottom:746.250000px;}
.y185{bottom:750.570000px;}
.y166{bottom:753.810000px;}
.y48{bottom:754.350000px;}
.y3{bottom:759.390000px;}
.y20{bottom:759.930000px;}
.y6a{bottom:764.070000px;}
.ya6{bottom:765.330000px;}
.y87{bottom:768.030000px;}
.y10d{bottom:768.210000px;}
.y184{bottom:771.270000px;}
.y47{bottom:774.690000px;}
.y1f{bottom:778.290000px;}
.y2{bottom:783.510000px;}
.y15d{bottom:786.030000px;}
.y86{bottom:789.990000px;}
.y69{bottom:790.170000px;}
.ya5{bottom:790.530000px;}
.y183{bottom:792.150000px;}
.y165{bottom:792.870000px;}
.y46{bottom:793.590000px;}
.y1e{bottom:796.650000px;}
.y1{bottom:809.100000px;}
.y68{bottom:811.980000px;}
.y15c{bottom:812.160000px;}
.y182{bottom:812.700000px;}
.y45{bottom:813.600000px;}
.y1d{bottom:814.860000px;}
.h19{height:48.730078px;}
.h7{height:48.759258px;}
.h9{height:48.817617px;}
.h8{height:48.934336px;}
.h18{height:50.484375px;}
.h16{height:52.628906px;}
.ha{height:54.111094px;}
.h11{height:55.089844px;}
.h13{height:58.710938px;}
.h4{height:58.746094px;}
.hb{height:58.816406px;}
.hd{height:58.957031px;}
.h17{height:61.423863px;}
.h14{height:61.696406px;}
.h3{height:63.521719px;}
.h2{height:68.815195px;}
.hf{height:70.628906px;}
.h6{height:70.664062px;}
.he{height:71.613281px;}
.h15{height:72.526992px;}
.h1a{height:72.562500px;}
.hc{height:73.722656px;}
.h10{height:74.004654px;}
.h5{height:117.632812px;}
.h12{height:122.051953px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w0{width:629.460000px;}
.x0{left:0.000000px;}
.x5{left:63.900000px;}
.x1e{left:68.040000px;}
.x19{left:79.056000px;}
.x16{left:80.316000px;}
.x18{left:82.116000px;}
.x1d{left:85.176000px;}
.x1b{left:90.936000px;}
.x1c{left:95.976000px;}
.x15{left:104.796000px;}
.xf{left:106.416000px;}
.x9{left:117.576000px;}
.x12{left:138.096000px;}
.x13{left:142.416000px;}
.x1{left:145.476000px;}
.x14{left:146.556000px;}
.x7{left:151.230000px;}
.x8{left:155.910000px;}
.xa{left:171.750000px;}
.x3{left:192.810000px;}
.x2{left:197.490000px;}
.x1a{left:222.015000px;}
.x10{left:232.275000px;}
.x11{left:236.235000px;}
.x17{left:250.455000px;}
.x4{left:263.595000px;}
.xb{left:286.275000px;}
.xe{left:305.895000px;}
.xc{left:310.395000px;}
.xd{left:317.235000px;}
.x6{left:341.355000px;}
@media print{
.v2{vertical-align:-8.320000pt;}
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.560000pt;}
.v4{vertical-align:29.440000pt;}
.ls41{letter-spacing:-0.704000pt;}
.ls60{letter-spacing:-0.640000pt;}
.ls50{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.476800pt;}
.ls2a{letter-spacing:-0.448000pt;}
.ls38{letter-spacing:-0.384000pt;}
.lsab{letter-spacing:-0.325333pt;}
.ls57{letter-spacing:-0.320000pt;}
.ls6f{letter-spacing:-0.291200pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.246400pt;}
.ls9c{letter-spacing:-0.230933pt;}
.ls98{letter-spacing:-0.197867pt;}
.ls1c{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.163200pt;}
.ls17{letter-spacing:-0.158933pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.112533pt;}
.ls10{letter-spacing:-0.109867pt;}
.ls9a{letter-spacing:-0.077867pt;}
.ls19{letter-spacing:-0.064000pt;}
.lsaa{letter-spacing:-0.046720pt;}
.lsa8{letter-spacing:-0.024320pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9b{letter-spacing:0.013440pt;}
.ls79{letter-spacing:0.017067pt;}
.ls1{letter-spacing:0.023680pt;}
.ls7a{letter-spacing:0.038400pt;}
.ls5c{letter-spacing:0.042667pt;}
.lsa9{letter-spacing:0.044160pt;}
.lsac{letter-spacing:0.061867pt;}
.ls29{letter-spacing:0.064000pt;}
.ls33{letter-spacing:0.096000pt;}
.ls16{letter-spacing:0.097067pt;}
.lsb{letter-spacing:0.104320pt;}
.ls7{letter-spacing:0.106880pt;}
.ls0{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.163200pt;}
.ls11{letter-spacing:0.167467pt;}
.lsa6{letter-spacing:0.167680pt;}
.lsad{letter-spacing:0.176533pt;}
.ls9d{letter-spacing:0.188800pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls93{letter-spacing:0.204267pt;}
.ls82{letter-spacing:0.224000pt;}
.lsf{letter-spacing:0.238720pt;}
.ls4{letter-spacing:0.256000pt;}
.ls2b{letter-spacing:0.263040pt;}
.ls62{letter-spacing:0.270720pt;}
.ls97{letter-spacing:0.288000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls99{letter-spacing:0.409067pt;}
.ls45{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.608000pt;}
.ls64{letter-spacing:0.640000pt;}
.ls75{letter-spacing:0.704000pt;}
.ls8{letter-spacing:0.746880pt;}
.ls12{letter-spacing:0.805333pt;}
.ls7e{letter-spacing:0.896000pt;}
.ls72{letter-spacing:1.280000pt;}
.ls42{letter-spacing:1.920000pt;}
.ls56{letter-spacing:1.984000pt;}
.ls4b{letter-spacing:2.026667pt;}
.ls76{letter-spacing:2.560000pt;}
.ls55{letter-spacing:2.624000pt;}
.lsa3{letter-spacing:3.200000pt;}
.ls40{letter-spacing:3.840000pt;}
.lsd{letter-spacing:3.946880pt;}
.ls83{letter-spacing:4.480000pt;}
.ls7b{letter-spacing:5.120000pt;}
.ls73{letter-spacing:5.760000pt;}
.ls71{letter-spacing:6.400000pt;}
.ls92{letter-spacing:7.040000pt;}
.ls94{letter-spacing:7.168000pt;}
.ls4c{letter-spacing:7.680000pt;}
.ls5e{letter-spacing:8.256000pt;}
.ls81{letter-spacing:8.298667pt;}
.ls8f{letter-spacing:8.960000pt;}
.ls2c{letter-spacing:9.760000pt;}
.ls51{letter-spacing:10.240000pt;}
.ls43{letter-spacing:10.880000pt;}
.ls4d{letter-spacing:11.520000pt;}
.ls47{letter-spacing:14.080000pt;}
.ls28{letter-spacing:15.360000pt;}
.ls63{letter-spacing:16.000000pt;}
.ls89{letter-spacing:16.064000pt;}
.ls65{letter-spacing:16.640000pt;}
.ls3c{letter-spacing:17.280000pt;}
.ls7d{letter-spacing:18.496000pt;}
.ls34{letter-spacing:18.560000pt;}
.ls5b{letter-spacing:18.624000pt;}
.ls9e{letter-spacing:20.432640pt;}
.ls8a{letter-spacing:20.480000pt;}
.ls31{letter-spacing:21.120000pt;}
.ls74{letter-spacing:21.760000pt;}
.ls3f{letter-spacing:22.400000pt;}
.ls6e{letter-spacing:23.040000pt;}
.ls69{letter-spacing:23.680000pt;}
.lse{letter-spacing:23.786880pt;}
.ls67{letter-spacing:24.320000pt;}
.ls22{letter-spacing:25.600000pt;}
.ls21{letter-spacing:25.706667pt;}
.ls54{letter-spacing:26.880000pt;}
.ls91{letter-spacing:27.008000pt;}
.ls8e{letter-spacing:27.648000pt;}
.ls5a{letter-spacing:28.906667pt;}
.ls1f{letter-spacing:29.440000pt;}
.ls48{letter-spacing:29.504000pt;}
.lsa{letter-spacing:29.544320pt;}
.ls95{letter-spacing:30.032640pt;}
.ls59{letter-spacing:30.720000pt;}
.ls8c{letter-spacing:30.848000pt;}
.ls1b{letter-spacing:31.360000pt;}
.ls90{letter-spacing:31.488000pt;}
.ls68{letter-spacing:32.000000pt;}
.ls7c{letter-spacing:32.640000pt;}
.ls8d{letter-spacing:32.768000pt;}
.ls20{letter-spacing:34.560000pt;}
.ls58{letter-spacing:34.624000pt;}
.ls4a{letter-spacing:35.840000pt;}
.ls87{letter-spacing:37.098667pt;}
.ls6a{letter-spacing:37.120000pt;}
.ls80{letter-spacing:37.280000pt;}
.ls32{letter-spacing:37.760000pt;}
.ls18{letter-spacing:39.040000pt;}
.ls46{letter-spacing:39.680000pt;}
.ls44{letter-spacing:40.960000pt;}
.ls8b{letter-spacing:41.728000pt;}
.ls3d{letter-spacing:42.240000pt;}
.ls85{letter-spacing:42.880000pt;}
.ls6b{letter-spacing:44.160000pt;}
.ls70{letter-spacing:44.960000pt;}
.ls1a{letter-spacing:45.440000pt;}
.ls7f{letter-spacing:47.360000pt;}
.ls86{letter-spacing:53.120000pt;}
.ls84{letter-spacing:53.344000pt;}
.ls6d{letter-spacing:53.760000pt;}
.ls52{letter-spacing:53.920000pt;}
.ls6c{letter-spacing:54.400000pt;}
.lsa7{letter-spacing:55.040000pt;}
.lsa1{letter-spacing:56.272640pt;}
.ls5f{letter-spacing:58.880000pt;}
.lsa2{letter-spacing:59.472640pt;}
.lsa0{letter-spacing:60.752640pt;}
.ls66{letter-spacing:61.440000pt;}
.lsa4{letter-spacing:62.022400pt;}
.ls53{letter-spacing:62.080000pt;}
.lsa5{letter-spacing:62.129067pt;}
.ls96{letter-spacing:62.880000pt;}
.ls30{letter-spacing:64.000000pt;}
.ls2f{letter-spacing:64.640000pt;}
.ls88{letter-spacing:65.280000pt;}
.ls4f{letter-spacing:67.200000pt;}
.ls4e{letter-spacing:67.264000pt;}
.ls77{letter-spacing:69.760000pt;}
.ls3e{letter-spacing:73.600000pt;}
.ls61{letter-spacing:74.240000pt;}
.ls35{letter-spacing:77.440000pt;}
.ls78{letter-spacing:86.400000pt;}
.ls2e{letter-spacing:91.520000pt;}
.ls2d{letter-spacing:92.160000pt;}
.ls9f{letter-spacing:105.600000pt;}
.ls26{letter-spacing:106.368000pt;}
.ls5d{letter-spacing:106.816000pt;}
.ls3a{letter-spacing:108.096000pt;}
.ls23{letter-spacing:111.488000pt;}
.ls25{letter-spacing:112.768000pt;}
.ls36{letter-spacing:113.216000pt;}
.ls39{letter-spacing:114.496000pt;}
.ls24{letter-spacing:116.608000pt;}
.ls27{letter-spacing:117.248000pt;}
.ls37{letter-spacing:118.336000pt;}
.ls3b{letter-spacing:118.976000pt;}
.ls49{letter-spacing:190.720000pt;}
.ws2{word-spacing:-30.848000pt;}
.ws3{word-spacing:-30.592000pt;}
.ws1{word-spacing:-30.464000pt;}
.ws5{word-spacing:-18.059520pt;}
.ws4{word-spacing:-17.419520pt;}
.ws30{word-spacing:-16.640000pt;}
.ws0{word-spacing:-16.519680pt;}
.ws21{word-spacing:-16.384000pt;}
.ws2a{word-spacing:-16.320000pt;}
.ws16{word-spacing:-16.256000pt;}
.ws31{word-spacing:-16.192000pt;}
.ws27{word-spacing:-16.128000pt;}
.ws10{word-spacing:-16.064000pt;}
.ws11{word-spacing:-16.000000pt;}
.ws1b{word-spacing:-15.872000pt;}
.ws15{word-spacing:-15.808000pt;}
.ws1d{word-spacing:-15.616000pt;}
.ws20{word-spacing:-15.552000pt;}
.ws1c{word-spacing:-15.488000pt;}
.ws25{word-spacing:-15.424000pt;}
.wsf{word-spacing:-15.296000pt;}
.ws18{word-spacing:-15.232000pt;}
.ws1f{word-spacing:-15.104000pt;}
.ws19{word-spacing:-15.040000pt;}
.ws1a{word-spacing:-14.976000pt;}
.ws13{word-spacing:-14.848000pt;}
.ws17{word-spacing:-14.784000pt;}
.ws14{word-spacing:-14.720000pt;}
.ws24{word-spacing:-14.592000pt;}
.ws12{word-spacing:-14.528000pt;}
.ws1e{word-spacing:-14.464000pt;}
.ws26{word-spacing:-14.336000pt;}
.wse{word-spacing:-13.430187pt;}
.ws36{word-spacing:-13.394987pt;}
.ws33{word-spacing:-13.377280pt;}
.ws2d{word-spacing:-13.346560pt;}
.ws7{word-spacing:-13.333120pt;}
.ws34{word-spacing:-13.286400pt;}
.ws8{word-spacing:-13.223253pt;}
.wsd{word-spacing:-13.086720pt;}
.ws35{word-spacing:-13.007787pt;}
.ws9{word-spacing:-12.695680pt;}
.ws2b{word-spacing:-12.626667pt;}
.wsc{word-spacing:-12.585813pt;}
.wsb{word-spacing:-12.583147pt;}
.wsa{word-spacing:-12.532480pt;}
.ws2f{word-spacing:-12.406400pt;}
.ws37{word-spacing:-12.394133pt;}
.ws28{word-spacing:-12.217600pt;}
.ws32{word-spacing:-12.193280pt;}
.ws2c{word-spacing:-12.139733pt;}
.ws29{word-spacing:-12.019733pt;}
.ws2e{word-spacing:-11.986667pt;}
.ws22{word-spacing:-10.762880pt;}
.ws23{word-spacing:-9.571200pt;}
.ws6{word-spacing:0.000000pt;}
._67{margin-left:-2.112000pt;}
._0{margin-left:-0.898560pt;}
._1{width:0.898560pt;}
._35{width:1.885440pt;}
._e{width:2.804053pt;}
._f{width:3.718400pt;}
._7{width:4.887040pt;}
._8{width:6.573867pt;}
._19{width:8.348587pt;}
._9{width:9.455360pt;}
._a{width:10.416000pt;}
._38{width:12.058667pt;}
._18{width:13.504000pt;}
._16{width:15.680000pt;}
._2a{width:16.783787pt;}
._26{width:18.109440pt;}
._27{width:19.328000pt;}
._22{width:20.354560pt;}
._21{width:21.440000pt;}
._10{width:22.966187pt;}
._59{width:23.879253pt;}
._b{width:24.807040pt;}
._c{width:25.763200pt;}
._17{width:26.701440pt;}
._5{width:28.472320pt;}
._6{width:29.839573pt;}
._13{width:31.287680pt;}
._3b{width:32.192000pt;}
._3{width:33.146880pt;}
._4{width:34.209280pt;}
._23{width:35.968000pt;}
._11{width:37.290240pt;}
._12{width:38.262827pt;}
._14{width:39.878613pt;}
._20{width:40.833067pt;}
._5d{width:41.728000pt;}
._2{width:42.694827pt;}
._46{width:43.759360pt;}
._d{width:45.331200pt;}
._15{width:46.720000pt;}
._32{width:48.512000pt;}
._31{width:49.770667pt;}
._4a{width:50.752000pt;}
._1d{width:51.776000pt;}
._1e{width:52.698453pt;}
._41{width:53.760000pt;}
._1c{width:55.488000pt;}
._1b{width:56.576000pt;}
._5c{width:57.664000pt;}
._25{width:58.880000pt;}
._24{width:60.416000pt;}
._3d{width:61.504000pt;}
._49{width:62.464000pt;}
._4b{width:63.650560pt;}
._1f{width:64.618667pt;}
._55{width:65.792000pt;}
._48{width:67.562667pt;}
._47{width:68.490667pt;}
._5f{width:69.426773pt;}
._58{width:70.400000pt;}
._4e{width:71.936000pt;}
._30{width:72.832000pt;}
._2f{width:73.984000pt;}
._36{width:75.200000pt;}
._54{width:76.672000pt;}
._29{width:77.866667pt;}
._6a{width:79.061333pt;}
._45{width:83.447893pt;}
._44{width:84.522667pt;}
._3f{width:85.696000pt;}
._3e{width:86.592000pt;}
._28{width:88.256000pt;}
._69{width:90.114560pt;}
._68{width:91.242667pt;}
._1a{width:92.266667pt;}
._37{width:96.445440pt;}
._5a{width:97.856000pt;}
._34{width:99.392000pt;}
._62{width:102.208000pt;}
._6b{width:105.457280pt;}
._50{width:106.818560pt;}
._2d{width:108.416000pt;}
._52{width:109.376000pt;}
._53{width:110.581333pt;}
._33{width:113.344000pt;}
._2c{width:114.816000pt;}
._42{width:116.471893pt;}
._2b{width:118.272000pt;}
._2e{width:119.296000pt;}
._66{width:120.256000pt;}
._65{width:121.408000pt;}
._57{width:123.712000pt;}
._56{width:124.605440pt;}
._40{width:125.888000pt;}
._5b{width:129.704107pt;}
._60{width:131.200000pt;}
._51{width:134.336000pt;}
._61{width:135.680000pt;}
._4f{width:137.194667pt;}
._3a{width:147.136000pt;}
._39{width:148.170667pt;}
._3c{width:157.440000pt;}
._5e{width:161.088000pt;}
._4d{width:162.496000pt;}
._4c{width:163.584000pt;}
._43{width:190.762667pt;}
._64{width:199.104000pt;}
._63{width:200.064000pt;}
.fs8{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:128.000000pt;}
.fs7{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:34.112000pt;}
.y1b{bottom:52.512000pt;}
.y67{bottom:72.672000pt;}
.ydf{bottom:73.632000pt;}
.y1a{bottom:73.952000pt;}
.yc4{bottom:74.752000pt;}
.yf3{bottom:77.152000pt;}
.y44{bottom:80.192000pt;}
.y13d{bottom:81.472000pt;}
.y14a{bottom:82.272000pt;}
.y85{bottom:83.392000pt;}
.y141{bottom:85.952000pt;}
.y14e{bottom:86.112000pt;}
.y105{bottom:88.832000pt;}
.yfa{bottom:89.472000pt;}
.ya4{bottom:89.952000pt;}
.y66{bottom:91.072000pt;}
.yde{bottom:93.152000pt;}
.y19{bottom:94.112000pt;}
.yc3{bottom:94.272000pt;}
.yf2{bottom:96.672000pt;}
.y43{bottom:98.112000pt;}
.y124{bottom:98.272000pt;}
.y181{bottom:100.192000pt;}
.y13c{bottom:100.992000pt;}
.y149{bottom:101.792000pt;}
.y140{bottom:105.472000pt;}
.y10b{bottom:105.632000pt;}
.y84{bottom:106.272000pt;}
.yf9{bottom:108.992000pt;}
.y65{bottom:109.472000pt;}
.ydd{bottom:112.672000pt;}
.y107{bottom:112.832000pt;}
.yc2{bottom:113.792000pt;}
.y42{bottom:116.032000pt;}
.yf1{bottom:116.192000pt;}
.y18{bottom:116.992000pt;}
.y123{bottom:117.792000pt;}
.y180{bottom:118.592000pt;}
.y13b{bottom:120.512000pt;}
.y148{bottom:121.312000pt;}
.y83{bottom:124.992000pt;}
.y64{bottom:127.872000pt;}
.yf8{bottom:128.512000pt;}
.ya3{bottom:129.152000pt;}
.ydc{bottom:132.192000pt;}
.yc1{bottom:133.312000pt;}
.y41{bottom:133.946667pt;}
.yf0{bottom:135.706667pt;}
.y17f{bottom:136.986667pt;}
.y122{bottom:137.306667pt;}
.y17{bottom:139.706667pt;}
.y147{bottom:140.826667pt;}
.y13a{bottom:143.866667pt;}
.y82{bottom:144.506667pt;}
.y63{bottom:146.266667pt;}
.yf7{bottom:148.026667pt;}
.ya2{bottom:148.666667pt;}
.ydb{bottom:151.706667pt;}
.y40{bottom:151.866667pt;}
.yc0{bottom:152.826667pt;}
.yef{bottom:155.226667pt;}
.y121{bottom:156.826667pt;}
.y16{bottom:161.786667pt;}
.y139{bottom:163.226667pt;}
.y81{bottom:164.026667pt;}
.y146{bottom:164.186667pt;}
.y62{bottom:164.666667pt;}
.yf6{bottom:167.546667pt;}
.y151{bottom:167.706667pt;}
.ya1{bottom:168.026667pt;}
.y3f{bottom:169.786667pt;}
.yda{bottom:171.226667pt;}
.ybf{bottom:172.346667pt;}
.y17e{bottom:173.466667pt;}
.yee{bottom:174.746667pt;}
.y120{bottom:176.346667pt;}
.y15{bottom:181.306667pt;}
.y138{bottom:182.746667pt;}
.y61{bottom:183.066667pt;}
.y80{bottom:183.546667pt;}
.y104{bottom:187.226667pt;}
.y154{bottom:187.386667pt;}
.y3e{bottom:187.706667pt;}
.ya0{bottom:189.466667pt;}
.y17d{bottom:190.106667pt;}
.yd9{bottom:190.746667pt;}
.yf5{bottom:190.906667pt;}
.ybe{bottom:191.866667pt;}
.yed{bottom:194.426667pt;}
.y153{bottom:194.586667pt;}
.y11f{bottom:195.866667pt;}
.y14{bottom:200.826667pt;}
.y60{bottom:201.306667pt;}
.y137{bottom:202.306667pt;}
.y7f{bottom:203.106667pt;}
.y3d{bottom:204.706667pt;}
.y103{bottom:206.786667pt;}
.y158{bottom:206.946667pt;}
.y17c{bottom:208.226667pt;}
.y9f{bottom:209.026667pt;}
.yd8{bottom:210.306667pt;}
.y152{bottom:210.466667pt;}
.ybd{bottom:211.426667pt;}
.yec{bottom:213.986667pt;}
.y11e{bottom:215.426667pt;}
.y3c{bottom:219.746667pt;}
.y13{bottom:220.386667pt;}
.y136{bottom:221.826667pt;}
.y7e{bottom:222.626667pt;}
.y17b{bottom:224.866667pt;}
.y102{bottom:226.306667pt;}
.y10a{bottom:226.466667pt;}
.y9e{bottom:227.906667pt;}
.y106{bottom:229.186667pt;}
.yd7{bottom:229.826667pt;}
.y156{bottom:229.986667pt;}
.ybc{bottom:230.946667pt;}
.yeb{bottom:233.506667pt;}
.y11d{bottom:234.946667pt;}
.y3b{bottom:236.066667pt;}
.y5f{bottom:238.146667pt;}
.y12{bottom:239.906667pt;}
.y135{bottom:241.346667pt;}
.y7d{bottom:242.146667pt;}
.y17a{bottom:243.266667pt;}
.y101{bottom:245.826667pt;}
.y15a{bottom:245.986667pt;}
.y9d{bottom:246.946667pt;}
.yd6{bottom:249.346667pt;}
.y109{bottom:249.506667pt;}
.ybb{bottom:250.466667pt;}
.y3a{bottom:252.226667pt;}
.yea{bottom:253.026667pt;}
.y11c{bottom:254.466667pt;}
.y5e{bottom:256.546667pt;}
.y11{bottom:259.426667pt;}
.y134{bottom:260.866667pt;}
.y179{bottom:261.506667pt;}
.y7c{bottom:261.666667pt;}
.y100{bottom:265.346667pt;}
.y14d{bottom:265.506667pt;}
.y9c{bottom:266.466667pt;}
.y39{bottom:268.546667pt;}
.yd5{bottom:268.866667pt;}
.yba{bottom:269.986667pt;}
.ye9{bottom:272.546667pt;}
.ye8{bottom:272.706667pt;}
.y5d{bottom:274.946667pt;}
.y11b{bottom:277.826667pt;}
.y10{bottom:278.946667pt;}
.y133{bottom:280.386667pt;}
.y7b{bottom:281.186667pt;}
.y38{bottom:284.866667pt;}
.y9b{bottom:285.986667pt;}
.yd4{bottom:288.386667pt;}
.y15b{bottom:288.546667pt;}
.yb9{bottom:289.506667pt;}
.ye7{bottom:292.066667pt;}
.yfb{bottom:292.226667pt;}
.y5c{bottom:293.346667pt;}
.y11a{bottom:297.186667pt;}
.yf{bottom:298.626667pt;}
.y178{bottom:298.786667pt;}
.y132{bottom:299.906667pt;}
.y145{bottom:300.706667pt;}
.y37{bottom:301.186667pt;}
.yff{bottom:304.386667pt;}
.y7a{bottom:304.546667pt;}
.y9a{bottom:305.506667pt;}
.yd3{bottom:307.906667pt;}
.y164{bottom:308.066667pt;}
.yb8{bottom:309.186667pt;}
.ye6{bottom:311.586667pt;}
.y5b{bottom:311.746667pt;}
.y119{bottom:316.706667pt;}
.y177{bottom:317.186667pt;}
.y36{bottom:317.346667pt;}
.ye{bottom:318.146667pt;}
.y131{bottom:319.586667pt;}
.y144{bottom:320.386667pt;}
.y79{bottom:323.906667pt;}
.y163{bottom:324.066667pt;}
.y99{bottom:325.026667pt;}
.yd2{bottom:327.586667pt;}
.yb7{bottom:328.706667pt;}
.y5a{bottom:330.146667pt;}
.ye5{bottom:331.106667pt;}
.y35{bottom:333.666667pt;}
.y176{bottom:336.066667pt;}
.y118{bottom:336.226667pt;}
.y130{bottom:339.106667pt;}
.y162{bottom:339.906667pt;}
.yd{bottom:341.986667pt;}
.y78{bottom:343.426667pt;}
.y143{bottom:343.586667pt;}
.y98{bottom:344.546667pt;}
.yd1{bottom:347.106667pt;}
.y157{bottom:347.266667pt;}
.yb6{bottom:348.226667pt;}
.y59{bottom:348.546667pt;}
.y34{bottom:349.986667pt;}
.ye4{bottom:350.626667pt;}
.yfc{bottom:350.786667pt;}
.y175{bottom:354.466667pt;}
.y117{bottom:355.746667pt;}
.y161{bottom:359.426667pt;}
.y12f{bottom:362.306667pt;}
.y77{bottom:362.946667pt;}
.y97{bottom:364.066667pt;}
.y33{bottom:366.146667pt;}
.yd0{bottom:366.626667pt;}
.yfe{bottom:366.786667pt;}
.y58{bottom:366.946667pt;}
.yb5{bottom:367.746667pt;}
.y192{bottom:368.546667pt;}
.ye3{bottom:370.146667pt;}
.y108{bottom:370.306667pt;}
.y174{bottom:373.373333pt;}
.y116{bottom:375.293333pt;}
.y160{bottom:378.973333pt;}
.yc{bottom:381.053333pt;}
.y12e{bottom:381.693333pt;}
.y32{bottom:382.493333pt;}
.y57{bottom:385.373333pt;}
.ycf{bottom:386.173333pt;}
.y150{bottom:386.333333pt;}
.yb4{bottom:387.293333pt;}
.y96{bottom:387.453333pt;}
.ye2{bottom:389.693333pt;}
.yf4{bottom:389.853333pt;}
.y173{bottom:391.293333pt;}
.y191{bottom:395.293333pt;}
.y115{bottom:398.653333pt;}
.y31{bottom:398.813333pt;}
.y12d{bottom:401.213333pt;}
.y76{bottom:402.013333pt;}
.y15f{bottom:402.173333pt;}
.y56{bottom:403.773333pt;}
.yce{bottom:405.693333pt;}
.y159{bottom:405.853333pt;}
.y95{bottom:406.813333pt;}
.ye1{bottom:409.213333pt;}
.y172{bottom:410.493333pt;}
.y190{bottom:413.373333pt;}
.y30{bottom:415.133333pt;}
.yb{bottom:420.093333pt;}
.y12c{bottom:420.733333pt;}
.y75{bottom:421.533333pt;}
.y114{bottom:421.693333pt;}
.y55{bottom:422.173333pt;}
.ycd{bottom:425.213333pt;}
.y13f{bottom:425.373333pt;}
.yb3{bottom:426.333333pt;}
.ye0{bottom:428.733333pt;}
.y171{bottom:428.893333pt;}
.y94{bottom:429.213333pt;}
.y18f{bottom:430.013333pt;}
.y2f{bottom:431.293333pt;}
.y12b{bottom:440.253333pt;}
.y54{bottom:440.573333pt;}
.y74{bottom:441.053333pt;}
.ycc{bottom:444.733333pt;}
.y14c{bottom:444.893333pt;}
.yb2{bottom:445.853333pt;}
.y2e{bottom:447.613333pt;}
.y93{bottom:448.253333pt;}
.y18e{bottom:448.413333pt;}
.y53{bottom:458.973333pt;}
.ya{bottom:459.133333pt;}
.y12a{bottom:459.933333pt;}
.y73{bottom:460.733333pt;}
.y2d{bottom:463.933333pt;}
.ycb{bottom:464.253333pt;}
.yb1{bottom:465.373333pt;}
.y170{bottom:466.013333pt;}
.y18d{bottom:466.813333pt;}
.y92{bottom:467.933333pt;}
.y10c{bottom:468.093333pt;}
.y52{bottom:477.373333pt;}
.y129{bottom:479.453333pt;}
.y2c{bottom:480.253333pt;}
.yca{bottom:483.773333pt;}
.y16f{bottom:484.093333pt;}
.yb0{bottom:484.893333pt;}
.y18c{bottom:485.053333pt;}
.y91{bottom:487.453333pt;}
.y9{bottom:493.853333pt;}
.y51{bottom:495.773333pt;}
.y2b{bottom:496.413333pt;}
.y128{bottom:498.973333pt;}
.y72{bottom:499.773333pt;}
.yc9{bottom:503.293333pt;}
.y113{bottom:503.453333pt;}
.y18b{bottom:503.613333pt;}
.yaf{bottom:504.413333pt;}
.y90{bottom:506.973333pt;}
.y2a{bottom:512.733333pt;}
.y8{bottom:513.373333pt;}
.y50{bottom:514.493333pt;}
.y127{bottom:518.493333pt;}
.y71{bottom:519.293333pt;}
.y16e{bottom:521.693333pt;}
.y18a{bottom:522.013333pt;}
.yc8{bottom:522.813333pt;}
.y142{bottom:522.973333pt;}
.yae{bottom:523.933333pt;}
.y8f{bottom:526.493333pt;}
.y29{bottom:529.053333pt;}
.y7{bottom:533.693333pt;}
.y4f{bottom:534.013333pt;}
.y126{bottom:538.013333pt;}
.y70{bottom:538.813333pt;}
.y16d{bottom:539.933333pt;}
.y189{bottom:540.453333pt;}
.yc7{bottom:542.373333pt;}
.yad{bottom:543.493333pt;}
.y28{bottom:545.253333pt;}
.y8e{bottom:546.053333pt;}
.yfd{bottom:546.213333pt;}
.y4e{bottom:553.733333pt;}
.y6{bottom:555.813333pt;}
.y125{bottom:557.573333pt;}
.y6f{bottom:558.373333pt;}
.y16c{bottom:558.853333pt;}
.y27{bottom:561.573333pt;}
.yc6{bottom:561.893333pt;}
.y15e{bottom:562.053333pt;}
.yac{bottom:563.013333pt;}
.y8d{bottom:565.573333pt;}
.y14f{bottom:565.733333pt;}
.y4d{bottom:573.253333pt;}
.y5{bottom:575.333333pt;}
.y16b{bottom:577.253333pt;}
.y26{bottom:577.893333pt;}
.y112{bottom:581.413333pt;}
.yab{bottom:582.693333pt;}
.y8c{bottom:585.093333pt;}
.yc5{bottom:585.253333pt;}
.y4c{bottom:592.773333pt;}
.y25{bottom:594.213333pt;}
.y16a{bottom:595.653333pt;}
.y6e{bottom:597.413333pt;}
.y111{bottom:600.933333pt;}
.yaa{bottom:602.213333pt;}
.y8b{bottom:604.613333pt;}
.y24{bottom:610.373333pt;}
.y4b{bottom:612.293333pt;}
.y188{bottom:614.053333pt;}
.y169{bottom:614.533333pt;}
.y6d{bottom:616.933333pt;}
.y110{bottom:620.613333pt;}
.ya9{bottom:621.733333pt;}
.y8a{bottom:624.133333pt;}
.y13e{bottom:624.293333pt;}
.y23{bottom:626.693333pt;}
.y4a{bottom:631.813333pt;}
.y187{bottom:632.453333pt;}
.y168{bottom:632.773333pt;}
.y6c{bottom:636.453333pt;}
.y10f{bottom:640.133333pt;}
.ya8{bottom:641.253333pt;}
.y22{bottom:643.013333pt;}
.y89{bottom:643.653333pt;}
.y14b{bottom:643.813333pt;}
.y186{bottom:650.533333pt;}
.y49{bottom:651.333333pt;}
.y167{bottom:651.653333pt;}
.y4{bottom:653.733333pt;}
.y21{bottom:659.333333pt;}
.y10e{bottom:659.653333pt;}
.y6b{bottom:659.813333pt;}
.ya7{bottom:660.773333pt;}
.y88{bottom:663.173333pt;}
.y155{bottom:663.333333pt;}
.y185{bottom:667.173333pt;}
.y166{bottom:670.053333pt;}
.y48{bottom:670.533333pt;}
.y3{bottom:675.013333pt;}
.y20{bottom:675.493333pt;}
.y6a{bottom:679.173333pt;}
.ya6{bottom:680.293333pt;}
.y87{bottom:682.693333pt;}
.y10d{bottom:682.853333pt;}
.y184{bottom:685.573333pt;}
.y47{bottom:688.613333pt;}
.y1f{bottom:691.813333pt;}
.y2{bottom:696.453333pt;}
.y15d{bottom:698.693333pt;}
.y86{bottom:702.213333pt;}
.y69{bottom:702.373333pt;}
.ya5{bottom:702.693333pt;}
.y183{bottom:704.133333pt;}
.y165{bottom:704.773333pt;}
.y46{bottom:705.413333pt;}
.y1e{bottom:708.133333pt;}
.y1{bottom:719.200000pt;}
.y68{bottom:721.760000pt;}
.y15c{bottom:721.920000pt;}
.y182{bottom:722.400000pt;}
.y45{bottom:723.200000pt;}
.y1d{bottom:724.320000pt;}
.h19{height:43.315625pt;}
.h7{height:43.341563pt;}
.h9{height:43.393438pt;}
.h8{height:43.497188pt;}
.h18{height:44.875000pt;}
.h16{height:46.781250pt;}
.ha{height:48.098750pt;}
.h11{height:48.968750pt;}
.h13{height:52.187500pt;}
.h4{height:52.218750pt;}
.hb{height:52.281250pt;}
.hd{height:52.406250pt;}
.h17{height:54.598989pt;}
.h14{height:54.841250pt;}
.h3{height:56.463750pt;}
.h2{height:61.169062pt;}
.hf{height:62.781250pt;}
.h6{height:62.812500pt;}
.he{height:63.656250pt;}
.h15{height:64.468437pt;}
.h1a{height:64.500000pt;}
.hc{height:65.531250pt;}
.h10{height:65.781915pt;}
.h5{height:104.562500pt;}
.h12{height:108.490625pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w0{width:559.520000pt;}
.x0{left:0.000000pt;}
.x5{left:56.800000pt;}
.x1e{left:60.480000pt;}
.x19{left:70.272000pt;}
.x16{left:71.392000pt;}
.x18{left:72.992000pt;}
.x1d{left:75.712000pt;}
.x1b{left:80.832000pt;}
.x1c{left:85.312000pt;}
.x15{left:93.152000pt;}
.xf{left:94.592000pt;}
.x9{left:104.512000pt;}
.x12{left:122.752000pt;}
.x13{left:126.592000pt;}
.x1{left:129.312000pt;}
.x14{left:130.272000pt;}
.x7{left:134.426667pt;}
.x8{left:138.586667pt;}
.xa{left:152.666667pt;}
.x3{left:171.386667pt;}
.x2{left:175.546667pt;}
.x1a{left:197.346667pt;}
.x10{left:206.466667pt;}
.x11{left:209.986667pt;}
.x17{left:222.626667pt;}
.x4{left:234.306667pt;}
.xb{left:254.466667pt;}
.xe{left:271.906667pt;}
.xc{left:275.906667pt;}
.xd{left:281.986667pt;}
.x6{left:303.426667pt;}
}




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