
    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_174838bb71d5c07b66956540.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.897000;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_e034133e88d91de66392eafc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.909000;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_e59c68600513bb97e723784e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4b8bbfaa9b360e77a1e467c9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_933bf9aecdbead367513840a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001000;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_b15851cf056ef33fbd4435b6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.923000;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_f5e760a10e40d90df6dd262f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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_da661eb608918529f4d5daff.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.922000;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_ca889ecbbdcf007291c51bcf.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8386be848d0a0d3c16d120f8.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8d05417b01692ae21dcb15e4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.046000;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_4e92ed97b5fc9394f2828e13.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.888000;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_121e535404c1591c4d0965d1.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_349dfe9530a1abd87f85114c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_30ccb13ef935df2f5a21c36e.woff2')format("woff");}.fff{font-family:fff;line-height:0.914000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_29152e288540e982c0253cc2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.282000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_5e29422ef3ec8995abb26e69.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.530000;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;}
.ff12{font-family:sans-serif;visibility:hidden;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
.ff15{font-family:sans-serif;visibility:hidden;}
.ff16{font-family:sans-serif;visibility:hidden;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
.ff1a{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_8fe78971fb6549cdf8632e5a.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.635000;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;}
.ff1c{font-family:sans-serif;visibility:hidden;}
.ff1d{font-family:sans-serif;visibility:hidden;}
.ff1e{font-family:sans-serif;visibility:hidden;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:7.882048px;}
.v1{vertical-align:23.754000px;}
.v4{vertical-align:43.454234px;}
.ls1{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.002134px;}
.lsc{letter-spacing:0.003715px;}
.ls2d{letter-spacing:0.018319px;}
.ls2a{letter-spacing:0.022266px;}
.ls17{letter-spacing:1.321557px;}
.ls22{letter-spacing:1.350232px;}
.ls20{letter-spacing:2.981971px;}
.ls35{letter-spacing:2.984915px;}
.ls25{letter-spacing:2.985543px;}
.ls30{letter-spacing:2.987971px;}
.ls27{letter-spacing:2.989500px;}
.ls34{letter-spacing:4.038990px;}
.ls5{letter-spacing:6.283642px;}
.ls4{letter-spacing:6.349096px;}
.ls6{letter-spacing:6.480005px;}
.ls9{letter-spacing:10.865464px;}
.ls29{letter-spacing:11.389100px;}
.ls1e{letter-spacing:16.298195px;}
.ls8{letter-spacing:16.690923px;}
.ls2e{letter-spacing:17.672742px;}
.ls2f{letter-spacing:17.738197px;}
.ls14{letter-spacing:18.196379px;}
.lsa{letter-spacing:20.290926px;}
.ls23{letter-spacing:21.172127px;}
.ls1c{letter-spacing:22.712746px;}
.lsb{letter-spacing:23.286141px;}
.lse{letter-spacing:23.367292px;}
.ls10{letter-spacing:24.349111px;}
.ls11{letter-spacing:25.527294px;}
.ls1d{letter-spacing:25.682915px;}
.ls1b{letter-spacing:25.690127px;}
.ls1a{letter-spacing:26.054915px;}
.lsd{letter-spacing:26.079113px;}
.ls1f{letter-spacing:27.512915px;}
.ls31{letter-spacing:27.752750px;}
.ls24{letter-spacing:27.883660px;}
.ls2b{letter-spacing:27.963113px;}
.ls18{letter-spacing:28.346915px;}
.ls28{letter-spacing:29.061842px;}
.ls2c{letter-spacing:29.085113px;}
.ls19{letter-spacing:30.068915px;}
.ls33{letter-spacing:33.054573px;}
.ls32{letter-spacing:33.120028px;}
.lsf{letter-spacing:34.363665px;}
.ls3{letter-spacing:49.810951px;}
.ls2{letter-spacing:50.400042px;}
.ls0{letter-spacing:50.792770px;}
.ls13{letter-spacing:190.924240px;}
.ls7{letter-spacing:209.192902px;}
.ls16{letter-spacing:331.334515px;}
.ls21{letter-spacing:338.523838px;}
.ls15{letter-spacing:345.403843px;}
.ls12{letter-spacing:346.647562px;}
.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;}
}
.ws91{word-spacing:-345.403843px;}
.wsab{word-spacing:-338.523838px;}
.ws9b{word-spacing:-331.334515px;}
.ws68{word-spacing:-190.924240px;}
.ws44{word-spacing:-42.637126px;}
.ws6a{word-spacing:-18.680743px;}
.ws9e{word-spacing:-18.549834px;}
.ws65{word-spacing:-18.288015px;}
.ws39{word-spacing:-18.183288px;}
.ws29{word-spacing:-6.545460px;}
.ws27{word-spacing:-6.414551px;}
.ws28{word-spacing:-6.349096px;}
.ws74{word-spacing:-3.652367px;}
.wsc5{word-spacing:-3.390548px;}
.wsad{word-spacing:-3.194184px;}
.ws6e{word-spacing:-1.950547px;}
.wsa8{word-spacing:-1.819638px;}
.ws38{word-spacing:-1.492365px;}
.ws87{word-spacing:-1.230546px;}
.wsb7{word-spacing:-0.903273px;}
.ws85{word-spacing:-0.641455px;}
.ws9{word-spacing:-0.576000px;}
.wsb5{word-spacing:-0.445091px;}
.ws35{word-spacing:-0.314182px;}
.ws46{word-spacing:-0.248727px;}
.ws1e{word-spacing:-0.065455px;}
.wsa6{word-spacing:-0.047821px;}
.ws5c{word-spacing:-0.035866px;}
.ws18{word-spacing:0.000000px;}
.ws90{word-spacing:0.013091px;}
.wsb3{word-spacing:0.209455px;}
.ws79{word-spacing:0.274909px;}
.ws60{word-spacing:0.405819px;}
.ws58{word-spacing:0.667637px;}
.ws97{word-spacing:0.994910px;}
.ws4c{word-spacing:1.387638px;}
.ws4f{word-spacing:1.453092px;}
.ws57{word-spacing:1.584001px;}
.wsba{word-spacing:1.714911px;}
.wsbf{word-spacing:1.780365px;}
.ws50{word-spacing:1.911274px;}
.wsa0{word-spacing:1.976729px;}
.wsb1{word-spacing:2.042184px;}
.wsb{word-spacing:2.238547px;}
.ws72{word-spacing:2.304002px;}
.ws8b{word-spacing:2.500366px;}
.ws67{word-spacing:2.565820px;}
.ws8e{word-spacing:2.762184px;}
.ws5e{word-spacing:3.024003px;}
.wsb6{word-spacing:3.089457px;}
.ws4{word-spacing:3.299613px;}
.ws7f{word-spacing:3.351276px;}
.ws2{word-spacing:3.359389px;}
.ws8f{word-spacing:3.547639px;}
.ws8{word-spacing:3.613094px;}
.wsc{word-spacing:3.678549px;}
.ws32{word-spacing:3.809458px;}
.ws34{word-spacing:3.874912px;}
.ws69{word-spacing:3.940367px;}
.ws77{word-spacing:4.005822px;}
.wsb4{word-spacing:4.071276px;}
.wsb2{word-spacing:4.136731px;}
.ws33{word-spacing:4.398549px;}
.ws63{word-spacing:4.464004px;}
.wsd{word-spacing:4.483200px;}
.wsa7{word-spacing:4.529458px;}
.ws36{word-spacing:4.594913px;}
.wsaa{word-spacing:4.725822px;}
.ws45{word-spacing:4.856731px;}
.ws42{word-spacing:4.922186px;}
.ws5f{word-spacing:4.987641px;}
.ws48{word-spacing:5.118550px;}
.ws4b{word-spacing:5.184004px;}
.ws7c{word-spacing:5.249459px;}
.ws7e{word-spacing:5.314914px;}
.ws5{word-spacing:5.379825px;}
.ws84{word-spacing:5.445823px;}
.ws49{word-spacing:5.576732px;}
.ws3d{word-spacing:5.642187px;}
.ws55{word-spacing:6.034914px;}
.wsb9{word-spacing:6.100369px;}
.ws6f{word-spacing:6.231278px;}
.ws61{word-spacing:6.362187px;}
.ws6c{word-spacing:6.558551px;}
.ws6d{word-spacing:6.754915px;}
.ws3b{word-spacing:6.820369px;}
.wsc6{word-spacing:6.885824px;}
.ws3c{word-spacing:6.951279px;}
.wsa5{word-spacing:7.082188px;}
.ws9f{word-spacing:7.147642px;}
.wsa3{word-spacing:7.278552px;}
.ws64{word-spacing:7.344006px;}
.ws8d{word-spacing:7.540370px;}
.ws66{word-spacing:7.736734px;}
.wsc1{word-spacing:7.933098px;}
.ws5a{word-spacing:8.064007px;}
.wsa4{word-spacing:8.129461px;}
.ws56{word-spacing:8.194916px;}
.ws52{word-spacing:8.260371px;}
.wsc0{word-spacing:8.391280px;}
.ws62{word-spacing:8.522189px;}
.ws3{word-spacing:8.679417px;}
.ws3f{word-spacing:8.784007px;}
.wsa2{word-spacing:8.849462px;}
.wsa1{word-spacing:8.914917px;}
.ws13{word-spacing:9.098189px;}
.ws41{word-spacing:9.176735px;}
.ws12{word-spacing:9.229099px;}
.ws1f{word-spacing:9.294553px;}
.ws82{word-spacing:9.307644px;}
.ws22{word-spacing:9.425462px;}
.wsae{word-spacing:9.438553px;}
.ws20{word-spacing:9.490917px;}
.ws25{word-spacing:9.556372px;}
.ws2d{word-spacing:9.621826px;}
.ws94{word-spacing:9.634917px;}
.ws2c{word-spacing:9.687281px;}
.ws23{word-spacing:9.752735px;}
.wsa{word-spacing:9.765826px;}
.ws1a{word-spacing:10.080008px;}
.ws9a{word-spacing:10.158554px;}
.ws11{word-spacing:10.210918px;}
.ws17{word-spacing:10.800009px;}
.ws80{word-spacing:11.205828px;}
.ws6{word-spacing:11.271282px;}
.wsb0{word-spacing:12.122192px;}
.wsbe{word-spacing:12.140521px;}
.ws92{word-spacing:12.187647px;}
.ws7{word-spacing:12.514920px;}
.wsc4{word-spacing:12.580374px;}
.ws6b{word-spacing:12.842193px;}
.ws75{word-spacing:14.530921px;}
.ws15{word-spacing:14.858194px;}
.ws9d{word-spacing:14.936740px;}
.ws86{word-spacing:17.541833px;}
.ws47{word-spacing:17.869106px;}
.ws5b{word-spacing:17.934560px;}
.ws7b{word-spacing:18.392743px;}
.wsb8{word-spacing:18.720016px;}
.ws98{word-spacing:19.047289px;}
.wsa9{word-spacing:19.060380px;}
.ws4d{word-spacing:19.505471px;}
.ws51{word-spacing:19.636380px;}
.ws4e{word-spacing:19.832744px;}
.ws88{word-spacing:20.618199px;}
.ws73{word-spacing:20.683654px;}
.ws95{word-spacing:21.796382px;}
.ws89{word-spacing:21.927291px;}
.ws31{word-spacing:21.992746px;}
.ws78{word-spacing:22.320019px;}
.ws99{word-spacing:22.516382px;}
.ws43{word-spacing:23.040019px;}
.ws4a{word-spacing:23.236383px;}
.ws1{word-spacing:23.312640px;}
.ws7d{word-spacing:23.367292px;}
.ws93{word-spacing:23.498201px;}
.ws3e{word-spacing:23.825474px;}
.ws54{word-spacing:24.152747px;}
.wse{word-spacing:25.003657px;}
.ws7a{word-spacing:25.789112px;}
.ws59{word-spacing:26.181840px;}
.ws53{word-spacing:26.378204px;}
.wsbd{word-spacing:26.583959px;}
.ws40{word-spacing:26.901841px;}
.ws8a{word-spacing:26.955696px;}
.ws8c{word-spacing:27.001615px;}
.ws76{word-spacing:27.007227px;}
.ws81{word-spacing:27.027165px;}
.ws83{word-spacing:27.027625px;}
.wsbb{word-spacing:27.033340px;}
.ws3a{word-spacing:27.969066px;}
.ws5d{word-spacing:28.538206px;}
.wsc2{word-spacing:29.037574px;}
.wsc3{word-spacing:29.502010px;}
.wsaf{word-spacing:30.819433px;}
.ws0{word-spacing:31.091012px;}
.ws37{word-spacing:34.298210px;}
.ws1d{word-spacing:48.043676px;}
.ws2e{word-spacing:50.072769px;}
.ws14{word-spacing:50.334587px;}
.ws30{word-spacing:50.400042px;}
.ws24{word-spacing:50.465497px;}
.ws26{word-spacing:50.530951px;}
.ws10{word-spacing:50.596406px;}
.ws21{word-spacing:50.858224px;}
.ws1c{word-spacing:50.923679px;}
.ws19{word-spacing:51.512770px;}
.ws2f{word-spacing:51.840043px;}
.ws2a{word-spacing:52.036407px;}
.ws2b{word-spacing:52.101862px;}
.ws1b{word-spacing:52.429135px;}
.wsf{word-spacing:52.821862px;}
.ws16{word-spacing:53.149135px;}
.ws96{word-spacing:58.281600px;}
.ws9c{word-spacing:142.398685px;}
.wsac{word-spacing:145.488463px;}
.ws70{word-spacing:209.157036px;}
.ws71{word-spacing:346.611696px;}
.wsbc{word-spacing:455.239300px;}
._32{margin-left:-2420.907555px;}
._2d{margin-left:-2283.452895px;}
._33{margin-left:-2077.270905px;}
._2b{margin-left:-2042.901240px;}
._2e{margin-left:-1939.810245px;}
._2f{margin-left:-1905.452580px;}
._39{margin-left:-1218.179280px;}
._35{margin-left:-1080.702259px;}
._3b{margin-left:-1046.343014px;}
._34{margin-left:-1011.983770px;}
._31{margin-left:-943.265280px;}
._3a{margin-left:-805.792435px;}
._30{margin-left:-565.277722px;}
._36{margin-left:-496.523366px;}
._2c{margin-left:-393.445632px;}
._3d{margin-left:-345.403843px;}
._45{margin-left:-338.832086px;}
._3f{margin-left:-331.311184px;}
._28{margin-left:-190.924240px;}
._27{margin-left:-17.270282px;}
._3c{margin-left:-15.304853px;}
._1{margin-left:-8.160100px;}
._19{margin-left:-6.059175px;}
._3{margin-left:-4.961375px;}
._26{margin-left:-3.728948px;}
._0{margin-left:-2.685602px;}
._4{margin-left:-1.673717px;}
._5{width:1.673717px;}
._2{width:2.685602px;}
._d{width:4.581822px;}
._b{width:6.087278px;}
._14{width:7.132588px;}
._c{width:8.181825px;}
._17{width:9.229099px;}
._13{width:10.538191px;}
._11{width:11.650919px;}
._15{width:13.090920px;}
._18{width:15.512740px;}
._21{width:19.638344px;}
._22{width:20.685617px;}
._38{width:21.962679px;}
._44{width:22.981127px;}
._1d{width:25.003657px;}
._1e{width:26.058609px;}
._23{width:27.427441px;}
._1b{width:28.605624px;}
._1a{width:29.781843px;}
._20{width:31.614572px;}
._1c{width:32.991082px;}
._1f{width:34.300174px;}
._9{width:36.327535px;}
._2a{width:37.701850px;}
._43{width:38.947451px;}
._37{width:41.227149px;}
._25{width:42.349126px;}
._24{width:43.725637px;}
._3e{width:46.080038px;}
._7{width:47.520040px;}
._10{width:49.418223px;}
._12{width:50.596406px;}
._16{width:51.840043px;}
._f{width:52.887317px;}
._e{width:53.934590px;}
._29{width:56.618229px;}
._42{width:63.172938px;}
._a{width:75.272790px;}
._8{width:80.697600px;}
._6{width:96.836850px;}
._41{width:153.820041px;}
._47{width:157.157640px;}
._40{width:176.715943px;}
._46{width:180.550340px;}
.fc8{color:rgb(163,89,120);}
.fc7{color:transparent;}
.fc6{color:rgb(61,122,122);}
.fc5{color:rgb(171,33,255);}
.fc4{color:rgb(186,33,33);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,128,0);}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:33.630072px;}
.fsf{font-size:34.359780px;}
.fs5{font-size:35.865600px;}
.fsc{font-size:41.179680px;}
.fs10{font-size:42.073200px;}
.fs12{font-size:43.645182px;}
.fs6{font-size:47.820600px;}
.fsa{font-size:48.042960px;}
.fs8{font-size:48.133200px;}
.fse{font-size:49.085400px;}
.fs7{font-size:54.314400px;}
.fs9{font-size:54.906240px;}
.fsd{font-size:56.097600px;}
.fs2{font-size:59.775600px;}
.fs11{font-size:62.350260px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y12e{bottom:12.762819px;}
.yab{bottom:14.401803px;}
.y14b{bottom:17.474554px;}
.y16c{bottom:17.853719px;}
.y193{bottom:19.303529px;}
.y12d{bottom:29.214596px;}
.yaa{bottom:32.966295px;}
.y14a{bottom:35.678332px;}
.y16b{bottom:36.452483px;}
.y12f{bottom:42.206800px;}
.y192{bottom:43.985186px;}
.yac{bottom:47.626940px;}
.y16d{bottom:59.571801px;}
.y14c{bottom:63.626376px;}
.y130{bottom:75.563107px;}
.yb1{bottom:77.504951px;}
.y194{bottom:78.373557px;}
.y19e{bottom:89.872054px;}
.y14d{bottom:97.672568px;}
.y159{bottom:98.897053px;}
.yad{bottom:100.147701px;}
.y176{bottom:101.042929px;}
.y131{bottom:108.919415px;}
.y152{bottom:112.549306px;}
.y19d{bottom:115.480197px;}
.y158{bottom:116.403779px;}
.y175{bottom:118.929517px;}
.y16e{bottom:119.358398px;}
.y153{bottom:121.533902px;}
.y15a{bottom:126.095481px;}
.y199{bottom:127.660886px;}
.y177{bottom:128.831511px;}
.y14e{bottom:131.718760px;}
.y154{bottom:131.720746px;}
.y171{bottom:134.274960px;}
.y195{bottom:134.876006px;}
.y155{bottom:136.430035px;}
.y1c{bottom:137.449500px;}
.y172{bottom:141.770789px;}
.y132{bottom:142.275723px;}
.y156{bottom:145.162453px;}
.y15b{bottom:151.842914px;}
.y173{bottom:152.178668px;}
.yae{bottom:152.668463px;}
.y157{bottom:154.147049px;}
.y174{bottom:156.990139px;}
.y138{bottom:159.744314px;}
.y139{bottom:163.798502px;}
.y178{bottom:163.906314px;}
.y19a{bottom:165.113687px;}
.y14f{bottom:165.764952px;}
.y13a{bottom:168.745786px;}
.y133{bottom:175.632030px;}
.y15c{bottom:177.590347px;}
.y16f{bottom:179.144995px;}
.ycc{bottom:180.159000px;}
.y78{bottom:182.281500px;}
.y3b{bottom:185.461500px;}
.y19b{bottom:188.644213px;}
.y11d{bottom:189.624000px;}
.y196{bottom:191.378456px;}
.y59{bottom:192.654000px;}
.yf7{bottom:193.864500px;}
.y19c{bottom:196.012534px;}
.y13d{bottom:198.151500px;}
.y179{bottom:198.981118px;}
.y150{bottom:199.811144px;}
.ycb{bottom:200.484000px;}
.ya8{bottom:202.231500px;}
.y77{bottom:202.605000px;}
.y169{bottom:203.205000px;}
.y15d{bottom:203.337779px;}
.yaf{bottom:205.189225px;}
.y3a{bottom:205.785000px;}
.y134{bottom:208.988338px;}
.y11c{bottom:209.574000px;}
.yf6{bottom:213.814500px;}
.y90{bottom:214.285500px;}
.yb4{bottom:216.245146px;}
.y190{bottom:217.176000px;}
.y13c{bottom:218.475000px;}
.yca{bottom:220.434000px;}
.ya7{bottom:222.181500px;}
.y76{bottom:222.928500px;}
.y168{bottom:223.528500px;}
.y15e{bottom:229.085212px;}
.y11b{bottom:229.525500px;}
.y58{bottom:233.301000px;}
.yf5{bottom:233.764500px;}
.y151{bottom:233.857336px;}
.y17a{bottom:234.055921px;}
.y8f{bottom:234.609000px;}
.yb3{bottom:236.167498px;}
.y18f{bottom:237.499500px;}
.y13b{bottom:238.798500px;}
.y170{bottom:238.931592px;}
.yc9{bottom:240.757500px;}
.y1b{bottom:241.519500px;}
.ya6{bottom:242.131500px;}
.y135{bottom:242.344645px;}
.y75{bottom:243.253500px;}
.y167{bottom:243.852000px;}
.y39{bottom:246.433500px;}
.y197{bottom:247.880905px;}
.y11a{bottom:249.849000px;}
.yf4{bottom:254.088000px;}
.y8e{bottom:254.932500px;}
.yb2{bottom:256.089850px;}
.yb0{bottom:257.709986px;}
.y18e{bottom:257.824500px;}
.yc8{bottom:260.707500px;}
.y1a{bottom:261.843000px;}
.ya5{bottom:262.081500px;}
.y74{bottom:263.577000px;}
.y166{bottom:264.177000px;}
.y119{bottom:269.799000px;}
.y57{bottom:273.948000px;}
.yf3{bottom:274.038000px;}
.y136{bottom:275.700953px;}
.y18d{bottom:278.148000px;}
.yc7{bottom:280.657500px;}
.ya4{bottom:282.033000px;}
.y19{bottom:282.168000px;}
.y165{bottom:284.500500px;}
.y38{bottom:287.080500px;}
.y8d{bottom:289.606500px;}
.y118{bottom:289.749000px;}
.y56{bottom:294.271500px;}
.yf2{bottom:294.361500px;}
.y12c{bottom:294.390000px;}
.y73{bottom:294.468000px;}
.y18c{bottom:298.471500px;}
.yc6{bottom:300.607500px;}
.ya3{bottom:301.983000px;}
.y18{bottom:302.491500px;}
.y198{bottom:304.383355px;}
.y164{bottom:304.824000px;}
.y137{bottom:309.057261px;}
.y117{bottom:309.699000px;}
.y8c{bottom:309.930000px;}
.yf1{bottom:314.311500px;}
.y55{bottom:314.596500px;}
.y18b{bottom:318.795000px;}
.yc5{bottom:320.931000px;}
.ya2{bottom:321.559500px;}
.y17{bottom:322.815000px;}
.y163{bottom:325.147500px;}
.y37{bottom:327.729000px;}
.y116{bottom:329.649000px;}
.y8b{bottom:330.253500px;}
.yf0{bottom:334.636500px;}
.y54{bottom:334.920000px;}
.y72{bottom:337.243500px;}
.y18a{bottom:339.118500px;}
.yc4{bottom:340.881000px;}
.y16{bottom:343.138500px;}
.y36{bottom:348.052500px;}
.y115{bottom:349.225500px;}
.y8a{bottom:349.830000px;}
.ya1{bottom:351.616500px;}
.yef{bottom:354.586500px;}
.y53{bottom:355.243500px;}
.y71{bottom:357.567000px;}
.y189{bottom:359.442000px;}
.y162{bottom:360.222000px;}
.yc3{bottom:360.832500px;}
.y15{bottom:363.462000px;}
.y35{bottom:368.376000px;}
.ya0{bottom:371.941500px;}
.yee{bottom:374.536500px;}
.y52{bottom:375.567000px;}
.y70{bottom:377.890500px;}
.y1a4{bottom:379.731000px;}
.y188{bottom:379.767000px;}
.y161{bottom:380.545500px;}
.yc2{bottom:380.782500px;}
.y14{bottom:383.785500px;}
.y89{bottom:385.963500px;}
.y114{bottom:387.483000px;}
.y34{bottom:388.699500px;}
.yed{bottom:394.486500px;}
.y1a3{bottom:400.054500px;}
.y187{bottom:400.090500px;}
.yc1{bottom:400.732500px;}
.y160{bottom:400.870500px;}
.y9f{bottom:401.625000px;}
.y6f{bottom:405.754500px;}
.y88{bottom:406.287000px;}
.y113{bottom:407.806500px;}
.y33{bottom:409.023000px;}
.yec{bottom:414.810000px;}
.y51{bottom:416.215500px;}
.yc0{bottom:420.309000px;}
.y1a2{bottom:420.379500px;}
.y186{bottom:420.414000px;}
.y15f{bottom:421.194000px;}
.y13{bottom:424.434000px;}
.y87{bottom:426.610500px;}
.y112{bottom:428.130000px;}
.y32{bottom:429.348000px;}
.y9e{bottom:431.683500px;}
.y6e{bottom:433.992000px;}
.yeb{bottom:434.760000px;}
.y1a1{bottom:440.703000px;}
.y185{bottom:440.737500px;}
.y86{bottom:446.934000px;}
.y111{bottom:448.453500px;}
.y31{bottom:449.671500px;}
.y9d{bottom:452.007000px;}
.ybf{bottom:453.189000px;}
.y6d{bottom:454.315500px;}
.yea{bottom:454.710000px;}
.y50{bottom:456.862500px;}
.y1a0{bottom:461.026500px;}
.y12{bottom:464.292000px;}
.y85{bottom:467.257500px;}
.y110{bottom:468.777000px;}
.y184{bottom:471.630000px;}
.y9c{bottom:472.330500px;}
.ybe{bottom:473.512500px;}
.y6c{bottom:474.639000px;}
.ye9{bottom:474.660000px;}
.y149{bottom:476.785500px;}
.y4f{bottom:477.186000px;}
.y19f{bottom:481.350000px;}
.y84{bottom:487.582500px;}
.y10f{bottom:489.102000px;}
.y30{bottom:490.318500px;}
.ybd{bottom:493.837500px;}
.ye8{bottom:494.611500px;}
.y6b{bottom:494.964000px;}
.y11{bottom:495.184500px;}
.y9b{bottom:502.014000px;}
.y83{bottom:507.906000px;}
.y10e{bottom:509.425500px;}
.ybc{bottom:514.161000px;}
.ye7{bottom:514.561500px;}
.y6a{bottom:515.287500px;}
.y183{bottom:515.448000px;}
.y4e{bottom:517.834500px;}
.y82{bottom:528.229500px;}
.y10d{bottom:529.749000px;}
.y2f{bottom:530.967000px;}
.y9a{bottom:532.072500px;}
.ybb{bottom:534.484500px;}
.ye6{bottom:534.885000px;}
.y69{bottom:535.611000px;}
.y182{bottom:535.773000px;}
.y191{bottom:536.941500px;}
.y10{bottom:539.002500px;}
.y81{bottom:548.553000px;}
.y10c{bottom:550.072500px;}
.y2e{bottom:551.290500px;}
.y99{bottom:552.396000px;}
.ye5{bottom:554.835000px;}
.y4d{bottom:556.090500px;}
.y181{bottom:556.096500px;}
.yf{bottom:559.326000px;}
.y80{bottom:568.876500px;}
.y10b{bottom:570.396000px;}
.yba{bottom:570.949500px;}
.y2d{bottom:571.614000px;}
.y68{bottom:572.139000px;}
.y98{bottom:572.719500px;}
.ye4{bottom:574.785000px;}
.y4c{bottom:576.414000px;}
.y180{bottom:576.420000px;}
.ye{bottom:579.651000px;}
.y10a{bottom:590.721000px;}
.yb9{bottom:591.273000px;}
.y2c{bottom:591.937500px;}
.y97{bottom:593.044500px;}
.ye3{bottom:595.108500px;}
.y17f{bottom:596.743500px;}
.yd{bottom:599.974500px;}
.y109{bottom:611.044500px;}
.yb8{bottom:611.596500px;}
.y96{bottom:613.368000px;}
.ye2{bottom:615.058500px;}
.y4b{bottom:616.272000px;}
.y7f{bottom:616.969500px;}
.y17e{bottom:617.067000px;}
.yc{bottom:620.298000px;}
.y67{bottom:629.404500px;}
.y108{bottom:631.368000px;}
.yb7{bottom:631.920000px;}
.y2b{bottom:632.586000px;}
.y95{bottom:633.691500px;}
.ye1{bottom:635.008500px;}
.y7e{bottom:637.293000px;}
.yb{bottom:640.621500px;}
.y107{bottom:651.691500px;}
.yb6{bottom:652.243500px;}
.y12b{bottom:654.960000px;}
.ye0{bottom:655.333500px;}
.y17d{bottom:656.922000px;}
.y7d{bottom:657.616500px;}
.ya{bottom:660.945000px;}
.y94{bottom:666.825000px;}
.y4a{bottom:668.460000px;}
.y66{bottom:670.053000px;}
.y106{bottom:672.015000px;}
.yb5{bottom:672.568500px;}
.y2a{bottom:673.233000px;}
.y12a{bottom:674.910000px;}
.ydf{bottom:675.283500px;}
.y17c{bottom:677.245500px;}
.y7c{bottom:677.941500px;}
.y93{bottom:687.150000px;}
.y49{bottom:688.783500px;}
.y65{bottom:690.376500px;}
.y105{bottom:692.340000px;}
.y29{bottom:693.556500px;}
.y129{bottom:694.860000px;}
.yde{bottom:695.233500px;}
.y9{bottom:697.473000px;}
.y17b{bottom:697.569000px;}
.y7b{bottom:698.265000px;}
.ya9{bottom:707.836500px;}
.y48{bottom:709.107000px;}
.y104{bottom:712.663500px;}
.y28{bottom:713.880000px;}
.y128{bottom:714.810000px;}
.ydd{bottom:715.183500px;}
.y7a{bottom:718.588500px;}
.y47{bottom:729.432000px;}
.y64{bottom:731.023500px;}
.y103{bottom:732.987000px;}
.y27{bottom:734.205000px;}
.y127{bottom:734.760000px;}
.ydc{bottom:735.507000px;}
.y79{bottom:738.912000px;}
.y8{bottom:749.031000px;}
.y46{bottom:749.755500px;}
.y16a{bottom:753.160500px;}
.y102{bottom:753.310500px;}
.y148{bottom:753.948000px;}
.y26{bottom:754.528500px;}
.y126{bottom:754.710000px;}
.ydb{bottom:755.457000px;}
.y7{bottom:766.963500px;}
.y45{bottom:770.079000px;}
.y63{bottom:771.672000px;}
.y101{bottom:773.634000px;}
.y147{bottom:774.273000px;}
.y25{bottom:774.852000px;}
.y125{bottom:775.033500px;}
.yda{bottom:775.407000px;}
.y44{bottom:790.402500px;}
.y6{bottom:794.236500px;}
.y146{bottom:794.596500px;}
.y124{bottom:794.983500px;}
.yd9{bottom:795.732000px;}
.y100{bottom:806.575500px;}
.y43{bottom:810.726000px;}
.y62{bottom:812.319000px;}
.y123{bottom:815.308500px;}
.y24{bottom:815.499000px;}
.yd8{bottom:815.682000px;}
.y145{bottom:825.487500px;}
.yff{bottom:826.899000px;}
.y42{bottom:831.051000px;}
.y61{bottom:832.642500px;}
.y122{bottom:835.258500px;}
.yd7{bottom:835.632000px;}
.yfe{bottom:847.222500px;}
.y41{bottom:851.374500px;}
.y60{bottom:852.966000px;}
.y5{bottom:854.647500px;}
.yd6{bottom:855.582000px;}
.y23{bottom:856.147500px;}
.y144{bottom:869.307000px;}
.y40{bottom:871.698000px;}
.y5f{bottom:873.291000px;}
.y4{bottom:874.971000px;}
.yd5{bottom:875.532000px;}
.y22{bottom:876.471000px;}
.yfd{bottom:880.995000px;}
.y143{bottom:889.630500px;}
.y5e{bottom:893.614500px;}
.yd4{bottom:895.482000px;}
.yfc{bottom:901.320000px;}
.y3{bottom:912.256500px;}
.y3f{bottom:912.345000px;}
.y5d{bottom:913.938000px;}
.yd3{bottom:915.432000px;}
.y21{bottom:917.118000px;}
.y142{bottom:920.523000px;}
.yfb{bottom:921.643500px;}
.y5c{bottom:934.261500px;}
.y121{bottom:935.382000px;}
.yd2{bottom:935.757000px;}
.y20{bottom:937.441500px;}
.y3e{bottom:952.203000px;}
.yfa{bottom:952.534500px;}
.y120{bottom:955.333500px;}
.yd1{bottom:955.707000px;}
.y2{bottom:957.724500px;}
.y141{bottom:964.341000px;}
.y5b{bottom:974.910000px;}
.y11f{bottom:975.283500px;}
.y1f{bottom:975.699000px;}
.yd0{bottom:976.030500px;}
.y3d{bottom:983.095500px;}
.y140{bottom:984.664500px;}
.y1{bottom:990.600000px;}
.y11e{bottom:995.607000px;}
.ycf{bottom:995.980500px;}
.y92{bottom:996.088500px;}
.yf9{bottom:996.354000px;}
.y13f{bottom:1004.989500px;}
.y5a{bottom:1015.557000px;}
.yce{bottom:1015.930500px;}
.yf8{bottom:1016.304000px;}
.y1e{bottom:1016.346000px;}
.y13e{bottom:1025.313000px;}
.y91{bottom:1026.147000px;}
.y3c{bottom:1035.880500px;}
.ycd{bottom:1036.254000px;}
.y1d{bottom:1056.204000px;}
.hb{height:18.470784px;}
.hc{height:24.245146px;}
.h16{height:37.308790px;}
.h1c{height:38.118319px;}
.h20{height:40.546374px;}
.h13{height:43.526922px;}
.h19{height:44.471372px;}
.h14{height:44.631910px;}
.h10{height:44.715743px;}
.h4{height:44.831700px;}
.ha{height:45.294583px;}
.h8{height:45.425492px;}
.h1a{height:45.600337px;}
.h6{height:49.090950px;}
.h12{height:49.745053px;}
.he{height:50.458078px;}
.h3{height:50.498765px;}
.h18{height:50.824426px;}
.h15{height:52.513958px;}
.h1b{height:53.653410px;}
.h7{height:53.798400px;}
.h1f{height:56.489336px;}
.h9{height:56.941496px;}
.h21{height:57.923392px;}
.h5{height:64.557900px;}
.h2{height:72.511265px;}
.h1e{height:82.996769px;}
.h11{height:256.050396px;}
.h17{height:261.606198px;}
.hd{height:288.398431px;}
.hf{height:326.859024px;}
.h1d{height:338.252489px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:376.602471px;}
.w5{width:537.978477px;}
.w3{width:537.982520px;}
.w4{width:538.001018px;}
.w6{width:538.030493px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:20.087841px;}
.x22{left:21.469198px;}
.x23{left:23.439710px;}
.x16{left:28.341084px;}
.x21{left:32.943744px;}
.x1d{left:35.569683px;}
.x29{left:41.465111px;}
.x2e{left:42.754464px;}
.x15{left:45.611366px;}
.x1b{left:47.819206px;}
.x2f{left:49.434849px;}
.x27{left:51.504061px;}
.x1f{left:61.857992px;}
.x13{left:67.009688px;}
.x32{left:139.397367px;}
.x2d{left:141.197439px;}
.x18{left:144.349005px;}
.x19{left:147.850500px;}
.x33{left:152.328653px;}
.xf{left:153.330000px;}
.x9{left:176.742000px;}
.x14{left:186.094713px;}
.xa{left:202.147500px;}
.x1{left:206.820000px;}
.x11{left:215.833500px;}
.x8{left:217.651500px;}
.xb{left:218.838000px;}
.xe{left:220.126500px;}
.x7{left:240.067500px;}
.x10{left:245.469000px;}
.x12{left:254.713500px;}
.x2{left:259.122000px;}
.x1c{left:260.784173px;}
.x28{left:261.935952px;}
.x20{left:267.820883px;}
.xc{left:270.997500px;}
.x1a{left:279.832500px;}
.x26{left:321.863091px;}
.x2c{left:337.666935px;}
.x2a{left:346.733491px;}
.x24{left:350.817554px;}
.x4{left:373.182000px;}
.x3{left:385.740000px;}
.x5{left:405.613500px;}
.x2b{left:407.215549px;}
.x25{left:410.015138px;}
.x6{left:412.857000px;}
.x1e{left:437.551500px;}
.xd{left:441.642000px;}
.x30{left:508.253913px;}
.x31{left:510.811248px;}
@media print{
.v2{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:7.006265pt;}
.v1{vertical-align:21.114667pt;}
.v4{vertical-align:38.625986pt;}
.ls1{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.001897pt;}
.lsc{letter-spacing:0.003302pt;}
.ls2d{letter-spacing:0.016284pt;}
.ls2a{letter-spacing:0.019792pt;}
.ls17{letter-spacing:1.174717pt;}
.ls22{letter-spacing:1.200206pt;}
.ls20{letter-spacing:2.650641pt;}
.ls35{letter-spacing:2.653258pt;}
.ls25{letter-spacing:2.653816pt;}
.ls30{letter-spacing:2.655975pt;}
.ls27{letter-spacing:2.657333pt;}
.ls34{letter-spacing:3.590213pt;}
.ls5{letter-spacing:5.585459pt;}
.ls4{letter-spacing:5.643641pt;}
.ls6{letter-spacing:5.760005pt;}
.ls9{letter-spacing:9.658190pt;}
.ls29{letter-spacing:10.123645pt;}
.ls1e{letter-spacing:14.487285pt;}
.ls8{letter-spacing:14.836376pt;}
.ls2e{letter-spacing:15.709104pt;}
.ls2f{letter-spacing:15.767286pt;}
.ls14{letter-spacing:16.174559pt;}
.lsa{letter-spacing:18.036379pt;}
.ls23{letter-spacing:18.819668pt;}
.ls1c{letter-spacing:20.189108pt;}
.lsb{letter-spacing:20.698792pt;}
.lse{letter-spacing:20.770926pt;}
.ls10{letter-spacing:21.643654pt;}
.ls11{letter-spacing:22.690928pt;}
.ls1d{letter-spacing:22.829258pt;}
.ls1b{letter-spacing:22.835668pt;}
.ls1a{letter-spacing:23.159925pt;}
.lsd{letter-spacing:23.181433pt;}
.ls1f{letter-spacing:24.455925pt;}
.ls31{letter-spacing:24.669111pt;}
.ls24{letter-spacing:24.785475pt;}
.ls2b{letter-spacing:24.856100pt;}
.ls18{letter-spacing:25.197258pt;}
.ls28{letter-spacing:25.832749pt;}
.ls2c{letter-spacing:25.853433pt;}
.ls19{letter-spacing:26.727925pt;}
.ls33{letter-spacing:29.381843pt;}
.ls32{letter-spacing:29.440025pt;}
.lsf{letter-spacing:30.545480pt;}
.ls3{letter-spacing:44.276401pt;}
.ls2{letter-spacing:44.800037pt;}
.ls0{letter-spacing:45.149129pt;}
.ls13{letter-spacing:169.710435pt;}
.ls7{letter-spacing:185.949246pt;}
.ls16{letter-spacing:294.519569pt;}
.ls21{letter-spacing:300.910079pt;}
.ls15{letter-spacing:307.025638pt;}
.ls12{letter-spacing:308.131166pt;}
.ws91{word-spacing:-307.025638pt;}
.wsab{word-spacing:-300.910079pt;}
.ws9b{word-spacing:-294.519569pt;}
.ws68{word-spacing:-169.710435pt;}
.ws44{word-spacing:-37.899668pt;}
.ws6a{word-spacing:-16.605105pt;}
.ws9e{word-spacing:-16.488741pt;}
.ws65{word-spacing:-16.256014pt;}
.ws39{word-spacing:-16.162923pt;}
.ws29{word-spacing:-5.818187pt;}
.ws27{word-spacing:-5.701823pt;}
.ws28{word-spacing:-5.643641pt;}
.ws74{word-spacing:-3.246548pt;}
.wsc5{word-spacing:-3.013821pt;}
.wsad{word-spacing:-2.839275pt;}
.ws6e{word-spacing:-1.733820pt;}
.wsa8{word-spacing:-1.617456pt;}
.ws38{word-spacing:-1.326547pt;}
.ws87{word-spacing:-1.093819pt;}
.wsb7{word-spacing:-0.802910pt;}
.ws85{word-spacing:-0.570182pt;}
.ws9{word-spacing:-0.512000pt;}
.wsb5{word-spacing:-0.395637pt;}
.ws35{word-spacing:-0.279273pt;}
.ws46{word-spacing:-0.221091pt;}
.ws1e{word-spacing:-0.058182pt;}
.wsa6{word-spacing:-0.042507pt;}
.ws5c{word-spacing:-0.031881pt;}
.ws18{word-spacing:0.000000pt;}
.ws90{word-spacing:0.011636pt;}
.wsb3{word-spacing:0.186182pt;}
.ws79{word-spacing:0.244364pt;}
.ws60{word-spacing:0.360728pt;}
.ws58{word-spacing:0.593455pt;}
.ws97{word-spacing:0.884364pt;}
.ws4c{word-spacing:1.233456pt;}
.ws4f{word-spacing:1.291637pt;}
.ws57{word-spacing:1.408001pt;}
.wsba{word-spacing:1.524365pt;}
.wsbf{word-spacing:1.582547pt;}
.ws50{word-spacing:1.698911pt;}
.wsa0{word-spacing:1.757092pt;}
.wsb1{word-spacing:1.815274pt;}
.wsb{word-spacing:1.989820pt;}
.ws72{word-spacing:2.048002pt;}
.ws8b{word-spacing:2.222547pt;}
.ws67{word-spacing:2.280729pt;}
.ws8e{word-spacing:2.455275pt;}
.ws5e{word-spacing:2.688002pt;}
.wsb6{word-spacing:2.746184pt;}
.ws4{word-spacing:2.932989pt;}
.ws7f{word-spacing:2.978912pt;}
.ws2{word-spacing:2.986123pt;}
.ws8f{word-spacing:3.153457pt;}
.ws8{word-spacing:3.211639pt;}
.wsc{word-spacing:3.269821pt;}
.ws32{word-spacing:3.386185pt;}
.ws34{word-spacing:3.444367pt;}
.ws69{word-spacing:3.502548pt;}
.ws77{word-spacing:3.560730pt;}
.wsb4{word-spacing:3.618912pt;}
.wsb2{word-spacing:3.677094pt;}
.ws33{word-spacing:3.909821pt;}
.ws63{word-spacing:3.968003pt;}
.wsd{word-spacing:3.985067pt;}
.wsa7{word-spacing:4.026185pt;}
.ws36{word-spacing:4.084367pt;}
.wsaa{word-spacing:4.200731pt;}
.ws45{word-spacing:4.317095pt;}
.ws42{word-spacing:4.375276pt;}
.ws5f{word-spacing:4.433458pt;}
.ws48{word-spacing:4.549822pt;}
.ws4b{word-spacing:4.608004pt;}
.ws7c{word-spacing:4.666186pt;}
.ws7e{word-spacing:4.724368pt;}
.ws5{word-spacing:4.782067pt;}
.ws84{word-spacing:4.840731pt;}
.ws49{word-spacing:4.957095pt;}
.ws3d{word-spacing:5.015277pt;}
.ws55{word-spacing:5.364368pt;}
.wsb9{word-spacing:5.422550pt;}
.ws6f{word-spacing:5.538914pt;}
.ws61{word-spacing:5.655277pt;}
.ws6c{word-spacing:5.829823pt;}
.ws6d{word-spacing:6.004369pt;}
.ws3b{word-spacing:6.062551pt;}
.wsc6{word-spacing:6.120732pt;}
.ws3c{word-spacing:6.178914pt;}
.wsa5{word-spacing:6.295278pt;}
.ws9f{word-spacing:6.353460pt;}
.wsa3{word-spacing:6.469824pt;}
.ws64{word-spacing:6.528005pt;}
.ws8d{word-spacing:6.702551pt;}
.ws66{word-spacing:6.877097pt;}
.wsc1{word-spacing:7.051642pt;}
.ws5a{word-spacing:7.168006pt;}
.wsa4{word-spacing:7.226188pt;}
.ws56{word-spacing:7.284370pt;}
.ws52{word-spacing:7.342552pt;}
.wsc0{word-spacing:7.458915pt;}
.ws62{word-spacing:7.575279pt;}
.ws3{word-spacing:7.715037pt;}
.ws3f{word-spacing:7.808007pt;}
.wsa2{word-spacing:7.866188pt;}
.wsa1{word-spacing:7.924370pt;}
.ws13{word-spacing:8.087279pt;}
.ws41{word-spacing:8.157098pt;}
.ws12{word-spacing:8.203643pt;}
.ws1f{word-spacing:8.261825pt;}
.ws82{word-spacing:8.273461pt;}
.ws22{word-spacing:8.378189pt;}
.wsae{word-spacing:8.389825pt;}
.ws20{word-spacing:8.436371pt;}
.ws25{word-spacing:8.494553pt;}
.ws2d{word-spacing:8.552734pt;}
.ws94{word-spacing:8.564371pt;}
.ws2c{word-spacing:8.610916pt;}
.ws23{word-spacing:8.669098pt;}
.wsa{word-spacing:8.680735pt;}
.ws1a{word-spacing:8.960007pt;}
.ws9a{word-spacing:9.029826pt;}
.ws11{word-spacing:9.076371pt;}
.ws17{word-spacing:9.600008pt;}
.ws80{word-spacing:9.960736pt;}
.ws6{word-spacing:10.018917pt;}
.wsb0{word-spacing:10.775282pt;}
.wsbe{word-spacing:10.791574pt;}
.ws92{word-spacing:10.833464pt;}
.ws7{word-spacing:11.124373pt;}
.wsc4{word-spacing:11.182555pt;}
.ws6b{word-spacing:11.415282pt;}
.ws75{word-spacing:12.916374pt;}
.ws15{word-spacing:13.207284pt;}
.ws9d{word-spacing:13.277102pt;}
.ws86{word-spacing:15.592740pt;}
.ws47{word-spacing:15.883650pt;}
.ws5b{word-spacing:15.941831pt;}
.ws7b{word-spacing:16.349105pt;}
.wsb8{word-spacing:16.640014pt;}
.ws98{word-spacing:16.930923pt;}
.wsa9{word-spacing:16.942560pt;}
.ws4d{word-spacing:17.338196pt;}
.ws51{word-spacing:17.454560pt;}
.ws4e{word-spacing:17.629106pt;}
.ws88{word-spacing:18.327288pt;}
.ws73{word-spacing:18.385470pt;}
.ws95{word-spacing:19.374562pt;}
.ws89{word-spacing:19.490925pt;}
.ws31{word-spacing:19.549107pt;}
.ws78{word-spacing:19.840017pt;}
.ws99{word-spacing:20.014562pt;}
.ws43{word-spacing:20.480017pt;}
.ws4a{word-spacing:20.654563pt;}
.ws1{word-spacing:20.722347pt;}
.ws7d{word-spacing:20.770926pt;}
.ws93{word-spacing:20.887290pt;}
.ws3e{word-spacing:21.178199pt;}
.ws54{word-spacing:21.469109pt;}
.wse{word-spacing:22.225473pt;}
.ws7a{word-spacing:22.923655pt;}
.ws59{word-spacing:23.272747pt;}
.ws53{word-spacing:23.447292pt;}
.wsbd{word-spacing:23.630186pt;}
.ws40{word-spacing:23.912747pt;}
.ws8a{word-spacing:23.960619pt;}
.ws8c{word-spacing:24.001435pt;}
.ws76{word-spacing:24.006424pt;}
.ws81{word-spacing:24.024146pt;}
.ws83{word-spacing:24.024556pt;}
.wsbb{word-spacing:24.029636pt;}
.ws3a{word-spacing:24.861392pt;}
.ws5d{word-spacing:25.367294pt;}
.wsc2{word-spacing:25.811177pt;}
.wsc3{word-spacing:26.224009pt;}
.wsaf{word-spacing:27.395052pt;}
.ws0{word-spacing:27.636455pt;}
.ws37{word-spacing:30.487298pt;}
.ws1d{word-spacing:42.705490pt;}
.ws2e{word-spacing:44.509128pt;}
.ws14{word-spacing:44.741855pt;}
.ws30{word-spacing:44.800037pt;}
.ws24{word-spacing:44.858219pt;}
.ws26{word-spacing:44.916401pt;}
.ws10{word-spacing:44.974583pt;}
.ws21{word-spacing:45.207310pt;}
.ws1c{word-spacing:45.265492pt;}
.ws19{word-spacing:45.789129pt;}
.ws2f{word-spacing:46.080038pt;}
.ws2a{word-spacing:46.254584pt;}
.ws2b{word-spacing:46.312766pt;}
.ws1b{word-spacing:46.603675pt;}
.wsf{word-spacing:46.952766pt;}
.ws16{word-spacing:47.243676pt;}
.ws96{word-spacing:51.805867pt;}
.ws9c{word-spacing:126.576609pt;}
.wsac{word-spacing:129.323078pt;}
.ws70{word-spacing:185.917365pt;}
.ws71{word-spacing:308.099285pt;}
.wsbc{word-spacing:404.657156pt;}
._32{margin-left:-2151.917827pt;}
._2d{margin-left:-2029.735907pt;}
._33{margin-left:-1846.463027pt;}
._2b{margin-left:-1815.912213pt;}
._2e{margin-left:-1724.275773pt;}
._2f{margin-left:-1693.735627pt;}
._39{margin-left:-1082.826027pt;}
._35{margin-left:-960.624230pt;}
._3b{margin-left:-930.082679pt;}
._34{margin-left:-899.541129pt;}
._31{margin-left:-838.458027pt;}
._3a{margin-left:-716.259942pt;}
._30{margin-left:-502.469086pt;}
._36{margin-left:-441.354103pt;}
._2c{margin-left:-349.729451pt;}
._3d{margin-left:-307.025638pt;}
._45{margin-left:-301.184077pt;}
._3f{margin-left:-294.498830pt;}
._28{margin-left:-169.710435pt;}
._27{margin-left:-15.351362pt;}
._3c{margin-left:-13.604314pt;}
._1{margin-left:-7.253422pt;}
._19{margin-left:-5.385933pt;}
._3{margin-left:-4.410111pt;}
._26{margin-left:-3.314621pt;}
._0{margin-left:-2.387202pt;}
._4{margin-left:-1.487748pt;}
._5{width:1.487748pt;}
._2{width:2.387202pt;}
._d{width:4.072731pt;}
._b{width:5.410914pt;}
._14{width:6.340078pt;}
._c{width:7.272733pt;}
._17{width:8.203643pt;}
._13{width:9.367281pt;}
._11{width:10.356372pt;}
._15{width:11.636373pt;}
._18{width:13.789102pt;}
._21{width:17.456306pt;}
._22{width:18.387215pt;}
._38{width:19.522381pt;}
._44{width:20.427669pt;}
._1d{width:22.225473pt;}
._1e{width:23.163208pt;}
._23{width:24.379948pt;}
._1b{width:25.427221pt;}
._1a{width:26.472749pt;}
._20{width:28.101842pt;}
._1c{width:29.325406pt;}
._1f{width:30.489044pt;}
._9{width:32.291142pt;}
._2a{width:33.512755pt;}
._43{width:34.619956pt;}
._37{width:36.646355pt;}
._25{width:37.643668pt;}
._24{width:38.867233pt;}
._3e{width:40.960034pt;}
._7{width:42.240035pt;}
._10{width:43.927309pt;}
._12{width:44.974583pt;}
._16{width:46.080038pt;}
._f{width:47.010948pt;}
._e{width:47.941858pt;}
._29{width:50.327315pt;}
._42{width:56.153723pt;}
._a{width:66.909147pt;}
._8{width:71.731200pt;}
._6{width:86.077200pt;}
._41{width:136.728925pt;}
._47{width:139.695680pt;}
._40{width:157.080838pt;}
._46{width:160.489191pt;}
.fsb{font-size:29.893397pt;}
.fsf{font-size:30.542027pt;}
.fs5{font-size:31.880533pt;}
.fsc{font-size:36.604160pt;}
.fs10{font-size:37.398400pt;}
.fs12{font-size:38.795717pt;}
.fs6{font-size:42.507200pt;}
.fsa{font-size:42.704853pt;}
.fs8{font-size:42.785067pt;}
.fse{font-size:43.631467pt;}
.fs7{font-size:48.279467pt;}
.fs9{font-size:48.805547pt;}
.fsd{font-size:49.864533pt;}
.fs2{font-size:53.133867pt;}
.fs11{font-size:55.422453pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y12e{bottom:11.344728pt;}
.yab{bottom:12.801602pt;}
.y14b{bottom:15.532937pt;}
.y16c{bottom:15.869972pt;}
.y193{bottom:17.158693pt;}
.y12d{bottom:25.968530pt;}
.yaa{bottom:29.303373pt;}
.y14a{bottom:31.714073pt;}
.y16b{bottom:32.402207pt;}
.y12f{bottom:37.517155pt;}
.y192{bottom:39.097943pt;}
.yac{bottom:42.335057pt;}
.y16d{bottom:52.952712pt;}
.y14c{bottom:56.556779pt;}
.y130{bottom:67.167207pt;}
.yb1{bottom:68.893290pt;}
.y194{bottom:69.665384pt;}
.y19e{bottom:79.886271pt;}
.y14d{bottom:86.820060pt;}
.y159{bottom:87.908492pt;}
.yad{bottom:89.020179pt;}
.y176{bottom:89.815937pt;}
.y131{bottom:96.817258pt;}
.y152{bottom:100.043827pt;}
.y19d{bottom:102.649064pt;}
.y158{bottom:103.470026pt;}
.y175{bottom:105.715127pt;}
.y16e{bottom:106.096354pt;}
.y153{bottom:108.030135pt;}
.y15a{bottom:112.084872pt;}
.y199{bottom:113.476343pt;}
.y177{bottom:114.516898pt;}
.y14e{bottom:117.083342pt;}
.y154{bottom:117.085107pt;}
.y171{bottom:119.355520pt;}
.y195{bottom:119.889783pt;}
.y155{bottom:121.271142pt;}
.y1c{bottom:122.177333pt;}
.y172{bottom:126.018479pt;}
.y132{bottom:126.467309pt;}
.y156{bottom:129.033291pt;}
.y15b{bottom:134.971479pt;}
.y173{bottom:135.269927pt;}
.yae{bottom:135.705300pt;}
.y157{bottom:137.019599pt;}
.y174{bottom:139.546790pt;}
.y138{bottom:141.994946pt;}
.y139{bottom:145.598668pt;}
.y178{bottom:145.694502pt;}
.y19a{bottom:146.767722pt;}
.y14f{bottom:147.346624pt;}
.y13a{bottom:149.996254pt;}
.y133{bottom:156.117360pt;}
.y15c{bottom:157.858086pt;}
.y16f{bottom:159.239995pt;}
.ycc{bottom:160.141333pt;}
.y78{bottom:162.028000pt;}
.y3b{bottom:164.854667pt;}
.y19b{bottom:167.683745pt;}
.y11d{bottom:168.554667pt;}
.y196{bottom:170.114183pt;}
.y59{bottom:171.248000pt;}
.yf7{bottom:172.324000pt;}
.y19c{bottom:174.233363pt;}
.y13d{bottom:176.134667pt;}
.y179{bottom:176.872105pt;}
.y150{bottom:177.609906pt;}
.ycb{bottom:178.208000pt;}
.ya8{bottom:179.761333pt;}
.y77{bottom:180.093333pt;}
.y169{bottom:180.626667pt;}
.y15d{bottom:180.744693pt;}
.yaf{bottom:182.390422pt;}
.y3a{bottom:182.920000pt;}
.y134{bottom:185.767411pt;}
.y11c{bottom:186.288000pt;}
.yf6{bottom:190.057333pt;}
.y90{bottom:190.476000pt;}
.yb4{bottom:192.217907pt;}
.y190{bottom:193.045333pt;}
.y13c{bottom:194.200000pt;}
.yca{bottom:195.941333pt;}
.ya7{bottom:197.494667pt;}
.y76{bottom:198.158667pt;}
.y168{bottom:198.692000pt;}
.y15e{bottom:203.631300pt;}
.y11b{bottom:204.022667pt;}
.y58{bottom:207.378667pt;}
.yf5{bottom:207.790667pt;}
.y151{bottom:207.873188pt;}
.y17a{bottom:208.049708pt;}
.y8f{bottom:208.541333pt;}
.yb3{bottom:209.926665pt;}
.y18f{bottom:211.110667pt;}
.y13b{bottom:212.265333pt;}
.y170{bottom:212.383637pt;}
.yc9{bottom:214.006667pt;}
.y1b{bottom:214.684000pt;}
.ya6{bottom:215.228000pt;}
.y135{bottom:215.417463pt;}
.y75{bottom:216.225333pt;}
.y167{bottom:216.757333pt;}
.y39{bottom:219.052000pt;}
.y197{bottom:220.338583pt;}
.y11a{bottom:222.088000pt;}
.yf4{bottom:225.856000pt;}
.y8e{bottom:226.606667pt;}
.yb2{bottom:227.635422pt;}
.yb0{bottom:229.075543pt;}
.y18e{bottom:229.177333pt;}
.yc8{bottom:231.740000pt;}
.y1a{bottom:232.749333pt;}
.ya5{bottom:232.961333pt;}
.y74{bottom:234.290667pt;}
.y166{bottom:234.824000pt;}
.y119{bottom:239.821333pt;}
.y57{bottom:243.509333pt;}
.yf3{bottom:243.589333pt;}
.y136{bottom:245.067514pt;}
.y18d{bottom:247.242667pt;}
.yc7{bottom:249.473333pt;}
.ya4{bottom:250.696000pt;}
.y19{bottom:250.816000pt;}
.y165{bottom:252.889333pt;}
.y38{bottom:255.182667pt;}
.y8d{bottom:257.428000pt;}
.y118{bottom:257.554667pt;}
.y56{bottom:261.574667pt;}
.yf2{bottom:261.654667pt;}
.y12c{bottom:261.680000pt;}
.y73{bottom:261.749333pt;}
.y18c{bottom:265.308000pt;}
.yc6{bottom:267.206667pt;}
.ya3{bottom:268.429333pt;}
.y18{bottom:268.881333pt;}
.y198{bottom:270.562982pt;}
.y164{bottom:270.954667pt;}
.y137{bottom:274.717565pt;}
.y117{bottom:275.288000pt;}
.y8c{bottom:275.493333pt;}
.yf1{bottom:279.388000pt;}
.y55{bottom:279.641333pt;}
.y18b{bottom:283.373333pt;}
.yc5{bottom:285.272000pt;}
.ya2{bottom:285.830667pt;}
.y17{bottom:286.946667pt;}
.y163{bottom:289.020000pt;}
.y37{bottom:291.314667pt;}
.y116{bottom:293.021333pt;}
.y8b{bottom:293.558667pt;}
.yf0{bottom:297.454667pt;}
.y54{bottom:297.706667pt;}
.y72{bottom:299.772000pt;}
.y18a{bottom:301.438667pt;}
.yc4{bottom:303.005333pt;}
.y16{bottom:305.012000pt;}
.y36{bottom:309.380000pt;}
.y115{bottom:310.422667pt;}
.y8a{bottom:310.960000pt;}
.ya1{bottom:312.548000pt;}
.yef{bottom:315.188000pt;}
.y53{bottom:315.772000pt;}
.y71{bottom:317.837333pt;}
.y189{bottom:319.504000pt;}
.y162{bottom:320.197333pt;}
.yc3{bottom:320.740000pt;}
.y15{bottom:323.077333pt;}
.y35{bottom:327.445333pt;}
.ya0{bottom:330.614667pt;}
.yee{bottom:332.921333pt;}
.y52{bottom:333.837333pt;}
.y70{bottom:335.902667pt;}
.y1a4{bottom:337.538667pt;}
.y188{bottom:337.570667pt;}
.y161{bottom:338.262667pt;}
.yc2{bottom:338.473333pt;}
.y14{bottom:341.142667pt;}
.y89{bottom:343.078667pt;}
.y114{bottom:344.429333pt;}
.y34{bottom:345.510667pt;}
.yed{bottom:350.654667pt;}
.y1a3{bottom:355.604000pt;}
.y187{bottom:355.636000pt;}
.yc1{bottom:356.206667pt;}
.y160{bottom:356.329333pt;}
.y9f{bottom:357.000000pt;}
.y6f{bottom:360.670667pt;}
.y88{bottom:361.144000pt;}
.y113{bottom:362.494667pt;}
.y33{bottom:363.576000pt;}
.yec{bottom:368.720000pt;}
.y51{bottom:369.969333pt;}
.yc0{bottom:373.608000pt;}
.y1a2{bottom:373.670667pt;}
.y186{bottom:373.701333pt;}
.y15f{bottom:374.394667pt;}
.y13{bottom:377.274667pt;}
.y87{bottom:379.209333pt;}
.y112{bottom:380.560000pt;}
.y32{bottom:381.642667pt;}
.y9e{bottom:383.718667pt;}
.y6e{bottom:385.770667pt;}
.yeb{bottom:386.453333pt;}
.y1a1{bottom:391.736000pt;}
.y185{bottom:391.766667pt;}
.y86{bottom:397.274667pt;}
.y111{bottom:398.625333pt;}
.y31{bottom:399.708000pt;}
.y9d{bottom:401.784000pt;}
.ybf{bottom:402.834667pt;}
.y6d{bottom:403.836000pt;}
.yea{bottom:404.186667pt;}
.y50{bottom:406.100000pt;}
.y1a0{bottom:409.801333pt;}
.y12{bottom:412.704000pt;}
.y85{bottom:415.340000pt;}
.y110{bottom:416.690667pt;}
.y184{bottom:419.226667pt;}
.y9c{bottom:419.849333pt;}
.ybe{bottom:420.900000pt;}
.y6c{bottom:421.901333pt;}
.ye9{bottom:421.920000pt;}
.y149{bottom:423.809333pt;}
.y4f{bottom:424.165333pt;}
.y19f{bottom:427.866667pt;}
.y84{bottom:433.406667pt;}
.y10f{bottom:434.757333pt;}
.y30{bottom:435.838667pt;}
.ybd{bottom:438.966667pt;}
.ye8{bottom:439.654667pt;}
.y6b{bottom:439.968000pt;}
.y11{bottom:440.164000pt;}
.y9b{bottom:446.234667pt;}
.y83{bottom:451.472000pt;}
.y10e{bottom:452.822667pt;}
.ybc{bottom:457.032000pt;}
.ye7{bottom:457.388000pt;}
.y6a{bottom:458.033333pt;}
.y183{bottom:458.176000pt;}
.y4e{bottom:460.297333pt;}
.y82{bottom:469.537333pt;}
.y10d{bottom:470.888000pt;}
.y2f{bottom:471.970667pt;}
.y9a{bottom:472.953333pt;}
.ybb{bottom:475.097333pt;}
.ye6{bottom:475.453333pt;}
.y69{bottom:476.098667pt;}
.y182{bottom:476.242667pt;}
.y191{bottom:477.281333pt;}
.y10{bottom:479.113333pt;}
.y81{bottom:487.602667pt;}
.y10c{bottom:488.953333pt;}
.y2e{bottom:490.036000pt;}
.y99{bottom:491.018667pt;}
.ye5{bottom:493.186667pt;}
.y4d{bottom:494.302667pt;}
.y181{bottom:494.308000pt;}
.yf{bottom:497.178667pt;}
.y80{bottom:505.668000pt;}
.y10b{bottom:507.018667pt;}
.yba{bottom:507.510667pt;}
.y2d{bottom:508.101333pt;}
.y68{bottom:508.568000pt;}
.y98{bottom:509.084000pt;}
.ye4{bottom:510.920000pt;}
.y4c{bottom:512.368000pt;}
.y180{bottom:512.373333pt;}
.ye{bottom:515.245333pt;}
.y10a{bottom:525.085333pt;}
.yb9{bottom:525.576000pt;}
.y2c{bottom:526.166667pt;}
.y97{bottom:527.150667pt;}
.ye3{bottom:528.985333pt;}
.y17f{bottom:530.438667pt;}
.yd{bottom:533.310667pt;}
.y109{bottom:543.150667pt;}
.yb8{bottom:543.641333pt;}
.y96{bottom:545.216000pt;}
.ye2{bottom:546.718667pt;}
.y4b{bottom:547.797333pt;}
.y7f{bottom:548.417333pt;}
.y17e{bottom:548.504000pt;}
.yc{bottom:551.376000pt;}
.y67{bottom:559.470667pt;}
.y108{bottom:561.216000pt;}
.yb7{bottom:561.706667pt;}
.y2b{bottom:562.298667pt;}
.y95{bottom:563.281333pt;}
.ye1{bottom:564.452000pt;}
.y7e{bottom:566.482667pt;}
.yb{bottom:569.441333pt;}
.y107{bottom:579.281333pt;}
.yb6{bottom:579.772000pt;}
.y12b{bottom:582.186667pt;}
.ye0{bottom:582.518667pt;}
.y17d{bottom:583.930667pt;}
.y7d{bottom:584.548000pt;}
.ya{bottom:587.506667pt;}
.y94{bottom:592.733333pt;}
.y4a{bottom:594.186667pt;}
.y66{bottom:595.602667pt;}
.y106{bottom:597.346667pt;}
.yb5{bottom:597.838667pt;}
.y2a{bottom:598.429333pt;}
.y12a{bottom:599.920000pt;}
.ydf{bottom:600.252000pt;}
.y17c{bottom:601.996000pt;}
.y7c{bottom:602.614667pt;}
.y93{bottom:610.800000pt;}
.y49{bottom:612.252000pt;}
.y65{bottom:613.668000pt;}
.y105{bottom:615.413333pt;}
.y29{bottom:616.494667pt;}
.y129{bottom:617.653333pt;}
.yde{bottom:617.985333pt;}
.y9{bottom:619.976000pt;}
.y17b{bottom:620.061333pt;}
.y7b{bottom:620.680000pt;}
.ya9{bottom:629.188000pt;}
.y48{bottom:630.317333pt;}
.y104{bottom:633.478667pt;}
.y28{bottom:634.560000pt;}
.y128{bottom:635.386667pt;}
.ydd{bottom:635.718667pt;}
.y7a{bottom:638.745333pt;}
.y47{bottom:648.384000pt;}
.y64{bottom:649.798667pt;}
.y103{bottom:651.544000pt;}
.y27{bottom:652.626667pt;}
.y127{bottom:653.120000pt;}
.ydc{bottom:653.784000pt;}
.y79{bottom:656.810667pt;}
.y8{bottom:665.805333pt;}
.y46{bottom:666.449333pt;}
.y16a{bottom:669.476000pt;}
.y102{bottom:669.609333pt;}
.y148{bottom:670.176000pt;}
.y26{bottom:670.692000pt;}
.y126{bottom:670.853333pt;}
.ydb{bottom:671.517333pt;}
.y7{bottom:681.745333pt;}
.y45{bottom:684.514667pt;}
.y63{bottom:685.930667pt;}
.y101{bottom:687.674667pt;}
.y147{bottom:688.242667pt;}
.y25{bottom:688.757333pt;}
.y125{bottom:688.918667pt;}
.yda{bottom:689.250667pt;}
.y44{bottom:702.580000pt;}
.y6{bottom:705.988000pt;}
.y146{bottom:706.308000pt;}
.y124{bottom:706.652000pt;}
.yd9{bottom:707.317333pt;}
.y100{bottom:716.956000pt;}
.y43{bottom:720.645333pt;}
.y62{bottom:722.061333pt;}
.y123{bottom:724.718667pt;}
.y24{bottom:724.888000pt;}
.yd8{bottom:725.050667pt;}
.y145{bottom:733.766667pt;}
.yff{bottom:735.021333pt;}
.y42{bottom:738.712000pt;}
.y61{bottom:740.126667pt;}
.y122{bottom:742.452000pt;}
.yd7{bottom:742.784000pt;}
.yfe{bottom:753.086667pt;}
.y41{bottom:756.777333pt;}
.y60{bottom:758.192000pt;}
.y5{bottom:759.686667pt;}
.yd6{bottom:760.517333pt;}
.y23{bottom:761.020000pt;}
.y144{bottom:772.717333pt;}
.y40{bottom:774.842667pt;}
.y5f{bottom:776.258667pt;}
.y4{bottom:777.752000pt;}
.yd5{bottom:778.250667pt;}
.y22{bottom:779.085333pt;}
.yfd{bottom:783.106667pt;}
.y143{bottom:790.782667pt;}
.y5e{bottom:794.324000pt;}
.yd4{bottom:795.984000pt;}
.yfc{bottom:801.173333pt;}
.y3{bottom:810.894667pt;}
.y3f{bottom:810.973333pt;}
.y5d{bottom:812.389333pt;}
.yd3{bottom:813.717333pt;}
.y21{bottom:815.216000pt;}
.y142{bottom:818.242667pt;}
.yfb{bottom:819.238667pt;}
.y5c{bottom:830.454667pt;}
.y121{bottom:831.450667pt;}
.yd2{bottom:831.784000pt;}
.y20{bottom:833.281333pt;}
.y3e{bottom:846.402667pt;}
.yfa{bottom:846.697333pt;}
.y120{bottom:849.185333pt;}
.yd1{bottom:849.517333pt;}
.y2{bottom:851.310667pt;}
.y141{bottom:857.192000pt;}
.y5b{bottom:866.586667pt;}
.y11f{bottom:866.918667pt;}
.y1f{bottom:867.288000pt;}
.yd0{bottom:867.582667pt;}
.y3d{bottom:873.862667pt;}
.y140{bottom:875.257333pt;}
.y1{bottom:880.533333pt;}
.y11e{bottom:884.984000pt;}
.ycf{bottom:885.316000pt;}
.y92{bottom:885.412000pt;}
.yf9{bottom:885.648000pt;}
.y13f{bottom:893.324000pt;}
.y5a{bottom:902.717333pt;}
.yce{bottom:903.049333pt;}
.yf8{bottom:903.381333pt;}
.y1e{bottom:903.418667pt;}
.y13e{bottom:911.389333pt;}
.y91{bottom:912.130667pt;}
.y3c{bottom:920.782667pt;}
.ycd{bottom:921.114667pt;}
.y1d{bottom:938.848000pt;}
.hb{height:16.418475pt;}
.hc{height:21.551241pt;}
.h16{height:33.163369pt;}
.h1c{height:33.882950pt;}
.h20{height:36.041221pt;}
.h13{height:38.690597pt;}
.h19{height:39.530109pt;}
.h14{height:39.672809pt;}
.h10{height:39.747327pt;}
.h4{height:39.850400pt;}
.ha{height:40.261852pt;}
.h8{height:40.378215pt;}
.h1a{height:40.533633pt;}
.h6{height:43.636400pt;}
.h12{height:44.217825pt;}
.he{height:44.851625pt;}
.h3{height:44.887791pt;}
.h18{height:45.177267pt;}
.h15{height:46.679074pt;}
.h1b{height:47.691920pt;}
.h7{height:47.820800pt;}
.h1f{height:50.212743pt;}
.h9{height:50.614663pt;}
.h21{height:51.487459pt;}
.h5{height:57.384800pt;}
.h2{height:64.454458pt;}
.h1e{height:73.774906pt;}
.h11{height:227.600352pt;}
.h17{height:232.538843pt;}
.hd{height:256.354161pt;}
.hf{height:290.541354pt;}
.h1d{height:300.668879pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:334.757752pt;}
.w5{width:478.203091pt;}
.w3{width:478.206685pt;}
.w4{width:478.223128pt;}
.w6{width:478.249327pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:17.855859pt;}
.x22{left:19.083731pt;}
.x23{left:20.835298pt;}
.x16{left:25.192075pt;}
.x21{left:29.283328pt;}
.x1d{left:31.617496pt;}
.x29{left:36.857876pt;}
.x2e{left:38.003968pt;}
.x15{left:40.543436pt;}
.x1b{left:42.505961pt;}
.x2f{left:43.942088pt;}
.x27{left:45.781388pt;}
.x1f{left:54.984882pt;}
.x13{left:59.564167pt;}
.x32{left:123.908771pt;}
.x2d{left:125.508835pt;}
.x18{left:128.310226pt;}
.x19{left:131.422667pt;}
.x33{left:135.403247pt;}
.xf{left:136.293333pt;}
.x9{left:157.104000pt;}
.x14{left:165.417523pt;}
.xa{left:179.686667pt;}
.x1{left:183.840000pt;}
.x11{left:191.852000pt;}
.x8{left:193.468000pt;}
.xb{left:194.522667pt;}
.xe{left:195.668000pt;}
.x7{left:213.393333pt;}
.x10{left:218.194667pt;}
.x12{left:226.412000pt;}
.x2{left:230.330667pt;}
.x1c{left:231.808154pt;}
.x28{left:232.831957pt;}
.x20{left:238.063007pt;}
.xc{left:240.886667pt;}
.x1a{left:248.740000pt;}
.x26{left:286.100525pt;}
.x2c{left:300.148387pt;}
.x2a{left:308.207547pt;}
.x24{left:311.837825pt;}
.x4{left:331.717333pt;}
.x3{left:342.880000pt;}
.x5{left:360.545333pt;}
.x2b{left:361.969377pt;}
.x25{left:364.457900pt;}
.x6{left:366.984000pt;}
.x1e{left:388.934667pt;}
.xd{left:392.570667pt;}
.x30{left:451.781256pt;}
.x31{left:454.054442pt;}
}




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