
    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_a62689850c12be29b9c98437.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958000;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_691639df841ab10a5d0c956f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958000;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_5401a7900e5d2e15efde519a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.678000;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_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ae915d22b19feb718e7fcb86.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_35344db3f1aa072030bdfe8e.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_12d6024bd00eed53aa7742e0.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_c3b92c7fa02441b14614349c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9360da60a64ae380e38c2851.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f597270797055b2c8833fe09.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910000;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_af3353d5e780eaa9b389ebc6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.969000;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_df2228f57e0280bdb19cb380.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.958000;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_35bb45ca36724995a1e32e29.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_36212267f4c00c9699caa07b.woff2')format("woff");}.fff{font-family:fff;line-height:0.894000;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_3c10f019a1e424d979b416ef.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_e4fac888dee4d925d4ebbd4a.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_ee63d4e0dfcb0e56479b91e7.woff2')format("woff");}.ff13{font-family:ff13;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;}
.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);}
.v3{vertical-align:-18.360000px;}
.v4{vertical-align:-17.340000px;}
.v5{vertical-align:-10.806113px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.198000px;}
.v1{vertical-align:20.400600px;}
.lsa0{letter-spacing:-3.195000px;}
.ls9c{letter-spacing:-1.350000px;}
.ls95{letter-spacing:-1.305000px;}
.ls58{letter-spacing:-1.260000px;}
.ls3d{letter-spacing:-1.188000px;}
.ls59{letter-spacing:-1.134000px;}
.ls5b{letter-spacing:-1.080000px;}
.ls64{letter-spacing:-1.026000px;}
.ls5a{letter-spacing:-0.982800px;}
.ls5e{letter-spacing:-0.972000px;}
.lsa5{letter-spacing:-0.945000px;}
.ls71{letter-spacing:-0.864000px;}
.ls9f{letter-spacing:-0.855000px;}
.lsa2{letter-spacing:-0.810000px;}
.ls86{letter-spacing:-0.765000px;}
.ls9a{letter-spacing:-0.720000px;}
.ls81{letter-spacing:-0.702000px;}
.ls9d{letter-spacing:-0.675000px;}
.ls6f{letter-spacing:-0.648000px;}
.lsa4{letter-spacing:-0.630000px;}
.ls7f{letter-spacing:-0.594000px;}
.lsa3{letter-spacing:-0.585000px;}
.ls1b{letter-spacing:-0.540000px;}
.ls88{letter-spacing:-0.495000px;}
.ls63{letter-spacing:-0.480000px;}
.ls93{letter-spacing:-0.450000px;}
.ls21{letter-spacing:-0.432000px;}
.ls87{letter-spacing:-0.360000px;}
.ls80{letter-spacing:-0.324000px;}
.ls98{letter-spacing:-0.315000px;}
.ls70{letter-spacing:-0.300000px;}
.ls22{letter-spacing:-0.270000px;}
.ls99{letter-spacing:-0.225000px;}
.ls1a{letter-spacing:-0.216000px;}
.ls5c{letter-spacing:-0.180000px;}
.ls23{letter-spacing:-0.175500px;}
.ls1c{letter-spacing:-0.162000px;}
.ls24{letter-spacing:-0.153000px;}
.ls7d{letter-spacing:-0.140400px;}
.ls9e{letter-spacing:-0.135000px;}
.ls19{letter-spacing:-0.108000px;}
.ls56{letter-spacing:-0.105300px;}
.lsa1{letter-spacing:-0.090000px;}
.ls1d{letter-spacing:-0.054000px;}
.ls9b{letter-spacing:-0.045000px;}
.ls18{letter-spacing:0.000000px;}
.ls60{letter-spacing:0.000085px;}
.ls2{letter-spacing:0.013200px;}
.ls3{letter-spacing:0.013800px;}
.ls29{letter-spacing:0.035099px;}
.ls84{letter-spacing:0.035100px;}
.ls6c{letter-spacing:0.037802px;}
.ls8c{letter-spacing:0.045000px;}
.ls77{letter-spacing:0.047325px;}
.ls83{letter-spacing:0.053999px;}
.ls2a{letter-spacing:0.054000px;}
.ls12{letter-spacing:0.061650px;}
.ls7b{letter-spacing:0.070198px;}
.ls8{letter-spacing:0.070200px;}
.ls9{letter-spacing:0.075600px;}
.lsa7{letter-spacing:0.090000px;}
.ls30{letter-spacing:0.090890px;}
.lsc{letter-spacing:0.091800px;}
.ls11{letter-spacing:0.102000px;}
.ls2f{letter-spacing:0.103215px;}
.lsf{letter-spacing:0.105300px;}
.lsa{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.118200px;}
.ls2b{letter-spacing:0.120000px;}
.ls8e{letter-spacing:0.135000px;}
.ls6d{letter-spacing:0.140398px;}
.ls2e{letter-spacing:0.140400px;}
.ls78{letter-spacing:0.145804px;}
.ls6e{letter-spacing:0.156617px;}
.lsb{letter-spacing:0.162000px;}
.ls36{letter-spacing:0.162001px;}
.ls65{letter-spacing:0.162020px;}
.ls73{letter-spacing:0.175500px;}
.ls97{letter-spacing:0.180000px;}
.ls3e{letter-spacing:0.205711px;}
.ls7a{letter-spacing:0.210599px;}
.ls20{letter-spacing:0.210600px;}
.ls7{letter-spacing:0.216000px;}
.ls91{letter-spacing:0.225000px;}
.ls33{letter-spacing:0.225880px;}
.ls3c{letter-spacing:0.240000px;}
.ls32{letter-spacing:0.245701px;}
.ls76{letter-spacing:0.264591px;}
.ls46{letter-spacing:0.264609px;}
.ls4e{letter-spacing:0.269998px;}
.ls35{letter-spacing:0.270000px;}
.ls2d{letter-spacing:0.276024px;}
.ls79{letter-spacing:0.286167px;}
.ls6b{letter-spacing:0.291662px;}
.ls57{letter-spacing:0.300000px;}
.ls5d{letter-spacing:0.315900px;}
.ls1f{letter-spacing:0.324000px;}
.ls6a{letter-spacing:0.350999px;}
.ls85{letter-spacing:0.351000px;}
.ls66{letter-spacing:0.360000px;}
.ls69{letter-spacing:0.368550px;}
.ls48{letter-spacing:0.377999px;}
.ls34{letter-spacing:0.378000px;}
.ls49{letter-spacing:0.378001px;}
.ls41{letter-spacing:0.380394px;}
.ls72{letter-spacing:0.386100px;}
.ls74{letter-spacing:0.403651px;}
.ls67{letter-spacing:0.420001px;}
.ls7e{letter-spacing:0.421200px;}
.ls3b{letter-spacing:0.430381px;}
.ls2c{letter-spacing:0.432000px;}
.ls89{letter-spacing:0.450000px;}
.ls3a{letter-spacing:0.456300px;}
.ls5{letter-spacing:0.468600px;}
.ls75{letter-spacing:0.469790px;}
.ls37{letter-spacing:0.480000px;}
.ls31{letter-spacing:0.485998px;}
.ls38{letter-spacing:0.486000px;}
.ls92{letter-spacing:0.495000px;}
.lsd{letter-spacing:0.502200px;}
.ls39{letter-spacing:0.540000px;}
.ls55{letter-spacing:0.547850px;}
.ls54{letter-spacing:0.548399px;}
.ls43{letter-spacing:0.550758px;}
.ls4a{letter-spacing:0.582004px;}
.lsa8{letter-spacing:0.585000px;}
.ls4f{letter-spacing:0.593998px;}
.ls3f{letter-spacing:0.594000px;}
.ls5f{letter-spacing:0.594004px;}
.ls28{letter-spacing:0.596700px;}
.ls4b{letter-spacing:0.599999px;}
.ls8d{letter-spacing:0.630000px;}
.ls8b{letter-spacing:0.630034px;}
.ls53{letter-spacing:0.631800px;}
.ls50{letter-spacing:0.642593px;}
.lse{letter-spacing:0.648000px;}
.ls40{letter-spacing:0.648001px;}
.ls7c{letter-spacing:0.650851px;}
.ls4c{letter-spacing:0.669580px;}
.ls61{letter-spacing:0.675000px;}
.ls6{letter-spacing:0.702000px;}
.ls8a{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.727050px;}
.ls82{letter-spacing:0.750582px;}
.ls62{letter-spacing:0.756000px;}
.ls4d{letter-spacing:0.756006px;}
.ls47{letter-spacing:0.777637px;}
.ls68{letter-spacing:0.780000px;}
.ls42{letter-spacing:0.809999px;}
.ls1e{letter-spacing:0.810000px;}
.ls51{letter-spacing:0.864000px;}
.ls44{letter-spacing:0.896482px;}
.ls27{letter-spacing:0.918000px;}
.ls45{letter-spacing:0.960000px;}
.ls52{letter-spacing:0.972000px;}
.ls16{letter-spacing:0.987450px;}
.ls17{letter-spacing:1.020000px;}
.ls94{letter-spacing:1.035000px;}
.ls90{letter-spacing:1.080000px;}
.ls13{letter-spacing:1.122000px;}
.ls96{letter-spacing:1.125000px;}
.ls4{letter-spacing:1.188000px;}
.ls26{letter-spacing:1.242000px;}
.lsa6{letter-spacing:1.350000px;}
.ls8f{letter-spacing:1.462451px;}
.ls15{letter-spacing:1.530000px;}
.ls0{letter-spacing:2.592000px;}
.ls25{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.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:-15.067500px;}
.ws25{word-spacing:-14.700000px;}
.ws43{word-spacing:-13.596000px;}
.ws4{word-spacing:-13.500000px;}
.ws72{word-spacing:-13.176000px;}
.ws44{word-spacing:-12.840000px;}
.ws48{word-spacing:-12.636000px;}
.ws7c{word-spacing:-12.582000px;}
.ws63{word-spacing:-12.528000px;}
.ws1{word-spacing:-12.480000px;}
.ws6{word-spacing:-12.420000px;}
.ws3f{word-spacing:-12.312000px;}
.ws40{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.192000px;}
.ws46{word-spacing:-12.150000px;}
.ws70{word-spacing:-12.096000px;}
.ws9{word-spacing:-11.988000px;}
.ws47{word-spacing:-11.286000px;}
.wsa6{word-spacing:-10.305000px;}
.ws86{word-spacing:-10.215000px;}
.wsc{word-spacing:-10.200000px;}
.ws9d{word-spacing:-10.125000px;}
.wsa7{word-spacing:-10.035000px;}
.ws84{word-spacing:-9.990000px;}
.wsae{word-spacing:-9.900000px;}
.ws82{word-spacing:-9.855000px;}
.ws9b{word-spacing:-9.720000px;}
.ws95{word-spacing:-9.675000px;}
.wsa2{word-spacing:-9.630000px;}
.ws85{word-spacing:-9.585000px;}
.ws81{word-spacing:-9.540000px;}
.ws89{word-spacing:-9.495000px;}
.ws88{word-spacing:-9.450000px;}
.ws8a{word-spacing:-9.360000px;}
.ws83{word-spacing:-9.000000px;}
.ws87{word-spacing:-8.955000px;}
.ws29{word-spacing:-8.775000px;}
.ws26{word-spacing:-8.564400px;}
.ws62{word-spacing:-8.424000px;}
.ws6f{word-spacing:-8.388900px;}
.ws61{word-spacing:-8.353800px;}
.ws7b{word-spacing:-8.318700px;}
.ws45{word-spacing:-8.283600px;}
.ws28{word-spacing:-8.213400px;}
.ws8{word-spacing:-8.178300px;}
.ws64{word-spacing:-8.143200px;}
.ws2a{word-spacing:-8.108100px;}
.ws7{word-spacing:-8.073000px;}
.ws71{word-spacing:-8.037900px;}
.ws3{word-spacing:-8.034000px;}
.ws27{word-spacing:-8.002800px;}
.ws5{word-spacing:-7.967700px;}
.ws3e{word-spacing:-7.862400px;}
.ws6e{word-spacing:-7.827300px;}
.wsa{word-spacing:-7.792200px;}
.ws41{word-spacing:-6.984900px;}
.wsb{word-spacing:-6.630000px;}
.ws4a{word-spacing:-5.616000px;}
.ws31{word-spacing:-5.508000px;}
.ws1a{word-spacing:-2.376000px;}
.ws1b{word-spacing:-1.998000px;}
.wsb4{word-spacing:-1.944000px;}
.ws30{word-spacing:-1.890000px;}
.ws11{word-spacing:-1.836000px;}
.ws56{word-spacing:-1.782000px;}
.ws6b{word-spacing:-1.728000px;}
.ws94{word-spacing:-1.620000px;}
.ws97{word-spacing:-1.575000px;}
.ws54{word-spacing:-1.566000px;}
.ws21{word-spacing:-1.530000px;}
.ws12{word-spacing:-1.512000px;}
.ws49{word-spacing:-1.458000px;}
.ws55{word-spacing:-1.404000px;}
.ws74{word-spacing:-1.350000px;}
.ws57{word-spacing:-1.296000px;}
.ws24{word-spacing:-1.275000px;}
.ws17{word-spacing:-1.242000px;}
.ws3d{word-spacing:-1.188000px;}
.ws52{word-spacing:-1.134000px;}
.ws8c{word-spacing:-1.125000px;}
.ws1f{word-spacing:-1.122000px;}
.ws73{word-spacing:-1.080000px;}
.ws7e{word-spacing:-1.035000px;}
.ws4e{word-spacing:-1.026000px;}
.ws22{word-spacing:-1.020000px;}
.wsb1{word-spacing:-0.990000px;}
.ws5a{word-spacing:-0.972000px;}
.wse{word-spacing:-0.960000px;}
.ws9f{word-spacing:-0.945000px;}
.ws15{word-spacing:-0.918000px;}
.ws5d{word-spacing:-0.864000px;}
.ws80{word-spacing:-0.855000px;}
.ws37{word-spacing:-0.810000px;}
.ws68{word-spacing:-0.780000px;}
.ws65{word-spacing:-0.756000px;}
.ws93{word-spacing:-0.720000px;}
.ws1c{word-spacing:-0.714000px;}
.ws5f{word-spacing:-0.702000px;}
.ws13{word-spacing:-0.648000px;}
.ws8d{word-spacing:-0.630000px;}
.ws2c{word-spacing:-0.596700px;}
.ws14{word-spacing:-0.594000px;}
.wsa1{word-spacing:-0.585000px;}
.ws38{word-spacing:-0.540000px;}
.ws1e{word-spacing:-0.510000px;}
.wsa8{word-spacing:-0.495000px;}
.ws53{word-spacing:-0.486000px;}
.ws35{word-spacing:-0.480000px;}
.wsa0{word-spacing:-0.450000px;}
.ws16{word-spacing:-0.432000px;}
.ws6a{word-spacing:-0.386100px;}
.ws34{word-spacing:-0.378000px;}
.ws67{word-spacing:-0.360000px;}
.ws7d{word-spacing:-0.351000px;}
.ws32{word-spacing:-0.324000px;}
.ws4c{word-spacing:-0.300000px;}
.ws36{word-spacing:-0.270000px;}
.ws3c{word-spacing:-0.240000px;}
.ws33{word-spacing:-0.216000px;}
.ws75{word-spacing:-0.210600px;}
.wsaf{word-spacing:-0.180000px;}
.ws6d{word-spacing:-0.175500px;}
.ws2f{word-spacing:-0.162000px;}
.ws96{word-spacing:-0.135000px;}
.ws2e{word-spacing:-0.120000px;}
.ws76{word-spacing:-0.108000px;}
.ws1d{word-spacing:-0.102000px;}
.wsa4{word-spacing:-0.090000px;}
.ws77{word-spacing:-0.070200px;}
.ws42{word-spacing:-0.054000px;}
.ws9c{word-spacing:-0.045000px;}
.ws2d{word-spacing:-0.035100px;}
.wsd{word-spacing:0.000000px;}
.ws9e{word-spacing:0.045000px;}
.ws50{word-spacing:0.054000px;}
.ws9a{word-spacing:0.090000px;}
.ws5b{word-spacing:0.108000px;}
.ws8b{word-spacing:0.135000px;}
.ws23{word-spacing:0.153000px;}
.ws3a{word-spacing:0.162000px;}
.ws51{word-spacing:0.180000px;}
.ws4b{word-spacing:0.216000px;}
.ws58{word-spacing:0.270000px;}
.ws66{word-spacing:0.300000px;}
.wsa9{word-spacing:0.315000px;}
.ws39{word-spacing:0.324000px;}
.ws7f{word-spacing:0.360000px;}
.ws18{word-spacing:0.378000px;}
.wsac{word-spacing:0.405000px;}
.ws60{word-spacing:0.432000px;}
.wsb3{word-spacing:0.450000px;}
.ws5e{word-spacing:0.480000px;}
.ws59{word-spacing:0.486000px;}
.wsad{word-spacing:0.540000px;}
.ws99{word-spacing:0.585000px;}
.ws10{word-spacing:0.594000px;}
.ws91{word-spacing:0.630000px;}
.ws69{word-spacing:0.702000px;}
.ws98{word-spacing:0.720000px;}
.ws19{word-spacing:0.756000px;}
.wsb0{word-spacing:0.765000px;}
.ws78{word-spacing:0.810000px;}
.ws3b{word-spacing:0.864000px;}
.ws5c{word-spacing:0.918000px;}
.wsb2{word-spacing:0.945000px;}
.ws6c{word-spacing:0.972000px;}
.wsaa{word-spacing:0.990000px;}
.ws2b{word-spacing:1.080000px;}
.ws92{word-spacing:1.125000px;}
.ws79{word-spacing:1.134000px;}
.ws4d{word-spacing:1.188000px;}
.wsa5{word-spacing:1.215000px;}
.wsb6{word-spacing:1.242000px;}
.ws4f{word-spacing:1.260000px;}
.ws7a{word-spacing:1.350000px;}
.ws8e{word-spacing:1.530000px;}
.wsf{word-spacing:1.674000px;}
.wsab{word-spacing:1.710000px;}
.ws20{word-spacing:1.836000px;}
.ws90{word-spacing:1.845000px;}
.ws8f{word-spacing:2.025000px;}
.wsb5{word-spacing:2.214000px;}
.wsa3{word-spacing:3.195000px;}
._8{margin-left:-11.501843px;}
._15{margin-left:-9.675000px;}
._14{margin-left:-8.100000px;}
._a{margin-left:-6.271800px;}
._5{margin-left:-5.205600px;}
._2{margin-left:-4.180800px;}
._1{margin-left:-3.120000px;}
._0{margin-left:-1.776000px;}
._4{width:1.024800px;}
._6{width:2.998800px;}
._7{width:4.396200px;}
._d{width:5.687399px;}
._11{width:6.705000px;}
._13{width:8.511602px;}
._10{width:9.945000px;}
._16{width:11.628007px;}
._e{width:12.960000px;}
._f{width:14.264999px;}
._c{width:15.281992px;}
._17{width:16.785002px;}
._12{width:18.135002px;}
._3{width:43.129800px;}
._9{width:46.993239px;}
._b{width:48.632413px;}
.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);}
.fs7{font-size:33.150000px;}
.fs6{font-size:35.100000px;}
.fs4{font-size:39.000000px;}
.fsc{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;}
.fsb{font-size:66.000000px;}
.fsa{font-size:72.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:27.177600px;}
.y1{bottom:27.197850px;}
.y3a{bottom:27.197851px;}
.y32{bottom:68.307900px;}
.y61{bottom:68.551502px;}
.yae{bottom:68.554498px;}
.ya6{bottom:68.566504px;}
.y196{bottom:71.343265px;}
.y142{bottom:73.304546px;}
.y10d{bottom:77.794803px;}
.y60{bottom:83.550001px;}
.yad{bottom:83.552997px;}
.ya5{bottom:83.565004px;}
.y195{bottom:84.089515px;}
.y141{bottom:86.050797px;}
.y31{bottom:87.636900px;}
.y10c{bottom:92.797799px;}
.y194{bottom:96.835765px;}
.y30{bottom:98.307900px;}
.yac{bottom:98.551496px;}
.ya4{bottom:98.563503px;}
.y140{bottom:98.797047px;}
.y10b{bottom:107.796298px;}
.y193{bottom:109.582015px;}
.y13f{bottom:111.543297px;}
.y5f{bottom:112.132056px;}
.y2f{bottom:113.307900px;}
.yab{bottom:113.549995px;}
.yde{bottom:113.551496px;}
.ya3{bottom:113.562002px;}
.y192{bottom:122.328265px;}
.y10a{bottom:122.794798px;}
.y13e{bottom:124.293297px;}
.y5e{bottom:127.130555px;}
.y2e{bottom:128.307900px;}
.ydd{bottom:128.549995px;}
.ya2{bottom:128.560501px;}
.y191{bottom:135.074515px;}
.y109{bottom:137.796298px;}
.y5d{bottom:142.129054px;}
.y2d{bottom:143.307900px;}
.ydc{bottom:143.549995px;}
.ya1{bottom:143.559000px;}
.yaa{bottom:146.029806px;}
.y190{bottom:147.820766px;}
.y108{bottom:152.794798px;}
.y5c{bottom:157.127554px;}
.y13d{bottom:157.308305px;}
.ya0{bottom:158.557499px;}
.y18f{bottom:160.567016px;}
.ya9{bottom:161.029806px;}
.y2c{bottom:162.636900px;}
.y107{bottom:167.797799px;}
.ydb{bottom:171.896112px;}
.y5b{bottom:172.130555px;}
.y13c{bottom:172.306804px;}
.y18e{bottom:173.313266px;}
.y9f{bottom:173.555999px;}
.ya8{bottom:176.029806px;}
.y106{bottom:182.796298px;}
.y18d{bottom:186.059516px;}
.yda{bottom:186.894611px;}
.y5a{bottom:187.129054px;}
.y13b{bottom:187.305303px;}
.y9e{bottom:188.554498px;}
.ya7{bottom:191.028305px;}
.y105{bottom:197.794798px;}
.y2b{bottom:198.688800px;}
.y18c{bottom:198.805766px;}
.yd9{bottom:201.893110px;}
.y59{bottom:202.127554px;}
.y13a{bottom:202.303802px;}
.y9d{bottom:203.552997px;}
.y18b{bottom:211.552016px;}
.y104{bottom:212.799300px;}
.y2a{bottom:213.687300px;}
.yd8{bottom:216.891609px;}
.y58{bottom:217.133557px;}
.y139{bottom:217.302302px;}
.y9c{bottom:218.551496px;}
.y18a{bottom:224.298266px;}
.y103{bottom:227.797799px;}
.y29{bottom:228.685800px;}
.yd7{bottom:231.890108px;}
.y57{bottom:232.132056px;}
.y138{bottom:232.300801px;}
.y9b{bottom:233.554498px;}
.y189{bottom:237.044516px;}
.y102{bottom:242.796298px;}
.y28{bottom:243.685800px;}
.ybb{bottom:245.209952px;}
.yd6{bottom:246.888608px;}
.y56{bottom:247.130555px;}
.y137{bottom:247.299300px;}
.y9a{bottom:248.552997px;}
.y188{bottom:249.790766px;}
.y101{bottom:257.794798px;}
.y27{bottom:258.687300px;}
.yba{bottom:260.208451px;}
.yd5{bottom:261.887107px;}
.y55{bottom:262.129054px;}
.y136{bottom:262.297799px;}
.y187{bottom:262.537017px;}
.y99{bottom:263.551496px;}
.y100{bottom:272.799300px;}
.y26{bottom:273.685800px;}
.yb9{bottom:275.206951px;}
.y186{bottom:275.283267px;}
.yd4{bottom:276.885606px;}
.y54{bottom:277.127554px;}
.y135{bottom:277.296298px;}
.y98{bottom:278.552997px;}
.yff{bottom:287.797799px;}
.y185{bottom:288.029517px;}
.y25{bottom:288.691800px;}
.yb8{bottom:290.205450px;}
.yd3{bottom:291.884105px;}
.y53{bottom:292.130555px;}
.y134{bottom:292.294798px;}
.y97{bottom:293.551496px;}
.y184{bottom:300.775767px;}
.yfe{bottom:302.796298px;}
.y24{bottom:303.690300px;}
.yb7{bottom:305.203949px;}
.yd2{bottom:306.882604px;}
.y52{bottom:307.129054px;}
.y133{bottom:307.294798px;}
.y96{bottom:308.549995px;}
.y183{bottom:313.522017px;}
.yfd{bottom:317.794798px;}
.y23{bottom:318.688800px;}
.yd1{bottom:321.882604px;}
.y51{bottom:322.127554px;}
.y132{bottom:322.296298px;}
.y95{bottom:323.549995px;}
.y182{bottom:326.268267px;}
.yfc{bottom:332.805326px;}
.y22{bottom:333.687300px;}
.yd0{bottom:336.881104px;}
.y50{bottom:337.127554px;}
.y131{bottom:337.294798px;}
.y181{bottom:339.014517px;}
.yfb{bottom:347.803825px;}
.y21{bottom:348.685800px;}
.y94{bottom:351.100960px;}
.y180{bottom:351.760767px;}
.ycf{bottom:351.881104px;}
.y4f{bottom:352.126053px;}
.y130{bottom:352.299323px;}
.yfa{bottom:362.802325px;}
.y20{bottom:363.687300px;}
.y17f{bottom:364.507018px;}
.y93{bottom:366.099459px;}
.y12f{bottom:367.297822px;}
.y17e{bottom:377.253268px;}
.yf9{bottom:377.800824px;}
.y1f{bottom:378.685800px;}
.yce{bottom:380.228698px;}
.y4e{bottom:380.706773px;}
.y92{bottom:381.097958px;}
.y12e{bottom:382.296321px;}
.y17d{bottom:389.999518px;}
.yf8{bottom:392.799323px;}
.y1e{bottom:393.685800px;}
.ycd{bottom:395.227197px;}
.y4d{bottom:395.705272px;}
.y91{bottom:396.096457px;}
.y12d{bottom:397.294821px;}
.y17c{bottom:402.745768px;}
.yf7{bottom:407.797822px;}
.y1d{bottom:408.690300px;}
.ycc{bottom:410.225696px;}
.y4c{bottom:410.703771px;}
.y90{bottom:411.094957px;}
.y12c{bottom:412.296321px;}
.y17b{bottom:415.492018px;}
.yf6{bottom:422.796321px;}
.y1b2{bottom:423.556827px;}
.y1c{bottom:423.688800px;}
.ycb{bottom:425.224195px;}
.y4b{bottom:425.706773px;}
.y8f{bottom:426.093456px;}
.y12b{bottom:427.294821px;}
.y17a{bottom:428.238268px;}
.yf5{bottom:437.794821px;}
.y1b1{bottom:438.555326px;}
.y1b{bottom:438.687300px;}
.yca{bottom:440.222694px;}
.y4a{bottom:440.705272px;}
.y179{bottom:440.984518px;}
.y8e{bottom:441.091955px;}
.y12a{bottom:442.296321px;}
.yf4{bottom:452.794821px;}
.y1b0{bottom:453.553825px;}
.y1a{bottom:453.685800px;}
.y178{bottom:453.730768px;}
.yc9{bottom:455.221194px;}
.y49{bottom:455.703771px;}
.y8d{bottom:456.091955px;}
.y129{bottom:457.294821px;}
.y177{bottom:466.477018px;}
.yf3{bottom:467.794821px;}
.y1af{bottom:468.552325px;}
.y19{bottom:468.724800px;}
.yc8{bottom:470.219693px;}
.y48{bottom:470.705272px;}
.y8c{bottom:471.090454px;}
.y128{bottom:472.296321px;}
.y176{bottom:479.223269px;}
.yf2{bottom:482.794821px;}
.y1ae{bottom:483.550824px;}
.y18{bottom:483.723300px;}
.yc7{bottom:485.218192px;}
.y47{bottom:485.703771px;}
.y127{bottom:487.294821px;}
.y175{bottom:491.969519px;}
.yf1{bottom:497.796321px;}
.y1ad{bottom:498.549323px;}
.y8b{bottom:498.650538px;}
.yc6{bottom:500.216691px;}
.y46{bottom:500.705272px;}
.y126{bottom:502.294821px;}
.y174{bottom:504.715769px;}
.yf0{bottom:512.794821px;}
.y1ac{bottom:513.547822px;}
.y8a{bottom:513.649037px;}
.yc5{bottom:515.215190px;}
.y45{bottom:515.703771px;}
.y125{bottom:517.303825px;}
.y173{bottom:517.462019px;}
.yef{bottom:527.794821px;}
.y1ab{bottom:528.546321px;}
.y89{bottom:528.647536px;}
.y172{bottom:530.208269px;}
.yc4{bottom:530.213690px;}
.y44{bottom:530.705272px;}
.y17{bottom:530.973300px;}
.y124{bottom:532.302325px;}
.yee{bottom:542.796321px;}
.y171{bottom:542.954519px;}
.y1aa{bottom:543.544821px;}
.y88{bottom:543.646035px;}
.yc3{bottom:545.212189px;}
.y43{bottom:545.703771px;}
.y123{bottom:547.300824px;}
.y16{bottom:547.470300px;}
.y170{bottom:555.700769px;}
.yed{bottom:557.794821px;}
.y1a9{bottom:558.543320px;}
.y87{bottom:558.644535px;}
.y42{bottom:560.703771px;}
.y122{bottom:562.299323px;}
.y15{bottom:563.967300px;}
.y16f{bottom:568.447019px;}
.yec{bottom:572.797822px;}
.yc2{bottom:573.552325px;}
.y86{bottom:573.643034px;}
.y41{bottom:575.702271px;}
.y121{bottom:577.297822px;}
.y1a8{bottom:580.297822px;}
.y14{bottom:580.464300px;}
.y16e{bottom:581.193269px;}
.yeb{bottom:587.796321px;}
.yc1{bottom:588.550824px;}
.y85{bottom:588.641533px;}
.y40{bottom:590.702271px;}
.y120{bottom:592.296321px;}
.y16d{bottom:593.939520px;}
.y1a7{bottom:595.296321px;}
.y13{bottom:596.961300px;}
.yea{bottom:602.794821px;}
.yc0{bottom:603.549323px;}
.y84{bottom:603.640032px;}
.y16c{bottom:606.685770px;}
.y11f{bottom:607.294821px;}
.y12{bottom:613.458300px;}
.y1a6{bottom:617.044821px;}
.ye9{bottom:617.796321px;}
.ybf{bottom:618.547822px;}
.y83{bottom:618.638531px;}
.y3f{bottom:619.279806px;}
.y16b{bottom:619.432020px;}
.y11e{bottom:622.294821px;}
.y11{bottom:629.955300px;}
.y16a{bottom:632.178270px;}
.ye8{bottom:632.794821px;}
.ybe{bottom:633.546321px;}
.y82{bottom:633.637030px;}
.y3e{bottom:634.281307px;}
.y11d{bottom:637.300824px;}
.y1a5{bottom:638.793320px;}
.y169{bottom:644.924520px;}
.y10{bottom:646.452300px;}
.ye7{bottom:647.793320px;}
.ybd{bottom:648.544821px;}
.y81{bottom:648.635530px;}
.y3d{bottom:649.279806px;}
.y11c{bottom:652.299323px;}
.y1a4{bottom:653.793320px;}
.y168{bottom:657.670770px;}
.yf{bottom:662.949300px;}
.ybc{bottom:663.543320px;}
.y80{bottom:663.634029px;}
.y3c{bottom:664.279806px;}
.y11b{bottom:667.297822px;}
.y167{bottom:670.417020px;}
.yb6{bottom:672.781664px;}
.y7f{bottom:678.632528px;}
.y3b{bottom:679.278305px;}
.ye{bottom:679.446300px;}
.y1a3{bottom:680.796321px;}
.y11a{bottom:682.296321px;}
.y166{bottom:683.163270px;}
.yb5{bottom:687.780163px;}
.y7e{bottom:693.631027px;}
.y1a2{bottom:695.794821px;}
.y165{bottom:695.909520px;}
.yd{bottom:695.943300px;}
.y119{bottom:697.294821px;}
.yb4{bottom:702.778663px;}
.y115{bottom:703.869484px;}
.y164{bottom:708.655771px;}
.y1a1{bottom:710.793320px;}
.ye6{bottom:712.023262px;}
.y118{bottom:712.294821px;}
.yc{bottom:712.440300px;}
.yb3{bottom:717.777162px;}
.y114{bottom:718.867983px;}
.y7d{bottom:721.173147px;}
.y163{bottom:721.402021px;}
.y1a0{bottom:725.793320px;}
.ye5{bottom:727.021761px;}
.y117{bottom:727.294821px;}
.yb{bottom:728.937300px;}
.yb2{bottom:732.775661px;}
.y113{bottom:733.866482px;}
.y162{bottom:734.148271px;}
.y66{bottom:734.809989px;}
.y7c{bottom:736.171646px;}
.ye4{bottom:742.020260px;}
.y116{bottom:742.293320px;}
.ya{bottom:745.434300px;}
.y161{bottom:746.894521px;}
.yb1{bottom:747.774160px;}
.y112{bottom:748.864982px;}
.y65{bottom:749.808488px;}
.y19f{bottom:752.803780px;}
.ye3{bottom:757.018760px;}
.y35{bottom:757.139400px;}
.y160{bottom:759.640771px;}
.yb0{bottom:762.774114px;}
.y7b{bottom:763.713720px;}
.y111{bottom:763.863481px;}
.y64{bottom:764.806987px;}
.y19e{bottom:767.802279px;}
.ye2{bottom:772.017259px;}
.y15f{bottom:772.387021px;}
.y8{bottom:775.434300px;}
.yaf{bottom:777.772614px;}
.y34{bottom:778.138650px;}
.y7a{bottom:778.713720px;}
.y110{bottom:778.861980px;}
.y63{bottom:779.805486px;}
.y9{bottom:780.534450px;}
.y19d{bottom:782.800778px;}
.y15e{bottom:785.133271px;}
.ye1{bottom:787.015758px;}
.y7{bottom:793.434300px;}
.y79{bottom:793.712219px;}
.y10f{bottom:793.860479px;}
.y62{bottom:794.803986px;}
.y19c{bottom:797.799277px;}
.y15d{bottom:797.879521px;}
.y33{bottom:799.137900px;}
.ye0{bottom:802.014257px;}
.y145{bottom:804.421947px;}
.y10e{bottom:808.858978px;}
.y15c{bottom:810.625771px;}
.y19b{bottom:812.797776px;}
.ydf{bottom:817.012756px;}
.y144{bottom:819.420446px;}
.y78{bottom:821.258658px;}
.y15b{bottom:823.372022px;}
.y6{bottom:826.422300px;}
.y19a{bottom:827.796276px;}
.y143{bottom:834.418945px;}
.y15a{bottom:836.118272px;}
.y77{bottom:836.257157px;}
.y199{bottom:842.794775px;}
.y159{bottom:848.864522px;}
.y76{bottom:851.255657px;}
.y198{bottom:857.793274px;}
.y158{bottom:861.610772px;}
.y75{bottom:866.254156px;}
.y5{bottom:871.428300px;}
.y197{bottom:872.793274px;}
.y157{bottom:874.357022px;}
.y74{bottom:881.252655px;}
.y156{bottom:887.103272px;}
.y155{bottom:899.849522px;}
.y73{bottom:908.796276px;}
.y154{bottom:912.595772px;}
.y4{bottom:916.434300px;}
.y72{bottom:923.794775px;}
.y153{bottom:925.342022px;}
.y36{bottom:926.409600px;}
.y152{bottom:938.088273px;}
.y71{bottom:938.794775px;}
.y151{bottom:950.834523px;}
.y70{bottom:953.796276px;}
.y38{bottom:957.225000px;}
.y150{bottom:963.580773px;}
.y6f{bottom:968.794775px;}
.y14f{bottom:976.327023px;}
.y37{bottom:978.825000px;}
.y6e{bottom:983.803780px;}
.y14e{bottom:989.073273px;}
.y6d{bottom:998.802279px;}
.y14d{bottom:1001.819523px;}
.y6c{bottom:1013.800778px;}
.y14c{bottom:1014.565773px;}
.y14b{bottom:1027.312023px;}
.y6b{bottom:1028.799277px;}
.y14a{bottom:1040.058273px;}
.y6a{bottom:1043.797776px;}
.y149{bottom:1052.804524px;}
.y69{bottom:1058.796276px;}
.y148{bottom:1065.550774px;}
.y68{bottom:1073.794775px;}
.y147{bottom:1078.297024px;}
.y67{bottom:1088.793274px;}
.y146{bottom:1091.043274px;}
.y39{bottom:1139.852966px;}
.y3{bottom:1140.126900px;}
.hb{height:23.842749px;}
.h7{height:28.050293px;}
.he{height:35.394000px;}
.hd{height:36.681152px;}
.h8{height:38.838867px;}
.hc{height:41.158749px;}
.h2{height:43.140000px;}
.h4{height:44.233154px;}
.h18{height:44.505000px;}
.h17{height:45.090000px;}
.h3{height:45.744000px;}
.h16{height:46.080000px;}
.h11{height:47.469727px;}
.h6{height:48.450893px;}
.h10{height:51.264000px;}
.h9{height:51.840000px;}
.ha{height:53.406000px;}
.h15{height:54.101997px;}
.h13{height:54.108000px;}
.h12{height:55.296000px;}
.h14{height:57.600000px;}
.hf{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:14.081550px;}
.x2{left:61.191450px;}
.x9{left:69.262500px;}
.x8{left:140.952750px;}
.x4{left:233.456400px;}
.x6{left:251.450250px;}
.xb{left:300.594589px;}
.x3{left:584.586600px;}
.x5{left:736.061700px;}
.xa{left:824.207428px;}
.x1{left:825.232800px;}
@media print{
.v3{vertical-align:-16.320000pt;}
.v4{vertical-align:-15.413333pt;}
.v5{vertical-align:-9.605434pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.176000pt;}
.v1{vertical-align:18.133867pt;}
.lsa0{letter-spacing:-2.840000pt;}
.ls9c{letter-spacing:-1.200000pt;}
.ls95{letter-spacing:-1.160000pt;}
.ls58{letter-spacing:-1.120000pt;}
.ls3d{letter-spacing:-1.056000pt;}
.ls59{letter-spacing:-1.008000pt;}
.ls5b{letter-spacing:-0.960000pt;}
.ls64{letter-spacing:-0.912000pt;}
.ls5a{letter-spacing:-0.873600pt;}
.ls5e{letter-spacing:-0.864000pt;}
.lsa5{letter-spacing:-0.840000pt;}
.ls71{letter-spacing:-0.768000pt;}
.ls9f{letter-spacing:-0.760000pt;}
.lsa2{letter-spacing:-0.720000pt;}
.ls86{letter-spacing:-0.680000pt;}
.ls9a{letter-spacing:-0.640000pt;}
.ls81{letter-spacing:-0.624000pt;}
.ls9d{letter-spacing:-0.600000pt;}
.ls6f{letter-spacing:-0.576000pt;}
.lsa4{letter-spacing:-0.560000pt;}
.ls7f{letter-spacing:-0.528000pt;}
.lsa3{letter-spacing:-0.520000pt;}
.ls1b{letter-spacing:-0.480000pt;}
.ls88{letter-spacing:-0.440000pt;}
.ls63{letter-spacing:-0.426667pt;}
.ls93{letter-spacing:-0.400000pt;}
.ls21{letter-spacing:-0.384000pt;}
.ls87{letter-spacing:-0.320000pt;}
.ls80{letter-spacing:-0.288000pt;}
.ls98{letter-spacing:-0.280000pt;}
.ls70{letter-spacing:-0.266667pt;}
.ls22{letter-spacing:-0.240000pt;}
.ls99{letter-spacing:-0.200000pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls5c{letter-spacing:-0.160000pt;}
.ls23{letter-spacing:-0.156000pt;}
.ls1c{letter-spacing:-0.144000pt;}
.ls24{letter-spacing:-0.136000pt;}
.ls7d{letter-spacing:-0.124800pt;}
.ls9e{letter-spacing:-0.120000pt;}
.ls19{letter-spacing:-0.096000pt;}
.ls56{letter-spacing:-0.093600pt;}
.lsa1{letter-spacing:-0.080000pt;}
.ls1d{letter-spacing:-0.048000pt;}
.ls9b{letter-spacing:-0.040000pt;}
.ls18{letter-spacing:0.000000pt;}
.ls60{letter-spacing:0.000075pt;}
.ls2{letter-spacing:0.011733pt;}
.ls3{letter-spacing:0.012267pt;}
.ls29{letter-spacing:0.031199pt;}
.ls84{letter-spacing:0.031200pt;}
.ls6c{letter-spacing:0.033602pt;}
.ls8c{letter-spacing:0.040000pt;}
.ls77{letter-spacing:0.042067pt;}
.ls83{letter-spacing:0.047999pt;}
.ls2a{letter-spacing:0.048000pt;}
.ls12{letter-spacing:0.054800pt;}
.ls7b{letter-spacing:0.062398pt;}
.ls8{letter-spacing:0.062400pt;}
.ls9{letter-spacing:0.067200pt;}
.lsa7{letter-spacing:0.080000pt;}
.ls30{letter-spacing:0.080791pt;}
.lsc{letter-spacing:0.081600pt;}
.ls11{letter-spacing:0.090667pt;}
.ls2f{letter-spacing:0.091746pt;}
.lsf{letter-spacing:0.093600pt;}
.lsa{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.105067pt;}
.ls2b{letter-spacing:0.106667pt;}
.ls8e{letter-spacing:0.120000pt;}
.ls6d{letter-spacing:0.124798pt;}
.ls2e{letter-spacing:0.124800pt;}
.ls78{letter-spacing:0.129603pt;}
.ls6e{letter-spacing:0.139215pt;}
.lsb{letter-spacing:0.144000pt;}
.ls36{letter-spacing:0.144001pt;}
.ls65{letter-spacing:0.144018pt;}
.ls73{letter-spacing:0.156000pt;}
.ls97{letter-spacing:0.160000pt;}
.ls3e{letter-spacing:0.182854pt;}
.ls7a{letter-spacing:0.187199pt;}
.ls20{letter-spacing:0.187200pt;}
.ls7{letter-spacing:0.192000pt;}
.ls91{letter-spacing:0.200000pt;}
.ls33{letter-spacing:0.200783pt;}
.ls3c{letter-spacing:0.213333pt;}
.ls32{letter-spacing:0.218401pt;}
.ls76{letter-spacing:0.235192pt;}
.ls46{letter-spacing:0.235208pt;}
.ls4e{letter-spacing:0.239999pt;}
.ls35{letter-spacing:0.240000pt;}
.ls2d{letter-spacing:0.245354pt;}
.ls79{letter-spacing:0.254371pt;}
.ls6b{letter-spacing:0.259255pt;}
.ls57{letter-spacing:0.266667pt;}
.ls5d{letter-spacing:0.280800pt;}
.ls1f{letter-spacing:0.288000pt;}
.ls6a{letter-spacing:0.311999pt;}
.ls85{letter-spacing:0.312000pt;}
.ls66{letter-spacing:0.320000pt;}
.ls69{letter-spacing:0.327600pt;}
.ls48{letter-spacing:0.335999pt;}
.ls34{letter-spacing:0.336000pt;}
.ls49{letter-spacing:0.336001pt;}
.ls41{letter-spacing:0.338128pt;}
.ls72{letter-spacing:0.343200pt;}
.ls74{letter-spacing:0.358801pt;}
.ls67{letter-spacing:0.373334pt;}
.ls7e{letter-spacing:0.374400pt;}
.ls3b{letter-spacing:0.382561pt;}
.ls2c{letter-spacing:0.384000pt;}
.ls89{letter-spacing:0.400000pt;}
.ls3a{letter-spacing:0.405600pt;}
.ls5{letter-spacing:0.416533pt;}
.ls75{letter-spacing:0.417591pt;}
.ls37{letter-spacing:0.426667pt;}
.ls31{letter-spacing:0.431998pt;}
.ls38{letter-spacing:0.432000pt;}
.ls92{letter-spacing:0.440000pt;}
.lsd{letter-spacing:0.446400pt;}
.ls39{letter-spacing:0.480000pt;}
.ls55{letter-spacing:0.486978pt;}
.ls54{letter-spacing:0.487466pt;}
.ls43{letter-spacing:0.489563pt;}
.ls4a{letter-spacing:0.517337pt;}
.lsa8{letter-spacing:0.520000pt;}
.ls4f{letter-spacing:0.527999pt;}
.ls3f{letter-spacing:0.528000pt;}
.ls5f{letter-spacing:0.528003pt;}
.ls28{letter-spacing:0.530400pt;}
.ls4b{letter-spacing:0.533332pt;}
.ls8d{letter-spacing:0.560000pt;}
.ls8b{letter-spacing:0.560030pt;}
.ls53{letter-spacing:0.561600pt;}
.ls50{letter-spacing:0.571194pt;}
.lse{letter-spacing:0.576000pt;}
.ls40{letter-spacing:0.576001pt;}
.ls7c{letter-spacing:0.578534pt;}
.ls4c{letter-spacing:0.595182pt;}
.ls61{letter-spacing:0.600000pt;}
.ls6{letter-spacing:0.624000pt;}
.ls8a{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.646267pt;}
.ls82{letter-spacing:0.667184pt;}
.ls62{letter-spacing:0.672000pt;}
.ls4d{letter-spacing:0.672005pt;}
.ls47{letter-spacing:0.691233pt;}
.ls68{letter-spacing:0.693333pt;}
.ls42{letter-spacing:0.719999pt;}
.ls1e{letter-spacing:0.720000pt;}
.ls51{letter-spacing:0.768000pt;}
.ls44{letter-spacing:0.796873pt;}
.ls27{letter-spacing:0.816000pt;}
.ls45{letter-spacing:0.853333pt;}
.ls52{letter-spacing:0.864000pt;}
.ls16{letter-spacing:0.877733pt;}
.ls17{letter-spacing:0.906667pt;}
.ls94{letter-spacing:0.920000pt;}
.ls90{letter-spacing:0.960000pt;}
.ls13{letter-spacing:0.997333pt;}
.ls96{letter-spacing:1.000000pt;}
.ls4{letter-spacing:1.056000pt;}
.ls26{letter-spacing:1.104000pt;}
.lsa6{letter-spacing:1.200000pt;}
.ls8f{letter-spacing:1.299956pt;}
.ls15{letter-spacing:1.360000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls25{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ws2{word-spacing:-13.393333pt;}
.ws25{word-spacing:-13.066667pt;}
.ws43{word-spacing:-12.085333pt;}
.ws4{word-spacing:-12.000000pt;}
.ws72{word-spacing:-11.712000pt;}
.ws44{word-spacing:-11.413333pt;}
.ws48{word-spacing:-11.232000pt;}
.ws7c{word-spacing:-11.184000pt;}
.ws63{word-spacing:-11.136000pt;}
.ws1{word-spacing:-11.093333pt;}
.ws6{word-spacing:-11.040000pt;}
.ws3f{word-spacing:-10.944000pt;}
.ws40{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws46{word-spacing:-10.800000pt;}
.ws70{word-spacing:-10.752000pt;}
.ws9{word-spacing:-10.656000pt;}
.ws47{word-spacing:-10.032000pt;}
.wsa6{word-spacing:-9.160000pt;}
.ws86{word-spacing:-9.080000pt;}
.wsc{word-spacing:-9.066667pt;}
.ws9d{word-spacing:-9.000000pt;}
.wsa7{word-spacing:-8.920000pt;}
.ws84{word-spacing:-8.880000pt;}
.wsae{word-spacing:-8.800000pt;}
.ws82{word-spacing:-8.760000pt;}
.ws9b{word-spacing:-8.640000pt;}
.ws95{word-spacing:-8.600000pt;}
.wsa2{word-spacing:-8.560000pt;}
.ws85{word-spacing:-8.520000pt;}
.ws81{word-spacing:-8.480000pt;}
.ws89{word-spacing:-8.440000pt;}
.ws88{word-spacing:-8.400000pt;}
.ws8a{word-spacing:-8.320000pt;}
.ws83{word-spacing:-8.000000pt;}
.ws87{word-spacing:-7.960000pt;}
.ws29{word-spacing:-7.800000pt;}
.ws26{word-spacing:-7.612800pt;}
.ws62{word-spacing:-7.488000pt;}
.ws6f{word-spacing:-7.456800pt;}
.ws61{word-spacing:-7.425600pt;}
.ws7b{word-spacing:-7.394400pt;}
.ws45{word-spacing:-7.363200pt;}
.ws28{word-spacing:-7.300800pt;}
.ws8{word-spacing:-7.269600pt;}
.ws64{word-spacing:-7.238400pt;}
.ws2a{word-spacing:-7.207200pt;}
.ws7{word-spacing:-7.176000pt;}
.ws71{word-spacing:-7.144800pt;}
.ws3{word-spacing:-7.141333pt;}
.ws27{word-spacing:-7.113600pt;}
.ws5{word-spacing:-7.082400pt;}
.ws3e{word-spacing:-6.988800pt;}
.ws6e{word-spacing:-6.957600pt;}
.wsa{word-spacing:-6.926400pt;}
.ws41{word-spacing:-6.208800pt;}
.wsb{word-spacing:-5.893333pt;}
.ws4a{word-spacing:-4.992000pt;}
.ws31{word-spacing:-4.896000pt;}
.ws1a{word-spacing:-2.112000pt;}
.ws1b{word-spacing:-1.776000pt;}
.wsb4{word-spacing:-1.728000pt;}
.ws30{word-spacing:-1.680000pt;}
.ws11{word-spacing:-1.632000pt;}
.ws56{word-spacing:-1.584000pt;}
.ws6b{word-spacing:-1.536000pt;}
.ws94{word-spacing:-1.440000pt;}
.ws97{word-spacing:-1.400000pt;}
.ws54{word-spacing:-1.392000pt;}
.ws21{word-spacing:-1.360000pt;}
.ws12{word-spacing:-1.344000pt;}
.ws49{word-spacing:-1.296000pt;}
.ws55{word-spacing:-1.248000pt;}
.ws74{word-spacing:-1.200000pt;}
.ws57{word-spacing:-1.152000pt;}
.ws24{word-spacing:-1.133333pt;}
.ws17{word-spacing:-1.104000pt;}
.ws3d{word-spacing:-1.056000pt;}
.ws52{word-spacing:-1.008000pt;}
.ws8c{word-spacing:-1.000000pt;}
.ws1f{word-spacing:-0.997333pt;}
.ws73{word-spacing:-0.960000pt;}
.ws7e{word-spacing:-0.920000pt;}
.ws4e{word-spacing:-0.912000pt;}
.ws22{word-spacing:-0.906667pt;}
.wsb1{word-spacing:-0.880000pt;}
.ws5a{word-spacing:-0.864000pt;}
.wse{word-spacing:-0.853333pt;}
.ws9f{word-spacing:-0.840000pt;}
.ws15{word-spacing:-0.816000pt;}
.ws5d{word-spacing:-0.768000pt;}
.ws80{word-spacing:-0.760000pt;}
.ws37{word-spacing:-0.720000pt;}
.ws68{word-spacing:-0.693333pt;}
.ws65{word-spacing:-0.672000pt;}
.ws93{word-spacing:-0.640000pt;}
.ws1c{word-spacing:-0.634667pt;}
.ws5f{word-spacing:-0.624000pt;}
.ws13{word-spacing:-0.576000pt;}
.ws8d{word-spacing:-0.560000pt;}
.ws2c{word-spacing:-0.530400pt;}
.ws14{word-spacing:-0.528000pt;}
.wsa1{word-spacing:-0.520000pt;}
.ws38{word-spacing:-0.480000pt;}
.ws1e{word-spacing:-0.453333pt;}
.wsa8{word-spacing:-0.440000pt;}
.ws53{word-spacing:-0.432000pt;}
.ws35{word-spacing:-0.426667pt;}
.wsa0{word-spacing:-0.400000pt;}
.ws16{word-spacing:-0.384000pt;}
.ws6a{word-spacing:-0.343200pt;}
.ws34{word-spacing:-0.336000pt;}
.ws67{word-spacing:-0.320000pt;}
.ws7d{word-spacing:-0.312000pt;}
.ws32{word-spacing:-0.288000pt;}
.ws4c{word-spacing:-0.266667pt;}
.ws36{word-spacing:-0.240000pt;}
.ws3c{word-spacing:-0.213333pt;}
.ws33{word-spacing:-0.192000pt;}
.ws75{word-spacing:-0.187200pt;}
.wsaf{word-spacing:-0.160000pt;}
.ws6d{word-spacing:-0.156000pt;}
.ws2f{word-spacing:-0.144000pt;}
.ws96{word-spacing:-0.120000pt;}
.ws2e{word-spacing:-0.106667pt;}
.ws76{word-spacing:-0.096000pt;}
.ws1d{word-spacing:-0.090667pt;}
.wsa4{word-spacing:-0.080000pt;}
.ws77{word-spacing:-0.062400pt;}
.ws42{word-spacing:-0.048000pt;}
.ws9c{word-spacing:-0.040000pt;}
.ws2d{word-spacing:-0.031200pt;}
.wsd{word-spacing:0.000000pt;}
.ws9e{word-spacing:0.040000pt;}
.ws50{word-spacing:0.048000pt;}
.ws9a{word-spacing:0.080000pt;}
.ws5b{word-spacing:0.096000pt;}
.ws8b{word-spacing:0.120000pt;}
.ws23{word-spacing:0.136000pt;}
.ws3a{word-spacing:0.144000pt;}
.ws51{word-spacing:0.160000pt;}
.ws4b{word-spacing:0.192000pt;}
.ws58{word-spacing:0.240000pt;}
.ws66{word-spacing:0.266667pt;}
.wsa9{word-spacing:0.280000pt;}
.ws39{word-spacing:0.288000pt;}
.ws7f{word-spacing:0.320000pt;}
.ws18{word-spacing:0.336000pt;}
.wsac{word-spacing:0.360000pt;}
.ws60{word-spacing:0.384000pt;}
.wsb3{word-spacing:0.400000pt;}
.ws5e{word-spacing:0.426667pt;}
.ws59{word-spacing:0.432000pt;}
.wsad{word-spacing:0.480000pt;}
.ws99{word-spacing:0.520000pt;}
.ws10{word-spacing:0.528000pt;}
.ws91{word-spacing:0.560000pt;}
.ws69{word-spacing:0.624000pt;}
.ws98{word-spacing:0.640000pt;}
.ws19{word-spacing:0.672000pt;}
.wsb0{word-spacing:0.680000pt;}
.ws78{word-spacing:0.720000pt;}
.ws3b{word-spacing:0.768000pt;}
.ws5c{word-spacing:0.816000pt;}
.wsb2{word-spacing:0.840000pt;}
.ws6c{word-spacing:0.864000pt;}
.wsaa{word-spacing:0.880000pt;}
.ws2b{word-spacing:0.960000pt;}
.ws92{word-spacing:1.000000pt;}
.ws79{word-spacing:1.008000pt;}
.ws4d{word-spacing:1.056000pt;}
.wsa5{word-spacing:1.080000pt;}
.wsb6{word-spacing:1.104000pt;}
.ws4f{word-spacing:1.120000pt;}
.ws7a{word-spacing:1.200000pt;}
.ws8e{word-spacing:1.360000pt;}
.wsf{word-spacing:1.488000pt;}
.wsab{word-spacing:1.520000pt;}
.ws20{word-spacing:1.632000pt;}
.ws90{word-spacing:1.640000pt;}
.ws8f{word-spacing:1.800000pt;}
.wsb5{word-spacing:1.968000pt;}
.wsa3{word-spacing:2.840000pt;}
._8{margin-left:-10.223860pt;}
._15{margin-left:-8.600000pt;}
._14{margin-left:-7.200000pt;}
._a{margin-left:-5.574933pt;}
._5{margin-left:-4.627200pt;}
._2{margin-left:-3.716267pt;}
._1{margin-left:-2.773333pt;}
._0{margin-left:-1.578667pt;}
._4{width:0.910933pt;}
._6{width:2.665600pt;}
._7{width:3.907733pt;}
._d{width:5.055466pt;}
._11{width:5.960000pt;}
._13{width:7.565869pt;}
._10{width:8.840000pt;}
._16{width:10.336006pt;}
._e{width:11.520000pt;}
._f{width:12.679999pt;}
._c{width:13.583993pt;}
._17{width:14.920002pt;}
._12{width:16.120002pt;}
._3{width:38.337600pt;}
._9{width:41.771768pt;}
._b{width:43.228811pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.200000pt;}
.fs4{font-size:34.666667pt;}
.fsc{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;}
.fsb{font-size:58.666667pt;}
.fsa{font-size:64.000000pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175867pt;}
.y3a{bottom:24.175868pt;}
.y32{bottom:60.718133pt;}
.y61{bottom:60.934668pt;}
.yae{bottom:60.937331pt;}
.ya6{bottom:60.948004pt;}
.y196{bottom:63.416235pt;}
.y142{bottom:65.159597pt;}
.y10d{bottom:69.150936pt;}
.y60{bottom:74.266668pt;}
.yad{bottom:74.269331pt;}
.ya5{bottom:74.280003pt;}
.y195{bottom:74.746236pt;}
.y141{bottom:76.489597pt;}
.y31{bottom:77.899467pt;}
.y10c{bottom:82.486933pt;}
.y194{bottom:86.076236pt;}
.y30{bottom:87.384800pt;}
.yac{bottom:87.601330pt;}
.ya4{bottom:87.612002pt;}
.y140{bottom:87.819597pt;}
.y10b{bottom:95.818932pt;}
.y193{bottom:97.406236pt;}
.y13f{bottom:99.149597pt;}
.y5f{bottom:99.672939pt;}
.y2f{bottom:100.718133pt;}
.yab{bottom:100.933329pt;}
.yde{bottom:100.934663pt;}
.ya3{bottom:100.944002pt;}
.y192{bottom:108.736236pt;}
.y10a{bottom:109.150931pt;}
.y13e{bottom:110.482930pt;}
.y5e{bottom:113.004938pt;}
.y2e{bottom:114.051467pt;}
.ydd{bottom:114.266663pt;}
.ya2{bottom:114.276001pt;}
.y191{bottom:120.066236pt;}
.y109{bottom:122.485599pt;}
.y5d{bottom:126.336937pt;}
.y2d{bottom:127.384800pt;}
.ydc{bottom:127.599996pt;}
.ya1{bottom:127.608000pt;}
.yaa{bottom:129.804272pt;}
.y190{bottom:131.396236pt;}
.y108{bottom:135.817598pt;}
.y5c{bottom:139.668937pt;}
.y13d{bottom:139.829604pt;}
.ya0{bottom:140.940000pt;}
.y18f{bottom:142.726236pt;}
.ya9{bottom:143.137605pt;}
.y2c{bottom:144.566133pt;}
.y107{bottom:149.153599pt;}
.ydb{bottom:152.796544pt;}
.y5b{bottom:153.004938pt;}
.y13c{bottom:153.161604pt;}
.y18e{bottom:154.056236pt;}
.y9f{bottom:154.271999pt;}
.ya8{bottom:156.470939pt;}
.y106{bottom:162.485599pt;}
.y18d{bottom:165.386236pt;}
.yda{bottom:166.128543pt;}
.y5a{bottom:166.336937pt;}
.y13b{bottom:166.493603pt;}
.y9e{bottom:167.603998pt;}
.ya7{bottom:169.802938pt;}
.y105{bottom:175.817598pt;}
.y2b{bottom:176.612267pt;}
.y18c{bottom:176.716236pt;}
.yd9{bottom:179.460542pt;}
.y59{bottom:179.668937pt;}
.y13a{bottom:179.825602pt;}
.y9d{bottom:180.935997pt;}
.y18b{bottom:188.046237pt;}
.y104{bottom:189.154933pt;}
.y2a{bottom:189.944267pt;}
.yd8{bottom:192.792541pt;}
.y58{bottom:193.007606pt;}
.y139{bottom:193.157601pt;}
.y9c{bottom:194.267997pt;}
.y18a{bottom:199.376237pt;}
.y103{bottom:202.486933pt;}
.y29{bottom:203.276267pt;}
.yd7{bottom:206.124541pt;}
.y57{bottom:206.339605pt;}
.y138{bottom:206.489601pt;}
.y9b{bottom:207.603998pt;}
.y189{bottom:210.706237pt;}
.y102{bottom:215.818932pt;}
.y28{bottom:216.609600pt;}
.ybb{bottom:217.964402pt;}
.yd6{bottom:219.456540pt;}
.y56{bottom:219.671605pt;}
.y137{bottom:219.821600pt;}
.y9a{bottom:220.935997pt;}
.y188{bottom:222.036237pt;}
.y101{bottom:229.150931pt;}
.y27{bottom:229.944267pt;}
.yba{bottom:231.296401pt;}
.yd5{bottom:232.788539pt;}
.y55{bottom:233.003604pt;}
.y136{bottom:233.153599pt;}
.y187{bottom:233.366237pt;}
.y99{bottom:234.267997pt;}
.y100{bottom:242.488267pt;}
.y26{bottom:243.276267pt;}
.yb9{bottom:244.628401pt;}
.y186{bottom:244.696237pt;}
.yd4{bottom:246.120539pt;}
.y54{bottom:246.335603pt;}
.y135{bottom:246.485599pt;}
.y98{bottom:247.602664pt;}
.yff{bottom:255.820266pt;}
.y185{bottom:256.026237pt;}
.y25{bottom:256.614933pt;}
.yb8{bottom:257.960400pt;}
.yd3{bottom:259.452538pt;}
.y53{bottom:259.671605pt;}
.y134{bottom:259.817598pt;}
.y97{bottom:260.934663pt;}
.y184{bottom:267.356237pt;}
.yfe{bottom:269.152265pt;}
.y24{bottom:269.946933pt;}
.yb7{bottom:271.292399pt;}
.yd2{bottom:272.784537pt;}
.y52{bottom:273.003604pt;}
.y133{bottom:273.150931pt;}
.y96{bottom:274.266663pt;}
.y183{bottom:278.686237pt;}
.yfd{bottom:282.484265pt;}
.y23{bottom:283.278933pt;}
.yd1{bottom:286.117871pt;}
.y51{bottom:286.335603pt;}
.y132{bottom:286.485599pt;}
.y95{bottom:287.599996pt;}
.y182{bottom:290.016237pt;}
.yfc{bottom:295.826957pt;}
.y22{bottom:296.610933pt;}
.yd0{bottom:299.449870pt;}
.y50{bottom:299.668937pt;}
.y131{bottom:299.817598pt;}
.y181{bottom:301.346238pt;}
.yfb{bottom:309.158956pt;}
.y21{bottom:309.942933pt;}
.y94{bottom:312.089742pt;}
.y180{bottom:312.676238pt;}
.ycf{bottom:312.783203pt;}
.y4f{bottom:313.000936pt;}
.y130{bottom:313.154954pt;}
.yfa{bottom:322.490955pt;}
.y20{bottom:323.277600pt;}
.y17f{bottom:324.006238pt;}
.y93{bottom:325.421741pt;}
.y12f{bottom:326.486953pt;}
.y17e{bottom:335.336238pt;}
.yf9{bottom:335.822954pt;}
.y1f{bottom:336.609600pt;}
.yce{bottom:337.981065pt;}
.y4e{bottom:338.406020pt;}
.y92{bottom:338.753741pt;}
.y12e{bottom:339.818952pt;}
.y17d{bottom:346.666238pt;}
.yf8{bottom:349.154954pt;}
.y1e{bottom:349.942933pt;}
.ycd{bottom:351.313064pt;}
.y4d{bottom:351.738020pt;}
.y91{bottom:352.085740pt;}
.y12d{bottom:353.150952pt;}
.y17c{bottom:357.996238pt;}
.yf7{bottom:362.486953pt;}
.y1d{bottom:363.280267pt;}
.ycc{bottom:364.645063pt;}
.y4c{bottom:365.070019pt;}
.y90{bottom:365.417739pt;}
.y12c{bottom:366.485619pt;}
.y17b{bottom:369.326238pt;}
.yf6{bottom:375.818952pt;}
.y1b2{bottom:376.494957pt;}
.y1c{bottom:376.612267pt;}
.ycb{bottom:377.977062pt;}
.y4b{bottom:378.406020pt;}
.y8f{bottom:378.749738pt;}
.y12b{bottom:379.817618pt;}
.y17a{bottom:380.656238pt;}
.yf5{bottom:389.150952pt;}
.y1b1{bottom:389.826957pt;}
.y1b{bottom:389.944267pt;}
.yca{bottom:391.309062pt;}
.y4a{bottom:391.738020pt;}
.y179{bottom:391.986238pt;}
.y8e{bottom:392.081738pt;}
.y12a{bottom:393.152286pt;}
.yf4{bottom:402.484285pt;}
.y1b0{bottom:403.158956pt;}
.y1a{bottom:403.276267pt;}
.y178{bottom:403.316238pt;}
.yc9{bottom:404.641061pt;}
.y49{bottom:405.070019pt;}
.y8d{bottom:405.415071pt;}
.y129{bottom:406.484285pt;}
.y177{bottom:414.646239pt;}
.yf3{bottom:415.817618pt;}
.y1af{bottom:416.490955pt;}
.y19{bottom:416.644267pt;}
.yc8{bottom:417.973060pt;}
.y48{bottom:418.404686pt;}
.y8c{bottom:418.747070pt;}
.y128{bottom:419.818952pt;}
.y176{bottom:425.976239pt;}
.yf2{bottom:429.150952pt;}
.y1ae{bottom:429.822954pt;}
.y18{bottom:429.976267pt;}
.yc7{bottom:431.305060pt;}
.y47{bottom:431.736686pt;}
.y127{bottom:433.150952pt;}
.y175{bottom:437.306239pt;}
.yf1{bottom:442.485619pt;}
.y1ad{bottom:443.154954pt;}
.y8b{bottom:443.244922pt;}
.yc6{bottom:444.637059pt;}
.y46{bottom:445.071353pt;}
.y126{bottom:446.484285pt;}
.y174{bottom:448.636239pt;}
.yf0{bottom:455.817618pt;}
.y1ac{bottom:456.486953pt;}
.y8a{bottom:456.576922pt;}
.yc5{bottom:457.969058pt;}
.y45{bottom:458.403352pt;}
.y125{bottom:459.825623pt;}
.y173{bottom:459.966239pt;}
.yef{bottom:469.150952pt;}
.y1ab{bottom:469.818952pt;}
.y89{bottom:469.908921pt;}
.y172{bottom:471.296239pt;}
.yc4{bottom:471.301057pt;}
.y44{bottom:471.738020pt;}
.y17{bottom:471.976267pt;}
.y124{bottom:473.157622pt;}
.yee{bottom:482.485619pt;}
.y171{bottom:482.626239pt;}
.y1aa{bottom:483.150952pt;}
.y88{bottom:483.240920pt;}
.yc3{bottom:484.633057pt;}
.y43{bottom:485.070019pt;}
.y123{bottom:486.489621pt;}
.y16{bottom:486.640267pt;}
.y170{bottom:493.956239pt;}
.yed{bottom:495.817618pt;}
.y1a9{bottom:496.482951pt;}
.y87{bottom:496.572920pt;}
.y42{bottom:498.403352pt;}
.y122{bottom:499.821620pt;}
.y15{bottom:501.304267pt;}
.y16f{bottom:505.286239pt;}
.yec{bottom:509.153620pt;}
.yc2{bottom:509.824288pt;}
.y86{bottom:509.904919pt;}
.y41{bottom:511.735352pt;}
.y121{bottom:513.153620pt;}
.y1a8{bottom:515.820286pt;}
.y14{bottom:515.968267pt;}
.y16e{bottom:516.616239pt;}
.yeb{bottom:522.485619pt;}
.yc1{bottom:523.156288pt;}
.y85{bottom:523.236918pt;}
.y40{bottom:525.068685pt;}
.y120{bottom:526.485619pt;}
.y16d{bottom:527.946240pt;}
.y1a7{bottom:529.152286pt;}
.y13{bottom:530.632267pt;}
.yea{bottom:535.817618pt;}
.yc0{bottom:536.488287pt;}
.y84{bottom:536.568917pt;}
.y16c{bottom:539.276240pt;}
.y11f{bottom:539.817618pt;}
.y12{bottom:545.296267pt;}
.y1a6{bottom:548.484285pt;}
.ye9{bottom:549.152286pt;}
.ybf{bottom:549.820286pt;}
.y83{bottom:549.900917pt;}
.y3f{bottom:550.470939pt;}
.y16b{bottom:550.606240pt;}
.y11e{bottom:553.150952pt;}
.y11{bottom:559.960267pt;}
.y16a{bottom:561.936240pt;}
.ye8{bottom:562.484285pt;}
.ybe{bottom:563.152286pt;}
.y82{bottom:563.232916pt;}
.y3e{bottom:563.805606pt;}
.y11d{bottom:566.489621pt;}
.y1a5{bottom:567.816284pt;}
.y169{bottom:573.266240pt;}
.y10{bottom:574.624267pt;}
.ye7{bottom:575.816284pt;}
.ybd{bottom:576.484285pt;}
.y81{bottom:576.564915pt;}
.y3d{bottom:577.137605pt;}
.y11c{bottom:579.821620pt;}
.y1a4{bottom:581.149618pt;}
.y168{bottom:584.596240pt;}
.yf{bottom:589.288267pt;}
.ybc{bottom:589.816284pt;}
.y80{bottom:589.896915pt;}
.y3c{bottom:590.470939pt;}
.y11b{bottom:593.153620pt;}
.y167{bottom:595.926240pt;}
.yb6{bottom:598.028146pt;}
.y7f{bottom:603.228914pt;}
.y3b{bottom:603.802938pt;}
.ye{bottom:603.952267pt;}
.y1a3{bottom:605.152286pt;}
.y11a{bottom:606.485619pt;}
.y166{bottom:607.256240pt;}
.yb5{bottom:611.360145pt;}
.y7e{bottom:616.560913pt;}
.y1a2{bottom:618.484285pt;}
.y165{bottom:618.586240pt;}
.yd{bottom:618.616267pt;}
.y119{bottom:619.817618pt;}
.yb4{bottom:624.692144pt;}
.y115{bottom:625.661763pt;}
.y164{bottom:629.916240pt;}
.y1a1{bottom:631.816284pt;}
.ye6{bottom:632.909566pt;}
.y118{bottom:633.150952pt;}
.yc{bottom:633.280267pt;}
.yb3{bottom:638.024144pt;}
.y114{bottom:638.993763pt;}
.y7d{bottom:641.042797pt;}
.y163{bottom:641.246241pt;}
.y1a0{bottom:645.149618pt;}
.ye5{bottom:646.241566pt;}
.y117{bottom:646.484285pt;}
.yb{bottom:647.944267pt;}
.yb2{bottom:651.356143pt;}
.y113{bottom:652.325762pt;}
.y162{bottom:652.576241pt;}
.y66{bottom:653.164435pt;}
.y7c{bottom:654.374797pt;}
.ye4{bottom:659.573565pt;}
.y116{bottom:659.816284pt;}
.ya{bottom:662.608267pt;}
.y161{bottom:663.906241pt;}
.yb1{bottom:664.688142pt;}
.y112{bottom:665.657761pt;}
.y65{bottom:666.496434pt;}
.y19f{bottom:669.158915pt;}
.ye3{bottom:672.905564pt;}
.y35{bottom:673.012800pt;}
.y160{bottom:675.236241pt;}
.yb0{bottom:678.021435pt;}
.y7b{bottom:678.856640pt;}
.y111{bottom:678.989761pt;}
.y64{bottom:679.828433pt;}
.y19e{bottom:682.490914pt;}
.ye2{bottom:686.237563pt;}
.y15f{bottom:686.566241pt;}
.y8{bottom:689.274933pt;}
.yaf{bottom:691.353434pt;}
.y34{bottom:691.678800pt;}
.y7a{bottom:692.189973pt;}
.y110{bottom:692.321760pt;}
.y63{bottom:693.160432pt;}
.y9{bottom:693.808400pt;}
.y19d{bottom:695.822914pt;}
.y15e{bottom:697.896241pt;}
.ye1{bottom:699.569563pt;}
.y7{bottom:705.274933pt;}
.y79{bottom:705.521973pt;}
.y10f{bottom:705.653759pt;}
.y62{bottom:706.492432pt;}
.y19c{bottom:709.154913pt;}
.y15d{bottom:709.226241pt;}
.y33{bottom:710.344800pt;}
.ye0{bottom:712.901562pt;}
.y145{bottom:715.041731pt;}
.y10e{bottom:718.985758pt;}
.y15c{bottom:720.556241pt;}
.y19b{bottom:722.486912pt;}
.ydf{bottom:726.233561pt;}
.y144{bottom:728.373730pt;}
.y78{bottom:730.007696pt;}
.y15b{bottom:731.886241pt;}
.y6{bottom:734.597600pt;}
.y19a{bottom:735.818912pt;}
.y143{bottom:741.705729pt;}
.y15a{bottom:743.216241pt;}
.y77{bottom:743.339696pt;}
.y199{bottom:749.150911pt;}
.y159{bottom:754.546242pt;}
.y76{bottom:756.671695pt;}
.y198{bottom:762.482910pt;}
.y158{bottom:765.876242pt;}
.y75{bottom:770.003694pt;}
.y5{bottom:774.602933pt;}
.y197{bottom:775.816243pt;}
.y157{bottom:777.206242pt;}
.y74{bottom:783.335693pt;}
.y156{bottom:788.536242pt;}
.y155{bottom:799.866242pt;}
.y73{bottom:807.818912pt;}
.y154{bottom:811.196242pt;}
.y4{bottom:814.608267pt;}
.y72{bottom:821.150911pt;}
.y153{bottom:822.526242pt;}
.y36{bottom:823.475200pt;}
.y152{bottom:833.856242pt;}
.y71{bottom:834.484244pt;}
.y151{bottom:845.186242pt;}
.y70{bottom:847.818912pt;}
.y38{bottom:850.866667pt;}
.y150{bottom:856.516242pt;}
.y6f{bottom:861.150911pt;}
.y14f{bottom:867.846243pt;}
.y37{bottom:870.066667pt;}
.y6e{bottom:874.492249pt;}
.y14e{bottom:879.176243pt;}
.y6d{bottom:887.824248pt;}
.y14d{bottom:890.506243pt;}
.y6c{bottom:901.156247pt;}
.y14c{bottom:901.836243pt;}
.y14b{bottom:913.166243pt;}
.y6b{bottom:914.488246pt;}
.y14a{bottom:924.496243pt;}
.y6a{bottom:927.820246pt;}
.y149{bottom:935.826243pt;}
.y69{bottom:941.152245pt;}
.y148{bottom:947.156243pt;}
.y68{bottom:954.484244pt;}
.y147{bottom:958.486243pt;}
.y67{bottom:967.816243pt;}
.y146{bottom:969.816243pt;}
.y39{bottom:1013.202637pt;}
.y3{bottom:1013.446133pt;}
.hb{height:21.193555pt;}
.h7{height:24.933594pt;}
.he{height:31.461333pt;}
.hd{height:32.605469pt;}
.h8{height:34.523438pt;}
.hc{height:36.585555pt;}
.h2{height:38.346667pt;}
.h4{height:39.318359pt;}
.h18{height:39.560000pt;}
.h17{height:40.080000pt;}
.h3{height:40.661333pt;}
.h16{height:40.960000pt;}
.h11{height:42.195312pt;}
.h6{height:43.067460pt;}
.h10{height:45.568000pt;}
.h9{height:46.080000pt;}
.ha{height:47.472000pt;}
.h15{height:48.090664pt;}
.h13{height:48.096000pt;}
.h12{height:49.152000pt;}
.h14{height:51.200000pt;}
.hf{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:12.516933pt;}
.x2{left:54.392400pt;}
.x9{left:61.566667pt;}
.x8{left:125.291333pt;}
.x4{left:207.516800pt;}
.x6{left:223.511333pt;}
.xb{left:267.195190pt;}
.x3{left:519.632533pt;}
.x5{left:654.277067pt;}
.xa{left:732.628825pt;}
.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; }
  