
    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_8e87458023bcc560765a376a.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_34c6c05952416b27e1bb0ff7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708008;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_db2705d63bdb3c1ea89fd93c.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_463c50a0a3e47508b9ce05dd.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_b5846f178813d59330a11874.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_5ac116f74bf444c3d9d369dd.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_3b0b8d416326f573e63696fb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.096680;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_7351d3ca6d7db231c613a63d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_309fe651666d96c41f2ab0dc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740234;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_c3114004dabc0f26d54d44b7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084961;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_7fa2b10c54b3523589598ac9.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c872bf2f1bf7cca6075a89e7.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9bcde2e53c5a26bf91098076.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_cdea05d05f49bc39c7459808.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_7b5d2bc417610a4608e84df1.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_bd96bed23a07f3b06099a4c7.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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;}
.ls33{letter-spacing:-2.471042px;}
.ls2b{letter-spacing:-2.407682px;}
.ls12{letter-spacing:-2.202482px;}
.ls32{letter-spacing:-2.090882px;}
.ls29{letter-spacing:-1.774081px;}
.ls35{letter-spacing:-1.647361px;}
.ls2f{letter-spacing:-1.584001px;}
.ls34{letter-spacing:-1.520641px;}
.ls2d{letter-spacing:-1.457281px;}
.ls25{letter-spacing:-1.393921px;}
.ls67{letter-spacing:-1.242001px;}
.ls2c{letter-spacing:-1.203841px;}
.ls31{letter-spacing:-1.140481px;}
.ls64{letter-spacing:-1.075681px;}
.ls2a{letter-spacing:-1.013761px;}
.ls1b{letter-spacing:-0.950401px;}
.ls19{letter-spacing:-0.823681px;}
.ls18{letter-spacing:-0.760321px;}
.ls24{letter-spacing:-0.696961px;}
.ls30{letter-spacing:-0.633601px;}
.ls22{letter-spacing:-0.570240px;}
.ls27{letter-spacing:-0.506880px;}
.ls16{letter-spacing:-0.486000px;}
.ls50{letter-spacing:-0.478080px;}
.ls26{letter-spacing:-0.443520px;}
.ls23{letter-spacing:-0.380160px;}
.ls28{letter-spacing:-0.316800px;}
.ls11{letter-spacing:-0.298800px;}
.ls13{letter-spacing:-0.287280px;}
.ls51{letter-spacing:-0.239040px;}
.ls66{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.179280px;}
.lse{letter-spacing:-0.119520px;}
.ls1a{letter-spacing:-0.063360px;}
.ls10{letter-spacing:-0.059760px;}
.ls17{letter-spacing:-0.054000px;}
.lsc{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.001140px;}
.ls60{letter-spacing:0.054000px;}
.ls63{letter-spacing:0.107930px;}
.ls15{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.144000px;}
.ls65{letter-spacing:0.162000px;}
.ls14{letter-spacing:0.191520px;}
.ls7{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.237420px;}
.ls61{letter-spacing:0.238500px;}
.ls3{letter-spacing:0.239040px;}
.ls62{letter-spacing:0.242340px;}
.ls38{letter-spacing:0.243060px;}
.lsf{letter-spacing:0.252720px;}
.ls5{letter-spacing:0.270000px;}
.ls2{letter-spacing:0.282420px;}
.ls37{letter-spacing:0.288060px;}
.ls4f{letter-spacing:0.293700px;}
.ls53{letter-spacing:0.358560px;}
.ls1{letter-spacing:0.366780px;}
.ls44{letter-spacing:0.389280px;}
.ls5a{letter-spacing:0.394920px;}
.ls5d{letter-spacing:0.400560px;}
.ls40{letter-spacing:0.406200px;}
.ls3c{letter-spacing:0.411780px;}
.ls4b{letter-spacing:0.417420px;}
.ls3b{letter-spacing:0.423060px;}
.ls36{letter-spacing:0.428700px;}
.ls39{letter-spacing:0.434280px;}
.ls5f{letter-spacing:0.445560px;}
.ls48{letter-spacing:0.456780px;}
.ls4c{letter-spacing:0.462420px;}
.ls3d{letter-spacing:0.476940px;}
.ls47{letter-spacing:0.479280px;}
.ls42{letter-spacing:0.484920px;}
.ls45{letter-spacing:0.496200px;}
.ls4a{letter-spacing:0.501780px;}
.ls59{letter-spacing:0.507420px;}
.ls57{letter-spacing:0.552420px;}
.ls56{letter-spacing:0.569280px;}
.ls4e{letter-spacing:0.586200px;}
.ls52{letter-spacing:0.597600px;}
.ls3f{letter-spacing:0.619920px;}
.ls5e{letter-spacing:0.652681px;}
.ls5c{letter-spacing:0.655501px;}
.ls54{letter-spacing:0.657361px;}
.lsa{letter-spacing:0.696421px;}
.ls58{letter-spacing:0.698701px;}
.ls4d{letter-spacing:0.723001px;}
.ls3a{letter-spacing:1.036201px;}
.ls2e{letter-spacing:1.077781px;}
.ls43{letter-spacing:1.081201px;}
.ls3e{letter-spacing:1.131781px;}
.ls46{letter-spacing:1.137421px;}
.ls49{letter-spacing:1.159921px;}
.ls5b{letter-spacing:1.204921px;}
.ls41{letter-spacing:1.238701px;}
.ls55{letter-spacing:1.339921px;}
.ls1c{letter-spacing:1.393921px;}
.ls20{letter-spacing:2.658422px;}
.ls1f{letter-spacing:3.294063px;}
.ls1d{letter-spacing:4.060203px;}
.ls1e{letter-spacing:4.245783px;}
.ls8{letter-spacing:5.005204px;}
.ls9{letter-spacing:11.468289px;}
.lsb{letter-spacing:13.622711px;}
.ls21{letter-spacing:14.150291px;}
.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;}
}
.ws1c{word-spacing:-47.520038px;}
.ws3{word-spacing:-44.820036px;}
.ws6{word-spacing:-40.500032px;}
.ws0{word-spacing:-33.047306px;}
.ws3e{word-spacing:-30.240024px;}
.ws3d{word-spacing:-30.186024px;}
.ws3f{word-spacing:-29.808024px;}
.ws8{word-spacing:-20.016016px;}
.ws22{word-spacing:-17.614094px;}
.ws34{word-spacing:-17.270654px;}
.ws1a{word-spacing:-17.233934px;}
.ws30{word-spacing:-17.210894px;}
.ws1d{word-spacing:-17.170574px;}
.ws2a{word-spacing:-17.107214px;}
.ws32{word-spacing:-16.971854px;}
.ws1e{word-spacing:-16.917134px;}
.ws1f{word-spacing:-16.853773px;}
.ws33{word-spacing:-16.852333px;}
.ws1b{word-spacing:-16.663693px;}
.ws2{word-spacing:-16.613293px;}
.ws21{word-spacing:-16.600333px;}
.ws31{word-spacing:-16.553533px;}
.ws1{word-spacing:-16.493773px;}
.ws2c{word-spacing:-16.473613px;}
.ws2b{word-spacing:-16.410253px;}
.ws2f{word-spacing:-16.374253px;}
.ws39{word-spacing:-16.314493px;}
.ws2e{word-spacing:-16.220173px;}
.ws29{word-spacing:-16.156813px;}
.ws2d{word-spacing:-15.966733px;}
.ws7{word-spacing:-15.228012px;}
.ws20{word-spacing:-15.206412px;}
.ws3a{word-spacing:-15.174012px;}
.ws4{word-spacing:-15.120012px;}
.ws3b{word-spacing:-15.012012px;}
.ws5{word-spacing:-14.526012px;}
.wsa{word-spacing:-14.446092px;}
.wse{word-spacing:-14.382732px;}
.ws3c{word-spacing:-13.770011px;}
.wsb{word-spacing:-13.685771px;}
.wsd{word-spacing:-13.622411px;}
.wsc{word-spacing:-13.495691px;}
.ws9{word-spacing:-12.312010px;}
.ws38{word-spacing:-0.358560px;}
.ws13{word-spacing:-0.239040px;}
.ws40{word-spacing:-0.216000px;}
.ws11{word-spacing:-0.108000px;}
.ws18{word-spacing:-0.072000px;}
.ws10{word-spacing:-0.054000px;}
.wsf{word-spacing:0.000000px;}
.ws23{word-spacing:0.063360px;}
.ws17{word-spacing:0.072000px;}
.ws14{word-spacing:0.108000px;}
.ws36{word-spacing:0.119520px;}
.ws15{word-spacing:0.216000px;}
.ws16{word-spacing:0.288000px;}
.ws12{word-spacing:0.702001px;}
.ws19{word-spacing:0.760321px;}
.ws25{word-spacing:0.823681px;}
.ws37{word-spacing:0.836641px;}
.ws35{word-spacing:0.956161px;}
.ws27{word-spacing:1.520641px;}
.ws24{word-spacing:2.154242px;}
.ws26{word-spacing:2.914562px;}
.ws28{word-spacing:5.068804px;}
._e{margin-left:-6.555126px;}
._c{margin-left:-5.156084px;}
._d{margin-left:-3.513063px;}
._b{margin-left:-2.458485px;}
._1{margin-left:-1.325521px;}
._0{width:1.253521px;}
._2{width:2.471050px;}
._3{width:3.850580px;}
._5{width:5.790576px;}
._6{width:7.228816px;}
._4{width:8.411176px;}
._9{width:9.489202px;}
._8{width:10.594437px;}
._7{width:12.509674px;}
._12{width:13.572340px;}
._a{width:14.830456px;}
._16{width:15.913517px;}
._11{width:18.516901px;}
._15{width:20.286050px;}
._14{width:21.365657px;}
._1b{width:22.638821px;}
._19{width:23.945830px;}
._1e{width:25.355477px;}
._13{width:26.404940px;}
._1f{width:27.740844px;}
._20{width:29.662289px;}
._10{width:30.672557px;}
._1d{width:32.320514px;}
._1c{width:33.633243px;}
._1a{width:34.808013px;}
._17{width:35.845867px;}
._18{width:37.034593px;}
._22{width:38.876875px;}
._f{width:45.971954px;}
._21{width:47.393664px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.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;}
.y20b{bottom:2.880410px;}
.y3d{bottom:4.320076px;}
.y9a{bottom:4.320077px;}
.y39{bottom:20.520086px;}
.y3f{bottom:23.580078px;}
.y5{bottom:29.700087px;}
.y9b{bottom:73.800000px;}
.y3e{bottom:73.980000px;}
.y4{bottom:78.660000px;}
.y40{bottom:81.720065px;}
.y9c{bottom:81.900066px;}
.y38{bottom:86.760000px;}
.y3{bottom:89.100071px;}
.y3b{bottom:89.460072px;}
.y3c{bottom:90.360000px;}
.y99{bottom:91.620000px;}
.y3a{bottom:91.980074px;}
.y6{bottom:92.880074px;}
.y2{bottom:110.160088px;}
.y98{bottom:154.613689px;}
.y77{bottom:155.781440px;}
.y128{bottom:155.981225px;}
.y15e{bottom:156.418625px;}
.y1db{bottom:157.674426px;}
.y107{bottom:160.701729px;}
.yd1{bottom:160.892529px;}
.y37{bottom:167.046284px;}
.y16d{bottom:170.079436px;}
.y1a2{bottom:170.104186px;}
.y97{bottom:172.797903px;}
.y76{bottom:173.427154px;}
.y127{bottom:173.975689px;}
.y15d{bottom:174.413090px;}
.y1da{bottom:174.960140px;}
.y106{bottom:178.347443px;}
.yd0{bottom:179.076743px;}
.y36{bottom:185.230498px;}
.y16c{bottom:188.073900px;}
.y1a1{bottom:188.098650px;}
.y96{bottom:190.982118px;}
.y75{bottom:191.247168px;}
.y126{bottom:192.159904px;}
.y1d9{bottom:192.240154px;}
.y15c{bottom:192.597304px;}
.y105{bottom:196.167457px;}
.ycf{bottom:197.071208px;}
.y35{bottom:203.224963px;}
.y1a0{bottom:206.242065px;}
.y16b{bottom:206.258115px;}
.y74{bottom:208.892882px;}
.y95{bottom:208.976582px;}
.y1d8{bottom:209.687418px;}
.y125{bottom:210.344118px;}
.y15b{bottom:210.992419px;}
.y104{bottom:213.814521px;}
.yce{bottom:215.255422px;}
.y34{bottom:221.219427px;}
.y19f{bottom:224.236529px;}
.y16a{bottom:224.252579px;}
.y73{bottom:226.712896px;}
.y1d7{bottom:226.794481px;}
.y94{bottom:227.160797px;}
.y124{bottom:228.338583px;}
.y15a{bottom:229.351083px;}
.y103{bottom:231.634535px;}
.ycd{bottom:233.249887px;}
.y1f2{bottom:234.000595px;}
.y33{bottom:238.499441px;}
.y19e{bottom:242.420744px;}
.y169{bottom:242.436794px;}
.y1d6{bottom:243.900195px;}
.y72{bottom:244.358610px;}
.y93{bottom:245.345011px;}
.y123{bottom:246.522797px;}
.y159{bottom:247.535298px;}
.y102{bottom:249.280249px;}
.ycc{bottom:251.434101px;}
.y32{bottom:253.113202px;}
.y19d{bottom:260.604958px;}
.y168{bottom:260.621008px;}
.y1d5{bottom:261.174209px;}
.y71{bottom:262.178625px;}
.y92{bottom:263.339476px;}
.y122{bottom:264.517262px;}
.y158{bottom:265.719513px;}
.y101{bottom:267.100264px;}
.ycb{bottom:269.618316px;}
.y31{bottom:271.106167px;}
.y1d4{bottom:278.460223px;}
.y19c{bottom:278.599423px;}
.y167{bottom:278.615473px;}
.y70{bottom:279.825689px;}
.y91{bottom:281.523690px;}
.y121{bottom:282.337276px;}
.y157{bottom:284.078177px;}
.y100{bottom:284.745978px;}
.yca{bottom:287.612780px;}
.y30{bottom:289.291881px;}
.y1d3{bottom:295.723737px;}
.y19b{bottom:296.783637px;}
.y166{bottom:296.799687px;}
.y6f{bottom:297.645703px;}
.y90{bottom:299.518155px;}
.y120{bottom:300.331740px;}
.y156{bottom:302.262392px;}
.yff{bottom:302.565992px;}
.yc9{bottom:305.796995px;}
.y2f{bottom:307.476096px;}
.y1d2{bottom:313.187501px;}
.y19a{bottom:314.967852px;}
.y165{bottom:314.983902px;}
.y6e{bottom:315.291417px;}
.y11f{bottom:318.326205px;}
.yfe{bottom:320.211706px;}
.y155{bottom:320.621056px;}
.y8f{bottom:322.068873px;}
.yc8{bottom:323.981209px;}
.y2e{bottom:325.469060px;}
.y1d1{bottom:330.114564px;}
.y199{bottom:332.962316px;}
.y164{bottom:332.978366px;}
.y6d{bottom:333.111431px;}
.y11e{bottom:336.320669px;}
.yfd{bottom:338.031720px;}
.y154{bottom:338.805271px;}
.y8e{bottom:340.254587px;}
.yc7{bottom:341.975674px;}
.y2d{bottom:343.654775px;}
.y1d0{bottom:347.400278px;}
.y6c{bottom:350.757146px;}
.y198{bottom:351.146531px;}
.y163{bottom:351.162581px;}
.y11d{bottom:354.313633px;}
.yfc{bottom:355.677435px;}
.y153{bottom:357.163936px;}
.yc6{bottom:360.159888px;}
.y2c{bottom:361.647739px;}
.y8d{bottom:363.111755px;}
.y1cf{bottom:364.657642px;}
.y6b{bottom:368.577160px;}
.y197{bottom:369.140995px;}
.y162{bottom:369.157045px;}
.y11c{bottom:372.133648px;}
.yfb{bottom:373.574849px;}
.y152{bottom:375.348150px;}
.yc5{bottom:378.154353px;}
.y2b{bottom:379.642204px;}
.y8c{bottom:381.295970px;}
.y1ce{bottom:382.123356px;}
.y6a{bottom:386.222874px;}
.y196{bottom:387.325210px;}
.y11b{bottom:390.128112px;}
.yfa{bottom:391.569313px;}
.y161{bottom:391.839913px;}
.y151{bottom:393.706815px;}
.yc4{bottom:396.338567px;}
.y2a{bottom:397.826418px;}
.y1cd{bottom:399.229069px;}
.y8b{bottom:399.654635px;}
.y69{bottom:404.042888px;}
.y195{bottom:405.509424px;}
.y11a{bottom:408.122576px;}
.yf9{bottom:409.389328px;}
.y160{bottom:410.024128px;}
.y150{bottom:411.891030px;}
.yc3{bottom:414.522782px;}
.y29{bottom:415.820883px;}
.y1cc{bottom:416.336133px;}
.y8a{bottom:417.838849px;}
.y68{bottom:421.688602px;}
.y194{bottom:423.503889px;}
.y119{bottom:426.117041px;}
.yf8{bottom:427.382292px;}
.y15f{bottom:428.018592px;}
.y14f{bottom:430.249694px;}
.yc2{bottom:432.517246px;}
.y1cb{bottom:433.800347px;}
.y28{bottom:434.005097px;}
.y89{bottom:436.197514px;}
.y67{bottom:439.508617px;}
.y193{bottom:441.688103px;}
.y118{bottom:443.937055px;}
.yf7{bottom:445.376756px;}
.y14e{bottom:448.433909px;}
.yc1{bottom:450.701461px;}
.y27{bottom:451.999562px;}
.y88{bottom:454.381729px;}
.y66{bottom:457.154331px;}
.y192{bottom:459.682568px;}
.y1ca{bottom:459.894368px;}
.y117{bottom:461.931520px;}
.y20e{bottom:463.134671px;}
.yf6{bottom:463.371221px;}
.y14d{bottom:466.618123px;}
.yc0{bottom:468.695925px;}
.y26{bottom:469.994026px;}
.y87{bottom:472.565943px;}
.y65{bottom:474.974345px;}
.y1c9{bottom:477.180382px;}
.y191{bottom:477.866782px;}
.y116{bottom:479.925984px;}
.y20d{bottom:480.420384px;}
.yf5{bottom:481.191235px;}
.y14c{bottom:484.976788px;}
.ybf{bottom:486.880140px;}
.y25{bottom:488.178241px;}
.y86{bottom:490.924608px;}
.y64{bottom:492.620059px;}
.y1c8{bottom:494.454396px;}
.y190{bottom:496.050997px;}
.y20c{bottom:497.340398px;}
.y115{bottom:497.920448px;}
.yf4{bottom:499.185699px;}
.y14b{bottom:503.161003px;}
.ybe{bottom:505.064354px;}
.y24{bottom:506.172705px;}
.y85{bottom:509.108822px;}
.y1f1{bottom:509.940000px;}
.y63{bottom:510.440073px;}
.y1c7{bottom:511.740409px;}
.y114{bottom:515.914913px;}
.yf3{bottom:517.180164px;}
.y18f{bottom:518.543965px;}
.y14a{bottom:521.519667px;}
.ybd{bottom:523.058818px;}
.y23{bottom:524.356919px;}
.y84{bottom:527.467487px;}
.y62{bottom:528.260088px;}
.y20a{bottom:528.462123px;}
.y1c6{bottom:528.834423px;}
.y113{bottom:533.734927px;}
.yf2{bottom:535.174628px;}
.y149{bottom:539.703882px;}
.y18e{bottom:541.226833px;}
.ybc{bottom:541.243033px;}
.y22{bottom:542.351384px;}
.y209{bottom:543.946335px;}
.y83{bottom:545.651702px;}
.y61{bottom:545.905802px;}
.y1c5{bottom:546.120437px;}
.y112{bottom:551.729391px;}
.yf1{bottom:553.169093px;}
.y1fc{bottom:556.920446px;}
.y148{bottom:558.062546px;}
.y18d{bottom:559.411048px;}
.ybb{bottom:559.427248px;}
.y208{bottom:559.432048px;}
.y21{bottom:560.345848px;}
.y1c4{bottom:563.394451px;}
.y60{bottom:563.725816px;}
.y82{bottom:564.010366px;}
.y111{bottom:569.723856px;}
.yf0{bottom:570.989107px;}
.y1fb{bottom:572.400458px;}
.y207{bottom:574.916260px;}
.y147{bottom:576.248261px;}
.y18c{bottom:577.405512px;}
.yba{bottom:577.421712px;}
.y20{bottom:578.530063px;}
.y1c3{bottom:580.680465px;}
.y5f{bottom:581.371530px;}
.y81{bottom:582.194581px;}
.y110{bottom:587.716820px;}
.y1fa{bottom:588.420471px;}
.yef{bottom:588.983571px;}
.y206{bottom:590.400472px;}
.y146{bottom:594.606926px;}
.y18b{bottom:595.589726px;}
.yb9{bottom:595.605926px;}
.y1f{bottom:596.524527px;}
.y1c2{bottom:597.954478px;}
.y5e{bottom:599.191544px;}
.y80{bottom:600.553245px;}
.y10f{bottom:605.536834px;}
.y205{bottom:606.402485px;}
.yee{bottom:606.978036px;}
.y145{bottom:612.791140px;}
.y18a{bottom:613.584191px;}
.yb8{bottom:613.600391px;}
.y1e{bottom:614.708742px;}
.y1c1{bottom:615.240492px;}
.y5d{bottom:616.838608px;}
.y1f9{bottom:617.040494px;}
.y7f{bottom:618.737460px;}
.y204{bottom:621.886398px;}
.y10e{bottom:623.531299px;}
.yed{bottom:624.972500px;}
.y144{bottom:631.149805px;}
.y189{bottom:631.768405px;}
.yb7{bottom:631.784605px;}
.y1c0{bottom:632.334806px;}
.y1f8{bottom:632.520506px;}
.y1d{bottom:632.703206px;}
.y5c{bottom:634.658623px;}
.y7e{bottom:637.096125px;}
.y203{bottom:637.372110px;}
.y10d{bottom:641.525763px;}
.yec{bottom:642.965464px;}
.y143{bottom:649.334019px;}
.y1bf{bottom:649.620520px;}
.y188{bottom:649.952620px;}
.yb6{bottom:649.968820px;}
.y1c{bottom:650.697671px;}
.y5b{bottom:652.304337px;}
.y1f7{bottom:652.500522px;}
.y202{bottom:652.856322px;}
.y7d{bottom:655.280339px;}
.y10c{bottom:659.520228px;}
.yeb{bottom:660.785479px;}
.y1be{bottom:666.894534px;}
.y142{bottom:667.518234px;}
.y187{bottom:667.947084px;}
.yb5{bottom:667.963284px;}
.y1f6{bottom:668.160535px;}
.y1b{bottom:668.881885px;}
.y5a{bottom:670.124351px;}
.y201{bottom:673.012138px;}
.y7c{bottom:673.464554px;}
.y10b{bottom:677.514692px;}
.yea{bottom:678.779943px;}
.y1bd{bottom:684.180547px;}
.y141{bottom:685.876899px;}
.y186{bottom:686.131299px;}
.yb4{bottom:686.147499px;}
.y1a{bottom:686.876350px;}
.y59{bottom:687.770065px;}
.y1f5{bottom:688.140551px;}
.y7b{bottom:691.823218px;}
.y200{bottom:692.992154px;}
.y10a{bottom:695.334706px;}
.ye9{bottom:696.774407px;}
.y1bc{bottom:701.454561px;}
.y1f4{bottom:703.976363px;}
.y140{bottom:704.061113px;}
.y185{bottom:704.125763px;}
.yb3{bottom:704.141963px;}
.y19{bottom:705.060564px;}
.y58{bottom:705.590079px;}
.y1ff{bottom:708.476367px;}
.y7a{bottom:710.007433px;}
.ye8{bottom:714.768872px;}
.y109{bottom:717.827674px;}
.y1bb{bottom:718.740575px;}
.y184{bottom:722.309978px;}
.yb2{bottom:722.326178px;}
.y13f{bottom:722.419778px;}
.y57{bottom:723.235794px;}
.y1fe{bottom:723.960579px;}
.y79{bottom:728.001897px;}
.y1f3{bottom:728.100582px;}
.y18{bottom:730.980585px;}
.ye7{bottom:732.588886px;}
.y1ba{bottom:735.834589px;}
.y108{bottom:736.011889px;}
.y1fd{bottom:739.440592px;}
.y183{bottom:740.494192px;}
.yb1{bottom:740.510392px;}
.y13e{bottom:740.603992px;}
.y56{bottom:745.380011px;}
.y78{bottom:745.821912px;}
.ye6{bottom:750.583350px;}
.y1b9{bottom:753.120602px;}
.y182{bottom:758.488657px;}
.yb0{bottom:758.504857px;}
.y13d{bottom:758.598457px;}
.y17{bottom:759.060607px;}
.y55{bottom:762.840025px;}
.y1f0{bottom:767.880614px;}
.ye5{bottom:768.577815px;}
.y1b8{bottom:770.394616px;}
.y181{bottom:776.672871px;}
.yaf{bottom:776.689071px;}
.y13c{bottom:776.782671px;}
.y54{bottom:777.449572px;}
.y16{bottom:779.760624px;}
.y1ef{bottom:782.100626px;}
.ye4{bottom:786.572279px;}
.y1b7{bottom:787.680630px;}
.y1ee{bottom:793.614935px;}
.y180{bottom:794.857086px;}
.yae{bottom:794.873286px;}
.y13b{bottom:794.966886px;}
.y53{bottom:795.444036px;}
.y15{bottom:800.460640px;}
.ye3{bottom:804.566744px;}
.y1b6{bottom:804.948644px;}
.y1ed{bottom:810.900649px;}
.y17f{bottom:812.851550px;}
.yad{bottom:812.867750px;}
.y13a{bottom:812.961350px;}
.y52{bottom:813.628251px;}
.y1b5{bottom:822.234958px;}
.ye2{bottom:822.386758px;}
.y1ec{bottom:827.994962px;}
.y17e{bottom:831.035765px;}
.yac{bottom:831.051965px;}
.y139{bottom:831.145565px;}
.y51{bottom:831.812465px;}
.y14{bottom:832.496466px;}
.y1b4{bottom:839.520672px;}
.ye1{bottom:840.381222px;}
.y1eb{bottom:845.280676px;}
.y13{bottom:847.616478px;}
.y17d{bottom:849.030229px;}
.yab{bottom:849.046429px;}
.y138{bottom:849.140029px;}
.y50{bottom:849.806930px;}
.y1b3{bottom:856.614685px;}
.ye0{bottom:858.375687px;}
.y1ea{bottom:862.554690px;}
.y12{bottom:863.100690px;}
.y17c{bottom:867.214444px;}
.yaa{bottom:867.230644px;}
.y137{bottom:867.324244px;}
.y4f{bottom:867.991144px;}
.y1b2{bottom:873.900699px;}
.y11{bottom:879.840704px;}
.ydf{bottom:880.692855px;}
.y17b{bottom:885.398658px;}
.ya9{bottom:885.414858px;}
.y136{bottom:885.508458px;}
.y4e{bottom:885.985609px;}
.y1b1{bottom:891.168713px;}
.y1e9{bottom:897.114718px;}
.yde{bottom:898.878569px;}
.y17a{bottom:903.393123px;}
.ya8{bottom:903.409323px;}
.y135{bottom:903.502923px;}
.y4d{bottom:903.978573px;}
.y1b0{bottom:908.633677px;}
.y10{bottom:913.879031px;}
.y1e8{bottom:914.400732px;}
.ydd{bottom:921.561437px;}
.y179{bottom:921.577337px;}
.ya7{bottom:921.593537px;}
.y134{bottom:921.687137px;}
.y4c{bottom:922.162788px;}
.y1af{bottom:925.560740px;}
.y1e7{bottom:931.494745px;}
.ydc{bottom:939.555902px;}
.y178{bottom:939.571802px;}
.ya6{bottom:939.588002px;}
.y133{bottom:939.681602px;}
.y4b{bottom:940.157252px;}
.yf{bottom:941.409153px;}
.y1ae{bottom:942.825754px;}
.y1e6{bottom:948.780759px;}
.ydb{bottom:957.740116px;}
.y177{bottom:957.756016px;}
.ya5{bottom:957.772216px;}
.y132{bottom:957.865816px;}
.y4a{bottom:958.341467px;}
.y1ad{bottom:960.289368px;}
.y1e5{bottom:966.050273px;}
.ye{bottom:968.940775px;}
.yda{bottom:975.924331px;}
.y176{bottom:975.940231px;}
.ya4{bottom:975.956431px;}
.y131{bottom:976.050031px;}
.y49{bottom:976.335931px;}
.y1ac{bottom:977.396432px;}
.y1e4{bottom:983.335087px;}
.yd9{bottom:993.918795px;}
.y175{bottom:993.934695px;}
.ya3{bottom:993.950895px;}
.y130{bottom:994.044495px;}
.y48{bottom:994.330395px;}
.y1ab{bottom:994.860646px;}
.y1e3{bottom:1000.620800px;}
.yd{bottom:1006.543705px;}
.yd8{bottom:1012.103010px;}
.y174{bottom:1012.118910px;}
.ya2{bottom:1012.135110px;}
.y12f{bottom:1012.228710px;}
.y47{bottom:1012.514610px;}
.y1e2{bottom:1017.714814px;}
.y1aa{bottom:1021.322017px;}
.y1a5{bottom:1021.322167px;}
.yc{bottom:1023.649419px;}
.yd7{bottom:1030.287224px;}
.y173{bottom:1030.303124px;}
.ya1{bottom:1030.319324px;}
.y12e{bottom:1030.412924px;}
.y46{bottom:1030.509074px;}
.y1e1{bottom:1035.000828px;}
.y1a9{bottom:1039.316481px;}
.y1a4{bottom:1039.316631px;}
.yb{bottom:1040.935133px;}
.yd6{bottom:1048.281689px;}
.y172{bottom:1048.297589px;}
.ya0{bottom:1048.313789px;}
.y12d{bottom:1048.407389px;}
.y45{bottom:1048.693289px;}
.y1e0{bottom:1052.274842px;}
.y1a8{bottom:1057.500696px;}
.ya{bottom:1058.220847px;}
.y1a3{bottom:1061.809599px;}
.yd5{bottom:1066.465903px;}
.y171{bottom:1066.481803px;}
.y9f{bottom:1066.498003px;}
.y12c{bottom:1066.591603px;}
.y44{bottom:1066.687753px;}
.y1df{bottom:1069.560856px;}
.y1a7{bottom:1075.495160px;}
.y9{bottom:1076.940862px;}
.yd4{bottom:1084.458868px;}
.y170{bottom:1084.476268px;}
.y9e{bottom:1084.492468px;}
.y12b{bottom:1084.586068px;}
.y43{bottom:1084.682218px;}
.y1de{bottom:1087.020870px;}
.y1a6{bottom:1098.178029px;}
.yd3{bottom:1102.644582px;}
.y16f{bottom:1102.660482px;}
.y9d{bottom:1102.676682px;}
.y12a{bottom:1102.770282px;}
.y42{bottom:1102.866432px;}
.y1dd{bottom:1104.115183px;}
.y8{bottom:1104.295183px;}
.yd2{bottom:1120.828797px;}
.y16e{bottom:1120.844697px;}
.y41{bottom:1120.860897px;}
.y129{bottom:1120.954497px;}
.y1dc{bottom:1121.220897px;}
.y7{bottom:1121.400897px;}
.y1{bottom:1206.360965px;}
.h14{height:29.700000px;}
.h23{height:31.904322px;}
.h13{height:33.120000px;}
.h12{height:33.494792px;}
.h18{height:35.998596px;}
.h15{height:36.000000px;}
.h7{height:39.313508px;}
.h2{height:41.493549px;}
.h5{height:42.120000px;}
.h8{height:43.506949px;}
.h10{height:46.406287px;}
.h25{height:47.223671px;}
.hf{height:47.566444px;}
.hd{height:47.856484px;}
.h4{height:48.761758px;}
.h3{height:49.992227px;}
.h19{height:52.260862px;}
.h6{height:52.418011px;}
.hc{height:52.699261px;}
.h9{height:52.961175px;}
.h20{height:52.983675px;}
.h1d{height:52.983975px;}
.h1c{height:52.985175px;}
.h22{height:53.003175px;}
.h1b{height:53.009175px;}
.h21{height:53.012175px;}
.h1a{height:53.021175px;}
.h1f{height:53.028675px;}
.h1e{height:53.051775px;}
.h16{height:55.409107px;}
.h11{height:55.811295px;}
.h17{height:56.151607px;}
.ha{height:61.658135px;}
.he{height:62.964894px;}
.hb{height:83.743309px;}
.h24{height:246.240000px;}
.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.838560px;}
.w8{width:478.440000px;}
.w0{width:892.979850px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:8.100270px;}
.xd{left:10.800070px;}
.x5{left:12.240481px;}
.x17{left:14.760490px;}
.x10{left:18.720486px;}
.xc{left:77.040000px;}
.x7{left:84.960353px;}
.xe{left:87.840070px;}
.x9{left:106.200565px;}
.x1b{left:108.360087px;}
.x19{left:116.991604px;}
.x12{left:138.060815px;}
.xa{left:169.860946px;}
.x1d{left:329.580000px;}
.x1c{left:337.680270px;}
.x2{left:437.400785px;}
.xf{left:439.560000px;}
.x15{left:446.400792px;}
.x13{left:457.201356px;}
.xb{left:463.861046px;}
.x14{left:478.442723px;}
.x8{left:500.401015px;}
.x1a{left:572.940458px;}
.x4{left:589.140000px;}
.x16{left:597.420000px;}
.x6{left:649.440520px;}
.x11{left:651.060521px;}
.x18{left:660.240528px;}
.x1{left:705.780565px;}
.x3{left:780.841060px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls33{letter-spacing:-2.196482pt;}
.ls2b{letter-spacing:-2.140162pt;}
.ls12{letter-spacing:-1.957762pt;}
.ls32{letter-spacing:-1.858561pt;}
.ls29{letter-spacing:-1.576961pt;}
.ls35{letter-spacing:-1.464321pt;}
.ls2f{letter-spacing:-1.408001pt;}
.ls34{letter-spacing:-1.351681pt;}
.ls2d{letter-spacing:-1.295361pt;}
.ls25{letter-spacing:-1.239041pt;}
.ls67{letter-spacing:-1.104001pt;}
.ls2c{letter-spacing:-1.070081pt;}
.ls31{letter-spacing:-1.013761pt;}
.ls64{letter-spacing:-0.956161pt;}
.ls2a{letter-spacing:-0.901121pt;}
.ls1b{letter-spacing:-0.844801pt;}
.ls19{letter-spacing:-0.732161pt;}
.ls18{letter-spacing:-0.675841pt;}
.ls24{letter-spacing:-0.619520pt;}
.ls30{letter-spacing:-0.563200pt;}
.ls22{letter-spacing:-0.506880pt;}
.ls27{letter-spacing:-0.450560pt;}
.ls16{letter-spacing:-0.432000pt;}
.ls50{letter-spacing:-0.424960pt;}
.ls26{letter-spacing:-0.394240pt;}
.ls23{letter-spacing:-0.337920pt;}
.ls28{letter-spacing:-0.281600pt;}
.ls11{letter-spacing:-0.265600pt;}
.ls13{letter-spacing:-0.255360pt;}
.ls51{letter-spacing:-0.212480pt;}
.ls66{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.159360pt;}
.lse{letter-spacing:-0.106240pt;}
.ls1a{letter-spacing:-0.056320pt;}
.ls10{letter-spacing:-0.053120pt;}
.ls17{letter-spacing:-0.048000pt;}
.lsc{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.001013pt;}
.ls60{letter-spacing:0.048000pt;}
.ls63{letter-spacing:0.095938pt;}
.ls15{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls65{letter-spacing:0.144000pt;}
.ls14{letter-spacing:0.170240pt;}
.ls7{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.211040pt;}
.ls61{letter-spacing:0.212000pt;}
.ls3{letter-spacing:0.212480pt;}
.ls62{letter-spacing:0.215414pt;}
.ls38{letter-spacing:0.216054pt;}
.lsf{letter-spacing:0.224640pt;}
.ls5{letter-spacing:0.240000pt;}
.ls2{letter-spacing:0.251040pt;}
.ls37{letter-spacing:0.256054pt;}
.ls4f{letter-spacing:0.261067pt;}
.ls53{letter-spacing:0.318720pt;}
.ls1{letter-spacing:0.326027pt;}
.ls44{letter-spacing:0.346027pt;}
.ls5a{letter-spacing:0.351040pt;}
.ls5d{letter-spacing:0.356054pt;}
.ls40{letter-spacing:0.361067pt;}
.ls3c{letter-spacing:0.366027pt;}
.ls4b{letter-spacing:0.371040pt;}
.ls3b{letter-spacing:0.376054pt;}
.ls36{letter-spacing:0.381067pt;}
.ls39{letter-spacing:0.386027pt;}
.ls5f{letter-spacing:0.396054pt;}
.ls48{letter-spacing:0.406027pt;}
.ls4c{letter-spacing:0.411040pt;}
.ls3d{letter-spacing:0.423947pt;}
.ls47{letter-spacing:0.426027pt;}
.ls42{letter-spacing:0.431040pt;}
.ls45{letter-spacing:0.441067pt;}
.ls4a{letter-spacing:0.446027pt;}
.ls59{letter-spacing:0.451040pt;}
.ls57{letter-spacing:0.491040pt;}
.ls56{letter-spacing:0.506027pt;}
.ls4e{letter-spacing:0.521067pt;}
.ls52{letter-spacing:0.531200pt;}
.ls3f{letter-spacing:0.551040pt;}
.ls5e{letter-spacing:0.580160pt;}
.ls5c{letter-spacing:0.582667pt;}
.ls54{letter-spacing:0.584320pt;}
.lsa{letter-spacing:0.619040pt;}
.ls58{letter-spacing:0.621067pt;}
.ls4d{letter-spacing:0.642667pt;}
.ls3a{letter-spacing:0.921067pt;}
.ls2e{letter-spacing:0.958027pt;}
.ls43{letter-spacing:0.961067pt;}
.ls3e{letter-spacing:1.006027pt;}
.ls46{letter-spacing:1.011041pt;}
.ls49{letter-spacing:1.031041pt;}
.ls5b{letter-spacing:1.071041pt;}
.ls41{letter-spacing:1.101068pt;}
.ls55{letter-spacing:1.191041pt;}
.ls1c{letter-spacing:1.239041pt;}
.ls20{letter-spacing:2.363042pt;}
.ls1f{letter-spacing:2.928056pt;}
.ls1d{letter-spacing:3.609070pt;}
.ls1e{letter-spacing:3.774030pt;}
.ls8{letter-spacing:4.449070pt;}
.ls9{letter-spacing:10.194035pt;}
.lsb{letter-spacing:12.109076pt;}
.ls21{letter-spacing:12.578037pt;}
.ws1c{word-spacing:-42.240034pt;}
.ws3{word-spacing:-39.840032pt;}
.ws6{word-spacing:-36.000029pt;}
.ws0{word-spacing:-29.375384pt;}
.ws3e{word-spacing:-26.880022pt;}
.ws3d{word-spacing:-26.832021pt;}
.ws3f{word-spacing:-26.496021pt;}
.ws8{word-spacing:-17.792014pt;}
.ws22{word-spacing:-15.656973pt;}
.ws34{word-spacing:-15.351692pt;}
.ws1a{word-spacing:-15.319052pt;}
.ws30{word-spacing:-15.298572pt;}
.ws1d{word-spacing:-15.262732pt;}
.ws2a{word-spacing:-15.206412pt;}
.ws32{word-spacing:-15.086092pt;}
.ws1e{word-spacing:-15.037452pt;}
.ws1f{word-spacing:-14.981132pt;}
.ws33{word-spacing:-14.979852pt;}
.ws1b{word-spacing:-14.812172pt;}
.ws2{word-spacing:-14.767372pt;}
.ws21{word-spacing:-14.755852pt;}
.ws31{word-spacing:-14.714252pt;}
.ws1{word-spacing:-14.661132pt;}
.ws2c{word-spacing:-14.643212pt;}
.ws2b{word-spacing:-14.586892pt;}
.ws2f{word-spacing:-14.554892pt;}
.ws39{word-spacing:-14.501772pt;}
.ws2e{word-spacing:-14.417932pt;}
.ws29{word-spacing:-14.361611pt;}
.ws2d{word-spacing:-14.192651pt;}
.ws7{word-spacing:-13.536011pt;}
.ws20{word-spacing:-13.516811pt;}
.ws3a{word-spacing:-13.488011pt;}
.ws4{word-spacing:-13.440011pt;}
.ws3b{word-spacing:-13.344011pt;}
.ws5{word-spacing:-12.912010pt;}
.wsa{word-spacing:-12.840970pt;}
.wse{word-spacing:-12.784650pt;}
.ws3c{word-spacing:-12.240010pt;}
.wsb{word-spacing:-12.165130pt;}
.wsd{word-spacing:-12.108810pt;}
.wsc{word-spacing:-11.996170pt;}
.ws9{word-spacing:-10.944009pt;}
.ws38{word-spacing:-0.318720pt;}
.ws13{word-spacing:-0.212480pt;}
.ws40{word-spacing:-0.192000pt;}
.ws11{word-spacing:-0.096000pt;}
.ws18{word-spacing:-0.064000pt;}
.ws10{word-spacing:-0.048000pt;}
.wsf{word-spacing:0.000000pt;}
.ws23{word-spacing:0.056320pt;}
.ws17{word-spacing:0.064000pt;}
.ws14{word-spacing:0.096000pt;}
.ws36{word-spacing:0.106240pt;}
.ws15{word-spacing:0.192000pt;}
.ws16{word-spacing:0.256000pt;}
.ws12{word-spacing:0.624000pt;}
.ws19{word-spacing:0.675841pt;}
.ws25{word-spacing:0.732161pt;}
.ws37{word-spacing:0.743681pt;}
.ws35{word-spacing:0.849921pt;}
.ws27{word-spacing:1.351681pt;}
.ws24{word-spacing:1.914882pt;}
.ws26{word-spacing:2.590722pt;}
.ws28{word-spacing:4.505604pt;}
._e{margin-left:-5.826778pt;}
._c{margin-left:-4.583186pt;}
._d{margin-left:-3.122722pt;}
._b{margin-left:-2.185320pt;}
._1{margin-left:-1.178241pt;}
._0{width:1.114241pt;}
._2{width:2.196489pt;}
._3{width:3.422738pt;}
._5{width:5.147178pt;}
._6{width:6.425614pt;}
._4{width:7.476600pt;}
._9{width:8.434846pt;}
._8{width:9.417277pt;}
._7{width:11.119710pt;}
._12{width:12.064302pt;}
._a{width:13.182627pt;}
._16{width:14.145348pt;}
._11{width:16.459468pt;}
._15{width:18.032045pt;}
._14{width:18.991695pt;}
._1b{width:20.123397pt;}
._19{width:21.285182pt;}
._1e{width:22.538202pt;}
._13{width:23.471058pt;}
._1f{width:24.658528pt;}
._20{width:26.366479pt;}
._10{width:27.264496pt;}
._1d{width:28.729346pt;}
._1c{width:29.896216pt;}
._1a{width:30.940456pt;}
._17{width:31.862993pt;}
._18{width:32.919638pt;}
._22{width:34.557223pt;}
._f{width:40.863959pt;}
._21{width:42.127701pt;}
.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;}
.y20b{bottom:2.560365pt;}
.y3d{bottom:3.840067pt;}
.y9a{bottom:3.840068pt;}
.y39{bottom:18.240076pt;}
.y3f{bottom:20.960069pt;}
.y5{bottom:26.400077pt;}
.y9b{bottom:65.600000pt;}
.y3e{bottom:65.760000pt;}
.y4{bottom:69.920000pt;}
.y40{bottom:72.640058pt;}
.y9c{bottom:72.800058pt;}
.y38{bottom:77.120000pt;}
.y3{bottom:79.200063pt;}
.y3b{bottom:79.520064pt;}
.y3c{bottom:80.320000pt;}
.y99{bottom:81.440000pt;}
.y3a{bottom:81.760065pt;}
.y6{bottom:82.560066pt;}
.y2{bottom:97.920078pt;}
.y98{bottom:137.434390pt;}
.y77{bottom:138.472391pt;}
.y128{bottom:138.649978pt;}
.y15e{bottom:139.038778pt;}
.y1db{bottom:140.155045pt;}
.y107{bottom:142.845981pt;}
.yd1{bottom:143.015581pt;}
.y37{bottom:148.485585pt;}
.y16d{bottom:151.181721pt;}
.y1a2{bottom:151.203721pt;}
.y97{bottom:153.598136pt;}
.y76{bottom:154.157470pt;}
.y127{bottom:154.645057pt;}
.y15d{bottom:155.033857pt;}
.y1da{bottom:155.520124pt;}
.y106{bottom:158.531060pt;}
.yd0{bottom:159.179327pt;}
.y36{bottom:164.649332pt;}
.y16c{bottom:167.176800pt;}
.y1a1{bottom:167.198800pt;}
.y96{bottom:169.761882pt;}
.y75{bottom:169.997483pt;}
.y126{bottom:170.808803pt;}
.y1d9{bottom:170.880137pt;}
.y15c{bottom:171.197604pt;}
.y105{bottom:174.371073pt;}
.ycf{bottom:175.174407pt;}
.y35{bottom:180.644411pt;}
.y1a0{bottom:183.326280pt;}
.y16b{bottom:183.340547pt;}
.y74{bottom:185.682562pt;}
.y95{bottom:185.756962pt;}
.y1d8{bottom:186.388816pt;}
.y125{bottom:186.972550pt;}
.y15b{bottom:187.548817pt;}
.y104{bottom:190.057352pt;}
.yce{bottom:191.338153pt;}
.y34{bottom:196.639491pt;}
.y19f{bottom:199.321359pt;}
.y16a{bottom:199.335626pt;}
.y73{bottom:201.522575pt;}
.y1d7{bottom:201.595095pt;}
.y94{bottom:201.920708pt;}
.y124{bottom:202.967629pt;}
.y15a{bottom:203.867630pt;}
.y103{bottom:205.897365pt;}
.ycd{bottom:207.333233pt;}
.y1f2{bottom:208.000529pt;}
.y33{bottom:211.999503pt;}
.y19e{bottom:215.485106pt;}
.y169{bottom:215.499372pt;}
.y1d6{bottom:216.800173pt;}
.y72{bottom:217.207654pt;}
.y93{bottom:218.084454pt;}
.y123{bottom:219.131375pt;}
.y159{bottom:220.031376pt;}
.y102{bottom:221.582444pt;}
.ycc{bottom:223.496979pt;}
.y32{bottom:224.989513pt;}
.y19d{bottom:231.648852pt;}
.y168{bottom:231.663119pt;}
.y1d5{bottom:232.154852pt;}
.y71{bottom:233.047666pt;}
.y92{bottom:234.079534pt;}
.y122{bottom:235.126455pt;}
.y158{bottom:236.195122pt;}
.y101{bottom:237.422457pt;}
.ycb{bottom:239.660725pt;}
.y31{bottom:240.983259pt;}
.y1d4{bottom:247.520198pt;}
.y19c{bottom:247.643931pt;}
.y167{bottom:247.658198pt;}
.y70{bottom:248.733946pt;}
.y91{bottom:250.243280pt;}
.y121{bottom:250.966467pt;}
.y157{bottom:252.513935pt;}
.y100{bottom:253.107536pt;}
.yca{bottom:255.655805pt;}
.y30{bottom:257.148339pt;}
.y1d3{bottom:262.865544pt;}
.y19b{bottom:263.807678pt;}
.y166{bottom:263.821944pt;}
.y6f{bottom:264.573958pt;}
.y90{bottom:266.238360pt;}
.y120{bottom:266.961547pt;}
.y156{bottom:268.677682pt;}
.yff{bottom:268.947548pt;}
.yc9{bottom:271.819551pt;}
.y2f{bottom:273.312085pt;}
.y1d2{bottom:278.388889pt;}
.y19a{bottom:279.971424pt;}
.y165{bottom:279.985691pt;}
.y6e{bottom:280.259038pt;}
.y11f{bottom:282.956626pt;}
.yfe{bottom:284.632628pt;}
.y155{bottom:284.996495pt;}
.y8f{bottom:286.283442pt;}
.yc8{bottom:287.983297pt;}
.y2e{bottom:289.305831pt;}
.y1d1{bottom:293.435168pt;}
.y199{bottom:295.966503pt;}
.y164{bottom:295.980770pt;}
.y6d{bottom:296.099050pt;}
.y11e{bottom:298.951706pt;}
.yfd{bottom:300.472640pt;}
.y154{bottom:301.160241pt;}
.y8e{bottom:302.448522pt;}
.yc7{bottom:303.978377pt;}
.y2d{bottom:305.470911pt;}
.y1d0{bottom:308.800247pt;}
.y6c{bottom:311.784129pt;}
.y198{bottom:312.130250pt;}
.y163{bottom:312.144516pt;}
.y11d{bottom:314.945452pt;}
.yfc{bottom:316.157720pt;}
.y153{bottom:317.479054pt;}
.yc6{bottom:320.142123pt;}
.y2c{bottom:321.464657pt;}
.y8d{bottom:322.766005pt;}
.y1cf{bottom:324.140126pt;}
.y6b{bottom:327.624142pt;}
.y197{bottom:328.125329pt;}
.y162{bottom:328.139596pt;}
.y11c{bottom:330.785465pt;}
.yfb{bottom:332.066532pt;}
.y152{bottom:333.642800pt;}
.yc5{bottom:336.137202pt;}
.y2b{bottom:337.459737pt;}
.y8c{bottom:338.929751pt;}
.y1ce{bottom:339.665205pt;}
.y6a{bottom:343.309221pt;}
.y196{bottom:344.289075pt;}
.y11b{bottom:346.780544pt;}
.yfa{bottom:348.061612pt;}
.y161{bottom:348.302145pt;}
.y151{bottom:349.961613pt;}
.yc4{bottom:352.300949pt;}
.y2a{bottom:353.623483pt;}
.y1cd{bottom:354.870284pt;}
.y8b{bottom:355.248564pt;}
.y69{bottom:359.149234pt;}
.y195{bottom:360.452822pt;}
.y11a{bottom:362.775624pt;}
.yf9{bottom:363.901624pt;}
.y160{bottom:364.465892pt;}
.y150{bottom:366.125360pt;}
.yc3{bottom:368.464695pt;}
.y29{bottom:369.618562pt;}
.y1cc{bottom:370.076563pt;}
.y8a{bottom:371.412310pt;}
.y68{bottom:374.834313pt;}
.y194{bottom:376.447901pt;}
.y119{bottom:378.770703pt;}
.yf8{bottom:379.895371pt;}
.y15f{bottom:380.460971pt;}
.y14f{bottom:382.444173pt;}
.yc2{bottom:384.459774pt;}
.y1cb{bottom:385.600308pt;}
.y28{bottom:385.782309pt;}
.y89{bottom:387.731124pt;}
.y67{bottom:390.674326pt;}
.y193{bottom:392.611647pt;}
.y118{bottom:394.610716pt;}
.yf7{bottom:395.890450pt;}
.y14e{bottom:398.607919pt;}
.yc1{bottom:400.623520pt;}
.y27{bottom:401.777388pt;}
.y88{bottom:403.894870pt;}
.y66{bottom:406.359405pt;}
.y192{bottom:408.606727pt;}
.y1ca{bottom:408.794994pt;}
.y117{bottom:410.605795pt;}
.y20e{bottom:411.675263pt;}
.yf6{bottom:411.885530pt;}
.y14d{bottom:414.771665pt;}
.yc0{bottom:416.618600pt;}
.y26{bottom:417.772468pt;}
.y87{bottom:420.058616pt;}
.y65{bottom:422.199418pt;}
.y1c9{bottom:424.160339pt;}
.y191{bottom:424.770473pt;}
.y116{bottom:426.600875pt;}
.y20d{bottom:427.040342pt;}
.yf5{bottom:427.725542pt;}
.y14c{bottom:431.090478pt;}
.ybf{bottom:432.782346pt;}
.y25{bottom:433.936214pt;}
.y86{bottom:436.377429pt;}
.y64{bottom:437.884497pt;}
.y1c8{bottom:439.515018pt;}
.y190{bottom:440.934219pt;}
.y20c{bottom:442.080354pt;}
.y115{bottom:442.595954pt;}
.yf4{bottom:443.720622pt;}
.y14b{bottom:447.254224pt;}
.ybe{bottom:448.946092pt;}
.y24{bottom:449.931293pt;}
.y85{bottom:452.541175pt;}
.y1f1{bottom:453.280000pt;}
.y63{bottom:453.724510pt;}
.y1c7{bottom:454.880364pt;}
.y114{bottom:458.591034pt;}
.yf3{bottom:459.715701pt;}
.y18f{bottom:460.927969pt;}
.y14a{bottom:463.573038pt;}
.ybd{bottom:464.941172pt;}
.y23{bottom:466.095040pt;}
.y84{bottom:468.859988pt;}
.y62{bottom:469.564522pt;}
.y20a{bottom:469.744109pt;}
.y1c6{bottom:470.075043pt;}
.y113{bottom:474.431046pt;}
.yf2{bottom:475.710781pt;}
.y149{bottom:479.736784pt;}
.y18e{bottom:481.090518pt;}
.ybc{bottom:481.104918pt;}
.y22{bottom:482.090119pt;}
.y209{bottom:483.507853pt;}
.y83{bottom:485.023735pt;}
.y61{bottom:485.249602pt;}
.y1c5{bottom:485.440388pt;}
.y112{bottom:490.426126pt;}
.yf1{bottom:491.705860pt;}
.y1fc{bottom:495.040396pt;}
.y148{bottom:496.055597pt;}
.y18d{bottom:497.254264pt;}
.ybb{bottom:497.268664pt;}
.y208{bottom:497.272931pt;}
.y21{bottom:498.085198pt;}
.y1c4{bottom:500.795067pt;}
.y60{bottom:501.089614pt;}
.y82{bottom:501.342548pt;}
.y111{bottom:506.421205pt;}
.yf0{bottom:507.545873pt;}
.y1fb{bottom:508.800407pt;}
.y207{bottom:511.036675pt;}
.y147{bottom:512.220676pt;}
.y18c{bottom:513.249344pt;}
.yba{bottom:513.263744pt;}
.y20{bottom:514.248945pt;}
.y1c3{bottom:516.160413pt;}
.y5f{bottom:516.774693pt;}
.y81{bottom:517.506294pt;}
.y110{bottom:522.414951pt;}
.y1fa{bottom:523.040418pt;}
.yef{bottom:523.540952pt;}
.y206{bottom:524.800420pt;}
.y146{bottom:528.539489pt;}
.y18b{bottom:529.413090pt;}
.yb9{bottom:529.427490pt;}
.y1f{bottom:530.244024pt;}
.y1c2{bottom:531.515092pt;}
.y5e{bottom:532.614706pt;}
.y80{bottom:533.825107pt;}
.y10f{bottom:538.254964pt;}
.y205{bottom:539.024431pt;}
.yee{bottom:539.536032pt;}
.y145{bottom:544.703236pt;}
.y18a{bottom:545.408170pt;}
.yb8{bottom:545.422570pt;}
.y1e{bottom:546.407770pt;}
.y1c1{bottom:546.880438pt;}
.y5d{bottom:548.300985pt;}
.y1f9{bottom:548.480439pt;}
.y7f{bottom:549.988853pt;}
.y204{bottom:552.787909pt;}
.y10e{bottom:554.250043pt;}
.yed{bottom:555.531111pt;}
.y144{bottom:561.022049pt;}
.y189{bottom:561.571916pt;}
.yb7{bottom:561.586316pt;}
.y1c0{bottom:562.075383pt;}
.y1f8{bottom:562.240450pt;}
.y1d{bottom:562.402850pt;}
.y5c{bottom:564.140998pt;}
.y7e{bottom:566.307666pt;}
.y203{bottom:566.552987pt;}
.y10d{bottom:570.245123pt;}
.yec{bottom:571.524857pt;}
.y143{bottom:577.185795pt;}
.y1bf{bottom:577.440462pt;}
.y188{bottom:577.735662pt;}
.yb6{bottom:577.750062pt;}
.y1c{bottom:578.397929pt;}
.y5b{bottom:579.826077pt;}
.y1f7{bottom:580.000464pt;}
.y202{bottom:580.316731pt;}
.y7d{bottom:582.471413pt;}
.y10c{bottom:586.240202pt;}
.yeb{bottom:587.364870pt;}
.y1be{bottom:592.795141pt;}
.y142{bottom:593.349541pt;}
.y187{bottom:593.730742pt;}
.yb5{bottom:593.745142pt;}
.y1f6{bottom:593.920475pt;}
.y1b{bottom:594.561676pt;}
.y5a{bottom:595.666090pt;}
.y201{bottom:598.233012pt;}
.y7c{bottom:598.635159pt;}
.y10b{bottom:602.235282pt;}
.yea{bottom:603.359949pt;}
.y1bd{bottom:608.160487pt;}
.y141{bottom:609.668354pt;}
.y186{bottom:609.894488pt;}
.yb4{bottom:609.908888pt;}
.y1a{bottom:610.556755pt;}
.y59{bottom:611.351169pt;}
.y1f5{bottom:611.680489pt;}
.y7b{bottom:614.953972pt;}
.y200{bottom:615.993026pt;}
.y10a{bottom:618.075294pt;}
.ye9{bottom:619.355029pt;}
.y1bc{bottom:623.515165pt;}
.y1f4{bottom:625.756767pt;}
.y140{bottom:625.832101pt;}
.y185{bottom:625.889567pt;}
.yb3{bottom:625.903967pt;}
.y19{bottom:626.720501pt;}
.y58{bottom:627.191182pt;}
.y1ff{bottom:629.756770pt;}
.y7a{bottom:631.117718pt;}
.ye8{bottom:635.350108pt;}
.y109{bottom:638.069044pt;}
.y1bb{bottom:638.880511pt;}
.y184{bottom:642.053314pt;}
.yb2{bottom:642.067714pt;}
.y13f{bottom:642.150914pt;}
.y57{bottom:642.876261pt;}
.y1fe{bottom:643.520515pt;}
.y79{bottom:647.112798pt;}
.y1f3{bottom:647.200518pt;}
.y18{bottom:649.760520pt;}
.ye7{bottom:651.190121pt;}
.y1ba{bottom:654.075190pt;}
.y108{bottom:654.232790pt;}
.y1fd{bottom:657.280526pt;}
.y183{bottom:658.217060pt;}
.yb1{bottom:658.231460pt;}
.y13e{bottom:658.314660pt;}
.y56{bottom:662.560010pt;}
.y78{bottom:662.952810pt;}
.ye6{bottom:667.185200pt;}
.y1b9{bottom:669.440536pt;}
.y182{bottom:674.212139pt;}
.yb0{bottom:674.226539pt;}
.y13d{bottom:674.309739pt;}
.y17{bottom:674.720540pt;}
.y55{bottom:678.080022pt;}
.y1f0{bottom:682.560546pt;}
.ye5{bottom:683.180280pt;}
.y1b8{bottom:684.795215pt;}
.y181{bottom:690.375886pt;}
.yaf{bottom:690.390286pt;}
.y13c{bottom:690.473486pt;}
.y54{bottom:691.066286pt;}
.y16{bottom:693.120554pt;}
.y1ef{bottom:695.200556pt;}
.ye4{bottom:699.175359pt;}
.y1b7{bottom:700.160560pt;}
.y1ee{bottom:705.435498pt;}
.y180{bottom:706.539632pt;}
.yae{bottom:706.554032pt;}
.y13b{bottom:706.637232pt;}
.y53{bottom:707.061366pt;}
.y15{bottom:711.520569pt;}
.ye3{bottom:715.170439pt;}
.y1b6{bottom:715.509906pt;}
.y1ed{bottom:720.800577pt;}
.y17f{bottom:722.534711pt;}
.yad{bottom:722.549111pt;}
.y13a{bottom:722.632311pt;}
.y52{bottom:723.225112pt;}
.y1b5{bottom:730.875518pt;}
.ye2{bottom:731.010451pt;}
.y1ec{bottom:735.995522pt;}
.y17e{bottom:738.698458pt;}
.yac{bottom:738.712858pt;}
.y139{bottom:738.796058pt;}
.y51{bottom:739.388858pt;}
.y14{bottom:739.996859pt;}
.y1b4{bottom:746.240597pt;}
.ye1{bottom:747.005531pt;}
.y1eb{bottom:751.360601pt;}
.y13{bottom:753.436869pt;}
.y17d{bottom:754.693537pt;}
.yab{bottom:754.707937pt;}
.y138{bottom:754.791137pt;}
.y50{bottom:755.383938pt;}
.y1b3{bottom:761.435276pt;}
.ye0{bottom:763.000610pt;}
.y1ea{bottom:766.715280pt;}
.y12{bottom:767.200614pt;}
.y17c{bottom:770.857283pt;}
.yaa{bottom:770.871683pt;}
.y137{bottom:770.954883pt;}
.y4f{bottom:771.547684pt;}
.y1b2{bottom:776.800621pt;}
.y11{bottom:782.080626pt;}
.ydf{bottom:782.838093pt;}
.y17b{bottom:787.021030pt;}
.ya9{bottom:787.035430pt;}
.y136{bottom:787.118630pt;}
.y4e{bottom:787.542763pt;}
.y1b1{bottom:792.149967pt;}
.y1e9{bottom:797.435305pt;}
.yde{bottom:799.003173pt;}
.y17a{bottom:803.016109pt;}
.ya8{bottom:803.030509pt;}
.y135{bottom:803.113709pt;}
.y4d{bottom:803.536509pt;}
.y1b0{bottom:807.674379pt;}
.y10{bottom:812.336917pt;}
.y1e8{bottom:812.800650pt;}
.ydd{bottom:819.165722pt;}
.y179{bottom:819.179855pt;}
.ya7{bottom:819.194255pt;}
.y134{bottom:819.277455pt;}
.y4c{bottom:819.700256pt;}
.y1af{bottom:822.720658pt;}
.y1e7{bottom:827.995329pt;}
.ydc{bottom:835.160801pt;}
.y178{bottom:835.174935pt;}
.ya6{bottom:835.189335pt;}
.y133{bottom:835.272535pt;}
.y4b{bottom:835.695335pt;}
.yf{bottom:836.808136pt;}
.y1ae{bottom:838.067337pt;}
.y1e6{bottom:843.360675pt;}
.ydb{bottom:851.324548pt;}
.y177{bottom:851.338681pt;}
.ya5{bottom:851.353081pt;}
.y132{bottom:851.436281pt;}
.y4a{bottom:851.859081pt;}
.y1ad{bottom:853.590550pt;}
.y1e5{bottom:858.711354pt;}
.ye{bottom:861.280689pt;}
.yda{bottom:867.488294pt;}
.y176{bottom:867.502427pt;}
.ya4{bottom:867.516827pt;}
.y131{bottom:867.600027pt;}
.y49{bottom:867.854161pt;}
.y1ac{bottom:868.796828pt;}
.y1e4{bottom:874.075633pt;}
.yd9{bottom:883.483373pt;}
.y175{bottom:883.497507pt;}
.ya3{bottom:883.511907pt;}
.y130{bottom:883.595107pt;}
.y48{bottom:883.849240pt;}
.y1ab{bottom:884.320574pt;}
.y1e3{bottom:889.440712pt;}
.yd{bottom:894.705516pt;}
.yd8{bottom:899.647120pt;}
.y174{bottom:899.661253pt;}
.ya2{bottom:899.675653pt;}
.y12f{bottom:899.758853pt;}
.y47{bottom:900.012987pt;}
.y1e2{bottom:904.635390pt;}
.y1aa{bottom:907.841793pt;}
.y1a5{bottom:907.841926pt;}
.yc{bottom:909.910595pt;}
.yd7{bottom:915.810866pt;}
.y173{bottom:915.824999pt;}
.ya1{bottom:915.839399pt;}
.y12e{bottom:915.922599pt;}
.y46{bottom:916.008066pt;}
.y1e1{bottom:920.000736pt;}
.y1a9{bottom:923.836872pt;}
.y1a4{bottom:923.837006pt;}
.yb{bottom:925.275674pt;}
.yd6{bottom:931.805945pt;}
.y172{bottom:931.820079pt;}
.ya0{bottom:931.834479pt;}
.y12d{bottom:931.917679pt;}
.y45{bottom:932.171812pt;}
.y1e0{bottom:935.355415pt;}
.y1a8{bottom:940.000619pt;}
.ya{bottom:940.640753pt;}
.y1a3{bottom:943.830755pt;}
.yd5{bottom:947.969692pt;}
.y171{bottom:947.983825pt;}
.y9f{bottom:947.998225pt;}
.y12c{bottom:948.081425pt;}
.y44{bottom:948.166892pt;}
.y1df{bottom:950.720761pt;}
.y1a7{bottom:955.995698pt;}
.y9{bottom:957.280766pt;}
.yd4{bottom:963.963438pt;}
.y170{bottom:963.978905pt;}
.y9e{bottom:963.993305pt;}
.y12b{bottom:964.076505pt;}
.y43{bottom:964.161971pt;}
.y1de{bottom:966.240773pt;}
.y1a6{bottom:976.158248pt;}
.yd3{bottom:980.128517pt;}
.y16f{bottom:980.142651pt;}
.y9d{bottom:980.157051pt;}
.y12a{bottom:980.240251pt;}
.y42{bottom:980.325718pt;}
.y1dd{bottom:981.435718pt;}
.y8{bottom:981.595719pt;}
.yd2{bottom:996.292264pt;}
.y16e{bottom:996.306397pt;}
.y41{bottom:996.320797pt;}
.y129{bottom:996.403997pt;}
.y1dc{bottom:996.640797pt;}
.y7{bottom:996.800797pt;}
.y1{bottom:1072.320858pt;}
.h14{height:26.400000pt;}
.h23{height:28.359398pt;}
.h13{height:29.440000pt;}
.h12{height:29.773149pt;}
.h18{height:31.998752pt;}
.h15{height:32.000000pt;}
.h7{height:34.945340pt;}
.h2{height:36.883155pt;}
.h5{height:37.440000pt;}
.h8{height:38.672843pt;}
.h10{height:41.250033pt;}
.h25{height:41.976596pt;}
.hf{height:42.281284pt;}
.hd{height:42.539097pt;}
.h4{height:43.343785pt;}
.h3{height:44.437536pt;}
.h19{height:46.454100pt;}
.h6{height:46.593787pt;}
.hc{height:46.843787pt;}
.h9{height:47.076600pt;}
.h20{height:47.096600pt;}
.h1d{height:47.096867pt;}
.h1c{height:47.097934pt;}
.h22{height:47.113934pt;}
.h1b{height:47.119267pt;}
.h21{height:47.121934pt;}
.h1a{height:47.129934pt;}
.h1f{height:47.136600pt;}
.h1e{height:47.157134pt;}
.h16{height:49.252539pt;}
.h11{height:49.610040pt;}
.h17{height:49.912540pt;}
.ha{height:54.807231pt;}
.he{height:55.968795pt;}
.hb{height:74.438497pt;}
.h24{height:218.880000pt;}
.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.078720pt;}
.w8{width:425.280000pt;}
.w0{width:793.759867pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:7.200240pt;}
.xd{left:9.600062pt;}
.x5{left:10.880428pt;}
.x17{left:13.120435pt;}
.x10{left:16.640432pt;}
.xc{left:68.480000pt;}
.x7{left:75.520314pt;}
.xe{left:78.080062pt;}
.x9{left:94.400502pt;}
.x1b{left:96.320077pt;}
.x19{left:103.992537pt;}
.x12{left:122.720725pt;}
.xa{left:150.987507pt;}
.x1d{left:292.960000pt;}
.x1c{left:300.160240pt;}
.x2{left:388.800698pt;}
.xf{left:390.720000pt;}
.x15{left:396.800704pt;}
.x13{left:406.401205pt;}
.xb{left:412.320930pt;}
.x14{left:425.282420pt;}
.x8{left:444.800903pt;}
.x1a{left:509.280407pt;}
.x4{left:523.680000pt;}
.x16{left:531.040000pt;}
.x6{left:577.280462pt;}
.x11{left:578.720463pt;}
.x18{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; }
  