
    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_aca3a8f7d46358a1350074ea.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916016;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_a3e1691c4b98b3279e3b427a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b6002ced194f02e616a3bbbf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.869629;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_a29e8ff544f7966162ee7fce.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_eaef276e0b861fc3346098dd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_aef29b48d132de9a968f9d06.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.915039;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_5b8305ab0bb4ba3ca2601cbb.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_49b316bfa5bb98ac7832a737.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.208008;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_91898ef207edf9ab81979903.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.926270;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_a0004e764af94e032c687572.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.931641;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_d21d132d52be46076878e7bb.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v10{vertical-align:-28.800000px;}
.v4{vertical-align:-23.760000px;}
.vd{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.vf{vertical-align:-12.240000px;}
.v8{vertical-align:-10.800000px;}
.vc{vertical-align:-7.200000px;}
.v5{vertical-align:-5.742720px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:2.862000px;}
.v6{vertical-align:5.760000px;}
.v9{vertical-align:10.800000px;}
.v1{vertical-align:15.120000px;}
.v2{vertical-align:23.760000px;}
.va{vertical-align:29.520000px;}
.v7{vertical-align:36.000000px;}
.ve{vertical-align:39.582000px;}
.ls15{letter-spacing:-4.428000px;}
.ls16{letter-spacing:-3.564000px;}
.ls7d{letter-spacing:-1.192320px;}
.ls39{letter-spacing:-0.927360px;}
.ls29{letter-spacing:-0.861120px;}
.ls22{letter-spacing:-0.794880px;}
.ls23{letter-spacing:-0.728640px;}
.ls3c{letter-spacing:-0.662400px;}
.ls27{letter-spacing:-0.596160px;}
.ls58{letter-spacing:-0.544320px;}
.ls3b{letter-spacing:-0.529920px;}
.ls26{letter-spacing:-0.463680px;}
.ls3a{letter-spacing:-0.397440px;}
.ls1c{letter-spacing:-0.358560px;}
.ls5c{letter-spacing:-0.334080px;}
.ls72{letter-spacing:-0.331200px;}
.ls5f{letter-spacing:-0.324000px;}
.ls11{letter-spacing:-0.298080px;}
.ls5b{letter-spacing:-0.292320px;}
.ls25{letter-spacing:-0.287280px;}
.ls19{letter-spacing:-0.270000px;}
.ls20{letter-spacing:-0.264960px;}
.ls14{letter-spacing:-0.255600px;}
.ls1a{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.204480px;}
.ls17{letter-spacing:-0.198720px;}
.ls79{letter-spacing:-0.162000px;}
.ls56{letter-spacing:-0.155520px;}
.ls28{letter-spacing:-0.132480px;}
.ls70{letter-spacing:-0.108000px;}
.ls21{letter-spacing:-0.066240px;}
.ls1e{letter-spacing:-0.059760px;}
.ls7b{letter-spacing:-0.054000px;}
.ls57{letter-spacing:-0.038880px;}
.ls10{letter-spacing:0.000000px;}
.ls82{letter-spacing:0.032400px;}
.ls75{letter-spacing:0.036000px;}
.ls7c{letter-spacing:0.037800px;}
.ls5{letter-spacing:0.054000px;}
.ls18{letter-spacing:0.066240px;}
.ls7f{letter-spacing:0.105984px;}
.ls73{letter-spacing:0.108000px;}
.ls5a{letter-spacing:0.125280px;}
.ls3{letter-spacing:0.132480px;}
.ls4{letter-spacing:0.155520px;}
.ls81{letter-spacing:0.156600px;}
.ls6{letter-spacing:0.179280px;}
.ls54{letter-spacing:0.185472px;}
.ls80{letter-spacing:0.191520px;}
.ls71{letter-spacing:0.198720px;}
.ls41{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.264960px;}
.ls59{letter-spacing:0.270000px;}
.ls4a{letter-spacing:0.285120px;}
.ls1f{letter-spacing:0.287280px;}
.ls62{letter-spacing:0.289440px;}
.ls63{letter-spacing:0.292320px;}
.ls4b{letter-spacing:0.296640px;}
.ls1d{letter-spacing:0.298800px;}
.ls51{letter-spacing:0.302400px;}
.ls1b{letter-spacing:0.324000px;}
.ls24{letter-spacing:0.331200px;}
.ls1{letter-spacing:0.337392px;}
.ls13{letter-spacing:0.357840px;}
.ls4c{letter-spacing:0.397440px;}
.ls7a{letter-spacing:0.756000px;}
.ls60{letter-spacing:0.810000px;}
.ls5e{letter-spacing:0.813312px;}
.lse{letter-spacing:0.861120px;}
.ls7{letter-spacing:0.896400px;}
.ls43{letter-spacing:1.296000px;}
.ls77{letter-spacing:1.441800px;}
.ls34{letter-spacing:1.583136px;}
.lsb{letter-spacing:1.589760px;}
.ls6e{letter-spacing:1.974240px;}
.lsa{letter-spacing:2.318400px;}
.ls68{letter-spacing:2.694240px;}
.ls46{letter-spacing:3.042000px;}
.ls5d{letter-spacing:3.047040px;}
.ls4f{letter-spacing:3.372480px;}
.ls76{letter-spacing:3.618000px;}
.ls33{letter-spacing:3.775680px;}
.ls2a{letter-spacing:4.438080px;}
.ls83{letter-spacing:5.076000px;}
.ls9{letter-spacing:5.166720px;}
.ls74{letter-spacing:5.796000px;}
.ls8{letter-spacing:5.895360px;}
.ls3e{letter-spacing:5.994000px;}
.ls3f{letter-spacing:6.102000px;}
.ls2d{letter-spacing:6.624000px;}
.ls61{letter-spacing:8.081280px;}
.ls35{letter-spacing:9.538560px;}
.ls32{letter-spacing:10.200960px;}
.ls78{letter-spacing:10.929600px;}
.ls6c{letter-spacing:11.178000px;}
.ls47{letter-spacing:11.502000px;}
.lsf{letter-spacing:11.658240px;}
.ls40{letter-spacing:11.880000px;}
.ls42{letter-spacing:12.204000px;}
.ls66{letter-spacing:12.222000px;}
.ls48{letter-spacing:13.662000px;}
.ls65{letter-spacing:14.208480px;}
.ls38{letter-spacing:14.572800px;}
.ls6b{letter-spacing:14.928480px;}
.ls67{letter-spacing:14.976000px;}
.ls3d{letter-spacing:15.120000px;}
.ls2f{letter-spacing:15.301440px;}
.ls52{letter-spacing:15.397920px;}
.ls4e{letter-spacing:15.452640px;}
.ls2e{letter-spacing:15.963840px;}
.ls45{letter-spacing:16.416000px;}
.ls2c{letter-spacing:17.414496px;}
.ls2b{letter-spacing:17.421120px;}
.ls4d{letter-spacing:17.442000px;}
.ls64{letter-spacing:17.612640px;}
.ls30{letter-spacing:18.149760px;}
.ls6a{letter-spacing:18.492480px;}
.ls7e{letter-spacing:18.878400px;}
.ls2{letter-spacing:19.512000px;}
.ls31{letter-spacing:21.726720px;}
.ls36{letter-spacing:22.455360px;}
.ls37{letter-spacing:24.641280px;}
.lsc{letter-spacing:59.351040px;}
.ls55{letter-spacing:69.419520px;}
.ls6d{letter-spacing:75.456000px;}
.ls0{letter-spacing:125.568000px;}
.ls6f{letter-spacing:667.476000px;}
.ls69{letter-spacing:720.756000px;}
.ls44{letter-spacing:760.392000px;}
.ls49{letter-spacing:812.916000px;}
.ls53{letter-spacing:858.294000px;}
.ls50{letter-spacing:1054.836000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(47,84,150),0 0.015em rgb(47,84,150),0.015em 0 rgb(47,84,150),0 -0.015em  rgb(47,84,150);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(47,84,150);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13{word-spacing:-66.240000px;}
.ws8c{word-spacing:-54.270000px;}
.ws85{word-spacing:-54.000000px;}
.ws96{word-spacing:-42.498000px;}
.ws82{word-spacing:-42.120000px;}
.ws8e{word-spacing:-41.796000px;}
.wsad{word-spacing:-41.778000px;}
.wsab{word-spacing:-41.688000px;}
.ws89{word-spacing:-40.608000px;}
.ws83{word-spacing:-39.366000px;}
.ws86{word-spacing:-38.880000px;}
.ws88{word-spacing:-38.841120px;}
.ws87{word-spacing:-38.724480px;}
.ws8a{word-spacing:-38.335680px;}
.ws81{word-spacing:-34.722000px;}
.wsb{word-spacing:-21.929040px;}
.wsd6{word-spacing:-21.833280px;}
.ws12{word-spacing:-21.354480px;}
.ws92{word-spacing:-20.694528px;}
.ws11{word-spacing:-15.301440px;}
.ws15{word-spacing:-15.235200px;}
.ws14{word-spacing:-15.102720px;}
.ws56{word-spacing:-15.036480px;}
.wsf{word-spacing:-14.970240px;}
.ws10{word-spacing:-14.904000px;}
.ws57{word-spacing:-14.837760px;}
.wsc{word-spacing:-14.771520px;}
.wsd{word-spacing:-14.705280px;}
.ws53{word-spacing:-14.572800px;}
.ws16{word-spacing:-14.506560px;}
.ws54{word-spacing:-14.440320px;}
.wsaa{word-spacing:-14.374080px;}
.wsa7{word-spacing:-14.307840px;}
.wse{word-spacing:-14.241600px;}
.ws55{word-spacing:-14.175360px;}
.wsa6{word-spacing:-14.109120px;}
.ws52{word-spacing:-14.042880px;}
.wsa{word-spacing:-13.446000px;}
.ws8{word-spacing:-12.528000px;}
.wsbb{word-spacing:-12.420000px;}
.wsac{word-spacing:-12.312000px;}
.wsba{word-spacing:-12.258000px;}
.ws9{word-spacing:-12.204000px;}
.wsb9{word-spacing:-12.042000px;}
.ws7{word-spacing:-11.988000px;}
.wsbd{word-spacing:-11.934000px;}
.ws3{word-spacing:-11.910960px;}
.ws84{word-spacing:-11.880000px;}
.ws0{word-spacing:-11.553120px;}
.ws2{word-spacing:-11.348640px;}
.ws4{word-spacing:-11.297520px;}
.ws8f{word-spacing:-9.563040px;}
.ws5{word-spacing:-9.437760px;}
.ws90{word-spacing:-9.145440px;}
.ws91{word-spacing:-9.103680px;}
.ws94{word-spacing:-8.553600px;}
.wsbc{word-spacing:-8.244000px;}
.ws6{word-spacing:-8.136000px;}
.ws1{word-spacing:-7.187040px;}
.ws66{word-spacing:-4.106880px;}
.ws67{word-spacing:-3.576960px;}
.wsa1{word-spacing:-3.378240px;}
.wse2{word-spacing:-2.916000px;}
.wse3{word-spacing:-2.862000px;}
.ws9c{word-spacing:-2.848320px;}
.wscd{word-spacing:-2.782080px;}
.ws2f{word-spacing:-2.649600px;}
.wse5{word-spacing:-2.646000px;}
.wse4{word-spacing:-2.592000px;}
.ws2e{word-spacing:-2.450880px;}
.ws78{word-spacing:-2.119680px;}
.ws5e{word-spacing:-1.920960px;}
.ws77{word-spacing:-1.788480px;}
.ws58{word-spacing:-1.722240px;}
.wsdb{word-spacing:-1.620000px;}
.ws5d{word-spacing:-1.391040px;}
.wsa8{word-spacing:-1.324800px;}
.ws4f{word-spacing:-1.192320px;}
.wsda{word-spacing:-1.188000px;}
.wsd9{word-spacing:-1.134000px;}
.ws5f{word-spacing:-1.059840px;}
.wsa5{word-spacing:-0.993600px;}
.ws4d{word-spacing:-0.794880px;}
.wsc2{word-spacing:-0.756000px;}
.ws6e{word-spacing:-0.728640px;}
.wsd4{word-spacing:-0.594000px;}
.wsd5{word-spacing:-0.540000px;}
.ws39{word-spacing:-0.529920px;}
.wsdd{word-spacing:-0.432000px;}
.wsb6{word-spacing:-0.397440px;}
.ws95{word-spacing:-0.378000px;}
.ws3a{word-spacing:-0.331200px;}
.ws23{word-spacing:-0.270000px;}
.ws72{word-spacing:-0.264960px;}
.ws97{word-spacing:-0.216000px;}
.wsb1{word-spacing:-0.198720px;}
.wscb{word-spacing:-0.162000px;}
.ws59{word-spacing:-0.132480px;}
.ws25{word-spacing:-0.119520px;}
.ws1e{word-spacing:-0.066240px;}
.ws8d{word-spacing:-0.054000px;}
.ws8b{word-spacing:-0.036000px;}
.ws17{word-spacing:0.000000px;}
.ws20{word-spacing:0.054000px;}
.ws33{word-spacing:0.066240px;}
.wsbf{word-spacing:0.108000px;}
.ws46{word-spacing:0.132480px;}
.ws18{word-spacing:0.153360px;}
.wsb0{word-spacing:0.162000px;}
.ws3b{word-spacing:0.198720px;}
.ws19{word-spacing:0.204480px;}
.wsbe{word-spacing:0.216000px;}
.ws26{word-spacing:0.239040px;}
.ws9e{word-spacing:0.250560px;}
.ws44{word-spacing:0.264960px;}
.ws22{word-spacing:0.270000px;}
.wsa4{word-spacing:0.287280px;}
.wsa9{word-spacing:0.324000px;}
.ws1d{word-spacing:0.331200px;}
.ws9d{word-spacing:0.334080px;}
.wsc3{word-spacing:0.378000px;}
.ws38{word-spacing:0.397440px;}
.wsb2{word-spacing:0.463680px;}
.ws63{word-spacing:0.529920px;}
.ws6f{word-spacing:0.596160px;}
.ws6d{word-spacing:0.662400px;}
.ws3c{word-spacing:0.728640px;}
.ws2b{word-spacing:0.794880px;}
.ws4e{word-spacing:0.861120px;}
.ws1c{word-spacing:0.864000px;}
.ws43{word-spacing:0.927360px;}
.wsae{word-spacing:0.972000px;}
.wsaf{word-spacing:1.026000px;}
.ws64{word-spacing:1.059840px;}
.ws49{word-spacing:1.126080px;}
.wsc8{word-spacing:1.242000px;}
.ws24{word-spacing:1.254960px;}
.ws45{word-spacing:1.324800px;}
.ws35{word-spacing:1.457280px;}
.wsc7{word-spacing:1.512000px;}
.wsc6{word-spacing:1.566000px;}
.ws32{word-spacing:1.656000px;}
.wsc9{word-spacing:1.674000px;}
.wsca{word-spacing:1.728000px;}
.ws36{word-spacing:1.854720px;}
.ws34{word-spacing:2.185920px;}
.ws7f{word-spacing:2.384640px;}
.ws93{word-spacing:2.484000px;}
.ws80{word-spacing:2.517120px;}
.ws27{word-spacing:2.583360px;}
.wsa3{word-spacing:2.914560px;}
.wsb7{word-spacing:3.113280px;}
.ws7e{word-spacing:3.245760px;}
.wsa2{word-spacing:3.312000px;}
.wsc5{word-spacing:3.726000px;}
.wsdc{word-spacing:3.834000px;}
.ws76{word-spacing:3.841920px;}
.wsc4{word-spacing:3.888000px;}
.ws6c{word-spacing:4.040640px;}
.ws6a{word-spacing:4.173120px;}
.ws4b{word-spacing:4.305600px;}
.wse7{word-spacing:4.320000px;}
.wsb5{word-spacing:4.438080px;}
.ws9f{word-spacing:4.504320px;}
.wsb4{word-spacing:4.636800px;}
.wse6{word-spacing:4.644000px;}
.ws40{word-spacing:4.703040px;}
.ws65{word-spacing:4.835520px;}
.wsd2{word-spacing:5.022000px;}
.ws4c{word-spacing:5.034240px;}
.ws4a{word-spacing:5.232960px;}
.wsd1{word-spacing:5.292000px;}
.wsd3{word-spacing:5.346000px;}
.ws2c{word-spacing:5.431680px;}
.ws98{word-spacing:5.762880px;}
.wsc1{word-spacing:5.778000px;}
.ws2d{word-spacing:5.961600px;}
.ws21{word-spacing:5.994000px;}
.ws99{word-spacing:6.027840px;}
.ws9a{word-spacing:6.094080px;}
.wsc0{word-spacing:6.102000px;}
.ws5c{word-spacing:6.359040px;}
.ws37{word-spacing:6.690240px;}
.wsa0{word-spacing:6.888960px;}
.wsde{word-spacing:7.182000px;}
.ws3d{word-spacing:7.418880px;}
.wsdf{word-spacing:7.452000px;}
.ws1f{word-spacing:7.506000px;}
.ws7d{word-spacing:7.617600px;}
.wsb3{word-spacing:8.147520px;}
.ws7c{word-spacing:8.346240px;}
.ws47{word-spacing:8.677440px;}
.ws48{word-spacing:8.876160px;}
.ws41{word-spacing:9.406080px;}
.ws3f{word-spacing:9.604800px;}
.wsce{word-spacing:9.803520px;}
.wsd0{word-spacing:10.068480px;}
.ws42{word-spacing:10.267200px;}
.ws70{word-spacing:10.465920px;}
.wscf{word-spacing:10.730880px;}
.ws6b{word-spacing:10.995840px;}
.wscc{word-spacing:11.194560px;}
.ws50{word-spacing:11.724480px;}
.ws51{word-spacing:11.923200px;}
.ws9b{word-spacing:12.254400px;}
.ws3e{word-spacing:12.453120px;}
.ws7a{word-spacing:14.639040px;}
.ws2a{word-spacing:15.168960px;}
.ws7b{word-spacing:15.367680px;}
.ws79{word-spacing:15.566400px;}
.ws29{word-spacing:16.030080px;}
.ws28{word-spacing:16.228800px;}
.ws5a{word-spacing:16.758720px;}
.ws5b{word-spacing:17.686080px;}
.ws60{word-spacing:17.818560px;}
.ws62{word-spacing:18.017280px;}
.ws61{word-spacing:18.414720px;}
.wsb8{word-spacing:18.944640px;}
.wsd8{word-spacing:19.143360px;}
.wsd7{word-spacing:19.342080px;}
.ws31{word-spacing:19.673280px;}
.ws30{word-spacing:20.401920px;}
.ws68{word-spacing:21.064320px;}
.ws73{word-spacing:21.594240px;}
.ws69{word-spacing:21.991680px;}
.ws74{word-spacing:22.322880px;}
.ws1b{word-spacing:22.356000px;}
.ws71{word-spacing:22.720320px;}
.ws1a{word-spacing:23.976000px;}
.ws75{word-spacing:24.508800px;}
.wse1{word-spacing:141.156000px;}
.wse0{word-spacing:141.372000px;}
._14{margin-left:-18.441360px;}
._3{margin-left:-8.510400px;}
._10{margin-left:-3.575520px;}
._1{margin-left:-2.390400px;}
._2{margin-left:-1.375200px;}
._0{width:1.015200px;}
._4{width:2.185200px;}
._f{width:3.330720px;}
._7{width:4.636800px;}
._d{width:6.426720px;}
._5{width:7.551360px;}
._a{width:10.092960px;}
._6{width:11.158560px;}
._11{width:12.593520px;}
._e{width:13.662000px;}
._8{width:16.957440px;}
._9{width:18.321120px;}
._b{width:22.852800px;}
._c{width:24.399360px;}
._12{width:291.384000px;}
._13{width:320.868000px;}
._15{width:848.998080px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(47,84,150);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs2{font-size:33.120000px;}
.fs7{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs1{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yc1{bottom:1.980000px;}
.yb4{bottom:2.160000px;}
.yd1{bottom:3.600000px;}
.yb8{bottom:3.780000px;}
.ycd{bottom:23.040000px;}
.y62{bottom:35.280000px;}
.ybb{bottom:38.880000px;}
.yae{bottom:39.060000px;}
.y60{bottom:43.020000px;}
.y66{bottom:43.200000px;}
.y72{bottom:43.740000px;}
.ybd{bottom:44.100000px;}
.yb0{bottom:44.280000px;}
.y2{bottom:56.880000px;}
.yfd{bottom:112.315500px;}
.y132{bottom:122.220000px;}
.yfc{bottom:128.884500px;}
.y91{bottom:130.178880px;}
.y30{bottom:132.671520px;}
.y131{bottom:138.595500px;}
.yfb{bottom:145.260000px;}
.ye7{bottom:145.329840px;}
.y90{bottom:150.332400px;}
.y2f{bottom:152.659440px;}
.y5e{bottom:153.546480px;}
.y130{bottom:155.160000px;}
.yfa{bottom:158.220000px;}
.ye6{bottom:165.483360px;}
.y8f{bottom:170.485920px;}
.y12f{bottom:171.540000px;}
.y2e{bottom:172.812960px;}
.y5d{bottom:173.758320px;}
.yca{bottom:176.772960px;}
.ye5{bottom:185.636880px;}
.y12e{bottom:188.104500px;}
.y8e{bottom:190.639440px;}
.y2d{bottom:192.966480px;}
.y5c{bottom:193.911840px;}
.yc9{bottom:196.926480px;}
.y12d{bottom:204.480000px;}
.ye4{bottom:205.790400px;}
.y8d{bottom:210.792960px;}
.y2c{bottom:213.139440px;}
.y5b{bottom:214.065360px;}
.yc8{bottom:217.092960px;}
.y12c{bottom:221.044500px;}
.ye3{bottom:225.943920px;}
.y8c{bottom:230.946480px;}
.y2b{bottom:233.292960px;}
.yc7{bottom:237.246480px;}
.y12b{bottom:237.420000px;}
.ye2{bottom:245.931840px;}
.y8b{bottom:251.100000px;}
.y5a{bottom:252.037440px;}
.y2a{bottom:253.446480px;}
.y12a{bottom:253.975500px;}
.yc6{bottom:257.406480px;}
.ye1{bottom:266.085360px;}
.y129{bottom:270.540000px;}
.y59{bottom:272.190960px;}
.y8a{bottom:273.060000px;}
.y29{bottom:273.606480px;}
.yc5{bottom:277.566480px;}
.ye0{bottom:286.238880px;}
.y128{bottom:286.915500px;}
.y58{bottom:292.344480px;}
.y28{bottom:293.766480px;}
.yc4{bottom:297.720000px;}
.y127{bottom:303.480000px;}
.ydf{bottom:306.392400px;}
.yba{bottom:313.200000px;}
.y27{bottom:313.944480px;}
.yc0{bottom:317.880000px;}
.y89{bottom:318.439440px;}
.y126{bottom:319.860000px;}
.ybf{bottom:324.720000px;}
.yde{bottom:326.545920px;}
.y57{bottom:330.498720px;}
.yc2{bottom:332.820000px;}
.y26{bottom:334.098000px;}
.y125{bottom:336.424500px;}
.y88{bottom:338.592960px;}
.yb9{bottom:341.820000px;}
.ydd{bottom:346.699440px;}
.yc3{bottom:347.036400px;}
.ybc{bottom:348.840000px;}
.ybe{bottom:349.020000px;}
.y124{bottom:352.800000px;}
.y25{bottom:354.085920px;}
.y87{bottom:358.746480px;}
.yb7{bottom:365.220000px;}
.ydc{bottom:366.852960px;}
.y56{bottom:368.652960px;}
.y123{bottom:369.355500px;}
.y24{bottom:374.239440px;}
.y86{bottom:378.900000px;}
.yad{bottom:381.780000px;}
.y122{bottom:385.731000px;}
.yb3{bottom:386.640000px;}
.ydb{bottom:387.006480px;}
.y55{bottom:388.806480px;}
.yb2{bottom:393.480000px;}
.y23{bottom:394.392960px;}
.y85{bottom:401.040000px;}
.yb5{bottom:401.580000px;}
.y121{bottom:402.295500px;}
.yda{bottom:407.160000px;}
.y54{bottom:408.971520px;}
.yac{bottom:410.580000px;}
.y22{bottom:414.546480px;}
.yb6{bottom:415.801440px;}
.yaf{bottom:417.600000px;}
.yb1{bottom:417.780000px;}
.y120{bottom:418.860000px;}
.y53{bottom:429.125040px;}
.y21{bottom:434.700000px;}
.y11f{bottom:435.240000px;}
.yab{bottom:438.665040px;}
.yd9{bottom:441.175500px;}
.y9b{bottom:443.340000px;}
.y84{bottom:446.465520px;}
.y52{bottom:449.278560px;}
.y11e{bottom:451.804500px;}
.y9a{bottom:456.160320px;}
.y20{bottom:456.840000px;}
.yd8{bottom:457.735500px;}
.yaa{bottom:458.818560px;}
.y83{bottom:466.619040px;}
.y11d{bottom:468.180000px;}
.y51{bottom:469.432080px;}
.yd7{bottom:474.300000px;}
.ya9{bottom:478.806480px;}
.yf9{bottom:480.604500px;}
.y11c{bottom:484.744500px;}
.y82{bottom:486.772560px;}
.y50{bottom:489.420000px;}
.yd6{bottom:491.573520px;}
.yf8{bottom:496.980000px;}
.ya8{bottom:498.960000px;}
.y11b{bottom:501.120000px;}
.y1f{bottom:502.187760px;}
.y81{bottom:506.760480px;}
.yd5{bottom:507.239280px;}
.y4f{bottom:511.560000px;}
.yf7{bottom:513.544500px;}
.y11a{bottom:517.680000px;}
.ya7{bottom:519.126480px;}
.y1e{bottom:522.175680px;}
.y80{bottom:526.914000px;}
.y119{bottom:534.055500px;}
.ya6{bottom:539.286480px;}
.yf6{bottom:541.260000px;}
.y1d{bottom:543.235680px;}
.y7f{bottom:547.067520px;}
.y118{bottom:550.620000px;}
.y4e{bottom:556.996170px;}
.ya5{bottom:559.464480px;}
.y1c{bottom:564.300000px;}
.y117{bottom:567.184500px;}
.y7e{bottom:567.221040px;}
.y4d{bottom:577.149690px;}
.ya4{bottom:579.618000px;}
.y116{bottom:583.560000px;}
.y1b{bottom:587.340000px;}
.y7d{bottom:587.374560px;}
.y4c{bottom:597.303210px;}
.ya3{bottom:599.771520px;}
.y115{bottom:600.124500px;}
.y7c{bottom:607.528080px;}
.y114{bottom:616.500000px;}
.y4b{bottom:617.456730px;}
.ya2{bottom:619.925040px;}
.y1a{bottom:632.737440px;}
.y113{bottom:635.940000px;}
.y4a{bottom:637.610250px;}
.ya1{bottom:640.078560px;}
.y7b{bottom:641.194560px;}
.y19{bottom:652.890960px;}
.y49{bottom:657.763770px;}
.ya0{bottom:660.066480px;}
.y7a{bottom:662.970960px;}
.y18{bottom:672.878880px;}
.y48{bottom:677.917290px;}
.y9f{bottom:680.220000px;}
.y112{bottom:681.300000px;}
.y79{bottom:683.124480px;}
.y17{bottom:693.032400px;}
.y47{bottom:697.905210px;}
.y111{bottom:701.466480px;}
.y16{bottom:713.185920px;}
.y9e{bottom:714.415500px;}
.y46{bottom:718.058730px;}
.y78{bottom:721.278720px;}
.y110{bottom:721.620000px;}
.y9d{bottom:730.980000px;}
.y15{bottom:733.339440px;}
.y45{bottom:738.212250px;}
.y10f{bottom:743.580000px;}
.y9c{bottom:743.940000px;}
.y14{bottom:753.492960px;}
.y44{bottom:758.365770px;}
.y77{bottom:759.432960px;}
.y13{bottom:773.646480px;}
.y43{bottom:778.519290px;}
.y76{bottom:779.586480px;}
.y10e{bottom:788.946480px;}
.y12{bottom:793.800000px;}
.y42{bottom:798.672810px;}
.y75{bottom:799.740000px;}
.y10d{bottom:809.128080px;}
.y71{bottom:815.220000px;}
.y41{bottom:818.826330px;}
.y99{bottom:818.857440px;}
.y10c{bottom:830.192400px;}
.y11{bottom:833.940000px;}
.y98{bottom:839.010960px;}
.y40{bottom:839.048400px;}
.y74{bottom:839.160000px;}
.y70{bottom:848.160000px;}
.y10b{bottom:851.256720px;}
.y73{bottom:856.260000px;}
.yf5{bottom:856.490400px;}
.y97{bottom:859.164480px;}
.y3f{bottom:859.201920px;}
.y10a{bottom:871.410240px;}
.y6f{bottom:874.266480px;}
.yf4{bottom:876.643920px;}
.y10{bottom:878.578740px;}
.y96{bottom:879.152400px;}
.y3e{bottom:879.189840px;}
.y109{bottom:892.292400px;}
.y6e{bottom:894.420000px;}
.yf3{bottom:896.797440px;}
.yf{bottom:896.940000px;}
.y95{bottom:899.305920px;}
.y3d{bottom:899.343360px;}
.y108{bottom:912.445920px;}
.ye{bottom:915.840000px;}
.yf2{bottom:916.950960px;}
.y94{bottom:919.459440px;}
.y3c{bottom:919.496880px;}
.y107{bottom:932.599440px;}
.yd{bottom:934.915500px;}
.yf1{bottom:937.104480px;}
.y93{bottom:939.612960px;}
.y3b{bottom:939.650400px;}
.y6d{bottom:940.320000px;}
.yc{bottom:951.480000px;}
.y106{bottom:952.752960px;}
.yf0{bottom:957.258000px;}
.y92{bottom:959.766480px;}
.y3a{bottom:959.803920px;}
.yb{bottom:968.044500px;}
.y6c{bottom:968.946480px;}
.y105{bottom:972.906480px;}
.yef{bottom:977.411520px;}
.y39{bottom:979.957440px;}
.y6b{bottom:989.100000px;}
.ya{bottom:991.440000px;}
.y104{bottom:993.066480px;}
.yee{bottom:997.399440px;}
.y38{bottom:1000.110960px;}
.y9{bottom:1004.580000px;}
.y6a{bottom:1009.252080px;}
.y103{bottom:1013.231520px;}
.yed{bottom:1017.552960px;}
.y37{bottom:1020.264480px;}
.y8{bottom:1021.144500px;}
.yd4{bottom:1022.040000px;}
.y68{bottom:1029.240000px;}
.y69{bottom:1032.300000px;}
.y102{bottom:1033.385040px;}
.yec{bottom:1037.706480px;}
.yd3{bottom:1038.240000px;}
.y36{bottom:1040.418000px;}
.y7{bottom:1041.300000px;}
.y65{bottom:1047.600000px;}
.y101{bottom:1053.538560px;}
.yd2{bottom:1054.620000px;}
.y6{bottom:1054.986480px;}
.yeb{bottom:1057.860000px;}
.y35{bottom:1060.571520px;}
.yd0{bottom:1071.180000px;}
.y67{bottom:1071.540000px;}
.y100{bottom:1073.692080px;}
.yea{bottom:1074.060000px;}
.y5{bottom:1075.140000px;}
.y64{bottom:1080.540000px;}
.y34{bottom:1080.559440px;}
.ycc{bottom:1088.460000px;}
.ye9{bottom:1090.620000px;}
.yff{bottom:1093.680000px;}
.ycf{bottom:1095.120000px;}
.y4{bottom:1097.820000px;}
.y33{bottom:1100.712960px;}
.y5f{bottom:1102.140000px;}
.ye8{bottom:1107.900000px;}
.yce{bottom:1110.060000px;}
.y32{bottom:1120.866480px;}
.y61{bottom:1125.900000px;}
.y3{bottom:1130.760000px;}
.yfe{bottom:1133.820000px;}
.y63{bottom:1134.900000px;}
.y31{bottom:1141.020000px;}
.ycb{bottom:1143.720000px;}
.y1{bottom:1191.240000px;}
.h22{height:16.380000px;}
.h1d{height:16.560000px;}
.h7{height:26.560547px;}
.h8{height:30.810234px;}
.h17{height:34.589531px;}
.h21{height:35.820000px;}
.h9{height:37.335938px;}
.ha{height:37.353938px;}
.h18{height:38.100586px;}
.h23{height:39.788086px;}
.h3{height:39.840820px;}
.h25{height:39.858820px;}
.h26{height:41.662547px;}
.h24{height:41.680547px;}
.hb{height:44.090508px;}
.hc{height:44.095548px;}
.h11{height:48.041016px;}
.hf{height:48.806719px;}
.h6{height:48.871406px;}
.he{height:48.888686px;}
.h15{height:48.903086px;}
.h1e{height:52.020000px;}
.h1b{height:52.200000px;}
.h5{height:52.633125px;}
.h2{height:53.121094px;}
.h16{height:54.358500px;}
.h10{height:54.360000px;}
.h19{height:54.420474px;}
.h1a{height:54.476634px;}
.h20{height:54.518394px;}
.h13{height:54.540000px;}
.h1f{height:54.548634px;}
.h14{height:58.930312px;}
.hd{height:65.460938px;}
.h4{height:73.828125px;}
.h12{height:84.041016px;}
.h1c{height:87.623016px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:2.340000px;}
.w7{width:2.881500px;}
.wc{width:73.980000px;}
.w12{width:95.398500px;}
.we{width:95.580000px;}
.w13{width:106.380000px;}
.wf{width:111.598500px;}
.w10{width:115.560000px;}
.w14{width:116.821500px;}
.wd{width:127.621500px;}
.w11{width:127.800000px;}
.wb{width:137.700000px;}
.w3{width:243.000000px;}
.w5{width:381.240000px;}
.w6{width:433.440000px;}
.w8{width:457.020000px;}
.wa{width:467.820000px;}
.w2{width:626.220000px;}
.w9{width:629.460000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.xa{left:-1.620000px;}
.x0{left:0.000000px;}
.x39{left:8.100000px;}
.x41{left:18.000000px;}
.x3e{left:21.060000px;}
.x47{left:27.720000px;}
.x45{left:29.700000px;}
.x43{left:31.500000px;}
.x44{left:36.540000px;}
.x49{left:42.660000px;}
.x4a{left:47.880000px;}
.x2a{left:65.700000px;}
.x28{left:68.940000px;}
.x3{left:106.380000px;}
.x5{left:133.380000px;}
.x38{left:157.320000px;}
.x4{left:160.380000px;}
.x6{left:179.640000px;}
.x2c{left:181.080000px;}
.x2d{left:189.900000px;}
.x1b{left:195.840000px;}
.x32{left:199.980000px;}
.x1d{left:204.660000px;}
.x1{left:219.420000px;}
.x22{left:233.280000px;}
.x2f{left:237.960000px;}
.x8{left:239.040000px;}
.x2b{left:243.360000px;}
.x1f{left:252.540000px;}
.x35{left:261.360000px;}
.x1a{left:264.240000px;}
.x24{left:271.080000px;}
.x30{left:275.580000px;}
.x3a{left:284.940000px;}
.x7{left:287.460000px;}
.x20{left:295.200000px;}
.x31{left:297.720000px;}
.xd{left:299.340000px;}
.x1c{left:309.600000px;}
.x13{left:316.080000px;}
.x21{left:331.020000px;}
.xe{left:338.400000px;}
.x33{left:341.820000px;}
.x2e{left:342.900000px;}
.x9{left:349.200000px;}
.xb{left:351.360000px;}
.xc{left:355.320000px;}
.x1e{left:357.480000px;}
.x34{left:363.600000px;}
.x16{left:371.700000px;}
.x23{left:373.320000px;}
.x25{left:377.820000px;}
.x3b{left:380.520000px;}
.x36{left:383.400000px;}
.x26{left:410.218560px;}
.x14{left:414.180000px;}
.x10{left:428.580000px;}
.x37{left:430.918560px;}
.xf{left:432.720000px;}
.x11{left:435.960000px;}
.x12{left:440.640000px;}
.x2{left:446.400000px;}
.x15{left:454.140000px;}
.x48{left:488.880000px;}
.x3c{left:492.120000px;}
.x3f{left:500.220000px;}
.x3d{left:508.680000px;}
.x17{left:520.740000px;}
.x27{left:574.200000px;}
.x40{left:607.680000px;}
.x42{left:634.680000px;}
.x18{left:707.969520px;}
.x29{left:711.900000px;}
.x19{left:744.480000px;}
.x46{left:786.416400px;}
@media print{
.v10{vertical-align:-25.600000pt;}
.v4{vertical-align:-21.120000pt;}
.vd{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.vf{vertical-align:-10.880000pt;}
.v8{vertical-align:-9.600000pt;}
.vc{vertical-align:-6.400000pt;}
.v5{vertical-align:-5.104640pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:2.544000pt;}
.v6{vertical-align:5.120000pt;}
.v9{vertical-align:9.600000pt;}
.v1{vertical-align:13.440000pt;}
.v2{vertical-align:21.120000pt;}
.va{vertical-align:26.240000pt;}
.v7{vertical-align:32.000000pt;}
.ve{vertical-align:35.184000pt;}
.ls15{letter-spacing:-3.936000pt;}
.ls16{letter-spacing:-3.168000pt;}
.ls7d{letter-spacing:-1.059840pt;}
.ls39{letter-spacing:-0.824320pt;}
.ls29{letter-spacing:-0.765440pt;}
.ls22{letter-spacing:-0.706560pt;}
.ls23{letter-spacing:-0.647680pt;}
.ls3c{letter-spacing:-0.588800pt;}
.ls27{letter-spacing:-0.529920pt;}
.ls58{letter-spacing:-0.483840pt;}
.ls3b{letter-spacing:-0.471040pt;}
.ls26{letter-spacing:-0.412160pt;}
.ls3a{letter-spacing:-0.353280pt;}
.ls1c{letter-spacing:-0.318720pt;}
.ls5c{letter-spacing:-0.296960pt;}
.ls72{letter-spacing:-0.294400pt;}
.ls5f{letter-spacing:-0.288000pt;}
.ls11{letter-spacing:-0.264960pt;}
.ls5b{letter-spacing:-0.259840pt;}
.ls25{letter-spacing:-0.255360pt;}
.ls19{letter-spacing:-0.240000pt;}
.ls20{letter-spacing:-0.235520pt;}
.ls14{letter-spacing:-0.227200pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.181760pt;}
.ls17{letter-spacing:-0.176640pt;}
.ls79{letter-spacing:-0.144000pt;}
.ls56{letter-spacing:-0.138240pt;}
.ls28{letter-spacing:-0.117760pt;}
.ls70{letter-spacing:-0.096000pt;}
.ls21{letter-spacing:-0.058880pt;}
.ls1e{letter-spacing:-0.053120pt;}
.ls7b{letter-spacing:-0.048000pt;}
.ls57{letter-spacing:-0.034560pt;}
.ls10{letter-spacing:0.000000pt;}
.ls82{letter-spacing:0.028800pt;}
.ls75{letter-spacing:0.032000pt;}
.ls7c{letter-spacing:0.033600pt;}
.ls5{letter-spacing:0.048000pt;}
.ls18{letter-spacing:0.058880pt;}
.ls7f{letter-spacing:0.094208pt;}
.ls73{letter-spacing:0.096000pt;}
.ls5a{letter-spacing:0.111360pt;}
.ls3{letter-spacing:0.117760pt;}
.ls4{letter-spacing:0.138240pt;}
.ls81{letter-spacing:0.139200pt;}
.ls6{letter-spacing:0.159360pt;}
.ls54{letter-spacing:0.164864pt;}
.ls80{letter-spacing:0.170240pt;}
.ls71{letter-spacing:0.176640pt;}
.ls41{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.235520pt;}
.ls59{letter-spacing:0.240000pt;}
.ls4a{letter-spacing:0.253440pt;}
.ls1f{letter-spacing:0.255360pt;}
.ls62{letter-spacing:0.257280pt;}
.ls63{letter-spacing:0.259840pt;}
.ls4b{letter-spacing:0.263680pt;}
.ls1d{letter-spacing:0.265600pt;}
.ls51{letter-spacing:0.268800pt;}
.ls1b{letter-spacing:0.288000pt;}
.ls24{letter-spacing:0.294400pt;}
.ls1{letter-spacing:0.299904pt;}
.ls13{letter-spacing:0.318080pt;}
.ls4c{letter-spacing:0.353280pt;}
.ls7a{letter-spacing:0.672000pt;}
.ls60{letter-spacing:0.720000pt;}
.ls5e{letter-spacing:0.722944pt;}
.lse{letter-spacing:0.765440pt;}
.ls7{letter-spacing:0.796800pt;}
.ls43{letter-spacing:1.152000pt;}
.ls77{letter-spacing:1.281600pt;}
.ls34{letter-spacing:1.407232pt;}
.lsb{letter-spacing:1.413120pt;}
.ls6e{letter-spacing:1.754880pt;}
.lsa{letter-spacing:2.060800pt;}
.ls68{letter-spacing:2.394880pt;}
.ls46{letter-spacing:2.704000pt;}
.ls5d{letter-spacing:2.708480pt;}
.ls4f{letter-spacing:2.997760pt;}
.ls76{letter-spacing:3.216000pt;}
.ls33{letter-spacing:3.356160pt;}
.ls2a{letter-spacing:3.944960pt;}
.ls83{letter-spacing:4.512000pt;}
.ls9{letter-spacing:4.592640pt;}
.ls74{letter-spacing:5.152000pt;}
.ls8{letter-spacing:5.240320pt;}
.ls3e{letter-spacing:5.328000pt;}
.ls3f{letter-spacing:5.424000pt;}
.ls2d{letter-spacing:5.888000pt;}
.ls61{letter-spacing:7.183360pt;}
.ls35{letter-spacing:8.478720pt;}
.ls32{letter-spacing:9.067520pt;}
.ls78{letter-spacing:9.715200pt;}
.ls6c{letter-spacing:9.936000pt;}
.ls47{letter-spacing:10.224000pt;}
.lsf{letter-spacing:10.362880pt;}
.ls40{letter-spacing:10.560000pt;}
.ls42{letter-spacing:10.848000pt;}
.ls66{letter-spacing:10.864000pt;}
.ls48{letter-spacing:12.144000pt;}
.ls65{letter-spacing:12.629760pt;}
.ls38{letter-spacing:12.953600pt;}
.ls6b{letter-spacing:13.269760pt;}
.ls67{letter-spacing:13.312000pt;}
.ls3d{letter-spacing:13.440000pt;}
.ls2f{letter-spacing:13.601280pt;}
.ls52{letter-spacing:13.687040pt;}
.ls4e{letter-spacing:13.735680pt;}
.ls2e{letter-spacing:14.190080pt;}
.ls45{letter-spacing:14.592000pt;}
.ls2c{letter-spacing:15.479552pt;}
.ls2b{letter-spacing:15.485440pt;}
.ls4d{letter-spacing:15.504000pt;}
.ls64{letter-spacing:15.655680pt;}
.ls30{letter-spacing:16.133120pt;}
.ls6a{letter-spacing:16.437760pt;}
.ls7e{letter-spacing:16.780800pt;}
.ls2{letter-spacing:17.344000pt;}
.ls31{letter-spacing:19.312640pt;}
.ls36{letter-spacing:19.960320pt;}
.ls37{letter-spacing:21.903360pt;}
.lsc{letter-spacing:52.756480pt;}
.ls55{letter-spacing:61.706240pt;}
.ls6d{letter-spacing:67.072000pt;}
.ls0{letter-spacing:111.616000pt;}
.ls6f{letter-spacing:593.312000pt;}
.ls69{letter-spacing:640.672000pt;}
.ls44{letter-spacing:675.904000pt;}
.ls49{letter-spacing:722.592000pt;}
.ls53{letter-spacing:762.928000pt;}
.ls50{letter-spacing:937.632000pt;}
.ws13{word-spacing:-58.880000pt;}
.ws8c{word-spacing:-48.240000pt;}
.ws85{word-spacing:-48.000000pt;}
.ws96{word-spacing:-37.776000pt;}
.ws82{word-spacing:-37.440000pt;}
.ws8e{word-spacing:-37.152000pt;}
.wsad{word-spacing:-37.136000pt;}
.wsab{word-spacing:-37.056000pt;}
.ws89{word-spacing:-36.096000pt;}
.ws83{word-spacing:-34.992000pt;}
.ws86{word-spacing:-34.560000pt;}
.ws88{word-spacing:-34.525440pt;}
.ws87{word-spacing:-34.421760pt;}
.ws8a{word-spacing:-34.076160pt;}
.ws81{word-spacing:-30.864000pt;}
.wsb{word-spacing:-19.492480pt;}
.wsd6{word-spacing:-19.407360pt;}
.ws12{word-spacing:-18.981760pt;}
.ws92{word-spacing:-18.395136pt;}
.ws11{word-spacing:-13.601280pt;}
.ws15{word-spacing:-13.542400pt;}
.ws14{word-spacing:-13.424640pt;}
.ws56{word-spacing:-13.365760pt;}
.wsf{word-spacing:-13.306880pt;}
.ws10{word-spacing:-13.248000pt;}
.ws57{word-spacing:-13.189120pt;}
.wsc{word-spacing:-13.130240pt;}
.wsd{word-spacing:-13.071360pt;}
.ws53{word-spacing:-12.953600pt;}
.ws16{word-spacing:-12.894720pt;}
.ws54{word-spacing:-12.835840pt;}
.wsaa{word-spacing:-12.776960pt;}
.wsa7{word-spacing:-12.718080pt;}
.wse{word-spacing:-12.659200pt;}
.ws55{word-spacing:-12.600320pt;}
.wsa6{word-spacing:-12.541440pt;}
.ws52{word-spacing:-12.482560pt;}
.wsa{word-spacing:-11.952000pt;}
.ws8{word-spacing:-11.136000pt;}
.wsbb{word-spacing:-11.040000pt;}
.wsac{word-spacing:-10.944000pt;}
.wsba{word-spacing:-10.896000pt;}
.ws9{word-spacing:-10.848000pt;}
.wsb9{word-spacing:-10.704000pt;}
.ws7{word-spacing:-10.656000pt;}
.wsbd{word-spacing:-10.608000pt;}
.ws3{word-spacing:-10.587520pt;}
.ws84{word-spacing:-10.560000pt;}
.ws0{word-spacing:-10.269440pt;}
.ws2{word-spacing:-10.087680pt;}
.ws4{word-spacing:-10.042240pt;}
.ws8f{word-spacing:-8.500480pt;}
.ws5{word-spacing:-8.389120pt;}
.ws90{word-spacing:-8.129280pt;}
.ws91{word-spacing:-8.092160pt;}
.ws94{word-spacing:-7.603200pt;}
.wsbc{word-spacing:-7.328000pt;}
.ws6{word-spacing:-7.232000pt;}
.ws1{word-spacing:-6.388480pt;}
.ws66{word-spacing:-3.650560pt;}
.ws67{word-spacing:-3.179520pt;}
.wsa1{word-spacing:-3.002880pt;}
.wse2{word-spacing:-2.592000pt;}
.wse3{word-spacing:-2.544000pt;}
.ws9c{word-spacing:-2.531840pt;}
.wscd{word-spacing:-2.472960pt;}
.ws2f{word-spacing:-2.355200pt;}
.wse5{word-spacing:-2.352000pt;}
.wse4{word-spacing:-2.304000pt;}
.ws2e{word-spacing:-2.178560pt;}
.ws78{word-spacing:-1.884160pt;}
.ws5e{word-spacing:-1.707520pt;}
.ws77{word-spacing:-1.589760pt;}
.ws58{word-spacing:-1.530880pt;}
.wsdb{word-spacing:-1.440000pt;}
.ws5d{word-spacing:-1.236480pt;}
.wsa8{word-spacing:-1.177600pt;}
.ws4f{word-spacing:-1.059840pt;}
.wsda{word-spacing:-1.056000pt;}
.wsd9{word-spacing:-1.008000pt;}
.ws5f{word-spacing:-0.942080pt;}
.wsa5{word-spacing:-0.883200pt;}
.ws4d{word-spacing:-0.706560pt;}
.wsc2{word-spacing:-0.672000pt;}
.ws6e{word-spacing:-0.647680pt;}
.wsd4{word-spacing:-0.528000pt;}
.wsd5{word-spacing:-0.480000pt;}
.ws39{word-spacing:-0.471040pt;}
.wsdd{word-spacing:-0.384000pt;}
.wsb6{word-spacing:-0.353280pt;}
.ws95{word-spacing:-0.336000pt;}
.ws3a{word-spacing:-0.294400pt;}
.ws23{word-spacing:-0.240000pt;}
.ws72{word-spacing:-0.235520pt;}
.ws97{word-spacing:-0.192000pt;}
.wsb1{word-spacing:-0.176640pt;}
.wscb{word-spacing:-0.144000pt;}
.ws59{word-spacing:-0.117760pt;}
.ws25{word-spacing:-0.106240pt;}
.ws1e{word-spacing:-0.058880pt;}
.ws8d{word-spacing:-0.048000pt;}
.ws8b{word-spacing:-0.032000pt;}
.ws17{word-spacing:0.000000pt;}
.ws20{word-spacing:0.048000pt;}
.ws33{word-spacing:0.058880pt;}
.wsbf{word-spacing:0.096000pt;}
.ws46{word-spacing:0.117760pt;}
.ws18{word-spacing:0.136320pt;}
.wsb0{word-spacing:0.144000pt;}
.ws3b{word-spacing:0.176640pt;}
.ws19{word-spacing:0.181760pt;}
.wsbe{word-spacing:0.192000pt;}
.ws26{word-spacing:0.212480pt;}
.ws9e{word-spacing:0.222720pt;}
.ws44{word-spacing:0.235520pt;}
.ws22{word-spacing:0.240000pt;}
.wsa4{word-spacing:0.255360pt;}
.wsa9{word-spacing:0.288000pt;}
.ws1d{word-spacing:0.294400pt;}
.ws9d{word-spacing:0.296960pt;}
.wsc3{word-spacing:0.336000pt;}
.ws38{word-spacing:0.353280pt;}
.wsb2{word-spacing:0.412160pt;}
.ws63{word-spacing:0.471040pt;}
.ws6f{word-spacing:0.529920pt;}
.ws6d{word-spacing:0.588800pt;}
.ws3c{word-spacing:0.647680pt;}
.ws2b{word-spacing:0.706560pt;}
.ws4e{word-spacing:0.765440pt;}
.ws1c{word-spacing:0.768000pt;}
.ws43{word-spacing:0.824320pt;}
.wsae{word-spacing:0.864000pt;}
.wsaf{word-spacing:0.912000pt;}
.ws64{word-spacing:0.942080pt;}
.ws49{word-spacing:1.000960pt;}
.wsc8{word-spacing:1.104000pt;}
.ws24{word-spacing:1.115520pt;}
.ws45{word-spacing:1.177600pt;}
.ws35{word-spacing:1.295360pt;}
.wsc7{word-spacing:1.344000pt;}
.wsc6{word-spacing:1.392000pt;}
.ws32{word-spacing:1.472000pt;}
.wsc9{word-spacing:1.488000pt;}
.wsca{word-spacing:1.536000pt;}
.ws36{word-spacing:1.648640pt;}
.ws34{word-spacing:1.943040pt;}
.ws7f{word-spacing:2.119680pt;}
.ws93{word-spacing:2.208000pt;}
.ws80{word-spacing:2.237440pt;}
.ws27{word-spacing:2.296320pt;}
.wsa3{word-spacing:2.590720pt;}
.wsb7{word-spacing:2.767360pt;}
.ws7e{word-spacing:2.885120pt;}
.wsa2{word-spacing:2.944000pt;}
.wsc5{word-spacing:3.312000pt;}
.wsdc{word-spacing:3.408000pt;}
.ws76{word-spacing:3.415040pt;}
.wsc4{word-spacing:3.456000pt;}
.ws6c{word-spacing:3.591680pt;}
.ws6a{word-spacing:3.709440pt;}
.ws4b{word-spacing:3.827200pt;}
.wse7{word-spacing:3.840000pt;}
.wsb5{word-spacing:3.944960pt;}
.ws9f{word-spacing:4.003840pt;}
.wsb4{word-spacing:4.121600pt;}
.wse6{word-spacing:4.128000pt;}
.ws40{word-spacing:4.180480pt;}
.ws65{word-spacing:4.298240pt;}
.wsd2{word-spacing:4.464000pt;}
.ws4c{word-spacing:4.474880pt;}
.ws4a{word-spacing:4.651520pt;}
.wsd1{word-spacing:4.704000pt;}
.wsd3{word-spacing:4.752000pt;}
.ws2c{word-spacing:4.828160pt;}
.ws98{word-spacing:5.122560pt;}
.wsc1{word-spacing:5.136000pt;}
.ws2d{word-spacing:5.299200pt;}
.ws21{word-spacing:5.328000pt;}
.ws99{word-spacing:5.358080pt;}
.ws9a{word-spacing:5.416960pt;}
.wsc0{word-spacing:5.424000pt;}
.ws5c{word-spacing:5.652480pt;}
.ws37{word-spacing:5.946880pt;}
.wsa0{word-spacing:6.123520pt;}
.wsde{word-spacing:6.384000pt;}
.ws3d{word-spacing:6.594560pt;}
.wsdf{word-spacing:6.624000pt;}
.ws1f{word-spacing:6.672000pt;}
.ws7d{word-spacing:6.771200pt;}
.wsb3{word-spacing:7.242240pt;}
.ws7c{word-spacing:7.418880pt;}
.ws47{word-spacing:7.713280pt;}
.ws48{word-spacing:7.889920pt;}
.ws41{word-spacing:8.360960pt;}
.ws3f{word-spacing:8.537600pt;}
.wsce{word-spacing:8.714240pt;}
.wsd0{word-spacing:8.949760pt;}
.ws42{word-spacing:9.126400pt;}
.ws70{word-spacing:9.303040pt;}
.wscf{word-spacing:9.538560pt;}
.ws6b{word-spacing:9.774080pt;}
.wscc{word-spacing:9.950720pt;}
.ws50{word-spacing:10.421760pt;}
.ws51{word-spacing:10.598400pt;}
.ws9b{word-spacing:10.892800pt;}
.ws3e{word-spacing:11.069440pt;}
.ws7a{word-spacing:13.012480pt;}
.ws2a{word-spacing:13.483520pt;}
.ws7b{word-spacing:13.660160pt;}
.ws79{word-spacing:13.836800pt;}
.ws29{word-spacing:14.248960pt;}
.ws28{word-spacing:14.425600pt;}
.ws5a{word-spacing:14.896640pt;}
.ws5b{word-spacing:15.720960pt;}
.ws60{word-spacing:15.838720pt;}
.ws62{word-spacing:16.015360pt;}
.ws61{word-spacing:16.368640pt;}
.wsb8{word-spacing:16.839680pt;}
.wsd8{word-spacing:17.016320pt;}
.wsd7{word-spacing:17.192960pt;}
.ws31{word-spacing:17.487360pt;}
.ws30{word-spacing:18.135040pt;}
.ws68{word-spacing:18.723840pt;}
.ws73{word-spacing:19.194880pt;}
.ws69{word-spacing:19.548160pt;}
.ws74{word-spacing:19.842560pt;}
.ws1b{word-spacing:19.872000pt;}
.ws71{word-spacing:20.195840pt;}
.ws1a{word-spacing:21.312000pt;}
.ws75{word-spacing:21.785600pt;}
.wse1{word-spacing:125.472000pt;}
.wse0{word-spacing:125.664000pt;}
._14{margin-left:-16.392320pt;}
._3{margin-left:-7.564800pt;}
._10{margin-left:-3.178240pt;}
._1{margin-left:-2.124800pt;}
._2{margin-left:-1.222400pt;}
._0{width:0.902400pt;}
._4{width:1.942400pt;}
._f{width:2.960640pt;}
._7{width:4.121600pt;}
._d{width:5.712640pt;}
._5{width:6.712320pt;}
._a{width:8.971520pt;}
._6{width:9.918720pt;}
._11{width:11.194240pt;}
._e{width:12.144000pt;}
._8{width:15.073280pt;}
._9{width:16.285440pt;}
._b{width:20.313600pt;}
._c{width:21.688320pt;}
._12{width:259.008000pt;}
._13{width:285.216000pt;}
._15{width:754.664960pt;}
.fs2{font-size:29.440000pt;}
.fs7{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yc1{bottom:1.760000pt;}
.yb4{bottom:1.920000pt;}
.yd1{bottom:3.200000pt;}
.yb8{bottom:3.360000pt;}
.ycd{bottom:20.480000pt;}
.y62{bottom:31.360000pt;}
.ybb{bottom:34.560000pt;}
.yae{bottom:34.720000pt;}
.y60{bottom:38.240000pt;}
.y66{bottom:38.400000pt;}
.y72{bottom:38.880000pt;}
.ybd{bottom:39.200000pt;}
.yb0{bottom:39.360000pt;}
.y2{bottom:50.560000pt;}
.yfd{bottom:99.836000pt;}
.y132{bottom:108.640000pt;}
.yfc{bottom:114.564000pt;}
.y91{bottom:115.714560pt;}
.y30{bottom:117.930240pt;}
.y131{bottom:123.196000pt;}
.yfb{bottom:129.120000pt;}
.ye7{bottom:129.182080pt;}
.y90{bottom:133.628800pt;}
.y2f{bottom:135.697280pt;}
.y5e{bottom:136.485760pt;}
.y130{bottom:137.920000pt;}
.yfa{bottom:140.640000pt;}
.ye6{bottom:147.096320pt;}
.y8f{bottom:151.543040pt;}
.y12f{bottom:152.480000pt;}
.y2e{bottom:153.611520pt;}
.y5d{bottom:154.451840pt;}
.yca{bottom:157.131520pt;}
.ye5{bottom:165.010560pt;}
.y12e{bottom:167.204000pt;}
.y8e{bottom:169.457280pt;}
.y2d{bottom:171.525760pt;}
.y5c{bottom:172.366080pt;}
.yc9{bottom:175.045760pt;}
.y12d{bottom:181.760000pt;}
.ye4{bottom:182.924800pt;}
.y8d{bottom:187.371520pt;}
.y2c{bottom:189.457280pt;}
.y5b{bottom:190.280320pt;}
.yc8{bottom:192.971520pt;}
.y12c{bottom:196.484000pt;}
.ye3{bottom:200.839040pt;}
.y8c{bottom:205.285760pt;}
.y2b{bottom:207.371520pt;}
.yc7{bottom:210.885760pt;}
.y12b{bottom:211.040000pt;}
.ye2{bottom:218.606080pt;}
.y8b{bottom:223.200000pt;}
.y5a{bottom:224.033280pt;}
.y2a{bottom:225.285760pt;}
.y12a{bottom:225.756000pt;}
.yc6{bottom:228.805760pt;}
.ye1{bottom:236.520320pt;}
.y129{bottom:240.480000pt;}
.y59{bottom:241.947520pt;}
.y8a{bottom:242.720000pt;}
.y29{bottom:243.205760pt;}
.yc5{bottom:246.725760pt;}
.ye0{bottom:254.434560pt;}
.y128{bottom:255.036000pt;}
.y58{bottom:259.861760pt;}
.y28{bottom:261.125760pt;}
.yc4{bottom:264.640000pt;}
.y127{bottom:269.760000pt;}
.ydf{bottom:272.348800pt;}
.yba{bottom:278.400000pt;}
.y27{bottom:279.061760pt;}
.yc0{bottom:282.560000pt;}
.y89{bottom:283.057280pt;}
.y126{bottom:284.320000pt;}
.ybf{bottom:288.640000pt;}
.yde{bottom:290.263040pt;}
.y57{bottom:293.776640pt;}
.yc2{bottom:295.840000pt;}
.y26{bottom:296.976000pt;}
.y125{bottom:299.044000pt;}
.y88{bottom:300.971520pt;}
.yb9{bottom:303.840000pt;}
.ydd{bottom:308.177280pt;}
.yc3{bottom:308.476800pt;}
.ybc{bottom:310.080000pt;}
.ybe{bottom:310.240000pt;}
.y124{bottom:313.600000pt;}
.y25{bottom:314.743040pt;}
.y87{bottom:318.885760pt;}
.yb7{bottom:324.640000pt;}
.ydc{bottom:326.091520pt;}
.y56{bottom:327.691520pt;}
.y123{bottom:328.316000pt;}
.y24{bottom:332.657280pt;}
.y86{bottom:336.800000pt;}
.yad{bottom:339.360000pt;}
.y122{bottom:342.872000pt;}
.yb3{bottom:343.680000pt;}
.ydb{bottom:344.005760pt;}
.y55{bottom:345.605760pt;}
.yb2{bottom:349.760000pt;}
.y23{bottom:350.571520pt;}
.y85{bottom:356.480000pt;}
.yb5{bottom:356.960000pt;}
.y121{bottom:357.596000pt;}
.yda{bottom:361.920000pt;}
.y54{bottom:363.530240pt;}
.yac{bottom:364.960000pt;}
.y22{bottom:368.485760pt;}
.yb6{bottom:369.601280pt;}
.yaf{bottom:371.200000pt;}
.yb1{bottom:371.360000pt;}
.y120{bottom:372.320000pt;}
.y53{bottom:381.444480pt;}
.y21{bottom:386.400000pt;}
.y11f{bottom:386.880000pt;}
.yab{bottom:389.924480pt;}
.yd9{bottom:392.156000pt;}
.y9b{bottom:394.080000pt;}
.y84{bottom:396.858240pt;}
.y52{bottom:399.358720pt;}
.y11e{bottom:401.604000pt;}
.y9a{bottom:405.475840pt;}
.y20{bottom:406.080000pt;}
.yd8{bottom:406.876000pt;}
.yaa{bottom:407.838720pt;}
.y83{bottom:414.772480pt;}
.y11d{bottom:416.160000pt;}
.y51{bottom:417.272960pt;}
.yd7{bottom:421.600000pt;}
.ya9{bottom:425.605760pt;}
.yf9{bottom:427.204000pt;}
.y11c{bottom:430.884000pt;}
.y82{bottom:432.686720pt;}
.y50{bottom:435.040000pt;}
.yd6{bottom:436.954240pt;}
.yf8{bottom:441.760000pt;}
.ya8{bottom:443.520000pt;}
.y11b{bottom:445.440000pt;}
.y1f{bottom:446.389120pt;}
.y81{bottom:450.453760pt;}
.yd5{bottom:450.879360pt;}
.y4f{bottom:454.720000pt;}
.yf7{bottom:456.484000pt;}
.y11a{bottom:460.160000pt;}
.ya7{bottom:461.445760pt;}
.y1e{bottom:464.156160pt;}
.y80{bottom:468.368000pt;}
.y119{bottom:474.716000pt;}
.ya6{bottom:479.365760pt;}
.yf6{bottom:481.120000pt;}
.y1d{bottom:482.876160pt;}
.y7f{bottom:486.282240pt;}
.y118{bottom:489.440000pt;}
.y4e{bottom:495.107707pt;}
.ya5{bottom:497.301760pt;}
.y1c{bottom:501.600000pt;}
.y117{bottom:504.164000pt;}
.y7e{bottom:504.196480pt;}
.y4d{bottom:513.021947pt;}
.ya4{bottom:515.216000pt;}
.y116{bottom:518.720000pt;}
.y1b{bottom:522.080000pt;}
.y7d{bottom:522.110720pt;}
.y4c{bottom:530.936187pt;}
.ya3{bottom:533.130240pt;}
.y115{bottom:533.444000pt;}
.y7c{bottom:540.024960pt;}
.y114{bottom:548.000000pt;}
.y4b{bottom:548.850427pt;}
.ya2{bottom:551.044480pt;}
.y1a{bottom:562.433280pt;}
.y113{bottom:565.280000pt;}
.y4a{bottom:566.764667pt;}
.ya1{bottom:568.958720pt;}
.y7b{bottom:569.950720pt;}
.y19{bottom:580.347520pt;}
.y49{bottom:584.678907pt;}
.ya0{bottom:586.725760pt;}
.y7a{bottom:589.307520pt;}
.y18{bottom:598.114560pt;}
.y48{bottom:602.593147pt;}
.y9f{bottom:604.640000pt;}
.y112{bottom:605.600000pt;}
.y79{bottom:607.221760pt;}
.y17{bottom:616.028800pt;}
.y47{bottom:620.360187pt;}
.y111{bottom:623.525760pt;}
.y16{bottom:633.943040pt;}
.y9e{bottom:635.036000pt;}
.y46{bottom:638.274427pt;}
.y78{bottom:641.136640pt;}
.y110{bottom:641.440000pt;}
.y9d{bottom:649.760000pt;}
.y15{bottom:651.857280pt;}
.y45{bottom:656.188667pt;}
.y10f{bottom:660.960000pt;}
.y9c{bottom:661.280000pt;}
.y14{bottom:669.771520pt;}
.y44{bottom:674.102907pt;}
.y77{bottom:675.051520pt;}
.y13{bottom:687.685760pt;}
.y43{bottom:692.017147pt;}
.y76{bottom:692.965760pt;}
.y10e{bottom:701.285760pt;}
.y12{bottom:705.600000pt;}
.y42{bottom:709.931387pt;}
.y75{bottom:710.880000pt;}
.y10d{bottom:719.224960pt;}
.y71{bottom:724.640000pt;}
.y41{bottom:727.845627pt;}
.y99{bottom:727.873280pt;}
.y10c{bottom:737.948800pt;}
.y11{bottom:741.280000pt;}
.y98{bottom:745.787520pt;}
.y40{bottom:745.820800pt;}
.y74{bottom:745.920000pt;}
.y70{bottom:753.920000pt;}
.y10b{bottom:756.672640pt;}
.y73{bottom:761.120000pt;}
.yf5{bottom:761.324800pt;}
.y97{bottom:763.701760pt;}
.y3f{bottom:763.735040pt;}
.y10a{bottom:774.586880pt;}
.y6f{bottom:777.125760pt;}
.yf4{bottom:779.239040pt;}
.y10{bottom:780.958880pt;}
.y96{bottom:781.468800pt;}
.y3e{bottom:781.502080pt;}
.y109{bottom:793.148800pt;}
.y6e{bottom:795.040000pt;}
.yf3{bottom:797.153280pt;}
.yf{bottom:797.280000pt;}
.y95{bottom:799.383040pt;}
.y3d{bottom:799.416320pt;}
.y108{bottom:811.063040pt;}
.ye{bottom:814.080000pt;}
.yf2{bottom:815.067520pt;}
.y94{bottom:817.297280pt;}
.y3c{bottom:817.330560pt;}
.y107{bottom:828.977280pt;}
.yd{bottom:831.036000pt;}
.yf1{bottom:832.981760pt;}
.y93{bottom:835.211520pt;}
.y3b{bottom:835.244800pt;}
.y6d{bottom:835.840000pt;}
.yc{bottom:845.760000pt;}
.y106{bottom:846.891520pt;}
.yf0{bottom:850.896000pt;}
.y92{bottom:853.125760pt;}
.y3a{bottom:853.159040pt;}
.yb{bottom:860.484000pt;}
.y6c{bottom:861.285760pt;}
.y105{bottom:864.805760pt;}
.yef{bottom:868.810240pt;}
.y39{bottom:871.073280pt;}
.y6b{bottom:879.200000pt;}
.ya{bottom:881.280000pt;}
.y104{bottom:882.725760pt;}
.yee{bottom:886.577280pt;}
.y38{bottom:888.987520pt;}
.y9{bottom:892.960000pt;}
.y6a{bottom:897.112960pt;}
.y103{bottom:900.650240pt;}
.yed{bottom:904.491520pt;}
.y37{bottom:906.901760pt;}
.y8{bottom:907.684000pt;}
.yd4{bottom:908.480000pt;}
.y68{bottom:914.880000pt;}
.y69{bottom:917.600000pt;}
.y102{bottom:918.564480pt;}
.yec{bottom:922.405760pt;}
.yd3{bottom:922.880000pt;}
.y36{bottom:924.816000pt;}
.y7{bottom:925.600000pt;}
.y65{bottom:931.200000pt;}
.y101{bottom:936.478720pt;}
.yd2{bottom:937.440000pt;}
.y6{bottom:937.765760pt;}
.yeb{bottom:940.320000pt;}
.y35{bottom:942.730240pt;}
.yd0{bottom:952.160000pt;}
.y67{bottom:952.480000pt;}
.y100{bottom:954.392960pt;}
.yea{bottom:954.720000pt;}
.y5{bottom:955.680000pt;}
.y64{bottom:960.480000pt;}
.y34{bottom:960.497280pt;}
.ycc{bottom:967.520000pt;}
.ye9{bottom:969.440000pt;}
.yff{bottom:972.160000pt;}
.ycf{bottom:973.440000pt;}
.y4{bottom:975.840000pt;}
.y33{bottom:978.411520pt;}
.y5f{bottom:979.680000pt;}
.ye8{bottom:984.800000pt;}
.yce{bottom:986.720000pt;}
.y32{bottom:996.325760pt;}
.y61{bottom:1000.800000pt;}
.y3{bottom:1005.120000pt;}
.yfe{bottom:1007.840000pt;}
.y63{bottom:1008.800000pt;}
.y31{bottom:1014.240000pt;}
.ycb{bottom:1016.640000pt;}
.y1{bottom:1058.880000pt;}
.h22{height:14.560000pt;}
.h1d{height:14.720000pt;}
.h7{height:23.609375pt;}
.h8{height:27.386875pt;}
.h17{height:30.746250pt;}
.h21{height:31.840000pt;}
.h9{height:33.187500pt;}
.ha{height:33.203500pt;}
.h18{height:33.867188pt;}
.h23{height:35.367188pt;}
.h3{height:35.414062pt;}
.h25{height:35.430063pt;}
.h26{height:37.033375pt;}
.h24{height:37.049375pt;}
.hb{height:39.191562pt;}
.hc{height:39.196043pt;}
.h11{height:42.703125pt;}
.hf{height:43.383750pt;}
.h6{height:43.441250pt;}
.he{height:43.456610pt;}
.h15{height:43.469410pt;}
.h1e{height:46.240000pt;}
.h1b{height:46.400000pt;}
.h5{height:46.785000pt;}
.h2{height:47.218750pt;}
.h16{height:48.318667pt;}
.h10{height:48.320000pt;}
.h19{height:48.373755pt;}
.h1a{height:48.423675pt;}
.h20{height:48.460795pt;}
.h13{height:48.480000pt;}
.h1f{height:48.487675pt;}
.h14{height:52.382500pt;}
.hd{height:58.187500pt;}
.h4{height:65.625000pt;}
.h12{height:74.703125pt;}
.h1c{height:77.887125pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:2.080000pt;}
.w7{width:2.561333pt;}
.wc{width:65.760000pt;}
.w12{width:84.798667pt;}
.we{width:84.960000pt;}
.w13{width:94.560000pt;}
.wf{width:99.198667pt;}
.w10{width:102.720000pt;}
.w14{width:103.841333pt;}
.wd{width:113.441333pt;}
.w11{width:113.600000pt;}
.wb{width:122.400000pt;}
.w3{width:216.000000pt;}
.w5{width:338.880000pt;}
.w6{width:385.280000pt;}
.w8{width:406.240000pt;}
.wa{width:415.840000pt;}
.w2{width:556.640000pt;}
.w9{width:559.520000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.xa{left:-1.440000pt;}
.x0{left:0.000000pt;}
.x39{left:7.200000pt;}
.x41{left:16.000000pt;}
.x3e{left:18.720000pt;}
.x47{left:24.640000pt;}
.x45{left:26.400000pt;}
.x43{left:28.000000pt;}
.x44{left:32.480000pt;}
.x49{left:37.920000pt;}
.x4a{left:42.560000pt;}
.x2a{left:58.400000pt;}
.x28{left:61.280000pt;}
.x3{left:94.560000pt;}
.x5{left:118.560000pt;}
.x38{left:139.840000pt;}
.x4{left:142.560000pt;}
.x6{left:159.680000pt;}
.x2c{left:160.960000pt;}
.x2d{left:168.800000pt;}
.x1b{left:174.080000pt;}
.x32{left:177.760000pt;}
.x1d{left:181.920000pt;}
.x1{left:195.040000pt;}
.x22{left:207.360000pt;}
.x2f{left:211.520000pt;}
.x8{left:212.480000pt;}
.x2b{left:216.320000pt;}
.x1f{left:224.480000pt;}
.x35{left:232.320000pt;}
.x1a{left:234.880000pt;}
.x24{left:240.960000pt;}
.x30{left:244.960000pt;}
.x3a{left:253.280000pt;}
.x7{left:255.520000pt;}
.x20{left:262.400000pt;}
.x31{left:264.640000pt;}
.xd{left:266.080000pt;}
.x1c{left:275.200000pt;}
.x13{left:280.960000pt;}
.x21{left:294.240000pt;}
.xe{left:300.800000pt;}
.x33{left:303.840000pt;}
.x2e{left:304.800000pt;}
.x9{left:310.400000pt;}
.xb{left:312.320000pt;}
.xc{left:315.840000pt;}
.x1e{left:317.760000pt;}
.x34{left:323.200000pt;}
.x16{left:330.400000pt;}
.x23{left:331.840000pt;}
.x25{left:335.840000pt;}
.x3b{left:338.240000pt;}
.x36{left:340.800000pt;}
.x26{left:364.638720pt;}
.x14{left:368.160000pt;}
.x10{left:380.960000pt;}
.x37{left:383.038720pt;}
.xf{left:384.640000pt;}
.x11{left:387.520000pt;}
.x12{left:391.680000pt;}
.x2{left:396.800000pt;}
.x15{left:403.680000pt;}
.x48{left:434.560000pt;}
.x3c{left:437.440000pt;}
.x3f{left:444.640000pt;}
.x3d{left:452.160000pt;}
.x17{left:462.880000pt;}
.x27{left:510.400000pt;}
.x40{left:540.160000pt;}
.x42{left:564.160000pt;}
.x18{left:629.306240pt;}
.x29{left:632.800000pt;}
.x19{left:661.760000pt;}
.x46{left:699.036800pt;}
}




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