
    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_6645e4367fe9e9849a0ea1fa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.692871;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_1a75d8da28242d6013223e0a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.706055;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_b9262b9ef994bb9c3507bd85.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5631f1a9f5174ebd43bc9391.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_12da4bf45f97a06e50a0a97c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d6520655d7b64304bfbf24ee.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f4bb99dc531a2a237c85adb8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.943359;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_9bfbdda6cbd87d954a789a1e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.116211;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_731f815dad46c7211a5980c3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_d38883e5780f9dc074999344.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_457c1d7f031f17fdbfb8e7a4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.715820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3f98b1c773425bd5b1cee132.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_3e140cd325a8895bad2c7fc7.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.091309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_e866a48bc061b3d7c95be31e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.942871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_66fc3562fa24db604dfac788.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_7b5d2bc417610a4608e84df1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_003ca76c2aa4b82c6384a3ec.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_4479fa7bbbc1790f7a5e52dd.woff2')format("woff");}.ff12{font-family:ff12;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);}
.v0{vertical-align:0.000000px;}
.ls40{letter-spacing:-2.407682px;}
.ls42{letter-spacing:-2.217602px;}
.ls43{letter-spacing:-2.090882px;}
.ls47{letter-spacing:-1.837441px;}
.ls44{letter-spacing:-1.774081px;}
.ls6e{letter-spacing:-1.566001px;}
.ls41{letter-spacing:-1.457281px;}
.ls2f{letter-spacing:-1.393921px;}
.ls31{letter-spacing:-1.330561px;}
.ls32{letter-spacing:-1.140481px;}
.ls68{letter-spacing:-1.075681px;}
.ls2d{letter-spacing:-1.013761px;}
.ls24{letter-spacing:-0.950401px;}
.ls69{letter-spacing:-0.836641px;}
.ls22{letter-spacing:-0.823681px;}
.ls6a{letter-spacing:-0.776881px;}
.ls20{letter-spacing:-0.760321px;}
.ls71{letter-spacing:-0.702001px;}
.ls2c{letter-spacing:-0.696961px;}
.ls4e{letter-spacing:-0.657361px;}
.ls6f{letter-spacing:-0.594000px;}
.ls2b{letter-spacing:-0.570240px;}
.ls4d{letter-spacing:-0.506880px;}
.ls1c{letter-spacing:-0.486000px;}
.ls2e{letter-spacing:-0.443520px;}
.ls30{letter-spacing:-0.380160px;}
.ls1d{letter-spacing:-0.378000px;}
.ls18{letter-spacing:-0.358560px;}
.ls3f{letter-spacing:-0.316800px;}
.ls13{letter-spacing:-0.298800px;}
.ls17{letter-spacing:-0.239040px;}
.ls10{letter-spacing:-0.179280px;}
.ls15{letter-spacing:-0.168480px;}
.ls25{letter-spacing:-0.162000px;}
.ls1b{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.119520px;}
.ls70{letter-spacing:-0.108000px;}
.ls21{letter-spacing:-0.063360px;}
.ls12{letter-spacing:-0.059760px;}
.ls1f{letter-spacing:-0.054000px;}
.lsf{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.001140px;}
.ls4c{letter-spacing:0.023880px;}
.ls63{letter-spacing:0.054000px;}
.ls5b{letter-spacing:0.063240px;}
.lsd{letter-spacing:0.091140px;}
.ls67{letter-spacing:0.107930px;}
.lsa{letter-spacing:0.108000px;}
.ls66{letter-spacing:0.124860px;}
.ls23{letter-spacing:0.126720px;}
.ls9{letter-spacing:0.144000px;}
.ls6d{letter-spacing:0.162000px;}
.ls1a{letter-spacing:0.191520px;}
.lse{letter-spacing:0.193500px;}
.ls65{letter-spacing:0.198000px;}
.lsb{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.237420px;}
.ls6c{letter-spacing:0.239040px;}
.ls64{letter-spacing:0.242340px;}
.ls1{letter-spacing:0.243060px;}
.ls16{letter-spacing:0.252720px;}
.ls5e{letter-spacing:0.256080px;}
.ls49{letter-spacing:0.271200px;}
.ls5{letter-spacing:0.276780px;}
.ls2{letter-spacing:0.282420px;}
.ls8{letter-spacing:0.288060px;}
.ls61{letter-spacing:0.293700px;}
.ls4f{letter-spacing:0.297180px;}
.ls54{letter-spacing:0.299280px;}
.ls62{letter-spacing:0.304920px;}
.ls4b{letter-spacing:0.316200px;}
.ls4{letter-spacing:0.321780px;}
.ls4a{letter-spacing:0.333060px;}
.ls51{letter-spacing:0.336540px;}
.ls5d{letter-spacing:0.353460px;}
.ls19{letter-spacing:0.358560px;}
.ls52{letter-spacing:0.359040px;}
.ls1e{letter-spacing:0.378000px;}
.ls5a{letter-spacing:0.378060px;}
.ls3d{letter-spacing:0.380280px;}
.ls58{letter-spacing:0.411780px;}
.ls57{letter-spacing:0.473700px;}
.ls53{letter-spacing:0.479280px;}
.ls5f{letter-spacing:0.482580px;}
.ls50{letter-spacing:0.494040px;}
.ls6{letter-spacing:0.538200px;}
.ls14{letter-spacing:0.597600px;}
.ls60{letter-spacing:0.608700px;}
.ls27{letter-spacing:0.651421px;}
.ls7{letter-spacing:0.655501px;}
.ls6b{letter-spacing:0.657361px;}
.ls0{letter-spacing:0.661081px;}
.ls5c{letter-spacing:0.751081px;}
.ls59{letter-spacing:0.951781px;}
.ls55{letter-spacing:0.957421px;}
.ls56{letter-spacing:1.041781px;}
.ls29{letter-spacing:2.158922px;}
.ls36{letter-spacing:2.529062px;}
.ls37{letter-spacing:2.534702px;}
.ls28{letter-spacing:3.548283px;}
.ls26{letter-spacing:5.005204px;}
.ls39{letter-spacing:8.300287px;}
.ls2a{letter-spacing:9.757208px;}
.ls46{letter-spacing:10.454708px;}
.ls3b{letter-spacing:11.979070px;}
.ls38{letter-spacing:13.368431px;}
.ls3c{letter-spacing:14.065931px;}
.ls33{letter-spacing:18.374715px;}
.ls3e{letter-spacing:19.195935px;}
.ls35{letter-spacing:19.831576px;}
.ls3a{letter-spacing:20.529076px;}
.ls34{letter-spacing:22.683438px;}
.ls45{letter-spacing:26.379081px;}
.ls48{letter-spacing:27.127222px;}
.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;}
}
.ws25{word-spacing:-47.520038px;}
.ws4{word-spacing:-44.820036px;}
.wse{word-spacing:-40.500032px;}
.ws34{word-spacing:-39.322111px;}
.ws7{word-spacing:-19.038255px;}
.ws2d{word-spacing:-17.614094px;}
.ws35{word-spacing:-17.270654px;}
.ws6{word-spacing:-17.210894px;}
.ws2c{word-spacing:-17.170574px;}
.ws9{word-spacing:-16.971854px;}
.ws28{word-spacing:-16.917134px;}
.ws2f{word-spacing:-16.853773px;}
.ws26{word-spacing:-16.790413px;}
.ws23{word-spacing:-16.663693px;}
.ws1{word-spacing:-16.613293px;}
.ws24{word-spacing:-16.600333px;}
.ws5{word-spacing:-16.553533px;}
.ws2{word-spacing:-16.493773px;}
.ws0{word-spacing:-16.434013px;}
.wsa{word-spacing:-16.416013px;}
.ws31{word-spacing:-16.374253px;}
.ws3{word-spacing:-16.314493px;}
.wsb{word-spacing:-16.272013px;}
.ws8{word-spacing:-16.254733px;}
.ws2a{word-spacing:-16.156813px;}
.ws30{word-spacing:-15.955933px;}
.ws2e{word-spacing:-15.840013px;}
.ws33{word-spacing:-15.776653px;}
.ws2b{word-spacing:-15.523212px;}
.ws29{word-spacing:-15.396492px;}
.wsc{word-spacing:-15.228012px;}
.ws27{word-spacing:-15.206412px;}
.ws36{word-spacing:-15.174012px;}
.wsf{word-spacing:-15.120012px;}
.wsd{word-spacing:-15.012012px;}
.ws37{word-spacing:-14.958012px;}
.ws39{word-spacing:-14.904012px;}
.ws10{word-spacing:-14.634012px;}
.ws11{word-spacing:-14.526012px;}
.ws15{word-spacing:-14.446092px;}
.ws1d{word-spacing:-14.382732px;}
.ws14{word-spacing:-13.685771px;}
.ws13{word-spacing:-13.622411px;}
.ws16{word-spacing:-13.495691px;}
.ws38{word-spacing:-13.446011px;}
.ws12{word-spacing:-12.312010px;}
.ws3c{word-spacing:-0.418320px;}
.ws3d{word-spacing:-0.216000px;}
.ws19{word-spacing:-0.108000px;}
.ws1b{word-spacing:-0.072000px;}
.ws18{word-spacing:-0.054000px;}
.ws17{word-spacing:0.000000px;}
.ws3a{word-spacing:0.059760px;}
.ws3b{word-spacing:0.179280px;}
.ws1c{word-spacing:0.288000px;}
.ws1a{word-spacing:0.702001px;}
.ws32{word-spacing:0.776881px;}
.ws22{word-spacing:0.823681px;}
.ws21{word-spacing:2.914562px;}
.ws1e{word-spacing:3.611523px;}
.ws20{word-spacing:5.068804px;}
.ws1f{word-spacing:5.765765px;}
._3{margin-left:-2.357299px;}
._1{margin-left:-1.325521px;}
._0{width:1.253521px;}
._2{width:2.460662px;}
._6{width:3.682845px;}
._4{width:4.913951px;}
._5{width:5.969763px;}
._7{width:7.579824px;}
._9{width:8.884796px;}
._b{width:10.880669px;}
._8{width:11.980209px;}
._14{width:13.221584px;}
._d{width:14.246143px;}
._e{width:15.760093px;}
._11{width:17.994991px;}
._a{width:19.568600px;}
._13{width:20.569078px;}
._17{width:21.631382px;}
._c{width:23.635369px;}
._f{width:24.987978px;}
._10{width:26.377778px;}
._19{width:27.773379px;}
._15{width:29.520051px;}
._18{width:30.771473px;}
._16{width:31.893226px;}
._12{width:33.240974px;}
._1c{width:39.221236px;}
._1a{width:40.445547px;}
._20{width:43.321828px;}
._1f{width:44.490385px;}
._1d{width:49.415482px;}
._1e{width:50.539603px;}
._1b{width:65.197175px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(51,51,51);}
.fc2{color:rgb(232,44,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000029px;}
.fs6{font-size:48.240039px;}
.fs2{font-size:54.000043px;}
.fs0{font-size:59.760048px;}
.fs5{font-size:63.360051px;}
.fs1{font-size:72.000058px;}
.fs3{font-size:84.240067px;}
.fs4{font-size:95.760077px;}
.y0{bottom:0.000000px;}
.y1e3{bottom:3.060157px;}
.y3d{bottom:4.320076px;}
.y94{bottom:4.320077px;}
.y3f{bottom:23.580078px;}
.y5{bottom:29.700087px;}
.y39{bottom:37.080087px;}
.y38{bottom:71.460000px;}
.y95{bottom:73.800000px;}
.y3e{bottom:73.980000px;}
.y3a{bottom:77.584262px;}
.y4{bottom:78.660000px;}
.y40{bottom:81.720065px;}
.y96{bottom:81.900066px;}
.y3{bottom:89.100071px;}
.y3b{bottom:89.460072px;}
.y3c{bottom:90.360000px;}
.y93{bottom:91.620000px;}
.y6{bottom:92.880074px;}
.y2{bottom:110.160088px;}
.y102{bottom:152.642222px;}
.y77{bottom:154.912504px;}
.y92{bottom:154.979254px;}
.ycb{bottom:156.361625px;}
.y1ac{bottom:157.473276px;}
.y111{bottom:161.446479px;}
.y147{bottom:163.390331px;}
.y37{bottom:166.890584px;}
.y101{bottom:170.636687px;}
.y76{bottom:173.096718px;}
.y91{bottom:173.163469px;}
.yca{bottom:174.181639px;}
.y1ab{bottom:174.400340px;}
.y110{bottom:179.440944px;}
.y1f1{bottom:180.540144px;}
.y146{bottom:181.036045px;}
.y36{bottom:184.883548px;}
.y100{bottom:188.941801px;}
.y90{bottom:191.157933px;}
.y75{bottom:191.280933px;}
.y1aa{bottom:191.327403px;}
.yc9{bottom:191.827353px;}
.y1d7{bottom:192.960000px;}
.y10f{bottom:197.435408px;}
.y145{bottom:198.856059px;}
.y1f0{bottom:202.864662px;}
.y35{bottom:203.069262px;}
.yff{bottom:206.936266px;}
.y1a9{bottom:208.254467px;}
.y8f{bottom:209.242397px;}
.y74{bottom:209.275397px;}
.yc8{bottom:209.647368px;}
.y1d8{bottom:210.060322px;}
.y1e2{bottom:211.500169px;}
.y10e{bottom:215.429872px;}
.y144{bottom:216.501773px;}
.y1ef{bottom:218.700175px;}
.y34{bottom:221.062227px;}
.yfe{bottom:224.930730px;}
.y1a8{bottom:225.360180px;}
.y8e{bottom:227.062412px;}
.yc7{bottom:227.293082px;}
.y1e1{bottom:227.340182px;}
.y73{bottom:227.459612px;}
.y10d{bottom:233.249887px;}
.y1ee{bottom:233.991787px;}
.y143{bottom:234.321787px;}
.y33{bottom:239.056691px;}
.y1a7{bottom:242.100194px;}
.yfd{bottom:242.750744px;}
.y8d{bottom:244.708126px;}
.yc6{bottom:245.113096px;}
.y72{bottom:245.454076px;}
.y1ed{bottom:249.476000px;}
.y10c{bottom:251.434101px;}
.y142{bottom:251.967502px;}
.y1e0{bottom:255.960205px;}
.y32{bottom:257.240906px;}
.y1a6{bottom:259.016307px;}
.yfc{bottom:260.745209px;}
.y8c{bottom:262.528140px;}
.yc5{bottom:262.758810px;}
.y71{bottom:263.638291px;}
.y1ec{bottom:264.960212px;}
.y10b{bottom:269.618316px;}
.y141{bottom:269.787516px;}
.y1df{bottom:271.620217px;}
.y31{bottom:275.235370px;}
.y1a5{bottom:275.936321px;}
.yfb{bottom:278.739673px;}
.y8b{bottom:280.173854px;}
.yc4{bottom:280.578824px;}
.y1eb{bottom:280.966125px;}
.y70{bottom:281.822505px;}
.y140{bottom:287.434580px;}
.y10a{bottom:287.612780px;}
.y1de{bottom:291.600233px;}
.y30{bottom:293.419585px;}
.y1ea{bottom:296.451837px;}
.yfa{bottom:296.734137px;}
.y8a{bottom:297.993868px;}
.yc3{bottom:298.224539px;}
.y6f{bottom:299.468220px;}
.y176{bottom:302.115392px;}
.y13f{bottom:305.254594px;}
.y109{bottom:305.796995px;}
.y1dd{bottom:307.080246px;}
.y2f{bottom:311.414049px;}
.y1e9{bottom:311.936050px;}
.yf9{bottom:314.728602px;}
.y89{bottom:315.640933px;}
.yc2{bottom:316.044553px;}
.y6e{bottom:317.288234px;}
.y175{bottom:319.761106px;}
.y1dc{bottom:322.560258px;}
.y13e{bottom:322.900308px;}
.y108{bottom:323.981209px;}
.y1a4{bottom:325.586810px;}
.y2e{bottom:329.408514px;}
.y1e8{bottom:331.916066px;}
.yf8{bottom:332.548616px;}
.y88{bottom:333.460947px;}
.yc1{bottom:333.691617px;}
.y6d{bottom:334.933948px;}
.y174{bottom:337.216920px;}
.y13d{bottom:340.720323px;}
.y107{bottom:341.975674px;}
.y1db{bottom:342.711874px;}
.y1a3{bottom:343.771025px;}
.y2d{bottom:347.592728px;}
.yf7{bottom:350.543080px;}
.y87{bottom:351.453911px;}
.yc0{bottom:351.511631px;}
.y1e7{bottom:352.071882px;}
.y6c{bottom:352.753962px;}
.y173{bottom:354.862634px;}
.y13c{bottom:358.366037px;}
.y106{bottom:360.159888px;}
.y1a2{bottom:361.956740px;}
.y1da{bottom:363.056090px;}
.y2c{bottom:365.587192px;}
.y1e6{bottom:367.556094px;}
.yf6{bottom:368.536045px;}
.y86{bottom:369.638126px;}
.y6b{bottom:370.399676px;}
.ybf{bottom:373.655849px;}
.y13b{bottom:376.186051px;}
.y172{bottom:377.006852px;}
.y105{bottom:378.154353px;}
.y1a1{bottom:379.949704px;}
.y1e5{bottom:383.040306px;}
.y2b{bottom:383.771407px;}
.yf5{bottom:386.530509px;}
.y1d9{bottom:387.180310px;}
.y85{bottom:387.823840px;}
.y6a{bottom:388.219691px;}
.ybe{bottom:391.840063px;}
.y13a{bottom:393.831765px;}
.y104{bottom:396.338567px;}
.y1a0{bottom:398.135419px;}
.y1e4{bottom:398.520319px;}
.y171{bottom:399.499820px;}
.y2a{bottom:401.765871px;}
.yf4{bottom:404.350523px;}
.y84{bottom:405.816805px;}
.y69{bottom:405.865405px;}
.ybd{bottom:410.024278px;}
.y139{bottom:411.651779px;}
.y103{bottom:414.522782px;}
.y19f{bottom:416.128383px;}
.y170{bottom:417.145534px;}
.y29{bottom:419.760336px;}
.yf3{bottom:422.344988px;}
.y68{bottom:423.685419px;}
.y83{bottom:424.002519px;}
.y1d6{bottom:426.960357px;}
.y138{bottom:429.297493px;}
.ybc{bottom:432.517246px;}
.y19e{bottom:434.314097px;}
.y16f{bottom:434.791248px;}
.yf2{bottom:440.339452px;}
.y1d5{bottom:441.180368px;}
.y67{bottom:441.331133px;}
.y82{bottom:441.995484px;}
.y28{bottom:445.860357px;}
.y137{bottom:447.262408px;}
.ybb{bottom:450.701461px;}
.y16e{bottom:452.247062px;}
.y19d{bottom:452.498312px;}
.y1d4{bottom:452.887412px;}
.yf1{bottom:458.333917px;}
.y66{bottom:459.151147px;}
.y81{bottom:460.181198px;}
.y136{bottom:465.256872px;}
.yba{bottom:468.695925px;}
.y1d3{bottom:469.440376px;}
.y16d{bottom:469.892776px;}
.y19c{bottom:470.318326px;}
.y27{bottom:473.940379px;}
.yf0{bottom:476.328381px;}
.y65{bottom:476.798211px;}
.y80{bottom:478.365413px;}
.y135{bottom:483.249837px;}
.y1d2{bottom:486.354389px;}
.yb9{bottom:486.880140px;}
.y16c{bottom:487.538490px;}
.y19b{bottom:487.964040px;}
.yef{bottom:494.148395px;}
.y64{bottom:494.618226px;}
.y7f{bottom:496.359877px;}
.y134{bottom:501.069851px;}
.y1d1{bottom:503.460403px;}
.y16b{bottom:504.994304px;}
.yb8{bottom:505.064354px;}
.y19a{bottom:505.609754px;}
.y26{bottom:505.976205px;}
.yee{bottom:512.142860px;}
.y63{bottom:512.263940px;}
.y7e{bottom:514.544092px;}
.y133{bottom:519.064315px;}
.y1d0{bottom:520.200416px;}
.y25{bottom:521.096217px;}
.y16a{bottom:522.640018px;}
.yb7{bottom:523.058818px;}
.y199{bottom:523.065568px;}
.y62{bottom:530.083954px;}
.yed{bottom:530.137324px;}
.y7d{bottom:532.728306px;}
.y24{bottom:536.580429px;}
.y132{bottom:537.058780px;}
.y1cf{bottom:537.120430px;}
.y169{bottom:540.285732px;}
.y198{bottom:540.711283px;}
.yb6{bottom:541.243033px;}
.y61{bottom:547.729668px;}
.yec{bottom:548.131789px;}
.y7c{bottom:550.722771px;}
.y23{bottom:553.320443px;}
.y1ce{bottom:554.033393px;}
.y131{bottom:555.053244px;}
.y168{bottom:557.741546px;}
.y197{bottom:558.356997px;}
.yb5{bottom:559.427248px;}
.y60{bottom:565.549682px;}
.yeb{bottom:565.951803px;}
.y7b{bottom:568.906985px;}
.y1cd{bottom:570.960457px;}
.y130{bottom:572.873258px;}
.y167{bottom:575.387260px;}
.y196{bottom:575.812811px;}
.yb4{bottom:577.421712px;}
.y22{bottom:577.616262px;}
.y5f{bottom:583.369697px;}
.yea{bottom:583.946267px;}
.y7a{bottom:586.901450px;}
.y1cc{bottom:587.887520px;}
.y12f{bottom:590.867723px;}
.y21{bottom:592.736274px;}
.y166{bottom:593.032974px;}
.y195{bottom:593.458525px;}
.yb3{bottom:595.605926px;}
.y5e{bottom:601.015411px;}
.ye9{bottom:601.939232px;}
.y1cb{bottom:604.620484px;}
.y79{bottom:605.085664px;}
.y20{bottom:608.396287px;}
.y12e{bottom:608.862187px;}
.y165{bottom:610.488788px;}
.y194{bottom:611.104239px;}
.yb2{bottom:613.600391px;}
.ye8{bottom:619.933696px;}
.y1ca{bottom:621.721847px;}
.y5d{bottom:623.159629px;}
.y78{bottom:623.269879px;}
.y1f{bottom:623.880499px;}
.y12d{bottom:626.856651px;}
.y164{bottom:628.134503px;}
.y193{bottom:628.560053px;}
.yb1{bottom:631.784605px;}
.ye7{bottom:637.928160px;}
.y1c9{bottom:639.007561px;}
.y5c{bottom:640.619642px;}
.y1e{bottom:640.620512px;}
.y12c{bottom:644.851116px;}
.y163{bottom:645.781567px;}
.y192{bottom:646.205767px;}
.yb0{bottom:649.968820px;}
.y5b{bottom:655.222154px;}
.y1c8{bottom:655.560524px;}
.ye6{bottom:655.748175px;}
.y12b{bottom:662.671130px;}
.y162{bottom:663.237381px;}
.y191{bottom:663.851481px;}
.y1d{bottom:664.916332px;}
.yaf{bottom:667.963284px;}
.y1c7{bottom:672.619588px;}
.y5a{bottom:673.407869px;}
.ye5{bottom:673.742639px;}
.y1c{bottom:680.036344px;}
.y12a{bottom:680.665595px;}
.y161{bottom:680.883095px;}
.y190{bottom:681.307295px;}
.yae{bottom:686.147499px;}
.y1c6{bottom:689.546652px;}
.y59{bottom:691.400833px;}
.ye4{bottom:691.737103px;}
.y1b{bottom:695.520556px;}
.y160{bottom:698.528809px;}
.y129{bottom:698.660059px;}
.y18f{bottom:698.953009px;}
.yad{bottom:704.141963px;}
.y1c5{bottom:706.473715px;}
.y58{bottom:709.586548px;}
.ye3{bottom:709.731568px;}
.y1a{bottom:712.260570px;}
.y15f{bottom:716.174523px;}
.y18e{bottom:716.598723px;}
.y128{bottom:716.653023px;}
.yac{bottom:722.326178px;}
.y1c4{bottom:723.206679px;}
.ye2{bottom:727.551582px;}
.y57{bottom:727.579512px;}
.y15e{bottom:733.630337px;}
.y18d{bottom:734.245787px;}
.y127{bottom:734.473038px;}
.y1c3{bottom:740.133742px;}
.yab{bottom:740.510392px;}
.ye1{bottom:745.546046px;}
.y56{bottom:745.573976px;}
.y19{bottom:746.280597px;}
.y15d{bottom:751.276051px;}
.y18c{bottom:751.700251px;}
.y126{bottom:752.467502px;}
.y1c2{bottom:757.060806px;}
.yaa{bottom:758.504857px;}
.ye0{bottom:763.540511px;}
.y55{bottom:763.758191px;}
.y15c{bottom:768.921765px;}
.y18b{bottom:769.347315px;}
.y125{bottom:770.461966px;}
.y18{bottom:773.820619px;}
.y1c1{bottom:773.987869px;}
.ya9{bottom:776.689071px;}
.ydf{bottom:781.534975px;}
.y54{bottom:781.752655px;}
.y15b{bottom:786.377579px;}
.y18a{bottom:786.993030px;}
.y124{bottom:788.456431px;}
.y1c0{bottom:790.914933px;}
.ya8{bottom:794.873286px;}
.yde{bottom:799.529440px;}
.y53{bottom:799.936870px;}
.y15a{bottom:804.023293px;}
.y189{bottom:804.448844px;}
.y123{bottom:806.450895px;}
.y1bf{bottom:807.841996px;}
.y17{bottom:811.423549px;}
.ya7{bottom:812.867750px;}
.ydd{bottom:817.349454px;}
.y52{bottom:817.931334px;}
.y159{bottom:821.669007px;}
.y188{bottom:822.094558px;}
.y122{bottom:824.270909px;}
.y1be{bottom:824.769060px;}
.y16{bottom:828.529263px;}
.ya6{bottom:831.051965px;}
.ydc{bottom:835.342418px;}
.y51{bottom:835.925799px;}
.y158{bottom:839.124821px;}
.y187{bottom:839.740272px;}
.y1bd{bottom:841.502023px;}
.y15{bottom:845.814977px;}
.y121{bottom:846.763877px;}
.ya5{bottom:849.046429px;}
.ydb{bottom:853.336883px;}
.y50{bottom:854.110013px;}
.y157{bottom:856.770535px;}
.y186{bottom:857.196086px;}
.y1bc{bottom:858.429087px;}
.y14{bottom:863.100690px;}
.y120{bottom:864.948092px;}
.ya4{bottom:867.230644px;}
.yda{bottom:871.331347px;}
.y4f{bottom:872.104478px;}
.y156{bottom:874.416250px;}
.y185{bottom:874.841800px;}
.y13{bottom:881.640705px;}
.y1bb{bottom:884.707758px;}
.ya3{bottom:885.414858px;}
.y11f{bottom:887.441060px;}
.yd9{bottom:889.151361px;}
.y4e{bottom:890.288692px;}
.y155{bottom:891.872063px;}
.y184{bottom:892.487514px;}
.y1ba{bottom:901.440721px;}
.ya2{bottom:903.409323px;}
.y11e{bottom:905.435524px;}
.yd8{bottom:907.145826px;}
.y4d{bottom:908.283157px;}
.y12{bottom:908.983627px;}
.y154{bottom:909.517778px;}
.y183{bottom:909.943328px;}
.y1b9{bottom:918.353235px;}
.ya1{bottom:921.593537px;}
.y11d{bottom:923.429989px;}
.yd7{bottom:925.140290px;}
.y11{bottom:926.089341px;}
.y4c{bottom:926.277621px;}
.y153{bottom:927.164842px;}
.y182{bottom:927.589042px;}
.y1b8{bottom:935.280748px;}
.ya0{bottom:939.588002px;}
.y11c{bottom:941.424453px;}
.yd6{bottom:943.134755px;}
.y10{bottom:943.375055px;}
.y4b{bottom:944.461836px;}
.y152{bottom:944.619306px;}
.y181{bottom:945.234756px;}
.y1b7{bottom:952.020762px;}
.y9f{bottom:957.772216px;}
.y11b{bottom:959.244467px;}
.yf{bottom:960.660769px;}
.yd5{bottom:961.129219px;}
.y151{bottom:962.266370px;}
.y4a{bottom:962.456300px;}
.y180{bottom:962.690570px;}
.y1b6{bottom:968.940775px;}
.y9e{bottom:975.956431px;}
.y11a{bottom:977.237432px;}
.yd4{bottom:978.949233px;}
.ye{bottom:979.380784px;}
.y150{bottom:979.912084px;}
.y17f{bottom:980.336284px;}
.y49{bottom:980.640515px;}
.y1b5{bottom:985.848039px;}
.y9d{bottom:993.950895px;}
.y119{bottom:995.231896px;}
.yd3{bottom:996.943698px;}
.y14f{bottom:997.367898px;}
.y48{bottom:997.920528px;}
.y17e{bottom:997.981998px;}
.y1b4{bottom:1002.953752px;}
.yd{bottom:1006.543705px;}
.y9c{bottom:1012.135110px;}
.y47{bottom:1012.514610px;}
.y118{bottom:1013.226361px;}
.yd2{bottom:1014.763712px;}
.y14e{bottom:1015.013612px;}
.y17d{bottom:1015.437812px;}
.y1b3{bottom:1019.880816px;}
.yc{bottom:1023.649419px;}
.y9b{bottom:1030.319324px;}
.y46{bottom:1030.509074px;}
.y117{bottom:1031.220825px;}
.yd1{bottom:1032.409426px;}
.y14d{bottom:1032.659326px;}
.y17c{bottom:1033.083526px;}
.y1b2{bottom:1036.608829px;}
.yb{bottom:1040.935133px;}
.y9a{bottom:1048.313789px;}
.y45{bottom:1048.693289px;}
.y116{bottom:1049.040839px;}
.y14c{bottom:1050.115140px;}
.yd0{bottom:1050.229440px;}
.y17b{bottom:1050.730591px;}
.y1b1{bottom:1053.895143px;}
.ya{bottom:1058.220847px;}
.y99{bottom:1066.498003px;}
.y44{bottom:1066.687753px;}
.y115{bottom:1067.035304px;}
.ycf{bottom:1067.875154px;}
.y14b{bottom:1067.935154px;}
.y17a{bottom:1068.376305px;}
.y1b0{bottom:1071.180857px;}
.y9{bottom:1076.940862px;}
.y98{bottom:1084.492468px;}
.y43{bottom:1084.682218px;}
.y114{bottom:1085.029768px;}
.yce{bottom:1085.695169px;}
.y14a{bottom:1085.755169px;}
.y179{bottom:1085.832119px;}
.y1af{bottom:1087.920870px;}
.y97{bottom:1102.676682px;}
.y42{bottom:1102.866432px;}
.y113{bottom:1103.024232px;}
.ycd{bottom:1103.340883px;}
.y149{bottom:1103.400883px;}
.y178{bottom:1103.477833px;}
.y8{bottom:1104.295183px;}
.y1ae{bottom:1105.027934px;}
.y112{bottom:1120.844247px;}
.y41{bottom:1120.860897px;}
.y177{bottom:1121.123547px;}
.ycc{bottom:1121.160897px;}
.y148{bottom:1121.220897px;}
.y7{bottom:1121.400897px;}
.y1ad{bottom:1121.580897px;}
.y1{bottom:1206.360965px;}
.h1f{height:26.384787px;}
.h12{height:29.700000px;}
.h15{height:33.494792px;}
.h17{height:35.998596px;}
.h13{height:36.000000px;}
.h7{height:39.313508px;}
.h21{height:39.550813px;}
.h22{height:39.553213px;}
.hd{height:39.577180px;}
.h23{height:39.610930px;}
.h2{height:41.493549px;}
.h5{height:42.120000px;}
.h8{height:43.506949px;}
.h18{height:43.769566px;}
.h9{height:43.798746px;}
.h1d{height:43.799346px;}
.h1e{height:43.822746px;}
.h1b{height:43.828746px;}
.h1a{height:43.846746px;}
.h19{height:43.905621px;}
.h1c{height:43.962546px;}
.h10{height:46.406287px;}
.h16{height:46.437225px;}
.he{height:47.566444px;}
.h4{height:48.761758px;}
.h11{height:49.680000px;}
.h3{height:49.992227px;}
.h6{height:52.418011px;}
.h14{height:55.811295px;}
.hf{height:57.389108px;}
.hc{height:65.214896px;}
.hb{height:70.136775px;}
.ha{height:76.301428px;}
.h20{height:222.300000px;}
.h0{height:1262.879850px;}
.h1{height:1263.000000px;}
.w4{width:18.000000px;}
.w6{width:18.180000px;}
.w2{width:228.780000px;}
.w5{width:233.640000px;}
.w7{width:252.538560px;}
.w3{width:303.840000px;}
.w0{width:892.979850px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:7.920068px;}
.xa{left:10.800077px;}
.x5{left:12.240481px;}
.x16{left:14.760490px;}
.xd{left:18.720486px;}
.x1a{left:77.040000px;}
.x7{left:84.960503px;}
.x1c{left:87.123955px;}
.xb{left:96.300077px;}
.x9{left:106.201405px;}
.x1b{left:108.360087px;}
.x18{left:116.820093px;}
.x11{left:138.061625px;}
.xf{left:169.909141px;}
.x1e{left:337.680270px;}
.x2{left:437.400785px;}
.xc{left:439.560000px;}
.x14{left:446.400792px;}
.x12{left:457.202181px;}
.x10{left:463.860446px;}
.x13{left:478.443368px;}
.x8{left:500.401855px;}
.x19{left:572.941238px;}
.x4{left:589.140000px;}
.x15{left:597.420000px;}
.x6{left:649.440520px;}
.xe{left:651.060521px;}
.x17{left:660.240528px;}
.x1{left:705.780565px;}
.x3{left:780.841060px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls40{letter-spacing:-2.140162pt;}
.ls42{letter-spacing:-1.971202pt;}
.ls43{letter-spacing:-1.858561pt;}
.ls47{letter-spacing:-1.633281pt;}
.ls44{letter-spacing:-1.576961pt;}
.ls6e{letter-spacing:-1.392001pt;}
.ls41{letter-spacing:-1.295361pt;}
.ls2f{letter-spacing:-1.239041pt;}
.ls31{letter-spacing:-1.182721pt;}
.ls32{letter-spacing:-1.013761pt;}
.ls68{letter-spacing:-0.956161pt;}
.ls2d{letter-spacing:-0.901121pt;}
.ls24{letter-spacing:-0.844801pt;}
.ls69{letter-spacing:-0.743681pt;}
.ls22{letter-spacing:-0.732161pt;}
.ls6a{letter-spacing:-0.690561pt;}
.ls20{letter-spacing:-0.675841pt;}
.ls71{letter-spacing:-0.624000pt;}
.ls2c{letter-spacing:-0.619520pt;}
.ls4e{letter-spacing:-0.584320pt;}
.ls6f{letter-spacing:-0.528000pt;}
.ls2b{letter-spacing:-0.506880pt;}
.ls4d{letter-spacing:-0.450560pt;}
.ls1c{letter-spacing:-0.432000pt;}
.ls2e{letter-spacing:-0.394240pt;}
.ls30{letter-spacing:-0.337920pt;}
.ls1d{letter-spacing:-0.336000pt;}
.ls18{letter-spacing:-0.318720pt;}
.ls3f{letter-spacing:-0.281600pt;}
.ls13{letter-spacing:-0.265600pt;}
.ls17{letter-spacing:-0.212480pt;}
.ls10{letter-spacing:-0.159360pt;}
.ls15{letter-spacing:-0.149760pt;}
.ls25{letter-spacing:-0.144000pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.106240pt;}
.ls70{letter-spacing:-0.096000pt;}
.ls21{letter-spacing:-0.056320pt;}
.ls12{letter-spacing:-0.053120pt;}
.ls1f{letter-spacing:-0.048000pt;}
.lsf{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.001013pt;}
.ls4c{letter-spacing:0.021227pt;}
.ls63{letter-spacing:0.048000pt;}
.ls5b{letter-spacing:0.056213pt;}
.lsd{letter-spacing:0.081013pt;}
.ls67{letter-spacing:0.095938pt;}
.lsa{letter-spacing:0.096000pt;}
.ls66{letter-spacing:0.110987pt;}
.ls23{letter-spacing:0.112640pt;}
.ls9{letter-spacing:0.128000pt;}
.ls6d{letter-spacing:0.144000pt;}
.ls1a{letter-spacing:0.170240pt;}
.lse{letter-spacing:0.172000pt;}
.ls65{letter-spacing:0.176000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.211040pt;}
.ls6c{letter-spacing:0.212480pt;}
.ls64{letter-spacing:0.215414pt;}
.ls1{letter-spacing:0.216054pt;}
.ls16{letter-spacing:0.224640pt;}
.ls5e{letter-spacing:0.227627pt;}
.ls49{letter-spacing:0.241067pt;}
.ls5{letter-spacing:0.246027pt;}
.ls2{letter-spacing:0.251040pt;}
.ls8{letter-spacing:0.256054pt;}
.ls61{letter-spacing:0.261067pt;}
.ls4f{letter-spacing:0.264160pt;}
.ls54{letter-spacing:0.266027pt;}
.ls62{letter-spacing:0.271040pt;}
.ls4b{letter-spacing:0.281067pt;}
.ls4{letter-spacing:0.286027pt;}
.ls4a{letter-spacing:0.296054pt;}
.ls51{letter-spacing:0.299147pt;}
.ls5d{letter-spacing:0.314187pt;}
.ls19{letter-spacing:0.318720pt;}
.ls52{letter-spacing:0.319147pt;}
.ls1e{letter-spacing:0.336000pt;}
.ls5a{letter-spacing:0.336054pt;}
.ls3d{letter-spacing:0.338027pt;}
.ls58{letter-spacing:0.366027pt;}
.ls57{letter-spacing:0.421067pt;}
.ls53{letter-spacing:0.426027pt;}
.ls5f{letter-spacing:0.428960pt;}
.ls50{letter-spacing:0.439147pt;}
.ls6{letter-spacing:0.478400pt;}
.ls14{letter-spacing:0.531200pt;}
.ls60{letter-spacing:0.541067pt;}
.ls27{letter-spacing:0.579040pt;}
.ls7{letter-spacing:0.582667pt;}
.ls6b{letter-spacing:0.584320pt;}
.ls0{letter-spacing:0.587627pt;}
.ls5c{letter-spacing:0.667627pt;}
.ls59{letter-spacing:0.846027pt;}
.ls55{letter-spacing:0.851041pt;}
.ls56{letter-spacing:0.926027pt;}
.ls29{letter-spacing:1.919042pt;}
.ls36{letter-spacing:2.248055pt;}
.ls37{letter-spacing:2.253068pt;}
.ls28{letter-spacing:3.154029pt;}
.ls26{letter-spacing:4.449070pt;}
.ls39{letter-spacing:7.378033pt;}
.ls2a{letter-spacing:8.673074pt;}
.ls46{letter-spacing:9.293074pt;}
.ls3b{letter-spacing:10.648062pt;}
.ls38{letter-spacing:11.883050pt;}
.ls3c{letter-spacing:12.503050pt;}
.ls33{letter-spacing:16.333080pt;}
.ls3e{letter-spacing:17.063054pt;}
.ls35{letter-spacing:17.628067pt;}
.ls3a{letter-spacing:18.248068pt;}
.ls34{letter-spacing:20.163056pt;}
.ls45{letter-spacing:23.448072pt;}
.ls48{letter-spacing:24.113086pt;}
.ws25{word-spacing:-42.240034pt;}
.ws4{word-spacing:-39.840032pt;}
.wse{word-spacing:-36.000029pt;}
.ws34{word-spacing:-34.952988pt;}
.ws7{word-spacing:-16.922894pt;}
.ws2d{word-spacing:-15.656973pt;}
.ws35{word-spacing:-15.351692pt;}
.ws6{word-spacing:-15.298572pt;}
.ws2c{word-spacing:-15.262732pt;}
.ws9{word-spacing:-15.086092pt;}
.ws28{word-spacing:-15.037452pt;}
.ws2f{word-spacing:-14.981132pt;}
.ws26{word-spacing:-14.924812pt;}
.ws23{word-spacing:-14.812172pt;}
.ws1{word-spacing:-14.767372pt;}
.ws24{word-spacing:-14.755852pt;}
.ws5{word-spacing:-14.714252pt;}
.ws2{word-spacing:-14.661132pt;}
.ws0{word-spacing:-14.608012pt;}
.wsa{word-spacing:-14.592012pt;}
.ws31{word-spacing:-14.554892pt;}
.ws3{word-spacing:-14.501772pt;}
.wsb{word-spacing:-14.464012pt;}
.ws8{word-spacing:-14.448652pt;}
.ws2a{word-spacing:-14.361611pt;}
.ws30{word-spacing:-14.183051pt;}
.ws2e{word-spacing:-14.080011pt;}
.ws33{word-spacing:-14.023691pt;}
.ws2b{word-spacing:-13.798411pt;}
.ws29{word-spacing:-13.685771pt;}
.wsc{word-spacing:-13.536011pt;}
.ws27{word-spacing:-13.516811pt;}
.ws36{word-spacing:-13.488011pt;}
.wsf{word-spacing:-13.440011pt;}
.wsd{word-spacing:-13.344011pt;}
.ws37{word-spacing:-13.296011pt;}
.ws39{word-spacing:-13.248011pt;}
.ws10{word-spacing:-13.008010pt;}
.ws11{word-spacing:-12.912010pt;}
.ws15{word-spacing:-12.840970pt;}
.ws1d{word-spacing:-12.784650pt;}
.ws14{word-spacing:-12.165130pt;}
.ws13{word-spacing:-12.108810pt;}
.ws16{word-spacing:-11.996170pt;}
.ws38{word-spacing:-11.952010pt;}
.ws12{word-spacing:-10.944009pt;}
.ws3c{word-spacing:-0.371840pt;}
.ws3d{word-spacing:-0.192000pt;}
.ws19{word-spacing:-0.096000pt;}
.ws1b{word-spacing:-0.064000pt;}
.ws18{word-spacing:-0.048000pt;}
.ws17{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.053120pt;}
.ws3b{word-spacing:0.159360pt;}
.ws1c{word-spacing:0.256000pt;}
.ws1a{word-spacing:0.624000pt;}
.ws32{word-spacing:0.690561pt;}
.ws22{word-spacing:0.732161pt;}
.ws21{word-spacing:2.590722pt;}
.ws1e{word-spacing:3.210243pt;}
.ws20{word-spacing:4.505604pt;}
.ws1f{word-spacing:5.125124pt;}
._3{margin-left:-2.095377pt;}
._1{margin-left:-1.178241pt;}
._0{width:1.114241pt;}
._2{width:2.187255pt;}
._6{width:3.273640pt;}
._4{width:4.367957pt;}
._5{width:5.306456pt;}
._7{width:6.737621pt;}
._9{width:7.897597pt;}
._b{width:9.671706pt;}
._8{width:10.649075pt;}
._14{width:11.752519pt;}
._d{width:12.663238pt;}
._e{width:14.008972pt;}
._11{width:15.995547pt;}
._a{width:17.394311pt;}
._13{width:18.283625pt;}
._17{width:19.227895pt;}
._c{width:21.009217pt;}
._f{width:22.211536pt;}
._10{width:23.446914pt;}
._19{width:24.687448pt;}
._15{width:26.240045pt;}
._18{width:27.352420pt;}
._16{width:28.349534pt;}
._12{width:29.547532pt;}
._1c{width:34.863321pt;}
._1a{width:35.951598pt;}
._20{width:38.508292pt;}
._1f{width:39.547009pt;}
._1d{width:43.924873pt;}
._1e{width:44.924092pt;}
._1b{width:57.953044pt;}
.fs7{font-size:32.000026pt;}
.fs6{font-size:42.880034pt;}
.fs2{font-size:48.000038pt;}
.fs0{font-size:53.120042pt;}
.fs5{font-size:56.320045pt;}
.fs1{font-size:64.000051pt;}
.fs3{font-size:74.880060pt;}
.fs4{font-size:85.120068pt;}
.y0{bottom:0.000000pt;}
.y1e3{bottom:2.720139pt;}
.y3d{bottom:3.840067pt;}
.y94{bottom:3.840068pt;}
.y3f{bottom:20.960069pt;}
.y5{bottom:26.400077pt;}
.y39{bottom:32.960077pt;}
.y38{bottom:63.520000pt;}
.y95{bottom:65.600000pt;}
.y3e{bottom:65.760000pt;}
.y3a{bottom:68.963789pt;}
.y4{bottom:69.920000pt;}
.y40{bottom:72.640058pt;}
.y96{bottom:72.800058pt;}
.y3{bottom:79.200063pt;}
.y3b{bottom:79.520064pt;}
.y3c{bottom:80.320000pt;}
.y93{bottom:81.440000pt;}
.y6{bottom:82.560066pt;}
.y2{bottom:97.920078pt;}
.y102{bottom:135.681975pt;}
.y77{bottom:137.700003pt;}
.y92{bottom:137.759337pt;}
.ycb{bottom:138.988111pt;}
.y1ac{bottom:139.976245pt;}
.y111{bottom:143.507981pt;}
.y147{bottom:145.235850pt;}
.y37{bottom:148.347185pt;}
.y101{bottom:151.677055pt;}
.y76{bottom:153.863750pt;}
.y91{bottom:153.923083pt;}
.yca{bottom:154.828124pt;}
.y1ab{bottom:155.022524pt;}
.y110{bottom:159.503061pt;}
.y1f1{bottom:160.480128pt;}
.y146{bottom:160.920929pt;}
.y36{bottom:164.340931pt;}
.y100{bottom:167.948268pt;}
.y90{bottom:169.918163pt;}
.y75{bottom:170.027496pt;}
.y1aa{bottom:170.068803pt;}
.yc9{bottom:170.513203pt;}
.y1d7{bottom:171.520000pt;}
.y10f{bottom:175.498140pt;}
.y145{bottom:176.760941pt;}
.y1f0{bottom:180.324144pt;}
.y35{bottom:180.506011pt;}
.yff{bottom:183.943347pt;}
.y1a9{bottom:185.115081pt;}
.y8f{bottom:185.993242pt;}
.y74{bottom:186.022575pt;}
.yc8{bottom:186.353216pt;}
.y1d8{bottom:186.720287pt;}
.y1e2{bottom:188.000150pt;}
.y10e{bottom:191.493220pt;}
.y144{bottom:192.446021pt;}
.y1ef{bottom:194.400156pt;}
.y34{bottom:196.499757pt;}
.yfe{bottom:199.938427pt;}
.y1a8{bottom:200.320160pt;}
.y8e{bottom:201.833255pt;}
.yc7{bottom:202.038295pt;}
.y1e1{bottom:202.080162pt;}
.y73{bottom:202.186322pt;}
.y10d{bottom:207.333233pt;}
.y1ee{bottom:207.992700pt;}
.y143{bottom:208.286033pt;}
.y33{bottom:212.494837pt;}
.y1a7{bottom:215.200172pt;}
.yfd{bottom:215.778439pt;}
.y8d{bottom:217.518334pt;}
.yc6{bottom:217.878308pt;}
.y72{bottom:218.181401pt;}
.y1ed{bottom:221.756444pt;}
.y10c{bottom:223.496979pt;}
.y142{bottom:223.971113pt;}
.y1e0{bottom:227.520182pt;}
.y32{bottom:228.658583pt;}
.y1a6{bottom:230.236718pt;}
.yfc{bottom:231.773519pt;}
.y8c{bottom:233.358347pt;}
.yc5{bottom:233.563387pt;}
.y71{bottom:234.345147pt;}
.y1ec{bottom:235.520188pt;}
.y10b{bottom:239.660725pt;}
.y141{bottom:239.811125pt;}
.y1df{bottom:241.440193pt;}
.y31{bottom:244.653662pt;}
.y1a5{bottom:245.276730pt;}
.yfb{bottom:247.768598pt;}
.y8b{bottom:249.043426pt;}
.yc4{bottom:249.403400pt;}
.y1eb{bottom:249.747666pt;}
.y70{bottom:250.508894pt;}
.y140{bottom:255.497404pt;}
.y10a{bottom:255.655805pt;}
.y1de{bottom:259.200207pt;}
.y30{bottom:260.817409pt;}
.y1ea{bottom:263.512744pt;}
.yfa{bottom:263.763678pt;}
.y8a{bottom:264.883439pt;}
.yc3{bottom:265.088479pt;}
.y6f{bottom:266.193973pt;}
.y176{bottom:268.547015pt;}
.y13f{bottom:271.337417pt;}
.y109{bottom:271.819551pt;}
.y1dd{bottom:272.960218pt;}
.y2f{bottom:276.812488pt;}
.y1e9{bottom:277.276488pt;}
.yf9{bottom:279.758757pt;}
.y89{bottom:280.569718pt;}
.yc2{bottom:280.928491pt;}
.y6e{bottom:282.033986pt;}
.y175{bottom:284.232094pt;}
.y1dc{bottom:286.720229pt;}
.y13e{bottom:287.022496pt;}
.y108{bottom:287.983297pt;}
.y1a4{bottom:289.410498pt;}
.y2e{bottom:292.807568pt;}
.y1e8{bottom:295.036503pt;}
.yf8{bottom:295.598770pt;}
.y88{bottom:296.409730pt;}
.yc1{bottom:296.614771pt;}
.y6d{bottom:297.719065pt;}
.y174{bottom:299.748373pt;}
.y13d{bottom:302.862509pt;}
.y107{bottom:303.978377pt;}
.y1db{bottom:304.632777pt;}
.y1a3{bottom:305.574244pt;}
.y2d{bottom:308.971314pt;}
.yf7{bottom:311.593849pt;}
.y87{bottom:312.403477pt;}
.yc0{bottom:312.454783pt;}
.y1e7{bottom:312.952784pt;}
.y6c{bottom:313.559078pt;}
.y173{bottom:315.433452pt;}
.y13c{bottom:318.547588pt;}
.y106{bottom:320.142123pt;}
.y1a2{bottom:321.739324pt;}
.y1da{bottom:322.716525pt;}
.y2c{bottom:324.966393pt;}
.y1e6{bottom:326.716528pt;}
.yf6{bottom:327.587595pt;}
.y86{bottom:328.567223pt;}
.y6b{bottom:329.244157pt;}
.ybf{bottom:332.138532pt;}
.y13b{bottom:334.387601pt;}
.y172{bottom:335.117201pt;}
.y105{bottom:336.137202pt;}
.y1a1{bottom:337.733070pt;}
.y1e5{bottom:340.480272pt;}
.y2b{bottom:341.130140pt;}
.yf5{bottom:343.582675pt;}
.y1d9{bottom:344.160275pt;}
.y85{bottom:344.732302pt;}
.y6a{bottom:345.084169pt;}
.ybe{bottom:348.302279pt;}
.y13a{bottom:350.072680pt;}
.y104{bottom:352.300949pt;}
.y1a0{bottom:353.898150pt;}
.y1e4{bottom:354.240283pt;}
.y171{bottom:355.110951pt;}
.y2a{bottom:357.125219pt;}
.yf4{bottom:359.422688pt;}
.y84{bottom:360.726049pt;}
.y69{bottom:360.769249pt;}
.ybd{bottom:364.466025pt;}
.y139{bottom:365.912693pt;}
.y103{bottom:368.464695pt;}
.y19f{bottom:369.891896pt;}
.y170{bottom:370.796030pt;}
.y29{bottom:373.120298pt;}
.yf3{bottom:375.417767pt;}
.y68{bottom:376.609261pt;}
.y83{bottom:376.891128pt;}
.y1d6{bottom:379.520317pt;}
.y138{bottom:381.597772pt;}
.ybc{bottom:384.459774pt;}
.y19e{bottom:386.056976pt;}
.y16f{bottom:386.481109pt;}
.yf2{bottom:391.412846pt;}
.y1d5{bottom:392.160327pt;}
.y67{bottom:392.294341pt;}
.y82{bottom:392.884874pt;}
.y28{bottom:396.320317pt;}
.y137{bottom:397.566585pt;}
.ybb{bottom:400.623520pt;}
.y16e{bottom:401.997388pt;}
.y19d{bottom:402.220722pt;}
.y1d4{bottom:402.566589pt;}
.yf1{bottom:407.407926pt;}
.y66{bottom:408.134353pt;}
.y81{bottom:409.049954pt;}
.y136{bottom:413.561664pt;}
.yba{bottom:416.618600pt;}
.y1d3{bottom:417.280334pt;}
.y16d{bottom:417.682467pt;}
.y19c{bottom:418.060734pt;}
.y27{bottom:421.280337pt;}
.yf0{bottom:423.403005pt;}
.y65{bottom:423.820632pt;}
.y80{bottom:425.213700pt;}
.y135{bottom:429.555410pt;}
.y1d2{bottom:432.315013pt;}
.yb9{bottom:432.782346pt;}
.y16c{bottom:433.367547pt;}
.y19b{bottom:433.745814pt;}
.yef{bottom:439.243018pt;}
.y64{bottom:439.660645pt;}
.y7f{bottom:441.208780pt;}
.y134{bottom:445.395423pt;}
.y1d1{bottom:447.520358pt;}
.y16b{bottom:448.883826pt;}
.yb8{bottom:448.946092pt;}
.y19a{bottom:449.430893pt;}
.y26{bottom:449.756626pt;}
.yee{bottom:455.238098pt;}
.y63{bottom:455.345724pt;}
.y7e{bottom:457.372526pt;}
.y133{bottom:461.390502pt;}
.y1d0{bottom:462.400370pt;}
.y25{bottom:463.196637pt;}
.y16a{bottom:464.568905pt;}
.yb7{bottom:464.941172pt;}
.y199{bottom:464.947172pt;}
.y62{bottom:471.185737pt;}
.yed{bottom:471.233177pt;}
.y7d{bottom:473.536272pt;}
.y24{bottom:476.960382pt;}
.y132{bottom:477.385582pt;}
.y1cf{bottom:477.440382pt;}
.y169{bottom:480.253984pt;}
.y198{bottom:480.632251pt;}
.yb6{bottom:481.104918pt;}
.y61{bottom:486.870816pt;}
.yec{bottom:487.228256pt;}
.y7c{bottom:489.531352pt;}
.y23{bottom:491.840393pt;}
.y1ce{bottom:492.474127pt;}
.y131{bottom:493.380661pt;}
.y168{bottom:495.770263pt;}
.y197{bottom:496.317330pt;}
.yb5{bottom:497.268664pt;}
.y60{bottom:502.710829pt;}
.yeb{bottom:503.068269pt;}
.y7b{bottom:505.695098pt;}
.y1cd{bottom:507.520406pt;}
.y130{bottom:509.220674pt;}
.y167{bottom:511.455342pt;}
.y196{bottom:511.833609pt;}
.yb4{bottom:513.263744pt;}
.y22{bottom:513.436677pt;}
.y5f{bottom:518.550842pt;}
.yea{bottom:519.063349pt;}
.y7a{bottom:521.690177pt;}
.y1cc{bottom:522.566685pt;}
.y12f{bottom:525.215754pt;}
.y21{bottom:526.876688pt;}
.y166{bottom:527.140422pt;}
.y195{bottom:527.518689pt;}
.yb3{bottom:529.427490pt;}
.y5e{bottom:534.235921pt;}
.ye9{bottom:535.057095pt;}
.y1cb{bottom:537.440430pt;}
.y79{bottom:537.853924pt;}
.y20{bottom:540.796699pt;}
.y12e{bottom:541.210833pt;}
.y165{bottom:542.656701pt;}
.y194{bottom:543.203768pt;}
.yb2{bottom:545.422570pt;}
.ye8{bottom:551.052174pt;}
.y1ca{bottom:552.641642pt;}
.y5d{bottom:553.919670pt;}
.y78{bottom:554.017670pt;}
.y1f{bottom:554.560444pt;}
.y12d{bottom:557.205912pt;}
.y164{bottom:558.341780pt;}
.y193{bottom:558.720047pt;}
.yb1{bottom:561.586316pt;}
.ye7{bottom:567.047254pt;}
.y1c9{bottom:568.006721pt;}
.y5c{bottom:569.439682pt;}
.y1e{bottom:569.440456pt;}
.y12c{bottom:573.200992pt;}
.y163{bottom:574.028059pt;}
.y192{bottom:574.405126pt;}
.yb0{bottom:577.750062pt;}
.y5b{bottom:582.419693pt;}
.y1c8{bottom:582.720466pt;}
.ye6{bottom:582.887266pt;}
.y12b{bottom:589.041005pt;}
.y162{bottom:589.544338pt;}
.y191{bottom:590.090205pt;}
.y1d{bottom:591.036739pt;}
.yaf{bottom:593.745142pt;}
.y1c7{bottom:597.884078pt;}
.y5a{bottom:598.584772pt;}
.ye5{bottom:598.882346pt;}
.y1c{bottom:604.476750pt;}
.y12a{bottom:605.036084pt;}
.y161{bottom:605.229418pt;}
.y190{bottom:605.606484pt;}
.yae{bottom:609.908888pt;}
.y1c6{bottom:612.930357pt;}
.y59{bottom:614.578518pt;}
.ye4{bottom:614.877425pt;}
.y1b{bottom:618.240495pt;}
.y160{bottom:620.914497pt;}
.y129{bottom:621.031163pt;}
.y18f{bottom:621.291564pt;}
.yad{bottom:625.903967pt;}
.y1c5{bottom:627.976636pt;}
.y58{bottom:630.743598pt;}
.ye3{bottom:630.872505pt;}
.y1a{bottom:633.120506pt;}
.y15f{bottom:636.599576pt;}
.y18e{bottom:636.976643pt;}
.y128{bottom:637.024910pt;}
.yac{bottom:642.067714pt;}
.y1c4{bottom:642.850381pt;}
.ye2{bottom:646.712517pt;}
.y57{bottom:646.737344pt;}
.y15e{bottom:652.115855pt;}
.y18d{bottom:652.662922pt;}
.y127{bottom:652.864922pt;}
.y1c3{bottom:657.896660pt;}
.yab{bottom:658.231460pt;}
.ye1{bottom:662.707597pt;}
.y56{bottom:662.732424pt;}
.y19{bottom:663.360531pt;}
.y15d{bottom:667.800934pt;}
.y18c{bottom:668.178001pt;}
.y126{bottom:668.860002pt;}
.y1c2{bottom:672.942938pt;}
.yaa{bottom:674.226539pt;}
.ye0{bottom:678.702676pt;}
.y55{bottom:678.896170pt;}
.y15c{bottom:683.486013pt;}
.y18b{bottom:683.864280pt;}
.y125{bottom:684.855081pt;}
.y18{bottom:687.840550pt;}
.y1c1{bottom:687.989217pt;}
.ya9{bottom:690.390286pt;}
.ydf{bottom:694.697756pt;}
.y54{bottom:694.891249pt;}
.y15b{bottom:699.002293pt;}
.y18a{bottom:699.549360pt;}
.y124{bottom:700.850161pt;}
.y1c0{bottom:703.035496pt;}
.ya8{bottom:706.554032pt;}
.yde{bottom:710.692835pt;}
.y53{bottom:711.054996pt;}
.y15a{bottom:714.687372pt;}
.y189{bottom:715.065639pt;}
.y123{bottom:716.845240pt;}
.y1bf{bottom:718.081774pt;}
.y17{bottom:721.265377pt;}
.ya7{bottom:722.549111pt;}
.ydd{bottom:726.532848pt;}
.y52{bottom:727.050075pt;}
.y159{bottom:730.372451pt;}
.y188{bottom:730.750718pt;}
.y122{bottom:732.685253pt;}
.y1be{bottom:733.128053pt;}
.y16{bottom:736.470456pt;}
.ya6{bottom:738.712858pt;}
.ydc{bottom:742.526594pt;}
.y51{bottom:743.045154pt;}
.y158{bottom:745.888730pt;}
.y187{bottom:746.435797pt;}
.y1bd{bottom:748.001798pt;}
.y15{bottom:751.835535pt;}
.y121{bottom:752.679002pt;}
.ya5{bottom:754.707937pt;}
.ydb{bottom:758.521673pt;}
.y50{bottom:759.208901pt;}
.y157{bottom:761.573809pt;}
.y186{bottom:761.952076pt;}
.y1bc{bottom:763.048077pt;}
.y14{bottom:767.200614pt;}
.y120{bottom:768.842748pt;}
.ya4{bottom:770.871683pt;}
.yda{bottom:774.516753pt;}
.y4f{bottom:775.203980pt;}
.y156{bottom:777.258888pt;}
.y185{bottom:777.637155pt;}
.y13{bottom:783.680627pt;}
.y1bb{bottom:786.406896pt;}
.ya3{bottom:787.035430pt;}
.y11f{bottom:788.836498pt;}
.yd9{bottom:790.356766pt;}
.y4e{bottom:791.367726pt;}
.y155{bottom:792.775168pt;}
.y184{bottom:793.322235pt;}
.y1ba{bottom:801.280641pt;}
.ya2{bottom:803.030509pt;}
.y11e{bottom:804.831577pt;}
.yd8{bottom:806.351845pt;}
.y4d{bottom:807.362806pt;}
.y12{bottom:807.985446pt;}
.y154{bottom:808.460247pt;}
.y183{bottom:808.838514pt;}
.y1b9{bottom:816.313986pt;}
.ya1{bottom:819.194255pt;}
.y11d{bottom:820.826657pt;}
.yd7{bottom:822.346925pt;}
.y11{bottom:823.190525pt;}
.y4c{bottom:823.357885pt;}
.y153{bottom:824.146526pt;}
.y182{bottom:824.523593pt;}
.y1b8{bottom:831.360665pt;}
.ya0{bottom:835.189335pt;}
.y11c{bottom:836.821736pt;}
.yd6{bottom:838.342004pt;}
.y10{bottom:838.555604pt;}
.y4b{bottom:839.521632pt;}
.y152{bottom:839.661605pt;}
.y181{bottom:840.208672pt;}
.y1b7{bottom:846.240677pt;}
.y9f{bottom:851.353081pt;}
.y11b{bottom:852.661749pt;}
.yf{bottom:853.920683pt;}
.yd5{bottom:854.337083pt;}
.y151{bottom:855.347884pt;}
.y4a{bottom:855.516711pt;}
.y180{bottom:855.724951pt;}
.y1b6{bottom:861.280689pt;}
.y9e{bottom:867.516827pt;}
.y11a{bottom:868.655495pt;}
.yd4{bottom:870.177096pt;}
.ye{bottom:870.560696pt;}
.y150{bottom:871.032963pt;}
.y17f{bottom:871.410030pt;}
.y49{bottom:871.680457pt;}
.y1b5{bottom:876.309368pt;}
.y9d{bottom:883.511907pt;}
.y119{bottom:884.650574pt;}
.yd3{bottom:886.172176pt;}
.y14f{bottom:886.549243pt;}
.y48{bottom:887.040470pt;}
.y17e{bottom:887.095110pt;}
.y1b4{bottom:891.514447pt;}
.yd{bottom:894.705516pt;}
.y9c{bottom:899.675653pt;}
.y47{bottom:900.012987pt;}
.y118{bottom:900.645654pt;}
.yd2{bottom:902.012188pt;}
.y14e{bottom:902.234322pt;}
.y17d{bottom:902.611389pt;}
.y1b3{bottom:906.560725pt;}
.yc{bottom:909.910595pt;}
.y9b{bottom:915.839399pt;}
.y46{bottom:916.008066pt;}
.y117{bottom:916.640733pt;}
.yd1{bottom:917.697267pt;}
.y14d{bottom:917.919401pt;}
.y17c{bottom:918.296468pt;}
.y1b2{bottom:921.430070pt;}
.yb{bottom:925.275674pt;}
.y9a{bottom:931.834479pt;}
.y45{bottom:932.171812pt;}
.y116{bottom:932.480746pt;}
.y14c{bottom:933.435680pt;}
.yd0{bottom:933.537280pt;}
.y17b{bottom:933.982747pt;}
.y1b1{bottom:936.795683pt;}
.ya{bottom:940.640753pt;}
.y99{bottom:947.998225pt;}
.y44{bottom:948.166892pt;}
.y115{bottom:948.475825pt;}
.ycf{bottom:949.222359pt;}
.y14b{bottom:949.275693pt;}
.y17a{bottom:949.667826pt;}
.y1b0{bottom:952.160762pt;}
.y9{bottom:957.280766pt;}
.y98{bottom:963.993305pt;}
.y43{bottom:964.161971pt;}
.y114{bottom:964.470905pt;}
.yce{bottom:965.062372pt;}
.y14a{bottom:965.115705pt;}
.y179{bottom:965.184105pt;}
.y1af{bottom:967.040774pt;}
.y97{bottom:980.157051pt;}
.y42{bottom:980.325718pt;}
.y113{bottom:980.465984pt;}
.ycd{bottom:980.747451pt;}
.y149{bottom:980.800785pt;}
.y178{bottom:980.869185pt;}
.y8{bottom:981.595719pt;}
.y1ae{bottom:982.247052pt;}
.y112{bottom:996.305997pt;}
.y41{bottom:996.320797pt;}
.y177{bottom:996.554264pt;}
.ycc{bottom:996.587464pt;}
.y148{bottom:996.640797pt;}
.y7{bottom:996.800797pt;}
.y1ad{bottom:996.960798pt;}
.y1{bottom:1072.320858pt;}
.h1f{height:23.453144pt;}
.h12{height:26.400000pt;}
.h15{height:29.773149pt;}
.h17{height:31.998752pt;}
.h13{height:32.000000pt;}
.h7{height:34.945340pt;}
.h21{height:35.156278pt;}
.h22{height:35.158411pt;}
.hd{height:35.179716pt;}
.h23{height:35.209716pt;}
.h2{height:36.883155pt;}
.h5{height:37.440000pt;}
.h8{height:38.672843pt;}
.h18{height:38.906281pt;}
.h9{height:38.932219pt;}
.h1d{height:38.932752pt;}
.h1e{height:38.953552pt;}
.h1b{height:38.958885pt;}
.h1a{height:38.974885pt;}
.h19{height:39.027219pt;}
.h1c{height:39.077819pt;}
.h10{height:41.250033pt;}
.h16{height:41.277533pt;}
.he{height:42.281284pt;}
.h4{height:43.343785pt;}
.h11{height:44.160000pt;}
.h3{height:44.437536pt;}
.h6{height:46.593787pt;}
.h14{height:49.610040pt;}
.hf{height:51.012541pt;}
.hc{height:57.968796pt;}
.hb{height:62.343800pt;}
.ha{height:67.823492pt;}
.h20{height:197.600000pt;}
.h0{height:1122.559867pt;}
.h1{height:1122.666667pt;}
.w4{width:16.000000pt;}
.w6{width:16.160000pt;}
.w2{width:203.360000pt;}
.w5{width:207.680000pt;}
.w7{width:224.478720pt;}
.w3{width:270.080000pt;}
.w0{width:793.759867pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:7.040060pt;}
.xa{left:9.600068pt;}
.x5{left:10.880428pt;}
.x16{left:13.120435pt;}
.xd{left:16.640432pt;}
.x1a{left:68.480000pt;}
.x7{left:75.520447pt;}
.x1c{left:77.443515pt;}
.xb{left:85.600068pt;}
.x9{left:94.401249pt;}
.x1b{left:96.320077pt;}
.x18{left:103.840083pt;}
.x11{left:122.721445pt;}
.xf{left:151.030347pt;}
.x1e{left:300.160240pt;}
.x2{left:388.800698pt;}
.xc{left:390.720000pt;}
.x14{left:396.800704pt;}
.x12{left:406.401938pt;}
.x10{left:412.320397pt;}
.x13{left:425.282994pt;}
.x8{left:444.801649pt;}
.x19{left:509.281101pt;}
.x4{left:523.680000pt;}
.x15{left:531.040000pt;}
.x6{left:577.280462pt;}
.xe{left:578.720463pt;}
.x17{left:586.880470pt;}
.x1{left:627.360502pt;}
.x3{left:694.080942pt;}
}




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