
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4ac8ff90f397be409a6e7186.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_1872a56ec9d819e2f734ff60.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_1064949079a31ff8e7747e33.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_2250659d4e8e01cc12c6e143.woff')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_a5a1288ac0d48e5e6f9cc954.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_dc3a06048447b7054e3c74ba.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_54516131592217ddfb7c5352.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_51d7697c73b3f292a1678398.woff')format("woff");}.ff9{font-family:ff9;line-height:0.682617;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_2b1444b315dc80055d71e71c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.690918;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls56{letter-spacing:-0.606000px;}
.ls61{letter-spacing:-0.551400px;}
.ls44{letter-spacing:-0.546600px;}
.ls4e{letter-spacing:-0.520800px;}
.ls2e{letter-spacing:-0.513600px;}
.ls26{letter-spacing:-0.485400px;}
.ls75{letter-spacing:-0.453000px;}
.ls5c{letter-spacing:-0.438000px;}
.ls1b{letter-spacing:-0.436800px;}
.ls1c{letter-spacing:-0.432000px;}
.ls2d{letter-spacing:-0.427200px;}
.ls5e{letter-spacing:-0.426000px;}
.ls59{letter-spacing:-0.420600px;}
.ls51{letter-spacing:-0.409800px;}
.ls19{letter-spacing:-0.399000px;}
.ls2f{letter-spacing:-0.375000px;}
.ls23{letter-spacing:-0.368400px;}
.ls42{letter-spacing:-0.307200px;}
.ls47{letter-spacing:-0.291600px;}
.ls58{letter-spacing:-0.290400px;}
.ls4f{letter-spacing:-0.285600px;}
.ls62{letter-spacing:-0.266400px;}
.ls60{letter-spacing:-0.252600px;}
.ls72{letter-spacing:-0.246600px;}
.ls5f{letter-spacing:-0.246000px;}
.ls13{letter-spacing:-0.243600px;}
.ls40{letter-spacing:-0.237000px;}
.ls45{letter-spacing:-0.232800px;}
.ls4c{letter-spacing:-0.216600px;}
.ls14{letter-spacing:-0.201000px;}
.lsf{letter-spacing:-0.195600px;}
.ls35{letter-spacing:-0.191400px;}
.ls11{letter-spacing:-0.186600px;}
.ls36{letter-spacing:-0.186000px;}
.ls57{letter-spacing:-0.179400px;}
.ls21{letter-spacing:-0.178800px;}
.ls43{letter-spacing:-0.162000px;}
.ls16{letter-spacing:-0.160800px;}
.ls15{letter-spacing:-0.153600px;}
.lsa{letter-spacing:-0.135000px;}
.ls22{letter-spacing:-0.125400px;}
.ls1a{letter-spacing:-0.121200px;}
.ls6e{letter-spacing:-0.096600px;}
.ls2c{letter-spacing:-0.093600px;}
.ls3f{letter-spacing:-0.093000px;}
.ls9{letter-spacing:-0.090000px;}
.ls4b{letter-spacing:-0.082200px;}
.ls38{letter-spacing:-0.078000px;}
.ls46{letter-spacing:-0.066000px;}
.ls25{letter-spacing:-0.038880px;}
.ls67{letter-spacing:-0.037800px;}
.ls3e{letter-spacing:-0.018360px;}
.ls6d{letter-spacing:-0.015480px;}
.ls6a{letter-spacing:-0.014760px;}
.ls55{letter-spacing:-0.013320px;}
.ls24{letter-spacing:-0.011160px;}
.ls69{letter-spacing:-0.009000px;}
.ls27{letter-spacing:-0.008280px;}
.ls68{letter-spacing:-0.007560px;}
.ls37{letter-spacing:-0.006120px;}
.ls8{letter-spacing:0.000000px;}
.ls6b{letter-spacing:0.020160px;}
.ls74{letter-spacing:0.047520px;}
.ls1e{letter-spacing:0.048960px;}
.ls53{letter-spacing:0.051840px;}
.ls41{letter-spacing:0.052560px;}
.ls66{letter-spacing:0.060600px;}
.ls48{letter-spacing:0.064800px;}
.lsc{letter-spacing:0.065400px;}
.ls2{letter-spacing:0.065520px;}
.ls7{letter-spacing:0.067200px;}
.ls1d{letter-spacing:0.074160px;}
.ls20{letter-spacing:0.074400px;}
.ls1{letter-spacing:0.090000px;}
.ls0{letter-spacing:0.093600px;}
.ls39{letter-spacing:0.098400px;}
.lsb{letter-spacing:0.099600px;}
.ls6c{letter-spacing:0.105600px;}
.ls2b{letter-spacing:0.107400px;}
.ls34{letter-spacing:0.115800px;}
.ls10{letter-spacing:0.116400px;}
.lse{letter-spacing:0.119400px;}
.ls5b{letter-spacing:0.123000px;}
.ls3d{letter-spacing:0.127200px;}
.ls3c{letter-spacing:0.135000px;}
.ls3b{letter-spacing:0.140040px;}
.ls1f{letter-spacing:0.143400px;}
.ls28{letter-spacing:0.159000px;}
.ls73{letter-spacing:0.160800px;}
.ls4{letter-spacing:0.164400px;}
.ls12{letter-spacing:0.173400px;}
.ls31{letter-spacing:0.173520px;}
.ls65{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.180600px;}
.ls18{letter-spacing:0.181200px;}
.ls4d{letter-spacing:0.198000px;}
.ls17{letter-spacing:0.199200px;}
.ls5d{letter-spacing:0.202200px;}
.ls54{letter-spacing:0.206400px;}
.ls3{letter-spacing:0.425520px;}
.ls29{letter-spacing:2.253600px;}
.ls52{letter-spacing:4.413600px;}
.ls2a{letter-spacing:5.133600px;}
.ls70{letter-spacing:5.493600px;}
.ls5a{letter-spacing:6.187200px;}
.ls6{letter-spacing:7.920000px;}
.ls3a{letter-spacing:8.373600px;}
.ls50{letter-spacing:8.707200px;}
.ls5{letter-spacing:9.813600px;}
.ls71{letter-spacing:14.853600px;}
.ls6f{letter-spacing:17.373600px;}
.ls64{letter-spacing:47.726640px;}
.ls4a{letter-spacing:55.406640px;}
.ls49{letter-spacing:63.566640px;}
.ls33{letter-spacing:74.613600px;}
.ls63{letter-spacing:80.846640px;}
.ls32{letter-spacing:85.773600px;}
.ls30{letter-spacing:181.173600px;}
.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;}
}
.ws43{word-spacing:-60.240000px;}
.ws15{word-spacing:-60.120000px;}
.ws0{word-spacing:-38.880000px;}
.ws3{word-spacing:-18.553200px;}
.ws24{word-spacing:-16.713360px;}
.ws5{word-spacing:-14.674200px;}
.ws17{word-spacing:-14.493600px;}
.ws28{word-spacing:-14.372400px;}
.ws49{word-spacing:-13.432800px;}
.ws52{word-spacing:-13.428600px;}
.ws12{word-spacing:-13.425600px;}
.ws45{word-spacing:-13.424400px;}
.ws27{word-spacing:-13.411800px;}
.ws13{word-spacing:-13.407600px;}
.ws3e{word-spacing:-13.407000px;}
.wsc{word-spacing:-13.399800px;}
.ws8{word-spacing:-13.390800px;}
.ws61{word-spacing:-13.387200px;}
.ws50{word-spacing:-13.375800px;}
.ws25{word-spacing:-13.369800px;}
.ws2c{word-spacing:-13.360200px;}
.ws3b{word-spacing:-13.353600px;}
.ws7{word-spacing:-13.345800px;}
.wsa{word-spacing:-13.342800px;}
.ws33{word-spacing:-13.342200px;}
.ws5d{word-spacing:-13.332000px;}
.ws32{word-spacing:-13.324800px;}
.ws38{word-spacing:-13.305360px;}
.ws1c{word-spacing:-13.300800px;}
.ws5a{word-spacing:-13.287000px;}
.ws4a{word-spacing:-13.278240px;}
.ws1f{word-spacing:-13.275360px;}
.ws62{word-spacing:-13.273920px;}
.ws18{word-spacing:-13.252800px;}
.ws5c{word-spacing:-13.246560px;}
.wse{word-spacing:-13.226400px;}
.ws30{word-spacing:-13.220280px;}
.ws58{word-spacing:-13.218840px;}
.ws26{word-spacing:-13.218120px;}
.ws59{word-spacing:-13.217400px;}
.ws21{word-spacing:-13.215240px;}
.ws4b{word-spacing:-13.213080px;}
.ws5b{word-spacing:-13.211640px;}
.ws5e{word-spacing:-13.210920px;}
.ws34{word-spacing:-13.208040px;}
.ws57{word-spacing:-13.188600px;}
.ws22{word-spacing:-13.187520px;}
.ws36{word-spacing:-13.174800px;}
.ws42{word-spacing:-13.170600px;}
.ws3f{word-spacing:-13.160400px;}
.ws31{word-spacing:-13.148400px;}
.ws35{word-spacing:-13.133400px;}
.ws5f{word-spacing:-13.129800px;}
.ws1e{word-spacing:-13.101000px;}
.ws10{word-spacing:-13.072800px;}
.ws2f{word-spacing:-13.066800px;}
.ws2d{word-spacing:-13.066200px;}
.ws11{word-spacing:-13.065600px;}
.ws3a{word-spacing:-13.064400px;}
.ws2e{word-spacing:-13.061400px;}
.wsf{word-spacing:-13.051800px;}
.ws1d{word-spacing:-13.047600px;}
.ws4d{word-spacing:-13.047000px;}
.wsb{word-spacing:-13.039800px;}
.ws9{word-spacing:-13.030800px;}
.ws37{word-spacing:-13.015800px;}
.ws44{word-spacing:-13.009800px;}
.ws54{word-spacing:-13.006800px;}
.ws55{word-spacing:-13.000200px;}
.ws3d{word-spacing:-12.993600px;}
.wsd{word-spacing:-12.982800px;}
.ws60{word-spacing:-12.979800px;}
.ws39{word-spacing:-12.945600px;}
.ws47{word-spacing:-12.940800px;}
.ws4e{word-spacing:-12.936000px;}
.ws40{word-spacing:-12.934800px;}
.ws20{word-spacing:-12.858000px;}
.ws2b{word-spacing:-12.851400px;}
.ws14{word-spacing:-12.827400px;}
.ws1a{word-spacing:-12.820800px;}
.ws48{word-spacing:-12.816600px;}
.ws19{word-spacing:-12.816000px;}
.ws51{word-spacing:-12.814800px;}
.ws4f{word-spacing:-12.805800px;}
.ws53{word-spacing:-12.800400px;}
.ws29{word-spacing:-12.799200px;}
.ws63{word-spacing:-12.773400px;}
.ws23{word-spacing:-12.741000px;}
.ws2a{word-spacing:-12.712800px;}
.ws3c{word-spacing:-12.706200px;}
.ws46{word-spacing:-12.705600px;}
.ws56{word-spacing:-12.701400px;}
.ws4c{word-spacing:-12.620400px;}
.ws1{word-spacing:-9.810000px;}
.ws2{word-spacing:-9.765000px;}
.ws4{word-spacing:-9.331800px;}
.ws6{word-spacing:-8.553600px;}
.ws41{word-spacing:-0.060120px;}
.ws1b{word-spacing:0.000000px;}
.ws16{word-spacing:29.144880px;}
._10{margin-left:-3.780239px;}
._5{margin-left:-2.613481px;}
._3{margin-left:-1.149000px;}
._2{width:1.145028px;}
._4{width:2.841120px;}
._8{width:4.791240px;}
._a{width:5.921640px;}
._b{width:7.185720px;}
._e{width:8.251320px;}
._6{width:9.269040px;}
._7{width:10.437600px;}
._d{width:11.860200px;}
._9{width:14.325240px;}
._11{width:15.409091px;}
._2e{width:16.445103px;}
._f{width:17.803800px;}
._2d{width:18.812880px;}
._c{width:20.543760px;}
._1{width:22.592520px;}
._0{width:23.627880px;}
._1a{width:25.073640px;}
._1b{width:26.288760px;}
._2c{width:30.221280px;}
._16{width:31.942440px;}
._25{width:33.828840px;}
._46{width:34.835171px;}
._22{width:35.873640px;}
._13{width:36.888840px;}
._30{width:40.797480px;}
._39{width:42.103800px;}
._2b{width:43.395840px;}
._2a{width:46.845360px;}
._14{width:50.273640px;}
._21{width:52.450920px;}
._42{width:54.438840px;}
._23{width:57.113640px;}
._33{width:60.484680px;}
._29{width:61.564680px;}
._19{width:63.660960px;}
._37{width:67.759920px;}
._20{width:69.278040px;}
._3d{width:70.433640px;}
._32{width:72.078840px;}
._24{width:75.022680px;}
._31{width:76.089600px;}
._43{width:78.141720px;}
._3f{width:79.864440px;}
._1f{width:85.822440px;}
._36{width:107.588880px;}
._34{width:125.195880px;}
._3c{width:127.224360px;}
._1e{width:136.154520px;}
._1d{width:139.222440px;}
._17{width:146.367720px;}
._44{width:159.795840px;}
._3a{width:162.022080px;}
._27{width:177.627600px;}
._15{width:180.862440px;}
._41{width:188.306280px;}
._28{width:201.783960px;}
._35{width:218.388240px;}
._38{width:227.042400px;}
._3b{width:231.587280px;}
._45{width:240.949560px;}
._12{width:242.882280px;}
._26{width:247.169160px;}
._40{width:254.529480px;}
._3e{width:268.331400px;}
._18{width:277.908840px;}
._2f{width:295.702200px;}
._1c{width:311.313840px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs7{font-size:60.240000px;}
.fs5{font-size:65.880000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y74{bottom:7.830000px;}
.y77{bottom:7.920000px;}
.y100{bottom:25.380000px;}
.y73{bottom:25.470000px;}
.y72{bottom:43.020000px;}
.y79{bottom:43.050000px;}
.y76{bottom:43.110000px;}
.y81{bottom:43.140000px;}
.y80{bottom:60.690000px;}
.y2{bottom:73.350000px;}
.y28{bottom:74.160000px;}
.y1{bottom:101.610000px;}
.y191{bottom:111.330000px;}
.ye2{bottom:116.550000px;}
.y12e{bottom:119.880000px;}
.y1c7{bottom:120.690000px;}
.yb6{bottom:121.500000px;}
.y190{bottom:128.880000px;}
.y186{bottom:130.590000px;}
.ye1{bottom:134.190000px;}
.y141{bottom:135.000000px;}
.y173{bottom:137.340000px;}
.y1c6{bottom:138.330000px;}
.yb5{bottom:139.050000px;}
.y169{bottom:142.020000px;}
.y185{bottom:148.140000px;}
.yfc{bottom:151.290000px;}
.ye0{bottom:151.740000px;}
.y172{bottom:154.980000px;}
.ya3{bottom:155.070000px;}
.y12d{bottom:155.520000px;}
.y17d{bottom:155.880000px;}
.y6b{bottom:159.300000px;}
.y168{bottom:159.570000px;}
.y85{bottom:161.820000px;}
.y1c5{bottom:164.880000px;}
.y184{bottom:165.780000px;}
.yfb{bottom:168.930000px;}
.y1db{bottom:169.290000px;}
.ydf{bottom:169.380000px;}
.y171{bottom:172.530000px;}
.ya2{bottom:172.620000px;}
.y1a2{bottom:173.070000px;}
.y17c{bottom:173.520000px;}
.yb4{bottom:174.600000px;}
.y26{bottom:175.770000px;}
.y6a{bottom:176.850000px;}
.y167{bottom:177.120000px;}
.y105{bottom:177.480000px;}
.y84{bottom:179.370000px;}
.y1c4{bottom:182.520000px;}
.y183{bottom:183.330000px;}
.yfa{bottom:186.480000px;}
.yde{bottom:186.930000px;}
.y170{bottom:190.080000px;}
.ya1{bottom:190.260000px;}
.y1a1{bottom:190.620000px;}
.y12c{bottom:191.070000px;}
.y140{bottom:191.970000px;}
.y25{bottom:193.410000px;}
.y69{bottom:194.400000px;}
.y166{bottom:194.760000px;}
.y1da{bottom:195.930000px;}
.y83{bottom:197.010000px;}
.yf9{bottom:204.030000px;}
.yb3{bottom:206.820000px;}
.y16f{bottom:207.720000px;}
.y12b{bottom:208.620000px;}
.y1c3{bottom:209.070000px;}
.y104{bottom:209.700000px;}
.y24{bottom:210.960000px;}
.y68{bottom:212.040000px;}
.y165{bottom:212.310000px;}
.y1d9{bottom:213.480000px;}
.y82{bottom:214.560000px;}
.y182{bottom:218.970000px;}
.ydd{bottom:222.480000px;}
.ya0{bottom:225.810000px;}
.y17b{bottom:226.260000px;}
.y1c2{bottom:226.620000px;}
.y23{bottom:228.510000px;}
.y67{bottom:229.590000px;}
.y1d8{bottom:231.030000px;}
.y16e{bottom:234.270000px;}
.y164{bottom:238.860000px;}
.yf8{bottom:239.670000px;}
.ydc{bottom:240.120000px;}
.y9f{bottom:243.360000px;}
.y1a0{bottom:243.810000px;}
.y12a{bottom:244.260000px;}
.y22{bottom:246.150000px;}
.y7f{bottom:247.500000px;}
.y50{bottom:247.860000px;}
.y13f{bottom:248.850000px;}
.y181{bottom:251.190000px;}
.y1c1{bottom:253.260000px;}
.y66{bottom:256.230000px;}
.yf7{bottom:257.220000px;}
.ydb{bottom:257.670000px;}
.y9e{bottom:261.000000px;}
.y19f{bottom:261.360000px;}
.y129{bottom:261.810000px;}
.y21{bottom:263.700000px;}
.y16d{bottom:270.180000px;}
.y1c0{bottom:270.810000px;}
.y163{bottom:274.500000px;}
.yf6{bottom:274.860000px;}
.yda{bottom:275.220000px;}
.y9d{bottom:278.580000px;}
.y128{bottom:279.390000px;}
.y4f{bottom:283.440000px;}
.y20{bottom:290.370000px;}
.y65{bottom:291.810000px;}
.y162{bottom:292.080000px;}
.yf5{bottom:292.440000px;}
.yd9{bottom:292.890000px;}
.y127{bottom:297.030000px;}
.y1bf{bottom:297.390000px;}
.y4e{bottom:300.990000px;}
.y1d7{bottom:301.890000px;}
.y64{bottom:309.360000px;}
.y161{bottom:309.720000px;}
.yf4{bottom:309.990000px;}
.yd8{bottom:310.440000px;}
.y9c{bottom:314.220000px;}
.y17a{bottom:314.580000px;}
.y1be{bottom:315.030000px;}
.y16c{bottom:318.450000px;}
.y4d{bottom:318.630000px;}
.y1d6{bottom:319.440000px;}
.y13e{bottom:323.400000px;}
.y1f{bottom:326.280000px;}
.y63{bottom:327.000000px;}
.y7e{bottom:327.630000px;}
.y9b{bottom:331.770000px;}
.y179{bottom:332.220000px;}
.y126{bottom:332.580000px;}
.y4c{bottom:336.180000px;}
.y1d5{bottom:336.990000px;}
.yd7{bottom:337.080000px;}
.y1bd{bottom:341.580000px;}
.y62{bottom:344.550000px;}
.y160{bottom:345.270000px;}
.yf3{bottom:345.630000px;}
.y9a{bottom:349.320000px;}
.y19e{bottom:349.770000px;}
.y125{bottom:350.220000px;}
.y16b{bottom:350.670000px;}
.y178{bottom:358.770000px;}
.y1bc{bottom:359.220000px;}
.y15f{bottom:362.820000px;}
.yf2{bottom:363.180000px;}
.y1d4{bottom:363.630000px;}
.y124{bottom:367.770000px;}
.y4b{bottom:371.820000px;}
.yd6{bottom:372.630000px;}
.y1e{bottom:374.520000px;}
.y99{bottom:375.960000px;}
.y61{bottom:380.190000px;}
.y13d{bottom:380.370000px;}
.y15e{bottom:380.460000px;}
.yf1{bottom:380.820000px;}
.y1d3{bottom:381.180000px;}
.y123{bottom:385.320000px;}
.y1bb{bottom:385.770000px;}
.y4a{bottom:389.370000px;}
.y7d{bottom:390.180000px;}
.y1d{bottom:392.430000px;}
.y177{bottom:394.680000px;}
.y60{bottom:397.740000px;}
.yf0{bottom:398.370000px;}
.y1d2{bottom:398.820000px;}
.y19d{bottom:402.960000px;}
.y1ba{bottom:403.320000px;}
.y49{bottom:406.920000px;}
.yd5{bottom:407.820000px;}
.y98{bottom:411.510000px;}
.y5f{bottom:415.290000px;}
.y15d{bottom:416.010000px;}
.y19c{bottom:420.510000px;}
.y122{bottom:420.960000px;}
.yef{bottom:424.920000px;}
.yd4{bottom:425.370000px;}
.y97{bottom:429.150000px;}
.y1c{bottom:429.420000px;}
.y5e{bottom:432.930000px;}
.y48{bottom:433.560000px;}
.y15c{bottom:433.650000px;}
.y13c{bottom:437.250000px;}
.y19b{bottom:438.150000px;}
.y121{bottom:438.510000px;}
.y176{bottom:442.920000px;}
.y96{bottom:446.700000px;}
.y1b{bottom:447.060000px;}
.y1b9{bottom:447.510000px;}
.y15b{bottom:451.200000px;}
.y7c{bottom:452.640000px;}
.y120{bottom:456.150000px;}
.yee{bottom:460.560000px;}
.yd3{bottom:461.010000px;}
.y1a{bottom:464.610000px;}
.y19a{bottom:464.700000px;}
.y1b8{bottom:465.150000px;}
.y5d{bottom:468.480000px;}
.y15a{bottom:468.750000px;}
.y47{bottom:469.110000px;}
.y1d1{bottom:469.560000px;}
.y11f{bottom:473.700000px;}
.yed{bottom:478.110000px;}
.yd2{bottom:478.560000px;}
.y19{bottom:482.250000px;}
.y5c{bottom:486.120000px;}
.y46{bottom:486.750000px;}
.y1d0{bottom:487.110000px;}
.y11e{bottom:491.250000px;}
.y1b7{bottom:491.700000px;}
.yec{bottom:495.750000px;}
.yd1{bottom:496.110000px;}
.y18{bottom:499.800000px;}
.y95{bottom:499.890000px;}
.y199{bottom:500.250000px;}
.y5b{bottom:503.670000px;}
.y45{bottom:504.300000px;}
.y159{bottom:504.390000px;}
.y1b6{bottom:509.250000px;}
.y13b{bottom:511.770000px;}
.yeb{bottom:513.300000px;}
.yd0{bottom:513.750000px;}
.y7b{bottom:515.190000px;}
.y17{bottom:517.350000px;}
.y18f{bottom:517.890000px;}
.y5a{bottom:521.220000px;}
.y158{bottom:521.940000px;}
.y11d{bottom:526.890000px;}
.yb2{bottom:530.850000px;}
.y175{bottom:531.300000px;}
.y16{bottom:534.990000px;}
.y94{bottom:535.440000px;}
.y1b5{bottom:535.890000px;}
.y157{bottom:539.580000px;}
.y44{bottom:539.850000px;}
.y11c{bottom:544.440000px;}
.y103{bottom:546.150000px;}
.yb1{bottom:548.490000px;}
.yea{bottom:548.850000px;}
.ycf{bottom:549.300000px;}
.y15{bottom:552.540000px;}
.y93{bottom:553.080000px;}
.y18e{bottom:553.440000px;}
.y59{bottom:556.860000px;}
.y156{bottom:557.130000px;}
.y43{bottom:557.490000px;}
.y1cf{bottom:557.850000px;}
.y11b{bottom:562.080000px;}
.yb0{bottom:566.040000px;}
.ye9{bottom:566.490000px;}
.y180{bottom:566.850000px;}
.yce{bottom:566.940000px;}
.y14{bottom:570.090000px;}
.y92{bottom:570.630000px;}
.y18d{bottom:571.080000px;}
.y58{bottom:574.410000px;}
.y42{bottom:575.040000px;}
.y1ce{bottom:575.490000px;}
.y102{bottom:576.120000px;}
.y7a{bottom:577.650000px;}
.y11a{bottom:579.630000px;}
.y1b4{bottom:580.080000px;}
.ye8{bottom:584.040000px;}
.ycd{bottom:584.490000px;}
.y13{bottom:587.730000px;}
.y18c{bottom:588.630000px;}
.y57{bottom:591.960000px;}
.y155{bottom:592.680000px;}
.y1cd{bottom:593.040000px;}
.y119{bottom:597.180000px;}
.y1b3{bottom:597.630000px;}
.yaf{bottom:601.680000px;}
.ycc{bottom:602.040000px;}
.y12{bottom:605.280000px;}
.y91{bottom:606.180000px;}
.y56{bottom:609.600000px;}
.y154{bottom:610.320000px;}
.y41{bottom:610.680000px;}
.yae{bottom:619.230000px;}
.y13a{bottom:619.680000px;}
.y11{bottom:622.920000px;}
.y90{bottom:623.820000px;}
.y1b2{bottom:624.180000px;}
.y55{bottom:627.150000px;}
.y153{bottom:627.870000px;}
.y40{bottom:628.230000px;}
.yad{bottom:636.780000px;}
.ye7{bottom:637.230000px;}
.ycb{bottom:637.680000px;}
.y78{bottom:640.200000px;}
.y10{bottom:640.470000px;}
.y8f{bottom:641.370000px;}
.y18b{bottom:641.820000px;}
.y152{bottom:645.510000px;}
.y3f{bottom:645.780000px;}
.y101{bottom:650.640000px;}
.y54{bottom:653.790000px;}
.ye6{bottom:654.780000px;}
.yca{bottom:655.230000px;}
.yf{bottom:658.020000px;}
.y198{bottom:659.010000px;}
.y118{bottom:659.370000px;}
.y3e{bottom:663.420000px;}
.y1dc{bottom:663.780000px;}
.y1b1{bottom:668.370000px;}
.y151{bottom:672.060000px;}
.yac{bottom:672.420000px;}
.y17f{bottom:672.780000px;}
.yc9{bottom:672.870000px;}
.ye{bottom:675.660000px;}
.y8e{bottom:677.040000px;}
.y1cc{bottom:681.450000px;}
.y1b0{bottom:686.040000px;}
.y53{bottom:689.730000px;}
.y3d{bottom:690.000000px;}
.yc8{bottom:690.450000px;}
.yd{bottom:693.240000px;}
.y8d{bottom:694.590000px;}
.y75{bottom:702.690000px;}
.yab{bottom:707.640000px;}
.yc7{bottom:708.000000px;}
.yc{bottom:710.880000px;}
.y8c{bottom:712.140000px;}
.y1af{bottom:712.590000px;}
.yff{bottom:725.190000px;}
.y150{bottom:725.280000px;}
.y3c{bottom:725.640000px;}
.y197{bottom:729.780000px;}
.y1ae{bottom:730.140000px;}
.yc6{bottom:734.640000px;}
.yb{bottom:737.790000px;}
.y52{bottom:737.970000px;}
.y8b{bottom:738.780000px;}
.y14f{bottom:742.830000px;}
.y3b{bottom:743.190000px;}
.y196{bottom:747.330000px;}
.y117{bottom:747.780000px;}
.y1cb{bottom:752.190000px;}
.y1ad{bottom:756.780000px;}
.y14e{bottom:760.470000px;}
.y3a{bottom:760.740000px;}
.y17e{bottom:761.190000px;}
.y195{bottom:764.970000px;}
.y71{bottom:765.240000px;}
.y116{bottom:765.330000px;}
.y1ca{bottom:769.740000px;}
.y51{bottom:770.190000px;}
.yc5{bottom:770.550000px;}
.y1ac{bottom:774.330000px;}
.y8a{bottom:774.690000px;}
.y14d{bottom:778.020000px;}
.yaa{bottom:778.380000px;}
.y139{bottom:778.740000px;}
.y115{bottom:782.970000px;}
.ya{bottom:786.030000px;}
.y1c9{bottom:787.380000px;}
.y194{bottom:791.520000px;}
.ya9{bottom:795.930000px;}
.y39{bottom:796.380000px;}
.yfe{bottom:799.620000px;}
.y18a{bottom:800.520000px;}
.y1ab{bottom:800.970000px;}
.y14c{bottom:813.570000px;}
.y38{bottom:813.930000px;}
.y189{bottom:818.070000px;}
.y114{bottom:818.520000px;}
.yc4{bottom:818.790000px;}
.y9{bottom:821.580000px;}
.y89{bottom:822.930000px;}
.y193{bottom:827.430000px;}
.y14b{bottom:831.210000px;}
.y37{bottom:831.480000px;}
.y113{bottom:836.070000px;}
.yc3{bottom:836.340000px;}
.y88{bottom:840.480000px;}
.y188{bottom:844.710000px;}
.y1aa{bottom:845.070000px;}
.y14a{bottom:848.760000px;}
.y36{bottom:849.120000px;}
.y112{bottom:853.710000px;}
.yc2{bottom:853.980000px;}
.y8{bottom:857.400000px;}
.y87{bottom:858.120000px;}
.y1a9{bottom:862.710000px;}
.y149{bottom:866.400000px;}
.ya8{bottom:866.670000px;}
.y138{bottom:867.120000px;}
.yc1{bottom:871.530000px;}
.yfd{bottom:874.140000px;}
.y70{bottom:875.670000px;}
.y187{bottom:880.620000px;}
.ye5{bottom:884.310000px;}
.y35{bottom:884.670000px;}
.y111{bottom:889.260000px;}
.y16a{bottom:893.310000px;}
.y174{bottom:893.670000px;}
.y7{bottom:897.180000px;}
.y148{bottom:901.950000px;}
.y34{bottom:902.310000px;}
.y110{bottom:906.900000px;}
.yc0{bottom:907.980000px;}
.ye4{bottom:910.860000px;}
.y6f{bottom:911.310000px;}
.y6{bottom:915.180000px;}
.y147{bottom:919.500000px;}
.y33{bottom:919.860000px;}
.y10f{bottom:924.450000px;}
.ybf{bottom:925.530000px;}
.y6e{bottom:928.860000px;}
.y146{bottom:937.140000px;}
.y32{bottom:937.410000px;}
.y10e{bottom:942.000000px;}
.ybe{bottom:943.080000px;}
.y6d{bottom:946.410000px;}
.y5{bottom:947.490000px;}
.y1a8{bottom:951.000000px;}
.y145{bottom:954.690000px;}
.ya7{bottom:955.050000px;}
.y137{bottom:955.410000px;}
.y10d{bottom:959.640000px;}
.y31{bottom:964.050000px;}
.y1a7{bottom:968.640000px;}
.y144{bottom:972.240000px;}
.ya6{bottom:972.600000px;}
.y136{bottom:973.050000px;}
.ybd{bottom:979.530000px;}
.ye3{bottom:981.600000px;}
.y86{bottom:982.050000px;}
.y4{bottom:985.830000px;}
.y135{bottom:990.600000px;}
.y10c{bottom:995.190000px;}
.y143{bottom:998.880000px;}
.ya5{bottom:999.240000px;}
.y30{bottom:999.600000px;}
.y134{bottom:1008.240000px;}
.y3{bottom:1010.490000px;}
.y10b{bottom:1012.740000px;}
.ybc{bottom:1015.170000px;}
.y2f{bottom:1017.240000px;}
.y1c8{bottom:1025.790000px;}
.y10a{bottom:1030.380000px;}
.y2e{bottom:1034.790000px;}
.y1a6{bottom:1039.380000px;}
.y133{bottom:1043.790000px;}
.y109{bottom:1047.930000px;}
.ybb{bottom:1050.720000px;}
.y2d{bottom:1052.340000px;}
.y1a5{bottom:1056.930000px;}
.y132{bottom:1061.340000px;}
.y108{bottom:1065.570000px;}
.yba{bottom:1068.270000px;}
.ya4{bottom:1069.980000px;}
.y6c{bottom:1070.340000px;}
.y131{bottom:1079.010000px;}
.y1a4{bottom:1083.600000px;}
.y142{bottom:1086.480000px;}
.y192{bottom:1087.560000px;}
.y2c{bottom:1088.010000px;}
.y107{bottom:1092.150000px;}
.y130{bottom:1096.560000px;}
.y1a3{bottom:1101.150000px;}
.yb9{bottom:1104.750000px;}
.y2b{bottom:1105.560000px;}
.y12f{bottom:1114.200000px;}
.yb8{bottom:1122.300000px;}
.y2a{bottom:1123.200000px;}
.y106{bottom:1128.060000px;}
.yb7{bottom:1139.850000px;}
.y29{bottom:1140.750000px;}
.y27{bottom:1194.750000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h13{height:44.100000px;}
.h12{height:44.190000px;}
.hc{height:50.902383px;}
.hb{height:51.003984px;}
.h7{height:52.311445px;}
.h9{height:52.415859px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.ha{height:60.960938px;}
.hd{height:61.740000px;}
.hf{height:61.770000px;}
.h11{height:61.793886px;}
.he{height:61.830000px;}
.h14{height:61.860000px;}
.h4{height:72.985430px;}
.h10{height:79.410000px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w8{width:58.950000px;}
.w11{width:79.950000px;}
.w3{width:84.810000px;}
.wb{width:128.430000px;}
.wd{width:150.690000px;}
.w4{width:155.880000px;}
.w7{width:157.980000px;}
.w10{width:158.310000px;}
.w6{width:163.890000px;}
.wf{width:173.100000px;}
.w9{width:183.360000px;}
.wc{width:186.870000px;}
.w5{width:190.290000px;}
.we{width:190.710000px;}
.wa{width:195.150000px;}
.w1{width:892.500000px;}
.w2{width:892.529987px;}
.w0{width:892.530000px;}
.x0{left:0.000000px;}
.x10{left:5.670000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.xe{left:95.039987px;}
.x1d{left:111.239987px;}
.xf{left:122.039987px;}
.x11{left:128.070000px;}
.x8{left:154.290000px;}
.x2{left:202.439987px;}
.x17{left:219.810000px;}
.x16{left:225.029987px;}
.x1c{left:232.319987px;}
.x6{left:258.239987px;}
.xd{left:270.839987px;}
.x9{left:310.890000px;}
.x12{left:312.240000px;}
.x18{left:411.330000px;}
.x4{left:446.249987px;}
.xa{left:501.900000px;}
.x13{left:508.110000px;}
.x19{left:585.150000px;}
.x1b{left:613.949987px;}
.x14{left:637.260000px;}
.x15{left:644.279987px;}
.xb{left:666.510000px;}
.x1a{left:744.180000px;}
.x5{left:787.229987px;}
.x3{left:791.369987px;}
.xc{left:811.259987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls56{letter-spacing:-0.538667pt;}
.ls61{letter-spacing:-0.490133pt;}
.ls44{letter-spacing:-0.485867pt;}
.ls4e{letter-spacing:-0.462933pt;}
.ls2e{letter-spacing:-0.456533pt;}
.ls26{letter-spacing:-0.431467pt;}
.ls75{letter-spacing:-0.402667pt;}
.ls5c{letter-spacing:-0.389333pt;}
.ls1b{letter-spacing:-0.388267pt;}
.ls1c{letter-spacing:-0.384000pt;}
.ls2d{letter-spacing:-0.379733pt;}
.ls5e{letter-spacing:-0.378667pt;}
.ls59{letter-spacing:-0.373867pt;}
.ls51{letter-spacing:-0.364267pt;}
.ls19{letter-spacing:-0.354667pt;}
.ls2f{letter-spacing:-0.333333pt;}
.ls23{letter-spacing:-0.327467pt;}
.ls42{letter-spacing:-0.273067pt;}
.ls47{letter-spacing:-0.259200pt;}
.ls58{letter-spacing:-0.258133pt;}
.ls4f{letter-spacing:-0.253867pt;}
.ls62{letter-spacing:-0.236800pt;}
.ls60{letter-spacing:-0.224533pt;}
.ls72{letter-spacing:-0.219200pt;}
.ls5f{letter-spacing:-0.218667pt;}
.ls13{letter-spacing:-0.216533pt;}
.ls40{letter-spacing:-0.210667pt;}
.ls45{letter-spacing:-0.206933pt;}
.ls4c{letter-spacing:-0.192533pt;}
.ls14{letter-spacing:-0.178667pt;}
.lsf{letter-spacing:-0.173867pt;}
.ls35{letter-spacing:-0.170133pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls36{letter-spacing:-0.165333pt;}
.ls57{letter-spacing:-0.159467pt;}
.ls21{letter-spacing:-0.158933pt;}
.ls43{letter-spacing:-0.144000pt;}
.ls16{letter-spacing:-0.142933pt;}
.ls15{letter-spacing:-0.136533pt;}
.lsa{letter-spacing:-0.120000pt;}
.ls22{letter-spacing:-0.111467pt;}
.ls1a{letter-spacing:-0.107733pt;}
.ls6e{letter-spacing:-0.085867pt;}
.ls2c{letter-spacing:-0.083200pt;}
.ls3f{letter-spacing:-0.082667pt;}
.ls9{letter-spacing:-0.080000pt;}
.ls4b{letter-spacing:-0.073067pt;}
.ls38{letter-spacing:-0.069333pt;}
.ls46{letter-spacing:-0.058667pt;}
.ls25{letter-spacing:-0.034560pt;}
.ls67{letter-spacing:-0.033600pt;}
.ls3e{letter-spacing:-0.016320pt;}
.ls6d{letter-spacing:-0.013760pt;}
.ls6a{letter-spacing:-0.013120pt;}
.ls55{letter-spacing:-0.011840pt;}
.ls24{letter-spacing:-0.009920pt;}
.ls69{letter-spacing:-0.008000pt;}
.ls27{letter-spacing:-0.007360pt;}
.ls68{letter-spacing:-0.006720pt;}
.ls37{letter-spacing:-0.005440pt;}
.ls8{letter-spacing:0.000000pt;}
.ls6b{letter-spacing:0.017920pt;}
.ls74{letter-spacing:0.042240pt;}
.ls1e{letter-spacing:0.043520pt;}
.ls53{letter-spacing:0.046080pt;}
.ls41{letter-spacing:0.046720pt;}
.ls66{letter-spacing:0.053867pt;}
.ls48{letter-spacing:0.057600pt;}
.lsc{letter-spacing:0.058133pt;}
.ls2{letter-spacing:0.058240pt;}
.ls7{letter-spacing:0.059733pt;}
.ls1d{letter-spacing:0.065920pt;}
.ls20{letter-spacing:0.066133pt;}
.ls1{letter-spacing:0.080000pt;}
.ls0{letter-spacing:0.083200pt;}
.ls39{letter-spacing:0.087467pt;}
.lsb{letter-spacing:0.088533pt;}
.ls6c{letter-spacing:0.093867pt;}
.ls2b{letter-spacing:0.095467pt;}
.ls34{letter-spacing:0.102933pt;}
.ls10{letter-spacing:0.103467pt;}
.lse{letter-spacing:0.106133pt;}
.ls5b{letter-spacing:0.109333pt;}
.ls3d{letter-spacing:0.113067pt;}
.ls3c{letter-spacing:0.120000pt;}
.ls3b{letter-spacing:0.124480pt;}
.ls1f{letter-spacing:0.127467pt;}
.ls28{letter-spacing:0.141333pt;}
.ls73{letter-spacing:0.142933pt;}
.ls4{letter-spacing:0.146133pt;}
.ls12{letter-spacing:0.154133pt;}
.ls31{letter-spacing:0.154240pt;}
.ls65{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.160533pt;}
.ls18{letter-spacing:0.161067pt;}
.ls4d{letter-spacing:0.176000pt;}
.ls17{letter-spacing:0.177067pt;}
.ls5d{letter-spacing:0.179733pt;}
.ls54{letter-spacing:0.183467pt;}
.ls3{letter-spacing:0.378240pt;}
.ls29{letter-spacing:2.003200pt;}
.ls52{letter-spacing:3.923200pt;}
.ls2a{letter-spacing:4.563200pt;}
.ls70{letter-spacing:4.883200pt;}
.ls5a{letter-spacing:5.499733pt;}
.ls6{letter-spacing:7.040000pt;}
.ls3a{letter-spacing:7.443200pt;}
.ls50{letter-spacing:7.739733pt;}
.ls5{letter-spacing:8.723200pt;}
.ls71{letter-spacing:13.203200pt;}
.ls6f{letter-spacing:15.443200pt;}
.ls64{letter-spacing:42.423680pt;}
.ls4a{letter-spacing:49.250347pt;}
.ls49{letter-spacing:56.503680pt;}
.ls33{letter-spacing:66.323200pt;}
.ls63{letter-spacing:71.863680pt;}
.ls32{letter-spacing:76.243200pt;}
.ls30{letter-spacing:161.043200pt;}
.ws43{word-spacing:-53.546667pt;}
.ws15{word-spacing:-53.440000pt;}
.ws0{word-spacing:-34.560000pt;}
.ws3{word-spacing:-16.491733pt;}
.ws24{word-spacing:-14.856320pt;}
.ws5{word-spacing:-13.043733pt;}
.ws17{word-spacing:-12.883200pt;}
.ws28{word-spacing:-12.775467pt;}
.ws49{word-spacing:-11.940267pt;}
.ws52{word-spacing:-11.936533pt;}
.ws12{word-spacing:-11.933867pt;}
.ws45{word-spacing:-11.932800pt;}
.ws27{word-spacing:-11.921600pt;}
.ws13{word-spacing:-11.917867pt;}
.ws3e{word-spacing:-11.917333pt;}
.wsc{word-spacing:-11.910933pt;}
.ws8{word-spacing:-11.902933pt;}
.ws61{word-spacing:-11.899733pt;}
.ws50{word-spacing:-11.889600pt;}
.ws25{word-spacing:-11.884267pt;}
.ws2c{word-spacing:-11.875733pt;}
.ws3b{word-spacing:-11.869867pt;}
.ws7{word-spacing:-11.862933pt;}
.wsa{word-spacing:-11.860267pt;}
.ws33{word-spacing:-11.859733pt;}
.ws5d{word-spacing:-11.850667pt;}
.ws32{word-spacing:-11.844267pt;}
.ws38{word-spacing:-11.826987pt;}
.ws1c{word-spacing:-11.822933pt;}
.ws5a{word-spacing:-11.810667pt;}
.ws4a{word-spacing:-11.802880pt;}
.ws1f{word-spacing:-11.800320pt;}
.ws62{word-spacing:-11.799040pt;}
.ws18{word-spacing:-11.780267pt;}
.ws5c{word-spacing:-11.774720pt;}
.wse{word-spacing:-11.756800pt;}
.ws30{word-spacing:-11.751360pt;}
.ws58{word-spacing:-11.750080pt;}
.ws26{word-spacing:-11.749440pt;}
.ws59{word-spacing:-11.748800pt;}
.ws21{word-spacing:-11.746880pt;}
.ws4b{word-spacing:-11.744960pt;}
.ws5b{word-spacing:-11.743680pt;}
.ws5e{word-spacing:-11.743040pt;}
.ws34{word-spacing:-11.740480pt;}
.ws57{word-spacing:-11.723200pt;}
.ws22{word-spacing:-11.722240pt;}
.ws36{word-spacing:-11.710933pt;}
.ws42{word-spacing:-11.707200pt;}
.ws3f{word-spacing:-11.698133pt;}
.ws31{word-spacing:-11.687467pt;}
.ws35{word-spacing:-11.674133pt;}
.ws5f{word-spacing:-11.670933pt;}
.ws1e{word-spacing:-11.645333pt;}
.ws10{word-spacing:-11.620267pt;}
.ws2f{word-spacing:-11.614933pt;}
.ws2d{word-spacing:-11.614400pt;}
.ws11{word-spacing:-11.613867pt;}
.ws3a{word-spacing:-11.612800pt;}
.ws2e{word-spacing:-11.610133pt;}
.wsf{word-spacing:-11.601600pt;}
.ws1d{word-spacing:-11.597867pt;}
.ws4d{word-spacing:-11.597333pt;}
.wsb{word-spacing:-11.590933pt;}
.ws9{word-spacing:-11.582933pt;}
.ws37{word-spacing:-11.569600pt;}
.ws44{word-spacing:-11.564267pt;}
.ws54{word-spacing:-11.561600pt;}
.ws55{word-spacing:-11.555733pt;}
.ws3d{word-spacing:-11.549867pt;}
.wsd{word-spacing:-11.540267pt;}
.ws60{word-spacing:-11.537600pt;}
.ws39{word-spacing:-11.507200pt;}
.ws47{word-spacing:-11.502933pt;}
.ws4e{word-spacing:-11.498667pt;}
.ws40{word-spacing:-11.497600pt;}
.ws20{word-spacing:-11.429333pt;}
.ws2b{word-spacing:-11.423467pt;}
.ws14{word-spacing:-11.402133pt;}
.ws1a{word-spacing:-11.396267pt;}
.ws48{word-spacing:-11.392533pt;}
.ws19{word-spacing:-11.392000pt;}
.ws51{word-spacing:-11.390933pt;}
.ws4f{word-spacing:-11.382933pt;}
.ws53{word-spacing:-11.378133pt;}
.ws29{word-spacing:-11.377067pt;}
.ws63{word-spacing:-11.354133pt;}
.ws23{word-spacing:-11.325333pt;}
.ws2a{word-spacing:-11.300267pt;}
.ws3c{word-spacing:-11.294400pt;}
.ws46{word-spacing:-11.293867pt;}
.ws56{word-spacing:-11.290133pt;}
.ws4c{word-spacing:-11.218133pt;}
.ws1{word-spacing:-8.720000pt;}
.ws2{word-spacing:-8.680000pt;}
.ws4{word-spacing:-8.294933pt;}
.ws6{word-spacing:-7.603200pt;}
.ws41{word-spacing:-0.053440pt;}
.ws1b{word-spacing:0.000000pt;}
.ws16{word-spacing:25.906560pt;}
._10{margin-left:-3.360212pt;}
._5{margin-left:-2.323094pt;}
._3{margin-left:-1.021333pt;}
._2{width:1.017803pt;}
._4{width:2.525440pt;}
._8{width:4.258880pt;}
._a{width:5.263680pt;}
._b{width:6.387307pt;}
._e{width:7.334506pt;}
._6{width:8.239147pt;}
._7{width:9.277867pt;}
._d{width:10.542400pt;}
._9{width:12.733547pt;}
._11{width:13.696970pt;}
._2e{width:14.617869pt;}
._f{width:15.825600pt;}
._2d{width:16.722560pt;}
._c{width:18.261120pt;}
._1{width:20.082240pt;}
._0{width:21.002560pt;}
._1a{width:22.287680pt;}
._1b{width:23.367787pt;}
._2c{width:26.863360pt;}
._16{width:28.393280pt;}
._25{width:30.070080pt;}
._46{width:30.964596pt;}
._22{width:31.887680pt;}
._13{width:32.790080pt;}
._30{width:36.264427pt;}
._39{width:37.425600pt;}
._2b{width:38.574080pt;}
._2a{width:41.640320pt;}
._14{width:44.687680pt;}
._21{width:46.623040pt;}
._42{width:48.390080pt;}
._23{width:50.767680pt;}
._33{width:53.764160pt;}
._29{width:54.724160pt;}
._19{width:56.587520pt;}
._37{width:60.231040pt;}
._20{width:61.580480pt;}
._3d{width:62.607680pt;}
._32{width:64.070080pt;}
._24{width:66.686827pt;}
._31{width:67.635200pt;}
._43{width:69.459307pt;}
._3f{width:70.990613pt;}
._1f{width:76.286613pt;}
._36{width:95.634560pt;}
._34{width:111.285227pt;}
._3c{width:113.088320pt;}
._1e{width:121.026240pt;}
._1d{width:123.753280pt;}
._17{width:130.104640pt;}
._44{width:142.040747pt;}
._3a{width:144.019627pt;}
._27{width:157.891200pt;}
._15{width:160.766613pt;}
._41{width:167.383360pt;}
._28{width:179.363520pt;}
._35{width:194.122880pt;}
._38{width:201.815467pt;}
._3b{width:205.855360pt;}
._45{width:214.177387pt;}
._12{width:215.895360pt;}
._26{width:219.705920pt;}
._40{width:226.248427pt;}
._3e{width:238.516800pt;}
._18{width:247.030080pt;}
._2f{width:262.846400pt;}
._1c{width:276.723413pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs7{font-size:53.546667pt;}
.fs5{font-size:58.560000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y74{bottom:6.960000pt;}
.y77{bottom:7.040000pt;}
.y100{bottom:22.560000pt;}
.y73{bottom:22.640000pt;}
.y72{bottom:38.240000pt;}
.y79{bottom:38.266667pt;}
.y76{bottom:38.320000pt;}
.y81{bottom:38.346667pt;}
.y80{bottom:53.946667pt;}
.y2{bottom:65.200000pt;}
.y28{bottom:65.920000pt;}
.y1{bottom:90.320000pt;}
.y191{bottom:98.960000pt;}
.ye2{bottom:103.600000pt;}
.y12e{bottom:106.560000pt;}
.y1c7{bottom:107.280000pt;}
.yb6{bottom:108.000000pt;}
.y190{bottom:114.560000pt;}
.y186{bottom:116.080000pt;}
.ye1{bottom:119.280000pt;}
.y141{bottom:120.000000pt;}
.y173{bottom:122.080000pt;}
.y1c6{bottom:122.960000pt;}
.yb5{bottom:123.600000pt;}
.y169{bottom:126.240000pt;}
.y185{bottom:131.680000pt;}
.yfc{bottom:134.480000pt;}
.ye0{bottom:134.880000pt;}
.y172{bottom:137.760000pt;}
.ya3{bottom:137.840000pt;}
.y12d{bottom:138.240000pt;}
.y17d{bottom:138.560000pt;}
.y6b{bottom:141.600000pt;}
.y168{bottom:141.840000pt;}
.y85{bottom:143.840000pt;}
.y1c5{bottom:146.560000pt;}
.y184{bottom:147.360000pt;}
.yfb{bottom:150.160000pt;}
.y1db{bottom:150.480000pt;}
.ydf{bottom:150.560000pt;}
.y171{bottom:153.360000pt;}
.ya2{bottom:153.440000pt;}
.y1a2{bottom:153.840000pt;}
.y17c{bottom:154.240000pt;}
.yb4{bottom:155.200000pt;}
.y26{bottom:156.240000pt;}
.y6a{bottom:157.200000pt;}
.y167{bottom:157.440000pt;}
.y105{bottom:157.760000pt;}
.y84{bottom:159.440000pt;}
.y1c4{bottom:162.240000pt;}
.y183{bottom:162.960000pt;}
.yfa{bottom:165.760000pt;}
.yde{bottom:166.160000pt;}
.y170{bottom:168.960000pt;}
.ya1{bottom:169.120000pt;}
.y1a1{bottom:169.440000pt;}
.y12c{bottom:169.840000pt;}
.y140{bottom:170.640000pt;}
.y25{bottom:171.920000pt;}
.y69{bottom:172.800000pt;}
.y166{bottom:173.120000pt;}
.y1da{bottom:174.160000pt;}
.y83{bottom:175.120000pt;}
.yf9{bottom:181.360000pt;}
.yb3{bottom:183.840000pt;}
.y16f{bottom:184.640000pt;}
.y12b{bottom:185.440000pt;}
.y1c3{bottom:185.840000pt;}
.y104{bottom:186.400000pt;}
.y24{bottom:187.520000pt;}
.y68{bottom:188.480000pt;}
.y165{bottom:188.720000pt;}
.y1d9{bottom:189.760000pt;}
.y82{bottom:190.720000pt;}
.y182{bottom:194.640000pt;}
.ydd{bottom:197.760000pt;}
.ya0{bottom:200.720000pt;}
.y17b{bottom:201.120000pt;}
.y1c2{bottom:201.440000pt;}
.y23{bottom:203.120000pt;}
.y67{bottom:204.080000pt;}
.y1d8{bottom:205.360000pt;}
.y16e{bottom:208.240000pt;}
.y164{bottom:212.320000pt;}
.yf8{bottom:213.040000pt;}
.ydc{bottom:213.440000pt;}
.y9f{bottom:216.320000pt;}
.y1a0{bottom:216.720000pt;}
.y12a{bottom:217.120000pt;}
.y22{bottom:218.800000pt;}
.y7f{bottom:220.000000pt;}
.y50{bottom:220.320000pt;}
.y13f{bottom:221.200000pt;}
.y181{bottom:223.280000pt;}
.y1c1{bottom:225.120000pt;}
.y66{bottom:227.760000pt;}
.yf7{bottom:228.640000pt;}
.ydb{bottom:229.040000pt;}
.y9e{bottom:232.000000pt;}
.y19f{bottom:232.320000pt;}
.y129{bottom:232.720000pt;}
.y21{bottom:234.400000pt;}
.y16d{bottom:240.160000pt;}
.y1c0{bottom:240.720000pt;}
.y163{bottom:244.000000pt;}
.yf6{bottom:244.320000pt;}
.yda{bottom:244.640000pt;}
.y9d{bottom:247.626667pt;}
.y128{bottom:248.346667pt;}
.y4f{bottom:251.946667pt;}
.y20{bottom:258.106667pt;}
.y65{bottom:259.386667pt;}
.y162{bottom:259.626667pt;}
.yf5{bottom:259.946667pt;}
.yd9{bottom:260.346667pt;}
.y127{bottom:264.026667pt;}
.y1bf{bottom:264.346667pt;}
.y4e{bottom:267.546667pt;}
.y1d7{bottom:268.346667pt;}
.y64{bottom:274.986667pt;}
.y161{bottom:275.306667pt;}
.yf4{bottom:275.546667pt;}
.yd8{bottom:275.946667pt;}
.y9c{bottom:279.306667pt;}
.y17a{bottom:279.626667pt;}
.y1be{bottom:280.026667pt;}
.y16c{bottom:283.066667pt;}
.y4d{bottom:283.226667pt;}
.y1d6{bottom:283.946667pt;}
.y13e{bottom:287.466667pt;}
.y1f{bottom:290.026667pt;}
.y63{bottom:290.666667pt;}
.y7e{bottom:291.226667pt;}
.y9b{bottom:294.906667pt;}
.y179{bottom:295.306667pt;}
.y126{bottom:295.626667pt;}
.y4c{bottom:298.826667pt;}
.y1d5{bottom:299.546667pt;}
.yd7{bottom:299.626667pt;}
.y1bd{bottom:303.626667pt;}
.y62{bottom:306.266667pt;}
.y160{bottom:306.906667pt;}
.yf3{bottom:307.226667pt;}
.y9a{bottom:310.506667pt;}
.y19e{bottom:310.906667pt;}
.y125{bottom:311.306667pt;}
.y16b{bottom:311.706667pt;}
.y178{bottom:318.906667pt;}
.y1bc{bottom:319.306667pt;}
.y15f{bottom:322.506667pt;}
.yf2{bottom:322.826667pt;}
.y1d4{bottom:323.226667pt;}
.y124{bottom:326.906667pt;}
.y4b{bottom:330.506667pt;}
.yd6{bottom:331.226667pt;}
.y1e{bottom:332.906667pt;}
.y99{bottom:334.186667pt;}
.y61{bottom:337.946667pt;}
.y13d{bottom:338.106667pt;}
.y15e{bottom:338.186667pt;}
.yf1{bottom:338.506667pt;}
.y1d3{bottom:338.826667pt;}
.y123{bottom:342.506667pt;}
.y1bb{bottom:342.906667pt;}
.y4a{bottom:346.106667pt;}
.y7d{bottom:346.826667pt;}
.y1d{bottom:348.826667pt;}
.y177{bottom:350.826667pt;}
.y60{bottom:353.546667pt;}
.yf0{bottom:354.106667pt;}
.y1d2{bottom:354.506667pt;}
.y19d{bottom:358.186667pt;}
.y1ba{bottom:358.506667pt;}
.y49{bottom:361.706667pt;}
.yd5{bottom:362.506667pt;}
.y98{bottom:365.786667pt;}
.y5f{bottom:369.146667pt;}
.y15d{bottom:369.786667pt;}
.y19c{bottom:373.786667pt;}
.y122{bottom:374.186667pt;}
.yef{bottom:377.706667pt;}
.yd4{bottom:378.106667pt;}
.y97{bottom:381.466667pt;}
.y1c{bottom:381.706667pt;}
.y5e{bottom:384.826667pt;}
.y48{bottom:385.386667pt;}
.y15c{bottom:385.466667pt;}
.y13c{bottom:388.666667pt;}
.y19b{bottom:389.466667pt;}
.y121{bottom:389.786667pt;}
.y176{bottom:393.706667pt;}
.y96{bottom:397.066667pt;}
.y1b{bottom:397.386667pt;}
.y1b9{bottom:397.786667pt;}
.y15b{bottom:401.066667pt;}
.y7c{bottom:402.346667pt;}
.y120{bottom:405.466667pt;}
.yee{bottom:409.386667pt;}
.yd3{bottom:409.786667pt;}
.y1a{bottom:412.986667pt;}
.y19a{bottom:413.066667pt;}
.y1b8{bottom:413.466667pt;}
.y5d{bottom:416.426667pt;}
.y15a{bottom:416.666667pt;}
.y47{bottom:416.986667pt;}
.y1d1{bottom:417.386667pt;}
.y11f{bottom:421.066667pt;}
.yed{bottom:424.986667pt;}
.yd2{bottom:425.386667pt;}
.y19{bottom:428.666667pt;}
.y5c{bottom:432.106667pt;}
.y46{bottom:432.666667pt;}
.y1d0{bottom:432.986667pt;}
.y11e{bottom:436.666667pt;}
.y1b7{bottom:437.066667pt;}
.yec{bottom:440.666667pt;}
.yd1{bottom:440.986667pt;}
.y18{bottom:444.266667pt;}
.y95{bottom:444.346667pt;}
.y199{bottom:444.666667pt;}
.y5b{bottom:447.706667pt;}
.y45{bottom:448.266667pt;}
.y159{bottom:448.346667pt;}
.y1b6{bottom:452.666667pt;}
.y13b{bottom:454.906667pt;}
.yeb{bottom:456.266667pt;}
.yd0{bottom:456.666667pt;}
.y7b{bottom:457.946667pt;}
.y17{bottom:459.866667pt;}
.y18f{bottom:460.346667pt;}
.y5a{bottom:463.306667pt;}
.y158{bottom:463.946667pt;}
.y11d{bottom:468.346667pt;}
.yb2{bottom:471.866667pt;}
.y175{bottom:472.266667pt;}
.y16{bottom:475.546667pt;}
.y94{bottom:475.946667pt;}
.y1b5{bottom:476.346667pt;}
.y157{bottom:479.626667pt;}
.y44{bottom:479.866667pt;}
.y11c{bottom:483.946667pt;}
.y103{bottom:485.466667pt;}
.yb1{bottom:487.546667pt;}
.yea{bottom:487.866667pt;}
.ycf{bottom:488.266667pt;}
.y15{bottom:491.146667pt;}
.y93{bottom:491.626667pt;}
.y18e{bottom:491.946667pt;}
.y59{bottom:494.986667pt;}
.y156{bottom:495.226667pt;}
.y43{bottom:495.546667pt;}
.y1cf{bottom:495.866667pt;}
.y11b{bottom:499.626667pt;}
.yb0{bottom:503.146667pt;}
.ye9{bottom:503.546667pt;}
.y180{bottom:503.866667pt;}
.yce{bottom:503.946667pt;}
.y14{bottom:506.746667pt;}
.y92{bottom:507.226667pt;}
.y18d{bottom:507.626667pt;}
.y58{bottom:510.586667pt;}
.y42{bottom:511.146667pt;}
.y1ce{bottom:511.546667pt;}
.y102{bottom:512.106667pt;}
.y7a{bottom:513.466667pt;}
.y11a{bottom:515.226667pt;}
.y1b4{bottom:515.626667pt;}
.ye8{bottom:519.146667pt;}
.ycd{bottom:519.546667pt;}
.y13{bottom:522.426667pt;}
.y18c{bottom:523.226667pt;}
.y57{bottom:526.186667pt;}
.y155{bottom:526.826667pt;}
.y1cd{bottom:527.146667pt;}
.y119{bottom:530.826667pt;}
.y1b3{bottom:531.226667pt;}
.yaf{bottom:534.826667pt;}
.ycc{bottom:535.146667pt;}
.y12{bottom:538.026667pt;}
.y91{bottom:538.826667pt;}
.y56{bottom:541.866667pt;}
.y154{bottom:542.506667pt;}
.y41{bottom:542.826667pt;}
.yae{bottom:550.426667pt;}
.y13a{bottom:550.826667pt;}
.y11{bottom:553.706667pt;}
.y90{bottom:554.506667pt;}
.y1b2{bottom:554.826667pt;}
.y55{bottom:557.466667pt;}
.y153{bottom:558.106667pt;}
.y40{bottom:558.426667pt;}
.yad{bottom:566.026667pt;}
.ye7{bottom:566.426667pt;}
.ycb{bottom:566.826667pt;}
.y78{bottom:569.066667pt;}
.y10{bottom:569.306667pt;}
.y8f{bottom:570.106667pt;}
.y18b{bottom:570.506667pt;}
.y152{bottom:573.786667pt;}
.y3f{bottom:574.026667pt;}
.y101{bottom:578.346667pt;}
.y54{bottom:581.146667pt;}
.ye6{bottom:582.026667pt;}
.yca{bottom:582.426667pt;}
.yf{bottom:584.906667pt;}
.y198{bottom:585.786667pt;}
.y118{bottom:586.106667pt;}
.y3e{bottom:589.706667pt;}
.y1dc{bottom:590.026667pt;}
.y1b1{bottom:594.106667pt;}
.y151{bottom:597.386667pt;}
.yac{bottom:597.706667pt;}
.y17f{bottom:598.026667pt;}
.yc9{bottom:598.106667pt;}
.ye{bottom:600.586667pt;}
.y8e{bottom:601.813333pt;}
.y1cc{bottom:605.733333pt;}
.y1b0{bottom:609.813333pt;}
.y53{bottom:613.093333pt;}
.y3d{bottom:613.333333pt;}
.yc8{bottom:613.733333pt;}
.yd{bottom:616.213333pt;}
.y8d{bottom:617.413333pt;}
.y75{bottom:624.613333pt;}
.yab{bottom:629.013333pt;}
.yc7{bottom:629.333333pt;}
.yc{bottom:631.893333pt;}
.y8c{bottom:633.013333pt;}
.y1af{bottom:633.413333pt;}
.yff{bottom:644.613333pt;}
.y150{bottom:644.693333pt;}
.y3c{bottom:645.013333pt;}
.y197{bottom:648.693333pt;}
.y1ae{bottom:649.013333pt;}
.yc6{bottom:653.013333pt;}
.yb{bottom:655.813333pt;}
.y52{bottom:655.973333pt;}
.y8b{bottom:656.693333pt;}
.y14f{bottom:660.293333pt;}
.y3b{bottom:660.613333pt;}
.y196{bottom:664.293333pt;}
.y117{bottom:664.693333pt;}
.y1cb{bottom:668.613333pt;}
.y1ad{bottom:672.693333pt;}
.y14e{bottom:675.973333pt;}
.y3a{bottom:676.213333pt;}
.y17e{bottom:676.613333pt;}
.y195{bottom:679.973333pt;}
.y71{bottom:680.213333pt;}
.y116{bottom:680.293333pt;}
.y1ca{bottom:684.213333pt;}
.y51{bottom:684.613333pt;}
.yc5{bottom:684.933333pt;}
.y1ac{bottom:688.293333pt;}
.y8a{bottom:688.613333pt;}
.y14d{bottom:691.573333pt;}
.yaa{bottom:691.893333pt;}
.y139{bottom:692.213333pt;}
.y115{bottom:695.973333pt;}
.ya{bottom:698.693333pt;}
.y1c9{bottom:699.893333pt;}
.y194{bottom:703.573333pt;}
.ya9{bottom:707.493333pt;}
.y39{bottom:707.893333pt;}
.yfe{bottom:710.773333pt;}
.y18a{bottom:711.573333pt;}
.y1ab{bottom:711.973333pt;}
.y14c{bottom:723.173333pt;}
.y38{bottom:723.493333pt;}
.y189{bottom:727.173333pt;}
.y114{bottom:727.573333pt;}
.yc4{bottom:727.813333pt;}
.y9{bottom:730.293333pt;}
.y89{bottom:731.493333pt;}
.y193{bottom:735.493333pt;}
.y14b{bottom:738.853333pt;}
.y37{bottom:739.093333pt;}
.y113{bottom:743.173333pt;}
.yc3{bottom:743.413333pt;}
.y88{bottom:747.093333pt;}
.y188{bottom:750.853333pt;}
.y1aa{bottom:751.173333pt;}
.y14a{bottom:754.453333pt;}
.y36{bottom:754.773333pt;}
.y112{bottom:758.853333pt;}
.yc2{bottom:759.093333pt;}
.y8{bottom:762.133333pt;}
.y87{bottom:762.773333pt;}
.y1a9{bottom:766.853333pt;}
.y149{bottom:770.133333pt;}
.ya8{bottom:770.373333pt;}
.y138{bottom:770.773333pt;}
.yc1{bottom:774.693333pt;}
.yfd{bottom:777.013333pt;}
.y70{bottom:778.373333pt;}
.y187{bottom:782.773333pt;}
.ye5{bottom:786.053333pt;}
.y35{bottom:786.373333pt;}
.y111{bottom:790.453333pt;}
.y16a{bottom:794.053333pt;}
.y174{bottom:794.373333pt;}
.y7{bottom:797.493333pt;}
.y148{bottom:801.733333pt;}
.y34{bottom:802.053333pt;}
.y110{bottom:806.133333pt;}
.yc0{bottom:807.093333pt;}
.ye4{bottom:809.653333pt;}
.y6f{bottom:810.053333pt;}
.y6{bottom:813.493333pt;}
.y147{bottom:817.333333pt;}
.y33{bottom:817.653333pt;}
.y10f{bottom:821.733333pt;}
.ybf{bottom:822.693333pt;}
.y6e{bottom:825.653333pt;}
.y146{bottom:833.013333pt;}
.y32{bottom:833.253333pt;}
.y10e{bottom:837.333333pt;}
.ybe{bottom:838.293333pt;}
.y6d{bottom:841.253333pt;}
.y5{bottom:842.213333pt;}
.y1a8{bottom:845.333333pt;}
.y145{bottom:848.613333pt;}
.ya7{bottom:848.933333pt;}
.y137{bottom:849.253333pt;}
.y10d{bottom:853.013333pt;}
.y31{bottom:856.933333pt;}
.y1a7{bottom:861.013333pt;}
.y144{bottom:864.213333pt;}
.ya6{bottom:864.533333pt;}
.y136{bottom:864.933333pt;}
.ybd{bottom:870.693333pt;}
.ye3{bottom:872.533333pt;}
.y86{bottom:872.933333pt;}
.y4{bottom:876.293333pt;}
.y135{bottom:880.533333pt;}
.y10c{bottom:884.613333pt;}
.y143{bottom:887.893333pt;}
.ya5{bottom:888.213333pt;}
.y30{bottom:888.533333pt;}
.y134{bottom:896.213333pt;}
.y3{bottom:898.213333pt;}
.y10b{bottom:900.213333pt;}
.ybc{bottom:902.373333pt;}
.y2f{bottom:904.213333pt;}
.y1c8{bottom:911.813333pt;}
.y10a{bottom:915.893333pt;}
.y2e{bottom:919.813333pt;}
.y1a6{bottom:923.893333pt;}
.y133{bottom:927.813333pt;}
.y109{bottom:931.493333pt;}
.ybb{bottom:933.973333pt;}
.y2d{bottom:935.413333pt;}
.y1a5{bottom:939.493333pt;}
.y132{bottom:943.413333pt;}
.y108{bottom:947.173333pt;}
.yba{bottom:949.573333pt;}
.ya4{bottom:951.093333pt;}
.y6c{bottom:951.413333pt;}
.y131{bottom:959.120000pt;}
.y1a4{bottom:963.200000pt;}
.y142{bottom:965.760000pt;}
.y192{bottom:966.720000pt;}
.y2c{bottom:967.120000pt;}
.y107{bottom:970.800000pt;}
.y130{bottom:974.720000pt;}
.y1a3{bottom:978.800000pt;}
.yb9{bottom:982.000000pt;}
.y2b{bottom:982.720000pt;}
.y12f{bottom:990.400000pt;}
.yb8{bottom:997.600000pt;}
.y2a{bottom:998.400000pt;}
.y106{bottom:1002.720000pt;}
.yb7{bottom:1013.200000pt;}
.y29{bottom:1014.000000pt;}
.y27{bottom:1062.000000pt;}
.h2{height:26.686563pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h13{height:39.200000pt;}
.h12{height:39.280000pt;}
.hc{height:45.246562pt;}
.hb{height:45.336875pt;}
.h7{height:46.499062pt;}
.h9{height:46.591875pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.ha{height:54.187500pt;}
.hd{height:54.880000pt;}
.hf{height:54.906667pt;}
.h11{height:54.927899pt;}
.he{height:54.960000pt;}
.h14{height:54.986667pt;}
.h4{height:64.875937pt;}
.h10{height:70.586667pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w8{width:52.400000pt;}
.w11{width:71.066667pt;}
.w3{width:75.386667pt;}
.wb{width:114.160000pt;}
.wd{width:133.946667pt;}
.w4{width:138.560000pt;}
.w7{width:140.426667pt;}
.w10{width:140.720000pt;}
.w6{width:145.680000pt;}
.wf{width:153.866667pt;}
.w9{width:162.986667pt;}
.wc{width:166.106667pt;}
.w5{width:169.146667pt;}
.we{width:169.520000pt;}
.wa{width:173.466667pt;}
.w1{width:793.333333pt;}
.w2{width:793.359988pt;}
.w0{width:793.360000pt;}
.x0{left:0.000000pt;}
.x10{left:5.040000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.xe{left:84.479988pt;}
.x1d{left:98.879988pt;}
.xf{left:108.479988pt;}
.x11{left:113.840000pt;}
.x8{left:137.146667pt;}
.x2{left:179.946655pt;}
.x17{left:195.386667pt;}
.x16{left:200.026655pt;}
.x1c{left:206.506655pt;}
.x6{left:229.546655pt;}
.xd{left:240.746655pt;}
.x9{left:276.346667pt;}
.x12{left:277.546667pt;}
.x18{left:365.626667pt;}
.x4{left:396.666655pt;}
.xa{left:446.133333pt;}
.x13{left:451.653333pt;}
.x19{left:520.133333pt;}
.x1b{left:545.733322pt;}
.x14{left:566.453333pt;}
.x15{left:572.693322pt;}
.xb{left:592.453333pt;}
.x1a{left:661.493333pt;}
.x5{left:699.759988pt;}
.x3{left:703.439988pt;}
.xc{left:721.119988pt;}
}




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