
    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_db5358f807f025590c5e5a38.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1b597d254e3b158a70fe6723.woff')format("woff");}.ff2{font-family:ff2;line-height:0.890000;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_7a70692e5ffb3f9f2fa9fe47.woff')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_64cb1988a0bea0d773c3e18b.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6284308eb8ece977daaa57a9.woff')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_2f71b6526c7927881c9c820b.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c4497384283849ac067f3ba1.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f00005faa20db34ff790e6b9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.898000;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_97c44726933bb569e8a452c7.woff')format("woff");}.ff9{font-family:ff9;line-height:0.684000;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_5a4374176d5f18f1250b9868.woff')format("woff");}.ffa{font-family:ffa;line-height:0.685000;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_48a881ddae8b64df8899d641.woff')format("woff");}.ffb{font-family:ffb;line-height:1.038000;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_7e8559f2e5456f1e1c8e4c81.woff')format("woff");}.ffc{font-family:ffc;line-height:0.746094;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_6f07441fc0325d63181ca641.woff')format("woff");}.ffd{font-family:ffd;line-height:1.028000;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_62e2b00b7b59ab99a6954013.woff')format("woff");}.ffe{font-family:ffe;line-height:1.038000;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_eeb899aaee1e77f5958339ed.woff')format("woff");}.fff{font-family:fff;line-height:0.999000;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_b09fb15f75c5a27e53154df7.woff')format("woff");}.ff10{font-family:ff10;line-height:0.872000;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_8644d424d1c34cead5b43cd3.woff')format("woff");}.ff11{font-family:ff11;line-height:0.686000;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;}
.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);}
.m3{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);}
.m5{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m4{transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-ms-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-webkit-transform:matrix(0.245145,0.000000,-0.049029,0.245145,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);}
.v1{vertical-align:-8.970000px;}
.v8{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:6.594000px;}
.v3{vertical-align:15.564000px;}
.v9{vertical-align:20.616000px;}
.v2{vertical-align:21.690000px;}
.v7{vertical-align:24.342000px;}
.v6{vertical-align:30.318000px;}
.v5{vertical-align:37.254000px;}
.ls1b{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000062px;}
.ls21{letter-spacing:0.000093px;}
.lsf{letter-spacing:0.001120px;}
.ls35{letter-spacing:0.001202px;}
.ls37{letter-spacing:0.001409px;}
.ls17{letter-spacing:0.001690px;}
.ls29{letter-spacing:0.002481px;}
.ls2d{letter-spacing:0.003031px;}
.ls26{letter-spacing:0.003652px;}
.ls9{letter-spacing:0.004200px;}
.ls7{letter-spacing:0.004896px;}
.lse{letter-spacing:0.005306px;}
.lsc{letter-spacing:0.006062px;}
.ls4b{letter-spacing:0.834017px;}
.ls45{letter-spacing:2.360735px;}
.ls3d{letter-spacing:2.371909px;}
.ls47{letter-spacing:2.385527px;}
.ls42{letter-spacing:2.387660px;}
.ls43{letter-spacing:2.387740px;}
.ls3b{letter-spacing:2.389613px;}
.ls40{letter-spacing:2.391030px;}
.ls3f{letter-spacing:2.391527px;}
.ls3e{letter-spacing:2.391746px;}
.ls3c{letter-spacing:2.393740px;}
.ls41{letter-spacing:2.395613px;}
.ls19{letter-spacing:2.420908px;}
.ls0{letter-spacing:2.964877px;}
.ls34{letter-spacing:2.982648px;}
.ls2c{letter-spacing:2.986087px;}
.ls4{letter-spacing:2.986766px;}
.ls2{letter-spacing:2.987108px;}
.ls4c{letter-spacing:2.987675px;}
.ls3a{letter-spacing:2.988017px;}
.ls31{letter-spacing:2.988049px;}
.ls38{letter-spacing:2.988247px;}
.ls3{letter-spacing:2.988780px;}
.ls8{letter-spacing:2.989140px;}
.ls1f{letter-spacing:3.422408px;}
.ls36{letter-spacing:4.751996px;}
.ls14{letter-spacing:4.908093px;}
.ls27{letter-spacing:4.914093px;}
.ls18{letter-spacing:5.408908px;}
.ls39{letter-spacing:7.171409px;}
.ls1c{letter-spacing:9.962338px;}
.ls46{letter-spacing:14.345700px;}
.ls44{letter-spacing:14.345740px;}
.ls23{letter-spacing:16.167269px;}
.ls2f{letter-spacing:16.601607px;}
.ls2b{letter-spacing:17.747607px;}
.ls1{letter-spacing:17.895527px;}
.ls2e{letter-spacing:19.590648px;}
.ls24{letter-spacing:21.078093px;}
.ls30{letter-spacing:21.400087px;}
.ls2a{letter-spacing:23.150908px;}
.ls33{letter-spacing:23.310648px;}
.ls22{letter-spacing:23.960908px;}
.ls1d{letter-spacing:24.286200px;}
.ls25{letter-spacing:25.592908px;}
.ls11{letter-spacing:25.637607px;}
.ls1e{letter-spacing:27.271140px;}
.ls10{letter-spacing:28.621140px;}
.ls13{letter-spacing:28.784525px;}
.ls20{letter-spacing:29.520093px;}
.ls15{letter-spacing:31.709482px;}
.ls16{letter-spacing:31.716538px;}
.ls1a{letter-spacing:34.484908px;}
.ls32{letter-spacing:34.682908px;}
.lsd{letter-spacing:35.276525px;}
.lsb{letter-spacing:37.661607px;}
.ls6{letter-spacing:37.662538px;}
.ls28{letter-spacing:38.936908px;}
.lsa{letter-spacing:40.651140px;}
.ls5{letter-spacing:42.576093px;}
.ls4a{letter-spacing:70.222711px;}
.ls49{letter-spacing:82.626939px;}
.ls48{letter-spacing:95.031166px;}
.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;}
}
.wscc{word-spacing:-95.031166px;}
.ws7d{word-spacing:-47.654765px;}
.ws5c{word-spacing:-21.498735px;}
.ws4c{word-spacing:-17.932680px;}
.ws3{word-spacing:-14.943900px;}
.ws1d{word-spacing:-14.920027px;}
.ws8e{word-spacing:-14.346180px;}
.ws92{word-spacing:-11.955150px;}
.wsc8{word-spacing:-11.936059px;}
.ws72{word-spacing:-10.460700px;}
.ws87{word-spacing:-9.564150px;}
.ws61{word-spacing:-8.197809px;}
.ws5d{word-spacing:-8.038581px;}
.ws60{word-spacing:-7.455396px;}
.ws5f{word-spacing:-6.834113px;}
.ws5e{word-spacing:-5.591547px;}
.ws167{word-spacing:-3.969110px;}
.ws8c{word-spacing:-2.391030px;}
.ws123{word-spacing:-1.016185px;}
.wsfd{word-spacing:-0.896634px;}
.ws43{word-spacing:-0.836858px;}
.wsbc{word-spacing:-0.777083px;}
.ws14{word-spacing:-0.699379px;}
.ws139{word-spacing:-0.573847px;}
.ws13b{word-spacing:-0.478206px;}
.ws10e{word-spacing:-0.478205px;}
.wsf8{word-spacing:-0.418429px;}
.ws77{word-spacing:-0.358654px;}
.ws11a{word-spacing:-0.179327px;}
.ws7e{word-spacing:-0.119551px;}
.ws7b{word-spacing:-0.101167px;}
.ws20{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.ws156{word-spacing:-0.047821px;}
.ws51{word-spacing:-0.041843px;}
.ws102{word-spacing:-0.010652px;}
.ws5b{word-spacing:0.000000px;}
.ws69{word-spacing:0.059776px;}
.ws133{word-spacing:0.095641px;}
.ws39{word-spacing:0.119551px;}
.wsa6{word-spacing:0.298878px;}
.ws44{word-spacing:0.358654px;}
.wsf{word-spacing:0.376589px;}
.wsd7{word-spacing:0.382565px;}
.wsec{word-spacing:0.537980px;}
.ws95{word-spacing:0.597756px;}
.wsbf{word-spacing:0.657532px;}
.ws96{word-spacing:0.896634px;}
.ws13c{word-spacing:0.908591px;}
.ws9{word-spacing:0.914573px;}
.wsbe{word-spacing:0.956410px;}
.ws15{word-spacing:0.968371px;}
.ws107{word-spacing:1.016185px;}
.ws10{word-spacing:1.022170px;}
.ws134{word-spacing:1.044312px;}
.ws135{word-spacing:1.052053px;}
.wsc6{word-spacing:1.135736px;}
.ws162{word-spacing:1.147694px;}
.ws6b{word-spacing:1.195512px;}
.ws6c{word-spacing:1.224334px;}
.ws1f{word-spacing:1.255288px;}
.ws11f{word-spacing:1.315063px;}
.ws101{word-spacing:1.374839px;}
.ws166{word-spacing:1.386797px;}
.ws11b{word-spacing:1.434614px;}
.ws114{word-spacing:1.554166px;}
.ws12b{word-spacing:1.578080px;}
.ws157{word-spacing:1.714423px;}
.ws63{word-spacing:1.721542px;}
.ws34{word-spacing:1.733492px;}
.wsa5{word-spacing:1.793268px;}
.ws10f{word-spacing:1.853044px;}
.ws41{word-spacing:1.912819px;}
.wsc4{word-spacing:1.972595px;}
.wsc0{word-spacing:2.032370px;}
.ws121{word-spacing:2.092146px;}
.wsc3{word-spacing:2.151922px;}
.wsc{word-spacing:2.313331px;}
.ws89{word-spacing:2.391047px;}
.ws8b{word-spacing:2.395093px;}
.wsda{word-spacing:2.450800px;}
.ws137{word-spacing:2.486671px;}
.ws119{word-spacing:2.510575px;}
.ws168{word-spacing:2.534492px;}
.wsc7{word-spacing:2.570351px;}
.wsd9{word-spacing:2.689902px;}
.ws3f{word-spacing:2.749678px;}
.ws85{word-spacing:2.869229px;}
.ws38{word-spacing:2.929004px;}
.ws78{word-spacing:2.988780px;}
.wsa4{word-spacing:3.048556px;}
.wsfc{word-spacing:3.108331px;}
.ws158{word-spacing:3.251801px;}
.ws98{word-spacing:3.407209px;}
.ws3e{word-spacing:3.466985px;}
.ws46{word-spacing:3.526760px;}
.ws57{word-spacing:3.586536px;}
.ws15b{word-spacing:3.634366px;}
.ws161{word-spacing:3.670193px;}
.wsd6{word-spacing:3.682186px;}
.ws10b{word-spacing:3.885414px;}
.ws14e{word-spacing:3.921289px;}
.wsf5{word-spacing:3.945190px;}
.ws147{word-spacing:4.016930px;}
.ws116{word-spacing:4.064741px;}
.ws129{word-spacing:4.064751px;}
.ws12e{word-spacing:4.112572px;}
.wsb7{word-spacing:4.124516px;}
.ws153{word-spacing:4.160392px;}
.wse9{word-spacing:4.184292px;}
.wsee{word-spacing:4.244068px;}
.ws11c{word-spacing:4.303843px;}
.ws12f{word-spacing:4.447316px;}
.wsea{word-spacing:4.542946px;}
.ws12c{word-spacing:4.590778px;}
.ws111{word-spacing:4.602721px;}
.ws155{word-spacing:4.638598px;}
.wsf1{word-spacing:4.662497px;}
.wsd8{word-spacing:4.686419px;}
.wsff{word-spacing:4.722272px;}
.ws88{word-spacing:4.742660px;}
.ws8d{word-spacing:4.743818px;}
.ws8a{word-spacing:4.744274px;}
.ws13d{word-spacing:4.779019px;}
.ws4a{word-spacing:4.782048px;}
.ws86{word-spacing:4.782060px;}
.ws14a{word-spacing:4.877701px;}
.ws33{word-spacing:4.901599px;}
.ws12{word-spacing:4.949453px;}
.ws138{word-spacing:4.973342px;}
.ws154{word-spacing:5.021163px;}
.ws73{word-spacing:5.080926px;}
.ws35{word-spacing:5.140702px;}
.ws15a{word-spacing:5.164625px;}
.ws56{word-spacing:5.200477px;}
.ws70{word-spacing:5.260253px;}
.ws7a{word-spacing:5.379804px;}
.wsfb{word-spacing:5.439580px;}
.ws1b{word-spacing:5.487437px;}
.ws4e{word-spacing:5.499355px;}
.ws40{word-spacing:5.618906px;}
.ws125{word-spacing:5.858009px;}
.ws4d{word-spacing:5.917269px;}
.ws82{word-spacing:5.927927px;}
.ws81{word-spacing:5.929754px;}
.ws4b{word-spacing:5.953540px;}
.ws2{word-spacing:5.977560px;}
.ws6d{word-spacing:5.978540px;}
.wsaa{word-spacing:6.156887px;}
.ws146{word-spacing:6.168857px;}
.wsc5{word-spacing:6.216662px;}
.ws18{word-spacing:6.294413px;}
.ws68{word-spacing:6.336214px;}
.ws10d{word-spacing:6.395989px;}
.ws9a{word-spacing:6.455765px;}
.ws149{word-spacing:6.503602px;}
.ws76{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.ws30{word-spacing:6.933970px;}
.wsa0{word-spacing:7.053521px;}
.ws64{word-spacing:7.077449px;}
.ws17{word-spacing:7.101389px;}
.ws7f{word-spacing:7.173072px;}
.ws2d{word-spacing:7.232848px;}
.ws152{word-spacing:7.268731px;}
.wsdd{word-spacing:7.352399px;}
.ws15c{word-spacing:7.364372px;}
.ws5{word-spacing:7.370381px;}
.ws104{word-spacing:7.412174px;}
.ws62{word-spacing:7.412193px;}
.wsae{word-spacing:7.460014px;}
.ws84{word-spacing:7.651277px;}
.ws48{word-spacing:7.711052px;}
.ws9d{word-spacing:7.830604px;}
.wsb4{word-spacing:7.890379px;}
.wsb3{word-spacing:7.903111px;}
.wsbb{word-spacing:7.905691px;}
.ws71{word-spacing:7.950155px;}
.ws169{word-spacing:7.984992px;}
.ws159{word-spacing:7.986040px;}
.ws9f{word-spacing:8.009930px;}
.ws151{word-spacing:8.033861px;}
.wse5{word-spacing:8.129482px;}
.ws13e{word-spacing:8.272964px;}
.ws2b{word-spacing:8.428360px;}
.wse{word-spacing:8.553946px;}
.wsb5{word-spacing:8.607686px;}
.ws148{word-spacing:8.607708px;}
.ws21{word-spacing:8.727238px;}
.ws49{word-spacing:8.787013px;}
.ws26{word-spacing:8.846789px;}
.ws160{word-spacing:8.990273px;}
.ws99{word-spacing:9.085891px;}
.ws14d{word-spacing:9.085914px;}
.ws132{word-spacing:9.133735px;}
.ws108{word-spacing:9.205442px;}
.ws97{word-spacing:9.265218px;}
.ws65{word-spacing:9.324994px;}
.ws15d{word-spacing:9.325017px;}
.ws12a{word-spacing:9.420658px;}
.wsb9{word-spacing:9.444545px;}
.ws58{word-spacing:9.564096px;}
.wsdb{word-spacing:9.623872px;}
.ws6a{word-spacing:9.683647px;}
.ws10a{word-spacing:9.803198px;}
.wsa{word-spacing:9.898906px;}
.ws50{word-spacing:9.922750px;}
.ws14b{word-spacing:9.982423px;}
.wsed{word-spacing:9.982525px;}
.ws14c{word-spacing:9.994505px;}
.ws100{word-spacing:10.042301px;}
.ws14f{word-spacing:10.090147px;}
.wsb{word-spacing:10.221696px;}
.ws94{word-spacing:10.281403px;}
.wsde{word-spacing:10.341179px;}
.ws29{word-spacing:10.400954px;}
.ws8{word-spacing:10.436890px;}
.wsb8{word-spacing:10.460730px;}
.ws128{word-spacing:10.472711px;}
.wse4{word-spacing:10.520506px;}
.ws9b{word-spacing:10.640057px;}
.ws142{word-spacing:10.663994px;}
.ws103{word-spacing:10.699832px;}
.ws12d{word-spacing:10.759635px;}
.ws52{word-spacing:10.819384px;}
.ws53{word-spacing:10.879159px;}
.ws131{word-spacing:10.903097px;}
.ws110{word-spacing:10.998710px;}
.ws15e{word-spacing:11.039978px;}
.ws15f{word-spacing:11.046559px;}
.ws10c{word-spacing:11.178037px;}
.wsa2{word-spacing:11.237813px;}
.wse8{word-spacing:11.297588px;}
.wsa3{word-spacing:11.357364px;}
.ws143{word-spacing:11.381303px;}
.ws136{word-spacing:11.572585px;}
.ws3a{word-spacing:11.596466px;}
.ws13{word-spacing:11.620454px;}
.ws16{word-spacing:11.674253px;}
.wsf9{word-spacing:11.716018px;}
.ws31{word-spacing:11.775793px;}
.wseb{word-spacing:11.835569px;}
.wsdc{word-spacing:11.895344px;}
.ws80{word-spacing:11.955120px;}
.ws165{word-spacing:11.955150px;}
.wse7{word-spacing:12.014896px;}
.ws1a{word-spacing:12.050842px;}
.wsc2{word-spacing:12.194222px;}
.wsa9{word-spacing:12.313774px;}
.ws13a{word-spacing:12.337715px;}
.ws150{word-spacing:12.528997px;}
.ws2a{word-spacing:12.672427px;}
.ws47{word-spacing:12.732203px;}
.wsc1{word-spacing:12.791978px;}
.wsbd{word-spacing:12.851754px;}
.ws145{word-spacing:12.911562px;}
.ws144{word-spacing:12.959383px;}
.ws124{word-spacing:12.971305px;}
.ws22{word-spacing:13.031081px;}
.ws115{word-spacing:13.150632px;}
.ws9e{word-spacing:13.270183px;}
.wsf7{word-spacing:13.389734px;}
.wsb0{word-spacing:13.389768px;}
.ws130{word-spacing:13.628871px;}
.ws1e{word-spacing:13.688612px;}
.wsa7{word-spacing:13.748388px;}
.ws3c{word-spacing:13.808164px;}
.ws3d{word-spacing:13.867939px;}
.ws112{word-spacing:13.987490px;}
.wsb2{word-spacing:14.047266px;}
.ws59{word-spacing:14.107042px;}
.ws5a{word-spacing:14.166817px;}
.ws120{word-spacing:14.226593px;}
.wsf0{word-spacing:14.286368px;}
.ws79{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.ws45{word-spacing:14.405920px;}
.ws27{word-spacing:14.465695px;}
.ws32{word-spacing:14.585246px;}
.wsa8{word-spacing:14.704798px;}
.wsf4{word-spacing:14.764573px;}
.ws25{word-spacing:14.824349px;}
.ws163{word-spacing:14.872207px;}
.ws36{word-spacing:14.884124px;}
.ws54{word-spacing:14.943900px;}
.wse1{word-spacing:15.003676px;}
.ws109{word-spacing:15.123227px;}
.wse2{word-spacing:15.183002px;}
.wsa1{word-spacing:15.302554px;}
.ws11{word-spacing:15.440141px;}
.ws126{word-spacing:15.661207px;}
.ws83{word-spacing:15.720983px;}
.wsf3{word-spacing:16.019861px;}
.ws122{word-spacing:16.079636px;}
.ws13f{word-spacing:16.259004px;}
.ws9c{word-spacing:16.318739px;}
.ws164{word-spacing:16.354645px;}
.ws4f{word-spacing:16.378514px;}
.wsb6{word-spacing:16.438290px;}
.ws7c{word-spacing:16.557841px;}
.ws105{word-spacing:16.856719px;}
.ws118{word-spacing:16.916495px;}
.ws7{word-spacing:17.107891px;}
.wsab{word-spacing:17.155597px;}
.ws141{word-spacing:17.263237px;}
.ws2e{word-spacing:17.334924px;}
.wse0{word-spacing:17.633802px;}
.wsdf{word-spacing:17.655996px;}
.wse6{word-spacing:17.693578px;}
.wsb1{word-spacing:17.837084px;}
.ws1c{word-spacing:17.932680px;}
.ws2c{word-spacing:18.112007px;}
.ws74{word-spacing:18.565972px;}
.ws75{word-spacing:18.590212px;}
.wsf2{word-spacing:18.649987px;}
.ws3b{word-spacing:18.829314px;}
.wsac{word-spacing:18.889090px;}
.ws11e{word-spacing:19.247743px;}
.ws23{word-spacing:19.427070px;}
.ws42{word-spacing:19.486846px;}
.wsba{word-spacing:19.546621px;}
.ws37{word-spacing:19.965050px;}
.ws6{word-spacing:20.174400px;}
.wsef{word-spacing:20.323704px;}
.ws11d{word-spacing:20.344990px;}
.ws55{word-spacing:20.383480px;}
.wsd{word-spacing:20.497190px;}
.ws113{word-spacing:20.861684px;}
.ws28{word-spacing:21.220338px;}
.ws24{word-spacing:21.937645px;}
.wsfe{word-spacing:22.116972px;}
.ws127{word-spacing:22.296299px;}
.wsfa{word-spacing:22.475626px;}
.ws106{word-spacing:22.714728px;}
.ws67{word-spacing:22.774504px;}
.ws6f{word-spacing:23.133157px;}
.ws2f{word-spacing:23.192933px;}
.wse3{word-spacing:23.372260px;}
.wsca{word-spacing:23.910300px;}
.ws19{word-spacing:25.446643px;}
.wsf6{word-spacing:25.882835px;}
.ws6e{word-spacing:26.288944px;}
.ws66{word-spacing:28.196944px;}
.ws117{word-spacing:29.409595px;}
.ws140{word-spacing:29.887875px;}
.wsd2{word-spacing:33.245760px;}
.wscf{word-spacing:45.571410px;}
.wsce{word-spacing:57.818484px;}
.wsd5{word-spacing:57.897061px;}
.wsd3{word-spacing:57.975638px;}
.wsd0{word-spacing:70.301288px;}
.wsd4{word-spacing:70.379865px;}
.ws90{word-spacing:71.061412px;}
.ws91{word-spacing:74.689198px;}
.wsd1{word-spacing:82.626939px;}
.wscd{word-spacing:82.705516px;}
.wscb{word-spacing:84.977206px;}
.ws93{word-spacing:95.832482px;}
.wsad{word-spacing:117.337625px;}
.wsaf{word-spacing:167.398150px;}
.wsc9{word-spacing:255.457645px;}
.ws8f{word-spacing:384.000790px;}
._28{margin-left:-95.031166px;}
._1{margin-left:-18.506572px;}
._32{margin-left:-6.933987px;}
._3{margin-left:-5.260272px;}
._2{margin-left:-3.885414px;}
._0{margin-left:-2.151927px;}
._5{margin-left:-1.075968px;}
._c{width:1.700316px;}
._9{width:2.988780px;}
._31{width:4.902688px;}
._30{width:7.914515px;}
._6{width:13.449600px;}
._22{width:14.824349px;}
._13{width:16.916495px;}
._2f{width:18.231558px;}
._8{width:19.528819px;}
._a{width:21.160562px;}
._4{width:22.326336px;}
._7{width:24.101683px;}
._23{width:25.225309px;}
._2e{width:27.197898px;}
._b{width:28.512961px;}
._10{width:29.887800px;}
._11{width:32.084665px;}
._d{width:35.327380px;}
._f{width:38.686865px;}
._e{width:44.707102px;}
._12{width:48.636859px;}
._25{width:50.642015px;}
._2d{width:57.975638px;}
._2a{width:58.998993px;}
._14{width:65.622952px;}
._2b{width:70.379865px;}
._2c{width:82.626939px;}
._16{width:83.877332px;}
._29{width:94.086389px;}
._17{width:95.975944px;}
._1b{width:102.383905px;}
._19{width:107.787632px;}
._20{width:115.678031px;}
._1a{width:119.886244px;}
._1c{width:123.568430px;}
._27{width:124.716125px;}
._26{width:132.415241px;}
._21{width:136.910378px;}
._1f{width:163.498631px;}
._1e{width:176.790642px;}
._24{width:182.716398px;}
._18{width:188.700088px;}
._1d{width:224.613358px;}
._15{width:285.536803px;}
.fc6{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(153,0,0);}
.fc8{color:rgb(255,255,255);}
.fc7{color:rgb(38,38,38);}
.fc5{color:rgb(128,128,128);}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:26.375220px;}
.fsc{font-size:29.887800px;}
.fsa{font-size:32.236380px;}
.fs9{font-size:35.166960px;}
.fs13{font-size:35.643168px;}
.fse{font-size:35.865600px;}
.fs7{font-size:38.097540px;}
.fsd{font-size:38.256600px;}
.fsb{font-size:38.852176px;}
.fs14{font-size:38.883456px;}
.fs8{font-size:41.028120px;}
.fs5{font-size:41.842800px;}
.fsf{font-size:46.768590px;}
.fs4{font-size:47.820600px;}
.fs11{font-size:48.198150px;}
.fs10{font-size:51.020280px;}
.fs12{font-size:52.579800px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.ybe{bottom:7.759334px;}
.yc7{bottom:7.996511px;}
.ye7{bottom:9.394937px;}
.y65{bottom:21.492288px;}
.ybd{bottom:22.784187px;}
.yc6{bottom:23.480623px;}
.yf0{bottom:32.639826px;}
.yfa{bottom:33.312249px;}
.y64{bottom:34.747667px;}
.y5d{bottom:40.960277px;}
.yca{bottom:44.886353px;}
.ybf{bottom:46.923138px;}
.yc2{bottom:56.625646px;}
.yef{bottom:62.580087px;}
.yf9{bottom:63.252510px;}
.yc8{bottom:72.172674px;}
.yc0{bottom:79.288637px;}
.yee{bottom:92.520348px;}
.yf8{bottom:93.192771px;}
.y59{bottom:109.443000px;}
.yc1{bottom:111.654136px;}
.y32{bottom:113.332500px;}
.y1a2{bottom:113.334000px;}
.yc9{bottom:113.717759px;}
.y62{bottom:113.975385px;}
.y5c{bottom:117.547762px;}
.y61{bottom:121.887951px;}
.yed{bottom:122.460609px;}
.yf7{bottom:123.133032px;}
.y5b{bottom:125.460328px;}
.y1a1{bottom:126.783000px;}
.y5f{bottom:130.161711px;}
.y31{bottom:131.265000px;}
.y8d{bottom:131.266500px;}
.y6a{bottom:134.544393px;}
.y69{bottom:139.180571px;}
.y1a0{bottom:140.232000px;}
.yf1{bottom:145.502601px;}
.y58{bottom:149.197500px;}
.y30{bottom:149.199000px;}
.yec{bottom:152.400871px;}
.yf6{bottom:153.073294px;}
.y13b{bottom:153.399000px;}
.y19f{bottom:153.682500px;}
.y68{bottom:158.793477px;}
.y15e{bottom:167.130000px;}
.y2f{bottom:167.131500px;}
.y19e{bottom:167.286000px;}
.y13a{bottom:178.378500px;}
.y19d{bottom:180.735000px;}
.yeb{bottom:182.341132px;}
.yf5{bottom:183.013555px;}
.y15d{bottom:185.062500px;}
.y2e{bottom:185.064000px;}
.y19c{bottom:194.185500px;}
.y139{bottom:196.311000px;}
.y2d{bottom:202.996500px;}
.y57{bottom:203.257500px;}
.y19b{bottom:207.634500px;}
.y8c{bottom:208.738500px;}
.y67{bottom:208.854378px;}
.y66{bottom:209.774580px;}
.yea{bottom:212.281393px;}
.yf4{bottom:212.953816px;}
.y138{bottom:214.243500px;}
.y63{bottom:216.218925px;}
.y2c{bottom:220.929000px;}
.y19a{bottom:221.083500px;}
.y56{bottom:221.190000px;}
.y60{bottom:228.042350px;}
.y137{bottom:232.176000px;}
.y199{bottom:234.687000px;}
.y55{bottom:235.233000px;}
.y8b{bottom:238.222500px;}
.y2b{bottom:238.861500px;}
.y107{bottom:238.863000px;}
.y54{bottom:239.124000px;}
.ye9{bottom:242.221654px;}
.yf3{bottom:242.894077px;}
.y198{bottom:248.137500px;}
.y136{bottom:250.108500px;}
.y8a{bottom:256.155000px;}
.y15c{bottom:256.794000px;}
.y2a{bottom:256.795500px;}
.y53{bottom:257.056500px;}
.y197{bottom:261.586500px;}
.y135{bottom:268.041000px;}
.y89{bottom:269.293500px;}
.ye8{bottom:272.161915px;}
.yf2{bottom:272.834338px;}
.y88{bottom:274.447500px;}
.y15b{bottom:274.726500px;}
.y29{bottom:274.728000px;}
.y52{bottom:274.989000px;}
.y196{bottom:275.037000px;}
.y5e{bottom:277.100992px;}
.ybb{bottom:279.135000px;}
.y134{bottom:285.975000px;}
.y195{bottom:288.640500px;}
.y87{bottom:292.380000px;}
.y28{bottom:292.660500px;}
.y51{bottom:292.921500px;}
.ye6{bottom:301.559124px;}
.y194{bottom:302.089500px;}
.y133{bottom:303.400500px;}
.yba{bottom:305.355000px;}
.y86{bottom:310.312500px;}
.y27{bottom:310.593000px;}
.y193{bottom:315.538500px;}
.y50{bottom:316.608000px;}
.y132{bottom:321.333000px;}
.yb9{bottom:323.287500px;}
.y85{bottom:328.245000px;}
.ye1{bottom:328.525500px;}
.y192{bottom:328.989000px;}
.y26{bottom:329.370000px;}
.y131{bottom:339.265500px;}
.yb8{bottom:341.220000px;}
.y191{bottom:342.438000px;}
.y4f{bottom:346.110000px;}
.y84{bottom:346.177500px;}
.y15a{bottom:346.458000px;}
.ye0{bottom:346.459500px;}
.y25{bottom:347.302500px;}
.y106{bottom:347.556000px;}
.y190{bottom:356.041500px;}
.y130{bottom:357.198000px;}
.yb7{bottom:359.152500px;}
.y4e{bottom:364.042500px;}
.y83{bottom:364.111500px;}
.y159{bottom:364.390500px;}
.ydf{bottom:364.392000px;}
.y24{bottom:365.235000px;}
.y105{bottom:365.488500px;}
.y18f{bottom:369.492000px;}
.y12f{bottom:375.132000px;}
.yb6{bottom:377.085000px;}
.y4d{bottom:381.975000px;}
.y82{bottom:382.044000px;}
.y158{bottom:382.323000px;}
.yde{bottom:382.324500px;}
.y18e{bottom:382.941000px;}
.y23{bottom:383.169000px;}
.y104{bottom:383.421000px;}
.y12e{bottom:393.064500px;}
.yb5{bottom:395.017500px;}
.y18d{bottom:396.544500px;}
.y4c{bottom:399.907500px;}
.y81{bottom:400.234500px;}
.ydd{bottom:400.257000px;}
.y22{bottom:401.101500px;}
.y103{bottom:401.353500px;}
.y18c{bottom:409.995000px;}
.y12d{bottom:410.997000px;}
.yb4{bottom:412.951500px;}
.y4b{bottom:417.840000px;}
.y80{bottom:418.167000px;}
.ydc{bottom:418.189500px;}
.y21{bottom:419.034000px;}
.y102{bottom:419.286000px;}
.y18b{bottom:423.444000px;}
.y12c{bottom:427.915500px;}
.yb3{bottom:430.884000px;}
.y4a{bottom:435.774000px;}
.y7f{bottom:436.101000px;}
.y157{bottom:436.122000px;}
.ydb{bottom:436.345500px;}
.y18a{bottom:436.893000px;}
.y20{bottom:436.966500px;}
.y101{bottom:437.220000px;}
.y12b{bottom:445.849500px;}
.yb2{bottom:448.816500px;}
.y189{bottom:450.496500px;}
.y7e{bottom:450.822000px;}
.y49{bottom:453.706500px;}
.y156{bottom:454.054500px;}
.yda{bottom:454.279500px;}
.y7d{bottom:454.711500px;}
.y1f{bottom:454.899000px;}
.y100{bottom:455.152500px;}
.y12a{bottom:463.782000px;}
.y188{bottom:463.947000px;}
.yb1{bottom:466.749000px;}
.y48{bottom:471.639000px;}
.y155{bottom:471.987000px;}
.yd9{bottom:472.212000px;}
.y7c{bottom:472.644000px;}
.yff{bottom:473.085000px;}
.y187{bottom:477.396000px;}
.y129{bottom:481.714500px;}
.y1e{bottom:482.604000px;}
.yb0{bottom:484.681500px;}
.y47{bottom:489.571500px;}
.y154{bottom:489.919500px;}
.yd8{bottom:490.144500px;}
.y7b{bottom:490.576500px;}
.y186{bottom:490.846500px;}
.yfe{bottom:491.017500px;}
.y128{bottom:499.647000px;}
.yaf{bottom:502.614000px;}
.y185{bottom:504.450000px;}
.y46{bottom:507.504000px;}
.y153{bottom:507.853500px;}
.yd7{bottom:508.077000px;}
.y7a{bottom:508.510500px;}
.y127{bottom:517.579500px;}
.y184{bottom:517.899000px;}
.yae{bottom:520.548000px;}
.y1d{bottom:521.953500px;}
.y45{bottom:525.438000px;}
.y152{bottom:525.786000px;}
.yd6{bottom:526.009500px;}
.y79{bottom:526.443000px;}
.y183{bottom:531.348000px;}
.y126{bottom:535.512000px;}
.y1c{bottom:536.898000px;}
.yad{bottom:538.480500px;}
.yfd{bottom:542.259000px;}
.y44{bottom:543.370500px;}
.y151{bottom:543.718500px;}
.yd5{bottom:543.942000px;}
.y78{bottom:544.375500px;}
.y182{bottom:544.953000px;}
.y1b{bottom:551.841000px;}
.y125{bottom:553.446000px;}
.yfc{bottom:555.709500px;}
.yac{bottom:556.413000px;}
.y181{bottom:558.402000px;}
.y43{bottom:561.303000px;}
.y150{bottom:561.651000px;}
.yd4{bottom:561.876000px;}
.y77{bottom:562.566000px;}
.yfb{bottom:569.158500px;}
.y124{bottom:571.378500px;}
.y180{bottom:571.851000px;}
.yab{bottom:574.045500px;}
.y42{bottom:579.235500px;}
.y14f{bottom:579.583500px;}
.yd3{bottom:579.808500px;}
.y76{bottom:580.500000px;}
.y1a{bottom:582.573000px;}
.y17f{bottom:585.454500px;}
.y123{bottom:588.297000px;}
.yaa{bottom:591.978000px;}
.ye5{bottom:596.058000px;}
.y41{bottom:597.168000px;}
.y14e{bottom:597.516000px;}
.y19{bottom:597.517500px;}
.yd2{bottom:597.741000px;}
.y75{bottom:598.432500px;}
.y17e{bottom:598.905000px;}
.y122{bottom:606.229500px;}
.ya9{bottom:609.910500px;}
.y17d{bottom:612.354000px;}
.y18{bottom:612.462000px;}
.y40{bottom:615.276000px;}
.y14d{bottom:615.450000px;}
.yd1{bottom:615.897000px;}
.y74{bottom:616.365000px;}
.y121{bottom:624.163500px;}
.y17c{bottom:625.804500px;}
.y17{bottom:627.405000px;}
.ya8{bottom:627.844500px;}
.y1bc{bottom:628.900500px;}
.y3f{bottom:633.208500px;}
.y14c{bottom:633.382500px;}
.yd0{bottom:633.829500px;}
.y73{bottom:634.297500px;}
.y17b{bottom:639.408000px;}
.y120{bottom:642.096000px;}
.y16{bottom:642.349500px;}
.ya7{bottom:645.777000px;}
.y3e{bottom:651.141000px;}
.y14b{bottom:651.315000px;}
.ycf{bottom:651.762000px;}
.y72{bottom:652.230000px;}
.y17a{bottom:652.857000px;}
.y1bb{bottom:655.800000px;}
.y15{bottom:657.292500px;}
.y11f{bottom:660.028500px;}
.ya6{bottom:663.709500px;}
.y179{bottom:666.306000px;}
.y3d{bottom:669.073500px;}
.y14a{bottom:669.247500px;}
.y1ba{bottom:669.249000px;}
.yce{bottom:669.696000px;}
.y71{bottom:670.422000px;}
.y14{bottom:672.237000px;}
.y11e{bottom:677.961000px;}
.y178{bottom:679.756500px;}
.ya5{bottom:681.642000px;}
.y1b9{bottom:682.698000px;}
.y3c{bottom:687.006000px;}
.y149{bottom:687.180000px;}
.y13{bottom:687.181500px;}
.y70{bottom:688.354500px;}
.y177{bottom:693.360000px;}
.y11d{bottom:695.893500px;}
.y1b8{bottom:696.148500px;}
.ya4{bottom:699.274500px;}
.y12{bottom:702.124500px;}
.y3b{bottom:705.114000px;}
.y6f{bottom:706.287000px;}
.y176{bottom:706.809000px;}
.y1b7{bottom:709.597500px;}
.y11c{bottom:713.826000px;}
.y11{bottom:717.069000px;}
.ya3{bottom:717.207000px;}
.ycd{bottom:718.608000px;}
.y175{bottom:720.259500px;}
.y3a{bottom:723.046500px;}
.y11b{bottom:731.760000px;}
.y10{bottom:732.013500px;}
.ycc{bottom:732.057000px;}
.y174{bottom:733.863000px;}
.ya2{bottom:735.141000px;}
.y1b6{bottom:736.497000px;}
.y39{bottom:740.979000px;}
.ycb{bottom:745.507500px;}
.yf{bottom:746.956500px;}
.y173{bottom:747.312000px;}
.y11a{bottom:749.692500px;}
.y1b5{bottom:749.946000px;}
.y6e{bottom:752.613000px;}
.ya1{bottom:753.073500px;}
.y38{bottom:758.911500px;}
.y172{bottom:760.762500px;}
.ye{bottom:761.901000px;}
.y1b4{bottom:763.396500px;}
.y6d{bottom:766.062000px;}
.y119{bottom:767.625000px;}
.yc5{bottom:772.405500px;}
.y171{bottom:774.211500px;}
.ya0{bottom:775.413000px;}
.y37{bottom:776.844000px;}
.yd{bottom:776.845500px;}
.y6c{bottom:779.512500px;}
.y118{bottom:784.543500px;}
.y170{bottom:787.660500px;}
.y1b3{bottom:790.294500px;}
.yc{bottom:791.788500px;}
.y6b{bottom:792.961500px;}
.y148{bottom:794.776500px;}
.y36{bottom:794.778000px;}
.y16f{bottom:801.264000px;}
.y117{bottom:802.477500px;}
.y1b2{bottom:803.745000px;}
.yb{bottom:806.733000px;}
.y35{bottom:812.710500px;}
.y16e{bottom:814.714500px;}
.y1b1{bottom:817.194000px;}
.y5a{bottom:819.861000px;}
.y116{bottom:819.903000px;}
.ya{bottom:821.677500px;}
.y9f{bottom:825.861000px;}
.y16d{bottom:828.163500px;}
.y34{bottom:830.643000px;}
.y9{bottom:836.620500px;}
.y115{bottom:837.835500px;}
.y9e{bottom:839.311500px;}
.y16c{bottom:841.614000px;}
.y1b0{bottom:844.093500px;}
.y33{bottom:848.575500px;}
.y8{bottom:851.565000px;}
.y9d{bottom:852.760500px;}
.y16b{bottom:855.217500px;}
.y114{bottom:855.768000px;}
.y1af{bottom:857.542500px;}
.y9c{bottom:866.209500px;}
.y7{bottom:866.508000px;}
.y16a{bottom:868.666500px;}
.y1ae{bottom:870.991500px;}
.y113{bottom:873.700500px;}
.y9b{bottom:879.660000px;}
.y169{bottom:882.115500px;}
.y147{bottom:884.440500px;}
.y1ad{bottom:884.442000px;}
.y112{bottom:891.634500px;}
.y9a{bottom:893.109000px;}
.y168{bottom:895.566000px;}
.y1ac{bottom:897.891000px;}
.y146{bottom:902.373000px;}
.y111{bottom:909.567000px;}
.y1ab{bottom:911.341500px;}
.y99{bottom:912.126000px;}
.y167{bottom:919.422000px;}
.y145{bottom:920.307000px;}
.y1aa{bottom:924.790500px;}
.y98{bottom:929.161500px;}
.y110{bottom:931.699500px;}
.yc4{bottom:936.099000px;}
.y6{bottom:936.534000px;}
.y144{bottom:938.239500px;}
.y97{bottom:942.610500px;}
.yc3{bottom:949.549500px;}
.y166{bottom:949.800000px;}
.y1a9{bottom:951.690000px;}
.y5{bottom:955.027500px;}
.y96{bottom:956.061000px;}
.y143{bottom:956.172000px;}
.y10f{bottom:956.679000px;}
.y1a8{bottom:965.139000px;}
.y165{bottom:967.732500px;}
.y4{bottom:973.521000px;}
.y142{bottom:974.104500px;}
.y10e{bottom:974.611500px;}
.y95{bottom:975.076500px;}
.ybc{bottom:976.449000px;}
.y1a7{bottom:978.588000px;}
.y164{bottom:985.666500px;}
.ye4{bottom:986.247000px;}
.y141{bottom:992.037000px;}
.y1a6{bottom:992.038500px;}
.y94{bottom:992.113500px;}
.y3{bottom:992.235000px;}
.y10d{bottom:992.544000px;}
.y163{bottom:1003.599000px;}
.y1a5{bottom:1005.487500px;}
.ye3{bottom:1007.505000px;}
.y140{bottom:1009.969500px;}
.y10c{bottom:1010.478000px;}
.y93{bottom:1011.129000px;}
.y1a4{bottom:1018.938000px;}
.y162{bottom:1021.531500px;}
.y13f{bottom:1027.903500px;}
.y10b{bottom:1028.410500px;}
.y92{bottom:1028.464500px;}
.y1a3{bottom:1032.387000px;}
.y2{bottom:1039.309500px;}
.y161{bottom:1039.464000px;}
.y13e{bottom:1045.836000px;}
.y10a{bottom:1046.343000px;}
.y160{bottom:1057.396500px;}
.ye2{bottom:1059.285000px;}
.y91{bottom:1059.286500px;}
.y13d{bottom:1063.768500px;}
.y109{bottom:1064.275500px;}
.y90{bottom:1072.735500px;}
.y15f{bottom:1075.330500px;}
.y1{bottom:1081.152000px;}
.y108{bottom:1081.701000px;}
.y8f{bottom:1086.184500px;}
.y13c{bottom:1099.633500px;}
.y8e{bottom:1099.635000px;}
.hd{height:21.311178px;}
.h12{height:26.046995px;}
.he{height:27.829062px;}
.h10{height:28.414904px;}
.h11{height:31.163788px;}
.h13{height:31.781080px;}
.h1b{height:32.661470px;}
.h14{height:32.900573px;}
.h24{height:33.112503px;}
.h26{height:33.134573px;}
.h27{height:33.140573px;}
.h1a{height:33.187496px;}
.hf{height:33.561002px;}
.h25{height:36.122731px;}
.h6{height:37.336090px;}
.h5{height:37.605082px;}
.h3{height:40.826735px;}
.h4{height:41.125613px;}
.h22{height:41.484266px;}
.h1d{height:43.448020px;}
.h20{height:44.776081px;}
.ha{height:44.831700px;}
.h2{height:45.238339px;}
.h1e{height:47.397840px;}
.h21{height:48.846634px;}
.h9{height:49.479619px;}
.h7{height:50.728903px;}
.h17{height:50.734903px;}
.h15{height:53.072100px;}
.hb{height:56.683613px;}
.h18{height:61.700100px;}
.h19{height:61.741613px;}
.h8{height:65.037619px;}
.h16{height:68.630100px;}
.h1{height:98.701718px;}
.h1c{height:135.738746px;}
.h1f{height:139.887828px;}
.hc{height:292.325355px;}
.h23{height:362.606405px;}
.h0{height:1188.000000px;}
.w1{width:376.579530px;}
.w2{width:376.587684px;}
.w3{width:376.596884px;}
.w4{width:376.600701px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1d{left:6.622708px;}
.x34{left:14.790124px;}
.x1e{left:15.848870px;}
.x33{left:20.281890px;}
.x44{left:33.003726px;}
.x31{left:60.258083px;}
.x35{left:67.328077px;}
.x13{left:73.446000px;}
.x49{left:79.423500px;}
.x3d{left:84.993444px;}
.x12{left:88.389000px;}
.x4{left:89.697000px;}
.x2b{left:96.439500px;}
.x4a{left:100.834500px;}
.x2{left:102.211500px;}
.x27{left:103.333500px;}
.x5{left:113.017500px;}
.x6{left:114.847500px;}
.x46{left:121.866000px;}
.x1f{left:125.009018px;}
.x21{left:128.041436px;}
.x3{left:129.252000px;}
.x42{left:132.979711px;}
.x1{left:138.024000px;}
.x20{left:140.450244px;}
.x3e{left:147.430343px;}
.x36{left:149.650920px;}
.x28{left:164.532000px;}
.x26{left:168.115652px;}
.x3f{left:171.832720px;}
.x32{left:174.614251px;}
.x23{left:185.008248px;}
.x47{left:192.879000px;}
.x24{left:195.448439px;}
.x14{left:203.428500px;}
.x45{left:208.495500px;}
.x2a{left:211.068000px;}
.x48{left:219.897000px;}
.x40{left:227.803160px;}
.x1c{left:240.755206px;}
.x22{left:246.917483px;}
.x41{left:258.409086px;}
.x4b{left:263.617500px;}
.x4c{left:274.341000px;}
.x1b{left:287.302802px;}
.x1a{left:289.434338px;}
.x43{left:300.216607px;}
.xa{left:304.941000px;}
.x4d{left:310.863000px;}
.x7{left:324.256500px;}
.x25{left:339.896727px;}
.x9{left:342.615000px;}
.x8{left:345.595500px;}
.x4e{left:401.221500px;}
.x29{left:413.776500px;}
.x4f{left:437.743500px;}
.xe{left:463.038000px;}
.x15{left:467.967000px;}
.x2d{left:477.282000px;}
.xb{left:481.986000px;}
.x2e{left:483.744000px;}
.x38{left:486.265500px;}
.x3c{left:489.678000px;}
.x50{left:495.355500px;}
.x18{left:497.854500px;}
.x16{left:500.889000px;}
.x39{left:502.411500px;}
.xd{left:504.799500px;}
.xc{left:507.780000px;}
.x2f{left:528.372000px;}
.x30{left:532.875000px;}
.x17{left:567.190500px;}
.x3b{left:573.705000px;}
.x3a{left:619.254000px;}
.x10{left:629.310000px;}
.x37{left:631.483500px;}
.x2c{left:633.474000px;}
.x19{left:642.948000px;}
.x11{left:652.630500px;}
.xf{left:664.936500px;}
@media print{
.v1{vertical-align:-7.973333pt;}
.v8{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.861333pt;}
.v3{vertical-align:13.834667pt;}
.v9{vertical-align:18.325333pt;}
.v2{vertical-align:19.280000pt;}
.v7{vertical-align:21.637333pt;}
.v6{vertical-align:26.949333pt;}
.v5{vertical-align:33.114667pt;}
.ls1b{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000055pt;}
.ls21{letter-spacing:0.000082pt;}
.lsf{letter-spacing:0.000996pt;}
.ls35{letter-spacing:0.001069pt;}
.ls37{letter-spacing:0.001253pt;}
.ls17{letter-spacing:0.001503pt;}
.ls29{letter-spacing:0.002205pt;}
.ls2d{letter-spacing:0.002694pt;}
.ls26{letter-spacing:0.003246pt;}
.ls9{letter-spacing:0.003733pt;}
.ls7{letter-spacing:0.004352pt;}
.lse{letter-spacing:0.004716pt;}
.lsc{letter-spacing:0.005388pt;}
.ls4b{letter-spacing:0.741348pt;}
.ls45{letter-spacing:2.098431pt;}
.ls3d{letter-spacing:2.108364pt;}
.ls47{letter-spacing:2.120468pt;}
.ls42{letter-spacing:2.122364pt;}
.ls43{letter-spacing:2.122436pt;}
.ls3b{letter-spacing:2.124101pt;}
.ls40{letter-spacing:2.125360pt;}
.ls3f{letter-spacing:2.125802pt;}
.ls3e{letter-spacing:2.125997pt;}
.ls3c{letter-spacing:2.127769pt;}
.ls41{letter-spacing:2.129434pt;}
.ls19{letter-spacing:2.151919pt;}
.ls0{letter-spacing:2.635446pt;}
.ls34{letter-spacing:2.651242pt;}
.ls2c{letter-spacing:2.654299pt;}
.ls4{letter-spacing:2.654903pt;}
.ls2{letter-spacing:2.655207pt;}
.ls4c{letter-spacing:2.655711pt;}
.ls3a{letter-spacing:2.656015pt;}
.ls31{letter-spacing:2.656044pt;}
.ls38{letter-spacing:2.656220pt;}
.ls3{letter-spacing:2.656693pt;}
.ls8{letter-spacing:2.657014pt;}
.ls1f{letter-spacing:3.042140pt;}
.ls36{letter-spacing:4.223996pt;}
.ls14{letter-spacing:4.362749pt;}
.ls27{letter-spacing:4.368082pt;}
.ls18{letter-spacing:4.807919pt;}
.ls39{letter-spacing:6.374586pt;}
.ls1c{letter-spacing:8.855412pt;}
.ls46{letter-spacing:12.751733pt;}
.ls44{letter-spacing:12.751769pt;}
.ls23{letter-spacing:14.370906pt;}
.ls2f{letter-spacing:14.756984pt;}
.ls2b{letter-spacing:15.775651pt;}
.ls1{letter-spacing:15.907135pt;}
.ls2e{letter-spacing:17.413909pt;}
.ls24{letter-spacing:18.736082pt;}
.ls30{letter-spacing:19.022299pt;}
.ls2a{letter-spacing:20.578585pt;}
.ls33{letter-spacing:20.720576pt;}
.ls22{letter-spacing:21.298585pt;}
.ls1d{letter-spacing:21.587733pt;}
.ls25{letter-spacing:22.749252pt;}
.ls11{letter-spacing:22.788984pt;}
.ls1e{letter-spacing:24.241014pt;}
.ls10{letter-spacing:25.441014pt;}
.ls13{letter-spacing:25.586245pt;}
.ls20{letter-spacing:26.240082pt;}
.ls15{letter-spacing:28.186206pt;}
.ls16{letter-spacing:28.192479pt;}
.ls1a{letter-spacing:30.653252pt;}
.ls32{letter-spacing:30.829252pt;}
.lsd{letter-spacing:31.356911pt;}
.lsb{letter-spacing:33.476984pt;}
.ls6{letter-spacing:33.477812pt;}
.ls28{letter-spacing:34.610585pt;}
.lsa{letter-spacing:36.134347pt;}
.ls5{letter-spacing:37.845416pt;}
.ls4a{letter-spacing:62.420188pt;}
.ls49{letter-spacing:73.446168pt;}
.ls48{letter-spacing:84.472148pt;}
.wscc{word-spacing:-84.472148pt;}
.ws7d{word-spacing:-42.359791pt;}
.ws5c{word-spacing:-19.109987pt;}
.ws4c{word-spacing:-15.940160pt;}
.ws3{word-spacing:-13.283467pt;}
.ws1d{word-spacing:-13.262246pt;}
.ws8e{word-spacing:-12.752160pt;}
.ws92{word-spacing:-10.626800pt;}
.wsc8{word-spacing:-10.609830pt;}
.ws72{word-spacing:-9.298400pt;}
.ws87{word-spacing:-8.501467pt;}
.ws61{word-spacing:-7.286941pt;}
.ws5d{word-spacing:-7.145405pt;}
.ws60{word-spacing:-6.627018pt;}
.ws5f{word-spacing:-6.074767pt;}
.ws5e{word-spacing:-4.970264pt;}
.ws167{word-spacing:-3.528098pt;}
.ws8c{word-spacing:-2.125360pt;}
.ws123{word-spacing:-0.903276pt;}
.wsfd{word-spacing:-0.797008pt;}
.ws43{word-spacing:-0.743874pt;}
.wsbc{word-spacing:-0.690740pt;}
.ws14{word-spacing:-0.621670pt;}
.ws139{word-spacing:-0.510086pt;}
.ws13b{word-spacing:-0.425072pt;}
.ws10e{word-spacing:-0.425071pt;}
.wsf8{word-spacing:-0.371937pt;}
.ws77{word-spacing:-0.318803pt;}
.ws11a{word-spacing:-0.159402pt;}
.ws7e{word-spacing:-0.106268pt;}
.ws7b{word-spacing:-0.089926pt;}
.ws20{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.ws156{word-spacing:-0.042507pt;}
.ws51{word-spacing:-0.037194pt;}
.ws102{word-spacing:-0.009469pt;}
.ws5b{word-spacing:0.000000pt;}
.ws69{word-spacing:0.053134pt;}
.ws133{word-spacing:0.085014pt;}
.ws39{word-spacing:0.106268pt;}
.wsa6{word-spacing:0.265669pt;}
.ws44{word-spacing:0.318803pt;}
.wsf{word-spacing:0.334746pt;}
.wsd7{word-spacing:0.340058pt;}
.wsec{word-spacing:0.478205pt;}
.ws95{word-spacing:0.531339pt;}
.wsbf{word-spacing:0.584473pt;}
.ws96{word-spacing:0.797008pt;}
.ws13c{word-spacing:0.807637pt;}
.ws9{word-spacing:0.812954pt;}
.wsbe{word-spacing:0.850142pt;}
.ws15{word-spacing:0.860774pt;}
.ws107{word-spacing:0.903276pt;}
.ws10{word-spacing:0.908595pt;}
.ws134{word-spacing:0.928277pt;}
.ws135{word-spacing:0.935158pt;}
.wsc6{word-spacing:1.009543pt;}
.ws162{word-spacing:1.020173pt;}
.ws6b{word-spacing:1.062677pt;}
.ws6c{word-spacing:1.088297pt;}
.ws1f{word-spacing:1.115811pt;}
.ws11f{word-spacing:1.168945pt;}
.ws101{word-spacing:1.222079pt;}
.ws166{word-spacing:1.232709pt;}
.ws11b{word-spacing:1.275213pt;}
.ws114{word-spacing:1.381481pt;}
.ws12b{word-spacing:1.402738pt;}
.ws157{word-spacing:1.523932pt;}
.ws63{word-spacing:1.530259pt;}
.ws34{word-spacing:1.540882pt;}
.wsa5{word-spacing:1.594016pt;}
.ws10f{word-spacing:1.647150pt;}
.ws41{word-spacing:1.700284pt;}
.wsc4{word-spacing:1.753418pt;}
.wsc0{word-spacing:1.806551pt;}
.ws121{word-spacing:1.859685pt;}
.wsc3{word-spacing:1.912819pt;}
.wsc{word-spacing:2.056294pt;}
.ws89{word-spacing:2.125375pt;}
.ws8b{word-spacing:2.128972pt;}
.wsda{word-spacing:2.178489pt;}
.ws137{word-spacing:2.210374pt;}
.ws119{word-spacing:2.231622pt;}
.ws168{word-spacing:2.252882pt;}
.wsc7{word-spacing:2.284756pt;}
.wsd9{word-spacing:2.391024pt;}
.ws3f{word-spacing:2.444158pt;}
.ws85{word-spacing:2.550426pt;}
.ws38{word-spacing:2.603559pt;}
.ws78{word-spacing:2.656693pt;}
.wsa4{word-spacing:2.709827pt;}
.wsfc{word-spacing:2.762961pt;}
.ws158{word-spacing:2.890490pt;}
.ws98{word-spacing:3.028630pt;}
.ws3e{word-spacing:3.081764pt;}
.ws46{word-spacing:3.134898pt;}
.ws57{word-spacing:3.188032pt;}
.ws15b{word-spacing:3.230547pt;}
.ws161{word-spacing:3.262394pt;}
.wsd6{word-spacing:3.273054pt;}
.ws10b{word-spacing:3.453701pt;}
.ws14e{word-spacing:3.485590pt;}
.wsf5{word-spacing:3.506835pt;}
.ws147{word-spacing:3.570605pt;}
.ws116{word-spacing:3.613103pt;}
.ws129{word-spacing:3.613112pt;}
.ws12e{word-spacing:3.655619pt;}
.wsb7{word-spacing:3.666237pt;}
.ws153{word-spacing:3.698126pt;}
.wse9{word-spacing:3.719371pt;}
.wsee{word-spacing:3.772505pt;}
.ws11c{word-spacing:3.825638pt;}
.ws12f{word-spacing:3.953170pt;}
.wsea{word-spacing:4.038174pt;}
.ws12c{word-spacing:4.080691pt;}
.ws111{word-spacing:4.091308pt;}
.ws155{word-spacing:4.123198pt;}
.wsf1{word-spacing:4.144442pt;}
.wsd8{word-spacing:4.165706pt;}
.wsff{word-spacing:4.197575pt;}
.ws88{word-spacing:4.215698pt;}
.ws8d{word-spacing:4.216727pt;}
.ws8a{word-spacing:4.217132pt;}
.ws13d{word-spacing:4.248017pt;}
.ws4a{word-spacing:4.250709pt;}
.ws86{word-spacing:4.250720pt;}
.ws14a{word-spacing:4.335734pt;}
.ws33{word-spacing:4.356977pt;}
.ws12{word-spacing:4.399514pt;}
.ws138{word-spacing:4.420749pt;}
.ws154{word-spacing:4.463256pt;}
.ws73{word-spacing:4.516379pt;}
.ws35{word-spacing:4.569513pt;}
.ws15a{word-spacing:4.590778pt;}
.ws56{word-spacing:4.622646pt;}
.ws70{word-spacing:4.675780pt;}
.ws7a{word-spacing:4.782048pt;}
.wsfb{word-spacing:4.835182pt;}
.ws1b{word-spacing:4.877722pt;}
.ws4e{word-spacing:4.888316pt;}
.ws40{word-spacing:4.994583pt;}
.ws125{word-spacing:5.207119pt;}
.ws4d{word-spacing:5.259795pt;}
.ws82{word-spacing:5.269269pt;}
.ws81{word-spacing:5.270893pt;}
.ws4b{word-spacing:5.292036pt;}
.ws2{word-spacing:5.313387pt;}
.ws6d{word-spacing:5.314258pt;}
.wsaa{word-spacing:5.472788pt;}
.ws146{word-spacing:5.483429pt;}
.wsc5{word-spacing:5.525922pt;}
.ws18{word-spacing:5.595034pt;}
.ws68{word-spacing:5.632190pt;}
.ws10d{word-spacing:5.685324pt;}
.ws9a{word-spacing:5.738458pt;}
.ws149{word-spacing:5.780979pt;}
.ws76{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.ws30{word-spacing:6.163529pt;}
.wsa0{word-spacing:6.269796pt;}
.ws64{word-spacing:6.291066pt;}
.ws17{word-spacing:6.312346pt;}
.ws7f{word-spacing:6.376064pt;}
.ws2d{word-spacing:6.429198pt;}
.ws152{word-spacing:6.461094pt;}
.wsdd{word-spacing:6.535466pt;}
.ws15c{word-spacing:6.546109pt;}
.ws5{word-spacing:6.551450pt;}
.ws104{word-spacing:6.588599pt;}
.ws62{word-spacing:6.588616pt;}
.wsae{word-spacing:6.631123pt;}
.ws84{word-spacing:6.801135pt;}
.ws48{word-spacing:6.854269pt;}
.ws9d{word-spacing:6.960537pt;}
.wsb4{word-spacing:7.013670pt;}
.wsb3{word-spacing:7.024988pt;}
.wsbb{word-spacing:7.027281pt;}
.ws71{word-spacing:7.066804pt;}
.ws169{word-spacing:7.097771pt;}
.ws159{word-spacing:7.098702pt;}
.ws9f{word-spacing:7.119938pt;}
.ws151{word-spacing:7.141210pt;}
.wse5{word-spacing:7.226206pt;}
.ws13e{word-spacing:7.353746pt;}
.ws2b{word-spacing:7.491875pt;}
.wse{word-spacing:7.603507pt;}
.wsb5{word-spacing:7.651277pt;}
.ws148{word-spacing:7.651296pt;}
.ws21{word-spacing:7.757545pt;}
.ws49{word-spacing:7.810678pt;}
.ws26{word-spacing:7.863812pt;}
.ws160{word-spacing:7.991354pt;}
.ws99{word-spacing:8.076348pt;}
.ws14d{word-spacing:8.076368pt;}
.ws132{word-spacing:8.118875pt;}
.ws108{word-spacing:8.182615pt;}
.ws97{word-spacing:8.235749pt;}
.ws65{word-spacing:8.288883pt;}
.ws15d{word-spacing:8.288904pt;}
.ws12a{word-spacing:8.373918pt;}
.wsb9{word-spacing:8.395151pt;}
.ws58{word-spacing:8.501419pt;}
.wsdb{word-spacing:8.554553pt;}
.ws6a{word-spacing:8.607686pt;}
.ws10a{word-spacing:8.713954pt;}
.wsa{word-spacing:8.799027pt;}
.ws50{word-spacing:8.820222pt;}
.ws14b{word-spacing:8.873265pt;}
.wsed{word-spacing:8.873356pt;}
.ws14c{word-spacing:8.884005pt;}
.ws100{word-spacing:8.926490pt;}
.ws14f{word-spacing:8.969019pt;}
.wsb{word-spacing:9.085952pt;}
.ws94{word-spacing:9.139025pt;}
.wsde{word-spacing:9.192159pt;}
.ws29{word-spacing:9.245293pt;}
.ws8{word-spacing:9.277235pt;}
.wsb8{word-spacing:9.298427pt;}
.ws128{word-spacing:9.309077pt;}
.wse4{word-spacing:9.351561pt;}
.ws9b{word-spacing:9.457828pt;}
.ws142{word-spacing:9.479106pt;}
.ws103{word-spacing:9.510962pt;}
.ws12d{word-spacing:9.564120pt;}
.ws52{word-spacing:9.617230pt;}
.ws53{word-spacing:9.670364pt;}
.ws131{word-spacing:9.691642pt;}
.ws110{word-spacing:9.776631pt;}
.ws15e{word-spacing:9.813314pt;}
.ws15f{word-spacing:9.819163pt;}
.ws10c{word-spacing:9.936033pt;}
.wsa2{word-spacing:9.989167pt;}
.wse8{word-spacing:10.042301pt;}
.wsa3{word-spacing:10.095435pt;}
.ws143{word-spacing:10.116714pt;}
.ws136{word-spacing:10.286742pt;}
.ws3a{word-spacing:10.307970pt;}
.ws13{word-spacing:10.329293pt;}
.ws16{word-spacing:10.377114pt;}
.wsf9{word-spacing:10.414238pt;}
.ws31{word-spacing:10.467372pt;}
.wseb{word-spacing:10.520506pt;}
.wsdc{word-spacing:10.573639pt;}
.ws80{word-spacing:10.626773pt;}
.ws165{word-spacing:10.626800pt;}
.wse7{word-spacing:10.679907pt;}
.ws1a{word-spacing:10.711859pt;}
.wsc2{word-spacing:10.839309pt;}
.wsa9{word-spacing:10.945577pt;}
.ws13a{word-spacing:10.966858pt;}
.ws150{word-spacing:11.136886pt;}
.ws2a{word-spacing:11.264380pt;}
.ws47{word-spacing:11.317514pt;}
.wsc1{word-spacing:11.370647pt;}
.wsbd{word-spacing:11.423781pt;}
.ws145{word-spacing:11.476944pt;}
.ws144{word-spacing:11.519451pt;}
.ws124{word-spacing:11.530049pt;}
.ws22{word-spacing:11.583183pt;}
.ws115{word-spacing:11.689451pt;}
.ws9e{word-spacing:11.795718pt;}
.wsf7{word-spacing:11.901986pt;}
.wsb0{word-spacing:11.902016pt;}
.ws130{word-spacing:12.114552pt;}
.ws1e{word-spacing:12.167655pt;}
.wsa7{word-spacing:12.220789pt;}
.ws3c{word-spacing:12.273923pt;}
.ws3d{word-spacing:12.327057pt;}
.ws112{word-spacing:12.433325pt;}
.wsb2{word-spacing:12.486459pt;}
.ws59{word-spacing:12.539593pt;}
.ws5a{word-spacing:12.592726pt;}
.ws120{word-spacing:12.645860pt;}
.wsf0{word-spacing:12.698994pt;}
.ws79{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.ws45{word-spacing:12.805262pt;}
.ws27{word-spacing:12.858396pt;}
.ws32{word-spacing:12.964663pt;}
.wsa8{word-spacing:13.070931pt;}
.wsf4{word-spacing:13.124065pt;}
.ws25{word-spacing:13.177199pt;}
.ws163{word-spacing:13.219739pt;}
.ws36{word-spacing:13.230333pt;}
.ws54{word-spacing:13.283467pt;}
.wse1{word-spacing:13.336601pt;}
.ws109{word-spacing:13.442868pt;}
.wse2{word-spacing:13.496002pt;}
.wsa1{word-spacing:13.602270pt;}
.ws11{word-spacing:13.724570pt;}
.ws126{word-spacing:13.921073pt;}
.ws83{word-spacing:13.974207pt;}
.wsf3{word-spacing:14.239876pt;}
.ws122{word-spacing:14.293010pt;}
.ws13f{word-spacing:14.452448pt;}
.ws9c{word-spacing:14.505546pt;}
.ws164{word-spacing:14.537462pt;}
.ws4f{word-spacing:14.558679pt;}
.wsb6{word-spacing:14.611813pt;}
.ws7c{word-spacing:14.718081pt;}
.ws105{word-spacing:14.983750pt;}
.ws118{word-spacing:15.036884pt;}
.ws7{word-spacing:15.207014pt;}
.wsab{word-spacing:15.249420pt;}
.ws141{word-spacing:15.345099pt;}
.ws2e{word-spacing:15.408821pt;}
.wse0{word-spacing:15.674491pt;}
.wsdf{word-spacing:15.694219pt;}
.wse6{word-spacing:15.727625pt;}
.wsb1{word-spacing:15.855186pt;}
.ws1c{word-spacing:15.940160pt;}
.ws2c{word-spacing:16.099562pt;}
.ws74{word-spacing:16.503086pt;}
.ws75{word-spacing:16.524633pt;}
.wsf2{word-spacing:16.577766pt;}
.ws3b{word-spacing:16.737168pt;}
.wsac{word-spacing:16.790302pt;}
.ws11e{word-spacing:17.109105pt;}
.ws23{word-spacing:17.268507pt;}
.ws42{word-spacing:17.321641pt;}
.wsba{word-spacing:17.374774pt;}
.ws37{word-spacing:17.746711pt;}
.ws6{word-spacing:17.932800pt;}
.wsef{word-spacing:18.065515pt;}
.ws11d{word-spacing:18.084435pt;}
.ws55{word-spacing:18.118649pt;}
.wsd{word-spacing:18.219725pt;}
.ws113{word-spacing:18.543719pt;}
.ws28{word-spacing:18.862523pt;}
.ws24{word-spacing:19.500129pt;}
.wsfe{word-spacing:19.659531pt;}
.ws127{word-spacing:19.818932pt;}
.wsfa{word-spacing:19.978334pt;}
.ws106{word-spacing:20.190869pt;}
.ws67{word-spacing:20.244003pt;}
.ws6f{word-spacing:20.562806pt;}
.ws2f{word-spacing:20.615940pt;}
.wse3{word-spacing:20.775342pt;}
.wsca{word-spacing:21.253600pt;}
.ws19{word-spacing:22.619238pt;}
.wsf6{word-spacing:23.006964pt;}
.ws6e{word-spacing:23.367950pt;}
.ws66{word-spacing:25.063950pt;}
.ws117{word-spacing:26.141862pt;}
.ws140{word-spacing:26.567000pt;}
.wsd2{word-spacing:29.551787pt;}
.wscf{word-spacing:40.507920pt;}
.wsce{word-spacing:51.394208pt;}
.wsd5{word-spacing:51.464054pt;}
.wsd3{word-spacing:51.533900pt;}
.wsd0{word-spacing:62.490034pt;}
.wsd4{word-spacing:62.559880pt;}
.ws90{word-spacing:63.165699pt;}
.ws91{word-spacing:66.390398pt;}
.wsd1{word-spacing:73.446168pt;}
.wscd{word-spacing:73.516014pt;}
.wscb{word-spacing:75.535294pt;}
.ws93{word-spacing:85.184429pt;}
.wsad{word-spacing:104.300111pt;}
.wsaf{word-spacing:148.798355pt;}
.wsc9{word-spacing:227.073462pt;}
.ws8f{word-spacing:341.334036pt;}
._28{margin-left:-84.472148pt;}
._1{margin-left:-16.450286pt;}
._32{margin-left:-6.163544pt;}
._3{margin-left:-4.675797pt;}
._2{margin-left:-3.453701pt;}
._0{margin-left:-1.912824pt;}
._5{margin-left:-0.956416pt;}
._c{width:1.511392pt;}
._9{width:2.656693pt;}
._31{width:4.357945pt;}
._30{width:7.035124pt;}
._6{width:11.955200pt;}
._22{width:13.177199pt;}
._13{width:15.036884pt;}
._2f{width:16.205829pt;}
._8{width:17.358950pt;}
._a{width:18.809389pt;}
._4{width:19.845632pt;}
._7{width:21.423718pt;}
._23{width:22.422497pt;}
._2e{width:24.175909pt;}
._b{width:25.344854pt;}
._10{width:26.566933pt;}
._11{width:28.519702pt;}
._d{width:31.402115pt;}
._f{width:34.388325pt;}
._e{width:39.739646pt;}
._12{width:43.232764pt;}
._25{width:45.015125pt;}
._2d{width:51.533900pt;}
._2a{width:52.443549pt;}
._14{width:58.331513pt;}
._2b{width:62.559880pt;}
._2c{width:73.446168pt;}
._16{width:74.557629pt;}
._29{width:83.632346pt;}
._17{width:85.311950pt;}
._1b{width:91.007915pt;}
._19{width:95.811229pt;}
._20{width:102.824917pt;}
._1a{width:106.565550pt;}
._1c{width:109.838605pt;}
._27{width:110.858778pt;}
._26{width:117.702437pt;}
._21{width:121.698114pt;}
._1f{width:145.332117pt;}
._1e{width:157.147237pt;}
._24{width:162.414576pt;}
._18{width:167.733411pt;}
._1d{width:199.656318pt;}
._15{width:253.810491pt;}
.fs6{font-size:23.444640pt;}
.fsc{font-size:26.566933pt;}
.fsa{font-size:28.654560pt;}
.fs9{font-size:31.259520pt;}
.fs13{font-size:31.682816pt;}
.fse{font-size:31.880533pt;}
.fs7{font-size:33.864480pt;}
.fsd{font-size:34.005867pt;}
.fsb{font-size:34.535267pt;}
.fs14{font-size:34.563072pt;}
.fs8{font-size:36.469440pt;}
.fs5{font-size:37.193600pt;}
.fsf{font-size:41.572080pt;}
.fs4{font-size:42.507200pt;}
.fs11{font-size:42.842800pt;}
.fs10{font-size:45.351360pt;}
.fs12{font-size:46.737600pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.ybe{bottom:6.897186pt;}
.yc7{bottom:7.108010pt;}
.ye7{bottom:8.351055pt;}
.y65{bottom:19.104256pt;}
.ybd{bottom:20.252610pt;}
.yc6{bottom:20.871665pt;}
.yf0{bottom:29.013179pt;}
.yfa{bottom:29.610888pt;}
.y64{bottom:30.886815pt;}
.y5d{bottom:36.409135pt;}
.yca{bottom:39.898980pt;}
.ybf{bottom:41.709456pt;}
.yc2{bottom:50.333908pt;}
.yef{bottom:55.626744pt;}
.yf9{bottom:56.224454pt;}
.yc8{bottom:64.153488pt;}
.yc0{bottom:70.478788pt;}
.yee{bottom:82.240310pt;}
.yf8{bottom:82.838019pt;}
.y59{bottom:97.282667pt;}
.yc1{bottom:99.248121pt;}
.y32{bottom:100.740000pt;}
.y1a2{bottom:100.741333pt;}
.yc9{bottom:101.082452pt;}
.y62{bottom:101.311453pt;}
.y5c{bottom:104.486899pt;}
.y61{bottom:108.344845pt;}
.yed{bottom:108.853875pt;}
.yf7{bottom:109.451584pt;}
.y5b{bottom:111.520291pt;}
.y1a1{bottom:112.696000pt;}
.y5f{bottom:115.699298pt;}
.y31{bottom:116.680000pt;}
.y8d{bottom:116.681333pt;}
.y6a{bottom:119.595016pt;}
.y69{bottom:123.716063pt;}
.y1a0{bottom:124.650667pt;}
.yf1{bottom:129.335645pt;}
.y58{bottom:132.620000pt;}
.y30{bottom:132.621333pt;}
.yec{bottom:135.467440pt;}
.yf6{bottom:136.065150pt;}
.y13b{bottom:136.354667pt;}
.y19f{bottom:136.606667pt;}
.y68{bottom:141.149758pt;}
.y15e{bottom:148.560000pt;}
.y2f{bottom:148.561333pt;}
.y19e{bottom:148.698667pt;}
.y13a{bottom:158.558667pt;}
.y19d{bottom:160.653333pt;}
.yeb{bottom:162.081006pt;}
.yf5{bottom:162.678715pt;}
.y15d{bottom:164.500000pt;}
.y2e{bottom:164.501333pt;}
.y19c{bottom:172.609333pt;}
.y139{bottom:174.498667pt;}
.y2d{bottom:180.441333pt;}
.y57{bottom:180.673333pt;}
.y19b{bottom:184.564000pt;}
.y8c{bottom:185.545333pt;}
.y67{bottom:185.648336pt;}
.y66{bottom:186.466293pt;}
.yea{bottom:188.694571pt;}
.yf4{bottom:189.292281pt;}
.y138{bottom:190.438667pt;}
.y63{bottom:192.194600pt;}
.y2c{bottom:196.381333pt;}
.y19a{bottom:196.518667pt;}
.y56{bottom:196.613333pt;}
.y60{bottom:202.704311pt;}
.y137{bottom:206.378667pt;}
.y199{bottom:208.610667pt;}
.y55{bottom:209.096000pt;}
.y8b{bottom:211.753333pt;}
.y2b{bottom:212.321333pt;}
.y107{bottom:212.322667pt;}
.y54{bottom:212.554667pt;}
.ye9{bottom:215.308137pt;}
.yf3{bottom:215.905846pt;}
.y198{bottom:220.566667pt;}
.y136{bottom:222.318667pt;}
.y8a{bottom:227.693333pt;}
.y15c{bottom:228.261333pt;}
.y2a{bottom:228.262667pt;}
.y53{bottom:228.494667pt;}
.y197{bottom:232.521333pt;}
.y135{bottom:238.258667pt;}
.y89{bottom:239.372000pt;}
.ye8{bottom:241.921702pt;}
.yf2{bottom:242.519412pt;}
.y88{bottom:243.953333pt;}
.y15b{bottom:244.201333pt;}
.y29{bottom:244.202667pt;}
.y52{bottom:244.434667pt;}
.y196{bottom:244.477333pt;}
.y5e{bottom:246.311993pt;}
.ybb{bottom:248.120000pt;}
.y134{bottom:254.200000pt;}
.y195{bottom:256.569333pt;}
.y87{bottom:259.893333pt;}
.y28{bottom:260.142667pt;}
.y51{bottom:260.374667pt;}
.ye6{bottom:268.052555pt;}
.y194{bottom:268.524000pt;}
.y133{bottom:269.689333pt;}
.yba{bottom:271.426667pt;}
.y86{bottom:275.833333pt;}
.y27{bottom:276.082667pt;}
.y193{bottom:280.478667pt;}
.y50{bottom:281.429333pt;}
.y132{bottom:285.629333pt;}
.yb9{bottom:287.366667pt;}
.y85{bottom:291.773333pt;}
.ye1{bottom:292.022667pt;}
.y192{bottom:292.434667pt;}
.y26{bottom:292.773333pt;}
.y131{bottom:301.569333pt;}
.yb8{bottom:303.306667pt;}
.y191{bottom:304.389333pt;}
.y4f{bottom:307.653333pt;}
.y84{bottom:307.713333pt;}
.y15a{bottom:307.962667pt;}
.ye0{bottom:307.964000pt;}
.y25{bottom:308.713333pt;}
.y106{bottom:308.938667pt;}
.y190{bottom:316.481333pt;}
.y130{bottom:317.509333pt;}
.yb7{bottom:319.246667pt;}
.y4e{bottom:323.593333pt;}
.y83{bottom:323.654667pt;}
.y159{bottom:323.902667pt;}
.ydf{bottom:323.904000pt;}
.y24{bottom:324.653333pt;}
.y105{bottom:324.878667pt;}
.y18f{bottom:328.437333pt;}
.y12f{bottom:333.450667pt;}
.yb6{bottom:335.186667pt;}
.y4d{bottom:339.533333pt;}
.y82{bottom:339.594667pt;}
.y158{bottom:339.842667pt;}
.yde{bottom:339.844000pt;}
.y18e{bottom:340.392000pt;}
.y23{bottom:340.594667pt;}
.y104{bottom:340.818667pt;}
.y12e{bottom:349.390667pt;}
.yb5{bottom:351.126667pt;}
.y18d{bottom:352.484000pt;}
.y4c{bottom:355.473333pt;}
.y81{bottom:355.764000pt;}
.ydd{bottom:355.784000pt;}
.y22{bottom:356.534667pt;}
.y103{bottom:356.758667pt;}
.y18c{bottom:364.440000pt;}
.y12d{bottom:365.330667pt;}
.yb4{bottom:367.068000pt;}
.y4b{bottom:371.413333pt;}
.y80{bottom:371.704000pt;}
.ydc{bottom:371.724000pt;}
.y21{bottom:372.474667pt;}
.y102{bottom:372.698667pt;}
.y18b{bottom:376.394667pt;}
.y12c{bottom:380.369333pt;}
.yb3{bottom:383.008000pt;}
.y4a{bottom:387.354667pt;}
.y7f{bottom:387.645333pt;}
.y157{bottom:387.664000pt;}
.ydb{bottom:387.862667pt;}
.y18a{bottom:388.349333pt;}
.y20{bottom:388.414667pt;}
.y101{bottom:388.640000pt;}
.y12b{bottom:396.310667pt;}
.yb2{bottom:398.948000pt;}
.y189{bottom:400.441333pt;}
.y7e{bottom:400.730667pt;}
.y49{bottom:403.294667pt;}
.y156{bottom:403.604000pt;}
.yda{bottom:403.804000pt;}
.y7d{bottom:404.188000pt;}
.y1f{bottom:404.354667pt;}
.y100{bottom:404.580000pt;}
.y12a{bottom:412.250667pt;}
.y188{bottom:412.397333pt;}
.yb1{bottom:414.888000pt;}
.y48{bottom:419.234667pt;}
.y155{bottom:419.544000pt;}
.yd9{bottom:419.744000pt;}
.y7c{bottom:420.128000pt;}
.yff{bottom:420.520000pt;}
.y187{bottom:424.352000pt;}
.y129{bottom:428.190667pt;}
.y1e{bottom:428.981333pt;}
.yb0{bottom:430.828000pt;}
.y47{bottom:435.174667pt;}
.y154{bottom:435.484000pt;}
.yd8{bottom:435.684000pt;}
.y7b{bottom:436.068000pt;}
.y186{bottom:436.308000pt;}
.yfe{bottom:436.460000pt;}
.y128{bottom:444.130667pt;}
.yaf{bottom:446.768000pt;}
.y185{bottom:448.400000pt;}
.y46{bottom:451.114667pt;}
.y153{bottom:451.425333pt;}
.yd7{bottom:451.624000pt;}
.y7a{bottom:452.009333pt;}
.y127{bottom:460.070667pt;}
.y184{bottom:460.354667pt;}
.yae{bottom:462.709333pt;}
.y1d{bottom:463.958667pt;}
.y45{bottom:467.056000pt;}
.y152{bottom:467.365333pt;}
.yd6{bottom:467.564000pt;}
.y79{bottom:467.949333pt;}
.y183{bottom:472.309333pt;}
.y126{bottom:476.010667pt;}
.y1c{bottom:477.242667pt;}
.yad{bottom:478.649333pt;}
.yfd{bottom:482.008000pt;}
.y44{bottom:482.996000pt;}
.y151{bottom:483.305333pt;}
.yd5{bottom:483.504000pt;}
.y78{bottom:483.889333pt;}
.y182{bottom:484.402667pt;}
.y1b{bottom:490.525333pt;}
.y125{bottom:491.952000pt;}
.yfc{bottom:493.964000pt;}
.yac{bottom:494.589333pt;}
.y181{bottom:496.357333pt;}
.y43{bottom:498.936000pt;}
.y150{bottom:499.245333pt;}
.yd4{bottom:499.445333pt;}
.y77{bottom:500.058667pt;}
.yfb{bottom:505.918667pt;}
.y124{bottom:507.892000pt;}
.y180{bottom:508.312000pt;}
.yab{bottom:510.262667pt;}
.y42{bottom:514.876000pt;}
.y14f{bottom:515.185333pt;}
.yd3{bottom:515.385333pt;}
.y76{bottom:516.000000pt;}
.y1a{bottom:517.842667pt;}
.y17f{bottom:520.404000pt;}
.y123{bottom:522.930667pt;}
.yaa{bottom:526.202667pt;}
.ye5{bottom:529.829333pt;}
.y41{bottom:530.816000pt;}
.y14e{bottom:531.125333pt;}
.y19{bottom:531.126667pt;}
.yd2{bottom:531.325333pt;}
.y75{bottom:531.940000pt;}
.y17e{bottom:532.360000pt;}
.y122{bottom:538.870667pt;}
.ya9{bottom:542.142667pt;}
.y17d{bottom:544.314667pt;}
.y18{bottom:544.410667pt;}
.y40{bottom:546.912000pt;}
.y14d{bottom:547.066667pt;}
.yd1{bottom:547.464000pt;}
.y74{bottom:547.880000pt;}
.y121{bottom:554.812000pt;}
.y17c{bottom:556.270667pt;}
.y17{bottom:557.693333pt;}
.ya8{bottom:558.084000pt;}
.y1bc{bottom:559.022667pt;}
.y3f{bottom:562.852000pt;}
.y14c{bottom:563.006667pt;}
.yd0{bottom:563.404000pt;}
.y73{bottom:563.820000pt;}
.y17b{bottom:568.362667pt;}
.y120{bottom:570.752000pt;}
.y16{bottom:570.977333pt;}
.ya7{bottom:574.024000pt;}
.y3e{bottom:578.792000pt;}
.y14b{bottom:578.946667pt;}
.ycf{bottom:579.344000pt;}
.y72{bottom:579.760000pt;}
.y17a{bottom:580.317333pt;}
.y1bb{bottom:582.933333pt;}
.y15{bottom:584.260000pt;}
.y11f{bottom:586.692000pt;}
.ya6{bottom:589.964000pt;}
.y179{bottom:592.272000pt;}
.y3d{bottom:594.732000pt;}
.y14a{bottom:594.886667pt;}
.y1ba{bottom:594.888000pt;}
.yce{bottom:595.285333pt;}
.y71{bottom:595.930667pt;}
.y14{bottom:597.544000pt;}
.y11e{bottom:602.632000pt;}
.y178{bottom:604.228000pt;}
.ya5{bottom:605.904000pt;}
.y1b9{bottom:606.842667pt;}
.y3c{bottom:610.672000pt;}
.y149{bottom:610.826667pt;}
.y13{bottom:610.828000pt;}
.y70{bottom:611.870667pt;}
.y177{bottom:616.320000pt;}
.y11d{bottom:618.572000pt;}
.y1b8{bottom:618.798667pt;}
.ya4{bottom:621.577333pt;}
.y12{bottom:624.110667pt;}
.y3b{bottom:626.768000pt;}
.y6f{bottom:627.810667pt;}
.y176{bottom:628.274667pt;}
.y1b7{bottom:630.753333pt;}
.y11c{bottom:634.512000pt;}
.y11{bottom:637.394667pt;}
.ya3{bottom:637.517333pt;}
.ycd{bottom:638.762667pt;}
.y175{bottom:640.230667pt;}
.y3a{bottom:642.708000pt;}
.y11b{bottom:650.453333pt;}
.y10{bottom:650.678667pt;}
.ycc{bottom:650.717333pt;}
.y174{bottom:652.322667pt;}
.ya2{bottom:653.458667pt;}
.y1b6{bottom:654.664000pt;}
.y39{bottom:658.648000pt;}
.ycb{bottom:662.673333pt;}
.yf{bottom:663.961333pt;}
.y173{bottom:664.277333pt;}
.y11a{bottom:666.393333pt;}
.y1b5{bottom:666.618667pt;}
.y6e{bottom:668.989333pt;}
.ya1{bottom:669.398667pt;}
.y38{bottom:674.588000pt;}
.y172{bottom:676.233333pt;}
.ye{bottom:677.245333pt;}
.y1b4{bottom:678.574667pt;}
.y6d{bottom:680.944000pt;}
.y119{bottom:682.333333pt;}
.yc5{bottom:686.582667pt;}
.y171{bottom:688.188000pt;}
.ya0{bottom:689.256000pt;}
.y37{bottom:690.528000pt;}
.yd{bottom:690.529333pt;}
.y6c{bottom:692.900000pt;}
.y118{bottom:697.372000pt;}
.y170{bottom:700.142667pt;}
.y1b3{bottom:702.484000pt;}
.yc{bottom:703.812000pt;}
.y6b{bottom:704.854667pt;}
.y148{bottom:706.468000pt;}
.y36{bottom:706.469333pt;}
.y16f{bottom:712.234667pt;}
.y117{bottom:713.313333pt;}
.y1b2{bottom:714.440000pt;}
.yb{bottom:717.096000pt;}
.y35{bottom:722.409333pt;}
.y16e{bottom:724.190667pt;}
.y1b1{bottom:726.394667pt;}
.y5a{bottom:728.765333pt;}
.y116{bottom:728.802667pt;}
.ya{bottom:730.380000pt;}
.y9f{bottom:734.098667pt;}
.y16d{bottom:736.145333pt;}
.y34{bottom:738.349333pt;}
.y9{bottom:743.662667pt;}
.y115{bottom:744.742667pt;}
.y9e{bottom:746.054667pt;}
.y16c{bottom:748.101333pt;}
.y1b0{bottom:750.305333pt;}
.y33{bottom:754.289333pt;}
.y8{bottom:756.946667pt;}
.y9d{bottom:758.009333pt;}
.y16b{bottom:760.193333pt;}
.y114{bottom:760.682667pt;}
.y1af{bottom:762.260000pt;}
.y9c{bottom:769.964000pt;}
.y7{bottom:770.229333pt;}
.y16a{bottom:772.148000pt;}
.y1ae{bottom:774.214667pt;}
.y113{bottom:776.622667pt;}
.y9b{bottom:781.920000pt;}
.y169{bottom:784.102667pt;}
.y147{bottom:786.169333pt;}
.y1ad{bottom:786.170667pt;}
.y112{bottom:792.564000pt;}
.y9a{bottom:793.874667pt;}
.y168{bottom:796.058667pt;}
.y1ac{bottom:798.125333pt;}
.y146{bottom:802.109333pt;}
.y111{bottom:808.504000pt;}
.y1ab{bottom:810.081333pt;}
.y99{bottom:810.778667pt;}
.y167{bottom:817.264000pt;}
.y145{bottom:818.050667pt;}
.y1aa{bottom:822.036000pt;}
.y98{bottom:825.921333pt;}
.y110{bottom:828.177333pt;}
.yc4{bottom:832.088000pt;}
.y6{bottom:832.474667pt;}
.y144{bottom:833.990667pt;}
.y97{bottom:837.876000pt;}
.yc3{bottom:844.044000pt;}
.y166{bottom:844.266667pt;}
.y1a9{bottom:845.946667pt;}
.y5{bottom:848.913333pt;}
.y96{bottom:849.832000pt;}
.y143{bottom:849.930667pt;}
.y10f{bottom:850.381333pt;}
.y1a8{bottom:857.901333pt;}
.y165{bottom:860.206667pt;}
.y4{bottom:865.352000pt;}
.y142{bottom:865.870667pt;}
.y10e{bottom:866.321333pt;}
.y95{bottom:866.734667pt;}
.ybc{bottom:867.954667pt;}
.y1a7{bottom:869.856000pt;}
.y164{bottom:876.148000pt;}
.ye4{bottom:876.664000pt;}
.y141{bottom:881.810667pt;}
.y1a6{bottom:881.812000pt;}
.y94{bottom:881.878667pt;}
.y3{bottom:881.986667pt;}
.y10d{bottom:882.261333pt;}
.y163{bottom:892.088000pt;}
.y1a5{bottom:893.766667pt;}
.ye3{bottom:895.560000pt;}
.y140{bottom:897.750667pt;}
.y10c{bottom:898.202667pt;}
.y93{bottom:898.781333pt;}
.y1a4{bottom:905.722667pt;}
.y162{bottom:908.028000pt;}
.y13f{bottom:913.692000pt;}
.y10b{bottom:914.142667pt;}
.y92{bottom:914.190667pt;}
.y1a3{bottom:917.677333pt;}
.y2{bottom:923.830667pt;}
.y161{bottom:923.968000pt;}
.y13e{bottom:929.632000pt;}
.y10a{bottom:930.082667pt;}
.y160{bottom:939.908000pt;}
.ye2{bottom:941.586667pt;}
.y91{bottom:941.588000pt;}
.y13d{bottom:945.572000pt;}
.y109{bottom:946.022667pt;}
.y90{bottom:953.542667pt;}
.y15f{bottom:955.849333pt;}
.y1{bottom:961.024000pt;}
.y108{bottom:961.512000pt;}
.y8f{bottom:965.497333pt;}
.y13c{bottom:977.452000pt;}
.y8e{bottom:977.453333pt;}
.hd{height:18.943269pt;}
.h12{height:23.152884pt;}
.he{height:24.736944pt;}
.h10{height:25.257692pt;}
.h11{height:27.701145pt;}
.h13{height:28.249849pt;}
.h1b{height:29.032418pt;}
.h14{height:29.244954pt;}
.h24{height:29.433336pt;}
.h26{height:29.452954pt;}
.h27{height:29.458287pt;}
.h1a{height:29.499997pt;}
.hf{height:29.832002pt;}
.h25{height:32.109094pt;}
.h6{height:33.187635pt;}
.h5{height:33.426739pt;}
.h3{height:36.290431pt;}
.h4{height:36.556100pt;}
.h22{height:36.874903pt;}
.h1d{height:38.620462pt;}
.h20{height:39.800961pt;}
.ha{height:39.850400pt;}
.h2{height:40.211857pt;}
.h1e{height:42.131413pt;}
.h21{height:43.419230pt;}
.h9{height:43.981884pt;}
.h7{height:45.092358pt;}
.h17{height:45.097692pt;}
.h15{height:47.175200pt;}
.hb{height:50.385434pt;}
.h18{height:54.844533pt;}
.h19{height:54.881434pt;}
.h8{height:57.811217pt;}
.h16{height:61.004533pt;}
.h1{height:87.734861pt;}
.h1c{height:120.656663pt;}
.h1f{height:124.344736pt;}
.hc{height:259.844760pt;}
.h23{height:322.316804pt;}
.h0{height:1056.000000pt;}
.w1{width:334.737360pt;}
.w2{width:334.744608pt;}
.w3{width:334.752786pt;}
.w4{width:334.756178pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:5.886851pt;}
.x34{left:13.146777pt;}
.x1e{left:14.087884pt;}
.x33{left:18.028347pt;}
.x44{left:29.336645pt;}
.x31{left:53.562741pt;}
.x35{left:59.847180pt;}
.x13{left:65.285333pt;}
.x49{left:70.598667pt;}
.x3d{left:75.549728pt;}
.x12{left:78.568000pt;}
.x4{left:79.730667pt;}
.x2b{left:85.724000pt;}
.x4a{left:89.630667pt;}
.x2{left:90.854667pt;}
.x27{left:91.852000pt;}
.x5{left:100.460000pt;}
.x6{left:102.086667pt;}
.x46{left:108.325333pt;}
.x1f{left:111.119127pt;}
.x21{left:113.814610pt;}
.x3{left:114.890667pt;}
.x42{left:118.204187pt;}
.x1{left:122.688000pt;}
.x20{left:124.844662pt;}
.x3e{left:131.049194pt;}
.x36{left:133.023040pt;}
.x28{left:146.250667pt;}
.x26{left:149.436135pt;}
.x3f{left:152.740196pt;}
.x32{left:155.212668pt;}
.x23{left:164.451776pt;}
.x47{left:171.448000pt;}
.x24{left:173.731946pt;}
.x14{left:180.825333pt;}
.x45{left:185.329333pt;}
.x2a{left:187.616000pt;}
.x48{left:195.464000pt;}
.x40{left:202.491698pt;}
.x1c{left:214.004628pt;}
.x22{left:219.482207pt;}
.x41{left:229.696966pt;}
.x4b{left:234.326667pt;}
.x4c{left:243.858667pt;}
.x1b{left:255.380269pt;}
.x1a{left:257.274967pt;}
.x43{left:266.859206pt;}
.xa{left:271.058667pt;}
.x4d{left:276.322667pt;}
.x7{left:288.228000pt;}
.x25{left:302.130424pt;}
.x9{left:304.546667pt;}
.x8{left:307.196000pt;}
.x4e{left:356.641333pt;}
.x29{left:367.801333pt;}
.x4f{left:389.105333pt;}
.xe{left:411.589333pt;}
.x15{left:415.970667pt;}
.x2d{left:424.250667pt;}
.xb{left:428.432000pt;}
.x2e{left:429.994667pt;}
.x38{left:432.236000pt;}
.x3c{left:435.269333pt;}
.x50{left:440.316000pt;}
.x18{left:442.537333pt;}
.x16{left:445.234667pt;}
.x39{left:446.588000pt;}
.xd{left:448.710667pt;}
.xc{left:451.360000pt;}
.x2f{left:469.664000pt;}
.x30{left:473.666667pt;}
.x17{left:504.169333pt;}
.x3b{left:509.960000pt;}
.x3a{left:550.448000pt;}
.x10{left:559.386667pt;}
.x37{left:561.318667pt;}
.x2c{left:563.088000pt;}
.x19{left:571.509333pt;}
.x11{left:580.116000pt;}
.xf{left:591.054667pt;}
}




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