
    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_15ca4a799aac5a8d993b785a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.861816;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_dee9876155bd0c0ee59943a4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_b90bf08a600ff0f3826f033c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_d0352fc97f5201f4ac111ea1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.206543;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_3ccbbeea9aa6e841557f6f8d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_35e0eb6f9038d773fb263f9c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3d84cb9400f194e51fa57ca6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9dfdff65908c854e9f8db10b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_63e128f1ae0c5ab34c903b46.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7178acc555e67a754296b3c7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.970000;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_713992dd0d521901b2fd99cb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.946289;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_ccfad3a27d50c24c98d231a7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_bcfbe07824ab32aa1198fe2a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_3d84cb9400f194e51fa57ca6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f899e582220dbc4d8f16aad0.woff2')format("woff");}.fff{font-family:fff;line-height:0.947000;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_7c8d80b79bd99313acc1eab6.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ccfad3a27d50c24c98d231a7.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_bcfbe07824ab32aa1198fe2a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_3d84cb9400f194e51fa57ca6.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_057b404944ade2e95f58872b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.658667;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:ff15;src:url('chunks/assets/font_3a246e10fdb869ec35d30caf.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.700000;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:ff16;src:url('chunks/assets/font_04dd51f88e96b8b59cec4899.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-20.400600px;}
.v5{vertical-align:-17.340000px;}
.v6{vertical-align:-11.430600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.180000px;}
.v4{vertical-align:19.365000px;}
.v1{vertical-align:20.400600px;}
.ls3b{letter-spacing:-3.150000px;}
.ls1e{letter-spacing:-2.052000px;}
.ls31{letter-spacing:-1.350000px;}
.ls2d{letter-spacing:-1.305000px;}
.ls34{letter-spacing:-0.765000px;}
.ls19{letter-spacing:-0.741000px;}
.ls18{letter-spacing:-0.684000px;}
.ls32{letter-spacing:-0.675000px;}
.ls33{letter-spacing:-0.585000px;}
.ls2f{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.486000px;}
.ls35{letter-spacing:-0.450000px;}
.ls1c{letter-spacing:-0.342000px;}
.ls2e{letter-spacing:-0.315000px;}
.ls30{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.131760px;}
.lsd{letter-spacing:-0.046116px;}
.lsb{letter-spacing:-0.032940px;}
.lsa{letter-spacing:-0.013176px;}
.ls9{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000900px;}
.ls13{letter-spacing:0.001200px;}
.ls16{letter-spacing:0.004050px;}
.ls15{letter-spacing:0.007800px;}
.ls3{letter-spacing:0.013176px;}
.ls7{letter-spacing:0.019764px;}
.ls0{letter-spacing:0.025164px;}
.ls2{letter-spacing:0.026352px;}
.ls4{letter-spacing:0.032940px;}
.ls5{letter-spacing:0.039528px;}
.ls1f{letter-spacing:0.040800px;}
.ls1{letter-spacing:0.041940px;}
.ls6{letter-spacing:0.046116px;}
.lsf{letter-spacing:0.059292px;}
.ls37{letter-spacing:0.198000px;}
.lsc{letter-spacing:0.223992px;}
.ls23{letter-spacing:0.495000px;}
.ls17{letter-spacing:0.960000px;}
.ls26{letter-spacing:2.160000px;}
.ls25{letter-spacing:2.304000px;}
.ls27{letter-spacing:2.565000px;}
.ls10{letter-spacing:2.592000px;}
.ls1a{letter-spacing:2.700000px;}
.ls12{letter-spacing:2.767500px;}
.ls29{letter-spacing:3.015000px;}
.ls38{letter-spacing:3.019500px;}
.ls2a{letter-spacing:3.033000px;}
.ls28{letter-spacing:3.037500px;}
.ls2b{letter-spacing:3.055500px;}
.ls20{letter-spacing:3.060000px;}
.ls36{letter-spacing:3.064500px;}
.ls21{letter-spacing:3.069000px;}
.ls2c{letter-spacing:3.082500px;}
.ls11{letter-spacing:3.840000px;}
.ls3a{letter-spacing:3.876000px;}
.ls39{letter-spacing:5.503500px;}
.ls22{letter-spacing:6.300000px;}
.ls24{letter-spacing:7.375500px;}
.ls1b{letter-spacing:14.742000px;}
.lse{letter-spacing:155.384568px;}
.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;}
}
.ws13{word-spacing:-15.067500px;}
.ws2{word-spacing:-14.921820px;}
.ws0{word-spacing:-14.875704px;}
.ws1{word-spacing:-14.855940px;}
.ws36{word-spacing:-13.596000px;}
.ws17{word-spacing:-12.939000px;}
.ws35{word-spacing:-12.597000px;}
.ws15{word-spacing:-12.255000px;}
.ws18{word-spacing:-12.198000px;}
.ws11{word-spacing:-12.192000px;}
.ws6c{word-spacing:-10.545000px;}
.ws77{word-spacing:-9.990000px;}
.wsac{word-spacing:-9.855000px;}
.wsaa{word-spacing:-9.765000px;}
.wsab{word-spacing:-9.720000px;}
.wsa9{word-spacing:-9.000000px;}
.ws85{word-spacing:-8.835000px;}
.ws16{word-spacing:-8.410350px;}
.ws14{word-spacing:-8.034000px;}
.ws37{word-spacing:-7.967700px;}
.ws76{word-spacing:-7.938000px;}
.wsda{word-spacing:-7.155000px;}
.ws5b{word-spacing:-6.854250px;}
.ws19{word-spacing:-6.630000px;}
.ws79{word-spacing:-6.493500px;}
.ws9b{word-spacing:-5.814000px;}
.ws78{word-spacing:-5.508000px;}
.ws34{word-spacing:-2.760000px;}
.ws21{word-spacing:-2.736000px;}
.ws12{word-spacing:-2.640000px;}
.wse4{word-spacing:-1.800000px;}
.ws91{word-spacing:-1.539000px;}
.wsdf{word-spacing:-0.540000px;}
.wsb2{word-spacing:-0.513000px;}
.wsb1{word-spacing:-0.480000px;}
.ws75{word-spacing:-0.456000px;}
.wsd1{word-spacing:-0.405000px;}
.ws1e{word-spacing:-0.360000px;}
.wscd{word-spacing:-0.270000px;}
.ws10{word-spacing:-0.191052px;}
.wse{word-spacing:-0.177876px;}
.wsf{word-spacing:-0.151524px;}
.ws7{word-spacing:-0.085644px;}
.ws3{word-spacing:0.000000px;}
.ws84{word-spacing:0.057000px;}
.ws6{word-spacing:0.075492px;}
.ws5{word-spacing:0.092268px;}
.ws7c{word-spacing:0.171000px;}
.wsce{word-spacing:0.180000px;}
.ws4{word-spacing:0.234864px;}
.ws24{word-spacing:0.285000px;}
.wse2{word-spacing:0.360000px;}
.ws8a{word-spacing:0.399000px;}
.wsbb{word-spacing:0.495000px;}
.ws44{word-spacing:0.513000px;}
.wsbc{word-spacing:0.540000px;}
.ws43{word-spacing:0.570000px;}
.wsc8{word-spacing:0.585000px;}
.ws40{word-spacing:0.627000px;}
.wsa7{word-spacing:0.684000px;}
.ws94{word-spacing:0.741000px;}
.wsc2{word-spacing:0.810000px;}
.wsd2{word-spacing:0.900000px;}
.ws6d{word-spacing:0.912000px;}
.ws99{word-spacing:1.080000px;}
.ws92{word-spacing:1.083000px;}
.ws4e{word-spacing:1.140000px;}
.wsd3{word-spacing:1.215000px;}
.ws70{word-spacing:1.254000px;}
.wsba{word-spacing:1.305000px;}
.ws47{word-spacing:1.425000px;}
.ws87{word-spacing:1.482000px;}
.wsec{word-spacing:1.518000px;}
.ws82{word-spacing:1.539000px;}
.ws2e{word-spacing:1.596000px;}
.ws2c{word-spacing:1.653000px;}
.ws7a{word-spacing:1.710000px;}
.wsb3{word-spacing:1.740000px;}
.ws95{word-spacing:1.767000px;}
.ws3f{word-spacing:1.824000px;}
.ws6b{word-spacing:1.881000px;}
.ws32{word-spacing:1.887000px;}
.ws4b{word-spacing:1.938000px;}
.ws6f{word-spacing:1.995000px;}
.ws64{word-spacing:2.052000px;}
.ws33{word-spacing:2.160000px;}
.wsc0{word-spacing:2.205000px;}
.ws1d{word-spacing:2.220000px;}
.wsc1{word-spacing:2.250000px;}
.ws3a{word-spacing:2.337000px;}
.ws61{word-spacing:2.460000px;}
.ws58{word-spacing:2.508000px;}
.ws1f{word-spacing:2.520000px;}
.ws62{word-spacing:2.565000px;}
.wsc7{word-spacing:2.610000px;}
.wsa2{word-spacing:2.622000px;}
.wsdb{word-spacing:2.655000px;}
.ws8b{word-spacing:2.736000px;}
.ws49{word-spacing:2.793000px;}
.ws1a{word-spacing:2.880000px;}
.ws9c{word-spacing:2.964000px;}
.ws25{word-spacing:3.021000px;}
.wsb4{word-spacing:3.060000px;}
.wsb5{word-spacing:3.105000px;}
.ws4a{word-spacing:3.135000px;}
.ws56{word-spacing:3.192000px;}
.ws63{word-spacing:3.249000px;}
.wsbd{word-spacing:3.285000px;}
.wsf0{word-spacing:3.306000px;}
.ws20{word-spacing:3.348000px;}
.ws9a{word-spacing:3.363000px;}
.ws60{word-spacing:3.420000px;}
.ws52{word-spacing:3.510000px;}
.ws71{word-spacing:3.534000px;}
.wse8{word-spacing:3.555000px;}
.ws7b{word-spacing:3.648000px;}
.ws53{word-spacing:3.672000px;}
.ws7e{word-spacing:3.705000px;}
.ws1c{word-spacing:3.720000px;}
.ws3e{word-spacing:3.762000px;}
.ws3d{word-spacing:3.819000px;}
.wscf{word-spacing:3.870000px;}
.ws26{word-spacing:3.876000px;}
.wsef{word-spacing:3.933000px;}
.ws41{word-spacing:3.990000px;}
.wsd0{word-spacing:4.005000px;}
.ws9f{word-spacing:4.047000px;}
.wsb8{word-spacing:4.050000px;}
.wsee{word-spacing:4.092000px;}
.wsb9{word-spacing:4.095000px;}
.ws7d{word-spacing:4.104000px;}
.ws54{word-spacing:4.158000px;}
.ws5c{word-spacing:4.161000px;}
.ws39{word-spacing:4.218000px;}
.wsc4{word-spacing:4.230000px;}
.ws81{word-spacing:4.332000px;}
.wseb{word-spacing:4.389000px;}
.wsdc{word-spacing:4.455000px;}
.ws93{word-spacing:4.560000px;}
.ws29{word-spacing:4.617000px;}
.ws2d{word-spacing:4.674000px;}
.ws46{word-spacing:4.731000px;}
.wsc6{word-spacing:4.770000px;}
.wsaf{word-spacing:4.788000px;}
.ws38{word-spacing:4.845000px;}
.wse9{word-spacing:4.860000px;}
.ws98{word-spacing:4.902000px;}
.wsdd{word-spacing:4.905000px;}
.wsc5{word-spacing:4.950000px;}
.wse3{word-spacing:4.995000px;}
.ws8e{word-spacing:5.040000px;}
.ws65{word-spacing:5.073000px;}
.wsd9{word-spacing:5.085000px;}
.ws2f{word-spacing:5.100000px;}
.ws86{word-spacing:5.244000px;}
.ws8d{word-spacing:5.301000px;}
.wsc9{word-spacing:5.310000px;}
.wsca{word-spacing:5.355000px;}
.ws4d{word-spacing:5.358000px;}
.ws48{word-spacing:5.529000px;}
.ws30{word-spacing:5.661000px;}
.wse5{word-spacing:5.715000px;}
.ws50{word-spacing:5.757000px;}
.wse6{word-spacing:5.760000px;}
.ws8c{word-spacing:5.871000px;}
.ws59{word-spacing:5.928000px;}
.ws3c{word-spacing:5.985000px;}
.wse0{word-spacing:6.075000px;}
.wsa5{word-spacing:6.120000px;}
.wsb0{word-spacing:6.156000px;}
.wse1{word-spacing:6.165000px;}
.ws4c{word-spacing:6.180000px;}
.ws5a{word-spacing:6.213000px;}
.wsde{word-spacing:6.300000px;}
.wsa6{word-spacing:6.384000px;}
.wsb6{word-spacing:6.390000px;}
.wsb7{word-spacing:6.435000px;}
.ws2b{word-spacing:6.441000px;}
.ws55{word-spacing:6.555000px;}
.wsea{word-spacing:6.570000px;}
.ws45{word-spacing:6.612000px;}
.wsa1{word-spacing:6.669000px;}
.ws6e{word-spacing:6.954000px;}
.ws88{word-spacing:7.011000px;}
.ws4f{word-spacing:7.125000px;}
.wsa8{word-spacing:7.239000px;}
.wsbe{word-spacing:7.290000px;}
.ws57{word-spacing:7.353000px;}
.wsbf{word-spacing:7.380000px;}
.wscb{word-spacing:7.605000px;}
.ws72{word-spacing:7.680000px;}
.ws2a{word-spacing:7.695000px;}
.ws5f{word-spacing:7.809000px;}
.wsc3{word-spacing:7.965000px;}
.ws73{word-spacing:8.037000px;}
.wsb{word-spacing:8.109828px;}
.wsa3{word-spacing:8.460000px;}
.ws51{word-spacing:8.493000px;}
.ws5d{word-spacing:8.550000px;}
.ws97{word-spacing:8.664000px;}
.ws74{word-spacing:8.778000px;}
.ws9{word-spacing:8.834508px;}
.wsa4{word-spacing:8.835000px;}
.wsa{word-spacing:8.841096px;}
.ws9e{word-spacing:9.063000px;}
.ws83{word-spacing:9.177000px;}
.wsf1{word-spacing:9.405000px;}
.ws23{word-spacing:9.462000px;}
.ws8f{word-spacing:9.540000px;}
.ws80{word-spacing:9.576000px;}
.ws1b{word-spacing:9.672000px;}
.ws42{word-spacing:9.690000px;}
.ws9d{word-spacing:9.747000px;}
.ws90{word-spacing:9.975000px;}
.wse7{word-spacing:10.035000px;}
.ws22{word-spacing:10.089000px;}
.wsd8{word-spacing:10.125000px;}
.ws66{word-spacing:10.488000px;}
.wsad{word-spacing:10.560000px;}
.ws28{word-spacing:10.602000px;}
.wsc{word-spacing:10.626444px;}
.ws8{word-spacing:10.652796px;}
.wsd{word-spacing:10.665972px;}
.ws69{word-spacing:10.830000px;}
.wscc{word-spacing:10.845000px;}
.wsae{word-spacing:11.058000px;}
.wsd6{word-spacing:11.115000px;}
.ws67{word-spacing:11.160000px;}
.wsd7{word-spacing:11.250000px;}
.ws89{word-spacing:11.286000px;}
.ws3b{word-spacing:11.343000px;}
.ws68{word-spacing:11.685000px;}
.ws96{word-spacing:11.799000px;}
.ws6a{word-spacing:11.856000px;}
.wsa0{word-spacing:11.970000px;}
.wsd4{word-spacing:12.195000px;}
.wsd5{word-spacing:12.285000px;}
.ws27{word-spacing:12.312000px;}
.ws7f{word-spacing:12.882000px;}
.wsed{word-spacing:15.219000px;}
.ws31{word-spacing:15.708000px;}
.ws5e{word-spacing:21.603000px;}
._1b{margin-left:-19.557600px;}
._10{margin-left:-17.091000px;}
._d{margin-left:-15.226500px;}
._c{margin-left:-13.678200px;}
._1d{margin-left:-12.266700px;}
._9{margin-left:-11.208600px;}
._19{margin-left:-9.905100px;}
._b{margin-left:-8.610000px;}
._12{margin-left:-6.975000px;}
._6{margin-left:-5.709300px;}
._4{margin-left:-4.604400px;}
._2{margin-left:-2.995200px;}
._1{margin-left:-1.776000px;}
._0{width:1.317600px;}
._5{width:2.674200px;}
._3{width:3.816600px;}
._16{width:4.867800px;}
._8{width:6.003900px;}
._7{width:7.221600px;}
._15{width:9.591000px;}
._11{width:12.455400px;}
._14{width:14.004600px;}
._f{width:36.100800px;}
._18{width:37.959000px;}
._13{width:39.547800px;}
._a{width:41.158800px;}
._17{width:42.292200px;}
._e{width:44.692200px;}
._1a{width:46.283400px;}
._1c{width:47.364000px;}
.fc1{color:rgb(131,144,151);}
.fc3{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:33.150000px;}
.fs9{font-size:35.100000px;}
.fsb{font-size:37.050000px;}
.fs7{font-size:39.000000px;}
.fsf{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fsd{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs5{font-size:61.500000px;}
.fs0{font-size:65.880000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:83.880000px;}
.fse{font-size:108.000000px;}
.fs6{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:16.710000px;}
.y28{bottom:27.197850px;}
.y29{bottom:27.253800px;}
.y1e{bottom:62.880000px;}
.y170{bottom:63.825000px;}
.y54{bottom:64.047750px;}
.ye7{bottom:64.050750px;}
.y79{bottom:64.053750px;}
.yad{bottom:73.608300px;}
.yc7{bottom:75.228900px;}
.y16f{bottom:76.953750px;}
.y21{bottom:77.280000px;}
.ye6{bottom:79.797000px;}
.y78{bottom:79.807500px;}
.y129{bottom:79.830000px;}
.y53{bottom:81.298500px;}
.yac{bottom:89.354550px;}
.y16e{bottom:90.082500px;}
.yc6{bottom:90.975150px;}
.y77{bottom:95.553750px;}
.y128{bottom:95.576250px;}
.y20{bottom:98.250000px;}
.y52{bottom:98.549250px;}
.y16d{bottom:103.211250px;}
.yab{bottom:105.100800px;}
.yc5{bottom:106.721400px;}
.ye5{bottom:111.303750px;}
.y76{bottom:111.307500px;}
.y127{bottom:111.322500px;}
.y51{bottom:115.799250px;}
.y16c{bottom:116.340000px;}
.yc4{bottom:122.471400px;}
.y75{bottom:127.053750px;}
.ye4{bottom:127.057500px;}
.y126{bottom:127.068750px;}
.y16b{bottom:129.468750px;}
.y50{bottom:133.049250px;}
.yaa{bottom:136.715550px;}
.y16a{bottom:142.597500px;}
.y74{bottom:142.800000px;}
.ye3{bottom:142.803750px;}
.y125{bottom:142.815000px;}
.ya9{bottom:152.461800px;}
.yc3{bottom:154.237200px;}
.y4f{bottom:154.635000px;}
.y169{bottom:155.726250px;}
.y73{bottom:158.550000px;}
.y124{bottom:158.561250px;}
.ye2{bottom:158.565000px;}
.y25{bottom:165.510000px;}
.ya8{bottom:168.208050px;}
.y168{bottom:168.855000px;}
.yc2{bottom:169.983450px;}
.y123{bottom:174.307500px;}
.ye1{bottom:174.311250px;}
.y167{bottom:181.983750px;}
.y1b{bottom:183.502590px;}
.ya7{bottom:183.954300px;}
.yc1{bottom:185.729700px;}
.y24{bottom:186.480000px;}
.y4e{bottom:188.188200px;}
.y122{bottom:190.053750px;}
.ye0{bottom:190.057500px;}
.y72{bottom:190.297050px;}
.y166{bottom:195.112500px;}
.ya6{bottom:199.700550px;}
.yc0{bottom:201.475950px;}
.y4d{bottom:203.945700px;}
.y121{bottom:205.800000px;}
.ydf{bottom:205.803750px;}
.y71{bottom:206.065800px;}
.y1a{bottom:206.725290px;}
.y23{bottom:207.450000px;}
.y165{bottom:208.241250px;}
.ya5{bottom:215.446800px;}
.ybf{bottom:217.222200px;}
.y1a8{bottom:217.308300px;}
.y4c{bottom:219.691950px;}
.y164{bottom:221.370000px;}
.yde{bottom:221.550000px;}
.y70{bottom:221.812050px;}
.y19{bottom:229.849170px;}
.ya4{bottom:231.193050px;}
.ybe{bottom:232.968450px;}
.y1a7{bottom:233.054550px;}
.y163{bottom:234.498750px;}
.y4b{bottom:235.438200px;}
.y120{bottom:237.371100px;}
.y6f{bottom:237.558300px;}
.ya3{bottom:246.939300px;}
.y162{bottom:247.627500px;}
.ybd{bottom:248.752200px;}
.y1a6{bottom:248.800800px;}
.y4a{bottom:251.188200px;}
.y18{bottom:252.981180px;}
.y11f{bottom:253.117350px;}
.ydd{bottom:253.175400px;}
.y6e{bottom:253.304550px;}
.y161{bottom:260.756250px;}
.ya2{bottom:262.685550px;}
.ybc{bottom:264.498450px;}
.y1a5{bottom:264.547050px;}
.y49{bottom:266.938200px;}
.y11e{bottom:268.863600px;}
.ydc{bottom:268.921650px;}
.y6d{bottom:269.050800px;}
.y160{bottom:273.885000px;}
.y17{bottom:276.203880px;}
.ya1{bottom:278.435550px;}
.ybb{bottom:280.244700px;}
.y1a4{bottom:280.293300px;}
.y48{bottom:282.688200px;}
.y11d{bottom:284.609850px;}
.ydb{bottom:284.671650px;}
.y6c{bottom:284.797050px;}
.y15f{bottom:287.013750px;}
.ya0{bottom:294.204300px;}
.yba{bottom:295.990950px;}
.y47{bottom:298.445700px;}
.y15e{bottom:300.142500px;}
.y11c{bottom:300.356100px;}
.y6b{bottom:300.554550px;}
.y1a3{bottom:302.795550px;}
.y22{bottom:305.055000px;}
.y9f{bottom:309.950550px;}
.yb9{bottom:311.737200px;}
.y15d{bottom:313.271250px;}
.y46{bottom:314.191950px;}
.y11b{bottom:316.102350px;}
.yda{bottom:316.297050px;}
.y6a{bottom:316.300800px;}
.y1a2{bottom:318.541800px;}
.y9e{bottom:325.696800px;}
.y15c{bottom:326.400000px;}
.yb8{bottom:327.483450px;}
.y45{bottom:329.938200px;}
.y11a{bottom:331.848600px;}
.y69{bottom:332.047050px;}
.yd9{bottom:332.065800px;}
.y15b{bottom:339.528750px;}
.y1a1{bottom:341.042550px;}
.y9d{bottom:341.443050px;}
.yb7{bottom:343.229700px;}
.y16{bottom:344.356740px;}
.y44{bottom:345.688200px;}
.y68{bottom:347.797050px;}
.yd8{bottom:347.812050px;}
.y15a{bottom:352.657500px;}
.y9c{bottom:357.189300px;}
.yb6{bottom:358.975950px;}
.y43{bottom:361.438200px;}
.y119{bottom:363.401100px;}
.y1a0{bottom:363.543300px;}
.yd7{bottom:363.558300px;}
.y67{bottom:363.562050px;}
.y159{bottom:365.786250px;}
.y9b{bottom:372.935550px;}
.yb5{bottom:374.722200px;}
.y42{bottom:377.191950px;}
.y158{bottom:378.915000px;}
.y118{bottom:379.147350px;}
.y19f{bottom:379.293300px;}
.yd6{bottom:379.304550px;}
.y66{bottom:379.308300px;}
.y15{bottom:382.517730px;}
.y9a{bottom:388.681800px;}
.yb4{bottom:390.468450px;}
.y157{bottom:392.043750px;}
.y41{bottom:392.938200px;}
.yd5{bottom:395.050800px;}
.y65{bottom:395.054550px;}
.y156{bottom:405.172500px;}
.yb3{bottom:406.214700px;}
.y40{bottom:408.688200px;}
.y117{bottom:410.707200px;}
.yd4{bottom:410.797050px;}
.y64{bottom:410.800800px;}
.y155{bottom:418.301250px;}
.y99{bottom:420.285450px;}
.y14{bottom:420.678720px;}
.y3f{bottom:424.434450px;}
.y116{bottom:426.453450px;}
.y63{bottom:426.547050px;}
.yd3{bottom:426.550800px;}
.y154{bottom:431.430000px;}
.y98{bottom:436.031700px;}
.y115{bottom:442.199700px;}
.y19e{bottom:442.293300px;}
.yd2{bottom:442.297050px;}
.y62{bottom:442.312050px;}
.y153{bottom:444.558750px;}
.y97{bottom:451.777950px;}
.y152{bottom:457.687500px;}
.y114{bottom:457.973700px;}
.y19d{bottom:458.043300px;}
.y61{bottom:458.058300px;}
.yd1{bottom:458.062050px;}
.y13{bottom:458.839710px;}
.y96{bottom:467.524200px;}
.ycc{bottom:467.632350px;}
.y151{bottom:470.816250px;}
.y3e{bottom:472.452450px;}
.y113{bottom:473.719950px;}
.y60{bottom:473.804550px;}
.yd0{bottom:473.808300px;}
.y95{bottom:483.270450px;}
.y150{bottom:483.945000px;}
.ycb{bottom:484.129350px;}
.y5f{bottom:489.550800px;}
.ycf{bottom:489.554550px;}
.y19c{bottom:489.565800px;}
.y3d{bottom:490.447950px;}
.y12{bottom:497.000700px;}
.y14f{bottom:497.073750px;}
.y94{bottom:499.016700px;}
.yca{bottom:500.626350px;}
.y112{bottom:505.226700px;}
.y5e{bottom:505.297050px;}
.yce{bottom:505.300800px;}
.y19b{bottom:505.312050px;}
.y3c{bottom:508.443450px;}
.y14e{bottom:510.202500px;}
.y93{bottom:514.762950px;}
.yc9{bottom:517.123350px;}
.y111{bottom:520.972950px;}
.y5d{bottom:521.047050px;}
.y19a{bottom:521.058300px;}
.y14d{bottom:523.331250px;}
.y3b{bottom:526.438950px;}
.yc8{bottom:533.620350px;}
.y11{bottom:535.161690px;}
.y14c{bottom:536.460000px;}
.y110{bottom:536.719200px;}
.ycd{bottom:536.793300px;}
.y5c{bottom:536.797050px;}
.y199{bottom:536.804550px;}
.y3a{bottom:544.479450px;}
.y92{bottom:546.377850px;}
.y14b{bottom:549.588750px;}
.y10f{bottom:552.465450px;}
.y5b{bottom:552.547050px;}
.y198{bottom:552.550800px;}
.y91{bottom:562.124100px;}
.y39{bottom:562.474950px;}
.y14a{bottom:562.717500px;}
.y10e{bottom:568.211700px;}
.y5a{bottom:568.293300px;}
.y197{bottom:568.297050px;}
.y10{bottom:573.322680px;}
.y149{bottom:575.846250px;}
.y90{bottom:577.870350px;}
.y38{bottom:580.470450px;}
.y10d{bottom:583.957950px;}
.y196{bottom:584.043300px;}
.y148{bottom:588.975000px;}
.y8f{bottom:593.616600px;}
.yf2{bottom:597.238950px;}
.y37{bottom:598.465950px;}
.y10c{bottom:599.704200px;}
.y195{bottom:599.793300px;}
.y147{bottom:602.103750px;}
.y8e{bottom:609.362850px;}
.yf{bottom:611.483670px;}
.yf1{bottom:613.735950px;}
.y146{bottom:615.232500px;}
.y36{bottom:616.461450px;}
.y8d{bottom:625.109100px;}
.y145{bottom:628.361250px;}
.yf0{bottom:630.232950px;}
.y194{bottom:631.162050px;}
.y10b{bottom:631.210950px;}
.y80{bottom:633.520950px;}
.y35{bottom:634.456950px;}
.y26{bottom:635.130000px;}
.y8c{bottom:640.855350px;}
.y144{bottom:641.490000px;}
.y193{bottom:644.290800px;}
.yef{bottom:646.729950px;}
.y10a{bottom:646.957200px;}
.ye{bottom:649.644660px;}
.y7f{bottom:650.017950px;}
.y34{bottom:652.452450px;}
.y143{bottom:654.618750px;}
.y8b{bottom:656.601600px;}
.y192{bottom:657.419550px;}
.y109{bottom:662.703450px;}
.yee{bottom:663.226950px;}
.y7e{bottom:666.514950px;}
.y1d{bottom:667.530000px;}
.y142{bottom:667.747500px;}
.y33{bottom:670.447950px;}
.y191{bottom:670.548300px;}
.y8a{bottom:672.347850px;}
.y108{bottom:678.449700px;}
.yed{bottom:679.723950px;}
.y141{bottom:680.876250px;}
.y7d{bottom:683.011950px;}
.y190{bottom:683.677050px;}
.yd{bottom:687.805650px;}
.y89{bottom:688.097850px;}
.y32{bottom:688.443450px;}
.y140{bottom:694.005000px;}
.y107{bottom:694.195950px;}
.yec{bottom:696.220950px;}
.y18f{bottom:696.805800px;}
.y7c{bottom:699.511950px;}
.y88{bottom:703.847850px;}
.y31{bottom:706.438950px;}
.y13f{bottom:707.133750px;}
.y18e{bottom:709.934550px;}
.yeb{bottom:712.717950px;}
.y7b{bottom:716.011950px;}
.y87{bottom:719.616600px;}
.y13e{bottom:720.262500px;}
.y18d{bottom:723.063300px;}
.y30{bottom:724.434450px;}
.y106{bottom:725.748300px;}
.yc{bottom:725.966640px;}
.yea{bottom:729.214950px;}
.y7a{bottom:732.508950px;}
.y13d{bottom:733.391250px;}
.y86{bottom:735.362850px;}
.y18c{bottom:736.192050px;}
.y105{bottom:741.505800px;}
.ye9{bottom:745.711950px;}
.y13c{bottom:746.520000px;}
.y1f{bottom:749.250000px;}
.y18b{bottom:749.320800px;}
.y85{bottom:751.109100px;}
.y57{bottom:757.050000px;}
.y104{bottom:757.252050px;}
.y13b{bottom:759.648750px;}
.ye8{bottom:762.208950px;}
.y18a{bottom:762.449550px;}
.y2f{bottom:763.434300px;}
.yb{bottom:764.127630px;}
.y84{bottom:766.855350px;}
.y13a{bottom:772.777500px;}
.y103{bottom:772.998300px;}
.y189{bottom:775.578300px;}
.y56{bottom:778.050000px;}
.y2e{bottom:781.434300px;}
.y83{bottom:782.601600px;}
.y139{bottom:785.906250px;}
.y188{bottom:788.707050px;}
.y102{bottom:788.752050px;}
.y82{bottom:798.347850px;}
.y138{bottom:799.035000px;}
.y55{bottom:799.050000px;}
.y187{bottom:801.835800px;}
.ya{bottom:802.288620px;}
.y101{bottom:804.498300px;}
.y137{bottom:812.163750px;}
.y81{bottom:814.094100px;}
.y186{bottom:814.964550px;}
.y100{bottom:820.244550px;}
.y2d{bottom:820.416300px;}
.y136{bottom:825.292500px;}
.y185{bottom:828.093300px;}
.y135{bottom:838.421250px;}
.y9{bottom:840.449610px;}
.y184{bottom:841.222050px;}
.y134{bottom:851.550000px;}
.yff{bottom:851.804550px;}
.y183{bottom:854.350800px;}
.y133{bottom:864.675000px;}
.y182{bottom:867.479550px;}
.yfe{bottom:867.550800px;}
.y2c{bottom:868.425300px;}
.yb2{bottom:872.769450px;}
.y8{bottom:878.610600px;}
.y181{bottom:880.608300px;}
.yfd{bottom:883.297050px;}
.yb1{bottom:889.266450px;}
.y180{bottom:893.737050px;}
.y132{bottom:897.142350px;}
.yfc{bottom:899.037300px;}
.y7{bottom:900.041520px;}
.yb0{bottom:905.766450px;}
.y17f{bottom:906.865800px;}
.y131{bottom:912.888600px;}
.y2b{bottom:916.434300px;}
.y17e{bottom:919.994550px;}
.yaf{bottom:922.266450px;}
.y6{bottom:925.687830px;}
.y58{bottom:926.409600px;}
.y130{bottom:928.634850px;}
.yfb{bottom:930.544050px;}
.y17d{bottom:933.123300px;}
.yae{bottom:938.763450px;}
.y12f{bottom:944.381100px;}
.y17c{bottom:946.252050px;}
.yfa{bottom:946.290300px;}
.y5{bottom:951.334140px;}
.y17b{bottom:959.380800px;}
.yf9{bottom:962.036550px;}
.y17a{bottom:972.509550px;}
.y12e{bottom:976.840950px;}
.y4{bottom:976.980450px;}
.y179{bottom:985.638300px;}
.y12d{bottom:992.587200px;}
.yf8{bottom:993.551550px;}
.y178{bottom:998.767050px;}
.yf7{bottom:1009.297800px;}
.y177{bottom:1011.895800px;}
.y3{bottom:1019.370450px;}
.y176{bottom:1025.024550px;}
.yf6{bottom:1025.044050px;}
.y12c{bottom:1025.058300px;}
.y175{bottom:1038.153300px;}
.yf5{bottom:1040.790300px;}
.y12b{bottom:1040.804550px;}
.y174{bottom:1051.282050px;}
.y12a{bottom:1056.550800px;}
.y2{bottom:1060.044600px;}
.y173{bottom:1064.410800px;}
.yf4{bottom:1072.297050px;}
.y172{bottom:1077.539550px;}
.y1c{bottom:1086.240450px;}
.yf3{bottom:1088.043300px;}
.y171{bottom:1090.668300px;}
.y1{bottom:1093.890450px;}
.y59{bottom:1139.853000px;}
.y2a{bottom:1140.126900px;}
.h16{height:23.842749px;}
.h24{height:32.085000px;}
.h8{height:32.625000px;}
.hc{height:34.523438px;}
.h18{height:36.681152px;}
.h1f{height:38.502000px;}
.h10{height:38.838867px;}
.h12{height:40.641000px;}
.h17{height:41.185749px;}
.hb{height:43.154297px;}
.h1e{height:43.374300px;}
.h1d{height:43.386300px;}
.h11{height:43.425264px;}
.hd{height:44.233154px;}
.h1{height:45.035156px;}
.h20{height:45.646050px;}
.h23{height:45.685650px;}
.h1b{height:45.706650px;}
.h1a{height:45.721650px;}
.h21{height:45.736650px;}
.h15{height:45.751650px;}
.h14{height:45.766650px;}
.h13{height:45.781650px;}
.h3{height:45.807187px;}
.h22{height:45.820650px;}
.h1c{height:47.469727px;}
.hf{height:48.450893px;}
.h2{height:58.322812px;}
.h5{height:63.615234px;}
.h19{height:77.677734px;}
.h4{height:78.780000px;}
.he{height:112.201172px;}
.h6{height:114.150000px;}
.h7{height:223.350000px;}
.h9{height:1173.543000px;}
.ha{height:1173.750000px;}
.h0{height:1263.000000px;}
.w4{width:575.460000px;}
.w2{width:580.575000px;}
.w3{width:583.020000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w5{width:892.914000px;}
.w6{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.500000px;}
.x9{left:61.191450px;}
.xe{left:74.545950px;}
.xd{left:95.749950px;}
.x3{left:106.380000px;}
.xf{left:140.952750px;}
.x5{left:186.885000px;}
.x7{left:188.505000px;}
.x2{left:204.216300px;}
.xb{left:233.456400px;}
.x12{left:238.992150px;}
.xc{left:251.457600px;}
.x11{left:254.296200px;}
.x13{left:300.348450px;}
.x4{left:485.820000px;}
.xa{left:584.586600px;}
.x1{left:742.950000px;}
.x10{left:824.207400px;}
.x8{left:825.232800px;}
@media print{
.v2{vertical-align:-18.133867pt;}
.v5{vertical-align:-15.413333pt;}
.v6{vertical-align:-10.160533pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.160000pt;}
.v4{vertical-align:17.213333pt;}
.v1{vertical-align:18.133867pt;}
.ls3b{letter-spacing:-2.800000pt;}
.ls1e{letter-spacing:-1.824000pt;}
.ls31{letter-spacing:-1.200000pt;}
.ls2d{letter-spacing:-1.160000pt;}
.ls34{letter-spacing:-0.680000pt;}
.ls19{letter-spacing:-0.658667pt;}
.ls18{letter-spacing:-0.608000pt;}
.ls32{letter-spacing:-0.600000pt;}
.ls33{letter-spacing:-0.520000pt;}
.ls2f{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.432000pt;}
.ls35{letter-spacing:-0.400000pt;}
.ls1c{letter-spacing:-0.304000pt;}
.ls2e{letter-spacing:-0.280000pt;}
.ls30{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.117120pt;}
.lsd{letter-spacing:-0.040992pt;}
.lsb{letter-spacing:-0.029280pt;}
.lsa{letter-spacing:-0.011712pt;}
.ls9{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000800pt;}
.ls13{letter-spacing:0.001067pt;}
.ls16{letter-spacing:0.003600pt;}
.ls15{letter-spacing:0.006933pt;}
.ls3{letter-spacing:0.011712pt;}
.ls7{letter-spacing:0.017568pt;}
.ls0{letter-spacing:0.022368pt;}
.ls2{letter-spacing:0.023424pt;}
.ls4{letter-spacing:0.029280pt;}
.ls5{letter-spacing:0.035136pt;}
.ls1f{letter-spacing:0.036267pt;}
.ls1{letter-spacing:0.037280pt;}
.ls6{letter-spacing:0.040992pt;}
.lsf{letter-spacing:0.052704pt;}
.ls37{letter-spacing:0.176000pt;}
.lsc{letter-spacing:0.199104pt;}
.ls23{letter-spacing:0.440000pt;}
.ls17{letter-spacing:0.853333pt;}
.ls26{letter-spacing:1.920000pt;}
.ls25{letter-spacing:2.048000pt;}
.ls27{letter-spacing:2.280000pt;}
.ls10{letter-spacing:2.304000pt;}
.ls1a{letter-spacing:2.400000pt;}
.ls12{letter-spacing:2.460000pt;}
.ls29{letter-spacing:2.680000pt;}
.ls38{letter-spacing:2.684000pt;}
.ls2a{letter-spacing:2.696000pt;}
.ls28{letter-spacing:2.700000pt;}
.ls2b{letter-spacing:2.716000pt;}
.ls20{letter-spacing:2.720000pt;}
.ls36{letter-spacing:2.724000pt;}
.ls21{letter-spacing:2.728000pt;}
.ls2c{letter-spacing:2.740000pt;}
.ls11{letter-spacing:3.413333pt;}
.ls3a{letter-spacing:3.445333pt;}
.ls39{letter-spacing:4.892000pt;}
.ls22{letter-spacing:5.600000pt;}
.ls24{letter-spacing:6.556000pt;}
.ls1b{letter-spacing:13.104000pt;}
.lse{letter-spacing:138.119616pt;}
.ws13{word-spacing:-13.393333pt;}
.ws2{word-spacing:-13.263840pt;}
.ws0{word-spacing:-13.222848pt;}
.ws1{word-spacing:-13.205280pt;}
.ws36{word-spacing:-12.085333pt;}
.ws17{word-spacing:-11.501333pt;}
.ws35{word-spacing:-11.197333pt;}
.ws15{word-spacing:-10.893333pt;}
.ws18{word-spacing:-10.842667pt;}
.ws11{word-spacing:-10.837333pt;}
.ws6c{word-spacing:-9.373333pt;}
.ws77{word-spacing:-8.880000pt;}
.wsac{word-spacing:-8.760000pt;}
.wsaa{word-spacing:-8.680000pt;}
.wsab{word-spacing:-8.640000pt;}
.wsa9{word-spacing:-8.000000pt;}
.ws85{word-spacing:-7.853333pt;}
.ws16{word-spacing:-7.475867pt;}
.ws14{word-spacing:-7.141333pt;}
.ws37{word-spacing:-7.082400pt;}
.ws76{word-spacing:-7.056000pt;}
.wsda{word-spacing:-6.360000pt;}
.ws5b{word-spacing:-6.092667pt;}
.ws19{word-spacing:-5.893333pt;}
.ws79{word-spacing:-5.772000pt;}
.ws9b{word-spacing:-5.168000pt;}
.ws78{word-spacing:-4.896000pt;}
.ws34{word-spacing:-2.453333pt;}
.ws21{word-spacing:-2.432000pt;}
.ws12{word-spacing:-2.346667pt;}
.wse4{word-spacing:-1.600000pt;}
.ws91{word-spacing:-1.368000pt;}
.wsdf{word-spacing:-0.480000pt;}
.wsb2{word-spacing:-0.456000pt;}
.wsb1{word-spacing:-0.426667pt;}
.ws75{word-spacing:-0.405333pt;}
.wsd1{word-spacing:-0.360000pt;}
.ws1e{word-spacing:-0.320000pt;}
.wscd{word-spacing:-0.240000pt;}
.ws10{word-spacing:-0.169824pt;}
.wse{word-spacing:-0.158112pt;}
.wsf{word-spacing:-0.134688pt;}
.ws7{word-spacing:-0.076128pt;}
.ws3{word-spacing:0.000000pt;}
.ws84{word-spacing:0.050667pt;}
.ws6{word-spacing:0.067104pt;}
.ws5{word-spacing:0.082016pt;}
.ws7c{word-spacing:0.152000pt;}
.wsce{word-spacing:0.160000pt;}
.ws4{word-spacing:0.208768pt;}
.ws24{word-spacing:0.253333pt;}
.wse2{word-spacing:0.320000pt;}
.ws8a{word-spacing:0.354667pt;}
.wsbb{word-spacing:0.440000pt;}
.ws44{word-spacing:0.456000pt;}
.wsbc{word-spacing:0.480000pt;}
.ws43{word-spacing:0.506667pt;}
.wsc8{word-spacing:0.520000pt;}
.ws40{word-spacing:0.557333pt;}
.wsa7{word-spacing:0.608000pt;}
.ws94{word-spacing:0.658667pt;}
.wsc2{word-spacing:0.720000pt;}
.wsd2{word-spacing:0.800000pt;}
.ws6d{word-spacing:0.810667pt;}
.ws99{word-spacing:0.960000pt;}
.ws92{word-spacing:0.962667pt;}
.ws4e{word-spacing:1.013333pt;}
.wsd3{word-spacing:1.080000pt;}
.ws70{word-spacing:1.114667pt;}
.wsba{word-spacing:1.160000pt;}
.ws47{word-spacing:1.266667pt;}
.ws87{word-spacing:1.317333pt;}
.wsec{word-spacing:1.349333pt;}
.ws82{word-spacing:1.368000pt;}
.ws2e{word-spacing:1.418667pt;}
.ws2c{word-spacing:1.469333pt;}
.ws7a{word-spacing:1.520000pt;}
.wsb3{word-spacing:1.546667pt;}
.ws95{word-spacing:1.570667pt;}
.ws3f{word-spacing:1.621333pt;}
.ws6b{word-spacing:1.672000pt;}
.ws32{word-spacing:1.677333pt;}
.ws4b{word-spacing:1.722667pt;}
.ws6f{word-spacing:1.773333pt;}
.ws64{word-spacing:1.824000pt;}
.ws33{word-spacing:1.920000pt;}
.wsc0{word-spacing:1.960000pt;}
.ws1d{word-spacing:1.973333pt;}
.wsc1{word-spacing:2.000000pt;}
.ws3a{word-spacing:2.077333pt;}
.ws61{word-spacing:2.186667pt;}
.ws58{word-spacing:2.229333pt;}
.ws1f{word-spacing:2.240000pt;}
.ws62{word-spacing:2.280000pt;}
.wsc7{word-spacing:2.320000pt;}
.wsa2{word-spacing:2.330667pt;}
.wsdb{word-spacing:2.360000pt;}
.ws8b{word-spacing:2.432000pt;}
.ws49{word-spacing:2.482667pt;}
.ws1a{word-spacing:2.560000pt;}
.ws9c{word-spacing:2.634667pt;}
.ws25{word-spacing:2.685333pt;}
.wsb4{word-spacing:2.720000pt;}
.wsb5{word-spacing:2.760000pt;}
.ws4a{word-spacing:2.786667pt;}
.ws56{word-spacing:2.837333pt;}
.ws63{word-spacing:2.888000pt;}
.wsbd{word-spacing:2.920000pt;}
.wsf0{word-spacing:2.938667pt;}
.ws20{word-spacing:2.976000pt;}
.ws9a{word-spacing:2.989333pt;}
.ws60{word-spacing:3.040000pt;}
.ws52{word-spacing:3.120000pt;}
.ws71{word-spacing:3.141333pt;}
.wse8{word-spacing:3.160000pt;}
.ws7b{word-spacing:3.242667pt;}
.ws53{word-spacing:3.264000pt;}
.ws7e{word-spacing:3.293333pt;}
.ws1c{word-spacing:3.306667pt;}
.ws3e{word-spacing:3.344000pt;}
.ws3d{word-spacing:3.394667pt;}
.wscf{word-spacing:3.440000pt;}
.ws26{word-spacing:3.445333pt;}
.wsef{word-spacing:3.496000pt;}
.ws41{word-spacing:3.546667pt;}
.wsd0{word-spacing:3.560000pt;}
.ws9f{word-spacing:3.597333pt;}
.wsb8{word-spacing:3.600000pt;}
.wsee{word-spacing:3.637333pt;}
.wsb9{word-spacing:3.640000pt;}
.ws7d{word-spacing:3.648000pt;}
.ws54{word-spacing:3.696000pt;}
.ws5c{word-spacing:3.698667pt;}
.ws39{word-spacing:3.749333pt;}
.wsc4{word-spacing:3.760000pt;}
.ws81{word-spacing:3.850667pt;}
.wseb{word-spacing:3.901333pt;}
.wsdc{word-spacing:3.960000pt;}
.ws93{word-spacing:4.053333pt;}
.ws29{word-spacing:4.104000pt;}
.ws2d{word-spacing:4.154667pt;}
.ws46{word-spacing:4.205333pt;}
.wsc6{word-spacing:4.240000pt;}
.wsaf{word-spacing:4.256000pt;}
.ws38{word-spacing:4.306667pt;}
.wse9{word-spacing:4.320000pt;}
.ws98{word-spacing:4.357333pt;}
.wsdd{word-spacing:4.360000pt;}
.wsc5{word-spacing:4.400000pt;}
.wse3{word-spacing:4.440000pt;}
.ws8e{word-spacing:4.480000pt;}
.ws65{word-spacing:4.509333pt;}
.wsd9{word-spacing:4.520000pt;}
.ws2f{word-spacing:4.533333pt;}
.ws86{word-spacing:4.661333pt;}
.ws8d{word-spacing:4.712000pt;}
.wsc9{word-spacing:4.720000pt;}
.wsca{word-spacing:4.760000pt;}
.ws4d{word-spacing:4.762667pt;}
.ws48{word-spacing:4.914667pt;}
.ws30{word-spacing:5.032000pt;}
.wse5{word-spacing:5.080000pt;}
.ws50{word-spacing:5.117333pt;}
.wse6{word-spacing:5.120000pt;}
.ws8c{word-spacing:5.218667pt;}
.ws59{word-spacing:5.269333pt;}
.ws3c{word-spacing:5.320000pt;}
.wse0{word-spacing:5.400000pt;}
.wsa5{word-spacing:5.440000pt;}
.wsb0{word-spacing:5.472000pt;}
.wse1{word-spacing:5.480000pt;}
.ws4c{word-spacing:5.493333pt;}
.ws5a{word-spacing:5.522667pt;}
.wsde{word-spacing:5.600000pt;}
.wsa6{word-spacing:5.674667pt;}
.wsb6{word-spacing:5.680000pt;}
.wsb7{word-spacing:5.720000pt;}
.ws2b{word-spacing:5.725333pt;}
.ws55{word-spacing:5.826667pt;}
.wsea{word-spacing:5.840000pt;}
.ws45{word-spacing:5.877333pt;}
.wsa1{word-spacing:5.928000pt;}
.ws6e{word-spacing:6.181333pt;}
.ws88{word-spacing:6.232000pt;}
.ws4f{word-spacing:6.333333pt;}
.wsa8{word-spacing:6.434667pt;}
.wsbe{word-spacing:6.480000pt;}
.ws57{word-spacing:6.536000pt;}
.wsbf{word-spacing:6.560000pt;}
.wscb{word-spacing:6.760000pt;}
.ws72{word-spacing:6.826667pt;}
.ws2a{word-spacing:6.840000pt;}
.ws5f{word-spacing:6.941333pt;}
.wsc3{word-spacing:7.080000pt;}
.ws73{word-spacing:7.144000pt;}
.wsb{word-spacing:7.208736pt;}
.wsa3{word-spacing:7.520000pt;}
.ws51{word-spacing:7.549333pt;}
.ws5d{word-spacing:7.600000pt;}
.ws97{word-spacing:7.701333pt;}
.ws74{word-spacing:7.802667pt;}
.ws9{word-spacing:7.852896pt;}
.wsa4{word-spacing:7.853333pt;}
.wsa{word-spacing:7.858752pt;}
.ws9e{word-spacing:8.056000pt;}
.ws83{word-spacing:8.157333pt;}
.wsf1{word-spacing:8.360000pt;}
.ws23{word-spacing:8.410667pt;}
.ws8f{word-spacing:8.480000pt;}
.ws80{word-spacing:8.512000pt;}
.ws1b{word-spacing:8.597333pt;}
.ws42{word-spacing:8.613333pt;}
.ws9d{word-spacing:8.664000pt;}
.ws90{word-spacing:8.866667pt;}
.wse7{word-spacing:8.920000pt;}
.ws22{word-spacing:8.968000pt;}
.wsd8{word-spacing:9.000000pt;}
.ws66{word-spacing:9.322667pt;}
.wsad{word-spacing:9.386667pt;}
.ws28{word-spacing:9.424000pt;}
.wsc{word-spacing:9.445728pt;}
.ws8{word-spacing:9.469152pt;}
.wsd{word-spacing:9.480864pt;}
.ws69{word-spacing:9.626667pt;}
.wscc{word-spacing:9.640000pt;}
.wsae{word-spacing:9.829333pt;}
.wsd6{word-spacing:9.880000pt;}
.ws67{word-spacing:9.920000pt;}
.wsd7{word-spacing:10.000000pt;}
.ws89{word-spacing:10.032000pt;}
.ws3b{word-spacing:10.082667pt;}
.ws68{word-spacing:10.386667pt;}
.ws96{word-spacing:10.488000pt;}
.ws6a{word-spacing:10.538667pt;}
.wsa0{word-spacing:10.640000pt;}
.wsd4{word-spacing:10.840000pt;}
.wsd5{word-spacing:10.920000pt;}
.ws27{word-spacing:10.944000pt;}
.ws7f{word-spacing:11.450667pt;}
.wsed{word-spacing:13.528000pt;}
.ws31{word-spacing:13.962667pt;}
.ws5e{word-spacing:19.202667pt;}
._1b{margin-left:-17.384533pt;}
._10{margin-left:-15.192000pt;}
._d{margin-left:-13.534667pt;}
._c{margin-left:-12.158400pt;}
._1d{margin-left:-10.903733pt;}
._9{margin-left:-9.963200pt;}
._19{margin-left:-8.804533pt;}
._b{margin-left:-7.653333pt;}
._12{margin-left:-6.200000pt;}
._6{margin-left:-5.074933pt;}
._4{margin-left:-4.092800pt;}
._2{margin-left:-2.662400pt;}
._1{margin-left:-1.578667pt;}
._0{width:1.171200pt;}
._5{width:2.377067pt;}
._3{width:3.392533pt;}
._16{width:4.326933pt;}
._8{width:5.336800pt;}
._7{width:6.419200pt;}
._15{width:8.525333pt;}
._11{width:11.071467pt;}
._14{width:12.448533pt;}
._f{width:32.089600pt;}
._18{width:33.741333pt;}
._13{width:35.153600pt;}
._a{width:36.585600pt;}
._17{width:37.593067pt;}
._e{width:39.726400pt;}
._1a{width:41.140800pt;}
._1c{width:42.101333pt;}
.fsc{font-size:29.466667pt;}
.fs9{font-size:31.200000pt;}
.fsb{font-size:32.933333pt;}
.fs7{font-size:34.666667pt;}
.fsf{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fsd{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:54.666667pt;}
.fs0{font-size:58.560000pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:74.560000pt;}
.fse{font-size:96.000000pt;}
.fs6{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:14.853333pt;}
.y28{bottom:24.175867pt;}
.y29{bottom:24.225600pt;}
.y1e{bottom:55.893333pt;}
.y170{bottom:56.733333pt;}
.y54{bottom:56.931333pt;}
.ye7{bottom:56.934000pt;}
.y79{bottom:56.936667pt;}
.yad{bottom:65.429600pt;}
.yc7{bottom:66.870133pt;}
.y16f{bottom:68.403333pt;}
.y21{bottom:68.693333pt;}
.ye6{bottom:70.930667pt;}
.y78{bottom:70.940000pt;}
.y129{bottom:70.960000pt;}
.y53{bottom:72.265333pt;}
.yac{bottom:79.426267pt;}
.y16e{bottom:80.073333pt;}
.yc6{bottom:80.866800pt;}
.y77{bottom:84.936667pt;}
.y128{bottom:84.956667pt;}
.y20{bottom:87.333333pt;}
.y52{bottom:87.599333pt;}
.y16d{bottom:91.743333pt;}
.yab{bottom:93.422933pt;}
.yc5{bottom:94.863467pt;}
.ye5{bottom:98.936667pt;}
.y76{bottom:98.940000pt;}
.y127{bottom:98.953333pt;}
.y51{bottom:102.932667pt;}
.y16c{bottom:103.413333pt;}
.yc4{bottom:108.863467pt;}
.y75{bottom:112.936667pt;}
.ye4{bottom:112.940000pt;}
.y126{bottom:112.950000pt;}
.y16b{bottom:115.083333pt;}
.y50{bottom:118.266000pt;}
.yaa{bottom:121.524933pt;}
.y16a{bottom:126.753333pt;}
.y74{bottom:126.933333pt;}
.ye3{bottom:126.936667pt;}
.y125{bottom:126.946667pt;}
.ya9{bottom:135.521600pt;}
.yc3{bottom:137.099733pt;}
.y4f{bottom:137.453333pt;}
.y169{bottom:138.423333pt;}
.y73{bottom:140.933333pt;}
.y124{bottom:140.943333pt;}
.ye2{bottom:140.946667pt;}
.y25{bottom:147.120000pt;}
.ya8{bottom:149.518267pt;}
.y168{bottom:150.093333pt;}
.yc2{bottom:151.096400pt;}
.y123{bottom:154.940000pt;}
.ye1{bottom:154.943333pt;}
.y167{bottom:161.763333pt;}
.y1b{bottom:163.113413pt;}
.ya7{bottom:163.514933pt;}
.yc1{bottom:165.093067pt;}
.y24{bottom:165.760000pt;}
.y4e{bottom:167.278400pt;}
.y122{bottom:168.936667pt;}
.ye0{bottom:168.940000pt;}
.y72{bottom:169.152933pt;}
.y166{bottom:173.433333pt;}
.ya6{bottom:177.511600pt;}
.yc0{bottom:179.089733pt;}
.y4d{bottom:181.285067pt;}
.y121{bottom:182.933333pt;}
.ydf{bottom:182.936667pt;}
.y71{bottom:183.169600pt;}
.y1a{bottom:183.755813pt;}
.y23{bottom:184.400000pt;}
.y165{bottom:185.103333pt;}
.ya5{bottom:191.508267pt;}
.ybf{bottom:193.086400pt;}
.y1a8{bottom:193.162933pt;}
.y4c{bottom:195.281733pt;}
.y164{bottom:196.773333pt;}
.yde{bottom:196.933333pt;}
.y70{bottom:197.166267pt;}
.y19{bottom:204.310373pt;}
.ya4{bottom:205.504933pt;}
.ybe{bottom:207.083067pt;}
.y1a7{bottom:207.159600pt;}
.y163{bottom:208.443333pt;}
.y4b{bottom:209.278400pt;}
.y120{bottom:210.996533pt;}
.y6f{bottom:211.162933pt;}
.ya3{bottom:219.501600pt;}
.y162{bottom:220.113333pt;}
.ybd{bottom:221.113067pt;}
.y1a6{bottom:221.156267pt;}
.y4a{bottom:223.278400pt;}
.y18{bottom:224.872160pt;}
.y11f{bottom:224.993200pt;}
.ydd{bottom:225.044800pt;}
.y6e{bottom:225.159600pt;}
.y161{bottom:231.783333pt;}
.ya2{bottom:233.498267pt;}
.ybc{bottom:235.109733pt;}
.y1a5{bottom:235.152933pt;}
.y49{bottom:237.278400pt;}
.y11e{bottom:238.989867pt;}
.ydc{bottom:239.041467pt;}
.y6d{bottom:239.156267pt;}
.y160{bottom:243.453333pt;}
.y17{bottom:245.514560pt;}
.ya1{bottom:247.498267pt;}
.ybb{bottom:249.106400pt;}
.y1a4{bottom:249.149600pt;}
.y48{bottom:251.278400pt;}
.y11d{bottom:252.986533pt;}
.ydb{bottom:253.041467pt;}
.y6c{bottom:253.152933pt;}
.y15f{bottom:255.123333pt;}
.ya0{bottom:261.514933pt;}
.yba{bottom:263.103067pt;}
.y47{bottom:265.285067pt;}
.y15e{bottom:266.793333pt;}
.y11c{bottom:266.983200pt;}
.y6b{bottom:267.159600pt;}
.y1a3{bottom:269.151600pt;}
.y22{bottom:271.160000pt;}
.y9f{bottom:275.511600pt;}
.yb9{bottom:277.099733pt;}
.y15d{bottom:278.463333pt;}
.y46{bottom:279.281733pt;}
.y11b{bottom:280.979867pt;}
.yda{bottom:281.152933pt;}
.y6a{bottom:281.156267pt;}
.y1a2{bottom:283.148267pt;}
.y9e{bottom:289.508267pt;}
.y15c{bottom:290.133333pt;}
.yb8{bottom:291.096400pt;}
.y45{bottom:293.278400pt;}
.y11a{bottom:294.976533pt;}
.y69{bottom:295.152933pt;}
.yd9{bottom:295.169600pt;}
.y15b{bottom:301.803333pt;}
.y1a1{bottom:303.148933pt;}
.y9d{bottom:303.504933pt;}
.yb7{bottom:305.093067pt;}
.y16{bottom:306.094880pt;}
.y44{bottom:307.278400pt;}
.y68{bottom:309.152933pt;}
.yd8{bottom:309.166267pt;}
.y15a{bottom:313.473333pt;}
.y9c{bottom:317.501600pt;}
.yb6{bottom:319.089733pt;}
.y43{bottom:321.278400pt;}
.y119{bottom:323.023200pt;}
.y1a0{bottom:323.149600pt;}
.yd7{bottom:323.162933pt;}
.y67{bottom:323.166267pt;}
.y159{bottom:325.143333pt;}
.y9b{bottom:331.498267pt;}
.yb5{bottom:333.086400pt;}
.y42{bottom:335.281733pt;}
.y158{bottom:336.813333pt;}
.y118{bottom:337.019867pt;}
.y19f{bottom:337.149600pt;}
.yd6{bottom:337.159600pt;}
.y66{bottom:337.162933pt;}
.y15{bottom:340.015760pt;}
.y9a{bottom:345.494933pt;}
.yb4{bottom:347.083067pt;}
.y157{bottom:348.483333pt;}
.y41{bottom:349.278400pt;}
.yd5{bottom:351.156267pt;}
.y65{bottom:351.159600pt;}
.y156{bottom:360.153333pt;}
.yb3{bottom:361.079733pt;}
.y40{bottom:363.278400pt;}
.y117{bottom:365.073067pt;}
.yd4{bottom:365.152933pt;}
.y64{bottom:365.156267pt;}
.y155{bottom:371.823333pt;}
.y99{bottom:373.587067pt;}
.y14{bottom:373.936640pt;}
.y3f{bottom:377.275067pt;}
.y116{bottom:379.069733pt;}
.y63{bottom:379.152933pt;}
.yd3{bottom:379.156267pt;}
.y154{bottom:383.493333pt;}
.y98{bottom:387.583733pt;}
.y115{bottom:393.066400pt;}
.y19e{bottom:393.149600pt;}
.yd2{bottom:393.152933pt;}
.y62{bottom:393.166267pt;}
.y153{bottom:395.163333pt;}
.y97{bottom:401.580400pt;}
.y152{bottom:406.833333pt;}
.y114{bottom:407.087733pt;}
.y19d{bottom:407.149600pt;}
.y61{bottom:407.162933pt;}
.yd1{bottom:407.166267pt;}
.y13{bottom:407.857520pt;}
.y96{bottom:415.577067pt;}
.ycc{bottom:415.673200pt;}
.y151{bottom:418.503333pt;}
.y3e{bottom:419.957733pt;}
.y113{bottom:421.084400pt;}
.y60{bottom:421.159600pt;}
.yd0{bottom:421.162933pt;}
.y95{bottom:429.573733pt;}
.y150{bottom:430.173333pt;}
.ycb{bottom:430.337200pt;}
.y5f{bottom:435.156267pt;}
.ycf{bottom:435.159600pt;}
.y19c{bottom:435.169600pt;}
.y3d{bottom:435.953733pt;}
.y12{bottom:441.778400pt;}
.y14f{bottom:441.843333pt;}
.y94{bottom:443.570400pt;}
.yca{bottom:445.001200pt;}
.y112{bottom:449.090400pt;}
.y5e{bottom:449.152933pt;}
.yce{bottom:449.156267pt;}
.y19b{bottom:449.166267pt;}
.y3c{bottom:451.949733pt;}
.y14e{bottom:453.513333pt;}
.y93{bottom:457.567067pt;}
.yc9{bottom:459.665200pt;}
.y111{bottom:463.087067pt;}
.y5d{bottom:463.152933pt;}
.y19a{bottom:463.162933pt;}
.y14d{bottom:465.183333pt;}
.y3b{bottom:467.945733pt;}
.yc8{bottom:474.329200pt;}
.y11{bottom:475.699280pt;}
.y14c{bottom:476.853333pt;}
.y110{bottom:477.083733pt;}
.ycd{bottom:477.149600pt;}
.y5c{bottom:477.152933pt;}
.y199{bottom:477.159600pt;}
.y3a{bottom:483.981733pt;}
.y92{bottom:485.669200pt;}
.y14b{bottom:488.523333pt;}
.y10f{bottom:491.080400pt;}
.y5b{bottom:491.152933pt;}
.y198{bottom:491.156267pt;}
.y91{bottom:499.665867pt;}
.y39{bottom:499.977733pt;}
.y14a{bottom:500.193333pt;}
.y10e{bottom:505.077067pt;}
.y5a{bottom:505.149600pt;}
.y197{bottom:505.152933pt;}
.y10{bottom:509.620160pt;}
.y149{bottom:511.863333pt;}
.y90{bottom:513.662533pt;}
.y38{bottom:515.973733pt;}
.y10d{bottom:519.073733pt;}
.y196{bottom:519.149600pt;}
.y148{bottom:523.533333pt;}
.y8f{bottom:527.659200pt;}
.yf2{bottom:530.879067pt;}
.y37{bottom:531.969733pt;}
.y10c{bottom:533.070400pt;}
.y195{bottom:533.149600pt;}
.y147{bottom:535.203333pt;}
.y8e{bottom:541.655867pt;}
.yf{bottom:543.541040pt;}
.yf1{bottom:545.543067pt;}
.y146{bottom:546.873333pt;}
.y36{bottom:547.965733pt;}
.y8d{bottom:555.652533pt;}
.y145{bottom:558.543333pt;}
.yf0{bottom:560.207067pt;}
.y194{bottom:561.032933pt;}
.y10b{bottom:561.076400pt;}
.y80{bottom:563.129733pt;}
.y35{bottom:563.961733pt;}
.y26{bottom:564.560000pt;}
.y8c{bottom:569.649200pt;}
.y144{bottom:570.213333pt;}
.y193{bottom:572.702933pt;}
.yef{bottom:574.871067pt;}
.y10a{bottom:575.073067pt;}
.ye{bottom:577.461920pt;}
.y7f{bottom:577.793733pt;}
.y34{bottom:579.957733pt;}
.y143{bottom:581.883333pt;}
.y8b{bottom:583.645867pt;}
.y192{bottom:584.372933pt;}
.y109{bottom:589.069733pt;}
.yee{bottom:589.535067pt;}
.y7e{bottom:592.457733pt;}
.y1d{bottom:593.360000pt;}
.y142{bottom:593.553333pt;}
.y33{bottom:595.953733pt;}
.y191{bottom:596.042933pt;}
.y8a{bottom:597.642533pt;}
.y108{bottom:603.066400pt;}
.yed{bottom:604.199067pt;}
.y141{bottom:605.223333pt;}
.y7d{bottom:607.121733pt;}
.y190{bottom:607.712933pt;}
.yd{bottom:611.382800pt;}
.y89{bottom:611.642533pt;}
.y32{bottom:611.949733pt;}
.y140{bottom:616.893333pt;}
.y107{bottom:617.063067pt;}
.yec{bottom:618.863067pt;}
.y18f{bottom:619.382933pt;}
.y7c{bottom:621.788400pt;}
.y88{bottom:625.642533pt;}
.y31{bottom:627.945733pt;}
.y13f{bottom:628.563333pt;}
.y18e{bottom:631.052933pt;}
.yeb{bottom:633.527067pt;}
.y7b{bottom:636.455067pt;}
.y87{bottom:639.659200pt;}
.y13e{bottom:640.233333pt;}
.y18d{bottom:642.722933pt;}
.y30{bottom:643.941733pt;}
.y106{bottom:645.109600pt;}
.yc{bottom:645.303680pt;}
.yea{bottom:648.191067pt;}
.y7a{bottom:651.119067pt;}
.y13d{bottom:651.903333pt;}
.y86{bottom:653.655867pt;}
.y18c{bottom:654.392933pt;}
.y105{bottom:659.116267pt;}
.ye9{bottom:662.855067pt;}
.y13c{bottom:663.573333pt;}
.y1f{bottom:666.000000pt;}
.y18b{bottom:666.062933pt;}
.y85{bottom:667.652533pt;}
.y57{bottom:672.933333pt;}
.y104{bottom:673.112933pt;}
.y13b{bottom:675.243333pt;}
.ye8{bottom:677.519067pt;}
.y18a{bottom:677.732933pt;}
.y2f{bottom:678.608267pt;}
.yb{bottom:679.224560pt;}
.y84{bottom:681.649200pt;}
.y13a{bottom:686.913333pt;}
.y103{bottom:687.109600pt;}
.y189{bottom:689.402933pt;}
.y56{bottom:691.600000pt;}
.y2e{bottom:694.608267pt;}
.y83{bottom:695.645867pt;}
.y139{bottom:698.583333pt;}
.y188{bottom:701.072933pt;}
.y102{bottom:701.112933pt;}
.y82{bottom:709.642533pt;}
.y138{bottom:710.253333pt;}
.y55{bottom:710.266667pt;}
.y187{bottom:712.742933pt;}
.ya{bottom:713.145440pt;}
.y101{bottom:715.109600pt;}
.y137{bottom:721.923333pt;}
.y81{bottom:723.639200pt;}
.y186{bottom:724.412933pt;}
.y100{bottom:729.106267pt;}
.y2d{bottom:729.258933pt;}
.y136{bottom:733.593333pt;}
.y185{bottom:736.082933pt;}
.y135{bottom:745.263333pt;}
.y9{bottom:747.066320pt;}
.y184{bottom:747.752933pt;}
.y134{bottom:756.933333pt;}
.yff{bottom:757.159600pt;}
.y183{bottom:759.422933pt;}
.y133{bottom:768.600000pt;}
.y182{bottom:771.092933pt;}
.yfe{bottom:771.156267pt;}
.y2c{bottom:771.933600pt;}
.yb2{bottom:775.795067pt;}
.y8{bottom:780.987200pt;}
.y181{bottom:782.762933pt;}
.yfd{bottom:785.152933pt;}
.yb1{bottom:790.459067pt;}
.y180{bottom:794.432933pt;}
.y132{bottom:797.459867pt;}
.yfc{bottom:799.144267pt;}
.y7{bottom:800.036907pt;}
.yb0{bottom:805.125733pt;}
.y17f{bottom:806.102933pt;}
.y131{bottom:811.456533pt;}
.y2b{bottom:814.608267pt;}
.y17e{bottom:817.772933pt;}
.yaf{bottom:819.792400pt;}
.y6{bottom:822.833627pt;}
.y58{bottom:823.475200pt;}
.y130{bottom:825.453200pt;}
.yfb{bottom:827.150267pt;}
.y17d{bottom:829.442933pt;}
.yae{bottom:834.456400pt;}
.y12f{bottom:839.449867pt;}
.y17c{bottom:841.112933pt;}
.yfa{bottom:841.146933pt;}
.y5{bottom:845.630347pt;}
.y17b{bottom:852.782933pt;}
.yf9{bottom:855.143600pt;}
.y17a{bottom:864.452933pt;}
.y12e{bottom:868.303067pt;}
.y4{bottom:868.427067pt;}
.y179{bottom:876.122933pt;}
.y12d{bottom:882.299733pt;}
.yf8{bottom:883.156933pt;}
.y178{bottom:887.792933pt;}
.yf7{bottom:897.153600pt;}
.y177{bottom:899.462933pt;}
.y3{bottom:906.107067pt;}
.y176{bottom:911.132933pt;}
.yf6{bottom:911.150267pt;}
.y12c{bottom:911.162933pt;}
.y175{bottom:922.802933pt;}
.yf5{bottom:925.146933pt;}
.y12b{bottom:925.159600pt;}
.y174{bottom:934.472933pt;}
.y12a{bottom:939.156267pt;}
.y2{bottom:942.261867pt;}
.y173{bottom:946.142933pt;}
.yf4{bottom:953.152933pt;}
.y172{bottom:957.812933pt;}
.y1c{bottom:965.547067pt;}
.yf3{bottom:967.149600pt;}
.y171{bottom:969.482933pt;}
.y1{bottom:972.347067pt;}
.y59{bottom:1013.202667pt;}
.y2a{bottom:1013.446133pt;}
.h16{height:21.193555pt;}
.h24{height:28.520000pt;}
.h8{height:29.000000pt;}
.hc{height:30.687500pt;}
.h18{height:32.605469pt;}
.h1f{height:34.224000pt;}
.h10{height:34.523438pt;}
.h12{height:36.125333pt;}
.h17{height:36.609555pt;}
.hb{height:38.359375pt;}
.h1e{height:38.554933pt;}
.h1d{height:38.565600pt;}
.h11{height:38.600234pt;}
.hd{height:39.318359pt;}
.h1{height:40.031250pt;}
.h20{height:40.574267pt;}
.h23{height:40.609467pt;}
.h1b{height:40.628133pt;}
.h1a{height:40.641467pt;}
.h21{height:40.654800pt;}
.h15{height:40.668133pt;}
.h14{height:40.681467pt;}
.h13{height:40.694800pt;}
.h3{height:40.717500pt;}
.h22{height:40.729467pt;}
.h1c{height:42.195312pt;}
.hf{height:43.067460pt;}
.h2{height:51.842500pt;}
.h5{height:56.546875pt;}
.h19{height:69.046875pt;}
.h4{height:70.026667pt;}
.he{height:99.734375pt;}
.h6{height:101.466667pt;}
.h7{height:198.533333pt;}
.h9{height:1043.149333pt;}
.ha{height:1043.333333pt;}
.h0{height:1122.666667pt;}
.w4{width:511.520000pt;}
.w2{width:516.066667pt;}
.w3{width:518.240000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w5{width:793.701333pt;}
.w6{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.333333pt;}
.x9{left:54.392400pt;}
.xe{left:66.263067pt;}
.xd{left:85.111067pt;}
.x3{left:94.560000pt;}
.xf{left:125.291333pt;}
.x5{left:166.120000pt;}
.x7{left:167.560000pt;}
.x2{left:181.525600pt;}
.xb{left:207.516800pt;}
.x12{left:212.437467pt;}
.xc{left:223.517867pt;}
.x11{left:226.041067pt;}
.x13{left:266.976400pt;}
.x4{left:431.840000pt;}
.xa{left:519.632533pt;}
.x1{left:660.400000pt;}
.x10{left:732.628800pt;}
.x8{left:733.540267pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  