
    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_07e674cbd1807f2dfc81d908.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_e8b761e075f7825f37854e7f.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_658f7f787f81a0fb68ea4c5a.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_16a9b38736369f368aa1bbc1.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_88db301378dd38c27ae36358.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_0f2e70ceb8c1f7b184718c55.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_9d1bab752939fa4daa601609.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.070312;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_b7b1fa8fa2a5effa3d0ef16d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_96a9dca0687ad580ea25e9e7.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d96e118585dec738a6134e1a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.104492;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_7854ae830046a44df959ba7b.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_974b7114b29fd6a454cc6a43.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_9c252abb385f6d0b3cf51bcf.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_d143ea3f65531e3adb0bd1ab.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_d573ea3413938b8ad4751ce7.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_beb097b4374d403318193529.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_0b41d7fc76f7845a82c6939b.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;}
.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;}
.ls38{letter-spacing:-2.471042px;}
.ls2b{letter-spacing:-2.407682px;}
.ls33{letter-spacing:-2.090882px;}
.ls32{letter-spacing:-1.774081px;}
.ls28{letter-spacing:-1.710721px;}
.ls26{letter-spacing:-1.393921px;}
.ls42{letter-spacing:-1.140481px;}
.ls45{letter-spacing:-1.075681px;}
.ls29{letter-spacing:-1.013761px;}
.ls19{letter-spacing:-0.950401px;}
.ls1a{letter-spacing:-0.823681px;}
.ls6c{letter-spacing:-0.810001px;}
.ls1b{letter-spacing:-0.760321px;}
.ls24{letter-spacing:-0.696961px;}
.ls15{letter-spacing:-0.594000px;}
.ls23{letter-spacing:-0.570240px;}
.ls16{letter-spacing:-0.486000px;}
.ls43{letter-spacing:-0.478080px;}
.ls27{letter-spacing:-0.443520px;}
.ls25{letter-spacing:-0.380160px;}
.ls2a{letter-spacing:-0.316800px;}
.ls11{letter-spacing:-0.298800px;}
.ls44{letter-spacing:-0.239040px;}
.ls6d{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.190080px;}
.lsd{letter-spacing:-0.179280px;}
.lsf{letter-spacing:-0.168480px;}
.ls14{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.119520px;}
.ls18{letter-spacing:-0.063360px;}
.ls10{letter-spacing:-0.059760px;}
.ls17{letter-spacing:-0.054000px;}
.lsc{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000300px;}
.ls0{letter-spacing:0.001140px;}
.ls2{letter-spacing:0.019860px;}
.ls65{letter-spacing:0.054000px;}
.ls4f{letter-spacing:0.058620px;}
.ls2c{letter-spacing:0.063120px;}
.ls63{letter-spacing:0.063240px;}
.ls8{letter-spacing:0.108000px;}
.ls66{letter-spacing:0.124860px;}
.ls60{letter-spacing:0.132360px;}
.ls13{letter-spacing:0.144000px;}
.ls6b{letter-spacing:0.162000px;}
.ls12{letter-spacing:0.191520px;}
.ls57{letter-spacing:0.194220px;}
.ls7{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.237420px;}
.ls69{letter-spacing:0.239040px;}
.ls5{letter-spacing:0.243060px;}
.ls5e{letter-spacing:0.265560px;}
.ls67{letter-spacing:0.268860px;}
.ls3c{letter-spacing:0.271200px;}
.ls4c{letter-spacing:0.276780px;}
.ls6{letter-spacing:0.282420px;}
.ls51{letter-spacing:0.288060px;}
.ls49{letter-spacing:0.299280px;}
.ls48{letter-spacing:0.304920px;}
.ls3e{letter-spacing:0.310560px;}
.ls4a{letter-spacing:0.327420px;}
.ls47{letter-spacing:0.333060px;}
.ls3d{letter-spacing:0.338700px;}
.ls68{letter-spacing:0.358560px;}
.ls4d{letter-spacing:0.378060px;}
.ls41{letter-spacing:0.383700px;}
.ls64{letter-spacing:0.394920px;}
.ls4e{letter-spacing:0.417420px;}
.ls62{letter-spacing:0.445560px;}
.ls58{letter-spacing:0.462420px;}
.ls3{letter-spacing:0.538200px;}
.ls61{letter-spacing:0.539100px;}
.ls46{letter-spacing:0.597600px;}
.ls40{letter-spacing:0.655501px;}
.ls6a{letter-spacing:0.657361px;}
.ls50{letter-spacing:0.957421px;}
.ls3f{letter-spacing:1.053061px;}
.ls52{letter-spacing:1.058701px;}
.ls4b{letter-spacing:1.154281px;}
.lsa{letter-spacing:1.303921px;}
.ls9{letter-spacing:1.393921px;}
.ls1f{letter-spacing:1.837201px;}
.ls5d{letter-spacing:1.891202px;}
.ls20{letter-spacing:1.899062px;}
.ls3a{letter-spacing:2.534702px;}
.ls5b{letter-spacing:3.138843px;}
.ls56{letter-spacing:3.155763px;}
.ls5f{letter-spacing:3.937623px;}
.ls1e{letter-spacing:3.991563px;}
.ls55{letter-spacing:4.244223px;}
.ls53{letter-spacing:4.323003px;}
.ls2e{letter-spacing:4.689064px;}
.ls54{letter-spacing:4.958584px;}
.ls34{letter-spacing:5.448424px;}
.ls22{letter-spacing:5.454064px;}
.ls59{letter-spacing:6.460505px;}
.lsb{letter-spacing:6.467705px;}
.ls2f{letter-spacing:6.843425px;}
.ls2d{letter-spacing:7.602786px;}
.ls21{letter-spacing:8.300287px;}
.ls1d{letter-spacing:8.474707px;}
.ls31{letter-spacing:9.110287px;}
.ls5c{letter-spacing:9.323587px;}
.ls35{letter-spacing:10.454708px;}
.ls36{letter-spacing:11.911570px;}
.ls37{letter-spacing:13.368431px;}
.ls3b{letter-spacing:14.285291px;}
.ls39{letter-spacing:14.763432px;}
.ls30{letter-spacing:27.054082px;}
.ls5a{letter-spacing:28.026742px;}
.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;}
}
.ws1d{word-spacing:-47.520038px;}
.ws1{word-spacing:-44.820036px;}
.ws7{word-spacing:-40.500032px;}
.ws4{word-spacing:-26.812821px;}
.ws1e{word-spacing:-17.614094px;}
.ws23{word-spacing:-17.297294px;}
.ws2a{word-spacing:-17.210894px;}
.ws2b{word-spacing:-16.971854px;}
.ws1c{word-spacing:-16.917134px;}
.ws24{word-spacing:-16.790413px;}
.ws1b{word-spacing:-16.663693px;}
.ws5{word-spacing:-16.632013px;}
.ws2{word-spacing:-16.613293px;}
.ws25{word-spacing:-16.600333px;}
.ws28{word-spacing:-16.553533px;}
.ws0{word-spacing:-16.493773px;}
.ws26{word-spacing:-16.473613px;}
.ws27{word-spacing:-16.374253px;}
.ws3{word-spacing:-16.314493px;}
.ws6{word-spacing:-16.272013px;}
.ws22{word-spacing:-15.903373px;}
.ws21{word-spacing:-15.840013px;}
.ws29{word-spacing:-15.537612px;}
.ws8{word-spacing:-15.228012px;}
.ws1f{word-spacing:-15.206412px;}
.ws2d{word-spacing:-15.174012px;}
.ws2c{word-spacing:-15.120012px;}
.wsa{word-spacing:-15.012012px;}
.ws2f{word-spacing:-14.796012px;}
.ws9{word-spacing:-14.526012px;}
.wsd{word-spacing:-14.446092px;}
.ws30{word-spacing:-14.418012px;}
.wsf{word-spacing:-14.382732px;}
.ws10{word-spacing:-14.256011px;}
.ws2e{word-spacing:-14.202011px;}
.wse{word-spacing:-13.622411px;}
.wsc{word-spacing:-13.495691px;}
.wsb{word-spacing:-12.312010px;}
.ws15{word-spacing:-0.810001px;}
.ws20{word-spacing:-0.696961px;}
.ws3c{word-spacing:-0.162000px;}
.ws13{word-spacing:-0.108000px;}
.ws12{word-spacing:-0.054000px;}
.ws11{word-spacing:0.000000px;}
.ws19{word-spacing:0.063360px;}
.ws18{word-spacing:0.144000px;}
.ws16{word-spacing:0.216000px;}
.ws17{word-spacing:0.288000px;}
.ws14{word-spacing:0.702001px;}
.ws31{word-spacing:0.776881px;}
.ws34{word-spacing:2.988002px;}
.ws3a{word-spacing:3.705123px;}
.ws38{word-spacing:5.139364px;}
.ws1a{word-spacing:5.765765px;}
.ws3b{word-spacing:5.856485px;}
.ws39{word-spacing:8.007846px;}
.ws37{word-spacing:9.442088px;}
.ws32{word-spacing:15.896173px;}
.ws33{word-spacing:16.613293px;}
.ws36{word-spacing:28.146983px;}
.ws35{word-spacing:28.386023px;}
._23{margin-left:-27.437546px;}
._20{margin-left:-13.539822px;}
._21{margin-left:-12.052146px;}
._8{margin-left:-5.466779px;}
._24{margin-left:-3.338235px;}
._1f{margin-left:-2.337024px;}
._1{margin-left:-1.325521px;}
._0{width:1.253521px;}
._2{width:2.316063px;}
._3{width:3.750620px;}
._4{width:5.566497px;}
._5{width:6.727890px;}
._6{width:7.797484px;}
._9{width:9.312638px;}
._a{width:10.546544px;}
._10{width:11.646652px;}
._c{width:12.828919px;}
._d{width:14.177191px;}
._f{width:15.617263px;}
._12{width:18.208830px;}
._13{width:19.961366px;}
._15{width:21.446399px;}
._14{width:22.788059px;}
._b{width:24.687995px;}
._e{width:26.220818px;}
._7{width:28.236424px;}
._1a{width:29.802310px;}
._1e{width:30.856427px;}
._1b{width:32.030998px;}
._1c{width:33.157256px;}
._1d{width:35.275261px;}
._17{width:36.507839px;}
._16{width:38.132180px;}
._19{width:41.895647px;}
._18{width:43.194777px;}
._11{width:55.774358px;}
._22{width:67.347390px;}
.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;}
.y21c{bottom:2.880145px;}
.y3d{bottom:4.320076px;}
.y9f{bottom:4.320077px;}
.y3f{bottom:23.580078px;}
.y39{bottom:26.280084px;}
.y5{bottom:29.700087px;}
.ya0{bottom:73.800000px;}
.y3e{bottom:73.980000px;}
.y4{bottom:78.660000px;}
.y40{bottom:81.720065px;}
.ya1{bottom:81.900066px;}
.y3{bottom:89.100071px;}
.y3a{bottom:89.280071px;}
.y3b{bottom:89.460072px;}
.y3c{bottom:90.360000px;}
.y9e{bottom:91.620000px;}
.y6{bottom:92.880074px;}
.y2{bottom:110.160088px;}
.y1d8{bottom:156.967176px;}
.y38{bottom:158.594527px;}
.y143{bottom:160.097528px;}
.y17a{bottom:161.045379px;}
.y76{bottom:161.267859px;}
.y9d{bottom:163.391411px;}
.yd7{bottom:163.531631px;}
.y21d{bottom:164.880132px;}
.y10d{bottom:165.799483px;}
.y1d7{bottom:173.700139px;}
.y37{bottom:176.588991px;}
.y142{bottom:177.553342px;}
.y204{bottom:178.920000px;}
.y179{bottom:179.039843px;}
.y75{bottom:179.262323px;}
.y9c{bottom:181.211425px;}
.yd6{bottom:181.715845px;}
.y10c{bottom:183.793947px;}
.y1d6{bottom:190.620152px;}
.y36{bottom:194.773206px;}
.y141{bottom:195.199056px;}
.y178{bottom:196.859857px;}
.y74{bottom:197.446538px;}
.y21b{bottom:198.711759px;}
.y9b{bottom:199.031439px;}
.yd5{bottom:199.710310px;}
.y10b{bottom:201.788411px;}
.y20f{bottom:204.660164px;}
.y1d5{bottom:207.713116px;}
.y205{bottom:208.260310px;}
.y35{bottom:212.767670px;}
.y140{bottom:212.844770px;}
.y177{bottom:214.854322px;}
.y73{bottom:215.630753px;}
.y9a{bottom:216.677153px;}
.yd4{bottom:217.894524px;}
.y21a{bottom:218.151775px;}
.y10a{bottom:219.608426px;}
.y20e{bottom:220.140176px;}
.y1d4{bottom:224.640180px;}
.y13f{bottom:230.300584px;}
.y34{bottom:230.951885px;}
.y176{bottom:232.848786px;}
.y72{bottom:233.625217px;}
.y219{bottom:233.635987px;}
.y99{bottom:234.497168px;}
.yd3{bottom:235.888989px;}
.y20d{bottom:235.980189px;}
.y109{bottom:237.602890px;}
.y1d3{bottom:241.380193px;}
.y13e{bottom:247.946298px;}
.y33{bottom:248.946349px;}
.y218{bottom:249.120199px;}
.y175{bottom:250.841751px;}
.y71{bottom:251.809431px;}
.y98{bottom:252.142882px;}
.yd2{bottom:254.073203px;}
.y108{bottom:255.597354px;}
.y1d2{bottom:258.120206px;}
.y20c{bottom:260.100208px;}
.y217{bottom:264.951212px;}
.y13d{bottom:265.593362px;}
.y32{bottom:266.940814px;}
.y174{bottom:268.836215px;}
.y70{bottom:269.803896px;}
.y97{bottom:269.962896px;}
.yd1{bottom:272.257418px;}
.y107{bottom:273.474969px;}
.y1d1{bottom:275.012470px;}
.y20b{bottom:275.760221px;}
.y216{bottom:280.611824px;}
.y13c{bottom:283.239077px;}
.y31{bottom:285.125028px;}
.y173{bottom:286.656229px;}
.y96{bottom:287.608610px;}
.y6f{bottom:287.988110px;}
.yd0{bottom:290.251882px;}
.y106{bottom:291.469433px;}
.y1d0{bottom:291.939534px;}
.y20a{bottom:295.740237px;}
.y215{bottom:296.096037px;}
.y13b{bottom:300.694891px;}
.y30{bottom:303.119492px;}
.y172{bottom:304.650694px;}
.y95{bottom:305.428624px;}
.y6e{bottom:306.172325px;}
.ycf{bottom:308.436097px;}
.y1cf{bottom:308.866597px;}
.y105{bottom:309.289447px;}
.y209{bottom:311.220249px;}
.y214{bottom:316.076053px;}
.y13a{bottom:318.340605px;}
.y2f{bottom:320.939507px;}
.y171{bottom:322.645158px;}
.y94{bottom:323.075688px;}
.y6d{bottom:324.166789px;}
.y1ce{bottom:325.793661px;}
.yce{bottom:326.430561px;}
.y104{bottom:327.283912px;}
.y208{bottom:331.191865px;}
.y139{bottom:335.986319px;}
.y213{bottom:336.056069px;}
.y2e{bottom:336.817469px;}
.y170{bottom:340.639623px;}
.y93{bottom:340.895703px;}
.y6c{bottom:342.351004px;}
.y1cd{bottom:342.899374px;}
.ycd{bottom:344.614776px;}
.y103{bottom:345.278376px;}
.y207{bottom:347.216078px;}
.y212{bottom:351.716081px;}
.y138{bottom:353.442133px;}
.y2d{bottom:354.810434px;}
.y16f{bottom:358.459637px;}
.y92{bottom:358.541417px;}
.y6b{bottom:360.535218px;}
.ycc{bottom:362.798990px;}
.y102{bottom:363.272841px;}
.y211{bottom:367.200294px;}
.y1a3{bottom:369.157045px;}
.y137{bottom:371.087847px;}
.y206{bottom:371.340297px;}
.y2c{bottom:372.996148px;}
.y91{bottom:376.361431px;}
.y16e{bottom:376.454101px;}
.y1cc{bottom:378.328503px;}
.y6a{bottom:378.529683px;}
.ycb{bottom:380.793455px;}
.y101{bottom:381.092855px;}
.y210{bottom:382.680306px;}
.y1a2{bottom:387.341260px;}
.y136{bottom:388.733561px;}
.y2b{bottom:390.989113px;}
.y90{bottom:394.007145px;}
.y16d{bottom:394.448566px;}
.y1cb{bottom:396.512717px;}
.y69{bottom:396.713897px;}
.yca{bottom:398.977669px;}
.y100{bottom:399.087319px;}
.y1a1{bottom:405.525474px;}
.y135{bottom:406.189375px;}
.y2a{bottom:409.173327px;}
.y203{bottom:411.120329px;}
.y8f{bottom:411.827159px;}
.y16c{bottom:412.443030px;}
.y1ca{bottom:414.507182px;}
.y68{bottom:414.708362px;}
.yff{bottom:417.081784px;}
.yc9{bottom:417.161884px;}
.y1a0{bottom:423.519939px;}
.y134{bottom:423.835089px;}
.y202{bottom:425.160340px;}
.y29{bottom:427.167792px;}
.y8e{bottom:429.472874px;}
.y16b{bottom:430.437494px;}
.y67{bottom:432.892576px;}
.yfe{bottom:435.076248px;}
.yc8{bottom:435.156348px;}
.y201{bottom:436.680349px;}
.y1c9{bottom:437.000150px;}
.y133{bottom:441.480803px;}
.y19f{bottom:441.704153px;}
.y28{bottom:445.162256px;}
.y8d{bottom:447.292888px;}
.y16a{bottom:448.257509px;}
.y66{bottom:451.076791px;}
.yfd{bottom:453.070712px;}
.yc7{bottom:453.340563px;}
.y200{bottom:453.594663px;}
.y132{bottom:458.936617px;}
.y1c8{bottom:459.683018px;}
.y19e{bottom:459.698618px;}
.y27{bottom:463.346471px;}
.y8c{bottom:464.938602px;}
.y169{bottom:466.251973px;}
.y65{bottom:469.071255px;}
.y1ff{bottom:470.700377px;}
.yfc{bottom:470.890727px;}
.yc6{bottom:471.335027px;}
.y131{bottom:476.582331px;}
.y1c7{bottom:477.867232px;}
.y19d{bottom:477.882832px;}
.y26{bottom:481.340935px;}
.y168{bottom:484.244937px;}
.y8b{bottom:487.047720px;}
.y64{bottom:487.255470px;}
.y1fe{bottom:487.434690px;}
.yfb{bottom:488.710741px;}
.yc5{bottom:489.519242px;}
.y130{bottom:494.228045px;}
.y19c{bottom:496.067047px;}
.y25{bottom:499.525150px;}
.y1c6{bottom:500.360200px;}
.y167{bottom:502.239402px;}
.y1fd{bottom:504.361753px;}
.y8a{bottom:505.233434px;}
.y63{bottom:505.249934px;}
.yfa{bottom:506.356455px;}
.yc4{bottom:507.703456px;}
.y12f{bottom:511.683859px;}
.y19b{bottom:514.061511px;}
.y24{bottom:517.519614px;}
.y166{bottom:520.059416px;}
.y1fc{bottom:521.094717px;}
.y1c5{bottom:523.043068px;}
.y62{bottom:523.434149px;}
.yf9{bottom:524.176469px;}
.y89{bottom:527.916302px;}
.y12e{bottom:529.329573px;}
.yc3{bottom:530.196424px;}
.y23{bottom:535.514078px;}
.y19a{bottom:536.744379px;}
.y165{bottom:538.053880px;}
.y1fb{bottom:538.201781px;}
.y1c4{bottom:541.227283px;}
.y61{bottom:541.618363px;}
.yf8{bottom:541.822183px;}
.y88{bottom:546.100517px;}
.y12d{bottom:546.975288px;}
.yc2{bottom:548.380639px;}
.y22{bottom:553.698293px;}
.y1fa{bottom:555.128844px;}
.y164{bottom:556.048345px;}
.y1c3{bottom:559.411498px;}
.y199{bottom:559.427248px;}
.y60{bottom:559.612828px;}
.yf7{bottom:559.642198px;}
.y87{bottom:564.094981px;}
.y12c{bottom:564.431102px;}
.yc1{bottom:566.375103px;}
.y21{bottom:571.692757px;}
.y1f9{bottom:571.861807px;}
.y163{bottom:574.042809px;}
.yf6{bottom:577.287912px;}
.y1c2{bottom:577.405962px;}
.y198{bottom:577.421712px;}
.y5f{bottom:577.797042px;}
.y12b{bottom:582.251116px;}
.y86{bottom:582.279196px;}
.y1f8{bottom:588.967521px;}
.yc0{bottom:589.057971px;}
.y20{bottom:589.876972px;}
.y162{bottom:592.037274px;}
.yf5{bottom:595.107926px;}
.y1c1{bottom:595.590176px;}
.y197{bottom:595.605926px;}
.y5e{bottom:595.981257px;}
.y12a{bottom:600.245580px;}
.y85{bottom:600.463410px;}
.y1f7{bottom:605.700485px;}
.ybf{bottom:606.877986px;}
.y1f{bottom:607.871436px;}
.y161{bottom:609.857288px;}
.yf4{bottom:612.753640px;}
.y1c0{bottom:613.584641px;}
.y196{bottom:613.600391px;}
.y5d{bottom:613.975721px;}
.y129{bottom:618.240045px;}
.y84{bottom:618.457875px;}
.y1f6{bottom:622.440498px;}
.ybe{bottom:624.523700px;}
.y1e{bottom:626.055651px;}
.y160{bottom:627.851752px;}
.yf3{bottom:630.573654px;}
.y1bf{bottom:631.768855px;}
.y195{bottom:631.784605px;}
.y5c{bottom:632.159936px;}
.y128{bottom:636.060059px;}
.y83{bottom:636.642089px;}
.y1f5{bottom:639.354811px;}
.ybd{bottom:642.343714px;}
.y1d{bottom:644.050115px;}
.y15f{bottom:645.846217px;}
.yf2{bottom:648.393669px;}
.y1be{bottom:649.953070px;}
.y194{bottom:649.968820px;}
.y5b{bottom:650.154400px;}
.y127{bottom:654.054523px;}
.y82{bottom:654.636554px;}
.y1f4{bottom:656.460525px;}
.ybc{bottom:659.990778px;}
.y1c{bottom:662.044580px;}
.y15e{bottom:663.840681px;}
.yf1{bottom:666.039383px;}
.y1bd{bottom:667.947534px;}
.y193{bottom:667.963284px;}
.y5a{bottom:668.338615px;}
.y126{bottom:672.048988px;}
.y81{bottom:672.820768px;}
.y1f3{bottom:673.209539px;}
.ybb{bottom:677.810792px;}
.y1b{bottom:680.228794px;}
.y15d{bottom:681.486395px;}
.yf0{bottom:683.859397px;}
.y1bc{bottom:686.131749px;}
.y192{bottom:686.147499px;}
.y59{bottom:686.522829px;}
.y125{bottom:690.043452px;}
.y1f2{bottom:690.314652px;}
.y80{bottom:691.004983px;}
.yba{bottom:695.456506px;}
.y1a{bottom:698.223259px;}
.y15c{bottom:699.132109px;}
.yef{bottom:701.505111px;}
.y1bb{bottom:704.126213px;}
.y191{bottom:704.141963px;}
.y58{bottom:704.517294px;}
.y1f1{bottom:707.047616px;}
.y124{bottom:708.037916px;}
.y7f{bottom:708.999447px;}
.yb9{bottom:713.276521px;}
.y19{bottom:716.407473px;}
.y15b{bottom:716.777823px;}
.yee{bottom:719.325125px;}
.y1ba{bottom:722.310428px;}
.y190{bottom:722.326178px;}
.y57{bottom:722.701508px;}
.y1f0{bottom:723.780579px;}
.y123{bottom:725.857931px;}
.y7e{bottom:727.183662px;}
.yb8{bottom:730.922235px;}
.y18{bottom:734.401938px;}
.y15a{bottom:734.423538px;}
.yed{bottom:736.970840px;}
.y1b9{bottom:740.494642px;}
.y18f{bottom:740.510392px;}
.y1ef{bottom:740.701943px;}
.y56{bottom:740.885723px;}
.y122{bottom:743.852395px;}
.y7d{bottom:745.367876px;}
.yb7{bottom:748.742249px;}
.y159{bottom:751.879352px;}
.y17{bottom:752.396402px;}
.yec{bottom:754.790854px;}
.y1ee{bottom:757.807656px;}
.y1b8{bottom:758.489107px;}
.y18e{bottom:758.504857px;}
.y55{bottom:758.880187px;}
.y121{bottom:761.845359px;}
.y7c{bottom:763.362341px;}
.yb6{bottom:766.387963px;}
.y158{bottom:769.525066px;}
.y16{bottom:770.580616px;}
.yeb{bottom:772.437918px;}
.y1ed{bottom:774.540620px;}
.y1b7{bottom:776.673321px;}
.y18d{bottom:776.689071px;}
.y54{bottom:777.064402px;}
.y120{bottom:779.839824px;}
.y7b{bottom:781.546555px;}
.yb5{bottom:784.207977px;}
.y157{bottom:787.170780px;}
.yea{bottom:790.257932px;}
.y1ec{bottom:791.460633px;}
.y1b6{bottom:794.857536px;}
.y18c{bottom:794.873286px;}
.y53{bottom:795.058866px;}
.y15{bottom:796.500637px;}
.y11f{bottom:797.659838px;}
.y7a{bottom:799.541020px;}
.yb4{bottom:801.853691px;}
.y156{bottom:804.626594px;}
.ye9{bottom:807.903646px;}
.y1eb{bottom:808.159697px;}
.y1b5{bottom:812.852000px;}
.y18b{bottom:812.867750px;}
.y52{bottom:813.243081px;}
.y11e{bottom:815.654303px;}
.y79{bottom:817.725234px;}
.yb3{bottom:819.673706px;}
.y155{bottom:822.272308px;}
.y14{bottom:824.580660px;}
.y1ea{bottom:825.086760px;}
.ye8{bottom:825.723661px;}
.y1b4{bottom:831.036215px;}
.y18a{bottom:831.051965px;}
.y51{bottom:831.427295px;}
.y11d{bottom:833.648767px;}
.y78{bottom:835.909449px;}
.yb2{bottom:837.319420px;}
.y154{bottom:839.918022px;}
.y1e9{bottom:842.192474px;}
.ye7{bottom:843.369375px;}
.y13{bottom:845.280676px;}
.y1b3{bottom:849.030679px;}
.y189{bottom:849.046429px;}
.y11c{bottom:851.643231px;}
.y77{bottom:853.903913px;}
.y50{bottom:853.920263px;}
.yb1{bottom:855.139434px;}
.y153{bottom:857.373836px;}
.y1e8{bottom:859.119537px;}
.ye6{bottom:861.189389px;}
.y1b2{bottom:867.214894px;}
.y188{bottom:867.230644px;}
.y11b{bottom:869.637696px;}
.y4f{bottom:871.380277px;}
.yb0{bottom:872.785148px;}
.y152{bottom:875.019550px;}
.y1e7{bottom:875.852501px;}
.y12{bottom:877.320702px;}
.ye5{bottom:878.835103px;}
.y1b1{bottom:885.399108px;}
.y187{bottom:885.414858px;}
.y4e{bottom:885.794359px;}
.y11a{bottom:887.457710px;}
.yaf{bottom:890.605162px;}
.y11{bottom:892.440714px;}
.y151{bottom:892.666614px;}
.y1e6{bottom:892.779564px;}
.ye4{bottom:896.655117px;}
.y1b0{bottom:903.393573px;}
.y186{bottom:903.409323px;}
.y4d{bottom:903.978573px;}
.y119{bottom:905.452174px;}
.y10{bottom:908.100726px;}
.yae{bottom:908.250877px;}
.y1e5{bottom:909.706628px;}
.y150{bottom:910.122428px;}
.ye3{bottom:914.300831px;}
.y1af{bottom:921.577787px;}
.y185{bottom:921.593537px;}
.y4c{bottom:922.162788px;}
.y118{bottom:923.446639px;}
.yf{bottom:924.840740px;}
.yad{bottom:926.070891px;}
.y1e4{bottom:926.633691px;}
.y14f{bottom:927.768142px;}
.ye2{bottom:932.120846px;}
.y1ae{bottom:939.572252px;}
.y184{bottom:939.588002px;}
.y4b{bottom:940.157252px;}
.y117{bottom:941.441103px;}
.y1e3{bottom:943.560755px;}
.yac{bottom:943.890905px;}
.y14e{bottom:945.413856px;}
.ye1{bottom:949.766560px;}
.y1ad{bottom:957.756466px;}
.y183{bottom:957.772216px;}
.y4a{bottom:958.341467px;}
.ye{bottom:958.689167px;}
.y116{bottom:959.261117px;}
.yab{bottom:961.537969px;}
.y14d{bottom:962.869670px;}
.ye0{bottom:967.586574px;}
.y1e2{bottom:969.653726px;}
.y1ac{bottom:975.940681px;}
.y182{bottom:975.956431px;}
.y49{bottom:976.335931px;}
.y115{bottom:977.255582px;}
.yaa{bottom:979.357983px;}
.y14c{bottom:980.515384px;}
.ydf{bottom:985.232288px;}
.yd{bottom:986.220789px;}
.y1e1{bottom:986.580789px;}
.y1ab{bottom:993.935145px;}
.y181{bottom:993.950895px;}
.y48{bottom:994.330395px;}
.y114{bottom:995.248546px;}
.ya9{bottom:997.003698px;}
.y14b{bottom:998.161099px;}
.y1e0{bottom:1003.488053px;}
.yde{bottom:1007.550956px;}
.y1aa{bottom:1012.119360px;}
.y180{bottom:1012.135110px;}
.y47{bottom:1012.514610px;}
.y113{bottom:1013.243011px;}
.ya8{bottom:1014.823712px;}
.y14a{bottom:1015.616912px;}
.y1df{bottom:1020.221016px;}
.yc{bottom:1023.829419px;}
.ydd{bottom:1025.735171px;}
.y1a9{bottom:1030.303574px;}
.y17f{bottom:1030.319324px;}
.y46{bottom:1030.509074px;}
.y112{bottom:1031.237475px;}
.ya7{bottom:1032.469426px;}
.y149{bottom:1033.262627px;}
.y1de{bottom:1037.148080px;}
.yb{bottom:1040.935133px;}
.ydc{bottom:1043.729635px;}
.y1a8{bottom:1048.298039px;}
.y17e{bottom:1048.313789px;}
.y45{bottom:1048.693289px;}
.y111{bottom:1049.057489px;}
.ya6{bottom:1050.289440px;}
.y148{bottom:1050.908341px;}
.y1dd{bottom:1054.253793px;}
.ya{bottom:1058.220847px;}
.ydb{bottom:1066.412503px;}
.y1a7{bottom:1066.482253px;}
.y17d{bottom:1066.498003px;}
.y44{bottom:1066.687753px;}
.y110{bottom:1067.051954px;}
.ya5{bottom:1067.935154px;}
.y147{bottom:1068.554055px;}
.y1dc{bottom:1071.180857px;}
.y9{bottom:1076.940862px;}
.yda{bottom:1084.406968px;}
.y1a6{bottom:1084.476718px;}
.y17c{bottom:1084.492468px;}
.y43{bottom:1084.682218px;}
.y10f{bottom:1085.046418px;}
.ya4{bottom:1085.755169px;}
.y146{bottom:1086.009869px;}
.y1db{bottom:1087.920870px;}
.yd9{bottom:1102.591182px;}
.y1a5{bottom:1102.660932px;}
.y17b{bottom:1102.676682px;}
.y42{bottom:1102.866432px;}
.y10e{bottom:1103.040882px;}
.ya3{bottom:1103.400883px;}
.y145{bottom:1103.655583px;}
.y8{bottom:1104.295183px;}
.y1da{bottom:1104.840884px;}
.yd8{bottom:1120.775397px;}
.y1a4{bottom:1120.845147px;}
.y41{bottom:1120.860897px;}
.ya2{bottom:1121.220897px;}
.y144{bottom:1121.301297px;}
.y7{bottom:1121.400897px;}
.y1d9{bottom:1121.580897px;}
.y1{bottom:1206.360965px;}
.h13{height:29.700000px;}
.h20{height:30.955103px;}
.h15{height:33.494792px;}
.h18{height:35.998596px;}
.h14{height:36.000000px;}
.h11{height:37.494171px;}
.h12{height:38.880000px;}
.h7{height:39.313508px;}
.h2{height:41.493549px;}
.h5{height:42.120000px;}
.h8{height:43.506949px;}
.hf{height:46.406287px;}
.hd{height:46.432654px;}
.he{height:47.566444px;}
.h22{height:48.278359px;}
.h4{height:48.761758px;}
.h3{height:49.992227px;}
.h23{height:50.025978px;}
.h9{height:51.385471px;}
.h1e{height:51.386071px;}
.h1f{height:51.408271px;}
.h1b{height:51.413671px;}
.h1c{height:51.436471px;}
.h1a{height:51.496471px;}
.h1d{height:51.549271px;}
.h6{height:52.418011px;}
.hc{height:52.699261px;}
.h19{height:53.428051px;}
.h17{height:54.480981px;}
.h10{height:55.811295px;}
.h16{height:56.646608px;}
.ha{height:61.658135px;}
.hb{height:85.613623px;}
.h21{height:220.501440px;}
.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;}
.w8{width:478.440000px;}
.w0{width:892.979850px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:8.100270px;}
.xc{left:10.800077px;}
.x5{left:12.240481px;}
.x15{left:14.760490px;}
.xf{left:18.720486px;}
.x18{left:74.337209px;}
.x1a{left:77.040000px;}
.x7{left:84.959453px;}
.x1c{left:87.123595px;}
.xd{left:96.300077px;}
.x9{left:106.201135px;}
.x1b{left:108.360087px;}
.x17{left:116.829588px;}
.xa{left:169.911601px;}
.x1e{left:329.580000px;}
.x1d{left:337.680270px;}
.xb{left:436.142464px;}
.x2{left:437.400785px;}
.xe{left:439.560000px;}
.x13{left:446.400792px;}
.x11{left:457.189251px;}
.x12{left:478.431233px;}
.x8{left:500.400940px;}
.x19{left:572.940458px;}
.x4{left:589.140000px;}
.x14{left:597.420000px;}
.x6{left:641.880514px;}
.x10{left:643.500515px;}
.x16{left:652.680522px;}
.x1{left:705.780565px;}
.x3{left:780.841060px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls38{letter-spacing:-2.196482pt;}
.ls2b{letter-spacing:-2.140162pt;}
.ls33{letter-spacing:-1.858561pt;}
.ls32{letter-spacing:-1.576961pt;}
.ls28{letter-spacing:-1.520641pt;}
.ls26{letter-spacing:-1.239041pt;}
.ls42{letter-spacing:-1.013761pt;}
.ls45{letter-spacing:-0.956161pt;}
.ls29{letter-spacing:-0.901121pt;}
.ls19{letter-spacing:-0.844801pt;}
.ls1a{letter-spacing:-0.732161pt;}
.ls6c{letter-spacing:-0.720001pt;}
.ls1b{letter-spacing:-0.675841pt;}
.ls24{letter-spacing:-0.619520pt;}
.ls15{letter-spacing:-0.528000pt;}
.ls23{letter-spacing:-0.506880pt;}
.ls16{letter-spacing:-0.432000pt;}
.ls43{letter-spacing:-0.424960pt;}
.ls27{letter-spacing:-0.394240pt;}
.ls25{letter-spacing:-0.337920pt;}
.ls2a{letter-spacing:-0.281600pt;}
.ls11{letter-spacing:-0.265600pt;}
.ls44{letter-spacing:-0.212480pt;}
.ls6d{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.168960pt;}
.lsd{letter-spacing:-0.159360pt;}
.lsf{letter-spacing:-0.149760pt;}
.ls14{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.106240pt;}
.ls18{letter-spacing:-0.056320pt;}
.ls10{letter-spacing:-0.053120pt;}
.ls17{letter-spacing:-0.048000pt;}
.lsc{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000267pt;}
.ls0{letter-spacing:0.001013pt;}
.ls2{letter-spacing:0.017653pt;}
.ls65{letter-spacing:0.048000pt;}
.ls4f{letter-spacing:0.052107pt;}
.ls2c{letter-spacing:0.056107pt;}
.ls63{letter-spacing:0.056213pt;}
.ls8{letter-spacing:0.096000pt;}
.ls66{letter-spacing:0.110987pt;}
.ls60{letter-spacing:0.117653pt;}
.ls13{letter-spacing:0.128000pt;}
.ls6b{letter-spacing:0.144000pt;}
.ls12{letter-spacing:0.170240pt;}
.ls57{letter-spacing:0.172640pt;}
.ls7{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.211040pt;}
.ls69{letter-spacing:0.212480pt;}
.ls5{letter-spacing:0.216054pt;}
.ls5e{letter-spacing:0.236054pt;}
.ls67{letter-spacing:0.238987pt;}
.ls3c{letter-spacing:0.241067pt;}
.ls4c{letter-spacing:0.246027pt;}
.ls6{letter-spacing:0.251040pt;}
.ls51{letter-spacing:0.256054pt;}
.ls49{letter-spacing:0.266027pt;}
.ls48{letter-spacing:0.271040pt;}
.ls3e{letter-spacing:0.276054pt;}
.ls4a{letter-spacing:0.291040pt;}
.ls47{letter-spacing:0.296054pt;}
.ls3d{letter-spacing:0.301067pt;}
.ls68{letter-spacing:0.318720pt;}
.ls4d{letter-spacing:0.336054pt;}
.ls41{letter-spacing:0.341067pt;}
.ls64{letter-spacing:0.351040pt;}
.ls4e{letter-spacing:0.371040pt;}
.ls62{letter-spacing:0.396054pt;}
.ls58{letter-spacing:0.411040pt;}
.ls3{letter-spacing:0.478400pt;}
.ls61{letter-spacing:0.479200pt;}
.ls46{letter-spacing:0.531200pt;}
.ls40{letter-spacing:0.582667pt;}
.ls6a{letter-spacing:0.584320pt;}
.ls50{letter-spacing:0.851041pt;}
.ls3f{letter-spacing:0.936054pt;}
.ls52{letter-spacing:0.941067pt;}
.ls4b{letter-spacing:1.026027pt;}
.lsa{letter-spacing:1.159041pt;}
.ls9{letter-spacing:1.239041pt;}
.ls1f{letter-spacing:1.633068pt;}
.ls5d{letter-spacing:1.681068pt;}
.ls20{letter-spacing:1.688055pt;}
.ls3a{letter-spacing:2.253068pt;}
.ls5b{letter-spacing:2.790082pt;}
.ls56{letter-spacing:2.805122pt;}
.ls5f{letter-spacing:3.500109pt;}
.ls1e{letter-spacing:3.548056pt;}
.ls55{letter-spacing:3.772643pt;}
.ls53{letter-spacing:3.842670pt;}
.ls2e{letter-spacing:4.168057pt;}
.ls54{letter-spacing:4.407630pt;}
.ls34{letter-spacing:4.843044pt;}
.ls22{letter-spacing:4.848057pt;}
.ls59{letter-spacing:5.742671pt;}
.lsb{letter-spacing:5.749071pt;}
.ls2f{letter-spacing:6.083045pt;}
.ls2d{letter-spacing:6.758032pt;}
.ls21{letter-spacing:7.378033pt;}
.ls1d{letter-spacing:7.533073pt;}
.ls31{letter-spacing:8.098033pt;}
.ls5c{letter-spacing:8.287633pt;}
.ls35{letter-spacing:9.293074pt;}
.ls36{letter-spacing:10.588062pt;}
.ls37{letter-spacing:11.883050pt;}
.ls3b{letter-spacing:12.698037pt;}
.ls39{letter-spacing:13.123050pt;}
.ls30{letter-spacing:24.048073pt;}
.ls5a{letter-spacing:24.912660pt;}
.ws1d{word-spacing:-42.240034pt;}
.ws1{word-spacing:-39.840032pt;}
.ws7{word-spacing:-36.000029pt;}
.ws4{word-spacing:-23.833619pt;}
.ws1e{word-spacing:-15.656973pt;}
.ws23{word-spacing:-15.375372pt;}
.ws2a{word-spacing:-15.298572pt;}
.ws2b{word-spacing:-15.086092pt;}
.ws1c{word-spacing:-15.037452pt;}
.ws24{word-spacing:-14.924812pt;}
.ws1b{word-spacing:-14.812172pt;}
.ws5{word-spacing:-14.784012pt;}
.ws2{word-spacing:-14.767372pt;}
.ws25{word-spacing:-14.755852pt;}
.ws28{word-spacing:-14.714252pt;}
.ws0{word-spacing:-14.661132pt;}
.ws26{word-spacing:-14.643212pt;}
.ws27{word-spacing:-14.554892pt;}
.ws3{word-spacing:-14.501772pt;}
.ws6{word-spacing:-14.464012pt;}
.ws22{word-spacing:-14.136331pt;}
.ws21{word-spacing:-14.080011pt;}
.ws29{word-spacing:-13.811211pt;}
.ws8{word-spacing:-13.536011pt;}
.ws1f{word-spacing:-13.516811pt;}
.ws2d{word-spacing:-13.488011pt;}
.ws2c{word-spacing:-13.440011pt;}
.wsa{word-spacing:-13.344011pt;}
.ws2f{word-spacing:-13.152011pt;}
.ws9{word-spacing:-12.912010pt;}
.wsd{word-spacing:-12.840970pt;}
.ws30{word-spacing:-12.816010pt;}
.wsf{word-spacing:-12.784650pt;}
.ws10{word-spacing:-12.672010pt;}
.ws2e{word-spacing:-12.624010pt;}
.wse{word-spacing:-12.108810pt;}
.wsc{word-spacing:-11.996170pt;}
.wsb{word-spacing:-10.944009pt;}
.ws15{word-spacing:-0.720001pt;}
.ws20{word-spacing:-0.619520pt;}
.ws3c{word-spacing:-0.144000pt;}
.ws13{word-spacing:-0.096000pt;}
.ws12{word-spacing:-0.048000pt;}
.ws11{word-spacing:0.000000pt;}
.ws19{word-spacing:0.056320pt;}
.ws18{word-spacing:0.128000pt;}
.ws16{word-spacing:0.192000pt;}
.ws17{word-spacing:0.256000pt;}
.ws14{word-spacing:0.624000pt;}
.ws31{word-spacing:0.690561pt;}
.ws34{word-spacing:2.656002pt;}
.ws3a{word-spacing:3.293443pt;}
.ws38{word-spacing:4.568324pt;}
.ws1a{word-spacing:5.125124pt;}
.ws3b{word-spacing:5.205764pt;}
.ws39{word-spacing:7.118086pt;}
.ws37{word-spacing:8.392967pt;}
.ws32{word-spacing:14.129931pt;}
.ws33{word-spacing:14.767372pt;}
.ws36{word-spacing:25.019540pt;}
.ws35{word-spacing:25.232020pt;}
._23{margin-left:-24.388929pt;}
._20{margin-left:-12.035397pt;}
._21{margin-left:-10.713019pt;}
._8{margin-left:-4.859359pt;}
._24{margin-left:-2.967320pt;}
._1f{margin-left:-2.077355pt;}
._1{margin-left:-1.178241pt;}
._0{width:1.114241pt;}
._2{width:2.058722pt;}
._3{width:3.333885pt;}
._4{width:4.947997pt;}
._5{width:5.980347pt;}
._6{width:6.931097pt;}
._9{width:8.277900pt;}
._a{width:9.374706pt;}
._10{width:10.352579pt;}
._c{width:11.403483pt;}
._d{width:12.601948pt;}
._f{width:13.882012pt;}
._12{width:16.185627pt;}
._13{width:17.743436pt;}
._15{width:19.063465pt;}
._14{width:20.256053pt;}
._b{width:21.944885pt;}
._e{width:23.307394pt;}
._7{width:25.099043pt;}
._1a{width:26.490942pt;}
._1e{width:27.427935pt;}
._1b{width:28.471998pt;}
._1c{width:29.473116pt;}
._1d{width:31.355788pt;}
._17{width:32.451412pt;}
._16{width:33.895272pt;}
._19{width:37.240575pt;}
._18{width:38.395357pt;}
._11{width:49.577207pt;}
._22{width:59.864346pt;}
.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;}
.y21c{bottom:2.560129pt;}
.y3d{bottom:3.840067pt;}
.y9f{bottom:3.840068pt;}
.y3f{bottom:20.960069pt;}
.y39{bottom:23.360075pt;}
.y5{bottom:26.400077pt;}
.ya0{bottom:65.600000pt;}
.y3e{bottom:65.760000pt;}
.y4{bottom:69.920000pt;}
.y40{bottom:72.640058pt;}
.ya1{bottom:72.800058pt;}
.y3{bottom:79.200063pt;}
.y3a{bottom:79.360063pt;}
.y3b{bottom:79.520064pt;}
.y3c{bottom:80.320000pt;}
.y9e{bottom:81.440000pt;}
.y6{bottom:82.560066pt;}
.y2{bottom:97.920078pt;}
.y1d8{bottom:139.526378pt;}
.y38{bottom:140.972913pt;}
.y143{bottom:142.308914pt;}
.y17a{bottom:143.151448pt;}
.y76{bottom:143.349208pt;}
.y9d{bottom:145.236810pt;}
.yd7{bottom:145.361450pt;}
.y21d{bottom:146.560117pt;}
.y10d{bottom:147.377318pt;}
.y1d7{bottom:154.400124pt;}
.y37{bottom:156.967992pt;}
.y142{bottom:157.825193pt;}
.y204{bottom:159.040000pt;}
.y179{bottom:159.146527pt;}
.y75{bottom:159.344287pt;}
.y9c{bottom:161.076822pt;}
.yd6{bottom:161.525196pt;}
.y10c{bottom:163.372397pt;}
.y1d6{bottom:169.440136pt;}
.y36{bottom:173.131739pt;}
.y141{bottom:173.510272pt;}
.y178{bottom:174.986540pt;}
.y74{bottom:175.508034pt;}
.y21b{bottom:176.632675pt;}
.y9b{bottom:176.916835pt;}
.yd5{bottom:177.520275pt;}
.y10b{bottom:179.367477pt;}
.y20f{bottom:181.920146pt;}
.y1d5{bottom:184.633881pt;}
.y205{bottom:185.120275pt;}
.y35{bottom:189.126818pt;}
.y140{bottom:189.195351pt;}
.y177{bottom:190.981619pt;}
.y73{bottom:191.671780pt;}
.y9a{bottom:192.601914pt;}
.yd4{bottom:193.684022pt;}
.y21a{bottom:193.912688pt;}
.y10a{bottom:195.207489pt;}
.y20e{bottom:195.680157pt;}
.y1d4{bottom:199.680160pt;}
.y13f{bottom:204.711630pt;}
.y34{bottom:205.290564pt;}
.y176{bottom:206.976699pt;}
.y72{bottom:207.666859pt;}
.y219{bottom:207.676433pt;}
.y99{bottom:208.441927pt;}
.yd3{bottom:209.679101pt;}
.y20d{bottom:209.760168pt;}
.y109{bottom:211.202569pt;}
.y1d3{bottom:214.560172pt;}
.y13e{bottom:220.396710pt;}
.y33{bottom:221.285644pt;}
.y218{bottom:221.440177pt;}
.y175{bottom:222.970445pt;}
.y71{bottom:223.830606pt;}
.y98{bottom:224.127006pt;}
.yd2{bottom:225.842847pt;}
.y108{bottom:227.197648pt;}
.y1d2{bottom:229.440184pt;}
.y20c{bottom:231.200185pt;}
.y217{bottom:235.512188pt;}
.y13d{bottom:236.082989pt;}
.y32{bottom:237.280723pt;}
.y174{bottom:238.965525pt;}
.y70{bottom:239.825685pt;}
.y97{bottom:239.967019pt;}
.yd1{bottom:242.006594pt;}
.y107{bottom:243.088861pt;}
.y1d1{bottom:244.455529pt;}
.y20b{bottom:245.120196pt;}
.y216{bottom:249.432733pt;}
.y13c{bottom:251.768068pt;}
.y31{bottom:253.444469pt;}
.y173{bottom:254.805537pt;}
.y96{bottom:255.652098pt;}
.y6f{bottom:255.989431pt;}
.yd0{bottom:258.001673pt;}
.y106{bottom:259.083941pt;}
.y1d0{bottom:259.501808pt;}
.y20a{bottom:262.880210pt;}
.y215{bottom:263.196477pt;}
.y13b{bottom:267.284347pt;}
.y30{bottom:269.439549pt;}
.y172{bottom:270.800617pt;}
.y95{bottom:271.492111pt;}
.y6e{bottom:272.153178pt;}
.ycf{bottom:274.165419pt;}
.y1cf{bottom:274.548086pt;}
.y105{bottom:274.923953pt;}
.y209{bottom:276.640221pt;}
.y214{bottom:280.956491pt;}
.y13a{bottom:282.969426pt;}
.y2f{bottom:285.279562pt;}
.y171{bottom:286.795696pt;}
.y94{bottom:287.178390pt;}
.y6d{bottom:288.148257pt;}
.y1ce{bottom:289.594365pt;}
.yce{bottom:290.160499pt;}
.y104{bottom:290.919033pt;}
.y208{bottom:294.392769pt;}
.y139{bottom:298.654506pt;}
.y213{bottom:298.716506pt;}
.y2e{bottom:299.393306pt;}
.y170{bottom:302.790776pt;}
.y93{bottom:303.018402pt;}
.y6c{bottom:304.312003pt;}
.y1cd{bottom:304.799444pt;}
.ycd{bottom:306.324245pt;}
.y103{bottom:306.914112pt;}
.y207{bottom:308.636514pt;}
.y212{bottom:312.636517pt;}
.y138{bottom:314.170785pt;}
.y2d{bottom:315.387052pt;}
.y16f{bottom:318.630788pt;}
.y92{bottom:318.703482pt;}
.y6b{bottom:320.475750pt;}
.ycc{bottom:322.487991pt;}
.y102{bottom:322.909192pt;}
.y211{bottom:326.400261pt;}
.y1a3{bottom:328.139596pt;}
.y137{bottom:329.855864pt;}
.y206{bottom:330.080264pt;}
.y2c{bottom:331.552132pt;}
.y91{bottom:334.543494pt;}
.y16e{bottom:334.625868pt;}
.y1cc{bottom:336.292002pt;}
.y6a{bottom:336.470829pt;}
.ycb{bottom:338.483071pt;}
.y101{bottom:338.749204pt;}
.y210{bottom:340.160272pt;}
.y1a2{bottom:344.303342pt;}
.y136{bottom:345.540943pt;}
.y2b{bottom:347.545878pt;}
.y90{bottom:350.228574pt;}
.y16d{bottom:350.620947pt;}
.y1cb{bottom:352.455749pt;}
.y69{bottom:352.634575pt;}
.yca{bottom:354.646817pt;}
.y100{bottom:354.744284pt;}
.y1a1{bottom:360.467088pt;}
.y135{bottom:361.057222pt;}
.y2a{bottom:363.709624pt;}
.y203{bottom:365.440292pt;}
.y8f{bottom:366.068586pt;}
.y16c{bottom:366.616027pt;}
.y1ca{bottom:368.450828pt;}
.y68{bottom:368.629655pt;}
.yff{bottom:370.739363pt;}
.yc9{bottom:370.810563pt;}
.y1a0{bottom:376.462168pt;}
.y134{bottom:376.742301pt;}
.y202{bottom:377.920302pt;}
.y29{bottom:379.704704pt;}
.y8e{bottom:381.753665pt;}
.y16b{bottom:382.611106pt;}
.y67{bottom:384.793401pt;}
.yfe{bottom:386.734443pt;}
.yc8{bottom:386.805643pt;}
.y201{bottom:388.160311pt;}
.y1c9{bottom:388.444577pt;}
.y133{bottom:392.427381pt;}
.y19f{bottom:392.625914pt;}
.y28{bottom:395.699783pt;}
.y8d{bottom:397.593678pt;}
.y16a{bottom:398.451119pt;}
.y66{bottom:400.957147pt;}
.yfd{bottom:402.729522pt;}
.yc7{bottom:402.969389pt;}
.y200{bottom:403.195256pt;}
.y132{bottom:407.943660pt;}
.y1c8{bottom:408.607127pt;}
.y19e{bottom:408.620994pt;}
.y27{bottom:411.863529pt;}
.y8c{bottom:413.278757pt;}
.y169{bottom:414.446198pt;}
.y65{bottom:416.952227pt;}
.y1ff{bottom:418.400335pt;}
.yfc{bottom:418.569535pt;}
.yc6{bottom:418.964469pt;}
.y131{bottom:423.628739pt;}
.y1c7{bottom:424.770873pt;}
.y19d{bottom:424.784740pt;}
.y26{bottom:427.858609pt;}
.y168{bottom:430.439944pt;}
.y8b{bottom:432.931306pt;}
.y64{bottom:433.115973pt;}
.y1fe{bottom:433.275280pt;}
.yfb{bottom:434.409548pt;}
.yc5{bottom:435.128215pt;}
.y130{bottom:439.313818pt;}
.y19c{bottom:440.948486pt;}
.y25{bottom:444.022355pt;}
.y1c6{bottom:444.764622pt;}
.y167{bottom:446.435024pt;}
.y1fd{bottom:448.321559pt;}
.y8a{bottom:449.096386pt;}
.y63{bottom:449.111053pt;}
.yfa{bottom:450.094627pt;}
.yc4{bottom:451.291961pt;}
.y12f{bottom:454.830097pt;}
.y19b{bottom:456.943566pt;}
.y24{bottom:460.017435pt;}
.y166{bottom:462.275036pt;}
.y1fc{bottom:463.195304pt;}
.y1c5{bottom:464.927172pt;}
.y62{bottom:465.274799pt;}
.yf9{bottom:465.934639pt;}
.y89{bottom:469.258935pt;}
.y12e{bottom:470.515176pt;}
.yc3{bottom:471.285710pt;}
.y23{bottom:476.012514pt;}
.y19a{bottom:477.106115pt;}
.y165{bottom:478.270116pt;}
.y1fb{bottom:478.401583pt;}
.y1c4{bottom:481.090918pt;}
.y61{bottom:481.438545pt;}
.yf8{bottom:481.619719pt;}
.y88{bottom:485.422682pt;}
.y12d{bottom:486.200256pt;}
.yc2{bottom:487.449457pt;}
.y22{bottom:492.176260pt;}
.y1fa{bottom:493.447861pt;}
.y164{bottom:494.265195pt;}
.y1c3{bottom:497.254664pt;}
.y199{bottom:497.268664pt;}
.y60{bottom:497.433625pt;}
.yf7{bottom:497.459731pt;}
.y87{bottom:501.417761pt;}
.y12c{bottom:501.716535pt;}
.yc1{bottom:503.444536pt;}
.y21{bottom:508.171340pt;}
.y1f9{bottom:508.321607pt;}
.y163{bottom:510.260275pt;}
.yf6{bottom:513.144811pt;}
.y1c2{bottom:513.249744pt;}
.y198{bottom:513.263744pt;}
.y5f{bottom:513.597371pt;}
.y12b{bottom:517.556547pt;}
.y86{bottom:517.581507pt;}
.y1f8{bottom:523.526685pt;}
.yc0{bottom:523.607086pt;}
.y20{bottom:524.335086pt;}
.y162{bottom:526.255354pt;}
.yf5{bottom:528.984823pt;}
.y1c1{bottom:529.413490pt;}
.y197{bottom:529.427490pt;}
.y5e{bottom:529.761117pt;}
.y12a{bottom:533.551627pt;}
.y85{bottom:533.745254pt;}
.y1f7{bottom:538.400431pt;}
.ybf{bottom:539.447098pt;}
.y1f{bottom:540.330166pt;}
.y161{bottom:542.095367pt;}
.yf4{bottom:544.669902pt;}
.y1c0{bottom:545.408570pt;}
.y196{bottom:545.422570pt;}
.y5d{bottom:545.756197pt;}
.y129{bottom:549.546706pt;}
.y84{bottom:549.740333pt;}
.y1f6{bottom:553.280443pt;}
.ybe{bottom:555.132177pt;}
.y1e{bottom:556.493912pt;}
.y160{bottom:558.090446pt;}
.yf3{bottom:560.509915pt;}
.y1bf{bottom:561.572316pt;}
.y195{bottom:561.586316pt;}
.y5c{bottom:561.919943pt;}
.y128{bottom:565.386719pt;}
.y83{bottom:565.904079pt;}
.y1f5{bottom:568.315388pt;}
.ybd{bottom:570.972190pt;}
.y1d{bottom:572.488991pt;}
.y15f{bottom:574.085526pt;}
.yf2{bottom:576.349928pt;}
.y1be{bottom:577.736062pt;}
.y194{bottom:577.750062pt;}
.y5b{bottom:577.915022pt;}
.y127{bottom:581.381798pt;}
.y82{bottom:581.899159pt;}
.y1f4{bottom:583.520467pt;}
.ybc{bottom:586.658469pt;}
.y1c{bottom:588.484071pt;}
.y15e{bottom:590.080605pt;}
.yf1{bottom:592.035007pt;}
.y1bd{bottom:593.731142pt;}
.y193{bottom:593.745142pt;}
.y5a{bottom:594.078769pt;}
.y126{bottom:597.376878pt;}
.y81{bottom:598.062905pt;}
.y1f3{bottom:598.408479pt;}
.ybb{bottom:602.498482pt;}
.y1b{bottom:604.647817pt;}
.y15d{bottom:605.765685pt;}
.yf0{bottom:607.875020pt;}
.y1bc{bottom:609.894888pt;}
.y192{bottom:609.908888pt;}
.y59{bottom:610.242515pt;}
.y125{bottom:613.371957pt;}
.y1f2{bottom:613.613024pt;}
.y80{bottom:614.226651pt;}
.yba{bottom:618.183561pt;}
.y1a{bottom:620.642897pt;}
.y15c{bottom:621.450764pt;}
.yef{bottom:623.560099pt;}
.y1bb{bottom:625.889967pt;}
.y191{bottom:625.903967pt;}
.y58{bottom:626.237594pt;}
.y1f1{bottom:628.486769pt;}
.y124{bottom:629.367037pt;}
.y7f{bottom:630.221731pt;}
.yb9{bottom:634.023574pt;}
.y19{bottom:636.806643pt;}
.y15b{bottom:637.135843pt;}
.yee{bottom:639.400112pt;}
.y1ba{bottom:642.053714pt;}
.y190{bottom:642.067714pt;}
.y57{bottom:642.401341pt;}
.y1f0{bottom:643.360515pt;}
.y123{bottom:645.207049pt;}
.y7e{bottom:646.385477pt;}
.yb8{bottom:649.708653pt;}
.y18{bottom:652.801722pt;}
.y15a{bottom:652.820922pt;}
.yed{bottom:655.085191pt;}
.y1b9{bottom:658.217460pt;}
.y18f{bottom:658.231460pt;}
.y1ef{bottom:658.401727pt;}
.y56{bottom:658.565087pt;}
.y122{bottom:661.202129pt;}
.y7d{bottom:662.549223pt;}
.yb7{bottom:665.548666pt;}
.y159{bottom:668.337201pt;}
.y17{bottom:668.796802pt;}
.yec{bottom:670.925203pt;}
.y1ee{bottom:673.606806pt;}
.y1b8{bottom:674.212539pt;}
.y18e{bottom:674.226539pt;}
.y55{bottom:674.560166pt;}
.y121{bottom:677.195875pt;}
.y7c{bottom:678.544303pt;}
.yb6{bottom:681.233745pt;}
.y158{bottom:684.022281pt;}
.y16{bottom:684.960548pt;}
.yeb{bottom:686.611483pt;}
.y1ed{bottom:688.480551pt;}
.y1b7{bottom:690.376286pt;}
.y18d{bottom:690.390286pt;}
.y54{bottom:690.723913pt;}
.y120{bottom:693.190955pt;}
.y7b{bottom:694.708049pt;}
.yb5{bottom:697.073758pt;}
.y157{bottom:699.707360pt;}
.yea{bottom:702.451495pt;}
.y1ec{bottom:703.520563pt;}
.y1b6{bottom:706.540032pt;}
.y18c{bottom:706.554032pt;}
.y53{bottom:706.718992pt;}
.y15{bottom:708.000566pt;}
.y11f{bottom:709.030967pt;}
.y7a{bottom:710.703129pt;}
.yb4{bottom:712.758837pt;}
.y156{bottom:715.223639pt;}
.ye9{bottom:718.136575pt;}
.y1eb{bottom:718.364175pt;}
.y1b5{bottom:722.535111pt;}
.y18b{bottom:722.549111pt;}
.y52{bottom:722.882738pt;}
.y11e{bottom:725.026047pt;}
.y79{bottom:726.866875pt;}
.yb3{bottom:728.598850pt;}
.y155{bottom:730.908718pt;}
.y14{bottom:732.960586pt;}
.y1ea{bottom:733.410453pt;}
.ye8{bottom:733.976587pt;}
.y1b4{bottom:738.698858pt;}
.y18a{bottom:738.712858pt;}
.y51{bottom:739.046485pt;}
.y11d{bottom:741.021126pt;}
.y78{bottom:743.030621pt;}
.yb2{bottom:744.283929pt;}
.y154{bottom:746.593797pt;}
.y1e9{bottom:748.615532pt;}
.ye7{bottom:749.661666pt;}
.y13{bottom:751.360601pt;}
.y1b3{bottom:754.693937pt;}
.y189{bottom:754.707937pt;}
.y11c{bottom:757.016206pt;}
.y77{bottom:759.025701pt;}
.y50{bottom:759.040234pt;}
.yb1{bottom:760.123941pt;}
.y153{bottom:762.110076pt;}
.y1e8{bottom:763.661811pt;}
.ye6{bottom:765.501679pt;}
.y1b2{bottom:770.857683pt;}
.y188{bottom:770.871683pt;}
.y11b{bottom:773.011285pt;}
.y4f{bottom:774.560246pt;}
.yb0{bottom:775.809021pt;}
.y152{bottom:777.795156pt;}
.y1e7{bottom:778.535556pt;}
.y12{bottom:779.840624pt;}
.ye5{bottom:781.186758pt;}
.y1b1{bottom:787.021430pt;}
.y187{bottom:787.035430pt;}
.y4e{bottom:787.372763pt;}
.y11a{bottom:788.851298pt;}
.yaf{bottom:791.649033pt;}
.y11{bottom:793.280635pt;}
.y151{bottom:793.481435pt;}
.y1e6{bottom:793.581835pt;}
.ye4{bottom:797.026771pt;}
.y1b0{bottom:803.016509pt;}
.y186{bottom:803.030509pt;}
.y4d{bottom:803.536509pt;}
.y119{bottom:804.846377pt;}
.y10{bottom:807.200646pt;}
.yae{bottom:807.334113pt;}
.y1e5{bottom:808.628114pt;}
.y150{bottom:808.997714pt;}
.ye3{bottom:812.711850pt;}
.y1af{bottom:819.180255pt;}
.y185{bottom:819.194255pt;}
.y4c{bottom:819.700256pt;}
.y118{bottom:820.841457pt;}
.yf{bottom:822.080658pt;}
.yad{bottom:823.174125pt;}
.y1e4{bottom:823.674392pt;}
.y14f{bottom:824.682793pt;}
.ye2{bottom:828.551863pt;}
.y1ae{bottom:835.175335pt;}
.y184{bottom:835.189335pt;}
.y4b{bottom:835.695335pt;}
.y117{bottom:836.836536pt;}
.y1e3{bottom:838.720671pt;}
.yac{bottom:839.014138pt;}
.y14e{bottom:840.367872pt;}
.ye1{bottom:844.236942pt;}
.y1ad{bottom:851.339081pt;}
.y183{bottom:851.353081pt;}
.y4a{bottom:851.859081pt;}
.ye{bottom:852.168148pt;}
.y116{bottom:852.676549pt;}
.yab{bottom:854.700417pt;}
.y14d{bottom:855.884151pt;}
.ye0{bottom:860.076955pt;}
.y1e2{bottom:861.914423pt;}
.y1ac{bottom:867.502827pt;}
.y182{bottom:867.516827pt;}
.y49{bottom:867.854161pt;}
.y115{bottom:868.671628pt;}
.yaa{bottom:870.540430pt;}
.y14c{bottom:871.569231pt;}
.ydf{bottom:875.762034pt;}
.yd{bottom:876.640701pt;}
.y1e1{bottom:876.960702pt;}
.y1ab{bottom:883.497907pt;}
.y181{bottom:883.511907pt;}
.y48{bottom:883.849240pt;}
.y114{bottom:884.665374pt;}
.ya9{bottom:886.225509pt;}
.y14b{bottom:887.254310pt;}
.y1e0{bottom:891.989380pt;}
.yde{bottom:895.600850pt;}
.y1aa{bottom:899.661653pt;}
.y180{bottom:899.675653pt;}
.y47{bottom:900.012987pt;}
.y113{bottom:900.660454pt;}
.ya8{bottom:902.065522pt;}
.y14a{bottom:902.770589pt;}
.y1df{bottom:906.863125pt;}
.yc{bottom:910.070595pt;}
.ydd{bottom:911.764596pt;}
.y1a9{bottom:915.825399pt;}
.y17f{bottom:915.839399pt;}
.y46{bottom:916.008066pt;}
.y112{bottom:916.655533pt;}
.ya7{bottom:917.750601pt;}
.y149{bottom:918.455668pt;}
.y1de{bottom:921.909404pt;}
.yb{bottom:925.275674pt;}
.ydc{bottom:927.759676pt;}
.y1a8{bottom:931.820479pt;}
.y17e{bottom:931.834479pt;}
.y45{bottom:932.171812pt;}
.y111{bottom:932.495546pt;}
.ya6{bottom:933.590614pt;}
.y148{bottom:934.140747pt;}
.y1dd{bottom:937.114483pt;}
.ya{bottom:940.640753pt;}
.ydb{bottom:947.922225pt;}
.y1a7{bottom:947.984225pt;}
.y17d{bottom:947.998225pt;}
.y44{bottom:948.166892pt;}
.y110{bottom:948.490625pt;}
.ya5{bottom:949.275693pt;}
.y147{bottom:949.825827pt;}
.y1dc{bottom:952.160762pt;}
.y9{bottom:957.280766pt;}
.yda{bottom:963.917304pt;}
.y1a6{bottom:963.979305pt;}
.y17c{bottom:963.993305pt;}
.y43{bottom:964.161971pt;}
.y10f{bottom:964.485705pt;}
.ya4{bottom:965.115705pt;}
.y146{bottom:965.342106pt;}
.y1db{bottom:967.040774pt;}
.yd9{bottom:980.081051pt;}
.y1a5{bottom:980.143051pt;}
.y17b{bottom:980.157051pt;}
.y42{bottom:980.325718pt;}
.y10e{bottom:980.480784pt;}
.ya3{bottom:980.800785pt;}
.y145{bottom:981.027185pt;}
.y8{bottom:981.595719pt;}
.y1da{bottom:982.080786pt;}
.yd8{bottom:996.244797pt;}
.y1a4{bottom:996.306797pt;}
.y41{bottom:996.320797pt;}
.ya2{bottom:996.640797pt;}
.y144{bottom:996.712264pt;}
.y7{bottom:996.800797pt;}
.y1d9{bottom:996.960798pt;}
.y1{bottom:1072.320858pt;}
.h13{height:26.400000pt;}
.h20{height:27.515647pt;}
.h15{height:29.773149pt;}
.h18{height:31.998752pt;}
.h14{height:32.000000pt;}
.h11{height:33.328152pt;}
.h12{height:34.560000pt;}
.h7{height:34.945340pt;}
.h2{height:36.883155pt;}
.h5{height:37.440000pt;}
.h8{height:38.672843pt;}
.hf{height:41.250033pt;}
.hd{height:41.273471pt;}
.he{height:42.281284pt;}
.h22{height:42.914097pt;}
.h4{height:43.343785pt;}
.h3{height:44.437536pt;}
.h23{height:44.467536pt;}
.h9{height:45.675974pt;}
.h1e{height:45.676507pt;}
.h1f{height:45.696241pt;}
.h1b{height:45.701041pt;}
.h1c{height:45.721307pt;}
.h1a{height:45.774641pt;}
.h1d{height:45.821574pt;}
.h6{height:46.593787pt;}
.hc{height:46.843787pt;}
.h19{height:47.491600pt;}
.h17{height:48.427539pt;}
.h10{height:49.610040pt;}
.h16{height:50.352540pt;}
.ha{height:54.807231pt;}
.hb{height:76.100998pt;}
.h21{height:196.001280pt;}
.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;}
.w8{width:425.280000pt;}
.w0{width:793.759867pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:7.200240pt;}
.xc{left:9.600068pt;}
.x5{left:10.880428pt;}
.x15{left:13.120435pt;}
.xf{left:16.640432pt;}
.x18{left:66.077520pt;}
.x1a{left:68.480000pt;}
.x7{left:75.519514pt;}
.x1c{left:77.443195pt;}
.xd{left:85.600068pt;}
.x9{left:94.401009pt;}
.x1b{left:96.320077pt;}
.x17{left:103.848523pt;}
.xa{left:151.032534pt;}
.x1e{left:292.960000pt;}
.x1d{left:300.160240pt;}
.xb{left:387.682190pt;}
.x2{left:388.800698pt;}
.xe{left:390.720000pt;}
.x13{left:396.800704pt;}
.x11{left:406.390445pt;}
.x12{left:425.272207pt;}
.x8{left:444.800836pt;}
.x19{left:509.280407pt;}
.x4{left:523.680000pt;}
.x14{left:531.040000pt;}
.x6{left:570.560456pt;}
.x10{left:572.000458pt;}
.x16{left:580.160464pt;}
.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; }
  