
    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_1c74e67f23d6020e1802b129.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.190918;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_e8d678ac246dcfa95110e896.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.190918;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_d84d3870c7c53b94afb4bdaa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.191406;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_9585898ebec027a21c4f2867.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946289;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_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.203000;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_e9412c7b36c62926e9f0a17e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;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_401eafaeebe2408d04dbde69.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.268000;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_52ade64e98a5b3c44fde4a02.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.349000;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_f1e53acc9f949458f416db9f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.362000;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_e459165d9ed04eb6ec58a7e9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.946289;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_0f75393aaf7fedba8750b245.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e8d678ac246dcfa95110e896.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.190918;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_d84d3870c7c53b94afb4bdaa.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.191406;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_6ca2095ca4430ab6ff002516.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.946289;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_24c13348dbd3f685fbc45859.woff2')format("woff");}.fff{font-family:fff;line-height:1.203000;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_f1dc3b2bdbf962b9f1e0a591.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.200885;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_6ca2095ca4430ab6ff002516.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.946289;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_ae32d7426d6e7839df0476f3.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.384000;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_806cf4dee9ccdd0b037cb09a.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.392000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_9bfdc7f412780036c067404f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.946289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_a63e84bb52d19447cc22e071.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.411000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_9bfdc7f412780036c067404f.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.946289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.400000px;}
.v4{vertical-align:-18.360000px;}
.v5{vertical-align:-17.340000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:14.316000px;}
.v3{vertical-align:18.192000px;}
.v1{vertical-align:20.400000px;}
.v8{vertical-align:22.512000px;}
.v7{vertical-align:44.982000px;}
.ls48{letter-spacing:-4.284000px;}
.ls4b{letter-spacing:-3.906000px;}
.ls63{letter-spacing:-3.195000px;}
.ls64{letter-spacing:-1.395000px;}
.ls16{letter-spacing:-1.140000px;}
.ls15{letter-spacing:-0.960000px;}
.ls49{letter-spacing:-0.798000px;}
.ls69{letter-spacing:-0.720000px;}
.ls3e{letter-spacing:-0.702000px;}
.ls57{letter-spacing:-0.648000px;}
.ls76{letter-spacing:-0.630000px;}
.ls43{letter-spacing:-0.594000px;}
.ls17{letter-spacing:-0.540000px;}
.ls67{letter-spacing:-0.495000px;}
.ls66{letter-spacing:-0.450000px;}
.ls79{letter-spacing:-0.432000px;}
.ls72{letter-spacing:-0.420000px;}
.ls65{letter-spacing:-0.405000px;}
.ls40{letter-spacing:-0.378000px;}
.ls38{letter-spacing:-0.336000px;}
.ls74{letter-spacing:-0.315000px;}
.ls42{letter-spacing:-0.270000px;}
.ls1a{letter-spacing:-0.255000px;}
.ls68{letter-spacing:-0.225000px;}
.ls32{letter-spacing:-0.216000px;}
.ls6f{letter-spacing:-0.180000px;}
.ls33{letter-spacing:-0.162000px;}
.ls75{letter-spacing:-0.135000px;}
.ls18{letter-spacing:-0.108000px;}
.ls53{letter-spacing:-0.105300px;}
.ls6e{letter-spacing:-0.090000px;}
.ls55{letter-spacing:-0.070200px;}
.ls30{letter-spacing:-0.054000px;}
.ls19{letter-spacing:-0.051000px;}
.ls62{letter-spacing:-0.045000px;}
.ls4a{letter-spacing:-0.042000px;}
.ls14{letter-spacing:0.000000px;}
.ls61{letter-spacing:0.000300px;}
.ls3b{letter-spacing:0.009600px;}
.ls2{letter-spacing:0.013200px;}
.ls3{letter-spacing:0.013800px;}
.ls20{letter-spacing:0.035100px;}
.ls6{letter-spacing:0.042000px;}
.ls59{letter-spacing:0.045000px;}
.ls7{letter-spacing:0.054000px;}
.lse{letter-spacing:0.055050px;}
.ls3a{letter-spacing:0.067800px;}
.ls2f{letter-spacing:0.070200px;}
.ls58{letter-spacing:0.090000px;}
.lsd{letter-spacing:0.102000px;}
.ls3f{letter-spacing:0.105300px;}
.ls2e{letter-spacing:0.108000px;}
.ls46{letter-spacing:0.140400px;}
.ls5{letter-spacing:0.162000px;}
.ls56{letter-spacing:0.175500px;}
.ls5a{letter-spacing:0.180000px;}
.ls4c{letter-spacing:0.182400px;}
.ls3c{letter-spacing:0.192600px;}
.ls10{letter-spacing:0.198450px;}
.ls12{letter-spacing:0.199050px;}
.ls13{letter-spacing:0.199650px;}
.ls11{letter-spacing:0.204000px;}
.ls54{letter-spacing:0.210600px;}
.ls5c{letter-spacing:0.211500px;}
.ls29{letter-spacing:0.216000px;}
.ls2a{letter-spacing:0.221400px;}
.ls5b{letter-spacing:0.225000px;}
.ls45{letter-spacing:0.226800px;}
.ls8{letter-spacing:0.232050px;}
.ls41{letter-spacing:0.245700px;}
.lsb{letter-spacing:0.267450px;}
.ls4{letter-spacing:0.270000px;}
.ls21{letter-spacing:0.286200px;}
.lsf{letter-spacing:0.306000px;}
.ls47{letter-spacing:0.315900px;}
.ls1f{letter-spacing:0.324000px;}
.ls9{letter-spacing:0.357000px;}
.ls25{letter-spacing:0.378000px;}
.ls31{letter-spacing:0.386100px;}
.ls24{letter-spacing:0.393000px;}
.ls6d{letter-spacing:0.405000px;}
.lsa{letter-spacing:0.408000px;}
.ls39{letter-spacing:0.421200px;}
.ls22{letter-spacing:0.432000px;}
.ls28{letter-spacing:0.486000px;}
.ls6c{letter-spacing:0.495000px;}
.ls44{letter-spacing:0.502200px;}
.ls34{letter-spacing:0.540000px;}
.ls1e{letter-spacing:0.561600px;}
.ls27{letter-spacing:0.594000px;}
.ls26{letter-spacing:0.600000px;}
.ls2b{letter-spacing:0.648000px;}
.ls5d{letter-spacing:0.675000px;}
.ls36{letter-spacing:0.702000px;}
.ls35{letter-spacing:0.720000px;}
.ls2d{letter-spacing:0.756000px;}
.ls1d{letter-spacing:0.864000px;}
.lsc{letter-spacing:0.867000px;}
.ls2c{letter-spacing:0.875400px;}
.ls7a{letter-spacing:0.918000px;}
.ls73{letter-spacing:0.972000px;}
.ls6b{letter-spacing:1.125000px;}
.ls77{letter-spacing:1.134000px;}
.ls1c{letter-spacing:1.139400px;}
.ls71{letter-spacing:1.170000px;}
.ls78{letter-spacing:1.188000px;}
.ls6a{letter-spacing:1.620000px;}
.ls70{letter-spacing:1.665000px;}
.ls0{letter-spacing:2.592000px;}
.ls23{letter-spacing:2.646000px;}
.ls1b{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls4d{letter-spacing:46.162200px;}
.ls50{letter-spacing:52.168200px;}
.ls5e{letter-spacing:76.353600px;}
.ls5f{letter-spacing:76.626600px;}
.ls60{letter-spacing:76.653900px;}
.ls37{letter-spacing:155.188800px;}
.ls3d{letter-spacing:173.188800px;}
.ls4e{letter-spacing:207.228000px;}
.ls51{letter-spacing:210.084000px;}
.ls52{letter-spacing:292.547400px;}
.ls4f{letter-spacing:323.949600px;}
.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;}
}
.ws7{word-spacing:-51.000000px;}
.ws6{word-spacing:-33.150000px;}
.ws23{word-spacing:-21.792000px;}
.ws2{word-spacing:-15.067500px;}
.ws1f{word-spacing:-14.700000px;}
.ws3f{word-spacing:-13.596000px;}
.ws21{word-spacing:-13.500000px;}
.ws53{word-spacing:-12.744000px;}
.ws4b{word-spacing:-12.636000px;}
.ws1{word-spacing:-12.480000px;}
.ws4f{word-spacing:-12.474000px;}
.ws40{word-spacing:-12.420000px;}
.ws54{word-spacing:-12.366000px;}
.ws3{word-spacing:-12.360000px;}
.ws4d{word-spacing:-12.312000px;}
.ws22{word-spacing:-12.258000px;}
.ws4c{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.192000px;}
.ws67{word-spacing:-12.096000px;}
.ws6a{word-spacing:-11.556000px;}
.ws93{word-spacing:-11.340000px;}
.ws78{word-spacing:-11.250000px;}
.ws4{word-spacing:-11.220000px;}
.ws90{word-spacing:-10.395000px;}
.ws76{word-spacing:-10.350000px;}
.ws73{word-spacing:-10.305000px;}
.ws9a{word-spacing:-10.215000px;}
.ws77{word-spacing:-10.125000px;}
.ws74{word-spacing:-10.035000px;}
.ws96{word-spacing:-9.990000px;}
.ws84{word-spacing:-9.900000px;}
.ws75{word-spacing:-9.855000px;}
.ws8e{word-spacing:-9.765000px;}
.ws8a{word-spacing:-9.675000px;}
.ws98{word-spacing:-9.630000px;}
.ws99{word-spacing:-9.540000px;}
.ws65{word-spacing:-9.114000px;}
.ws62{word-spacing:-8.736000px;}
.ws52{word-spacing:-8.388900px;}
.ws20{word-spacing:-8.353800px;}
.ws5e{word-spacing:-8.316000px;}
.ws5c{word-spacing:-8.283600px;}
.ws50{word-spacing:-8.213400px;}
.ws69{word-spacing:-8.178300px;}
.ws6c{word-spacing:-8.143200px;}
.ws5b{word-spacing:-8.108100px;}
.ws4e{word-spacing:-8.073000px;}
.ws51{word-spacing:-8.002800px;}
.ws5{word-spacing:-7.967700px;}
.ws6b{word-spacing:-7.897500px;}
.ws68{word-spacing:-7.862400px;}
.ws63{word-spacing:-5.208000px;}
.ws1a{word-spacing:-5.100000px;}
.ws5d{word-spacing:-4.830000px;}
.ws48{word-spacing:-3.864000px;}
.ws13{word-spacing:-2.805000px;}
.ws11{word-spacing:-2.295000px;}
.ws6f{word-spacing:-1.890000px;}
.wsf{word-spacing:-1.836000px;}
.ws58{word-spacing:-1.782000px;}
.wsc{word-spacing:-1.674000px;}
.ws9f{word-spacing:-1.620000px;}
.ws1b{word-spacing:-1.581000px;}
.ws35{word-spacing:-1.566000px;}
.ws14{word-spacing:-1.530000px;}
.ws44{word-spacing:-1.458000px;}
.ws1d{word-spacing:-1.428000px;}
.ws39{word-spacing:-1.404000px;}
.ws8c{word-spacing:-1.395000px;}
.ws42{word-spacing:-1.350000px;}
.ws27{word-spacing:-1.296000px;}
.ws1e{word-spacing:-1.275000px;}
.wsd{word-spacing:-1.242000px;}
.ws46{word-spacing:-1.188000px;}
.ws3e{word-spacing:-1.134000px;}
.ws81{word-spacing:-1.080000px;}
.ws7f{word-spacing:-1.035000px;}
.ws56{word-spacing:-1.026000px;}
.ws12{word-spacing:-1.020000px;}
.ws49{word-spacing:-0.966000px;}
.ws47{word-spacing:-0.924000px;}
.ws2c{word-spacing:-0.918000px;}
.ws8b{word-spacing:-0.900000px;}
.ws7c{word-spacing:-0.864000px;}
.ws9c{word-spacing:-0.855000px;}
.ws37{word-spacing:-0.810000px;}
.ws45{word-spacing:-0.756000px;}
.ws3a{word-spacing:-0.720000px;}
.ws66{word-spacing:-0.702000px;}
.wsb{word-spacing:-0.648000px;}
.ws4a{word-spacing:-0.630000px;}
.ws2f{word-spacing:-0.600000px;}
.wse{word-spacing:-0.594000px;}
.ws97{word-spacing:-0.585000px;}
.wsa{word-spacing:-0.540000px;}
.ws17{word-spacing:-0.510000px;}
.ws82{word-spacing:-0.495000px;}
.ws2d{word-spacing:-0.486000px;}
.ws71{word-spacing:-0.432000px;}
.ws31{word-spacing:-0.378000px;}
.ws25{word-spacing:-0.324000px;}
.ws1c{word-spacing:-0.306000px;}
.ws33{word-spacing:-0.270000px;}
.ws85{word-spacing:-0.225000px;}
.ws2e{word-spacing:-0.216000px;}
.ws19{word-spacing:-0.204000px;}
.ws32{word-spacing:-0.162000px;}
.ws28{word-spacing:-0.108000px;}
.ws59{word-spacing:-0.105300px;}
.ws18{word-spacing:-0.102000px;}
.ws8f{word-spacing:-0.090000px;}
.ws26{word-spacing:-0.070200px;}
.ws3c{word-spacing:-0.054000px;}
.ws10{word-spacing:-0.051000px;}
.ws80{word-spacing:-0.045000px;}
.ws7b{word-spacing:-0.035100px;}
.ws8{word-spacing:0.000000px;}
.ws15{word-spacing:0.051000px;}
.ws72{word-spacing:0.070200px;}
.ws70{word-spacing:0.105300px;}
.ws38{word-spacing:0.108000px;}
.ws88{word-spacing:0.135000px;}
.ws30{word-spacing:0.162000px;}
.ws2b{word-spacing:0.216000px;}
.ws5a{word-spacing:0.270000px;}
.ws2a{word-spacing:0.324000px;}
.ws7e{word-spacing:0.360000px;}
.ws36{word-spacing:0.378000px;}
.ws34{word-spacing:0.432000px;}
.ws3b{word-spacing:0.486000px;}
.ws8d{word-spacing:0.495000px;}
.ws43{word-spacing:0.594000px;}
.ws83{word-spacing:0.630000px;}
.ws9d{word-spacing:0.648000px;}
.ws89{word-spacing:0.675000px;}
.ws3d{word-spacing:0.702000px;}
.ws57{word-spacing:0.756000px;}
.ws92{word-spacing:0.810000px;}
.ws9b{word-spacing:0.855000px;}
.ws24{word-spacing:0.918000px;}
.ws9{word-spacing:0.960000px;}
.wsa0{word-spacing:1.188000px;}
.ws16{word-spacing:1.224000px;}
.wsa1{word-spacing:1.242000px;}
.ws91{word-spacing:1.305000px;}
.ws9e{word-spacing:1.512000px;}
.ws86{word-spacing:2.970000px;}
.ws95{word-spacing:3.060000px;}
.ws7d{word-spacing:3.195000px;}
.ws87{word-spacing:3.510000px;}
.ws94{word-spacing:3.600000px;}
.ws29{word-spacing:5.346000px;}
.ws6d{word-spacing:106.470000px;}
.ws6e{word-spacing:107.016000px;}
.ws64{word-spacing:232.764000px;}
.ws61{word-spacing:265.440000px;}
.ws5f{word-spacing:268.842000px;}
.ws60{word-spacing:272.874000px;}
.ws41{word-spacing:285.016200px;}
.ws55{word-spacing:302.992200px;}
.ws7a{word-spacing:309.456000px;}
.ws79{word-spacing:359.860200px;}
._57{margin-left:-14.265000px;}
._58{margin-left:-10.305000px;}
._59{margin-left:-9.225000px;}
._55{margin-left:-7.920000px;}
._5e{margin-left:-6.865800px;}
._4{margin-left:-5.710200px;}
._2{margin-left:-4.602600px;}
._1{margin-left:-3.151200px;}
._0{margin-left:-1.776000px;}
._3{width:1.374000px;}
._23{width:2.428200px;}
._5{width:3.608700px;}
._3e{width:4.623300px;}
._54{width:8.055000px;}
._56{width:10.215000px;}
._53{width:12.375000px;}
._52{width:13.500000px;}
._7{width:15.282000px;}
._22{width:16.618200px;}
._5a{width:17.793000px;}
._42{width:35.801400px;}
._9{width:36.858600px;}
._34{width:38.862000px;}
._8{width:40.299000px;}
._5b{width:43.356000px;}
._6{width:48.025800px;}
._27{width:49.069200px;}
._38{width:54.444000px;}
._2d{width:55.524000px;}
._2a{width:64.506600px;}
._1b{width:66.132000px;}
._29{width:67.494000px;}
._3b{width:68.502000px;}
._45{width:75.241800px;}
._2c{width:77.070000px;}
._26{width:78.078000px;}
._36{width:84.108000px;}
._32{width:96.852000px;}
._44{width:102.480000px;}
._31{width:108.822000px;}
._35{width:118.146000px;}
._41{width:122.640000px;}
._19{width:125.868600px;}
._50{width:130.158000px;}
._e{width:138.348000px;}
._40{width:142.800000px;}
._33{width:143.844600px;}
._10{width:145.440600px;}
._1f{width:149.208000px;}
._f{width:150.360000px;}
._11{width:151.950600px;}
._51{width:154.513200px;}
._15{width:157.500000px;}
._3c{width:161.028000px;}
._17{width:162.270000px;}
._28{width:163.416600px;}
._12{width:167.076000px;}
._16{width:169.512000px;}
._2e{width:170.670000px;}
._4b{width:172.495200px;}
._13{width:179.088000px;}
._2f{width:180.246000px;}
._24{width:181.464600px;}
._3f{width:185.202600px;}
._3d{width:186.942000px;}
._4f{width:188.952000px;}
._21{width:190.260000px;}
._46{width:191.730000px;}
._5c{width:200.834400px;}
._5d{width:202.558800px;}
._14{width:210.085200px;}
._1d{width:218.100000px;}
._4a{width:220.326000px;}
._20{width:223.477200px;}
._4c{width:225.414000px;}
._2b{width:228.061200px;}
._37{width:236.076000px;}
._b{width:239.820000px;}
._3a{width:241.453200px;}
._c{width:251.832000px;}
._1c{width:259.980000px;}
._1a{width:280.140000px;}
._48{width:281.778000px;}
._4e{width:287.784000px;}
._18{width:291.732000px;}
._1e{width:301.686000px;}
._43{width:315.546000px;}
._4d{width:332.010000px;}
._39{width:342.090000px;}
._49{width:352.212000px;}
._47{width:363.384000px;}
._a{width:371.040000px;}
._30{width:384.636000px;}
._d{width:389.802000px;}
._25{width:407.778000px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fsd{font-size:27.300000px;}
.fs7{font-size:33.150000px;}
.fs6{font-size:35.100000px;}
.fs4{font-size:39.000000px;}
.fsc{font-size:42.000000px;}
.fse{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fsb{font-size:96.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:27.177600px;}
.y1{bottom:27.197850px;}
.y2d{bottom:68.313900px;}
.y75{bottom:68.560500px;}
.y125{bottom:70.264800px;}
.ye5{bottom:77.799300px;}
.y87{bottom:80.052300px;}
.y17b{bottom:80.208300px;}
.y2c{bottom:83.307900px;}
.y74{bottom:83.559000px;}
.y124{bottom:85.272300px;}
.ye4{bottom:92.797800px;}
.y17a{bottom:92.954550px;}
.y86{bottom:95.050800px;}
.y2b{bottom:98.307900px;}
.y73{bottom:98.557500px;}
.y123{bottom:100.270800px;}
.y179{bottom:105.700800px;}
.ye3{bottom:107.796300px;}
.y85{bottom:110.049300px;}
.y2a{bottom:113.313900px;}
.y72{bottom:113.556000px;}
.y122{bottom:115.269300px;}
.y178{bottom:118.447050px;}
.ye2{bottom:122.794800px;}
.y84{bottom:125.047800px;}
.y29{bottom:128.307900px;}
.y71{bottom:128.554500px;}
.y121{bottom:130.267800px;}
.y177{bottom:131.193300px;}
.ye1{bottom:137.799300px;}
.y83{bottom:140.046300px;}
.y28{bottom:143.313900px;}
.y70{bottom:143.553000px;}
.y176{bottom:143.939550px;}
.y120{bottom:145.266300px;}
.ye0{bottom:152.797800px;}
.y82{bottom:155.044800px;}
.y175{bottom:156.685800px;}
.y27{bottom:158.307900px;}
.y6f{bottom:158.551500px;}
.y11f{bottom:160.264800px;}
.ydf{bottom:167.796300px;}
.y174{bottom:169.432050px;}
.y81{bottom:170.043300px;}
.yc0{bottom:170.044800px;}
.y26{bottom:173.313900px;}
.y6e{bottom:173.550000px;}
.y11e{bottom:175.266300px;}
.y173{bottom:182.178300px;}
.yde{bottom:182.794800px;}
.y80{bottom:185.041800px;}
.ybf{bottom:185.044800px;}
.y25{bottom:188.307900px;}
.y11d{bottom:190.264800px;}
.y172{bottom:194.924550px;}
.ydd{bottom:197.794800px;}
.y7f{bottom:200.040300px;}
.ybe{bottom:200.044800px;}
.y24{bottom:203.307900px;}
.y6d{bottom:203.674650px;}
.y11c{bottom:205.266300px;}
.y171{bottom:207.670800px;}
.ydc{bottom:212.800800px;}
.y7e{bottom:215.038800px;}
.ybd{bottom:215.046300px;}
.y23{bottom:218.307900px;}
.y6c{bottom:218.673150px;}
.y11b{bottom:220.264800px;}
.y170{bottom:220.417050px;}
.ydb{bottom:227.799300px;}
.y7d{bottom:230.037300px;}
.ybc{bottom:230.044800px;}
.y16f{bottom:233.163300px;}
.y22{bottom:233.307900px;}
.y6b{bottom:233.674650px;}
.y11a{bottom:235.266300px;}
.yda{bottom:242.797800px;}
.y7c{bottom:245.035800px;}
.ybb{bottom:245.050800px;}
.y16e{bottom:245.909550px;}
.y6a{bottom:248.673150px;}
.y119{bottom:250.264800px;}
.y21{bottom:252.636900px;}
.yd9{bottom:257.796300px;}
.y16d{bottom:258.655800px;}
.y7b{bottom:260.034300px;}
.yba{bottom:260.049300px;}
.y69{bottom:263.680650px;}
.y118{bottom:265.264800px;}
.y16c{bottom:271.402050px;}
.yd8{bottom:272.794800px;}
.y7a{bottom:275.032800px;}
.yb9{bottom:275.047800px;}
.y68{bottom:278.679150px;}
.y117{bottom:280.264800px;}
.y16b{bottom:284.148300px;}
.y20{bottom:285.685800px;}
.yd7{bottom:287.794800px;}
.y79{bottom:290.031300px;}
.yb8{bottom:290.046300px;}
.y67{bottom:293.677650px;}
.y116{bottom:295.263300px;}
.y16a{bottom:296.894550px;}
.y1f{bottom:300.687300px;}
.yd6{bottom:302.794800px;}
.y78{bottom:305.029800px;}
.yb7{bottom:305.044800px;}
.y66{bottom:308.676150px;}
.y169{bottom:309.640800px;}
.y1e{bottom:315.685800px;}
.yd5{bottom:317.794800px;}
.y77{bottom:320.028300px;}
.yb6{bottom:320.047800px;}
.y168{bottom:322.387050px;}
.y65{bottom:323.674650px;}
.y1d{bottom:330.685800px;}
.yd4{bottom:332.793300px;}
.y76{bottom:335.028300px;}
.yb5{bottom:335.046300px;}
.y167{bottom:335.133300px;}
.y64{bottom:338.673150px;}
.y1c{bottom:345.726300px;}
.y166{bottom:347.879550px;}
.y13f{bottom:348.706800px;}
.yb4{bottom:350.044800px;}
.y63{bottom:353.686650px;}
.y165{bottom:360.625800px;}
.y1b{bottom:360.724800px;}
.y13e{bottom:363.705300px;}
.yb3{bottom:365.046300px;}
.y62{bottom:368.685150px;}
.y164{bottom:373.372050px;}
.y1a{bottom:375.723300px;}
.y13d{bottom:378.703800px;}
.yb2{bottom:380.044800px;}
.y61{bottom:383.683650px;}
.y163{bottom:386.118300px;}
.y9d{bottom:390.718800px;}
.y115{bottom:392.232300px;}
.y13c{bottom:393.702300px;}
.yb1{bottom:395.044800px;}
.y60{bottom:398.682150px;}
.y162{bottom:398.864550px;}
.y1ac{bottom:401.563500px;}
.y9c{bottom:405.717300px;}
.y114{bottom:407.230800px;}
.y13b{bottom:408.700800px;}
.yb0{bottom:410.044800px;}
.y161{bottom:411.610800px;}
.y5f{bottom:413.680650px;}
.y1ab{bottom:416.562000px;}
.y9b{bottom:420.715800px;}
.y19{bottom:422.973300px;}
.y160{bottom:424.357050px;}
.yaf{bottom:425.043300px;}
.y5e{bottom:428.679150px;}
.y1aa{bottom:431.560500px;}
.y15f{bottom:437.103300px;}
.y113{bottom:437.535300px;}
.y13a{bottom:438.882300px;}
.y18{bottom:439.470300px;}
.yae{bottom:440.043300px;}
.y5d{bottom:443.677650px;}
.y1a9{bottom:446.559000px;}
.y15e{bottom:449.849550px;}
.y9a{bottom:450.864300px;}
.y112{bottom:454.965300px;}
.y17{bottom:455.967300px;}
.y139{bottom:456.322800px;}
.y5c{bottom:458.676150px;}
.y1a8{bottom:461.557500px;}
.y15d{bottom:462.595800px;}
.y137{bottom:465.045300px;}
.y111{bottom:466.210800px;}
.y99{bottom:468.304800px;}
.y16{bottom:472.464300px;}
.yad{bottom:473.065800px;}
.y5b{bottom:473.674650px;}
.y138{bottom:473.760300px;}
.y15c{bottom:475.342050px;}
.y1a7{bottom:476.556000px;}
.y110{bottom:483.651300px;}
.y98{bottom:485.745300px;}
.yac{bottom:488.064300px;}
.y15b{bottom:488.088300px;}
.y5a{bottom:488.673150px;}
.y15{bottom:488.961300px;}
.y136{bottom:491.200800px;}
.y1a6{bottom:491.554500px;}
.y10f{bottom:494.896800px;}
.y15a{bottom:500.834550px;}
.yab{bottom:503.062800px;}
.y97{bottom:503.185800px;}
.y59{bottom:503.700150px;}
.y14{bottom:505.458300px;}
.y10e{bottom:506.142300px;}
.y1a5{bottom:506.553000px;}
.y135{bottom:508.638300px;}
.y159{bottom:513.580800px;}
.yaa{bottom:518.061300px;}
.y58{bottom:518.698650px;}
.y96{bottom:520.626300px;}
.y1a4{bottom:521.551500px;}
.y13{bottom:521.955300px;}
.y10d{bottom:523.582800px;}
.y158{bottom:526.327050px;}
.ya9{bottom:533.059800px;}
.y57{bottom:533.697150px;}
.y1a3{bottom:536.550000px;}
.y95{bottom:538.066800px;}
.y12{bottom:538.452300px;}
.y157{bottom:539.073300px;}
.y10c{bottom:541.012800px;}
.ya8{bottom:548.058300px;}
.y56{bottom:548.695650px;}
.y156{bottom:551.819550px;}
.y10b{bottom:552.258300px;}
.y11{bottom:554.949300px;}
.y94{bottom:555.507300px;}
.y1a2{bottom:558.304500px;}
.ya7{bottom:563.056800px;}
.y55{bottom:563.694150px;}
.y155{bottom:564.565800px;}
.y134{bottom:566.596800px;}
.y10a{bottom:569.688300px;}
.y10{bottom:571.446300px;}
.y93{bottom:572.947800px;}
.y1a1{bottom:573.303000px;}
.y154{bottom:577.312050px;}
.ya6{bottom:578.055300px;}
.y54{bottom:578.692650px;}
.y109{bottom:580.933800px;}
.y133{bottom:581.595300px;}
.yf{bottom:587.943300px;}
.y153{bottom:590.058300px;}
.y92{bottom:590.388300px;}
.ya5{bottom:593.053800px;}
.y53{bottom:593.691150px;}
.y1a0{bottom:595.051500px;}
.y132{bottom:596.593800px;}
.y108{bottom:598.374300px;}
.y152{bottom:602.804550px;}
.ye{bottom:604.440300px;}
.y91{bottom:607.828800px;}
.ya4{bottom:608.052300px;}
.y52{bottom:608.689650px;}
.y107{bottom:609.619800px;}
.y131{bottom:611.592300px;}
.y151{bottom:615.550800px;}
.y19f{bottom:616.800000px;}
.y106{bottom:620.865300px;}
.yd{bottom:620.937300px;}
.ya3{bottom:623.050800px;}
.y51{bottom:623.688150px;}
.y90{bottom:625.269300px;}
.y130{bottom:626.590800px;}
.y150{bottom:628.297050px;}
.y19e{bottom:631.800000px;}
.yc{bottom:637.434300px;}
.ya2{bottom:638.049300px;}
.y105{bottom:638.305800px;}
.y50{bottom:638.686650px;}
.y14f{bottom:641.043300px;}
.y8f{bottom:642.709800px;}
.ya1{bottom:653.047800px;}
.y4f{bottom:653.685150px;}
.y14e{bottom:653.793300px;}
.y104{bottom:655.746300px;}
.y12f{bottom:656.769300px;}
.y19d{bottom:659.640000px;}
.y8e{bottom:660.150300px;}
.yb{bottom:667.434300px;}
.ya0{bottom:668.046300px;}
.y4e{bottom:668.683650px;}
.y103{bottom:673.176300px;}
.y12e{bottom:674.209800px;}
.y19c{bottom:674.638500px;}
.y8d{bottom:677.581800px;}
.y9f{bottom:683.044800px;}
.y4d{bottom:683.682150px;}
.y102{bottom:684.421800px;}
.ya{bottom:685.434300px;}
.y14d{bottom:686.799300px;}
.y19b{bottom:689.637000px;}
.y12d{bottom:691.650300px;}
.y8c{bottom:695.022300px;}
.y9e{bottom:698.043300px;}
.y4c{bottom:698.680650px;}
.y12a{bottom:700.369800px;}
.y14c{bottom:701.797800px;}
.y101{bottom:701.862300px;}
.y9{bottom:703.434300px;}
.y19a{bottom:704.635500px;}
.y12c{bottom:709.084800px;}
.y8b{bottom:712.462800px;}
.y100{bottom:713.107800px;}
.y4b{bottom:713.679150px;}
.y14b{bottom:716.796300px;}
.y199{bottom:719.634000px;}
.yff{bottom:724.353300px;}
.y12b{bottom:726.525300px;}
.y4a{bottom:728.677650px;}
.y8a{bottom:729.903300px;}
.y14a{bottom:731.794800px;}
.y198{bottom:734.632500px;}
.y8{bottom:736.410300px;}
.yfe{bottom:741.793800px;}
.y49{bottom:743.676150px;}
.y129{bottom:743.965800px;}
.y149{bottom:746.793300px;}
.y197{bottom:749.631000px;}
.yd3{bottom:756.732300px;}
.y30{bottom:757.145400px;}
.y48{bottom:758.674650px;}
.yfd{bottom:759.223800px;}
.y128{bottom:761.403300px;}
.y148{bottom:761.793300px;}
.y196{bottom:764.631000px;}
.yfc{bottom:770.469300px;}
.yd2{bottom:771.730800px;}
.y47{bottom:773.673150px;}
.y89{bottom:774.600450px;}
.y2f{bottom:778.144650px;}
.y7{bottom:781.416300px;}
.yfb{bottom:787.899300px;}
.y46{bottom:788.671650px;}
.y88{bottom:789.598950px;}
.y195{bottom:792.471150px;}
.y147{bottom:794.803800px;}
.y2e{bottom:799.143900px;}
.yfa{bottom:799.144800px;}
.yd1{bottom:801.879300px;}
.y45{bottom:803.671650px;}
.y194{bottom:807.469650px;}
.y146{bottom:809.802300px;}
.y127{bottom:815.100450px;}
.yf9{bottom:816.585300px;}
.yd0{bottom:819.319800px;}
.y193{bottom:822.468150px;}
.y145{bottom:824.800800px;}
.y6{bottom:826.422300px;}
.yf8{bottom:827.830800px;}
.y126{bottom:830.098950px;}
.y44{bottom:833.803800px;}
.ycf{bottom:836.760300px;}
.y192{bottom:837.466650px;}
.yf7{bottom:839.076300px;}
.y144{bottom:839.799300px;}
.y43{bottom:848.802300px;}
.y191{bottom:852.465150px;}
.yce{bottom:854.200800px;}
.y143{bottom:854.797800px;}
.yf6{bottom:856.516800px;}
.y42{bottom:863.800800px;}
.y190{bottom:867.463650px;}
.y142{bottom:869.796300px;}
.y5{bottom:871.428300px;}
.ycd{bottom:871.641300px;}
.yf5{bottom:873.957300px;}
.y41{bottom:878.799300px;}
.y18f{bottom:882.462150px;}
.y141{bottom:884.794800px;}
.ycc{bottom:889.081800px;}
.yf4{bottom:891.387300px;}
.y40{bottom:893.797800px;}
.y18e{bottom:897.462150px;}
.y140{bottom:899.793300px;}
.yf3{bottom:902.632800px;}
.ycb{bottom:906.522300px;}
.y3f{bottom:908.796300px;}
.y4{bottom:916.434300px;}
.yf2{bottom:920.073300px;}
.y3e{bottom:923.794800px;}
.yca{bottom:923.962800px;}
.y18d{bottom:925.342050px;}
.y31{bottom:926.409600px;}
.yf1{bottom:931.318800px;}
.y18c{bottom:938.088300px;}
.y3d{bottom:938.800800px;}
.yc9{bottom:941.403300px;}
.yf0{bottom:942.564300px;}
.y18b{bottom:950.834550px;}
.y17f{bottom:950.982300px;}
.y3c{bottom:953.799300px;}
.yc8{bottom:958.843800px;}
.yef{bottom:960.004800px;}
.y18a{bottom:963.580800px;}
.y17e{bottom:965.982300px;}
.y3b{bottom:968.797800px;}
.yc7{bottom:976.284300px;}
.y189{bottom:976.327050px;}
.yee{bottom:977.434800px;}
.y17d{bottom:980.980800px;}
.y3a{bottom:983.796300px;}
.yed{bottom:988.680300px;}
.y188{bottom:989.073300px;}
.yc6{bottom:993.724800px;}
.y39{bottom:998.794800px;}
.y187{bottom:1001.819550px;}
.yec{bottom:1006.110300px;}
.yc5{bottom:1011.165300px;}
.y38{bottom:1013.797800px;}
.y186{bottom:1014.565800px;}
.yeb{bottom:1017.355800px;}
.y185{bottom:1027.312050px;}
.yc4{bottom:1028.596800px;}
.y17c{bottom:1028.602800px;}
.y37{bottom:1028.796300px;}
.yea{bottom:1034.796300px;}
.y184{bottom:1040.058300px;}
.y36{bottom:1043.794800px;}
.yc3{bottom:1046.037300px;}
.ye9{bottom:1046.041800px;}
.y183{bottom:1052.804550px;}
.ye8{bottom:1057.287300px;}
.y35{bottom:1058.796300px;}
.yc2{bottom:1063.477800px;}
.y182{bottom:1065.550800px;}
.y34{bottom:1073.794800px;}
.ye7{bottom:1074.727800px;}
.y181{bottom:1078.297050px;}
.yc1{bottom:1080.918300px;}
.y33{bottom:1088.793300px;}
.y180{bottom:1091.043300px;}
.ye6{bottom:1092.168300px;}
.y32{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.hb{height:31.194668px;}
.hd{height:35.411133px;}
.h7{height:38.838867px;}
.h14{height:41.538000px;}
.h1c{height:41.550000px;}
.h1b{height:41.562000px;}
.h15{height:41.574000px;}
.h18{height:43.008000px;}
.h13{height:43.344000px;}
.h4{height:44.233154px;}
.h1f{height:44.505000px;}
.h1d{height:45.090000px;}
.h3{height:45.744000px;}
.h1e{height:46.080000px;}
.hf{height:47.469727px;}
.h6{height:48.450293px;}
.hc{height:48.534668px;}
.h8{height:51.840000px;}
.h9{height:53.406000px;}
.ha{height:54.096000px;}
.h16{height:54.108000px;}
.h12{height:55.296000px;}
.h2{height:57.099609px;}
.h1a{height:64.050000px;}
.h10{height:76.908000px;}
.h11{height:76.932000px;}
.he{height:77.677734px;}
.h19{height:86.520000px;}
.h17{height:87.990000px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:14.074200px;}
.x2{left:61.191450px;}
.x7{left:140.952750px;}
.x4{left:233.456400px;}
.x8{left:238.143900px;}
.x5{left:251.457000px;}
.x12{left:300.594450px;}
.xc{left:322.947000px;}
.xf{left:360.402000px;}
.xd{left:368.252550px;}
.xa{left:382.140900px;}
.xb{left:461.636400px;}
.x11{left:478.142400px;}
.x3{left:584.586600px;}
.xe{left:650.709900px;}
.x10{left:652.652400px;}
.x9{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.v2{vertical-align:-18.133333pt;}
.v4{vertical-align:-16.320000pt;}
.v5{vertical-align:-15.413333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:12.725333pt;}
.v3{vertical-align:16.170667pt;}
.v1{vertical-align:18.133333pt;}
.v8{vertical-align:20.010667pt;}
.v7{vertical-align:39.984000pt;}
.ls48{letter-spacing:-3.808000pt;}
.ls4b{letter-spacing:-3.472000pt;}
.ls63{letter-spacing:-2.840000pt;}
.ls64{letter-spacing:-1.240000pt;}
.ls16{letter-spacing:-1.013333pt;}
.ls15{letter-spacing:-0.853333pt;}
.ls49{letter-spacing:-0.709333pt;}
.ls69{letter-spacing:-0.640000pt;}
.ls3e{letter-spacing:-0.624000pt;}
.ls57{letter-spacing:-0.576000pt;}
.ls76{letter-spacing:-0.560000pt;}
.ls43{letter-spacing:-0.528000pt;}
.ls17{letter-spacing:-0.480000pt;}
.ls67{letter-spacing:-0.440000pt;}
.ls66{letter-spacing:-0.400000pt;}
.ls79{letter-spacing:-0.384000pt;}
.ls72{letter-spacing:-0.373333pt;}
.ls65{letter-spacing:-0.360000pt;}
.ls40{letter-spacing:-0.336000pt;}
.ls38{letter-spacing:-0.298667pt;}
.ls74{letter-spacing:-0.280000pt;}
.ls42{letter-spacing:-0.240000pt;}
.ls1a{letter-spacing:-0.226667pt;}
.ls68{letter-spacing:-0.200000pt;}
.ls32{letter-spacing:-0.192000pt;}
.ls6f{letter-spacing:-0.160000pt;}
.ls33{letter-spacing:-0.144000pt;}
.ls75{letter-spacing:-0.120000pt;}
.ls18{letter-spacing:-0.096000pt;}
.ls53{letter-spacing:-0.093600pt;}
.ls6e{letter-spacing:-0.080000pt;}
.ls55{letter-spacing:-0.062400pt;}
.ls30{letter-spacing:-0.048000pt;}
.ls19{letter-spacing:-0.045333pt;}
.ls62{letter-spacing:-0.040000pt;}
.ls4a{letter-spacing:-0.037333pt;}
.ls14{letter-spacing:0.000000pt;}
.ls61{letter-spacing:0.000267pt;}
.ls3b{letter-spacing:0.008533pt;}
.ls2{letter-spacing:0.011733pt;}
.ls3{letter-spacing:0.012267pt;}
.ls20{letter-spacing:0.031200pt;}
.ls6{letter-spacing:0.037333pt;}
.ls59{letter-spacing:0.040000pt;}
.ls7{letter-spacing:0.048000pt;}
.lse{letter-spacing:0.048933pt;}
.ls3a{letter-spacing:0.060267pt;}
.ls2f{letter-spacing:0.062400pt;}
.ls58{letter-spacing:0.080000pt;}
.lsd{letter-spacing:0.090667pt;}
.ls3f{letter-spacing:0.093600pt;}
.ls2e{letter-spacing:0.096000pt;}
.ls46{letter-spacing:0.124800pt;}
.ls5{letter-spacing:0.144000pt;}
.ls56{letter-spacing:0.156000pt;}
.ls5a{letter-spacing:0.160000pt;}
.ls4c{letter-spacing:0.162133pt;}
.ls3c{letter-spacing:0.171200pt;}
.ls10{letter-spacing:0.176400pt;}
.ls12{letter-spacing:0.176933pt;}
.ls13{letter-spacing:0.177467pt;}
.ls11{letter-spacing:0.181333pt;}
.ls54{letter-spacing:0.187200pt;}
.ls5c{letter-spacing:0.188000pt;}
.ls29{letter-spacing:0.192000pt;}
.ls2a{letter-spacing:0.196800pt;}
.ls5b{letter-spacing:0.200000pt;}
.ls45{letter-spacing:0.201600pt;}
.ls8{letter-spacing:0.206267pt;}
.ls41{letter-spacing:0.218400pt;}
.lsb{letter-spacing:0.237733pt;}
.ls4{letter-spacing:0.240000pt;}
.ls21{letter-spacing:0.254400pt;}
.lsf{letter-spacing:0.272000pt;}
.ls47{letter-spacing:0.280800pt;}
.ls1f{letter-spacing:0.288000pt;}
.ls9{letter-spacing:0.317333pt;}
.ls25{letter-spacing:0.336000pt;}
.ls31{letter-spacing:0.343200pt;}
.ls24{letter-spacing:0.349333pt;}
.ls6d{letter-spacing:0.360000pt;}
.lsa{letter-spacing:0.362667pt;}
.ls39{letter-spacing:0.374400pt;}
.ls22{letter-spacing:0.384000pt;}
.ls28{letter-spacing:0.432000pt;}
.ls6c{letter-spacing:0.440000pt;}
.ls44{letter-spacing:0.446400pt;}
.ls34{letter-spacing:0.480000pt;}
.ls1e{letter-spacing:0.499200pt;}
.ls27{letter-spacing:0.528000pt;}
.ls26{letter-spacing:0.533333pt;}
.ls2b{letter-spacing:0.576000pt;}
.ls5d{letter-spacing:0.600000pt;}
.ls36{letter-spacing:0.624000pt;}
.ls35{letter-spacing:0.640000pt;}
.ls2d{letter-spacing:0.672000pt;}
.ls1d{letter-spacing:0.768000pt;}
.lsc{letter-spacing:0.770667pt;}
.ls2c{letter-spacing:0.778133pt;}
.ls7a{letter-spacing:0.816000pt;}
.ls73{letter-spacing:0.864000pt;}
.ls6b{letter-spacing:1.000000pt;}
.ls77{letter-spacing:1.008000pt;}
.ls1c{letter-spacing:1.012800pt;}
.ls71{letter-spacing:1.040000pt;}
.ls78{letter-spacing:1.056000pt;}
.ls6a{letter-spacing:1.440000pt;}
.ls70{letter-spacing:1.480000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls23{letter-spacing:2.352000pt;}
.ls1b{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls4d{letter-spacing:41.033067pt;}
.ls50{letter-spacing:46.371733pt;}
.ls5e{letter-spacing:67.869867pt;}
.ls5f{letter-spacing:68.112533pt;}
.ls60{letter-spacing:68.136800pt;}
.ls37{letter-spacing:137.945600pt;}
.ls3d{letter-spacing:153.945600pt;}
.ls4e{letter-spacing:184.202667pt;}
.ls51{letter-spacing:186.741333pt;}
.ls52{letter-spacing:260.042133pt;}
.ls4f{letter-spacing:287.955200pt;}
.ws7{word-spacing:-45.333333pt;}
.ws6{word-spacing:-29.466667pt;}
.ws23{word-spacing:-19.370667pt;}
.ws2{word-spacing:-13.393333pt;}
.ws1f{word-spacing:-13.066667pt;}
.ws3f{word-spacing:-12.085333pt;}
.ws21{word-spacing:-12.000000pt;}
.ws53{word-spacing:-11.328000pt;}
.ws4b{word-spacing:-11.232000pt;}
.ws1{word-spacing:-11.093333pt;}
.ws4f{word-spacing:-11.088000pt;}
.ws40{word-spacing:-11.040000pt;}
.ws54{word-spacing:-10.992000pt;}
.ws3{word-spacing:-10.986667pt;}
.ws4d{word-spacing:-10.944000pt;}
.ws22{word-spacing:-10.896000pt;}
.ws4c{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws67{word-spacing:-10.752000pt;}
.ws6a{word-spacing:-10.272000pt;}
.ws93{word-spacing:-10.080000pt;}
.ws78{word-spacing:-10.000000pt;}
.ws4{word-spacing:-9.973333pt;}
.ws90{word-spacing:-9.240000pt;}
.ws76{word-spacing:-9.200000pt;}
.ws73{word-spacing:-9.160000pt;}
.ws9a{word-spacing:-9.080000pt;}
.ws77{word-spacing:-9.000000pt;}
.ws74{word-spacing:-8.920000pt;}
.ws96{word-spacing:-8.880000pt;}
.ws84{word-spacing:-8.800000pt;}
.ws75{word-spacing:-8.760000pt;}
.ws8e{word-spacing:-8.680000pt;}
.ws8a{word-spacing:-8.600000pt;}
.ws98{word-spacing:-8.560000pt;}
.ws99{word-spacing:-8.480000pt;}
.ws65{word-spacing:-8.101333pt;}
.ws62{word-spacing:-7.765333pt;}
.ws52{word-spacing:-7.456800pt;}
.ws20{word-spacing:-7.425600pt;}
.ws5e{word-spacing:-7.392000pt;}
.ws5c{word-spacing:-7.363200pt;}
.ws50{word-spacing:-7.300800pt;}
.ws69{word-spacing:-7.269600pt;}
.ws6c{word-spacing:-7.238400pt;}
.ws5b{word-spacing:-7.207200pt;}
.ws4e{word-spacing:-7.176000pt;}
.ws51{word-spacing:-7.113600pt;}
.ws5{word-spacing:-7.082400pt;}
.ws6b{word-spacing:-7.020000pt;}
.ws68{word-spacing:-6.988800pt;}
.ws63{word-spacing:-4.629333pt;}
.ws1a{word-spacing:-4.533333pt;}
.ws5d{word-spacing:-4.293333pt;}
.ws48{word-spacing:-3.434667pt;}
.ws13{word-spacing:-2.493333pt;}
.ws11{word-spacing:-2.040000pt;}
.ws6f{word-spacing:-1.680000pt;}
.wsf{word-spacing:-1.632000pt;}
.ws58{word-spacing:-1.584000pt;}
.wsc{word-spacing:-1.488000pt;}
.ws9f{word-spacing:-1.440000pt;}
.ws1b{word-spacing:-1.405333pt;}
.ws35{word-spacing:-1.392000pt;}
.ws14{word-spacing:-1.360000pt;}
.ws44{word-spacing:-1.296000pt;}
.ws1d{word-spacing:-1.269333pt;}
.ws39{word-spacing:-1.248000pt;}
.ws8c{word-spacing:-1.240000pt;}
.ws42{word-spacing:-1.200000pt;}
.ws27{word-spacing:-1.152000pt;}
.ws1e{word-spacing:-1.133333pt;}
.wsd{word-spacing:-1.104000pt;}
.ws46{word-spacing:-1.056000pt;}
.ws3e{word-spacing:-1.008000pt;}
.ws81{word-spacing:-0.960000pt;}
.ws7f{word-spacing:-0.920000pt;}
.ws56{word-spacing:-0.912000pt;}
.ws12{word-spacing:-0.906667pt;}
.ws49{word-spacing:-0.858667pt;}
.ws47{word-spacing:-0.821333pt;}
.ws2c{word-spacing:-0.816000pt;}
.ws8b{word-spacing:-0.800000pt;}
.ws7c{word-spacing:-0.768000pt;}
.ws9c{word-spacing:-0.760000pt;}
.ws37{word-spacing:-0.720000pt;}
.ws45{word-spacing:-0.672000pt;}
.ws3a{word-spacing:-0.640000pt;}
.ws66{word-spacing:-0.624000pt;}
.wsb{word-spacing:-0.576000pt;}
.ws4a{word-spacing:-0.560000pt;}
.ws2f{word-spacing:-0.533333pt;}
.wse{word-spacing:-0.528000pt;}
.ws97{word-spacing:-0.520000pt;}
.wsa{word-spacing:-0.480000pt;}
.ws17{word-spacing:-0.453333pt;}
.ws82{word-spacing:-0.440000pt;}
.ws2d{word-spacing:-0.432000pt;}
.ws71{word-spacing:-0.384000pt;}
.ws31{word-spacing:-0.336000pt;}
.ws25{word-spacing:-0.288000pt;}
.ws1c{word-spacing:-0.272000pt;}
.ws33{word-spacing:-0.240000pt;}
.ws85{word-spacing:-0.200000pt;}
.ws2e{word-spacing:-0.192000pt;}
.ws19{word-spacing:-0.181333pt;}
.ws32{word-spacing:-0.144000pt;}
.ws28{word-spacing:-0.096000pt;}
.ws59{word-spacing:-0.093600pt;}
.ws18{word-spacing:-0.090667pt;}
.ws8f{word-spacing:-0.080000pt;}
.ws26{word-spacing:-0.062400pt;}
.ws3c{word-spacing:-0.048000pt;}
.ws10{word-spacing:-0.045333pt;}
.ws80{word-spacing:-0.040000pt;}
.ws7b{word-spacing:-0.031200pt;}
.ws8{word-spacing:0.000000pt;}
.ws15{word-spacing:0.045333pt;}
.ws72{word-spacing:0.062400pt;}
.ws70{word-spacing:0.093600pt;}
.ws38{word-spacing:0.096000pt;}
.ws88{word-spacing:0.120000pt;}
.ws30{word-spacing:0.144000pt;}
.ws2b{word-spacing:0.192000pt;}
.ws5a{word-spacing:0.240000pt;}
.ws2a{word-spacing:0.288000pt;}
.ws7e{word-spacing:0.320000pt;}
.ws36{word-spacing:0.336000pt;}
.ws34{word-spacing:0.384000pt;}
.ws3b{word-spacing:0.432000pt;}
.ws8d{word-spacing:0.440000pt;}
.ws43{word-spacing:0.528000pt;}
.ws83{word-spacing:0.560000pt;}
.ws9d{word-spacing:0.576000pt;}
.ws89{word-spacing:0.600000pt;}
.ws3d{word-spacing:0.624000pt;}
.ws57{word-spacing:0.672000pt;}
.ws92{word-spacing:0.720000pt;}
.ws9b{word-spacing:0.760000pt;}
.ws24{word-spacing:0.816000pt;}
.ws9{word-spacing:0.853333pt;}
.wsa0{word-spacing:1.056000pt;}
.ws16{word-spacing:1.088000pt;}
.wsa1{word-spacing:1.104000pt;}
.ws91{word-spacing:1.160000pt;}
.ws9e{word-spacing:1.344000pt;}
.ws86{word-spacing:2.640000pt;}
.ws95{word-spacing:2.720000pt;}
.ws7d{word-spacing:2.840000pt;}
.ws87{word-spacing:3.120000pt;}
.ws94{word-spacing:3.200000pt;}
.ws29{word-spacing:4.752000pt;}
.ws6d{word-spacing:94.640000pt;}
.ws6e{word-spacing:95.125333pt;}
.ws64{word-spacing:206.901333pt;}
.ws61{word-spacing:235.946667pt;}
.ws5f{word-spacing:238.970667pt;}
.ws60{word-spacing:242.554667pt;}
.ws41{word-spacing:253.347733pt;}
.ws55{word-spacing:269.326400pt;}
.ws7a{word-spacing:275.072000pt;}
.ws79{word-spacing:319.875733pt;}
._57{margin-left:-12.680000pt;}
._58{margin-left:-9.160000pt;}
._59{margin-left:-8.200000pt;}
._55{margin-left:-7.040000pt;}
._5e{margin-left:-6.102933pt;}
._4{margin-left:-5.075733pt;}
._2{margin-left:-4.091200pt;}
._1{margin-left:-2.801067pt;}
._0{margin-left:-1.578667pt;}
._3{width:1.221333pt;}
._23{width:2.158400pt;}
._5{width:3.207733pt;}
._3e{width:4.109600pt;}
._54{width:7.160000pt;}
._56{width:9.080000pt;}
._53{width:11.000000pt;}
._52{width:12.000000pt;}
._7{width:13.584000pt;}
._22{width:14.771733pt;}
._5a{width:15.816000pt;}
._42{width:31.823467pt;}
._9{width:32.763200pt;}
._34{width:34.544000pt;}
._8{width:35.821333pt;}
._5b{width:38.538667pt;}
._6{width:42.689600pt;}
._27{width:43.617067pt;}
._38{width:48.394667pt;}
._2d{width:49.354667pt;}
._2a{width:57.339200pt;}
._1b{width:58.784000pt;}
._29{width:59.994667pt;}
._3b{width:60.890667pt;}
._45{width:66.881600pt;}
._2c{width:68.506667pt;}
._26{width:69.402667pt;}
._36{width:74.762667pt;}
._32{width:86.090667pt;}
._44{width:91.093333pt;}
._31{width:96.730667pt;}
._35{width:105.018667pt;}
._41{width:109.013333pt;}
._19{width:111.883200pt;}
._50{width:115.696000pt;}
._e{width:122.976000pt;}
._40{width:126.933333pt;}
._33{width:127.861867pt;}
._10{width:129.280533pt;}
._1f{width:132.629333pt;}
._f{width:133.653333pt;}
._11{width:135.067200pt;}
._51{width:137.345067pt;}
._15{width:140.000000pt;}
._3c{width:143.136000pt;}
._17{width:144.240000pt;}
._28{width:145.259200pt;}
._12{width:148.512000pt;}
._16{width:150.677333pt;}
._2e{width:151.706667pt;}
._4b{width:153.329067pt;}
._13{width:159.189333pt;}
._2f{width:160.218667pt;}
._24{width:161.301867pt;}
._3f{width:164.624533pt;}
._3d{width:166.170667pt;}
._4f{width:167.957333pt;}
._21{width:169.120000pt;}
._46{width:170.426667pt;}
._5c{width:178.519467pt;}
._5d{width:180.052267pt;}
._14{width:186.742400pt;}
._1d{width:193.866667pt;}
._4a{width:195.845333pt;}
._20{width:198.646400pt;}
._4c{width:200.368000pt;}
._2b{width:202.721067pt;}
._37{width:209.845333pt;}
._b{width:213.173333pt;}
._3a{width:214.625067pt;}
._c{width:223.850667pt;}
._1c{width:231.093333pt;}
._1a{width:249.013333pt;}
._48{width:250.469333pt;}
._4e{width:255.808000pt;}
._18{width:259.317333pt;}
._1e{width:268.165333pt;}
._43{width:280.485333pt;}
._4d{width:295.120000pt;}
._39{width:304.080000pt;}
._49{width:313.077333pt;}
._47{width:323.008000pt;}
._a{width:329.813333pt;}
._30{width:341.898667pt;}
._d{width:346.490667pt;}
._25{width:362.469333pt;}
.fsd{font-size:24.266667pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.200000pt;}
.fs4{font-size:34.666667pt;}
.fsc{font-size:37.333333pt;}
.fse{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fsb{font-size:85.333333pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175867pt;}
.y2d{bottom:60.723467pt;}
.y75{bottom:60.942667pt;}
.y125{bottom:62.457600pt;}
.ye5{bottom:69.154933pt;}
.y87{bottom:71.157600pt;}
.y17b{bottom:71.296267pt;}
.y2c{bottom:74.051467pt;}
.y74{bottom:74.274667pt;}
.y124{bottom:75.797600pt;}
.ye4{bottom:82.486933pt;}
.y17a{bottom:82.626267pt;}
.y86{bottom:84.489600pt;}
.y2b{bottom:87.384800pt;}
.y73{bottom:87.606667pt;}
.y123{bottom:89.129600pt;}
.y179{bottom:93.956267pt;}
.ye3{bottom:95.818933pt;}
.y85{bottom:97.821600pt;}
.y2a{bottom:100.723467pt;}
.y72{bottom:100.938667pt;}
.y122{bottom:102.461600pt;}
.y178{bottom:105.286267pt;}
.ye2{bottom:109.150933pt;}
.y84{bottom:111.153600pt;}
.y29{bottom:114.051467pt;}
.y71{bottom:114.270667pt;}
.y121{bottom:115.793600pt;}
.y177{bottom:116.616267pt;}
.ye1{bottom:122.488267pt;}
.y83{bottom:124.485600pt;}
.y28{bottom:127.390133pt;}
.y70{bottom:127.602667pt;}
.y176{bottom:127.946267pt;}
.y120{bottom:129.125600pt;}
.ye0{bottom:135.820267pt;}
.y82{bottom:137.817600pt;}
.y175{bottom:139.276267pt;}
.y27{bottom:140.718133pt;}
.y6f{bottom:140.934667pt;}
.y11f{bottom:142.457600pt;}
.ydf{bottom:149.152267pt;}
.y174{bottom:150.606267pt;}
.y81{bottom:151.149600pt;}
.yc0{bottom:151.150933pt;}
.y26{bottom:154.056800pt;}
.y6e{bottom:154.266667pt;}
.y11e{bottom:155.792267pt;}
.y173{bottom:161.936267pt;}
.yde{bottom:162.484267pt;}
.y80{bottom:164.481600pt;}
.ybf{bottom:164.484267pt;}
.y25{bottom:167.384800pt;}
.y11d{bottom:169.124267pt;}
.y172{bottom:173.266267pt;}
.ydd{bottom:175.817600pt;}
.y7f{bottom:177.813600pt;}
.ybe{bottom:177.817600pt;}
.y24{bottom:180.718133pt;}
.y6d{bottom:181.044133pt;}
.y11c{bottom:182.458933pt;}
.y171{bottom:184.596267pt;}
.ydc{bottom:189.156267pt;}
.y7e{bottom:191.145600pt;}
.ybd{bottom:191.152267pt;}
.y23{bottom:194.051467pt;}
.y6c{bottom:194.376133pt;}
.y11b{bottom:195.790933pt;}
.y170{bottom:195.926267pt;}
.ydb{bottom:202.488267pt;}
.y7d{bottom:204.477600pt;}
.ybc{bottom:204.484267pt;}
.y16f{bottom:207.256267pt;}
.y22{bottom:207.384800pt;}
.y6b{bottom:207.710800pt;}
.y11a{bottom:209.125600pt;}
.yda{bottom:215.820267pt;}
.y7c{bottom:217.809600pt;}
.ybb{bottom:217.822933pt;}
.y16e{bottom:218.586267pt;}
.y6a{bottom:221.042800pt;}
.y119{bottom:222.457600pt;}
.y21{bottom:224.566133pt;}
.yd9{bottom:229.152267pt;}
.y16d{bottom:229.916267pt;}
.y7b{bottom:231.141600pt;}
.yba{bottom:231.154933pt;}
.y69{bottom:234.382800pt;}
.y118{bottom:235.790933pt;}
.y16c{bottom:241.246267pt;}
.yd8{bottom:242.484267pt;}
.y7a{bottom:244.473600pt;}
.yb9{bottom:244.486933pt;}
.y68{bottom:247.714800pt;}
.y117{bottom:249.124267pt;}
.y16b{bottom:252.576267pt;}
.y20{bottom:253.942933pt;}
.yd7{bottom:255.817600pt;}
.y79{bottom:257.805600pt;}
.yb8{bottom:257.818933pt;}
.y67{bottom:261.046800pt;}
.y116{bottom:262.456267pt;}
.y16a{bottom:263.906267pt;}
.y1f{bottom:267.277600pt;}
.yd6{bottom:269.150933pt;}
.y78{bottom:271.137600pt;}
.yb7{bottom:271.150933pt;}
.y66{bottom:274.378800pt;}
.y169{bottom:275.236267pt;}
.y1e{bottom:280.609600pt;}
.yd5{bottom:282.484267pt;}
.y77{bottom:284.469600pt;}
.yb6{bottom:284.486933pt;}
.y168{bottom:286.566267pt;}
.y65{bottom:287.710800pt;}
.y1d{bottom:293.942933pt;}
.yd4{bottom:295.816267pt;}
.y76{bottom:297.802933pt;}
.yb5{bottom:297.818933pt;}
.y167{bottom:297.896267pt;}
.y64{bottom:301.042800pt;}
.y1c{bottom:307.312267pt;}
.y166{bottom:309.226267pt;}
.y13f{bottom:309.961600pt;}
.yb4{bottom:311.150933pt;}
.y63{bottom:314.388133pt;}
.y165{bottom:320.556267pt;}
.y1b{bottom:320.644267pt;}
.y13e{bottom:323.293600pt;}
.yb3{bottom:324.485600pt;}
.y62{bottom:327.720133pt;}
.y164{bottom:331.886267pt;}
.y1a{bottom:333.976267pt;}
.y13d{bottom:336.625600pt;}
.yb2{bottom:337.817600pt;}
.y61{bottom:341.052133pt;}
.y163{bottom:343.216267pt;}
.y9d{bottom:347.305600pt;}
.y115{bottom:348.650933pt;}
.y13c{bottom:349.957600pt;}
.yb1{bottom:351.150933pt;}
.y60{bottom:354.384133pt;}
.y162{bottom:354.546267pt;}
.y1ac{bottom:356.945333pt;}
.y9c{bottom:360.637600pt;}
.y114{bottom:361.982933pt;}
.y13b{bottom:363.289600pt;}
.yb0{bottom:364.484267pt;}
.y161{bottom:365.876267pt;}
.y5f{bottom:367.716133pt;}
.y1ab{bottom:370.277333pt;}
.y9b{bottom:373.969600pt;}
.y19{bottom:375.976267pt;}
.y160{bottom:377.206267pt;}
.yaf{bottom:377.816267pt;}
.y5e{bottom:381.048133pt;}
.y1aa{bottom:383.609333pt;}
.y15f{bottom:388.536267pt;}
.y113{bottom:388.920267pt;}
.y13a{bottom:390.117600pt;}
.y18{bottom:390.640267pt;}
.yae{bottom:391.149600pt;}
.y5d{bottom:394.380133pt;}
.y1a9{bottom:396.941333pt;}
.y15e{bottom:399.866267pt;}
.y9a{bottom:400.768267pt;}
.y112{bottom:404.413600pt;}
.y17{bottom:405.304267pt;}
.y139{bottom:405.620267pt;}
.y5c{bottom:407.712133pt;}
.y1a8{bottom:410.273333pt;}
.y15d{bottom:411.196267pt;}
.y137{bottom:413.373600pt;}
.y111{bottom:414.409600pt;}
.y99{bottom:416.270933pt;}
.y16{bottom:419.968267pt;}
.yad{bottom:420.502933pt;}
.y5b{bottom:421.044133pt;}
.y138{bottom:421.120267pt;}
.y15c{bottom:422.526267pt;}
.y1a7{bottom:423.605333pt;}
.y110{bottom:429.912267pt;}
.y98{bottom:431.773600pt;}
.yac{bottom:433.834933pt;}
.y15b{bottom:433.856267pt;}
.y5a{bottom:434.376133pt;}
.y15{bottom:434.632267pt;}
.y136{bottom:436.622933pt;}
.y1a6{bottom:436.937333pt;}
.y10f{bottom:439.908267pt;}
.y15a{bottom:445.186267pt;}
.yab{bottom:447.166933pt;}
.y97{bottom:447.276267pt;}
.y59{bottom:447.733467pt;}
.y14{bottom:449.296267pt;}
.y10e{bottom:449.904267pt;}
.y1a5{bottom:450.269333pt;}
.y135{bottom:452.122933pt;}
.y159{bottom:456.516267pt;}
.yaa{bottom:460.498933pt;}
.y58{bottom:461.065467pt;}
.y96{bottom:462.778933pt;}
.y1a4{bottom:463.601333pt;}
.y13{bottom:463.960267pt;}
.y10d{bottom:465.406933pt;}
.y158{bottom:467.846267pt;}
.ya9{bottom:473.830933pt;}
.y57{bottom:474.397467pt;}
.y1a3{bottom:476.933333pt;}
.y95{bottom:478.281600pt;}
.y12{bottom:478.624267pt;}
.y157{bottom:479.176267pt;}
.y10c{bottom:480.900267pt;}
.ya8{bottom:487.162933pt;}
.y56{bottom:487.729467pt;}
.y156{bottom:490.506267pt;}
.y10b{bottom:490.896267pt;}
.y11{bottom:493.288267pt;}
.y94{bottom:493.784267pt;}
.y1a2{bottom:496.270667pt;}
.ya7{bottom:500.494933pt;}
.y55{bottom:501.061467pt;}
.y155{bottom:501.836267pt;}
.y134{bottom:503.641600pt;}
.y10a{bottom:506.389600pt;}
.y10{bottom:507.952267pt;}
.y93{bottom:509.286933pt;}
.y1a1{bottom:509.602667pt;}
.y154{bottom:513.166267pt;}
.ya6{bottom:513.826933pt;}
.y54{bottom:514.393467pt;}
.y109{bottom:516.385600pt;}
.y133{bottom:516.973600pt;}
.yf{bottom:522.616267pt;}
.y153{bottom:524.496267pt;}
.y92{bottom:524.789600pt;}
.ya5{bottom:527.158933pt;}
.y53{bottom:527.725467pt;}
.y1a0{bottom:528.934667pt;}
.y132{bottom:530.305600pt;}
.y108{bottom:531.888267pt;}
.y152{bottom:535.826267pt;}
.ye{bottom:537.280267pt;}
.y91{bottom:540.292267pt;}
.ya4{bottom:540.490933pt;}
.y52{bottom:541.057467pt;}
.y107{bottom:541.884267pt;}
.y131{bottom:543.637600pt;}
.y151{bottom:547.156267pt;}
.y19f{bottom:548.266667pt;}
.y106{bottom:551.880267pt;}
.yd{bottom:551.944267pt;}
.ya3{bottom:553.822933pt;}
.y51{bottom:554.389467pt;}
.y90{bottom:555.794933pt;}
.y130{bottom:556.969600pt;}
.y150{bottom:558.486267pt;}
.y19e{bottom:561.600000pt;}
.yc{bottom:566.608267pt;}
.ya2{bottom:567.154933pt;}
.y105{bottom:567.382933pt;}
.y50{bottom:567.721467pt;}
.y14f{bottom:569.816267pt;}
.y8f{bottom:571.297600pt;}
.ya1{bottom:580.486933pt;}
.y4f{bottom:581.053467pt;}
.y14e{bottom:581.149600pt;}
.y104{bottom:582.885600pt;}
.y12f{bottom:583.794933pt;}
.y19d{bottom:586.346667pt;}
.y8e{bottom:586.800267pt;}
.yb{bottom:593.274933pt;}
.ya0{bottom:593.818933pt;}
.y4e{bottom:594.385467pt;}
.y103{bottom:598.378933pt;}
.y12e{bottom:599.297600pt;}
.y19c{bottom:599.678667pt;}
.y8d{bottom:602.294933pt;}
.y9f{bottom:607.150933pt;}
.y4d{bottom:607.717467pt;}
.y102{bottom:608.374933pt;}
.ya{bottom:609.274933pt;}
.y14d{bottom:610.488267pt;}
.y19b{bottom:613.010667pt;}
.y12d{bottom:614.800267pt;}
.y8c{bottom:617.797600pt;}
.y9e{bottom:620.482933pt;}
.y4c{bottom:621.049467pt;}
.y12a{bottom:622.550933pt;}
.y14c{bottom:623.820267pt;}
.y101{bottom:623.877600pt;}
.y9{bottom:625.274933pt;}
.y19a{bottom:626.342667pt;}
.y12c{bottom:630.297600pt;}
.y8b{bottom:633.300267pt;}
.y100{bottom:633.873600pt;}
.y4b{bottom:634.381467pt;}
.y14b{bottom:637.152267pt;}
.y199{bottom:639.674667pt;}
.yff{bottom:643.869600pt;}
.y12b{bottom:645.800267pt;}
.y4a{bottom:647.713467pt;}
.y8a{bottom:648.802933pt;}
.y14a{bottom:650.484267pt;}
.y198{bottom:653.006667pt;}
.y8{bottom:654.586933pt;}
.yfe{bottom:659.372267pt;}
.y49{bottom:661.045467pt;}
.y129{bottom:661.302933pt;}
.y149{bottom:663.816267pt;}
.y197{bottom:666.338667pt;}
.yd3{bottom:672.650933pt;}
.y30{bottom:673.018133pt;}
.y48{bottom:674.377467pt;}
.yfd{bottom:674.865600pt;}
.y128{bottom:676.802933pt;}
.y148{bottom:677.149600pt;}
.y196{bottom:679.672000pt;}
.yfc{bottom:684.861600pt;}
.yd2{bottom:685.982933pt;}
.y47{bottom:687.709467pt;}
.y89{bottom:688.533733pt;}
.y2f{bottom:691.684133pt;}
.y7{bottom:694.592267pt;}
.yfb{bottom:700.354933pt;}
.y46{bottom:701.041467pt;}
.y88{bottom:701.865733pt;}
.y195{bottom:704.418800pt;}
.y147{bottom:706.492267pt;}
.y2e{bottom:710.350133pt;}
.yfa{bottom:710.350933pt;}
.yd1{bottom:712.781600pt;}
.y45{bottom:714.374800pt;}
.y194{bottom:717.750800pt;}
.y146{bottom:719.824267pt;}
.y127{bottom:724.533733pt;}
.yf9{bottom:725.853600pt;}
.yd0{bottom:728.284267pt;}
.y193{bottom:731.082800pt;}
.y145{bottom:733.156267pt;}
.y6{bottom:734.597600pt;}
.yf8{bottom:735.849600pt;}
.y126{bottom:737.865733pt;}
.y44{bottom:741.158933pt;}
.ycf{bottom:743.786933pt;}
.y192{bottom:744.414800pt;}
.yf7{bottom:745.845600pt;}
.y144{bottom:746.488267pt;}
.y43{bottom:754.490933pt;}
.y191{bottom:757.746800pt;}
.yce{bottom:759.289600pt;}
.y143{bottom:759.820267pt;}
.yf6{bottom:761.348267pt;}
.y42{bottom:767.822933pt;}
.y190{bottom:771.078800pt;}
.y142{bottom:773.152267pt;}
.y5{bottom:774.602933pt;}
.ycd{bottom:774.792267pt;}
.yf5{bottom:776.850933pt;}
.y41{bottom:781.154933pt;}
.y18f{bottom:784.410800pt;}
.y141{bottom:786.484267pt;}
.ycc{bottom:790.294933pt;}
.yf4{bottom:792.344267pt;}
.y40{bottom:794.486933pt;}
.y18e{bottom:797.744133pt;}
.y140{bottom:799.816267pt;}
.yf3{bottom:802.340267pt;}
.ycb{bottom:805.797600pt;}
.y3f{bottom:807.818933pt;}
.y4{bottom:814.608267pt;}
.yf2{bottom:817.842933pt;}
.y3e{bottom:821.150933pt;}
.yca{bottom:821.300267pt;}
.y18d{bottom:822.526267pt;}
.y31{bottom:823.475200pt;}
.yf1{bottom:827.838933pt;}
.y18c{bottom:833.856267pt;}
.y3d{bottom:834.489600pt;}
.yc9{bottom:836.802933pt;}
.yf0{bottom:837.834933pt;}
.y18b{bottom:845.186267pt;}
.y17f{bottom:845.317600pt;}
.y3c{bottom:847.821600pt;}
.yc8{bottom:852.305600pt;}
.yef{bottom:853.337600pt;}
.y18a{bottom:856.516267pt;}
.y17e{bottom:858.650933pt;}
.y3b{bottom:861.153600pt;}
.yc7{bottom:867.808267pt;}
.y189{bottom:867.846267pt;}
.yee{bottom:868.830933pt;}
.y17d{bottom:871.982933pt;}
.y3a{bottom:874.485600pt;}
.yed{bottom:878.826933pt;}
.y188{bottom:879.176267pt;}
.yc6{bottom:883.310933pt;}
.y39{bottom:887.817600pt;}
.y187{bottom:890.506267pt;}
.yec{bottom:894.320267pt;}
.yc5{bottom:898.813600pt;}
.y38{bottom:901.153600pt;}
.y186{bottom:901.836267pt;}
.yeb{bottom:904.316267pt;}
.y185{bottom:913.166267pt;}
.yc4{bottom:914.308267pt;}
.y17c{bottom:914.313600pt;}
.y37{bottom:914.485600pt;}
.yea{bottom:919.818933pt;}
.y184{bottom:924.496267pt;}
.y36{bottom:927.817600pt;}
.yc3{bottom:929.810933pt;}
.ye9{bottom:929.814933pt;}
.y183{bottom:935.826267pt;}
.ye8{bottom:939.810933pt;}
.y35{bottom:941.152267pt;}
.yc2{bottom:945.313600pt;}
.y182{bottom:947.156267pt;}
.y34{bottom:954.484267pt;}
.ye7{bottom:955.313600pt;}
.y181{bottom:958.486267pt;}
.yc1{bottom:960.816267pt;}
.y33{bottom:967.816267pt;}
.y180{bottom:969.816267pt;}
.ye6{bottom:970.816267pt;}
.y32{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.hb{height:27.728594pt;}
.hd{height:31.476562pt;}
.h7{height:34.523438pt;}
.h14{height:36.922667pt;}
.h1c{height:36.933333pt;}
.h1b{height:36.944000pt;}
.h15{height:36.954667pt;}
.h18{height:38.229333pt;}
.h13{height:38.528000pt;}
.h4{height:39.318359pt;}
.h1f{height:39.560000pt;}
.h1d{height:40.080000pt;}
.h3{height:40.661333pt;}
.h1e{height:40.960000pt;}
.hf{height:42.195312pt;}
.h6{height:43.066927pt;}
.hc{height:43.141927pt;}
.h8{height:46.080000pt;}
.h9{height:47.472000pt;}
.ha{height:48.085333pt;}
.h16{height:48.096000pt;}
.h12{height:49.152000pt;}
.h2{height:50.755208pt;}
.h1a{height:56.933333pt;}
.h10{height:68.362667pt;}
.h11{height:68.384000pt;}
.he{height:69.046875pt;}
.h19{height:76.906667pt;}
.h17{height:78.213333pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:12.510400pt;}
.x2{left:54.392400pt;}
.x7{left:125.291333pt;}
.x4{left:207.516800pt;}
.x8{left:211.683467pt;}
.x5{left:223.517333pt;}
.x12{left:267.195067pt;}
.xc{left:287.064000pt;}
.xf{left:320.357333pt;}
.xd{left:327.335600pt;}
.xa{left:339.680800pt;}
.xb{left:410.343467pt;}
.x11{left:425.015467pt;}
.x3{left:519.632533pt;}
.xe{left:578.408800pt;}
.x10{left:580.135467pt;}
.x9{left:732.628800pt;}
.x1{left:733.540267pt;}
}




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