
    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_c129aa382833250e52343b98.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_2943ffb2a7bb909ffa8dbf5c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_0f39d453c0d907ebfcfb8147.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.854000;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_53d775f13dd4c919b18cef40.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.716000;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_32c8988f4400d65b7a9ff8c1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_d5be57bc8f033886ab15bd78.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_7ff21f080ac5efc0ef0a0f12.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.049000;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_1c61d328d3a76aa29ac0d064.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.664000;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_dcdb6b43cafdc94ced116e33.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893000;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_d149d70bd4345f22f329c920.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.694000;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_209a2893adee9f54455b2684.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.697000;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_e49e0b286325c6f88d31ec46.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.702000;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_51dfcceb118ff74374fae290.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.714000;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_afe705a21c385c535cdd7101.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.703000;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:-10.662000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v2{vertical-align:23.754000px;}
.lsb{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.000509px;}
.ls4a{letter-spacing:0.065455px;}
.ls30{letter-spacing:0.474753px;}
.ls37{letter-spacing:1.505456px;}
.ls3a{letter-spacing:1.832729px;}
.ls1d{letter-spacing:1.838928px;}
.ls1b{letter-spacing:2.981971px;}
.ls25{letter-spacing:2.986079px;}
.ls1e{letter-spacing:2.991056px;}
.ls1f{letter-spacing:4.393329px;}
.ls36{letter-spacing:6.676369px;}
.lse{letter-spacing:13.680011px;}
.ls48{letter-spacing:14.072739px;}
.ls11{letter-spacing:14.530921px;}
.ls3d{letter-spacing:14.596376px;}
.ls24{letter-spacing:14.792740px;}
.ls39{letter-spacing:15.316376px;}
.ls9{letter-spacing:15.905468px;}
.lsa{letter-spacing:15.970922px;}
.ls2c{letter-spacing:16.232741px;}
.lsf{letter-spacing:16.363650px;}
.ls26{letter-spacing:16.625468px;}
.ls46{letter-spacing:17.541833px;}
.ls38{letter-spacing:17.672742px;}
.ls20{letter-spacing:17.738197px;}
.ls16{letter-spacing:17.932800px;}
.lsd{letter-spacing:18.196379px;}
.ls49{letter-spacing:18.458197px;}
.ls6{letter-spacing:18.720016px;}
.ls2f{letter-spacing:18.850925px;}
.ls5{letter-spacing:18.916379px;}
.ls17{letter-spacing:19.374562px;}
.ls21{letter-spacing:19.505471px;}
.ls47{letter-spacing:19.898198px;}
.ls33{letter-spacing:20.029108px;}
.ls12{letter-spacing:20.225471px;}
.ls19{letter-spacing:21.076381px;}
.ls23{letter-spacing:21.168103px;}
.ls32{letter-spacing:21.272745px;}
.ls27{letter-spacing:21.338200px;}
.ls0{letter-spacing:21.339889px;}
.ls13{letter-spacing:21.403654px;}
.ls1c{letter-spacing:21.665473px;}
.ls2b{letter-spacing:22.385473px;}
.ls2a{letter-spacing:22.647292px;}
.ls4{letter-spacing:22.843655px;}
.ls4f{letter-spacing:23.432747px;}
.ls18{letter-spacing:23.760020px;}
.ls10{letter-spacing:24.087293px;}
.ls4c{letter-spacing:24.152747px;}
.ls31{letter-spacing:24.236915px;}
.ls3f{letter-spacing:24.349111px;}
.ls42{letter-spacing:24.414566px;}
.ls44{letter-spacing:24.480020px;}
.ls43{letter-spacing:24.545475px;}
.ls40{letter-spacing:25.330930px;}
.ls8{letter-spacing:25.789112px;}
.ls7{letter-spacing:25.854567px;}
.ls3e{letter-spacing:26.116385px;}
.lsc{letter-spacing:26.640022px;}
.ls4d{letter-spacing:26.836386px;}
.ls1a{letter-spacing:26.967295px;}
.ls45{letter-spacing:27.098204px;}
.ls2e{letter-spacing:27.360023px;}
.ls3{letter-spacing:28.094532px;}
.ls4e{letter-spacing:28.145478px;}
.ls2{letter-spacing:28.154308px;}
.ls2d{letter-spacing:28.996388px;}
.ls28{letter-spacing:29.716388px;}
.ls1{letter-spacing:29.947576px;}
.ls35{letter-spacing:32.269118px;}
.ls15{letter-spacing:32.727300px;}
.ls34{letter-spacing:34.101847px;}
.ls14{letter-spacing:36.981849px;}
.ls3b{letter-spacing:73.570970px;}
.ls41{letter-spacing:100.014629px;}
.ls29{letter-spacing:114.414641px;}
.ls3c{letter-spacing:122.727375px;}
.ls4b{letter-spacing:262.472946px;}
.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;}
}
.wsc4{word-spacing:-65.454600px;}
.ws70{word-spacing:-50.923679px;}
.ws3b{word-spacing:-42.637126px;}
.wscb{word-spacing:-24.506202px;}
.ws92{word-spacing:-23.131656px;}
.wsb9{word-spacing:-22.738928px;}
.ws10{word-spacing:-22.379985px;}
.wscc{word-spacing:-21.519300px;}
.ws69{word-spacing:-19.531653px;}
.ws75{word-spacing:-18.183288px;}
.wse{word-spacing:-16.605662px;}
.ws3d{word-spacing:-16.363650px;}
.ws1b{word-spacing:-14.943900px;}
.ws95{word-spacing:-3.979640px;}
.ws3a{word-spacing:-3.927276px;}
.wsd2{word-spacing:-3.665458px;}
.ws47{word-spacing:-3.652367px;}
.ws8c{word-spacing:-3.600003px;}
.wse2{word-spacing:-3.586912px;}
.ws11{word-spacing:-3.586536px;}
.ws97{word-spacing:-3.534548px;}
.ws37{word-spacing:-3.469094px;}
.ws2c{word-spacing:-3.403639px;}
.ws6b{word-spacing:-3.272730px;}
.ws63{word-spacing:-3.194184px;}
.wsae{word-spacing:-3.141821px;}
.wsd3{word-spacing:-2.945457px;}
.ws9a{word-spacing:-2.932366px;}
.wsc3{word-spacing:-2.749093px;}
.ws3c{word-spacing:-2.683639px;}
.ws2d{word-spacing:-2.618184px;}
.wsa{word-spacing:-2.391024px;}
.wsd7{word-spacing:-2.356366px;}
.ws36{word-spacing:-2.290911px;}
.ws41{word-spacing:-2.225456px;}
.ws94{word-spacing:-2.160002px;}
.ws96{word-spacing:-2.094547px;}
.ws2e{word-spacing:-2.029093px;}
.ws7b{word-spacing:-1.950547px;}
.wsdd{word-spacing:-1.898183px;}
.ws48{word-spacing:-1.819638px;}
.ws60{word-spacing:-1.701820px;}
.wsbd{word-spacing:-1.636365px;}
.ws62{word-spacing:-1.374547px;}
.ws64{word-spacing:-1.309092px;}
.ws79{word-spacing:-1.243637px;}
.wsa2{word-spacing:-1.112728px;}
.ws91{word-spacing:-1.099637px;}
.wsbe{word-spacing:-1.047274px;}
.wsc9{word-spacing:-0.981819px;}
.wsc6{word-spacing:-0.916364px;}
.ws71{word-spacing:-0.850910px;}
.ws9b{word-spacing:-0.837819px;}
.ws7{word-spacing:-0.777083px;}
.ws23{word-spacing:-0.654546px;}
.wsca{word-spacing:-0.589091px;}
.wsdb{word-spacing:-0.523637px;}
.ws28{word-spacing:-0.392728px;}
.wsa4{word-spacing:-0.327273px;}
.ws8a{word-spacing:-0.183273px;}
.wsaa{word-spacing:-0.130909px;}
.wsac{word-spacing:-0.065455px;}
.ws8b{word-spacing:-0.052364px;}
.ws80{word-spacing:-0.047821px;}
.wsf{word-spacing:-0.041843px;}
.ws0{word-spacing:0.000000px;}
.ws5f{word-spacing:0.013091px;}
.ws3f{word-spacing:0.130909px;}
.ws29{word-spacing:0.261818px;}
.ws2a{word-spacing:0.327273px;}
.ws78{word-spacing:0.392728px;}
.ws7c{word-spacing:0.405819px;}
.ws6c{word-spacing:0.523637px;}
.wsd1{word-spacing:0.589091px;}
.ws1{word-spacing:0.717307px;}
.ws88{word-spacing:0.720001px;}
.ws42{word-spacing:0.785455px;}
.wsb7{word-spacing:0.916364px;}
.ws99{word-spacing:0.981819px;}
.ws98{word-spacing:1.243637px;}
.ws6e{word-spacing:1.309092px;}
.ws90{word-spacing:1.322183px;}
.wsd6{word-spacing:1.374547px;}
.wsab{word-spacing:1.440001px;}
.ws89{word-spacing:1.636365px;}
.ws33{word-spacing:1.701820px;}
.ws61{word-spacing:1.767274px;}
.wsb8{word-spacing:1.780365px;}
.wsc5{word-spacing:1.832729px;}
.ws58{word-spacing:1.898183px;}
.ws55{word-spacing:1.963638px;}
.wsd9{word-spacing:2.029093px;}
.ws5{word-spacing:2.092146px;}
.ws65{word-spacing:2.094547px;}
.ws4a{word-spacing:2.107638px;}
.ws66{word-spacing:2.160002px;}
.ws8{word-spacing:2.211697px;}
.ws6a{word-spacing:2.225456px;}
.ws9{word-spacing:2.271473px;}
.ws21{word-spacing:2.290911px;}
.ws6f{word-spacing:2.434911px;}
.ws20{word-spacing:2.487275px;}
.ws1f{word-spacing:2.552729px;}
.wsb{word-spacing:2.570351px;}
.ws68{word-spacing:2.683639px;}
.ws6{word-spacing:2.809453px;}
.ws9d{word-spacing:2.880002px;}
.ws5a{word-spacing:2.945457px;}
.ws3e{word-spacing:3.010912px;}
.wscd{word-spacing:3.141821px;}
.wsd4{word-spacing:3.207275px;}
.ws53{word-spacing:3.220366px;}
.ws30{word-spacing:3.272730px;}
.wsa1{word-spacing:3.338185px;}
.wsb5{word-spacing:3.403639px;}
.wsb6{word-spacing:3.469094px;}
.wsc8{word-spacing:3.482185px;}
.ws2f{word-spacing:3.534548px;}
.ws1a{word-spacing:3.586536px;}
.ws22{word-spacing:3.600003px;}
.ws31{word-spacing:3.730912px;}
.ws4d{word-spacing:3.796367px;}
.ws2b{word-spacing:3.861821px;}
.wsd{word-spacing:3.885414px;}
.ws46{word-spacing:3.927276px;}
.wsd5{word-spacing:3.992731px;}
.ws4c{word-spacing:4.058185px;}
.ws8f{word-spacing:4.123640px;}
.wsc2{word-spacing:4.189094px;}
.wsc0{word-spacing:4.202185px;}
.ws7a{word-spacing:4.267640px;}
.ws32{word-spacing:4.320004px;}
.ws7d{word-spacing:4.385458px;}
.ws1d{word-spacing:4.581822px;}
.ws85{word-spacing:4.594913px;}
.ws44{word-spacing:4.647277px;}
.ws50{word-spacing:4.712731px;}
.wsc{word-spacing:4.734228px;}
.wsa5{word-spacing:4.778186px;}
.wscf{word-spacing:4.843640px;}
.wsce{word-spacing:4.974550px;}
.ws2{word-spacing:5.140702px;}
.ws40{word-spacing:5.170913px;}
.ws81{word-spacing:5.236368px;}
.wsa3{word-spacing:5.249459px;}
.ws6d{word-spacing:5.301823px;}
.ws59{word-spacing:5.367277px;}
.ws13{word-spacing:5.499355px;}
.ws5b{word-spacing:5.511277px;}
.ws16{word-spacing:5.571086px;}
.ws5c{word-spacing:5.576732px;}
.ws39{word-spacing:5.629096px;}
.ws7f{word-spacing:5.825459px;}
.ws93{word-spacing:5.890914px;}
.ws4b{word-spacing:5.904005px;}
.ws7e{word-spacing:6.087278px;}
.ws67{word-spacing:6.152732px;}
.ws17{word-spacing:6.216662px;}
.wsbf{word-spacing:6.218187px;}
.ws77{word-spacing:6.283642px;}
.ws1e{word-spacing:6.480005px;}
.wsc1{word-spacing:6.545460px;}
.wsc7{word-spacing:6.676369px;}
.ws4{word-spacing:6.694867px;}
.ws3{word-spacing:6.754643px;}
.wsa9{word-spacing:6.872733px;}
.ws72{word-spacing:6.938188px;}
.ws45{word-spacing:7.003642px;}
.ws8e{word-spacing:7.134551px;}
.wsd0{word-spacing:7.200006px;}
.ws14{word-spacing:7.232848px;}
.ws83{word-spacing:7.344006px;}
.ws54{word-spacing:7.409461px;}
.ws24{word-spacing:7.461824px;}
.ws8d{word-spacing:7.592734px;}
.ws56{word-spacing:7.658188px;}
.ws49{word-spacing:7.723643px;}
.ws18{word-spacing:7.770828px;}
.ws43{word-spacing:7.789097px;}
.ws82{word-spacing:7.854552px;}
.ws12{word-spacing:7.890379px;}
.ws4e{word-spacing:8.378189px;}
.ws4f{word-spacing:8.443643px;}
.ws38{word-spacing:8.456734px;}
.wsd8{word-spacing:8.574553px;}
.wsdc{word-spacing:8.640007px;}
.wsda{word-spacing:8.705462px;}
.ws5d{word-spacing:8.718553px;}
.ws5e{word-spacing:8.784007px;}
.ws87{word-spacing:8.967280px;}
.ws52{word-spacing:9.229099px;}
.ws9c{word-spacing:9.294553px;}
.ws26{word-spacing:9.425462px;}
.ws27{word-spacing:9.490917px;}
.wse4{word-spacing:9.556372px;}
.ws19{word-spacing:9.564096px;}
.ws51{word-spacing:9.818190px;}
.ws25{word-spacing:10.276372px;}
.wsad{word-spacing:10.800009px;}
.ws15{word-spacing:13.341914px;}
.ws86{word-spacing:13.815684px;}
.ws84{word-spacing:13.817833px;}
.ws57{word-spacing:14.151285px;}
.ws35{word-spacing:16.363650px;}
.wsaf{word-spacing:29.101115px;}
.wse5{word-spacing:39.207305px;}
.wsbc{word-spacing:53.554954px;}
.ws34{word-spacing:53.798400px;}
.wsa0{word-spacing:55.374592px;}
.wsbb{word-spacing:59.629141px;}
.wsb4{word-spacing:62.391325px;}
.wsa8{word-spacing:63.556417px;}
.ws1c{word-spacing:64.557900px;}
.ws9f{word-spacing:68.072784px;}
.wsba{word-spacing:72.850970px;}
.ws76{word-spacing:74.667066px;}
.wsb2{word-spacing:84.187707px;}
.wse0{word-spacing:88.101892px;}
.wsa7{word-spacing:99.687356px;}
.wsb1{word-spacing:117.307734px;}
.wse1{word-spacing:123.067739px;}
.ws74{word-spacing:136.603750px;}
.ws9e{word-spacing:152.352127px;}
.ws73{word-spacing:156.894676px;}
.wsdf{word-spacing:159.447406px;}
.wsb3{word-spacing:164.565955px;}
.wsb0{word-spacing:165.338320px;}
.wse3{word-spacing:188.522339px;}
.wsa6{word-spacing:192.829252px;}
.wsde{word-spacing:608.924144px;}
._38{margin-left:-10.307461px;}
._30{margin-left:-8.570690px;}
._6{margin-left:-6.575316px;}
._3{margin-left:-4.782048px;}
._12{margin-left:-3.639028px;}
._0{margin-left:-2.582310px;}
._1{margin-left:-1.016185px;}
._21{width:2.451401px;}
._8{width:3.910267px;}
._20{width:6.881516px;}
._3a{width:11.716373px;}
._9{width:12.971305px;}
._15{width:15.075356px;}
._a{width:17.227332px;}
._7{width:18.530436px;}
._16{width:19.570925px;}
._11{width:21.568006px;}
._4{width:23.312484px;}
._5{width:24.747098px;}
._b{width:26.301264px;}
._19{width:27.978970px;}
._e{width:30.174571px;}
._14{width:31.452574px;}
._2{width:32.996131px;}
._1a{width:34.609921px;}
._17{width:35.738212px;}
._c{width:37.192382px;}
._18{width:39.140343px;}
._d{width:40.676887px;}
._f{width:42.634232px;}
._1f{width:46.803317px;}
._10{width:48.829132px;}
._39{width:51.626863px;}
._13{width:71.731200px;}
._34{width:83.912797px;}
._3b{width:86.077200px;}
._2a{width:98.741411px;}
._32{width:119.385328px;}
._35{width:122.400102px;}
._2f{width:125.964231px;}
._2c{width:126.981924px;}
._28{width:135.098294px;}
._3d{width:141.054663px;}
._29{width:142.589699px;}
._3e{width:149.563761px;}
._1e{width:152.342435px;}
._25{width:165.076501px;}
._26{width:167.593357px;}
._33{width:171.455178px;}
._22{width:181.178333px;}
._27{width:187.753649px;}
._1c{width:190.567921px;}
._36{width:197.607437px;}
._2d{width:211.775487px;}
._41{width:213.215488px;}
._40{width:236.291106px;}
._1d{width:238.153691px;}
._24{width:261.752945px;}
._23{width:284.299184px;}
._2e{width:288.785695px;}
._3c{width:289.831461px;}
._37{width:297.622066px;}
._2b{width:353.096479px;}
._1b{width:366.611215px;}
._31{width:408.240340px;}
._3f{width:451.309467px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y28{bottom:63.168000px;}
.y75{bottom:108.000000px;}
.y159{bottom:108.633000px;}
.ydb{bottom:110.781000px;}
.y4f{bottom:118.831500px;}
.ybd{bottom:118.840500px;}
.yfd{bottom:119.095500px;}
.y27{bottom:120.568500px;}
.y74{bottom:128.323500px;}
.y158{bottom:128.956500px;}
.yda{bottom:131.104500px;}
.y4e{bottom:139.155000px;}
.ybc{bottom:139.164000px;}
.yfc{bottom:139.419000px;}
.y26{bottom:140.892000px;}
.y73{bottom:148.648500px;}
.y157{bottom:149.280000px;}
.y94{bottom:150.253500px;}
.yd9{bottom:151.428000px;}
.y11b{bottom:158.023500px;}
.y4d{bottom:159.478500px;}
.yfb{bottom:159.742500px;}
.y25{bottom:161.215500px;}
.y72{bottom:168.972000px;}
.y93{bottom:170.577000px;}
.yd8{bottom:171.751500px;}
.y11a{bottom:178.347000px;}
.y4c{bottom:179.803500px;}
.yfa{bottom:180.067500px;}
.y24{bottom:181.540500px;}
.ybb{bottom:184.095000px;}
.y71{bottom:189.295500px;}
.y156{bottom:189.928500px;}
.y92{bottom:190.900500px;}
.yd7{bottom:192.075000px;}
.y119{bottom:198.670500px;}
.y4b{bottom:200.127000px;}
.yf9{bottom:200.391000px;}
.y23{bottom:201.864000px;}
.yba{bottom:204.418500px;}
.y155{bottom:210.252000px;}
.y13b{bottom:211.158000px;}
.yd6{bottom:212.400000px;}
.y4a{bottom:220.450500px;}
.y70{bottom:220.665000px;}
.yf8{bottom:220.714500px;}
.y22{bottom:222.187500px;}
.y154{bottom:230.575500px;}
.y13a{bottom:231.481500px;}
.y118{bottom:232.444500px;}
.yd5{bottom:232.723500px;}
.yb9{bottom:232.951500px;}
.y91{bottom:235.831500px;}
.y49{bottom:240.774000px;}
.yf7{bottom:241.038000px;}
.y21{bottom:242.511000px;}
.y139{bottom:251.805000px;}
.y117{bottom:252.768000px;}
.yd4{bottom:253.047000px;}
.y90{bottom:256.155000px;}
.yb8{bottom:258.094500px;}
.y48{bottom:261.097500px;}
.yf6{bottom:261.361500px;}
.y20{bottom:262.834500px;}
.y6f{bottom:265.366500px;}
.y153{bottom:268.831500px;}
.yd3{bottom:273.370500px;}
.yb7{bottom:278.418000px;}
.y47{bottom:281.422500px;}
.yf5{bottom:281.686500px;}
.y1f{bottom:283.159500px;}
.y8f{bottom:284.688000px;}
.y138{bottom:285.579000px;}
.y6e{bottom:285.690000px;}
.y116{bottom:290.028000px;}
.yb6{bottom:298.743000px;}
.y152{bottom:300.201000px;}
.y46{bottom:301.746000px;}
.yf4{bottom:302.010000px;}
.y1e{bottom:303.483000px;}
.y137{bottom:305.902500px;}
.y6d{bottom:306.013500px;}
.y8e{bottom:309.832500px;}
.yd2{bottom:318.301500px;}
.y45{bottom:322.069500px;}
.yf3{bottom:322.333500px;}
.y1d{bottom:323.806500px;}
.y6c{bottom:326.337000px;}
.yd1{bottom:338.625000px;}
.y136{bottom:339.676500px;}
.y44{bottom:342.393000px;}
.yf2{bottom:342.657000px;}
.y115{bottom:342.700500px;}
.y151{bottom:345.054000px;}
.yb5{bottom:346.255500px;}
.y8d{bottom:357.345000px;}
.yd0{bottom:358.948500px;}
.y135{bottom:360.000000px;}
.y1c{bottom:361.066500px;}
.y114{bottom:363.024000px;}
.y6b{bottom:363.672000px;}
.yb4{bottom:366.580500px;}
.y43{bottom:373.762500px;}
.yf1{bottom:374.026500px;}
.y8c{bottom:377.670000px;}
.y150{bottom:378.828000px;}
.y134{bottom:380.323500px;}
.y113{bottom:383.347500px;}
.yb3{bottom:386.904000px;}
.ycf{bottom:387.481500px;}
.y6a{bottom:397.137000px;}
.y14f{bottom:399.151500px;}
.yb2{bottom:407.227500px;}
.y8b{bottom:409.038000px;}
.y42{bottom:411.621000px;}
.yce{bottom:412.626000px;}
.y1b{bottom:413.739000px;}
.y133{bottom:414.097500px;}
.yf0{bottom:418.879500px;}
.y112{bottom:421.605000px;}
.yb1{bottom:427.551000px;}
.y69{bottom:430.603500px;}
.y14e{bottom:432.925500px;}
.y132{bottom:434.421000px;}
.y1a{bottom:436.153500px;}
.yef{bottom:439.203000px;}
.y8a{bottom:446.896500px;}
.y14d{bottom:453.249000px;}
.y19{bottom:454.087500px;}
.y131{bottom:454.744500px;}
.y111{bottom:455.377500px;}
.yb0{bottom:458.920500px;}
.yee{bottom:459.528000px;}
.ycd{bottom:460.138500px;}
.y41{bottom:464.292000px;}
.y68{bottom:467.937000px;}
.y18{bottom:472.020000px;}
.y130{bottom:475.068000px;}
.yed{bottom:479.851500px;}
.ycc{bottom:480.463500px;}
.y40{bottom:484.615500px;}
.y14c{bottom:487.023000px;}
.y67{bottom:488.260500px;}
.y110{bottom:489.151500px;}
.y17{bottom:489.952500px;}
.y89{bottom:499.567500px;}
.yaf{bottom:503.773500px;}
.y16{bottom:507.885000px;}
.y66{bottom:508.584000px;}
.y12f{bottom:508.842000px;}
.yec{bottom:511.221000px;}
.ycb{bottom:511.831500px;}
.y3f{bottom:518.389500px;}
.y88{bottom:519.892500px;}
.y14b{bottom:520.795500px;}
.y10f{bottom:522.924000px;}
.yae{bottom:524.097000px;}
.y15{bottom:525.817500px;}
.y65{bottom:528.909000px;}
.y12e{bottom:529.165500px;}
.y3e{bottom:538.713000px;}
.y87{bottom:540.216000px;}
.y10e{bottom:543.249000px;}
.y14{bottom:543.751500px;}
.yad{bottom:544.422000px;}
.yeb{bottom:549.078000px;}
.y64{bottom:549.232500px;}
.y14a{bottom:554.569500px;}
.yca{bottom:556.686000px;}
.y86{bottom:560.539500px;}
.y13{bottom:561.684000px;}
.y12d{bottom:562.939500px;}
.yac{bottom:564.745500px;}
.y3d{bottom:572.487000px;}
.yc9{bottom:577.009500px;}
.y12{bottom:579.616500px;}
.y63{bottom:580.602000px;}
.y85{bottom:580.863000px;}
.y10d{bottom:581.505000px;}
.y12c{bottom:583.263000px;}
.yab{bottom:585.069000px;}
.y149{bottom:585.939000px;}
.y3c{bottom:592.810500px;}
.yc8{bottom:597.333000px;}
.y11{bottom:597.549000px;}
.y84{bottom:601.186500px;}
.yea{bottom:601.750500px;}
.y10c{bottom:601.828500px;}
.yaa{bottom:605.392500px;}
.y3b{bottom:613.134000px;}
.y10{bottom:615.481500px;}
.y12b{bottom:617.035500px;}
.yc7{bottom:617.656500px;}
.y83{bottom:621.511500px;}
.ye9{bottom:622.074000px;}
.y10b{bottom:622.152000px;}
.y148{bottom:623.796000px;}
.y62{bottom:625.303500px;}
.ya9{bottom:625.716000px;}
.yf{bottom:633.414000px;}
.y12a{bottom:637.360500px;}
.yc6{bottom:637.980000px;}
.y82{bottom:641.835000px;}
.y61{bottom:645.627000px;}
.ya8{bottom:646.041000px;}
.y3a{bottom:646.908000px;}
.ye{bottom:651.348000px;}
.ye8{bottom:655.848000px;}
.y129{bottom:657.684000px;}
.yc5{bottom:658.305000px;}
.y10a{bottom:659.412000px;}
.y81{bottom:662.158500px;}
.y60{bottom:665.950500px;}
.ya7{bottom:666.364500px;}
.y39{bottom:667.231500px;}
.yd{bottom:669.280500px;}
.ye7{bottom:676.171500px;}
.y128{bottom:678.007500px;}
.yc4{bottom:678.628500px;}
.y80{bottom:682.482000px;}
.y5f{bottom:686.274000px;}
.ya6{bottom:686.688000px;}
.yc{bottom:687.213000px;}
.y38{bottom:698.601000px;}
.yc3{bottom:698.952000px;}
.y147{bottom:700.248000px;}
.yb{bottom:705.145500px;}
.y5e{bottom:706.597500px;}
.ya5{bottom:707.011500px;}
.ye6{bottom:709.944000px;}
.y127{bottom:711.781500px;}
.y109{bottom:712.084500px;}
.y7f{bottom:713.851500px;}
.y146{bottom:720.573000px;}
.ya{bottom:723.078000px;}
.y5d{bottom:726.922500px;}
.ya4{bottom:727.335000px;}
.ye5{bottom:730.267500px;}
.y126{bottom:732.105000px;}
.y108{bottom:732.408000px;}
.y145{bottom:740.896500px;}
.y9{bottom:741.010500px;}
.y37{bottom:743.454000px;}
.yc2{bottom:743.784000px;}
.y5c{bottom:747.246000px;}
.ya3{bottom:747.660000px;}
.y125{bottom:752.428500px;}
.y107{bottom:752.731500px;}
.y7e{bottom:758.704500px;}
.y8{bottom:758.944500px;}
.y36{bottom:763.777500px;}
.ye4{bottom:764.041500px;}
.yc1{bottom:764.107500px;}
.y5b{bottom:767.569500px;}
.ya2{bottom:767.983500px;}
.y144{bottom:769.429500px;}
.y106{bottom:773.056500px;}
.y7{bottom:776.877000px;}
.y7d{bottom:779.028000px;}
.y35{bottom:784.101000px;}
.ye3{bottom:784.365000px;}
.y124{bottom:786.201000px;}
.y5a{bottom:787.893000px;}
.ya1{bottom:788.307000px;}
.yc0{bottom:792.642000px;}
.y105{bottom:793.380000px;}
.y143{bottom:794.572500px;}
.y7c{bottom:799.353000px;}
.y34{bottom:804.424500px;}
.ye2{bottom:804.688500px;}
.y6{bottom:805.270500px;}
.y123{bottom:806.526000px;}
.y59{bottom:808.216500px;}
.ya0{bottom:808.630500px;}
.y104{bottom:813.703500px;}
.ybf{bottom:817.785000px;}
.y7b{bottom:819.676500px;}
.y33{bottom:824.749500px;}
.ye1{bottom:825.013500px;}
.y122{bottom:826.849500px;}
.y58{bottom:828.541500px;}
.y9f{bottom:828.954000px;}
.y103{bottom:834.027000px;}
.y7a{bottom:840.000000px;}
.y32{bottom:845.073000px;}
.y57{bottom:848.865000px;}
.y9e{bottom:849.279000px;}
.y102{bottom:854.350500px;}
.y79{bottom:860.323500px;}
.y121{bottom:860.622000px;}
.y31{bottom:865.396500px;}
.y5{bottom:865.815000px;}
.y142{bottom:866.692500px;}
.y56{bottom:869.188500px;}
.y9d{bottom:869.602500px;}
.ye0{bottom:873.322500px;}
.y101{bottom:874.674000px;}
.ybe{bottom:876.442500px;}
.y78{bottom:880.647000px;}
.y120{bottom:880.947000px;}
.y4{bottom:886.737000px;}
.y141{bottom:887.017500px;}
.y55{bottom:889.512000px;}
.y9c{bottom:889.926000px;}
.ydf{bottom:893.646000px;}
.y100{bottom:894.999000px;}
.y30{bottom:896.766000px;}
.y77{bottom:900.972000px;}
.y140{bottom:907.341000px;}
.y54{bottom:909.835500px;}
.y9b{bottom:910.249500px;}
.yde{bottom:913.969500px;}
.y11f{bottom:914.719500px;}
.yff{bottom:915.322500px;}
.y76{bottom:921.295500px;}
.y13f{bottom:927.664500px;}
.y9a{bottom:930.573000px;}
.y3{bottom:932.203500px;}
.y11e{bottom:935.043000px;}
.y2f{bottom:941.619000px;}
.ydd{bottom:942.502500px;}
.y53{bottom:942.840000px;}
.yfe{bottom:946.692000px;}
.y13e{bottom:947.988000px;}
.y99{bottom:950.896500px;}
.y2e{bottom:961.942500px;}
.y2{bottom:965.080500px;}
.ydc{bottom:967.647000px;}
.y11d{bottom:968.817000px;}
.y98{bottom:971.221500px;}
.y52{bottom:976.306500px;}
.y13d{bottom:976.521000px;}
.y2d{bottom:982.266000px;}
.y11c{bottom:989.140500px;}
.y97{bottom:991.545000px;}
.y1{bottom:997.957500px;}
.y13c{bottom:998.286000px;}
.y2c{bottom:1002.591000px;}
.y51{bottom:1009.771500px;}
.y96{bottom:1011.868500px;}
.y2b{bottom:1022.914500px;}
.y50{bottom:1030.096500px;}
.y95{bottom:1032.192000px;}
.y2a{bottom:1043.238000px;}
.y29{bottom:1063.561500px;}
.h5{height:41.125613px;}
.h4{height:41.484266px;}
.h11{height:43.723673px;}
.h6{height:44.831700px;}
.h9{height:45.032765px;}
.ha{height:45.425492px;}
.hf{height:46.210948px;}
.h3{height:47.916442px;}
.hc{height:49.090950px;}
.h2{height:49.351066px;}
.h7{height:49.479619px;}
.hb{height:49.781453px;}
.h10{height:56.080726px;}
.he{height:56.935496px;}
.hd{height:56.941496px;}
.h8{height:59.737577px;}
.h1{height:71.684926px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:162.000000px;}
.x1a{left:173.526000px;}
.x16{left:178.270500px;}
.xc{left:182.454000px;}
.xa{left:187.405500px;}
.xd{left:189.000000px;}
.x2{left:191.797500px;}
.x8{left:202.909500px;}
.xf{left:217.483500px;}
.x7{left:225.325500px;}
.x1{left:231.939000px;}
.x10{left:234.325500px;}
.x14{left:250.240500px;}
.x13{left:277.905000px;}
.x19{left:279.328500px;}
.xe{left:284.173500px;}
.x11{left:288.927000px;}
.x15{left:290.283000px;}
.x12{left:294.294000px;}
.x18{left:327.184500px;}
.x5{left:346.023000px;}
.x17{left:360.984000px;}
.x4{left:406.458000px;}
.x3{left:424.564500px;}
.x6{left:431.197500px;}
.x1b{left:450.817500px;}
.xb{left:454.909500px;}
@media print{
.v3{vertical-align:-9.477333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v2{vertical-align:21.114667pt;}
.lsb{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.000452pt;}
.ls4a{letter-spacing:0.058182pt;}
.ls30{letter-spacing:0.422003pt;}
.ls37{letter-spacing:1.338183pt;}
.ls3a{letter-spacing:1.629092pt;}
.ls1d{letter-spacing:1.634603pt;}
.ls1b{letter-spacing:2.650641pt;}
.ls25{letter-spacing:2.654292pt;}
.ls1e{letter-spacing:2.658717pt;}
.ls1f{letter-spacing:3.905181pt;}
.ls36{letter-spacing:5.934550pt;}
.lse{letter-spacing:12.160010pt;}
.ls48{letter-spacing:12.509101pt;}
.ls11{letter-spacing:12.916374pt;}
.ls3d{letter-spacing:12.974556pt;}
.ls24{letter-spacing:13.149102pt;}
.ls39{letter-spacing:13.614557pt;}
.ls9{letter-spacing:14.138194pt;}
.lsa{letter-spacing:14.196375pt;}
.ls2c{letter-spacing:14.429103pt;}
.lsf{letter-spacing:14.545467pt;}
.ls26{letter-spacing:14.778194pt;}
.ls46{letter-spacing:15.592740pt;}
.ls38{letter-spacing:15.709104pt;}
.ls20{letter-spacing:15.767286pt;}
.ls16{letter-spacing:15.940267pt;}
.lsd{letter-spacing:16.174559pt;}
.ls49{letter-spacing:16.407286pt;}
.ls6{letter-spacing:16.640014pt;}
.ls2f{letter-spacing:16.756378pt;}
.ls5{letter-spacing:16.814559pt;}
.ls17{letter-spacing:17.221833pt;}
.ls21{letter-spacing:17.338196pt;}
.ls47{letter-spacing:17.687287pt;}
.ls33{letter-spacing:17.803651pt;}
.ls12{letter-spacing:17.978197pt;}
.ls19{letter-spacing:18.734561pt;}
.ls23{letter-spacing:18.816092pt;}
.ls32{letter-spacing:18.909107pt;}
.ls27{letter-spacing:18.967289pt;}
.ls0{letter-spacing:18.968790pt;}
.ls13{letter-spacing:19.025470pt;}
.ls1c{letter-spacing:19.258198pt;}
.ls2b{letter-spacing:19.898198pt;}
.ls2a{letter-spacing:20.130926pt;}
.ls4{letter-spacing:20.305471pt;}
.ls4f{letter-spacing:20.829108pt;}
.ls18{letter-spacing:21.120018pt;}
.ls10{letter-spacing:21.410927pt;}
.ls4c{letter-spacing:21.469109pt;}
.ls31{letter-spacing:21.543925pt;}
.ls3f{letter-spacing:21.643654pt;}
.ls42{letter-spacing:21.701836pt;}
.ls44{letter-spacing:21.760018pt;}
.ls43{letter-spacing:21.818200pt;}
.ls40{letter-spacing:22.516382pt;}
.ls8{letter-spacing:22.923655pt;}
.ls7{letter-spacing:22.981837pt;}
.ls3e{letter-spacing:23.214565pt;}
.lsc{letter-spacing:23.680020pt;}
.ls4d{letter-spacing:23.854565pt;}
.ls1a{letter-spacing:23.970929pt;}
.ls45{letter-spacing:24.087293pt;}
.ls2e{letter-spacing:24.320020pt;}
.ls3{letter-spacing:24.972917pt;}
.ls4e{letter-spacing:25.018203pt;}
.ls2{letter-spacing:25.026051pt;}
.ls2d{letter-spacing:25.774567pt;}
.ls28{letter-spacing:26.414567pt;}
.ls1{letter-spacing:26.620067pt;}
.ls35{letter-spacing:28.683660pt;}
.ls15{letter-spacing:29.090933pt;}
.ls34{letter-spacing:30.312753pt;}
.ls14{letter-spacing:32.872755pt;}
.ls3b{letter-spacing:65.396418pt;}
.ls41{letter-spacing:88.901892pt;}
.ls29{letter-spacing:101.701903pt;}
.ls3c{letter-spacing:109.091000pt;}
.ls4b{letter-spacing:233.309285pt;}
.wsc4{word-spacing:-58.181867pt;}
.ws70{word-spacing:-45.265492pt;}
.ws3b{word-spacing:-37.899668pt;}
.wscb{word-spacing:-21.783291pt;}
.ws92{word-spacing:-20.561472pt;}
.wsb9{word-spacing:-20.212380pt;}
.ws10{word-spacing:-19.893320pt;}
.wscc{word-spacing:-19.128267pt;}
.ws69{word-spacing:-17.361469pt;}
.ws75{word-spacing:-16.162923pt;}
.wse{word-spacing:-14.760588pt;}
.ws3d{word-spacing:-14.545467pt;}
.ws1b{word-spacing:-13.283467pt;}
.ws95{word-spacing:-3.537457pt;}
.ws3a{word-spacing:-3.490912pt;}
.wsd2{word-spacing:-3.258185pt;}
.ws47{word-spacing:-3.246548pt;}
.ws8c{word-spacing:-3.200003pt;}
.wse2{word-spacing:-3.188366pt;}
.ws11{word-spacing:-3.188032pt;}
.ws97{word-spacing:-3.141821pt;}
.ws37{word-spacing:-3.083639pt;}
.ws2c{word-spacing:-3.025457pt;}
.ws6b{word-spacing:-2.909093pt;}
.ws63{word-spacing:-2.839275pt;}
.wsae{word-spacing:-2.792730pt;}
.wsd3{word-spacing:-2.618184pt;}
.ws9a{word-spacing:-2.606548pt;}
.wsc3{word-spacing:-2.443638pt;}
.ws3c{word-spacing:-2.385457pt;}
.ws2d{word-spacing:-2.327275pt;}
.wsa{word-spacing:-2.125355pt;}
.wsd7{word-spacing:-2.094547pt;}
.ws36{word-spacing:-2.036365pt;}
.ws41{word-spacing:-1.978183pt;}
.ws94{word-spacing:-1.920002pt;}
.ws96{word-spacing:-1.861820pt;}
.ws2e{word-spacing:-1.803638pt;}
.ws7b{word-spacing:-1.733820pt;}
.wsdd{word-spacing:-1.687274pt;}
.ws48{word-spacing:-1.617456pt;}
.ws60{word-spacing:-1.512729pt;}
.wsbd{word-spacing:-1.454547pt;}
.ws62{word-spacing:-1.221819pt;}
.ws64{word-spacing:-1.163637pt;}
.ws79{word-spacing:-1.105455pt;}
.wsa2{word-spacing:-0.989092pt;}
.ws91{word-spacing:-0.977455pt;}
.wsbe{word-spacing:-0.930910pt;}
.wsc9{word-spacing:-0.872728pt;}
.wsc6{word-spacing:-0.814546pt;}
.ws71{word-spacing:-0.756364pt;}
.ws9b{word-spacing:-0.744728pt;}
.ws7{word-spacing:-0.690740pt;}
.ws23{word-spacing:-0.581819pt;}
.wsca{word-spacing:-0.523637pt;}
.wsdb{word-spacing:-0.465455pt;}
.ws28{word-spacing:-0.349091pt;}
.wsa4{word-spacing:-0.290909pt;}
.ws8a{word-spacing:-0.162909pt;}
.wsaa{word-spacing:-0.116364pt;}
.wsac{word-spacing:-0.058182pt;}
.ws8b{word-spacing:-0.046545pt;}
.ws80{word-spacing:-0.042507pt;}
.wsf{word-spacing:-0.037194pt;}
.ws0{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.011636pt;}
.ws3f{word-spacing:0.116364pt;}
.ws29{word-spacing:0.232727pt;}
.ws2a{word-spacing:0.290909pt;}
.ws78{word-spacing:0.349091pt;}
.ws7c{word-spacing:0.360728pt;}
.ws6c{word-spacing:0.465455pt;}
.wsd1{word-spacing:0.523637pt;}
.ws1{word-spacing:0.637606pt;}
.ws88{word-spacing:0.640001pt;}
.ws42{word-spacing:0.698182pt;}
.wsb7{word-spacing:0.814546pt;}
.ws99{word-spacing:0.872728pt;}
.ws98{word-spacing:1.105455pt;}
.ws6e{word-spacing:1.163637pt;}
.ws90{word-spacing:1.175274pt;}
.wsd6{word-spacing:1.221819pt;}
.wsab{word-spacing:1.280001pt;}
.ws89{word-spacing:1.454547pt;}
.ws33{word-spacing:1.512729pt;}
.ws61{word-spacing:1.570910pt;}
.wsb8{word-spacing:1.582547pt;}
.wsc5{word-spacing:1.629092pt;}
.ws58{word-spacing:1.687274pt;}
.ws55{word-spacing:1.745456pt;}
.wsd9{word-spacing:1.803638pt;}
.ws5{word-spacing:1.859685pt;}
.ws65{word-spacing:1.861820pt;}
.ws4a{word-spacing:1.873456pt;}
.ws66{word-spacing:1.920002pt;}
.ws8{word-spacing:1.965953pt;}
.ws6a{word-spacing:1.978183pt;}
.ws9{word-spacing:2.019087pt;}
.ws21{word-spacing:2.036365pt;}
.ws6f{word-spacing:2.164365pt;}
.ws20{word-spacing:2.210911pt;}
.ws1f{word-spacing:2.269093pt;}
.wsb{word-spacing:2.284756pt;}
.ws68{word-spacing:2.385457pt;}
.ws6{word-spacing:2.497292pt;}
.ws9d{word-spacing:2.560002pt;}
.ws5a{word-spacing:2.618184pt;}
.ws3e{word-spacing:2.676366pt;}
.wscd{word-spacing:2.792730pt;}
.wsd4{word-spacing:2.850911pt;}
.ws53{word-spacing:2.862548pt;}
.ws30{word-spacing:2.909093pt;}
.wsa1{word-spacing:2.967275pt;}
.wsb5{word-spacing:3.025457pt;}
.wsb6{word-spacing:3.083639pt;}
.wsc8{word-spacing:3.095275pt;}
.ws2f{word-spacing:3.141821pt;}
.ws1a{word-spacing:3.188032pt;}
.ws22{word-spacing:3.200003pt;}
.ws31{word-spacing:3.316366pt;}
.ws4d{word-spacing:3.374548pt;}
.ws2b{word-spacing:3.432730pt;}
.wsd{word-spacing:3.453701pt;}
.ws46{word-spacing:3.490912pt;}
.wsd5{word-spacing:3.549094pt;}
.ws4c{word-spacing:3.607276pt;}
.ws8f{word-spacing:3.665458pt;}
.wsc2{word-spacing:3.723639pt;}
.wsc0{word-spacing:3.735276pt;}
.ws7a{word-spacing:3.793458pt;}
.ws32{word-spacing:3.840003pt;}
.ws7d{word-spacing:3.898185pt;}
.ws1d{word-spacing:4.072731pt;}
.ws85{word-spacing:4.084367pt;}
.ws44{word-spacing:4.130913pt;}
.ws50{word-spacing:4.189094pt;}
.wsc{word-spacing:4.208202pt;}
.wsa5{word-spacing:4.247276pt;}
.wscf{word-spacing:4.305458pt;}
.wsce{word-spacing:4.421822pt;}
.ws2{word-spacing:4.569513pt;}
.ws40{word-spacing:4.596367pt;}
.ws81{word-spacing:4.654549pt;}
.wsa3{word-spacing:4.666186pt;}
.ws6d{word-spacing:4.712731pt;}
.ws59{word-spacing:4.770913pt;}
.ws13{word-spacing:4.888316pt;}
.ws5b{word-spacing:4.898913pt;}
.ws16{word-spacing:4.952076pt;}
.ws5c{word-spacing:4.957095pt;}
.ws39{word-spacing:5.003641pt;}
.ws7f{word-spacing:5.178186pt;}
.ws93{word-spacing:5.236368pt;}
.ws4b{word-spacing:5.248004pt;}
.ws7e{word-spacing:5.410914pt;}
.ws67{word-spacing:5.469095pt;}
.ws17{word-spacing:5.525922pt;}
.wsbf{word-spacing:5.527277pt;}
.ws77{word-spacing:5.585459pt;}
.ws1e{word-spacing:5.760005pt;}
.wsc1{word-spacing:5.818187pt;}
.wsc7{word-spacing:5.934550pt;}
.ws4{word-spacing:5.950993pt;}
.ws3{word-spacing:6.004127pt;}
.wsa9{word-spacing:6.109096pt;}
.ws72{word-spacing:6.167278pt;}
.ws45{word-spacing:6.225460pt;}
.ws8e{word-spacing:6.341823pt;}
.wsd0{word-spacing:6.400005pt;}
.ws14{word-spacing:6.429198pt;}
.ws83{word-spacing:6.528005pt;}
.ws54{word-spacing:6.586187pt;}
.ws24{word-spacing:6.632733pt;}
.ws8d{word-spacing:6.749097pt;}
.ws56{word-spacing:6.807278pt;}
.ws49{word-spacing:6.865460pt;}
.ws18{word-spacing:6.907403pt;}
.ws43{word-spacing:6.923642pt;}
.ws82{word-spacing:6.981824pt;}
.ws12{word-spacing:7.013670pt;}
.ws4e{word-spacing:7.447279pt;}
.ws4f{word-spacing:7.505461pt;}
.ws38{word-spacing:7.517097pt;}
.wsd8{word-spacing:7.621825pt;}
.wsdc{word-spacing:7.680006pt;}
.wsda{word-spacing:7.738188pt;}
.ws5d{word-spacing:7.749825pt;}
.ws5e{word-spacing:7.808007pt;}
.ws87{word-spacing:7.970916pt;}
.ws52{word-spacing:8.203643pt;}
.ws9c{word-spacing:8.261825pt;}
.ws26{word-spacing:8.378189pt;}
.ws27{word-spacing:8.436371pt;}
.wse4{word-spacing:8.494553pt;}
.ws19{word-spacing:8.501419pt;}
.ws51{word-spacing:8.727280pt;}
.ws25{word-spacing:9.134553pt;}
.wsad{word-spacing:9.600008pt;}
.ws15{word-spacing:11.859479pt;}
.ws86{word-spacing:12.280608pt;}
.ws84{word-spacing:12.282518pt;}
.ws57{word-spacing:12.578920pt;}
.ws35{word-spacing:14.545467pt;}
.wsaf{word-spacing:25.867658pt;}
.wse5{word-spacing:34.850938pt;}
.wsbc{word-spacing:47.604403pt;}
.ws34{word-spacing:47.820800pt;}
.wsa0{word-spacing:49.221859pt;}
.wsbb{word-spacing:53.003681pt;}
.wsb4{word-spacing:55.458955pt;}
.wsa8{word-spacing:56.494593pt;}
.ws1c{word-spacing:57.384800pt;}
.ws9f{word-spacing:60.509141pt;}
.wsba{word-spacing:64.756418pt;}
.ws76{word-spacing:66.370725pt;}
.wsb2{word-spacing:74.833517pt;}
.wse0{word-spacing:78.312793pt;}
.wsa7{word-spacing:88.610983pt;}
.wsb1{word-spacing:104.273541pt;}
.wse1{word-spacing:109.393546pt;}
.ws74{word-spacing:121.425556pt;}
.ws9e{word-spacing:135.424113pt;}
.ws73{word-spacing:139.461934pt;}
.wsdf{word-spacing:141.731027pt;}
.wsb3{word-spacing:146.280849pt;}
.wsb0{word-spacing:146.967395pt;}
.wse3{word-spacing:167.575412pt;}
.wsa6{word-spacing:171.403779pt;}
.wsde{word-spacing:541.265906pt;}
._38{margin-left:-9.162187pt;}
._30{margin-left:-7.618391pt;}
._6{margin-left:-5.844725pt;}
._3{margin-left:-4.250709pt;}
._12{margin-left:-3.234691pt;}
._0{margin-left:-2.295387pt;}
._1{margin-left:-0.903276pt;}
._21{width:2.179023pt;}
._8{width:3.475793pt;}
._20{width:6.116903pt;}
._3a{width:10.414554pt;}
._9{width:11.530049pt;}
._15{width:13.400316pt;}
._a{width:15.313184pt;}
._7{width:16.471499pt;}
._16{width:17.396378pt;}
._11{width:19.171561pt;}
._4{width:20.722208pt;}
._5{width:21.997421pt;}
._b{width:23.378901pt;}
._19{width:24.870196pt;}
._e{width:26.821841pt;}
._14{width:27.957844pt;}
._2{width:29.329894pt;}
._1a{width:30.764374pt;}
._17{width:31.767299pt;}
._c{width:33.059895pt;}
._18{width:34.791416pt;}
._d{width:36.157233pt;}
._f{width:37.897095pt;}
._1f{width:41.602948pt;}
._10{width:43.403673pt;}
._39{width:45.890545pt;}
._13{width:63.761067pt;}
._34{width:74.589153pt;}
._3b{width:76.513067pt;}
._2a{width:87.770143pt;}
._32{width:106.120292pt;}
._35{width:108.800091pt;}
._2f{width:111.968205pt;}
._2c{width:112.872821pt;}
._28{width:120.087373pt;}
._3d{width:125.381923pt;}
._29{width:126.746399pt;}
._3e{width:132.945565pt;}
._1e{width:135.415498pt;}
._25{width:146.734668pt;}
._26{width:148.971873pt;}
._33{width:152.404603pt;}
._22{width:161.047407pt;}
._27{width:166.892132pt;}
._1c{width:169.393708pt;}
._36{width:175.651055pt;}
._2d{width:188.244877pt;}
._41{width:189.524878pt;}
._40{width:210.036539pt;}
._1d{width:211.692170pt;}
._24{width:232.669285pt;}
._23{width:252.710386pt;}
._2e{width:256.698396pt;}
._3c{width:257.627965pt;}
._37{width:264.552948pt;}
._2b{width:313.863537pt;}
._1b{width:325.876635pt;}
._31{width:362.880302pt;}
._3f{width:401.163971pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:56.149333pt;}
.y75{bottom:96.000000pt;}
.y159{bottom:96.562667pt;}
.ydb{bottom:98.472000pt;}
.y4f{bottom:105.628000pt;}
.ybd{bottom:105.636000pt;}
.yfd{bottom:105.862667pt;}
.y27{bottom:107.172000pt;}
.y74{bottom:114.065333pt;}
.y158{bottom:114.628000pt;}
.yda{bottom:116.537333pt;}
.y4e{bottom:123.693333pt;}
.ybc{bottom:123.701333pt;}
.yfc{bottom:123.928000pt;}
.y26{bottom:125.237333pt;}
.y73{bottom:132.132000pt;}
.y157{bottom:132.693333pt;}
.y94{bottom:133.558667pt;}
.yd9{bottom:134.602667pt;}
.y11b{bottom:140.465333pt;}
.y4d{bottom:141.758667pt;}
.yfb{bottom:141.993333pt;}
.y25{bottom:143.302667pt;}
.y72{bottom:150.197333pt;}
.y93{bottom:151.624000pt;}
.yd8{bottom:152.668000pt;}
.y11a{bottom:158.530667pt;}
.y4c{bottom:159.825333pt;}
.yfa{bottom:160.060000pt;}
.y24{bottom:161.369333pt;}
.ybb{bottom:163.640000pt;}
.y71{bottom:168.262667pt;}
.y156{bottom:168.825333pt;}
.y92{bottom:169.689333pt;}
.yd7{bottom:170.733333pt;}
.y119{bottom:176.596000pt;}
.y4b{bottom:177.890667pt;}
.yf9{bottom:178.125333pt;}
.y23{bottom:179.434667pt;}
.yba{bottom:181.705333pt;}
.y155{bottom:186.890667pt;}
.y13b{bottom:187.696000pt;}
.yd6{bottom:188.800000pt;}
.y4a{bottom:195.956000pt;}
.y70{bottom:196.146667pt;}
.yf8{bottom:196.190667pt;}
.y22{bottom:197.500000pt;}
.y154{bottom:204.956000pt;}
.y13a{bottom:205.761333pt;}
.y118{bottom:206.617333pt;}
.yd5{bottom:206.865333pt;}
.yb9{bottom:207.068000pt;}
.y91{bottom:209.628000pt;}
.y49{bottom:214.021333pt;}
.yf7{bottom:214.256000pt;}
.y21{bottom:215.565333pt;}
.y139{bottom:223.826667pt;}
.y117{bottom:224.682667pt;}
.yd4{bottom:224.930667pt;}
.y90{bottom:227.693333pt;}
.yb8{bottom:229.417333pt;}
.y48{bottom:232.086667pt;}
.yf6{bottom:232.321333pt;}
.y20{bottom:233.630667pt;}
.y6f{bottom:235.881333pt;}
.y153{bottom:238.961333pt;}
.yd3{bottom:242.996000pt;}
.yb7{bottom:247.482667pt;}
.y47{bottom:250.153333pt;}
.yf5{bottom:250.388000pt;}
.y1f{bottom:251.697333pt;}
.y8f{bottom:253.056000pt;}
.y138{bottom:253.848000pt;}
.y6e{bottom:253.946667pt;}
.y116{bottom:257.802667pt;}
.yb6{bottom:265.549333pt;}
.y152{bottom:266.845333pt;}
.y46{bottom:268.218667pt;}
.yf4{bottom:268.453333pt;}
.y1e{bottom:269.762667pt;}
.y137{bottom:271.913333pt;}
.y6d{bottom:272.012000pt;}
.y8e{bottom:275.406667pt;}
.yd2{bottom:282.934667pt;}
.y45{bottom:286.284000pt;}
.yf3{bottom:286.518667pt;}
.y1d{bottom:287.828000pt;}
.y6c{bottom:290.077333pt;}
.yd1{bottom:301.000000pt;}
.y136{bottom:301.934667pt;}
.y44{bottom:304.349333pt;}
.yf2{bottom:304.584000pt;}
.y115{bottom:304.622667pt;}
.y151{bottom:306.714667pt;}
.yb5{bottom:307.782667pt;}
.y8d{bottom:317.640000pt;}
.yd0{bottom:319.065333pt;}
.y135{bottom:320.000000pt;}
.y1c{bottom:320.948000pt;}
.y114{bottom:322.688000pt;}
.y6b{bottom:323.264000pt;}
.yb4{bottom:325.849333pt;}
.y43{bottom:332.233333pt;}
.yf1{bottom:332.468000pt;}
.y8c{bottom:335.706667pt;}
.y150{bottom:336.736000pt;}
.y134{bottom:338.065333pt;}
.y113{bottom:340.753333pt;}
.yb3{bottom:343.914667pt;}
.ycf{bottom:344.428000pt;}
.y6a{bottom:353.010667pt;}
.y14f{bottom:354.801333pt;}
.yb2{bottom:361.980000pt;}
.y8b{bottom:363.589333pt;}
.y42{bottom:365.885333pt;}
.yce{bottom:366.778667pt;}
.y1b{bottom:367.768000pt;}
.y133{bottom:368.086667pt;}
.yf0{bottom:372.337333pt;}
.y112{bottom:374.760000pt;}
.yb1{bottom:380.045333pt;}
.y69{bottom:382.758667pt;}
.y14e{bottom:384.822667pt;}
.y132{bottom:386.152000pt;}
.y1a{bottom:387.692000pt;}
.yef{bottom:390.402667pt;}
.y8a{bottom:397.241333pt;}
.y14d{bottom:402.888000pt;}
.y19{bottom:403.633333pt;}
.y131{bottom:404.217333pt;}
.y111{bottom:404.780000pt;}
.yb0{bottom:407.929333pt;}
.yee{bottom:408.469333pt;}
.ycd{bottom:409.012000pt;}
.y41{bottom:412.704000pt;}
.y68{bottom:415.944000pt;}
.y18{bottom:419.573333pt;}
.y130{bottom:422.282667pt;}
.yed{bottom:426.534667pt;}
.ycc{bottom:427.078667pt;}
.y40{bottom:430.769333pt;}
.y14c{bottom:432.909333pt;}
.y67{bottom:434.009333pt;}
.y110{bottom:434.801333pt;}
.y17{bottom:435.513333pt;}
.y89{bottom:444.060000pt;}
.yaf{bottom:447.798667pt;}
.y16{bottom:451.453333pt;}
.y66{bottom:452.074667pt;}
.y12f{bottom:452.304000pt;}
.yec{bottom:454.418667pt;}
.ycb{bottom:454.961333pt;}
.y3f{bottom:460.790667pt;}
.y88{bottom:462.126667pt;}
.y14b{bottom:462.929333pt;}
.y10f{bottom:464.821333pt;}
.yae{bottom:465.864000pt;}
.y15{bottom:467.393333pt;}
.y65{bottom:470.141333pt;}
.y12e{bottom:470.369333pt;}
.y3e{bottom:478.856000pt;}
.y87{bottom:480.192000pt;}
.y10e{bottom:482.888000pt;}
.y14{bottom:483.334667pt;}
.yad{bottom:483.930667pt;}
.yeb{bottom:488.069333pt;}
.y64{bottom:488.206667pt;}
.y14a{bottom:492.950667pt;}
.yca{bottom:494.832000pt;}
.y86{bottom:498.257333pt;}
.y13{bottom:499.274667pt;}
.y12d{bottom:500.390667pt;}
.yac{bottom:501.996000pt;}
.y3d{bottom:508.877333pt;}
.yc9{bottom:512.897333pt;}
.y12{bottom:515.214667pt;}
.y63{bottom:516.090667pt;}
.y85{bottom:516.322667pt;}
.y10d{bottom:516.893333pt;}
.y12c{bottom:518.456000pt;}
.yab{bottom:520.061333pt;}
.y149{bottom:520.834667pt;}
.y3c{bottom:526.942667pt;}
.yc8{bottom:530.962667pt;}
.y11{bottom:531.154667pt;}
.y84{bottom:534.388000pt;}
.yea{bottom:534.889333pt;}
.y10c{bottom:534.958667pt;}
.yaa{bottom:538.126667pt;}
.y3b{bottom:545.008000pt;}
.y10{bottom:547.094667pt;}
.y12b{bottom:548.476000pt;}
.yc7{bottom:549.028000pt;}
.y83{bottom:552.454667pt;}
.ye9{bottom:552.954667pt;}
.y10b{bottom:553.024000pt;}
.y148{bottom:554.485333pt;}
.y62{bottom:555.825333pt;}
.ya9{bottom:556.192000pt;}
.yf{bottom:563.034667pt;}
.y12a{bottom:566.542667pt;}
.yc6{bottom:567.093333pt;}
.y82{bottom:570.520000pt;}
.y61{bottom:573.890667pt;}
.ya8{bottom:574.258667pt;}
.y3a{bottom:575.029333pt;}
.ye{bottom:578.976000pt;}
.ye8{bottom:582.976000pt;}
.y129{bottom:584.608000pt;}
.yc5{bottom:585.160000pt;}
.y10a{bottom:586.144000pt;}
.y81{bottom:588.585333pt;}
.y60{bottom:591.956000pt;}
.ya7{bottom:592.324000pt;}
.y39{bottom:593.094667pt;}
.yd{bottom:594.916000pt;}
.ye7{bottom:601.041333pt;}
.y128{bottom:602.673333pt;}
.yc4{bottom:603.225333pt;}
.y80{bottom:606.650667pt;}
.y5f{bottom:610.021333pt;}
.ya6{bottom:610.389333pt;}
.yc{bottom:610.856000pt;}
.y38{bottom:620.978667pt;}
.yc3{bottom:621.290667pt;}
.y147{bottom:622.442667pt;}
.yb{bottom:626.796000pt;}
.y5e{bottom:628.086667pt;}
.ya5{bottom:628.454667pt;}
.ye6{bottom:631.061333pt;}
.y127{bottom:632.694667pt;}
.y109{bottom:632.964000pt;}
.y7f{bottom:634.534667pt;}
.y146{bottom:640.509333pt;}
.ya{bottom:642.736000pt;}
.y5d{bottom:646.153333pt;}
.ya4{bottom:646.520000pt;}
.ye5{bottom:649.126667pt;}
.y126{bottom:650.760000pt;}
.y108{bottom:651.029333pt;}
.y145{bottom:658.574667pt;}
.y9{bottom:658.676000pt;}
.y37{bottom:660.848000pt;}
.yc2{bottom:661.141333pt;}
.y5c{bottom:664.218667pt;}
.ya3{bottom:664.586667pt;}
.y125{bottom:668.825333pt;}
.y107{bottom:669.094667pt;}
.y7e{bottom:674.404000pt;}
.y8{bottom:674.617333pt;}
.y36{bottom:678.913333pt;}
.ye4{bottom:679.148000pt;}
.yc1{bottom:679.206667pt;}
.y5b{bottom:682.284000pt;}
.ya2{bottom:682.652000pt;}
.y144{bottom:683.937333pt;}
.y106{bottom:687.161333pt;}
.y7{bottom:690.557333pt;}
.y7d{bottom:692.469333pt;}
.y35{bottom:696.978667pt;}
.ye3{bottom:697.213333pt;}
.y124{bottom:698.845333pt;}
.y5a{bottom:700.349333pt;}
.ya1{bottom:700.717333pt;}
.yc0{bottom:704.570667pt;}
.y105{bottom:705.226667pt;}
.y143{bottom:706.286667pt;}
.y7c{bottom:710.536000pt;}
.y34{bottom:715.044000pt;}
.ye2{bottom:715.278667pt;}
.y6{bottom:715.796000pt;}
.y123{bottom:716.912000pt;}
.y59{bottom:718.414667pt;}
.ya0{bottom:718.782667pt;}
.y104{bottom:723.292000pt;}
.ybf{bottom:726.920000pt;}
.y7b{bottom:728.601333pt;}
.y33{bottom:733.110667pt;}
.ye1{bottom:733.345333pt;}
.y122{bottom:734.977333pt;}
.y58{bottom:736.481333pt;}
.y9f{bottom:736.848000pt;}
.y103{bottom:741.357333pt;}
.y7a{bottom:746.666667pt;}
.y32{bottom:751.176000pt;}
.y57{bottom:754.546667pt;}
.y9e{bottom:754.914667pt;}
.y102{bottom:759.422667pt;}
.y79{bottom:764.732000pt;}
.y121{bottom:764.997333pt;}
.y31{bottom:769.241333pt;}
.y5{bottom:769.613333pt;}
.y142{bottom:770.393333pt;}
.y56{bottom:772.612000pt;}
.y9d{bottom:772.980000pt;}
.ye0{bottom:776.286667pt;}
.y101{bottom:777.488000pt;}
.ybe{bottom:779.060000pt;}
.y78{bottom:782.797333pt;}
.y120{bottom:783.064000pt;}
.y4{bottom:788.210667pt;}
.y141{bottom:788.460000pt;}
.y55{bottom:790.677333pt;}
.y9c{bottom:791.045333pt;}
.ydf{bottom:794.352000pt;}
.y100{bottom:795.554667pt;}
.y30{bottom:797.125333pt;}
.y77{bottom:800.864000pt;}
.y140{bottom:806.525333pt;}
.y54{bottom:808.742667pt;}
.y9b{bottom:809.110667pt;}
.yde{bottom:812.417333pt;}
.y11f{bottom:813.084000pt;}
.yff{bottom:813.620000pt;}
.y76{bottom:818.929333pt;}
.y13f{bottom:824.590667pt;}
.y9a{bottom:827.176000pt;}
.y3{bottom:828.625333pt;}
.y11e{bottom:831.149333pt;}
.y2f{bottom:836.994667pt;}
.ydd{bottom:837.780000pt;}
.y53{bottom:838.080000pt;}
.yfe{bottom:841.504000pt;}
.y13e{bottom:842.656000pt;}
.y99{bottom:845.241333pt;}
.y2e{bottom:855.060000pt;}
.y2{bottom:857.849333pt;}
.ydc{bottom:860.130667pt;}
.y11d{bottom:861.170667pt;}
.y98{bottom:863.308000pt;}
.y52{bottom:867.828000pt;}
.y13d{bottom:868.018667pt;}
.y2d{bottom:873.125333pt;}
.y11c{bottom:879.236000pt;}
.y97{bottom:881.373333pt;}
.y1{bottom:887.073333pt;}
.y13c{bottom:887.365333pt;}
.y2c{bottom:891.192000pt;}
.y51{bottom:897.574667pt;}
.y96{bottom:899.438667pt;}
.y2b{bottom:909.257333pt;}
.y50{bottom:915.641333pt;}
.y95{bottom:917.504000pt;}
.y2a{bottom:927.322667pt;}
.y29{bottom:945.388000pt;}
.h5{height:36.556100pt;}
.h4{height:36.874903pt;}
.h11{height:38.865487pt;}
.h6{height:39.850400pt;}
.h9{height:40.029124pt;}
.ha{height:40.378215pt;}
.hf{height:41.076398pt;}
.h3{height:42.592393pt;}
.hc{height:43.636400pt;}
.h2{height:43.867614pt;}
.h7{height:43.981884pt;}
.hb{height:44.250180pt;}
.h10{height:49.849534pt;}
.he{height:50.609330pt;}
.hd{height:50.614663pt;}
.h8{height:53.100068pt;}
.h1{height:63.719934pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:144.000000pt;}
.x1a{left:154.245333pt;}
.x16{left:158.462667pt;}
.xc{left:162.181333pt;}
.xa{left:166.582667pt;}
.xd{left:168.000000pt;}
.x2{left:170.486667pt;}
.x8{left:180.364000pt;}
.xf{left:193.318667pt;}
.x7{left:200.289333pt;}
.x1{left:206.168000pt;}
.x10{left:208.289333pt;}
.x14{left:222.436000pt;}
.x13{left:247.026667pt;}
.x19{left:248.292000pt;}
.xe{left:252.598667pt;}
.x11{left:256.824000pt;}
.x15{left:258.029333pt;}
.x12{left:261.594667pt;}
.x18{left:290.830667pt;}
.x5{left:307.576000pt;}
.x17{left:320.874667pt;}
.x4{left:361.296000pt;}
.x3{left:377.390667pt;}
.x6{left:383.286667pt;}
.x1b{left:400.726667pt;}
.xb{left:404.364000pt;}
}




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