
    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_7feb3ee186000340f05aef67.woff')format("woff");}.ff1{font-family:ff1;line-height:0.960449;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_689c208ecb13acdb2c748e45.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d8d60695d553011225da2f3f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.941895;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_8b21bb29e1e34014302620ff.woff')format("woff");}.ff4{font-family:ff4;line-height:0.690918;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_f73bc38478f1310494eb5748.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b6ca89c1de629f3df55d30be.woff')format("woff");}.ff6{font-family:ff6;line-height:0.750000;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_2d26b9eaecc8b1e85938e7e9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.762207;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_587b1dde602268e7fe1d8092.woff')format("woff");}.ff8{font-family:ff8;line-height:0.928223;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_c1cb8e17181ca4abfa7bb7cc.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_c9e87069043cb116d91557bd.woff')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_daf63b9b456a76884784ebc2.woff')format("woff");}.ffb{font-family:ffb;line-height:1.575000;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;}
.ma{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.221428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221428,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.221590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221590,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.222972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222972,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.223215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223215,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.223215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223215,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.223957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223957,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.229168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229168,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.236608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236608,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.333325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333325,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.v6{vertical-align:-18.000000px;}
.v3{vertical-align:-12.240000px;}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v2{vertical-align:12.240000px;}
.v5{vertical-align:18.000000px;}
.ls30{letter-spacing:-10.015992px;}
.ls3d{letter-spacing:-3.445416px;}
.ls22{letter-spacing:-1.722240px;}
.ls51{letter-spacing:-1.013040px;}
.ls26{letter-spacing:-0.993600px;}
.ls78{letter-spacing:-0.810000px;}
.ls2c{letter-spacing:-0.702000px;}
.ls76{letter-spacing:-0.675360px;}
.ls4f{letter-spacing:-0.670536px;}
.ls21{letter-spacing:-0.463680px;}
.ls72{letter-spacing:-0.434160px;}
.ls70{letter-spacing:-0.419688px;}
.ls52{letter-spacing:-0.408240px;}
.ls77{letter-spacing:-0.345384px;}
.ls43{letter-spacing:-0.329904px;}
.ls20{letter-spacing:-0.304704px;}
.ls84{letter-spacing:-0.298800px;}
.ls4d{letter-spacing:-0.289440px;}
.ls50{letter-spacing:-0.270144px;}
.ls81{letter-spacing:-0.264960px;}
.ls1e{letter-spacing:-0.252000px;}
.ls4c{letter-spacing:-0.221904px;}
.ls7d{letter-spacing:-0.216000px;}
.ls39{letter-spacing:-0.212976px;}
.ls80{letter-spacing:-0.210600px;}
.ls35{letter-spacing:-0.208800px;}
.ls7c{letter-spacing:-0.199800px;}
.ls6f{letter-spacing:-0.192960px;}
.ls73{letter-spacing:-0.173664px;}
.ls2b{letter-spacing:-0.108000px;}
.ls23{letter-spacing:-0.105984px;}
.ls4e{letter-spacing:-0.091656px;}
.ls4b{letter-spacing:-0.072000px;}
.ls83{letter-spacing:-0.053784px;}
.ls3c{letter-spacing:-0.033696px;}
.ls6d{letter-spacing:-0.016848px;}
.ls27{letter-spacing:-0.016200px;}
.ls3a{letter-spacing:-0.015552px;}
.ls1f{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.ls3e{letter-spacing:0.042120px;}
.ls86{letter-spacing:0.053784px;}
.ls42{letter-spacing:0.056880px;}
.ls15{letter-spacing:0.077098px;}
.ls8{letter-spacing:0.079200px;}
.lsf{letter-spacing:0.090720px;}
.lse{letter-spacing:0.091008px;}
.ls2{letter-spacing:0.108000px;}
.ls58{letter-spacing:0.108378px;}
.ls3b{letter-spacing:0.109512px;}
.ls16{letter-spacing:0.144000px;}
.ls2e{letter-spacing:0.145800px;}
.ls14{letter-spacing:0.154196px;}
.ls4{letter-spacing:0.162000px;}
.ls74{letter-spacing:0.188136px;}
.ls1c{letter-spacing:0.192960px;}
.ls24{letter-spacing:0.198720px;}
.ls18{letter-spacing:0.201600px;}
.ls54{letter-spacing:0.212816px;}
.ls3{letter-spacing:0.216000px;}
.ls33{letter-spacing:0.244800px;}
.ls7{letter-spacing:0.259200px;}
.ls61{letter-spacing:0.262375px;}
.ls25{letter-spacing:0.264960px;}
.ls7b{letter-spacing:0.270000px;}
.ls17{letter-spacing:0.288000px;}
.ls32{letter-spacing:0.298800px;}
.ls82{letter-spacing:0.304704px;}
.ls29{letter-spacing:0.324000px;}
.ls79{letter-spacing:0.329400px;}
.ls38{letter-spacing:0.334080px;}
.ls71{letter-spacing:0.337680px;}
.ls5d{letter-spacing:0.340200px;}
.lsd{letter-spacing:0.341280px;}
.ls85{letter-spacing:0.358560px;}
.ls75{letter-spacing:0.371448px;}
.ls34{letter-spacing:0.384192px;}
.ls13{letter-spacing:0.393331px;}
.ls44{letter-spacing:0.482400px;}
.ls69{letter-spacing:0.486000px;}
.ls46{letter-spacing:0.504000px;}
.ls62{letter-spacing:0.532328px;}
.ls28{letter-spacing:0.540000px;}
.ls60{letter-spacing:0.540036px;}
.ls57{letter-spacing:0.578880px;}
.ls12{letter-spacing:0.583200px;}
.ls9{letter-spacing:0.584640px;}
.ls2a{letter-spacing:0.610200px;}
.ls36{letter-spacing:0.634752px;}
.ls41{letter-spacing:0.635904px;}
.ls48{letter-spacing:0.648000px;}
.ls31{letter-spacing:0.675288px;}
.ls6e{letter-spacing:0.699192px;}
.ls47{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.751680px;}
.ls49{letter-spacing:0.777600px;}
.ls40{letter-spacing:0.794880px;}
.ls7f{letter-spacing:0.810000px;}
.ls19{letter-spacing:0.864000px;}
.ls37{letter-spacing:0.881136px;}
.ls2d{letter-spacing:0.934200px;}
.ls1b{letter-spacing:0.989280px;}
.ls5b{letter-spacing:1.026000px;}
.ls7e{letter-spacing:1.080000px;}
.ls64{letter-spacing:1.080071px;}
.ls11{letter-spacing:1.104087px;}
.ls2f{letter-spacing:1.188000px;}
.ls4a{letter-spacing:1.224000px;}
.ls10{letter-spacing:1.400709px;}
.ls7a{letter-spacing:1.404000px;}
.ls5e{letter-spacing:1.548000px;}
.ls1d{letter-spacing:1.709280px;}
.ls1{letter-spacing:1.745280px;}
.ls6{letter-spacing:2.268000px;}
.ls3f{letter-spacing:2.384640px;}
.ls0{letter-spacing:2.465280px;}
.ls45{letter-spacing:2.556720px;}
.ls59{letter-spacing:12.348000px;}
.ls5f{letter-spacing:17.388000px;}
.ls1a{letter-spacing:25.704000px;}
.lsc{letter-spacing:26.424000px;}
.ls6c{letter-spacing:26.748000px;}
.lsb{letter-spacing:37.905120px;}
.ls5c{letter-spacing:50.508000px;}
.ls5a{letter-spacing:51.948000px;}
.ls67{letter-spacing:53.861300px;}
.ls68{letter-spacing:72.375628px;}
.ls6a{letter-spacing:75.337921px;}
.ls63{letter-spacing:127.918612px;}
.ls6b{letter-spacing:148.654660px;}
.ls66{letter-spacing:254.556616px;}
.ls65{letter-spacing:294.547565px;}
.ls55{letter-spacing:1444.764000px;}
.ls56{letter-spacing:1696.884000px;}
.ls53{letter-spacing:2264.964000px;}
.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;}
}
.ws2c{word-spacing:-72.000000px;}
.ws39{word-spacing:-48.240000px;}
.ws0{word-spacing:-34.776000px;}
.ws14{word-spacing:-33.426720px;}
.ws26{word-spacing:-30.348000px;}
.ws40{word-spacing:-24.117912px;}
.ws20{word-spacing:-23.528232px;}
.ws23{word-spacing:-23.460840px;}
.ws1f{word-spacing:-23.418720px;}
.ws15{word-spacing:-23.410728px;}
.ws3f{word-spacing:-23.401872px;}
.ws21{word-spacing:-23.385024px;}
.ws4a{word-spacing:-23.073336px;}
.ws31{word-spacing:-21.240000px;}
.ws2e{word-spacing:-20.736000px;}
.ws30{word-spacing:-20.664000px;}
.ws2d{word-spacing:-20.599200px;}
.ws19{word-spacing:-20.275200px;}
.ws46{word-spacing:-20.260800px;}
.ws32{word-spacing:-20.232000px;}
.ws2f{word-spacing:-20.217600px;}
.ws18{word-spacing:-20.016000px;}
.ws22{word-spacing:-19.973304px;}
.ws33{word-spacing:-19.944000px;}
.ws25{word-spacing:-19.209600px;}
.ws6{word-spacing:-18.679680px;}
.ws5{word-spacing:-18.613440px;}
.ws24{word-spacing:-18.414720px;}
.ws4{word-spacing:-18.308736px;}
.ws1{word-spacing:-18.110016px;}
.ws2{word-spacing:-17.951040px;}
.ws7{word-spacing:-17.421120px;}
.ws55{word-spacing:-16.971840px;}
.ws17{word-spacing:-16.912080px;}
.ws3{word-spacing:-16.692480px;}
.ws56{word-spacing:-16.667064px;}
.ws16{word-spacing:-16.613280px;}
.ws4e{word-spacing:-16.416000px;}
.ws13{word-spacing:-16.200000px;}
.ws50{word-spacing:-16.092000px;}
.ws4d{word-spacing:-16.038000px;}
.ws10{word-spacing:-15.946200px;}
.ws27{word-spacing:-15.903648px;}
.ws28{word-spacing:-15.869520px;}
.ws52{word-spacing:-15.822000px;}
.ws29{word-spacing:-15.812640px;}
.wsd{word-spacing:-15.622200px;}
.wsb{word-spacing:-15.552000px;}
.ws4f{word-spacing:-15.352200px;}
.ws4c{word-spacing:-15.341400px;}
.wsc{word-spacing:-15.336000px;}
.ws53{word-spacing:-15.282000px;}
.wsa{word-spacing:-15.228000px;}
.wse{word-spacing:-15.174000px;}
.ws11{word-spacing:-15.157800px;}
.ws12{word-spacing:-15.120000px;}
.ws9{word-spacing:-15.012000px;}
.ws8{word-spacing:-14.995800px;}
.wsf{word-spacing:-14.904000px;}
.ws54{word-spacing:-14.801400px;}
.ws51{word-spacing:-14.796000px;}
.ws4b{word-spacing:-14.202000px;}
.ws48{word-spacing:-13.989600px;}
.ws2a{word-spacing:-13.893120px;}
.ws47{word-spacing:-13.782168px;}
.ws43{word-spacing:-13.748400px;}
.ws38{word-spacing:-13.603680px;}
.ws2b{word-spacing:-13.410720px;}
.ws36{word-spacing:-13.319064px;}
.ws45{word-spacing:-13.237056px;}
.ws41{word-spacing:-13.217760px;}
.ws34{word-spacing:-13.188816px;}
.ws3a{word-spacing:-13.140576px;}
.ws35{word-spacing:-13.121280px;}
.ws42{word-spacing:-12.991032px;}
.ws44{word-spacing:-12.976560px;}
.ws37{word-spacing:-12.740184px;}
.ws49{word-spacing:-12.735360px;}
.ws3c{word-spacing:-12.610080px;}
.ws3b{word-spacing:-12.397680px;}
.ws1b{word-spacing:-12.360960px;}
.ws3d{word-spacing:-12.201840px;}
.ws1a{word-spacing:-12.193920px;}
.ws1e{word-spacing:-11.943360px;}
.ws1d{word-spacing:-11.609280px;}
.ws1c{word-spacing:-11.400480px;}
.ws3e{word-spacing:0.000000px;}
._2{margin-left:-14.166000px;}
._0{margin-left:-11.016000px;}
._17{margin-left:-9.543168px;}
._11{margin-left:-8.206004px;}
._15{margin-left:-7.056000px;}
._5{margin-left:-6.036480px;}
._10{margin-left:-4.622908px;}
._6{margin-left:-3.478752px;}
._4{margin-left:-1.987200px;}
._3{width:1.585152px;}
._7{width:2.588400px;}
._1{width:3.600000px;}
._8{width:5.184000px;}
._28{width:6.696000px;}
._18{width:11.801088px;}
._19{width:13.147200px;}
._21{width:51.948000px;}
._12{width:56.337772px;}
._20{width:101.628000px;}
._23{width:111.597518px;}
._d{width:135.120000px;}
._24{width:169.556257px;}
._26{width:184.428000px;}
._29{width:198.000000px;}
._1a{width:212.322000px;}
._e{width:222.965280px;}
._25{width:235.500049px;}
._1f{width:275.784048px;}
._1e{width:314.028000px;}
._22{width:346.654657px;}
._1b{width:404.028000px;}
._14{width:437.191036px;}
._27{width:440.028000px;}
._1c{width:486.108000px;}
._1d{width:496.188000px;}
._9{width:980.386752px;}
._f{width:1253.266752px;}
._13{width:1383.230352px;}
._16{width:2206.644000px;}
._a{width:2656.968000px;}
._b{width:3078.144000px;}
._c{width:3436.704000px;}
.fc5{color:transparent;}
.fc6{color:rgb(0,136,204);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(174,156,149);}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:23.760000px;}
.fs11{font-size:30.240000px;}
.fs7{font-size:41.760000px;}
.fsf{font-size:45.360000px;}
.fsd{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fse{font-size:56.880000px;}
.fs10{font-size:59.759880px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs6{font-size:84.240000px;}
.fsc{font-size:90.000000px;}
.fsb{font-size:108.000000px;}
.fs4{font-size:120.240000px;}
.fs0{font-size:126.000000px;}
.fsa{font-size:156.240000px;}
.y1b{bottom:-22.140000px;}
.y42{bottom:-9.900000px;}
.y1a{bottom:-1.980000px;}
.y96{bottom:-1.080000px;}
.y0{bottom:0.000000px;}
.ya{bottom:2.700000px;}
.y5c{bottom:3.060000px;}
.yd{bottom:3.420000px;}
.y6b{bottom:3.600000px;}
.y58{bottom:3.780000px;}
.y4{bottom:4.140000px;}
.y31{bottom:4.320000px;}
.y69{bottom:5.220000px;}
.y1f{bottom:5.580000px;}
.yba{bottom:5.940000px;}
.y67{bottom:6.300000px;}
.y5f{bottom:6.480000px;}
.y63{bottom:7.020000px;}
.yb8{bottom:7.740000px;}
.y41{bottom:9.540000px;}
.y2e{bottom:11.700000px;}
.y56{bottom:13.320000px;}
.y5b{bottom:17.280000px;}
.y9{bottom:17.820000px;}
.y18{bottom:18.360000px;}
.y26{bottom:19.080000px;}
.y4e{bottom:20.520000px;}
.y19{bottom:21.420000px;}
.y3{bottom:21.960000px;}
.y95{bottom:22.140000px;}
.y71{bottom:22.170000px;}
.yc{bottom:25.380000px;}
.y40{bottom:25.920000px;}
.y1d{bottom:27.540000px;}
.y37{bottom:27.720000px;}
.y38{bottom:28.440000px;}
.y2d{bottom:29.700000px;}
.y5a{bottom:30.636000px;}
.y70{bottom:30.990000px;}
.y8{bottom:32.760000px;}
.y97{bottom:35.460000px;}
.y55{bottom:35.640000px;}
.y24{bottom:40.140000px;}
.y25{bottom:40.860000px;}
.y2{bottom:41.400000px;}
.y94{bottom:42.120000px;}
.y17{bottom:42.300000px;}
.y6f{bottom:45.390000px;}
.y7{bottom:47.700000px;}
.y4d{bottom:48.960000px;}
.y4c{bottom:50.400000px;}
.y59{bottom:51.480000px;}
.y36{bottom:55.440000px;}
.y2c{bottom:58.140000px;}
.y3f{bottom:58.680000px;}
.y93{bottom:62.145000px;}
.y6{bottom:62.460000px;}
.y16{bottom:62.640000px;}
.y23{bottom:63.000000px;}
.y54{bottom:64.080000px;}
.y3d{bottom:64.620000px;}
.y4b{bottom:79.020000px;}
.y22{bottom:79.410000px;}
.y4a{bottom:80.460000px;}
.y92{bottom:82.125000px;}
.y35{bottom:82.260000px;}
.ya1{bottom:82.656000px;}
.y15{bottom:82.800000px;}
.y3c{bottom:85.320000px;}
.y2b{bottom:86.760000px;}
.y53{bottom:92.700000px;}
.ya0{bottom:94.356000px;}
.y21{bottom:95.610000px;}
.y91{bottom:102.105000px;}
.y14{bottom:103.185000px;}
.y9f{bottom:105.876000px;}
.y34{bottom:106.380000px;}
.y3b{bottom:107.130000px;}
.y2a{bottom:107.640000px;}
.y49{bottom:109.080000px;}
.y48{bottom:110.520000px;}
.y6c{bottom:114.480000px;}
.y57{bottom:114.516000px;}
.y9e{bottom:117.390000px;}
.y52{bottom:121.140000px;}
.y90{bottom:122.085000px;}
.y3a{bottom:122.250000px;}
.y13{bottom:123.345000px;}
.y9d{bottom:130.530000px;}
.y33{bottom:131.250000px;}
.y29{bottom:136.290000px;}
.y47{bottom:138.960000px;}
.y46{bottom:140.400000px;}
.y8f{bottom:141.885000px;}
.y12{bottom:143.685000px;}
.y51{bottom:145.290000px;}
.y9c{bottom:148.530000px;}
.y80{bottom:156.105000px;}
.y8e{bottom:161.865000px;}
.y11{bottom:162.765000px;}
.y43{bottom:163.650000px;}
.y9b{bottom:165.090000px;}
.y28{bottom:166.170000px;}
.y45{bottom:169.425000px;}
.y7f{bottom:173.565000px;}
.y50{bottom:175.170000px;}
.y9a{bottom:175.530000px;}
.y10{bottom:178.605000px;}
.y8d{bottom:181.845000px;}
.y99{bottom:186.150000px;}
.y44{bottom:191.385000px;}
.y7e{bottom:193.185000px;}
.yf{bottom:196.605000px;}
.y98{bottom:196.770000px;}
.y8c{bottom:201.825000px;}
.y7d{bottom:214.065000px;}
.y8b{bottom:221.805000px;}
.y7c{bottom:235.125000px;}
.y6a{bottom:239.760000px;}
.y8a{bottom:241.605000px;}
.y7b{bottom:254.565000px;}
.y74{bottom:258.870000px;}
.y89{bottom:261.585000px;}
.y7a{bottom:275.625000px;}
.y88{bottom:281.565000px;}
.y79{bottom:296.505000px;}
.y87{bottom:301.575000px;}
.y78{bottom:316.155000px;}
.y86{bottom:321.555000px;}
.y77{bottom:335.595000px;}
.y85{bottom:341.355000px;}
.y76{bottom:355.035000px;}
.y84{bottom:361.335000px;}
.y3e{bottom:364.215000px;}
.y75{bottom:374.655000px;}
.y83{bottom:381.315000px;}
.y30{bottom:394.095000px;}
.y82{bottom:398.595000px;}
.y2f{bottom:415.155000px;}
.y81{bottom:415.515000px;}
.y4f{bottom:427.215000px;}
.y27{bottom:436.215000px;}
.y32{bottom:445.215000px;}
.y39{bottom:454.215000px;}
.y20{bottom:483.375000px;}
.y68{bottom:520.560000px;}
.y66{bottom:573.480000px;}
.y1e{bottom:614.265000px;}
.y1c{bottom:658.185000px;}
.y65{bottom:678.240000px;}
.y73{bottom:697.605000px;}
.ye{bottom:727.125000px;}
.yb6{bottom:741.525000px;}
.y64{bottom:741.960000px;}
.yb5{bottom:759.885000px;}
.yb4{bottom:779.505000px;}
.yb3{bottom:797.865000px;}
.yb2{bottom:817.350000px;}
.y62{bottom:825.120000px;}
.yb1{bottom:835.710000px;}
.yb0{bottom:856.410000px;}
.y61{bottom:867.240000px;}
.yaf{bottom:877.110000px;}
.yb7{bottom:891.690000px;}
.yae{bottom:897.810000px;}
.y5e{bottom:901.800000px;}
.y60{bottom:902.880000px;}
.yad{bottom:918.510000px;}
.yac{bottom:939.210000px;}
.yb{bottom:946.770000px;}
.yab{bottom:959.910000px;}
.y72{bottom:962.610000px;}
.yaa{bottom:980.610000px;}
.ya9{bottom:1001.310000px;}
.ya8{bottom:1022.010000px;}
.ya7{bottom:1042.710000px;}
.y6e{bottom:1048.470000px;}
.ya6{bottom:1063.440000px;}
.ya5{bottom:1084.140000px;}
.y5{bottom:1087.200000px;}
.yb9{bottom:1089.720000px;}
.y1{bottom:1096.020000px;}
.ya4{bottom:1104.840000px;}
.ya3{bottom:1125.540000px;}
.y6d{bottom:1133.460000px;}
.ya2{bottom:1146.240000px;}
.y5d{bottom:1171.800000px;}
.h1a{height:17.820000px;}
.h2e{height:18.000000px;}
.h1f{height:20.880000px;}
.h15{height:21.060000px;}
.h39{height:21.600000px;}
.h3b{height:22.030313px;}
.h41{height:22.680000px;}
.h34{height:23.760000px;}
.h36{height:24.840000px;}
.h40{height:25.020000px;}
.h37{height:27.000000px;}
.h13{height:28.281797px;}
.h14{height:28.995469px;}
.h12{height:30.422812px;}
.h31{height:31.680000px;}
.h32{height:33.045469px;}
.h25{height:35.143594px;}
.h2a{height:35.826680px;}
.h3f{height:39.339844px;}
.h6{height:40.104492px;}
.h11{height:41.940000px;}
.h27{height:42.243398px;}
.ha{height:43.477734px;}
.h33{height:43.536006px;}
.h3{height:43.536094px;}
.h2f{height:45.036000px;}
.h22{height:48.256875px;}
.h4{height:49.194844px;}
.h7{height:49.320000px;}
.h28{height:49.992188px;}
.h10{height:52.453125px;}
.hc{height:53.472656px;}
.h2c{height:53.991563px;}
.hf{height:55.333125px;}
.h35{height:56.320312px;}
.h16{height:57.750469px;}
.h2b{height:58.320000px;}
.h3a{height:59.796000px;}
.hd{height:61.370156px;}
.h18{height:62.563008px;}
.h30{height:63.000000px;}
.h1e{height:65.566406px;}
.h1{height:65.880000px;}
.h26{height:71.820000px;}
.h5{height:73.260000px;}
.he{height:73.610156px;}
.h38{height:76.824000px;}
.h24{height:78.679688px;}
.h21{height:80.208984px;}
.h1c{height:81.000000px;}
.h9{height:87.596719px;}
.h8{height:89.299336px;}
.h2{height:93.577148px;}
.h1d{height:96.679688px;}
.h17{height:112.356000px;}
.h1b{height:131.823281px;}
.h23{height:143.856000px;}
.h20{height:152.850000px;}
.h19{height:188.850000px;}
.h2d{height:197.850000px;}
.h3e{height:205.230000px;}
.h29{height:209.370000px;}
.hb{height:210.990000px;}
.h3c{height:411.195000px;}
.h3d{height:426.675000px;}
.h0{height:1188.000000px;}
.w19{width:20.520000px;}
.w18{width:22.680000px;}
.w17{width:28.080000px;}
.w16{width:29.160000px;}
.w8{width:35.820000px;}
.wa{width:74.736000px;}
.w9{width:88.596000px;}
.w1b{width:115.560000px;}
.w7{width:135.036000px;}
.w14{width:165.240000px;}
.w21{width:242.850000px;}
.w11{width:249.480000px;}
.w15{width:318.600000px;}
.wb{width:323.895000px;}
.wc{width:324.075000px;}
.w6{width:334.695000px;}
.w2{width:335.415000px;}
.w1{width:349.815000px;}
.w1a{width:352.080000px;}
.w1f{width:400.395000px;}
.w20{width:400.605000px;}
.w10{width:402.840000px;}
.w1e{width:425.055000px;}
.w1c{width:541.905000px;}
.w3{width:546.765000px;}
.w22{width:577.800000px;}
.wd{width:611.925000px;}
.w12{width:668.520000px;}
.w13{width:774.360000px;}
.w1d{width:837.180000px;}
.w5{width:849.060000px;}
.we{width:855.000000px;}
.wf{width:862.380000px;}
.w4{width:864.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x53{left:2.340000px;}
.x93{left:3.720000px;}
.x31{left:5.040000px;}
.x91{left:6.960000px;}
.xc0{left:10.800000px;}
.xb1{left:13.530000px;}
.x52{left:19.080000px;}
.xb0{left:20.370000px;}
.xb{left:21.780000px;}
.x25{left:28.620000px;}
.xbf{left:32.940000px;}
.x9a{left:34.200000px;}
.x30{left:36.720000px;}
.x96{left:40.500000px;}
.x6c{left:42.120000px;}
.xa9{left:45.720000px;}
.x6d{left:47.520000px;}
.xaa{left:48.960000px;}
.x32{left:50.760000px;}
.xb4{left:53.850000px;}
.x33{left:55.800000px;}
.x94{left:58.320000px;}
.xba{left:61.770000px;}
.xc{left:66.960000px;}
.x54{left:69.660000px;}
.xd{left:71.100000px;}
.xab{left:73.836000px;}
.x64{left:81.000000px;}
.x35{left:82.836000px;}
.x2a{left:84.636000px;}
.x97{left:87.876000px;}
.x68{left:89.676000px;}
.x50{left:93.276000px;}
.x26{left:94.536000px;}
.x27{left:99.576000px;}
.x2b{left:104.436000px;}
.x56{left:109.305000px;}
.x98{left:110.370000px;}
.xa0{left:112.530000px;}
.xe{left:114.525000px;}
.x9b{left:115.950000px;}
.x5e{left:117.585000px;}
.xf{left:118.665000px;}
.x78{left:122.250000px;}
.x34{left:123.330000px;}
.xb9{left:125.670000px;}
.x67{left:127.656000px;}
.xa4{left:131.790000px;}
.x10{left:132.885000px;}
.x88{left:135.000000px;}
.x11{left:137.025000px;}
.xbd{left:141.150000px;}
.x36{left:145.470000px;}
.x12{left:148.365000px;}
.xb6{left:149.970000px;}
.x5f{left:151.245000px;}
.x13{left:152.505000px;}
.x51{left:154.650000px;}
.x92{left:157.680000px;}
.xac{left:158.970000px;}
.x65{left:160.605000px;}
.xad{left:162.210000px;}
.x5a{left:163.485000px;}
.x66{left:165.645000px;}
.x5b{left:168.345000px;}
.x95{left:170.130000px;}
.xa5{left:171.930000px;}
.x14{left:174.105000px;}
.xbe{left:175.530000px;}
.x9c{left:177.150000px;}
.x15{left:178.245000px;}
.x6e{left:179.310000px;}
.x1{left:181.290000px;}
.x8a{left:182.520000px;}
.x37{left:185.070000px;}
.x85{left:187.920000px;}
.x3{left:190.650000px;}
.x57{left:193.725000px;}
.xbb{left:195.150000px;}
.x55{left:199.650000px;}
.xb7{left:202.350000px;}
.x16{left:203.625000px;}
.x4{left:205.785000px;}
.x17{left:207.765000px;}
.x72{left:209.550000px;}
.x81{left:210.990000px;}
.x5{left:214.065000px;}
.x6f{left:215.310000px;}
.x9d{left:219.090000px;}
.x70{left:220.350000px;}
.x18{left:223.245000px;}
.x87{left:224.640000px;}
.x38{left:226.110000px;}
.x19{left:227.385000px;}
.x39{left:228.990000px;}
.x60{left:230.805000px;}
.x3a{left:234.030000px;}
.x61{left:235.845000px;}
.x3b{left:237.090000px;}
.x8b{left:244.080000px;}
.xae{left:246.450000px;}
.x3c{left:247.530000px;}
.x3d{left:250.410000px;}
.x5c{left:253.125000px;}
.x9e{left:254.775000px;}
.x63{left:256.545000px;}
.x9f{left:258.015000px;}
.x76{left:260.535000px;}
.x99{left:265.935000px;}
.xb8{left:268.635000px;}
.x1a{left:270.045000px;}
.xbc{left:273.135000px;}
.x1b{left:274.185000px;}
.x2c{left:276.555000px;}
.x58{left:278.325000px;}
.xb2{left:280.335000px;}
.x3e{left:282.495000px;}
.x3f{left:285.375000px;}
.x5d{left:294.375000px;}
.xb3{left:297.075000px;}
.xc1{left:301.320000px;}
.x8c{left:302.400000px;}
.x82{left:304.275000px;}
.x69{left:311.295000px;}
.x2d{left:312.915000px;}
.x6a{left:315.975000px;}
.x59{left:319.755000px;}
.xa6{left:321.555000px;}
.x6{left:326.595000px;}
.x8d{left:332.640000px;}
.x7{left:334.875000px;}
.x1c{left:337.935000px;}
.x7b{left:339.915000px;}
.x1d{left:342.075000px;}
.x40{left:350.175000px;}
.x41{left:352.515000px;}
.x1e{left:354.135000px;}
.x1f{left:358.275000px;}
.x8e{left:362.880000px;}
.x42{left:365.295000px;}
.x43{left:368.175000px;}
.xb5{left:378.795000px;}
.x8f{left:393.120000px;}
.xa7{left:394.815000px;}
.x8{left:404.175000px;}
.x44{left:406.515000px;}
.xa8{left:407.955000px;}
.x45{left:409.395000px;}
.x9{left:412.455000px;}
.x20{left:421.095000px;}
.x46{left:423.615000px;}
.x21{left:425.235000px;}
.x22{left:436.575000px;}
.x23{left:440.715000px;}
.x90{left:452.520000px;}
.x6b{left:454.425000px;}
.xa1{left:459.105000px;}
.xa2{left:466.485000px;}
.xa3{left:470.985000px;}
.xaf{left:477.075000px;}
.x2e{left:480.525000px;}
.x24{left:483.915000px;}
.xa{left:502.320000px;}
.x47{left:524.625000px;}
.x2{left:540.105000px;}
.x2f{left:541.725000px;}
.x7a{left:550.725000px;}
.x28{left:562.605000px;}
.x89{left:574.560000px;}
.x73{left:587.805000px;}
.x62{left:591.765000px;}
.x29{left:609.945000px;}
.x86{left:643.680000px;}
.x75{left:659.850000px;}
.x48{left:661.650000px;}
.x71{left:663.270000px;}
.x74{left:685.050000px;}
.x77{left:690.810000px;}
.x7c{left:697.830000px;}
.x49{left:718.170000px;}
.x4a{left:721.050000px;}
.x7d{left:755.430000px;}
.x7e{left:759.570000px;}
.x4b{left:767.310000px;}
.x4c{left:770.190000px;}
.x4d{left:778.650000px;}
.x4e{left:781.530000px;}
.x7f{left:819.510000px;}
.x4f{left:820.950000px;}
.x80{left:825.270000px;}
.x83{left:828.150000px;}
.x79{left:844.200000px;}
.x84{left:863.100000px;}
@media print{
.v6{vertical-align:-16.000000pt;}
.v3{vertical-align:-10.880000pt;}
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v2{vertical-align:10.880000pt;}
.v5{vertical-align:16.000000pt;}
.ls30{letter-spacing:-8.903104pt;}
.ls3d{letter-spacing:-3.062592pt;}
.ls22{letter-spacing:-1.530880pt;}
.ls51{letter-spacing:-0.900480pt;}
.ls26{letter-spacing:-0.883200pt;}
.ls78{letter-spacing:-0.720000pt;}
.ls2c{letter-spacing:-0.624000pt;}
.ls76{letter-spacing:-0.600320pt;}
.ls4f{letter-spacing:-0.596032pt;}
.ls21{letter-spacing:-0.412160pt;}
.ls72{letter-spacing:-0.385920pt;}
.ls70{letter-spacing:-0.373056pt;}
.ls52{letter-spacing:-0.362880pt;}
.ls77{letter-spacing:-0.307008pt;}
.ls43{letter-spacing:-0.293248pt;}
.ls20{letter-spacing:-0.270848pt;}
.ls84{letter-spacing:-0.265600pt;}
.ls4d{letter-spacing:-0.257280pt;}
.ls50{letter-spacing:-0.240128pt;}
.ls81{letter-spacing:-0.235520pt;}
.ls1e{letter-spacing:-0.224000pt;}
.ls4c{letter-spacing:-0.197248pt;}
.ls7d{letter-spacing:-0.192000pt;}
.ls39{letter-spacing:-0.189312pt;}
.ls80{letter-spacing:-0.187200pt;}
.ls35{letter-spacing:-0.185600pt;}
.ls7c{letter-spacing:-0.177600pt;}
.ls6f{letter-spacing:-0.171520pt;}
.ls73{letter-spacing:-0.154368pt;}
.ls2b{letter-spacing:-0.096000pt;}
.ls23{letter-spacing:-0.094208pt;}
.ls4e{letter-spacing:-0.081472pt;}
.ls4b{letter-spacing:-0.064000pt;}
.ls83{letter-spacing:-0.047808pt;}
.ls3c{letter-spacing:-0.029952pt;}
.ls6d{letter-spacing:-0.014976pt;}
.ls27{letter-spacing:-0.014400pt;}
.ls3a{letter-spacing:-0.013824pt;}
.ls1f{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.ls3e{letter-spacing:0.037440pt;}
.ls86{letter-spacing:0.047808pt;}
.ls42{letter-spacing:0.050560pt;}
.ls15{letter-spacing:0.068532pt;}
.ls8{letter-spacing:0.070400pt;}
.lsf{letter-spacing:0.080640pt;}
.lse{letter-spacing:0.080896pt;}
.ls2{letter-spacing:0.096000pt;}
.ls58{letter-spacing:0.096336pt;}
.ls3b{letter-spacing:0.097344pt;}
.ls16{letter-spacing:0.128000pt;}
.ls2e{letter-spacing:0.129600pt;}
.ls14{letter-spacing:0.137063pt;}
.ls4{letter-spacing:0.144000pt;}
.ls74{letter-spacing:0.167232pt;}
.ls1c{letter-spacing:0.171520pt;}
.ls24{letter-spacing:0.176640pt;}
.ls18{letter-spacing:0.179200pt;}
.ls54{letter-spacing:0.189169pt;}
.ls3{letter-spacing:0.192000pt;}
.ls33{letter-spacing:0.217600pt;}
.ls7{letter-spacing:0.230400pt;}
.ls61{letter-spacing:0.233223pt;}
.ls25{letter-spacing:0.235520pt;}
.ls7b{letter-spacing:0.240000pt;}
.ls17{letter-spacing:0.256000pt;}
.ls32{letter-spacing:0.265600pt;}
.ls82{letter-spacing:0.270848pt;}
.ls29{letter-spacing:0.288000pt;}
.ls79{letter-spacing:0.292800pt;}
.ls38{letter-spacing:0.296960pt;}
.ls71{letter-spacing:0.300160pt;}
.ls5d{letter-spacing:0.302400pt;}
.lsd{letter-spacing:0.303360pt;}
.ls85{letter-spacing:0.318720pt;}
.ls75{letter-spacing:0.330176pt;}
.ls34{letter-spacing:0.341504pt;}
.ls13{letter-spacing:0.349627pt;}
.ls44{letter-spacing:0.428800pt;}
.ls69{letter-spacing:0.432000pt;}
.ls46{letter-spacing:0.448000pt;}
.ls62{letter-spacing:0.473180pt;}
.ls28{letter-spacing:0.480000pt;}
.ls60{letter-spacing:0.480032pt;}
.ls57{letter-spacing:0.514560pt;}
.ls12{letter-spacing:0.518400pt;}
.ls9{letter-spacing:0.519680pt;}
.ls2a{letter-spacing:0.542400pt;}
.ls36{letter-spacing:0.564224pt;}
.ls41{letter-spacing:0.565248pt;}
.ls48{letter-spacing:0.576000pt;}
.ls31{letter-spacing:0.600256pt;}
.ls6e{letter-spacing:0.621504pt;}
.ls47{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.668160pt;}
.ls49{letter-spacing:0.691200pt;}
.ls40{letter-spacing:0.706560pt;}
.ls7f{letter-spacing:0.720000pt;}
.ls19{letter-spacing:0.768000pt;}
.ls37{letter-spacing:0.783232pt;}
.ls2d{letter-spacing:0.830400pt;}
.ls1b{letter-spacing:0.879360pt;}
.ls5b{letter-spacing:0.912000pt;}
.ls7e{letter-spacing:0.960000pt;}
.ls64{letter-spacing:0.960063pt;}
.ls11{letter-spacing:0.981410pt;}
.ls2f{letter-spacing:1.056000pt;}
.ls4a{letter-spacing:1.088000pt;}
.ls10{letter-spacing:1.245074pt;}
.ls7a{letter-spacing:1.248000pt;}
.ls5e{letter-spacing:1.376000pt;}
.ls1d{letter-spacing:1.519360pt;}
.ls1{letter-spacing:1.551360pt;}
.ls6{letter-spacing:2.016000pt;}
.ls3f{letter-spacing:2.119680pt;}
.ls0{letter-spacing:2.191360pt;}
.ls45{letter-spacing:2.272640pt;}
.ls59{letter-spacing:10.976000pt;}
.ls5f{letter-spacing:15.456000pt;}
.ls1a{letter-spacing:22.848000pt;}
.lsc{letter-spacing:23.488000pt;}
.ls6c{letter-spacing:23.776000pt;}
.lsb{letter-spacing:33.693440pt;}
.ls5c{letter-spacing:44.896000pt;}
.ls5a{letter-spacing:46.176000pt;}
.ls67{letter-spacing:47.876711pt;}
.ls68{letter-spacing:64.333892pt;}
.ls6a{letter-spacing:66.967041pt;}
.ls63{letter-spacing:113.705433pt;}
.ls6b{letter-spacing:132.137475pt;}
.ls66{letter-spacing:226.272548pt;}
.ls65{letter-spacing:261.820058pt;}
.ls55{letter-spacing:1284.234667pt;}
.ls56{letter-spacing:1508.341333pt;}
.ls53{letter-spacing:2013.301333pt;}
.ws2c{word-spacing:-64.000000pt;}
.ws39{word-spacing:-42.880000pt;}
.ws0{word-spacing:-30.912000pt;}
.ws14{word-spacing:-29.712640pt;}
.ws26{word-spacing:-26.976000pt;}
.ws40{word-spacing:-21.438144pt;}
.ws20{word-spacing:-20.913984pt;}
.ws23{word-spacing:-20.854080pt;}
.ws1f{word-spacing:-20.816640pt;}
.ws15{word-spacing:-20.809536pt;}
.ws3f{word-spacing:-20.801664pt;}
.ws21{word-spacing:-20.786688pt;}
.ws4a{word-spacing:-20.509632pt;}
.ws31{word-spacing:-18.880000pt;}
.ws2e{word-spacing:-18.432000pt;}
.ws30{word-spacing:-18.368000pt;}
.ws2d{word-spacing:-18.310400pt;}
.ws19{word-spacing:-18.022400pt;}
.ws46{word-spacing:-18.009600pt;}
.ws32{word-spacing:-17.984000pt;}
.ws2f{word-spacing:-17.971200pt;}
.ws18{word-spacing:-17.792000pt;}
.ws22{word-spacing:-17.754048pt;}
.ws33{word-spacing:-17.728000pt;}
.ws25{word-spacing:-17.075200pt;}
.ws6{word-spacing:-16.604160pt;}
.ws5{word-spacing:-16.545280pt;}
.ws24{word-spacing:-16.368640pt;}
.ws4{word-spacing:-16.274432pt;}
.ws1{word-spacing:-16.097792pt;}
.ws2{word-spacing:-15.956480pt;}
.ws7{word-spacing:-15.485440pt;}
.ws55{word-spacing:-15.086080pt;}
.ws17{word-spacing:-15.032960pt;}
.ws3{word-spacing:-14.837760pt;}
.ws56{word-spacing:-14.815168pt;}
.ws16{word-spacing:-14.767360pt;}
.ws4e{word-spacing:-14.592000pt;}
.ws13{word-spacing:-14.400000pt;}
.ws50{word-spacing:-14.304000pt;}
.ws4d{word-spacing:-14.256000pt;}
.ws10{word-spacing:-14.174400pt;}
.ws27{word-spacing:-14.136576pt;}
.ws28{word-spacing:-14.106240pt;}
.ws52{word-spacing:-14.064000pt;}
.ws29{word-spacing:-14.055680pt;}
.wsd{word-spacing:-13.886400pt;}
.wsb{word-spacing:-13.824000pt;}
.ws4f{word-spacing:-13.646400pt;}
.ws4c{word-spacing:-13.636800pt;}
.wsc{word-spacing:-13.632000pt;}
.ws53{word-spacing:-13.584000pt;}
.wsa{word-spacing:-13.536000pt;}
.wse{word-spacing:-13.488000pt;}
.ws11{word-spacing:-13.473600pt;}
.ws12{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.344000pt;}
.ws8{word-spacing:-13.329600pt;}
.wsf{word-spacing:-13.248000pt;}
.ws54{word-spacing:-13.156800pt;}
.ws51{word-spacing:-13.152000pt;}
.ws4b{word-spacing:-12.624000pt;}
.ws48{word-spacing:-12.435200pt;}
.ws2a{word-spacing:-12.349440pt;}
.ws47{word-spacing:-12.250816pt;}
.ws43{word-spacing:-12.220800pt;}
.ws38{word-spacing:-12.092160pt;}
.ws2b{word-spacing:-11.920640pt;}
.ws36{word-spacing:-11.839168pt;}
.ws45{word-spacing:-11.766272pt;}
.ws41{word-spacing:-11.749120pt;}
.ws34{word-spacing:-11.723392pt;}
.ws3a{word-spacing:-11.680512pt;}
.ws35{word-spacing:-11.663360pt;}
.ws42{word-spacing:-11.547584pt;}
.ws44{word-spacing:-11.534720pt;}
.ws37{word-spacing:-11.324608pt;}
.ws49{word-spacing:-11.320320pt;}
.ws3c{word-spacing:-11.208960pt;}
.ws3b{word-spacing:-11.020160pt;}
.ws1b{word-spacing:-10.987520pt;}
.ws3d{word-spacing:-10.846080pt;}
.ws1a{word-spacing:-10.839040pt;}
.ws1e{word-spacing:-10.616320pt;}
.ws1d{word-spacing:-10.319360pt;}
.ws1c{word-spacing:-10.133760pt;}
.ws3e{word-spacing:0.000000pt;}
._2{margin-left:-12.592000pt;}
._0{margin-left:-9.792000pt;}
._17{margin-left:-8.482816pt;}
._11{margin-left:-7.294226pt;}
._15{margin-left:-6.272000pt;}
._5{margin-left:-5.365760pt;}
._10{margin-left:-4.109252pt;}
._6{margin-left:-3.092224pt;}
._4{margin-left:-1.766400pt;}
._3{width:1.409024pt;}
._7{width:2.300800pt;}
._1{width:3.200000pt;}
._8{width:4.608000pt;}
._28{width:5.952000pt;}
._18{width:10.489856pt;}
._19{width:11.686400pt;}
._21{width:46.176000pt;}
._12{width:50.078020pt;}
._20{width:90.336000pt;}
._23{width:99.197793pt;}
._d{width:120.106667pt;}
._24{width:150.716673pt;}
._26{width:163.936000pt;}
._29{width:176.000000pt;}
._1a{width:188.730667pt;}
._e{width:198.191360pt;}
._25{width:209.333377pt;}
._1f{width:245.141376pt;}
._1e{width:279.136000pt;}
._22{width:308.137473pt;}
._1b{width:359.136000pt;}
._14{width:388.614254pt;}
._27{width:391.136000pt;}
._1c{width:432.096000pt;}
._1d{width:441.056000pt;}
._9{width:871.454891pt;}
._f{width:1114.014891pt;}
._13{width:1229.538091pt;}
._16{width:1961.461333pt;}
._a{width:2361.749333pt;}
._b{width:2736.128000pt;}
._c{width:3054.848000pt;}
.fs9{font-size:21.120000pt;}
.fs11{font-size:26.880000pt;}
.fs7{font-size:37.120000pt;}
.fsf{font-size:40.320000pt;}
.fsd{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fse{font-size:50.560000pt;}
.fs10{font-size:53.119893pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs6{font-size:74.880000pt;}
.fsc{font-size:80.000000pt;}
.fsb{font-size:96.000000pt;}
.fs4{font-size:106.880000pt;}
.fs0{font-size:112.000000pt;}
.fsa{font-size:138.880000pt;}
.y1b{bottom:-19.680000pt;}
.y42{bottom:-8.800000pt;}
.y1a{bottom:-1.760000pt;}
.y96{bottom:-0.960000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:2.400000pt;}
.y5c{bottom:2.720000pt;}
.yd{bottom:3.040000pt;}
.y6b{bottom:3.200000pt;}
.y58{bottom:3.360000pt;}
.y4{bottom:3.680000pt;}
.y31{bottom:3.840000pt;}
.y69{bottom:4.640000pt;}
.y1f{bottom:4.960000pt;}
.yba{bottom:5.280000pt;}
.y67{bottom:5.600000pt;}
.y5f{bottom:5.760000pt;}
.y63{bottom:6.240000pt;}
.yb8{bottom:6.880000pt;}
.y41{bottom:8.480000pt;}
.y2e{bottom:10.400000pt;}
.y56{bottom:11.840000pt;}
.y5b{bottom:15.360000pt;}
.y9{bottom:15.840000pt;}
.y18{bottom:16.320000pt;}
.y26{bottom:16.960000pt;}
.y4e{bottom:18.240000pt;}
.y19{bottom:19.040000pt;}
.y3{bottom:19.520000pt;}
.y95{bottom:19.680000pt;}
.y71{bottom:19.706667pt;}
.yc{bottom:22.560000pt;}
.y40{bottom:23.040000pt;}
.y1d{bottom:24.480000pt;}
.y37{bottom:24.640000pt;}
.y38{bottom:25.280000pt;}
.y2d{bottom:26.400000pt;}
.y5a{bottom:27.232000pt;}
.y70{bottom:27.546667pt;}
.y8{bottom:29.120000pt;}
.y97{bottom:31.520000pt;}
.y55{bottom:31.680000pt;}
.y24{bottom:35.680000pt;}
.y25{bottom:36.320000pt;}
.y2{bottom:36.800000pt;}
.y94{bottom:37.440000pt;}
.y17{bottom:37.600000pt;}
.y6f{bottom:40.346667pt;}
.y7{bottom:42.400000pt;}
.y4d{bottom:43.520000pt;}
.y4c{bottom:44.800000pt;}
.y59{bottom:45.760000pt;}
.y36{bottom:49.280000pt;}
.y2c{bottom:51.680000pt;}
.y3f{bottom:52.160000pt;}
.y93{bottom:55.240000pt;}
.y6{bottom:55.520000pt;}
.y16{bottom:55.680000pt;}
.y23{bottom:56.000000pt;}
.y54{bottom:56.960000pt;}
.y3d{bottom:57.440000pt;}
.y4b{bottom:70.240000pt;}
.y22{bottom:70.586667pt;}
.y4a{bottom:71.520000pt;}
.y92{bottom:73.000000pt;}
.y35{bottom:73.120000pt;}
.ya1{bottom:73.472000pt;}
.y15{bottom:73.600000pt;}
.y3c{bottom:75.840000pt;}
.y2b{bottom:77.120000pt;}
.y53{bottom:82.400000pt;}
.ya0{bottom:83.872000pt;}
.y21{bottom:84.986667pt;}
.y91{bottom:90.760000pt;}
.y14{bottom:91.720000pt;}
.y9f{bottom:94.112000pt;}
.y34{bottom:94.560000pt;}
.y3b{bottom:95.226667pt;}
.y2a{bottom:95.680000pt;}
.y49{bottom:96.960000pt;}
.y48{bottom:98.240000pt;}
.y6c{bottom:101.760000pt;}
.y57{bottom:101.792000pt;}
.y9e{bottom:104.346667pt;}
.y52{bottom:107.680000pt;}
.y90{bottom:108.520000pt;}
.y3a{bottom:108.666667pt;}
.y13{bottom:109.640000pt;}
.y9d{bottom:116.026667pt;}
.y33{bottom:116.666667pt;}
.y29{bottom:121.146667pt;}
.y47{bottom:123.520000pt;}
.y46{bottom:124.800000pt;}
.y8f{bottom:126.120000pt;}
.y12{bottom:127.720000pt;}
.y51{bottom:129.146667pt;}
.y9c{bottom:132.026667pt;}
.y80{bottom:138.760000pt;}
.y8e{bottom:143.880000pt;}
.y11{bottom:144.680000pt;}
.y43{bottom:145.466667pt;}
.y9b{bottom:146.746667pt;}
.y28{bottom:147.706667pt;}
.y45{bottom:150.600000pt;}
.y7f{bottom:154.280000pt;}
.y50{bottom:155.706667pt;}
.y9a{bottom:156.026667pt;}
.y10{bottom:158.760000pt;}
.y8d{bottom:161.640000pt;}
.y99{bottom:165.466667pt;}
.y44{bottom:170.120000pt;}
.y7e{bottom:171.720000pt;}
.yf{bottom:174.760000pt;}
.y98{bottom:174.906667pt;}
.y8c{bottom:179.400000pt;}
.y7d{bottom:190.280000pt;}
.y8b{bottom:197.160000pt;}
.y7c{bottom:209.000000pt;}
.y6a{bottom:213.120000pt;}
.y8a{bottom:214.760000pt;}
.y7b{bottom:226.280000pt;}
.y74{bottom:230.106667pt;}
.y89{bottom:232.520000pt;}
.y7a{bottom:245.000000pt;}
.y88{bottom:250.280000pt;}
.y79{bottom:263.560000pt;}
.y87{bottom:268.066667pt;}
.y78{bottom:281.026667pt;}
.y86{bottom:285.826667pt;}
.y77{bottom:298.306667pt;}
.y85{bottom:303.426667pt;}
.y76{bottom:315.586667pt;}
.y84{bottom:321.186667pt;}
.y3e{bottom:323.746667pt;}
.y75{bottom:333.026667pt;}
.y83{bottom:338.946667pt;}
.y30{bottom:350.306667pt;}
.y82{bottom:354.306667pt;}
.y2f{bottom:369.026667pt;}
.y81{bottom:369.346667pt;}
.y4f{bottom:379.746667pt;}
.y27{bottom:387.746667pt;}
.y32{bottom:395.746667pt;}
.y39{bottom:403.746667pt;}
.y20{bottom:429.666667pt;}
.y68{bottom:462.720000pt;}
.y66{bottom:509.760000pt;}
.y1e{bottom:546.013333pt;}
.y1c{bottom:585.053333pt;}
.y65{bottom:602.880000pt;}
.y73{bottom:620.093333pt;}
.ye{bottom:646.333333pt;}
.yb6{bottom:659.133333pt;}
.y64{bottom:659.520000pt;}
.yb5{bottom:675.453333pt;}
.yb4{bottom:692.893333pt;}
.yb3{bottom:709.213333pt;}
.yb2{bottom:726.533333pt;}
.y62{bottom:733.440000pt;}
.yb1{bottom:742.853333pt;}
.yb0{bottom:761.253333pt;}
.y61{bottom:770.880000pt;}
.yaf{bottom:779.653333pt;}
.yb7{bottom:792.613333pt;}
.yae{bottom:798.053333pt;}
.y5e{bottom:801.600000pt;}
.y60{bottom:802.560000pt;}
.yad{bottom:816.453333pt;}
.yac{bottom:834.853333pt;}
.yb{bottom:841.573333pt;}
.yab{bottom:853.253333pt;}
.y72{bottom:855.653333pt;}
.yaa{bottom:871.653333pt;}
.ya9{bottom:890.053333pt;}
.ya8{bottom:908.453333pt;}
.ya7{bottom:926.853333pt;}
.y6e{bottom:931.973333pt;}
.ya6{bottom:945.280000pt;}
.ya5{bottom:963.680000pt;}
.y5{bottom:966.400000pt;}
.yb9{bottom:968.640000pt;}
.y1{bottom:974.240000pt;}
.ya4{bottom:982.080000pt;}
.ya3{bottom:1000.480000pt;}
.y6d{bottom:1007.520000pt;}
.ya2{bottom:1018.880000pt;}
.y5d{bottom:1041.600000pt;}
.h1a{height:15.840000pt;}
.h2e{height:16.000000pt;}
.h1f{height:18.560000pt;}
.h15{height:18.720000pt;}
.h39{height:19.200000pt;}
.h3b{height:19.582500pt;}
.h41{height:20.160000pt;}
.h34{height:21.120000pt;}
.h36{height:22.080000pt;}
.h40{height:22.240000pt;}
.h37{height:24.000000pt;}
.h13{height:25.139375pt;}
.h14{height:25.773750pt;}
.h12{height:27.042500pt;}
.h31{height:28.160000pt;}
.h32{height:29.373750pt;}
.h25{height:31.238750pt;}
.h2a{height:31.845937pt;}
.h3f{height:34.968750pt;}
.h6{height:35.648438pt;}
.h11{height:37.280000pt;}
.h27{height:37.549688pt;}
.ha{height:38.646875pt;}
.h33{height:38.698672pt;}
.h3{height:38.698750pt;}
.h2f{height:40.032000pt;}
.h22{height:42.895000pt;}
.h4{height:43.728750pt;}
.h7{height:43.840000pt;}
.h28{height:44.437500pt;}
.h10{height:46.625000pt;}
.hc{height:47.531250pt;}
.h2c{height:47.992500pt;}
.hf{height:49.185000pt;}
.h35{height:50.062500pt;}
.h16{height:51.333750pt;}
.h2b{height:51.840000pt;}
.h3a{height:53.152000pt;}
.hd{height:54.551250pt;}
.h18{height:55.611562pt;}
.h30{height:56.000000pt;}
.h1e{height:58.281250pt;}
.h1{height:58.560000pt;}
.h26{height:63.840000pt;}
.h5{height:65.120000pt;}
.he{height:65.431250pt;}
.h38{height:68.288000pt;}
.h24{height:69.937500pt;}
.h21{height:71.296875pt;}
.h1c{height:72.000000pt;}
.h9{height:77.863750pt;}
.h8{height:79.377187pt;}
.h2{height:83.179688pt;}
.h1d{height:85.937500pt;}
.h17{height:99.872000pt;}
.h1b{height:117.176250pt;}
.h23{height:127.872000pt;}
.h20{height:135.866667pt;}
.h19{height:167.866667pt;}
.h2d{height:175.866667pt;}
.h3e{height:182.426667pt;}
.h29{height:186.106667pt;}
.hb{height:187.546667pt;}
.h3c{height:365.506667pt;}
.h3d{height:379.266667pt;}
.h0{height:1056.000000pt;}
.w19{width:18.240000pt;}
.w18{width:20.160000pt;}
.w17{width:24.960000pt;}
.w16{width:25.920000pt;}
.w8{width:31.840000pt;}
.wa{width:66.432000pt;}
.w9{width:78.752000pt;}
.w1b{width:102.720000pt;}
.w7{width:120.032000pt;}
.w14{width:146.880000pt;}
.w21{width:215.866667pt;}
.w11{width:221.760000pt;}
.w15{width:283.200000pt;}
.wb{width:287.906667pt;}
.wc{width:288.066667pt;}
.w6{width:297.506667pt;}
.w2{width:298.146667pt;}
.w1{width:310.946667pt;}
.w1a{width:312.960000pt;}
.w1f{width:355.906667pt;}
.w20{width:356.093333pt;}
.w10{width:358.080000pt;}
.w1e{width:377.826667pt;}
.w1c{width:481.693333pt;}
.w3{width:486.013333pt;}
.w22{width:513.600000pt;}
.wd{width:543.933333pt;}
.w12{width:594.240000pt;}
.w13{width:688.320000pt;}
.w1d{width:744.160000pt;}
.w5{width:754.720000pt;}
.we{width:760.000000pt;}
.wf{width:766.560000pt;}
.w4{width:768.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x53{left:2.080000pt;}
.x93{left:3.306667pt;}
.x31{left:4.480000pt;}
.x91{left:6.186667pt;}
.xc0{left:9.600000pt;}
.xb1{left:12.026667pt;}
.x52{left:16.960000pt;}
.xb0{left:18.106667pt;}
.xb{left:19.360000pt;}
.x25{left:25.440000pt;}
.xbf{left:29.280000pt;}
.x9a{left:30.400000pt;}
.x30{left:32.640000pt;}
.x96{left:36.000000pt;}
.x6c{left:37.440000pt;}
.xa9{left:40.640000pt;}
.x6d{left:42.240000pt;}
.xaa{left:43.520000pt;}
.x32{left:45.120000pt;}
.xb4{left:47.866667pt;}
.x33{left:49.600000pt;}
.x94{left:51.840000pt;}
.xba{left:54.906667pt;}
.xc{left:59.520000pt;}
.x54{left:61.920000pt;}
.xd{left:63.200000pt;}
.xab{left:65.632000pt;}
.x64{left:72.000000pt;}
.x35{left:73.632000pt;}
.x2a{left:75.232000pt;}
.x97{left:78.112000pt;}
.x68{left:79.712000pt;}
.x50{left:82.912000pt;}
.x26{left:84.032000pt;}
.x27{left:88.512000pt;}
.x2b{left:92.832000pt;}
.x56{left:97.160000pt;}
.x98{left:98.106667pt;}
.xa0{left:100.026667pt;}
.xe{left:101.800000pt;}
.x9b{left:103.066667pt;}
.x5e{left:104.520000pt;}
.xf{left:105.480000pt;}
.x78{left:108.666667pt;}
.x34{left:109.626667pt;}
.xb9{left:111.706667pt;}
.x67{left:113.472000pt;}
.xa4{left:117.146667pt;}
.x10{left:118.120000pt;}
.x88{left:120.000000pt;}
.x11{left:121.800000pt;}
.xbd{left:125.466667pt;}
.x36{left:129.306667pt;}
.x12{left:131.880000pt;}
.xb6{left:133.306667pt;}
.x5f{left:134.440000pt;}
.x13{left:135.560000pt;}
.x51{left:137.466667pt;}
.x92{left:140.160000pt;}
.xac{left:141.306667pt;}
.x65{left:142.760000pt;}
.xad{left:144.186667pt;}
.x5a{left:145.320000pt;}
.x66{left:147.240000pt;}
.x5b{left:149.640000pt;}
.x95{left:151.226667pt;}
.xa5{left:152.826667pt;}
.x14{left:154.760000pt;}
.xbe{left:156.026667pt;}
.x9c{left:157.466667pt;}
.x15{left:158.440000pt;}
.x6e{left:159.386667pt;}
.x1{left:161.146667pt;}
.x8a{left:162.240000pt;}
.x37{left:164.506667pt;}
.x85{left:167.040000pt;}
.x3{left:169.466667pt;}
.x57{left:172.200000pt;}
.xbb{left:173.466667pt;}
.x55{left:177.466667pt;}
.xb7{left:179.866667pt;}
.x16{left:181.000000pt;}
.x4{left:182.920000pt;}
.x17{left:184.680000pt;}
.x72{left:186.266667pt;}
.x81{left:187.546667pt;}
.x5{left:190.280000pt;}
.x6f{left:191.386667pt;}
.x9d{left:194.746667pt;}
.x70{left:195.866667pt;}
.x18{left:198.440000pt;}
.x87{left:199.680000pt;}
.x38{left:200.986667pt;}
.x19{left:202.120000pt;}
.x39{left:203.546667pt;}
.x60{left:205.160000pt;}
.x3a{left:208.026667pt;}
.x61{left:209.640000pt;}
.x3b{left:210.746667pt;}
.x8b{left:216.960000pt;}
.xae{left:219.066667pt;}
.x3c{left:220.026667pt;}
.x3d{left:222.586667pt;}
.x5c{left:225.000000pt;}
.x9e{left:226.466667pt;}
.x63{left:228.040000pt;}
.x9f{left:229.346667pt;}
.x76{left:231.586667pt;}
.x99{left:236.386667pt;}
.xb8{left:238.786667pt;}
.x1a{left:240.040000pt;}
.xbc{left:242.786667pt;}
.x1b{left:243.720000pt;}
.x2c{left:245.826667pt;}
.x58{left:247.400000pt;}
.xb2{left:249.186667pt;}
.x3e{left:251.106667pt;}
.x3f{left:253.666667pt;}
.x5d{left:261.666667pt;}
.xb3{left:264.066667pt;}
.xc1{left:267.840000pt;}
.x8c{left:268.800000pt;}
.x82{left:270.466667pt;}
.x69{left:276.706667pt;}
.x2d{left:278.146667pt;}
.x6a{left:280.866667pt;}
.x59{left:284.226667pt;}
.xa6{left:285.826667pt;}
.x6{left:290.306667pt;}
.x8d{left:295.680000pt;}
.x7{left:297.666667pt;}
.x1c{left:300.386667pt;}
.x7b{left:302.146667pt;}
.x1d{left:304.066667pt;}
.x40{left:311.266667pt;}
.x41{left:313.346667pt;}
.x1e{left:314.786667pt;}
.x1f{left:318.466667pt;}
.x8e{left:322.560000pt;}
.x42{left:324.706667pt;}
.x43{left:327.266667pt;}
.xb5{left:336.706667pt;}
.x8f{left:349.440000pt;}
.xa7{left:350.946667pt;}
.x8{left:359.266667pt;}
.x44{left:361.346667pt;}
.xa8{left:362.626667pt;}
.x45{left:363.906667pt;}
.x9{left:366.626667pt;}
.x20{left:374.306667pt;}
.x46{left:376.546667pt;}
.x21{left:377.986667pt;}
.x22{left:388.066667pt;}
.x23{left:391.746667pt;}
.x90{left:402.240000pt;}
.x6b{left:403.933333pt;}
.xa1{left:408.093333pt;}
.xa2{left:414.653333pt;}
.xa3{left:418.653333pt;}
.xaf{left:424.066667pt;}
.x2e{left:427.133333pt;}
.x24{left:430.146667pt;}
.xa{left:446.506667pt;}
.x47{left:466.333333pt;}
.x2{left:480.093333pt;}
.x2f{left:481.533333pt;}
.x7a{left:489.533333pt;}
.x28{left:500.093333pt;}
.x89{left:510.720000pt;}
.x73{left:522.493333pt;}
.x62{left:526.013333pt;}
.x29{left:542.173333pt;}
.x86{left:572.160000pt;}
.x75{left:586.533333pt;}
.x48{left:588.133333pt;}
.x71{left:589.573333pt;}
.x74{left:608.933333pt;}
.x77{left:614.053333pt;}
.x7c{left:620.293333pt;}
.x49{left:638.373333pt;}
.x4a{left:640.933333pt;}
.x7d{left:671.493333pt;}
.x7e{left:675.173333pt;}
.x4b{left:682.053333pt;}
.x4c{left:684.613333pt;}
.x4d{left:692.133333pt;}
.x4e{left:694.693333pt;}
.x7f{left:728.453333pt;}
.x4f{left:729.733333pt;}
.x80{left:733.573333pt;}
.x83{left:736.133333pt;}
.x79{left:750.400000pt;}
.x84{left:767.200000pt;}
}




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