
    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_66d5a5d3344aef1b8651decd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_0ccef5c0f07a1bc6b0f42054.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2cf10c1188d5153a91d34d8a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_8f58de6f9e874739092a4f48.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024902;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_b0526c1c703a839cb249c8b3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;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_255f9920cf311ec9b115aa01.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900391;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_52e652b9b5c6226d3ab0d548.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_3276587fe7d0e468cca6d0dc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_32f700a2fa6c814df33861d8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_1140107f9bbae44a996576ee.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-27.367200px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls46{letter-spacing:-1.008000px;}
.ls2e{letter-spacing:-0.964800px;}
.ls59{letter-spacing:-0.936000px;}
.ls20{letter-spacing:-0.776880px;}
.ls4e{letter-spacing:-0.720000px;}
.ls58{letter-spacing:-0.648000px;}
.ls4b{letter-spacing:-0.597600px;}
.ls26{letter-spacing:-0.537840px;}
.ls13{letter-spacing:-0.466560px;}
.ls5a{letter-spacing:-0.432000px;}
.ls1f{letter-spacing:-0.358560px;}
.ls1c{letter-spacing:-0.336960px;}
.ls2f{letter-spacing:-0.289440px;}
.ls15{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.270000px;}
.lsb{letter-spacing:-0.264960px;}
.lsf{letter-spacing:-0.252720px;}
.ls30{letter-spacing:-0.239040px;}
.ls14{letter-spacing:-0.233280px;}
.ls33{letter-spacing:-0.216000px;}
.ls38{letter-spacing:-0.144000px;}
.ls40{letter-spacing:-0.132480px;}
.ls1d{letter-spacing:-0.119520px;}
.lse{letter-spacing:-0.108000px;}
.ls11{letter-spacing:-0.084240px;}
.ls12{letter-spacing:-0.077760px;}
.ls32{letter-spacing:-0.072000px;}
.lsc{letter-spacing:-0.059760px;}
.ls9{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.036000px;}
.lsa{letter-spacing:0.054000px;}
.ls25{letter-spacing:0.059760px;}
.ls23{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.077760px;}
.ls10{letter-spacing:0.084240px;}
.ls3f{letter-spacing:0.113544px;}
.ls1e{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.132480px;}
.ls6{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.149760px;}
.ls39{letter-spacing:0.175680px;}
.ls45{letter-spacing:0.176400px;}
.ls1{letter-spacing:0.179280px;}
.ls47{letter-spacing:0.180000px;}
.ls2d{letter-spacing:0.209160px;}
.ls54{letter-spacing:0.234504px;}
.ls24{letter-spacing:0.239040px;}
.ls4c{letter-spacing:0.264960px;}
.ls18{letter-spacing:0.280872px;}
.ls29{letter-spacing:0.288000px;}
.ls43{letter-spacing:0.331200px;}
.ls17{letter-spacing:0.358560px;}
.ls19{letter-spacing:0.360000px;}
.ls44{letter-spacing:0.361800px;}
.ls3c{letter-spacing:0.364320px;}
.ls50{letter-spacing:0.378000px;}
.ls3b{letter-spacing:0.385920px;}
.ls36{letter-spacing:0.432000px;}
.ls21{letter-spacing:0.460152px;}
.ls4f{letter-spacing:0.496800px;}
.ls5b{letter-spacing:0.504000px;}
.ls4a{letter-spacing:0.615528px;}
.ls57{letter-spacing:0.712800px;}
.ls16{letter-spacing:0.720000px;}
.ls56{letter-spacing:0.776880px;}
.ls55{letter-spacing:0.864000px;}
.ls2b{letter-spacing:0.896400px;}
.ls5{letter-spacing:1.440000px;}
.ls31{letter-spacing:1.447200px;}
.ls2c{letter-spacing:1.613520px;}
.ls8{letter-spacing:2.160000px;}
.ls22{letter-spacing:2.167200px;}
.ls1b{letter-spacing:2.330640px;}
.ls7{letter-spacing:2.880000px;}
.ls2a{letter-spacing:3.600000px;}
.ls3e{letter-spacing:3.614400px;}
.ls37{letter-spacing:4.320000px;}
.ls48{letter-spacing:4.482000px;}
.ls52{letter-spacing:5.032800px;}
.ls53{letter-spacing:5.040000px;}
.ls5c{letter-spacing:5.047200px;}
.ls51{letter-spacing:5.199120px;}
.ls1a{letter-spacing:5.760000px;}
.ls34{letter-spacing:5.916240px;}
.ls41{letter-spacing:5.933520px;}
.ls35{letter-spacing:6.125400px;}
.ls49{letter-spacing:6.633360px;}
.ls27{letter-spacing:7.200000px;}
.ls42{letter-spacing:7.920000px;}
.ls3d{letter-spacing:9.360000px;}
.ls4d{letter-spacing:12.960000px;}
.ls28{letter-spacing:27.504000px;}
.ls3a{letter-spacing:64.224000px;}
.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;}
}
.ws3{word-spacing:-29.568240px;}
.ws4{word-spacing:-27.371520px;}
.ws25{word-spacing:-23.081760px;}
.ws55{word-spacing:-20.304000px;}
.ws56{word-spacing:-20.016000px;}
.ws96{word-spacing:-18.864000px;}
.ws9e{word-spacing:-18.504000px;}
.ws7d{word-spacing:-18.282240px;}
.ws26{word-spacing:-18.144000px;}
.wsa1{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.wsa2{word-spacing:-17.856000px;}
.ws72{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws9b{word-spacing:-17.064000px;}
.ws97{word-spacing:-15.716880px;}
.ws27{word-spacing:-15.298560px;}
.ws44{word-spacing:-15.179040px;}
.ws60{word-spacing:-15.119280px;}
.ws74{word-spacing:-15.059520px;}
.ws45{word-spacing:-14.999760px;}
.ws46{word-spacing:-14.940000px;}
.ws2b{word-spacing:-14.880240px;}
.ws28{word-spacing:-14.820480px;}
.ws75{word-spacing:-14.700960px;}
.ws2a{word-spacing:-14.581440px;}
.ws1{word-spacing:-13.446000px;}
.ws73{word-spacing:-12.445920px;}
.ws0{word-spacing:-12.204000px;}
.ws68{word-spacing:-12.060000px;}
.ws2{word-spacing:-11.934000px;}
.ws57{word-spacing:-11.770560px;}
.ws29{word-spacing:-9.720000px;}
.ws64{word-spacing:-4.464000px;}
.ws81{word-spacing:-4.320000px;}
.ws63{word-spacing:-4.032000px;}
.ws42{word-spacing:-3.764880px;}
.ws6a{word-spacing:-3.600000px;}
.ws43{word-spacing:-3.346560px;}
.ws66{word-spacing:-3.312000px;}
.ws7b{word-spacing:-3.047760px;}
.ws69{word-spacing:-3.024000px;}
.ws5c{word-spacing:-2.880000px;}
.ws7a{word-spacing:-2.808720px;}
.ws78{word-spacing:-2.629440px;}
.ws76{word-spacing:-2.592000px;}
.ws79{word-spacing:-2.569680px;}
.ws91{word-spacing:-2.376000px;}
.ws9c{word-spacing:-2.330640px;}
.ws70{word-spacing:-2.304000px;}
.ws21{word-spacing:-2.160000px;}
.ws9d{word-spacing:-2.091600px;}
.ws62{word-spacing:-1.872000px;}
.ws84{word-spacing:-1.613520px;}
.ws6b{word-spacing:-1.584000px;}
.ws1d{word-spacing:-1.440000px;}
.ws92{word-spacing:-1.374480px;}
.ws19{word-spacing:-1.152000px;}
.ws4e{word-spacing:-0.896400px;}
.ws33{word-spacing:-0.864000px;}
.ws13{word-spacing:-0.728640px;}
.ws16{word-spacing:-0.720000px;}
.ws85{word-spacing:-0.717120px;}
.ws4d{word-spacing:-0.657360px;}
.wsa3{word-spacing:-0.576000px;}
.ws4b{word-spacing:-0.432000px;}
.ws87{word-spacing:-0.385920px;}
.ws36{word-spacing:-0.358560px;}
.ws11{word-spacing:-0.288000px;}
.ws8e{word-spacing:-0.264960px;}
.ws12{word-spacing:-0.179280px;}
.wsc{word-spacing:-0.168480px;}
.ws1e{word-spacing:-0.144000px;}
.ws3b{word-spacing:-0.119520px;}
.wsb{word-spacing:-0.084240px;}
.ws4a{word-spacing:-0.072000px;}
.ws7c{word-spacing:-0.059760px;}
.ws7{word-spacing:0.000000px;}
.ws37{word-spacing:0.059760px;}
.wsd{word-spacing:0.077760px;}
.ws71{word-spacing:0.119520px;}
.ws8d{word-spacing:0.132480px;}
.ws6f{word-spacing:0.144000px;}
.ws9{word-spacing:0.162000px;}
.ws65{word-spacing:0.216000px;}
.ws10{word-spacing:0.233280px;}
.ws3a{word-spacing:0.239040px;}
.wsa{word-spacing:0.252720px;}
.ws8{word-spacing:0.264960px;}
.ws1c{word-spacing:0.288000px;}
.ws77{word-spacing:0.298800px;}
.ws89{word-spacing:0.358560px;}
.ws8b{word-spacing:0.418320px;}
.ws7e{word-spacing:0.463680px;}
.wsf{word-spacing:0.466560px;}
.ws98{word-spacing:0.482400px;}
.ws51{word-spacing:0.537840px;}
.ws8c{word-spacing:0.576000px;}
.ws8a{word-spacing:0.597600px;}
.ws99{word-spacing:0.648000px;}
.ws1f{word-spacing:0.720000px;}
.ws40{word-spacing:0.776880px;}
.wse{word-spacing:0.855360px;}
.ws6c{word-spacing:0.956160px;}
.ws5a{word-spacing:0.964800px;}
.ws2e{word-spacing:1.008000px;}
.ws5d{word-spacing:1.135440px;}
.ws9f{word-spacing:1.152000px;}
.ws3d{word-spacing:1.254960px;}
.ws2d{word-spacing:1.296000px;}
.wsa0{word-spacing:1.368000px;}
.ws17{word-spacing:1.440000px;}
.ws3c{word-spacing:1.494000px;}
.ws41{word-spacing:1.673280px;}
.ws18{word-spacing:1.728000px;}
.ws82{word-spacing:1.733040px;}
.ws94{word-spacing:1.972080px;}
.ws24{word-spacing:2.016000px;}
.ws15{word-spacing:2.160000px;}
.ws35{word-spacing:2.211120px;}
.ws90{word-spacing:2.376000px;}
.ws38{word-spacing:2.390400px;}
.ws22{word-spacing:2.448000px;}
.ws95{word-spacing:2.450160px;}
.ws39{word-spacing:2.689200px;}
.ws14{word-spacing:2.880000px;}
.ws3e{word-spacing:2.928240px;}
.ws3f{word-spacing:3.107520px;}
.ws23{word-spacing:3.168000px;}
.ws83{word-spacing:3.312000px;}
.ws5e{word-spacing:3.406320px;}
.ws9a{word-spacing:3.456000px;}
.ws20{word-spacing:3.600000px;}
.ws5f{word-spacing:3.824640px;}
.ws59{word-spacing:3.888000px;}
.ws47{word-spacing:4.123440px;}
.ws31{word-spacing:4.320000px;}
.ws88{word-spacing:4.362480px;}
.ws48{word-spacing:4.541760px;}
.ws61{word-spacing:4.608000px;}
.ws50{word-spacing:4.840560px;}
.ws1a{word-spacing:4.896000px;}
.ws32{word-spacing:5.040000px;}
.ws4f{word-spacing:5.079600px;}
.ws1b{word-spacing:5.328000px;}
.ws53{word-spacing:5.557680px;}
.ws6d{word-spacing:5.677200px;}
.ws34{word-spacing:5.760000px;}
.ws52{word-spacing:5.976000px;}
.ws30{word-spacing:6.048000px;}
.ws6e{word-spacing:6.155280px;}
.ws54{word-spacing:6.274800px;}
.ws2c{word-spacing:6.480000px;}
.ws5b{word-spacing:6.768000px;}
.ws58{word-spacing:7.200000px;}
.ws49{word-spacing:7.488000px;}
.ws2f{word-spacing:7.920000px;}
.ws67{word-spacing:8.208000px;}
.ws4c{word-spacing:8.640000px;}
.ws86{word-spacing:8.928000px;}
.ws80{word-spacing:9.360000px;}
.ws7f{word-spacing:9.648000px;}
.ws8f{word-spacing:13.248000px;}
.ws93{word-spacing:80.436960px;}
._c{margin-left:-4.912200px;}
._7{margin-left:-3.895560px;}
._9{margin-left:-2.568312px;}
._2{margin-left:-1.063800px;}
._3{width:1.430280px;}
._4{width:2.664000px;}
._8{width:3.821760px;}
._5{width:4.833720px;}
._6{width:6.016680px;}
._a{width:7.817040px;}
._b{width:10.354320px;}
._f{width:67.464000px;}
._d{width:81.008064px;}
._e{width:85.464000px;}
._1{width:157.734000px;}
._0{width:583.254000px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(0,112,192);}
.fc4{color:rgb(31,78,121);}
.fc3{color:transparent;}
.fc2{color:rgb(196,89,17);}
.fc5{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs8{font-size:38.880000px;}
.fs7{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:16.020000px;}
.y7{bottom:79.920000px;}
.y6{bottom:112.680000px;}
.y8{bottom:113.760000px;}
.y5{bottom:145.440000px;}
.y6e{bottom:165.392100px;}
.y57{bottom:165.397680px;}
.y175{bottom:165.408840px;}
.y96{bottom:165.414420px;}
.yaa{bottom:170.640000px;}
.y1ba{bottom:172.800000px;}
.y6d{bottom:182.677680px;}
.y56{bottom:182.683260px;}
.yf0{bottom:182.688840px;}
.y111{bottom:182.694420px;}
.y1f5{bottom:183.240000px;}
.y2f{bottom:185.760000px;}
.ybd{bottom:185.940000px;}
.y95{bottom:187.920000px;}
.y1b9{bottom:193.500000px;}
.ya9{bottom:195.660000px;}
.y6c{bottom:199.963260px;}
.y55{bottom:199.968840px;}
.yef{bottom:199.974420px;}
.ye5{bottom:203.580000px;}
.y1f4{bottom:203.940000px;}
.y94{bottom:205.200000px;}
.y1df{bottom:206.640000px;}
.y2e{bottom:208.440000px;}
.ybc{bottom:209.880000px;}
.y153{bottom:212.760000px;}
.y1b8{bottom:214.200000px;}
.ya8{bottom:216.360000px;}
.y93{bottom:217.236960px;}
.y6b{bottom:217.248840px;}
.y54{bottom:217.254420px;}
.yee{bottom:222.480000px;}
.y1f3{bottom:224.640000px;}
.ye4{bottom:227.340000px;}
.y174{bottom:230.040000px;}
.y152{bottom:233.460000px;}
.ybb{bottom:233.640000px;}
.y92{bottom:234.522540px;}
.y6a{bottom:234.534420px;}
.y1b7{bottom:234.900000px;}
.y53{bottom:239.760000px;}
.y2d{bottom:240.300000px;}
.y1f2{bottom:245.340000px;}
.yed{bottom:247.320000px;}
.y1de{bottom:247.860000px;}
.y173{bottom:250.740000px;}
.ye3{bottom:251.280000px;}
.y91{bottom:251.808120px;}
.y52{bottom:251.813700px;}
.y69{bottom:251.820000px;}
.y1b6{bottom:255.600000px;}
.y127{bottom:257.040000px;}
.yba{bottom:257.400000px;}
.y2c{bottom:262.980000px;}
.yd9{bottom:264.600000px;}
.y1f1{bottom:265.860000px;}
.yec{bottom:268.020000px;}
.y1dd{bottom:268.560000px;}
.y90{bottom:268.914420px;}
.y51{bottom:274.140000px;}
.y1b5{bottom:276.300000px;}
.yb9{bottom:281.160000px;}
.y68{bottom:281.880000px;}
.ye2{bottom:284.040000px;}
.yd8{bottom:285.300000px;}
.y1a3{bottom:285.660000px;}
.y2b{bottom:285.840000px;}
.y1f0{bottom:286.560000px;}
.y1dc{bottom:289.260000px;}
.y151{bottom:289.980000px;}
.y8f{bottom:291.420000px;}
.y1b4{bottom:297.000000px;}
.y50{bottom:298.980000px;}
.yeb{bottom:300.230820px;}
.y67{bottom:302.580000px;}
.y1ef{bottom:307.260000px;}
.ye1{bottom:307.800000px;}
.y2a{bottom:308.520000px;}
.y1db{bottom:309.960000px;}
.y150{bottom:313.920000px;}
.yb8{bottom:314.100000px;}
.y1a2{bottom:315.360000px;}
.y8e{bottom:316.260000px;}
.yea{bottom:317.516400px;}
.y1b3{bottom:317.700000px;}
.y4f{bottom:319.680000px;}
.y1ee{bottom:327.960000px;}
.y110{bottom:328.140000px;}
.y134{bottom:328.500000px;}
.y1da{bottom:330.660000px;}
.y29{bottom:331.380000px;}
.ye0{bottom:331.560000px;}
.y1a1{bottom:336.060000px;}
.y8d{bottom:336.960000px;}
.y14f{bottom:337.680000px;}
.yb7{bottom:337.860000px;}
.y1b2{bottom:338.400000px;}
.y186{bottom:339.480000px;}
.yd7{bottom:346.500000px;}
.y66{bottom:347.040000px;}
.y1ed{bottom:348.660000px;}
.y133{bottom:349.200000px;}
.y126{bottom:350.100000px;}
.y1d9{bottom:351.360000px;}
.y10f{bottom:351.900000px;}
.y28{bottom:354.060000px;}
.ydf{bottom:355.500000px;}
.y1a0{bottom:356.760000px;}
.y1b1{bottom:359.100000px;}
.y14e{bottom:361.440000px;}
.yb6{bottom:361.620000px;}
.y185{bottom:363.240000px;}
.y4e{bottom:367.020000px;}
.y1ec{bottom:369.360000px;}
.y132{bottom:369.900000px;}
.yd6{bottom:370.440000px;}
.y65{bottom:370.800000px;}
.y1d8{bottom:372.060000px;}
.y125{bottom:373.860000px;}
.y10e{bottom:375.660000px;}
.y8c{bottom:376.200000px;}
.y27{bottom:376.920000px;}
.yde{bottom:379.260000px;}
.y1b0{bottom:379.800000px;}
.y172{bottom:382.500000px;}
.y14d{bottom:385.200000px;}
.yb5{bottom:385.380000px;}
.y19f{bottom:386.460000px;}
.y184{bottom:387.000000px;}
.y1eb{bottom:390.060000px;}
.y4d{bottom:390.780000px;}
.y1d7{bottom:392.760000px;}
.yd5{bottom:394.200000px;}
.y64{bottom:394.560000px;}
.y124{bottom:397.620000px;}
.y18e{bottom:397.980000px;}
.y26{bottom:399.600000px;}
.y8b{bottom:400.140000px;}
.y1af{bottom:400.500000px;}
.y131{bottom:402.660000px;}
.y171{bottom:406.260000px;}
.y19e{bottom:407.160000px;}
.y10d{bottom:408.420000px;}
.ydd{bottom:408.780000px;}
.y14c{bottom:409.140000px;}
.yb4{bottom:409.320000px;}
.y183{bottom:410.760000px;}
.y1d6{bottom:413.460000px;}
.y4c{bottom:414.540000px;}
.yd4{bottom:417.960000px;}
.y63{bottom:418.500000px;}
.y1ae{bottom:421.200000px;}
.y123{bottom:421.380000px;}
.y25{bottom:422.460000px;}
.y8a{bottom:423.900000px;}
.y130{bottom:426.420000px;}
.y18d{bottom:427.680000px;}
.y10c{bottom:428.580000px;}
.ydc{bottom:429.480000px;}
.y170{bottom:430.020000px;}
.y1ea{bottom:431.460000px;}
.y14b{bottom:432.900000px;}
.yb3{bottom:433.080000px;}
.y1d5{bottom:434.160000px;}
.y182{bottom:434.700000px;}
.y19d{bottom:436.860000px;}
.y4b{bottom:438.300000px;}
.yd3{bottom:441.720000px;}
.y1ad{bottom:441.900000px;}
.y62{bottom:442.260000px;}
.y24{bottom:445.140000px;}
.y122{bottom:445.320000px;}
.y89{bottom:447.660000px;}
.y18c{bottom:448.380000px;}
.y12f{bottom:450.360000px;}
.y1e9{bottom:452.160000px;}
.y16f{bottom:453.780000px;}
.y1d4{bottom:454.860000px;}
.y14a{bottom:456.660000px;}
.yb2{bottom:456.840000px;}
.y19c{bottom:457.560000px;}
.y181{bottom:458.460000px;}
.y10b{bottom:461.520000px;}
.y4a{bottom:462.240000px;}
.y1ac{bottom:462.600000px;}
.yd2{bottom:465.660000px;}
.y18b{bottom:469.080000px;}
.y1e8{bottom:472.860000px;}
.ydb{bottom:473.220000px;}
.y12e{bottom:474.120000px;}
.y23{bottom:474.840000px;}
.y61{bottom:475.020000px;}
.y1d3{bottom:475.560000px;}
.y16e{bottom:477.720000px;}
.y121{bottom:478.080000px;}
.y88{bottom:480.420000px;}
.yb1{bottom:480.600000px;}
.y1ab{bottom:483.300000px;}
.y10a{bottom:485.280000px;}
.y49{bottom:486.000000px;}
.y19b{bottom:487.260000px;}
.yd1{bottom:489.420000px;}
.y180{bottom:491.220000px;}
.y1e7{bottom:493.560000px;}
.yda{bottom:496.260000px;}
.y12d{bottom:497.880000px;}
.y60{bottom:498.780000px;}
.y16d{bottom:501.480000px;}
.y120{bottom:501.840000px;}
.y1aa{bottom:504.000000px;}
.y87{bottom:504.360000px;}
.yb0{bottom:504.540000px;}
.y22{bottom:506.700000px;}
.y19a{bottom:507.960000px;}
.y109{bottom:509.220000px;}
.y48{bottom:509.760000px;}
.y1e6{bottom:514.260000px;}
.y17f{bottom:514.980000px;}
.y18a{bottom:519.480000px;}
.y12c{bottom:521.640000px;}
.yd0{bottom:522.180000px;}
.y5f{bottom:522.720000px;}
.y1a9{bottom:523.980000px;}
.y16c{bottom:525.240000px;}
.y11f{bottom:525.600000px;}
.y1d2{bottom:525.960000px;}
.y86{bottom:528.120000px;}
.y199{bottom:528.660000px;}
.y21{bottom:529.380000px;}
.y108{bottom:532.980000px;}
.y47{bottom:533.520000px;}
.yaf{bottom:534.060000px;}
.y1e5{bottom:534.960000px;}
.y149{bottom:537.120000px;}
.y17e{bottom:538.920000px;}
.y189{bottom:540.180000px;}
.y12b{bottom:545.580000px;}
.ycf{bottom:545.940000px;}
.y5e{bottom:546.480000px;}
.y1d1{bottom:546.660000px;}
.y16b{bottom:549.000000px;}
.y11e{bottom:549.540000px;}
.y1a8{bottom:551.520000px;}
.y85{bottom:551.880000px;}
.yae{bottom:554.760000px;}
.y1e4{bottom:555.660000px;}
.y107{bottom:556.740000px;}
.y46{bottom:557.280000px;}
.y198{bottom:558.360000px;}
.y148{bottom:560.880000px;}
.y20{bottom:561.240000px;}
.y17d{bottom:562.680000px;}
.y1d0{bottom:567.360000px;}
.yce{bottom:569.880000px;}
.y5d{bottom:570.240000px;}
.y11d{bottom:573.300000px;}
.y84{bottom:575.640000px;}
.y1e3{bottom:576.360000px;}
.y12a{bottom:577.084500px;}
.y197{bottom:579.060000px;}
.y45{bottom:581.220000px;}
.y16a{bottom:581.940000px;}
.y1f{bottom:583.920000px;}
.y147{bottom:584.640000px;}
.y17c{bottom:586.440000px;}
.y106{bottom:587.341800px;}
.y1cf{bottom:588.060000px;}
.y188{bottom:590.580000px;}
.ycd{bottom:593.640000px;}
.y5c{bottom:594.000000px;}
.y1a7{bottom:596.160000px;}
.ya7{bottom:596.700000px;}
.y129{bottom:596.880000px;}
.y1e2{bottom:597.060000px;}
.yad{bottom:598.325220px;}
.y83{bottom:599.580000px;}
.y196{bottom:599.760000px;}
.y105{bottom:604.260000px;}
.y169{bottom:605.700000px;}
.y11c{bottom:606.060000px;}
.y1e{bottom:606.780000px;}
.y146{bottom:608.580000px;}
.y1ce{bottom:608.760000px;}
.y17b{bottom:610.200000px;}
.y44{bottom:613.980000px;}
.ycc{bottom:617.400000px;}
.y1e1{bottom:617.760000px;}
.y5b{bottom:617.940000px;}
.yac{bottom:618.300000px;}
.y195{bottom:620.460000px;}
.y128{bottom:622.980000px;}
.y82{bottom:623.340000px;}
.y160{bottom:624.960000px;}
.ya6{bottom:626.400000px;}
.y1a6{bottom:627.664500px;}
.y104{bottom:628.200000px;}
.y1d{bottom:629.460000px;}
.y11b{bottom:629.820000px;}
.y145{bottom:632.340000px;}
.y17a{bottom:633.960000px;}
.y43{bottom:637.740000px;}
.y1e0{bottom:638.460000px;}
.yab{bottom:641.160000px;}
.y81{bottom:647.100000px;}
.y1a5{bottom:647.460000px;}
.y15f{bottom:648.900000px;}
.y103{bottom:651.960000px;}
.y1c{bottom:652.320000px;}
.y168{bottom:653.220000px;}
.y11a{bottom:653.760000px;}
.y144{bottom:656.100000px;}
.y179{bottom:657.900000px;}
.y5a{bottom:658.444500px;}
.ya5{bottom:659.160000px;}
.y42{bottom:661.500000px;}
.ycb{bottom:665.100000px;}
.y1a4{bottom:670.500000px;}
.y80{bottom:670.860000px;}
.y15e{bottom:672.660000px;}
.y1b{bottom:675.000000px;}
.y102{bottom:675.720000px;}
.y167{bottom:676.980000px;}
.y119{bottom:677.520000px;}
.y59{bottom:678.240000px;}
.y1cd{bottom:679.860000px;}
.y178{bottom:681.660000px;}
.ya4{bottom:683.100000px;}
.y41{bottom:685.440000px;}
.yca{bottom:688.860000px;}
.y194{bottom:691.560000px;}
.y7f{bottom:694.800000px;}
.y15d{bottom:696.420000px;}
.y1a{bottom:697.860000px;}
.y101{bottom:699.480000px;}
.y1cc{bottom:700.560000px;}
.y166{bottom:700.920000px;}
.y58{bottom:701.280000px;}
.y177{bottom:705.420000px;}
.ya3{bottom:706.860000px;}
.y40{bottom:709.200000px;}
.y193{bottom:712.260000px;}
.yc9{bottom:712.620000px;}
.y143{bottom:712.800000px;}
.y7e{bottom:718.560000px;}
.y15c{bottom:720.180000px;}
.y19{bottom:720.540000px;}
.y1cb{bottom:721.260000px;}
.y100{bottom:723.420000px;}
.y165{bottom:724.680000px;}
.y118{bottom:725.040000px;}
.ya2{bottom:730.620000px;}
.y3f{bottom:732.960000px;}
.y176{bottom:734.580000px;}
.yc8{bottom:736.380000px;}
.y142{bottom:736.560000px;}
.y1ca{bottom:741.960000px;}
.y18{bottom:743.400000px;}
.y15b{bottom:744.120000px;}
.ye9{bottom:745.740000px;}
.yff{bottom:747.180000px;}
.y187{bottom:747.900000px;}
.y164{bottom:748.440000px;}
.y117{bottom:748.800000px;}
.y7d{bottom:751.320000px;}
.ya1{bottom:754.380000px;}
.y3e{bottom:756.720000px;}
.yc7{bottom:760.140000px;}
.y141{bottom:760.320000px;}
.y1c9{bottom:762.660000px;}
.y192{bottom:764.464500px;}
.y17{bottom:766.080000px;}
.ye8{bottom:766.440000px;}
.y15a{bottom:767.880000px;}
.yfe{bottom:770.940000px;}
.y163{bottom:772.200000px;}
.y116{bottom:772.740000px;}
.y7c{bottom:775.080000px;}
.ya0{bottom:778.140000px;}
.y1c8{bottom:783.360000px;}
.y140{bottom:784.080000px;}
.y191{bottom:784.260000px;}
.ye7{bottom:787.140000px;}
.y16{bottom:788.940000px;}
.y3d{bottom:789.660000px;}
.y159{bottom:791.640000px;}
.yc6{bottom:793.080000px;}
.y7b{bottom:799.020000px;}
.y162{bottom:801.174420px;}
.y115{bottom:801.905040px;}
.y9f{bottom:802.080000px;}
.yfd{bottom:803.700000px;}
.y1c7{bottom:804.060000px;}
.ye6{bottom:807.840000px;}
.y190{bottom:811.260000px;}
.y3c{bottom:813.420000px;}
.y158{bottom:815.400000px;}
.yc5{bottom:816.840000px;}
.y15{bottom:818.460000px;}
.y114{bottom:820.800000px;}
.y7a{bottom:822.780000px;}
.y1c6{bottom:824.760000px;}
.y9e{bottom:825.840000px;}
.yfc{bottom:827.640000px;}
.y18f{bottom:837.000000px;}
.y3b{bottom:837.180000px;}
.y157{bottom:839.340000px;}
.yc4{bottom:840.600000px;}
.y161{bottom:841.500000px;}
.y1c5{bottom:845.460000px;}
.y79{bottom:846.540000px;}
.y9d{bottom:849.600000px;}
.y14{bottom:850.682880px;}
.yfb{bottom:851.400000px;}
.y3a{bottom:860.940000px;}
.yc3{bottom:864.360000px;}
.y1c4{bottom:866.160000px;}
.y156{bottom:868.500000px;}
.y13{bottom:869.760000px;}
.y78{bottom:870.300000px;}
.y9c{bottom:873.360000px;}
.yfa{bottom:875.160000px;}
.y13f{bottom:877.680000px;}
.y39{bottom:884.880000px;}
.y1c3{bottom:886.860000px;}
.yc2{bottom:888.300000px;}
.y77{bottom:894.240000px;}
.y9b{bottom:897.300000px;}
.y13e{bottom:898.380000px;}
.yf9{bottom:898.920000px;}
.y12{bottom:900.000000px;}
.y1c2{bottom:907.560000px;}
.y38{bottom:908.640000px;}
.yc1{bottom:912.060000px;}
.y76{bottom:918.000000px;}
.y13d{bottom:919.080000px;}
.y9a{bottom:921.060000px;}
.y11{bottom:922.140000px;}
.yf8{bottom:922.860000px;}
.y1c1{bottom:928.260000px;}
.y37{bottom:932.400000px;}
.yc0{bottom:935.820000px;}
.y13c{bottom:939.780000px;}
.y75{bottom:941.760000px;}
.y99{bottom:944.820000px;}
.yf7{bottom:946.620000px;}
.y1c0{bottom:948.960000px;}
.ybf{bottom:959.580000px;}
.y13b{bottom:960.300000px;}
.y10{bottom:964.983600px;}
.y36{bottom:965.160000px;}
.y98{bottom:968.580000px;}
.y1bf{bottom:969.660000px;}
.yf6{bottom:970.380000px;}
.y74{bottom:971.280000px;}
.y13a{bottom:981.000000px;}
.ybe{bottom:983.520000px;}
.yf{bottom:988.739280px;}
.y35{bottom:989.100000px;}
.y1be{bottom:990.360000px;}
.y97{bottom:992.520000px;}
.yf5{bottom:994.140000px;}
.y113{bottom:1007.280000px;}
.y139{bottom:1010.520000px;}
.y1bd{bottom:1011.060000px;}
.ye{bottom:1012.320000px;}
.y34{bottom:1012.860000px;}
.y73{bottom:1016.280000px;}
.yf4{bottom:1018.080000px;}
.y112{bottom:1031.040000px;}
.y138{bottom:1031.220000px;}
.y1bc{bottom:1031.760000px;}
.y33{bottom:1036.620000px;}
.y72{bottom:1040.040000px;}
.yf3{bottom:1041.840000px;}
.y1bb{bottom:1052.460000px;}
.yd{bottom:1054.249020px;}
.y155{bottom:1054.800000px;}
.y32{bottom:1060.380000px;}
.y71{bottom:1063.800000px;}
.yf2{bottom:1065.600000px;}
.y137{bottom:1073.160000px;}
.y154{bottom:1078.740000px;}
.yc{bottom:1079.815860px;}
.y70{bottom:1087.740000px;}
.y31{bottom:1090.620000px;}
.y136{bottom:1093.860000px;}
.yf1{bottom:1094.760000px;}
.yb{bottom:1105.382700px;}
.y6f{bottom:1111.500000px;}
.y135{bottom:1114.560000px;}
.ya{bottom:1130.760000px;}
.y30{bottom:1135.260000px;}
.y4{bottom:1168.020000px;}
.y3{bottom:1189.260000px;}
.y2{bottom:1208.524500px;}
.y1{bottom:1225.980000px;}
.h6{height:32.758500px;}
.he{height:34.114922px;}
.h12{height:40.909922px;}
.h11{height:41.493516px;}
.h16{height:42.327773px;}
.h3{height:47.527312px;}
.h4{height:47.545312px;}
.h15{height:48.224531px;}
.ha{height:48.905156px;}
.h17{height:49.289062px;}
.h19{height:49.992188px;}
.h13{height:52.417969px;}
.h10{height:52.435898px;}
.hf{height:52.461098px;}
.h14{height:52.480538px;}
.h18{height:52.502858px;}
.hb{height:58.121719px;}
.h9{height:58.921875px;}
.hc{height:61.329023px;}
.h5{height:63.175781px;}
.h8{height:63.635625px;}
.h7{height:68.938594px;}
.hd{height:69.687773px;}
.h2{height:75.600000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:38.880000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.620000px;}
.x1{left:146.700000px;}
.x1c{left:148.860000px;}
.x14{left:154.440000px;}
.x17{left:181.620000px;}
.x16{left:207.180000px;}
.xc{left:287.460720px;}
.x4{left:297.180000px;}
.x11{left:343.620000px;}
.x6{left:363.060000px;}
.x8{left:407.159640px;}
.xb{left:449.998560px;}
.x5{left:466.740000px;}
.x19{left:478.260000px;}
.x7{left:493.758360px;}
.xd{left:500.040000px;}
.x2{left:529.555500px;}
.x9{left:536.931360px;}
.xf{left:539.280000px;}
.x1b{left:548.100000px;}
.xa{left:550.620000px;}
.x1d{left:583.380000px;}
.x1e{left:611.460000px;}
.x10{left:615.605040px;}
.xe{left:642.420000px;}
.x13{left:675.180000px;}
.x15{left:679.680000px;}
.x1a{left:777.600000px;}
.x18{left:779.760000px;}
.x12{left:797.760000px;}
@media print{
.v3{vertical-align:-24.326400pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls46{letter-spacing:-0.896000pt;}
.ls2e{letter-spacing:-0.857600pt;}
.ls59{letter-spacing:-0.832000pt;}
.ls20{letter-spacing:-0.690560pt;}
.ls4e{letter-spacing:-0.640000pt;}
.ls58{letter-spacing:-0.576000pt;}
.ls4b{letter-spacing:-0.531200pt;}
.ls26{letter-spacing:-0.478080pt;}
.ls13{letter-spacing:-0.414720pt;}
.ls5a{letter-spacing:-0.384000pt;}
.ls1f{letter-spacing:-0.318720pt;}
.ls1c{letter-spacing:-0.299520pt;}
.ls2f{letter-spacing:-0.257280pt;}
.ls15{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.240000pt;}
.lsb{letter-spacing:-0.235520pt;}
.lsf{letter-spacing:-0.224640pt;}
.ls30{letter-spacing:-0.212480pt;}
.ls14{letter-spacing:-0.207360pt;}
.ls33{letter-spacing:-0.192000pt;}
.ls38{letter-spacing:-0.128000pt;}
.ls40{letter-spacing:-0.117760pt;}
.ls1d{letter-spacing:-0.106240pt;}
.lse{letter-spacing:-0.096000pt;}
.ls11{letter-spacing:-0.074880pt;}
.ls12{letter-spacing:-0.069120pt;}
.ls32{letter-spacing:-0.064000pt;}
.lsc{letter-spacing:-0.053120pt;}
.ls9{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.032000pt;}
.lsa{letter-spacing:0.048000pt;}
.ls25{letter-spacing:0.053120pt;}
.ls23{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.069120pt;}
.ls10{letter-spacing:0.074880pt;}
.ls3f{letter-spacing:0.100928pt;}
.ls1e{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.117760pt;}
.ls6{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.133120pt;}
.ls39{letter-spacing:0.156160pt;}
.ls45{letter-spacing:0.156800pt;}
.ls1{letter-spacing:0.159360pt;}
.ls47{letter-spacing:0.160000pt;}
.ls2d{letter-spacing:0.185920pt;}
.ls54{letter-spacing:0.208448pt;}
.ls24{letter-spacing:0.212480pt;}
.ls4c{letter-spacing:0.235520pt;}
.ls18{letter-spacing:0.249664pt;}
.ls29{letter-spacing:0.256000pt;}
.ls43{letter-spacing:0.294400pt;}
.ls17{letter-spacing:0.318720pt;}
.ls19{letter-spacing:0.320000pt;}
.ls44{letter-spacing:0.321600pt;}
.ls3c{letter-spacing:0.323840pt;}
.ls50{letter-spacing:0.336000pt;}
.ls3b{letter-spacing:0.343040pt;}
.ls36{letter-spacing:0.384000pt;}
.ls21{letter-spacing:0.409024pt;}
.ls4f{letter-spacing:0.441600pt;}
.ls5b{letter-spacing:0.448000pt;}
.ls4a{letter-spacing:0.547136pt;}
.ls57{letter-spacing:0.633600pt;}
.ls16{letter-spacing:0.640000pt;}
.ls56{letter-spacing:0.690560pt;}
.ls55{letter-spacing:0.768000pt;}
.ls2b{letter-spacing:0.796800pt;}
.ls5{letter-spacing:1.280000pt;}
.ls31{letter-spacing:1.286400pt;}
.ls2c{letter-spacing:1.434240pt;}
.ls8{letter-spacing:1.920000pt;}
.ls22{letter-spacing:1.926400pt;}
.ls1b{letter-spacing:2.071680pt;}
.ls7{letter-spacing:2.560000pt;}
.ls2a{letter-spacing:3.200000pt;}
.ls3e{letter-spacing:3.212800pt;}
.ls37{letter-spacing:3.840000pt;}
.ls48{letter-spacing:3.984000pt;}
.ls52{letter-spacing:4.473600pt;}
.ls53{letter-spacing:4.480000pt;}
.ls5c{letter-spacing:4.486400pt;}
.ls51{letter-spacing:4.621440pt;}
.ls1a{letter-spacing:5.120000pt;}
.ls34{letter-spacing:5.258880pt;}
.ls41{letter-spacing:5.274240pt;}
.ls35{letter-spacing:5.444800pt;}
.ls49{letter-spacing:5.896320pt;}
.ls27{letter-spacing:6.400000pt;}
.ls42{letter-spacing:7.040000pt;}
.ls3d{letter-spacing:8.320000pt;}
.ls4d{letter-spacing:11.520000pt;}
.ls28{letter-spacing:24.448000pt;}
.ls3a{letter-spacing:57.088000pt;}
.ws3{word-spacing:-26.282880pt;}
.ws4{word-spacing:-24.330240pt;}
.ws25{word-spacing:-20.517120pt;}
.ws55{word-spacing:-18.048000pt;}
.ws56{word-spacing:-17.792000pt;}
.ws96{word-spacing:-16.768000pt;}
.ws9e{word-spacing:-16.448000pt;}
.ws7d{word-spacing:-16.250880pt;}
.ws26{word-spacing:-16.128000pt;}
.wsa1{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsa2{word-spacing:-15.872000pt;}
.ws72{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws9b{word-spacing:-15.168000pt;}
.ws97{word-spacing:-13.970560pt;}
.ws27{word-spacing:-13.598720pt;}
.ws44{word-spacing:-13.492480pt;}
.ws60{word-spacing:-13.439360pt;}
.ws74{word-spacing:-13.386240pt;}
.ws45{word-spacing:-13.333120pt;}
.ws46{word-spacing:-13.280000pt;}
.ws2b{word-spacing:-13.226880pt;}
.ws28{word-spacing:-13.173760pt;}
.ws75{word-spacing:-13.067520pt;}
.ws2a{word-spacing:-12.961280pt;}
.ws1{word-spacing:-11.952000pt;}
.ws73{word-spacing:-11.063040pt;}
.ws0{word-spacing:-10.848000pt;}
.ws68{word-spacing:-10.720000pt;}
.ws2{word-spacing:-10.608000pt;}
.ws57{word-spacing:-10.462720pt;}
.ws29{word-spacing:-8.640000pt;}
.ws64{word-spacing:-3.968000pt;}
.ws81{word-spacing:-3.840000pt;}
.ws63{word-spacing:-3.584000pt;}
.ws42{word-spacing:-3.346560pt;}
.ws6a{word-spacing:-3.200000pt;}
.ws43{word-spacing:-2.974720pt;}
.ws66{word-spacing:-2.944000pt;}
.ws7b{word-spacing:-2.709120pt;}
.ws69{word-spacing:-2.688000pt;}
.ws5c{word-spacing:-2.560000pt;}
.ws7a{word-spacing:-2.496640pt;}
.ws78{word-spacing:-2.337280pt;}
.ws76{word-spacing:-2.304000pt;}
.ws79{word-spacing:-2.284160pt;}
.ws91{word-spacing:-2.112000pt;}
.ws9c{word-spacing:-2.071680pt;}
.ws70{word-spacing:-2.048000pt;}
.ws21{word-spacing:-1.920000pt;}
.ws9d{word-spacing:-1.859200pt;}
.ws62{word-spacing:-1.664000pt;}
.ws84{word-spacing:-1.434240pt;}
.ws6b{word-spacing:-1.408000pt;}
.ws1d{word-spacing:-1.280000pt;}
.ws92{word-spacing:-1.221760pt;}
.ws19{word-spacing:-1.024000pt;}
.ws4e{word-spacing:-0.796800pt;}
.ws33{word-spacing:-0.768000pt;}
.ws13{word-spacing:-0.647680pt;}
.ws16{word-spacing:-0.640000pt;}
.ws85{word-spacing:-0.637440pt;}
.ws4d{word-spacing:-0.584320pt;}
.wsa3{word-spacing:-0.512000pt;}
.ws4b{word-spacing:-0.384000pt;}
.ws87{word-spacing:-0.343040pt;}
.ws36{word-spacing:-0.318720pt;}
.ws11{word-spacing:-0.256000pt;}
.ws8e{word-spacing:-0.235520pt;}
.ws12{word-spacing:-0.159360pt;}
.wsc{word-spacing:-0.149760pt;}
.ws1e{word-spacing:-0.128000pt;}
.ws3b{word-spacing:-0.106240pt;}
.wsb{word-spacing:-0.074880pt;}
.ws4a{word-spacing:-0.064000pt;}
.ws7c{word-spacing:-0.053120pt;}
.ws7{word-spacing:0.000000pt;}
.ws37{word-spacing:0.053120pt;}
.wsd{word-spacing:0.069120pt;}
.ws71{word-spacing:0.106240pt;}
.ws8d{word-spacing:0.117760pt;}
.ws6f{word-spacing:0.128000pt;}
.ws9{word-spacing:0.144000pt;}
.ws65{word-spacing:0.192000pt;}
.ws10{word-spacing:0.207360pt;}
.ws3a{word-spacing:0.212480pt;}
.wsa{word-spacing:0.224640pt;}
.ws8{word-spacing:0.235520pt;}
.ws1c{word-spacing:0.256000pt;}
.ws77{word-spacing:0.265600pt;}
.ws89{word-spacing:0.318720pt;}
.ws8b{word-spacing:0.371840pt;}
.ws7e{word-spacing:0.412160pt;}
.wsf{word-spacing:0.414720pt;}
.ws98{word-spacing:0.428800pt;}
.ws51{word-spacing:0.478080pt;}
.ws8c{word-spacing:0.512000pt;}
.ws8a{word-spacing:0.531200pt;}
.ws99{word-spacing:0.576000pt;}
.ws1f{word-spacing:0.640000pt;}
.ws40{word-spacing:0.690560pt;}
.wse{word-spacing:0.760320pt;}
.ws6c{word-spacing:0.849920pt;}
.ws5a{word-spacing:0.857600pt;}
.ws2e{word-spacing:0.896000pt;}
.ws5d{word-spacing:1.009280pt;}
.ws9f{word-spacing:1.024000pt;}
.ws3d{word-spacing:1.115520pt;}
.ws2d{word-spacing:1.152000pt;}
.wsa0{word-spacing:1.216000pt;}
.ws17{word-spacing:1.280000pt;}
.ws3c{word-spacing:1.328000pt;}
.ws41{word-spacing:1.487360pt;}
.ws18{word-spacing:1.536000pt;}
.ws82{word-spacing:1.540480pt;}
.ws94{word-spacing:1.752960pt;}
.ws24{word-spacing:1.792000pt;}
.ws15{word-spacing:1.920000pt;}
.ws35{word-spacing:1.965440pt;}
.ws90{word-spacing:2.112000pt;}
.ws38{word-spacing:2.124800pt;}
.ws22{word-spacing:2.176000pt;}
.ws95{word-spacing:2.177920pt;}
.ws39{word-spacing:2.390400pt;}
.ws14{word-spacing:2.560000pt;}
.ws3e{word-spacing:2.602880pt;}
.ws3f{word-spacing:2.762240pt;}
.ws23{word-spacing:2.816000pt;}
.ws83{word-spacing:2.944000pt;}
.ws5e{word-spacing:3.027840pt;}
.ws9a{word-spacing:3.072000pt;}
.ws20{word-spacing:3.200000pt;}
.ws5f{word-spacing:3.399680pt;}
.ws59{word-spacing:3.456000pt;}
.ws47{word-spacing:3.665280pt;}
.ws31{word-spacing:3.840000pt;}
.ws88{word-spacing:3.877760pt;}
.ws48{word-spacing:4.037120pt;}
.ws61{word-spacing:4.096000pt;}
.ws50{word-spacing:4.302720pt;}
.ws1a{word-spacing:4.352000pt;}
.ws32{word-spacing:4.480000pt;}
.ws4f{word-spacing:4.515200pt;}
.ws1b{word-spacing:4.736000pt;}
.ws53{word-spacing:4.940160pt;}
.ws6d{word-spacing:5.046400pt;}
.ws34{word-spacing:5.120000pt;}
.ws52{word-spacing:5.312000pt;}
.ws30{word-spacing:5.376000pt;}
.ws6e{word-spacing:5.471360pt;}
.ws54{word-spacing:5.577600pt;}
.ws2c{word-spacing:5.760000pt;}
.ws5b{word-spacing:6.016000pt;}
.ws58{word-spacing:6.400000pt;}
.ws49{word-spacing:6.656000pt;}
.ws2f{word-spacing:7.040000pt;}
.ws67{word-spacing:7.296000pt;}
.ws4c{word-spacing:7.680000pt;}
.ws86{word-spacing:7.936000pt;}
.ws80{word-spacing:8.320000pt;}
.ws7f{word-spacing:8.576000pt;}
.ws8f{word-spacing:11.776000pt;}
.ws93{word-spacing:71.499520pt;}
._c{margin-left:-4.366400pt;}
._7{margin-left:-3.462720pt;}
._9{margin-left:-2.282944pt;}
._2{margin-left:-0.945600pt;}
._3{width:1.271360pt;}
._4{width:2.368000pt;}
._8{width:3.397120pt;}
._5{width:4.296640pt;}
._6{width:5.348160pt;}
._a{width:6.948480pt;}
._b{width:9.203840pt;}
._f{width:59.968000pt;}
._d{width:72.007168pt;}
._e{width:75.968000pt;}
._1{width:140.208000pt;}
._0{width:518.448000pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:14.240000pt;}
.y7{bottom:71.040000pt;}
.y6{bottom:100.160000pt;}
.y8{bottom:101.120000pt;}
.y5{bottom:129.280000pt;}
.y6e{bottom:147.015200pt;}
.y57{bottom:147.020160pt;}
.y175{bottom:147.030080pt;}
.y96{bottom:147.035040pt;}
.yaa{bottom:151.680000pt;}
.y1ba{bottom:153.600000pt;}
.y6d{bottom:162.380160pt;}
.y56{bottom:162.385120pt;}
.yf0{bottom:162.390080pt;}
.y111{bottom:162.395040pt;}
.y1f5{bottom:162.880000pt;}
.y2f{bottom:165.120000pt;}
.ybd{bottom:165.280000pt;}
.y95{bottom:167.040000pt;}
.y1b9{bottom:172.000000pt;}
.ya9{bottom:173.920000pt;}
.y6c{bottom:177.745120pt;}
.y55{bottom:177.750080pt;}
.yef{bottom:177.755040pt;}
.ye5{bottom:180.960000pt;}
.y1f4{bottom:181.280000pt;}
.y94{bottom:182.400000pt;}
.y1df{bottom:183.680000pt;}
.y2e{bottom:185.280000pt;}
.ybc{bottom:186.560000pt;}
.y153{bottom:189.120000pt;}
.y1b8{bottom:190.400000pt;}
.ya8{bottom:192.320000pt;}
.y93{bottom:193.099520pt;}
.y6b{bottom:193.110080pt;}
.y54{bottom:193.115040pt;}
.yee{bottom:197.760000pt;}
.y1f3{bottom:199.680000pt;}
.ye4{bottom:202.080000pt;}
.y174{bottom:204.480000pt;}
.y152{bottom:207.520000pt;}
.ybb{bottom:207.680000pt;}
.y92{bottom:208.464480pt;}
.y6a{bottom:208.475040pt;}
.y1b7{bottom:208.800000pt;}
.y53{bottom:213.120000pt;}
.y2d{bottom:213.600000pt;}
.y1f2{bottom:218.080000pt;}
.yed{bottom:219.840000pt;}
.y1de{bottom:220.320000pt;}
.y173{bottom:222.880000pt;}
.ye3{bottom:223.360000pt;}
.y91{bottom:223.829440pt;}
.y52{bottom:223.834400pt;}
.y69{bottom:223.840000pt;}
.y1b6{bottom:227.200000pt;}
.y127{bottom:228.480000pt;}
.yba{bottom:228.800000pt;}
.y2c{bottom:233.760000pt;}
.yd9{bottom:235.200000pt;}
.y1f1{bottom:236.320000pt;}
.yec{bottom:238.240000pt;}
.y1dd{bottom:238.720000pt;}
.y90{bottom:239.035040pt;}
.y51{bottom:243.680000pt;}
.y1b5{bottom:245.600000pt;}
.yb9{bottom:249.920000pt;}
.y68{bottom:250.560000pt;}
.ye2{bottom:252.480000pt;}
.yd8{bottom:253.600000pt;}
.y1a3{bottom:253.920000pt;}
.y2b{bottom:254.080000pt;}
.y1f0{bottom:254.720000pt;}
.y1dc{bottom:257.120000pt;}
.y151{bottom:257.760000pt;}
.y8f{bottom:259.040000pt;}
.y1b4{bottom:264.000000pt;}
.y50{bottom:265.760000pt;}
.yeb{bottom:266.871840pt;}
.y67{bottom:268.960000pt;}
.y1ef{bottom:273.120000pt;}
.ye1{bottom:273.600000pt;}
.y2a{bottom:274.240000pt;}
.y1db{bottom:275.520000pt;}
.y150{bottom:279.040000pt;}
.yb8{bottom:279.200000pt;}
.y1a2{bottom:280.320000pt;}
.y8e{bottom:281.120000pt;}
.yea{bottom:282.236800pt;}
.y1b3{bottom:282.400000pt;}
.y4f{bottom:284.160000pt;}
.y1ee{bottom:291.520000pt;}
.y110{bottom:291.680000pt;}
.y134{bottom:292.000000pt;}
.y1da{bottom:293.920000pt;}
.y29{bottom:294.560000pt;}
.ye0{bottom:294.720000pt;}
.y1a1{bottom:298.720000pt;}
.y8d{bottom:299.520000pt;}
.y14f{bottom:300.160000pt;}
.yb7{bottom:300.320000pt;}
.y1b2{bottom:300.800000pt;}
.y186{bottom:301.760000pt;}
.yd7{bottom:308.000000pt;}
.y66{bottom:308.480000pt;}
.y1ed{bottom:309.920000pt;}
.y133{bottom:310.400000pt;}
.y126{bottom:311.200000pt;}
.y1d9{bottom:312.320000pt;}
.y10f{bottom:312.800000pt;}
.y28{bottom:314.720000pt;}
.ydf{bottom:316.000000pt;}
.y1a0{bottom:317.120000pt;}
.y1b1{bottom:319.200000pt;}
.y14e{bottom:321.280000pt;}
.yb6{bottom:321.440000pt;}
.y185{bottom:322.880000pt;}
.y4e{bottom:326.240000pt;}
.y1ec{bottom:328.320000pt;}
.y132{bottom:328.800000pt;}
.yd6{bottom:329.280000pt;}
.y65{bottom:329.600000pt;}
.y1d8{bottom:330.720000pt;}
.y125{bottom:332.320000pt;}
.y10e{bottom:333.920000pt;}
.y8c{bottom:334.400000pt;}
.y27{bottom:335.040000pt;}
.yde{bottom:337.120000pt;}
.y1b0{bottom:337.600000pt;}
.y172{bottom:340.000000pt;}
.y14d{bottom:342.400000pt;}
.yb5{bottom:342.560000pt;}
.y19f{bottom:343.520000pt;}
.y184{bottom:344.000000pt;}
.y1eb{bottom:346.720000pt;}
.y4d{bottom:347.360000pt;}
.y1d7{bottom:349.120000pt;}
.yd5{bottom:350.400000pt;}
.y64{bottom:350.720000pt;}
.y124{bottom:353.440000pt;}
.y18e{bottom:353.760000pt;}
.y26{bottom:355.200000pt;}
.y8b{bottom:355.680000pt;}
.y1af{bottom:356.000000pt;}
.y131{bottom:357.920000pt;}
.y171{bottom:361.120000pt;}
.y19e{bottom:361.920000pt;}
.y10d{bottom:363.040000pt;}
.ydd{bottom:363.360000pt;}
.y14c{bottom:363.680000pt;}
.yb4{bottom:363.840000pt;}
.y183{bottom:365.120000pt;}
.y1d6{bottom:367.520000pt;}
.y4c{bottom:368.480000pt;}
.yd4{bottom:371.520000pt;}
.y63{bottom:372.000000pt;}
.y1ae{bottom:374.400000pt;}
.y123{bottom:374.560000pt;}
.y25{bottom:375.520000pt;}
.y8a{bottom:376.800000pt;}
.y130{bottom:379.040000pt;}
.y18d{bottom:380.160000pt;}
.y10c{bottom:380.960000pt;}
.ydc{bottom:381.760000pt;}
.y170{bottom:382.240000pt;}
.y1ea{bottom:383.520000pt;}
.y14b{bottom:384.800000pt;}
.yb3{bottom:384.960000pt;}
.y1d5{bottom:385.920000pt;}
.y182{bottom:386.400000pt;}
.y19d{bottom:388.320000pt;}
.y4b{bottom:389.600000pt;}
.yd3{bottom:392.640000pt;}
.y1ad{bottom:392.800000pt;}
.y62{bottom:393.120000pt;}
.y24{bottom:395.680000pt;}
.y122{bottom:395.840000pt;}
.y89{bottom:397.920000pt;}
.y18c{bottom:398.560000pt;}
.y12f{bottom:400.320000pt;}
.y1e9{bottom:401.920000pt;}
.y16f{bottom:403.360000pt;}
.y1d4{bottom:404.320000pt;}
.y14a{bottom:405.920000pt;}
.yb2{bottom:406.080000pt;}
.y19c{bottom:406.720000pt;}
.y181{bottom:407.520000pt;}
.y10b{bottom:410.240000pt;}
.y4a{bottom:410.880000pt;}
.y1ac{bottom:411.200000pt;}
.yd2{bottom:413.920000pt;}
.y18b{bottom:416.960000pt;}
.y1e8{bottom:420.320000pt;}
.ydb{bottom:420.640000pt;}
.y12e{bottom:421.440000pt;}
.y23{bottom:422.080000pt;}
.y61{bottom:422.240000pt;}
.y1d3{bottom:422.720000pt;}
.y16e{bottom:424.640000pt;}
.y121{bottom:424.960000pt;}
.y88{bottom:427.040000pt;}
.yb1{bottom:427.200000pt;}
.y1ab{bottom:429.600000pt;}
.y10a{bottom:431.360000pt;}
.y49{bottom:432.000000pt;}
.y19b{bottom:433.120000pt;}
.yd1{bottom:435.040000pt;}
.y180{bottom:436.640000pt;}
.y1e7{bottom:438.720000pt;}
.yda{bottom:441.120000pt;}
.y12d{bottom:442.560000pt;}
.y60{bottom:443.360000pt;}
.y16d{bottom:445.760000pt;}
.y120{bottom:446.080000pt;}
.y1aa{bottom:448.000000pt;}
.y87{bottom:448.320000pt;}
.yb0{bottom:448.480000pt;}
.y22{bottom:450.400000pt;}
.y19a{bottom:451.520000pt;}
.y109{bottom:452.640000pt;}
.y48{bottom:453.120000pt;}
.y1e6{bottom:457.120000pt;}
.y17f{bottom:457.760000pt;}
.y18a{bottom:461.760000pt;}
.y12c{bottom:463.680000pt;}
.yd0{bottom:464.160000pt;}
.y5f{bottom:464.640000pt;}
.y1a9{bottom:465.760000pt;}
.y16c{bottom:466.880000pt;}
.y11f{bottom:467.200000pt;}
.y1d2{bottom:467.520000pt;}
.y86{bottom:469.440000pt;}
.y199{bottom:469.920000pt;}
.y21{bottom:470.560000pt;}
.y108{bottom:473.760000pt;}
.y47{bottom:474.240000pt;}
.yaf{bottom:474.720000pt;}
.y1e5{bottom:475.520000pt;}
.y149{bottom:477.440000pt;}
.y17e{bottom:479.040000pt;}
.y189{bottom:480.160000pt;}
.y12b{bottom:484.960000pt;}
.ycf{bottom:485.280000pt;}
.y5e{bottom:485.760000pt;}
.y1d1{bottom:485.920000pt;}
.y16b{bottom:488.000000pt;}
.y11e{bottom:488.480000pt;}
.y1a8{bottom:490.240000pt;}
.y85{bottom:490.560000pt;}
.yae{bottom:493.120000pt;}
.y1e4{bottom:493.920000pt;}
.y107{bottom:494.880000pt;}
.y46{bottom:495.360000pt;}
.y198{bottom:496.320000pt;}
.y148{bottom:498.560000pt;}
.y20{bottom:498.880000pt;}
.y17d{bottom:500.160000pt;}
.y1d0{bottom:504.320000pt;}
.yce{bottom:506.560000pt;}
.y5d{bottom:506.880000pt;}
.y11d{bottom:509.600000pt;}
.y84{bottom:511.680000pt;}
.y1e3{bottom:512.320000pt;}
.y12a{bottom:512.964000pt;}
.y197{bottom:514.720000pt;}
.y45{bottom:516.640000pt;}
.y16a{bottom:517.280000pt;}
.y1f{bottom:519.040000pt;}
.y147{bottom:519.680000pt;}
.y17c{bottom:521.280000pt;}
.y106{bottom:522.081600pt;}
.y1cf{bottom:522.720000pt;}
.y188{bottom:524.960000pt;}
.ycd{bottom:527.680000pt;}
.y5c{bottom:528.000000pt;}
.y1a7{bottom:529.920000pt;}
.ya7{bottom:530.400000pt;}
.y129{bottom:530.560000pt;}
.y1e2{bottom:530.720000pt;}
.yad{bottom:531.844640pt;}
.y83{bottom:532.960000pt;}
.y196{bottom:533.120000pt;}
.y105{bottom:537.120000pt;}
.y169{bottom:538.400000pt;}
.y11c{bottom:538.720000pt;}
.y1e{bottom:539.360000pt;}
.y146{bottom:540.960000pt;}
.y1ce{bottom:541.120000pt;}
.y17b{bottom:542.400000pt;}
.y44{bottom:545.760000pt;}
.ycc{bottom:548.800000pt;}
.y1e1{bottom:549.120000pt;}
.y5b{bottom:549.280000pt;}
.yac{bottom:549.600000pt;}
.y195{bottom:551.520000pt;}
.y128{bottom:553.760000pt;}
.y82{bottom:554.080000pt;}
.y160{bottom:555.520000pt;}
.ya6{bottom:556.800000pt;}
.y1a6{bottom:557.924000pt;}
.y104{bottom:558.400000pt;}
.y1d{bottom:559.520000pt;}
.y11b{bottom:559.840000pt;}
.y145{bottom:562.080000pt;}
.y17a{bottom:563.520000pt;}
.y43{bottom:566.880000pt;}
.y1e0{bottom:567.520000pt;}
.yab{bottom:569.920000pt;}
.y81{bottom:575.200000pt;}
.y1a5{bottom:575.520000pt;}
.y15f{bottom:576.800000pt;}
.y103{bottom:579.520000pt;}
.y1c{bottom:579.840000pt;}
.y168{bottom:580.640000pt;}
.y11a{bottom:581.120000pt;}
.y144{bottom:583.200000pt;}
.y179{bottom:584.800000pt;}
.y5a{bottom:585.284000pt;}
.ya5{bottom:585.920000pt;}
.y42{bottom:588.000000pt;}
.ycb{bottom:591.200000pt;}
.y1a4{bottom:596.000000pt;}
.y80{bottom:596.320000pt;}
.y15e{bottom:597.920000pt;}
.y1b{bottom:600.000000pt;}
.y102{bottom:600.640000pt;}
.y167{bottom:601.760000pt;}
.y119{bottom:602.240000pt;}
.y59{bottom:602.880000pt;}
.y1cd{bottom:604.320000pt;}
.y178{bottom:605.920000pt;}
.ya4{bottom:607.200000pt;}
.y41{bottom:609.280000pt;}
.yca{bottom:612.320000pt;}
.y194{bottom:614.720000pt;}
.y7f{bottom:617.600000pt;}
.y15d{bottom:619.040000pt;}
.y1a{bottom:620.320000pt;}
.y101{bottom:621.760000pt;}
.y1cc{bottom:622.720000pt;}
.y166{bottom:623.040000pt;}
.y58{bottom:623.360000pt;}
.y177{bottom:627.040000pt;}
.ya3{bottom:628.320000pt;}
.y40{bottom:630.400000pt;}
.y193{bottom:633.120000pt;}
.yc9{bottom:633.440000pt;}
.y143{bottom:633.600000pt;}
.y7e{bottom:638.720000pt;}
.y15c{bottom:640.160000pt;}
.y19{bottom:640.480000pt;}
.y1cb{bottom:641.120000pt;}
.y100{bottom:643.040000pt;}
.y165{bottom:644.160000pt;}
.y118{bottom:644.480000pt;}
.ya2{bottom:649.440000pt;}
.y3f{bottom:651.520000pt;}
.y176{bottom:652.960000pt;}
.yc8{bottom:654.560000pt;}
.y142{bottom:654.720000pt;}
.y1ca{bottom:659.520000pt;}
.y18{bottom:660.800000pt;}
.y15b{bottom:661.440000pt;}
.ye9{bottom:662.880000pt;}
.yff{bottom:664.160000pt;}
.y187{bottom:664.800000pt;}
.y164{bottom:665.280000pt;}
.y117{bottom:665.600000pt;}
.y7d{bottom:667.840000pt;}
.ya1{bottom:670.560000pt;}
.y3e{bottom:672.640000pt;}
.yc7{bottom:675.680000pt;}
.y141{bottom:675.840000pt;}
.y1c9{bottom:677.920000pt;}
.y192{bottom:679.524000pt;}
.y17{bottom:680.960000pt;}
.ye8{bottom:681.280000pt;}
.y15a{bottom:682.560000pt;}
.yfe{bottom:685.280000pt;}
.y163{bottom:686.400000pt;}
.y116{bottom:686.880000pt;}
.y7c{bottom:688.960000pt;}
.ya0{bottom:691.680000pt;}
.y1c8{bottom:696.320000pt;}
.y140{bottom:696.960000pt;}
.y191{bottom:697.120000pt;}
.ye7{bottom:699.680000pt;}
.y16{bottom:701.280000pt;}
.y3d{bottom:701.920000pt;}
.y159{bottom:703.680000pt;}
.yc6{bottom:704.960000pt;}
.y7b{bottom:710.240000pt;}
.y162{bottom:712.155040pt;}
.y115{bottom:712.804480pt;}
.y9f{bottom:712.960000pt;}
.yfd{bottom:714.400000pt;}
.y1c7{bottom:714.720000pt;}
.ye6{bottom:718.080000pt;}
.y190{bottom:721.120000pt;}
.y3c{bottom:723.040000pt;}
.y158{bottom:724.800000pt;}
.yc5{bottom:726.080000pt;}
.y15{bottom:727.520000pt;}
.y114{bottom:729.600000pt;}
.y7a{bottom:731.360000pt;}
.y1c6{bottom:733.120000pt;}
.y9e{bottom:734.080000pt;}
.yfc{bottom:735.680000pt;}
.y18f{bottom:744.000000pt;}
.y3b{bottom:744.160000pt;}
.y157{bottom:746.080000pt;}
.yc4{bottom:747.200000pt;}
.y161{bottom:748.000000pt;}
.y1c5{bottom:751.520000pt;}
.y79{bottom:752.480000pt;}
.y9d{bottom:755.200000pt;}
.y14{bottom:756.162560pt;}
.yfb{bottom:756.800000pt;}
.y3a{bottom:765.280000pt;}
.yc3{bottom:768.320000pt;}
.y1c4{bottom:769.920000pt;}
.y156{bottom:772.000000pt;}
.y13{bottom:773.120000pt;}
.y78{bottom:773.600000pt;}
.y9c{bottom:776.320000pt;}
.yfa{bottom:777.920000pt;}
.y13f{bottom:780.160000pt;}
.y39{bottom:786.560000pt;}
.y1c3{bottom:788.320000pt;}
.yc2{bottom:789.600000pt;}
.y77{bottom:794.880000pt;}
.y9b{bottom:797.600000pt;}
.y13e{bottom:798.560000pt;}
.yf9{bottom:799.040000pt;}
.y12{bottom:800.000000pt;}
.y1c2{bottom:806.720000pt;}
.y38{bottom:807.680000pt;}
.yc1{bottom:810.720000pt;}
.y76{bottom:816.000000pt;}
.y13d{bottom:816.960000pt;}
.y9a{bottom:818.720000pt;}
.y11{bottom:819.680000pt;}
.yf8{bottom:820.320000pt;}
.y1c1{bottom:825.120000pt;}
.y37{bottom:828.800000pt;}
.yc0{bottom:831.840000pt;}
.y13c{bottom:835.360000pt;}
.y75{bottom:837.120000pt;}
.y99{bottom:839.840000pt;}
.yf7{bottom:841.440000pt;}
.y1c0{bottom:843.520000pt;}
.ybf{bottom:852.960000pt;}
.y13b{bottom:853.600000pt;}
.y10{bottom:857.763200pt;}
.y36{bottom:857.920000pt;}
.y98{bottom:860.960000pt;}
.y1bf{bottom:861.920000pt;}
.yf6{bottom:862.560000pt;}
.y74{bottom:863.360000pt;}
.y13a{bottom:872.000000pt;}
.ybe{bottom:874.240000pt;}
.yf{bottom:878.879360pt;}
.y35{bottom:879.200000pt;}
.y1be{bottom:880.320000pt;}
.y97{bottom:882.240000pt;}
.yf5{bottom:883.680000pt;}
.y113{bottom:895.360000pt;}
.y139{bottom:898.240000pt;}
.y1bd{bottom:898.720000pt;}
.ye{bottom:899.840000pt;}
.y34{bottom:900.320000pt;}
.y73{bottom:903.360000pt;}
.yf4{bottom:904.960000pt;}
.y112{bottom:916.480000pt;}
.y138{bottom:916.640000pt;}
.y1bc{bottom:917.120000pt;}
.y33{bottom:921.440000pt;}
.y72{bottom:924.480000pt;}
.yf3{bottom:926.080000pt;}
.y1bb{bottom:935.520000pt;}
.yd{bottom:937.110240pt;}
.y155{bottom:937.600000pt;}
.y32{bottom:942.560000pt;}
.y71{bottom:945.600000pt;}
.yf2{bottom:947.200000pt;}
.y137{bottom:953.920000pt;}
.y154{bottom:958.880000pt;}
.yc{bottom:959.836320pt;}
.y70{bottom:966.880000pt;}
.y31{bottom:969.440000pt;}
.y136{bottom:972.320000pt;}
.yf1{bottom:973.120000pt;}
.yb{bottom:982.562400pt;}
.y6f{bottom:988.000000pt;}
.y135{bottom:990.720000pt;}
.ya{bottom:1005.120000pt;}
.y30{bottom:1009.120000pt;}
.y4{bottom:1038.240000pt;}
.y3{bottom:1057.120000pt;}
.y2{bottom:1074.244000pt;}
.y1{bottom:1089.760000pt;}
.h6{height:29.118667pt;}
.he{height:30.324375pt;}
.h12{height:36.364375pt;}
.h11{height:36.883125pt;}
.h16{height:37.624687pt;}
.h3{height:42.246500pt;}
.h4{height:42.262500pt;}
.h15{height:42.866250pt;}
.ha{height:43.471250pt;}
.h17{height:43.812500pt;}
.h19{height:44.437500pt;}
.h13{height:46.593750pt;}
.h10{height:46.609688pt;}
.hf{height:46.632088pt;}
.h14{height:46.649368pt;}
.h18{height:46.669207pt;}
.hb{height:51.663750pt;}
.h9{height:52.375000pt;}
.hc{height:54.514687pt;}
.h5{height:56.156250pt;}
.h8{height:56.565000pt;}
.h7{height:61.278750pt;}
.hd{height:61.944688pt;}
.h2{height:67.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:34.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.440000pt;}
.x1{left:130.400000pt;}
.x1c{left:132.320000pt;}
.x14{left:137.280000pt;}
.x17{left:161.440000pt;}
.x16{left:184.160000pt;}
.xc{left:255.520640pt;}
.x4{left:264.160000pt;}
.x11{left:305.440000pt;}
.x6{left:322.720000pt;}
.x8{left:361.919680pt;}
.xb{left:399.998720pt;}
.x5{left:414.880000pt;}
.x19{left:425.120000pt;}
.x7{left:438.896320pt;}
.xd{left:444.480000pt;}
.x2{left:470.716000pt;}
.x9{left:477.272320pt;}
.xf{left:479.360000pt;}
.x1b{left:487.200000pt;}
.xa{left:489.440000pt;}
.x1d{left:518.560000pt;}
.x1e{left:543.520000pt;}
.x10{left:547.204480pt;}
.xe{left:571.040000pt;}
.x13{left:600.160000pt;}
.x15{left:604.160000pt;}
.x1a{left:691.200000pt;}
.x18{left:693.120000pt;}
.x12{left:709.120000pt;}
}




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