
    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_afec6f41223eb94ddc319ac3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.709000;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_c0178600126858a44de4358a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.701000;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_92c3be27dbe2a87ff0b636d1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901000;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_c19fd3f347f7b0e1e1122248.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.901000;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_275549504394c0836cd30b95.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.708000;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_0fde80616a3d902fba28227e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.186000;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_ceb6af3de3caabec42bfdedd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.711000;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_aa4babf49eb1ea8a41287e1f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.727000;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_e5ba170961be0c66a26fe2e0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.001000;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_8aa4e678af33afca214851e4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.727000;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_d454bb432173a93e78139dc4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.186000;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_3f3736feb143cc9c1520340d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923000;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_2a01da86895d394bd400dcbd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.901000;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_b9393ebb66773df2608ca8af.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921000;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_16e3faedc74532fe331de503.woff2')format("woff");}.fff{font-family:fff;line-height:0.868000;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_c7284b41c253996df05ce6ac.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.726000;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_2333152e768ee1b1c817b181.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_b870e834e866b403c0f56a4f.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;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:ff13;src:url('chunks/assets/font_08bc5623e61e7701bdd05931.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.901000;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:ff14;src:url('chunks/assets/font_1d9a41fd164aec5a7c14efae.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.702000;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);}
.v2{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:9.690000px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000312px;}
.ls37{letter-spacing:0.000668px;}
.ls7{letter-spacing:0.000767px;}
.ls25{letter-spacing:0.003269px;}
.ls39{letter-spacing:0.004200px;}
.ls16{letter-spacing:0.951030px;}
.ls13{letter-spacing:0.957030px;}
.ls2d{letter-spacing:2.144023px;}
.ls31{letter-spacing:2.630368px;}
.ls8{letter-spacing:2.984525px;}
.ls2e{letter-spacing:3.631951px;}
.ls18{letter-spacing:5.747607px;}
.ls34{letter-spacing:6.433866px;}
.ls11{letter-spacing:6.516854px;}
.ls19{letter-spacing:7.475607px;}
.ls14{letter-spacing:9.956338px;}
.ls12{letter-spacing:9.962338px;}
.ls30{letter-spacing:13.277607px;}
.ls24{letter-spacing:13.283607px;}
.ls2f{letter-spacing:13.286245px;}
.ls17{letter-spacing:15.648538px;}
.ls23{letter-spacing:16.286207px;}
.ls1d{letter-spacing:16.598338px;}
.ls20{letter-spacing:16.599788px;}
.ls10{letter-spacing:16.602538px;}
.ls1e{letter-spacing:16.604338px;}
.ls22{letter-spacing:16.604400px;}
.ls1c{letter-spacing:16.605788px;}
.ls1f{letter-spacing:16.608538px;}
.ls2a{letter-spacing:16.833788px;}
.ls35{letter-spacing:18.494316px;}
.ls1b{letter-spacing:19.917788px;}
.ls26{letter-spacing:19.920538px;}
.ls3b{letter-spacing:20.655788px;}
.ls21{letter-spacing:20.878379px;}
.ls28{letter-spacing:20.913788px;}
.lsa{letter-spacing:21.381299px;}
.lsc{letter-spacing:21.626316px;}
.ls3c{letter-spacing:22.280316px;}
.ls32{letter-spacing:22.713788px;}
.ls27{letter-spacing:22.794538px;}
.ls9{letter-spacing:23.525039px;}
.lse{letter-spacing:24.038316px;}
.lsd{letter-spacing:24.044316px;}
.ls4{letter-spacing:24.164316px;}
.ls33{letter-spacing:24.285788px;}
.ls5{letter-spacing:25.220316px;}
.ls29{letter-spacing:25.533788px;}
.ls3a{letter-spacing:25.953788px;}
.ls15{letter-spacing:26.436854px;}
.lsb{letter-spacing:27.224316px;}
.ls36{letter-spacing:28.020668px;}
.ls38{letter-spacing:28.836668px;}
.ls2b{letter-spacing:29.469788px;}
.ls2c{letter-spacing:29.481788px;}
.ls1{letter-spacing:29.887800px;}
.ls3{letter-spacing:29.890178px;}
.ls1a{letter-spacing:36.522538px;}
.ls0{letter-spacing:55.275008px;}
.ls6{letter-spacing:94.662148px;}
.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;}
}
.ws12a{word-spacing:-59.775600px;}
.ws2{word-spacing:-47.333852px;}
.wsa{word-spacing:-46.738542px;}
.ws10b{word-spacing:-46.505417px;}
.ws14f{word-spacing:-43.192340px;}
.wsf{word-spacing:-42.733576px;}
.wse{word-spacing:-39.924123px;}
.ws33{word-spacing:-34.364992px;}
.ws9{word-spacing:-34.066114px;}
.wsc{word-spacing:-32.571724px;}
.ws40{word-spacing:-30.545332px;}
.ws56{word-spacing:-29.881822px;}
.ws8{word-spacing:-28.566759px;}
.ws10{word-spacing:-21.274136px;}
.ws156{word-spacing:-16.340201px;}
.ws158{word-spacing:-16.312761px;}
.ws84{word-spacing:-15.954108px;}
.ws5f{word-spacing:-15.829597px;}
.ws12{word-spacing:-15.780015px;}
.ws27{word-spacing:-15.177025px;}
.ws4c{word-spacing:-14.937922px;}
.ws12f{word-spacing:-14.878147px;}
.wse7{word-spacing:-14.758596px;}
.ws88{word-spacing:-14.639044px;}
.wsdb{word-spacing:-14.579269px;}
.wsea{word-spacing:-14.519493px;}
.ws29{word-spacing:-14.506634px;}
.ws72{word-spacing:-14.459718px;}
.ws7b{word-spacing:-14.447707px;}
.ws77{word-spacing:-14.447665px;}
.ws7c{word-spacing:-14.444061px;}
.ws78{word-spacing:-14.441253px;}
.ws76{word-spacing:-14.439348px;}
.ws79{word-spacing:-14.435361px;}
.ws25{word-spacing:-14.399942px;}
.ws94{word-spacing:-14.340166px;}
.ws5b{word-spacing:-14.280391px;}
.ws6e{word-spacing:-14.160840px;}
.ws16{word-spacing:-14.101064px;}
.ws1d{word-spacing:-14.041288px;}
.ws90{word-spacing:-13.981513px;}
.ws123{word-spacing:-13.861962px;}
.ws128{word-spacing:-13.742410px;}
.wsbe{word-spacing:-13.682635px;}
.wsc0{word-spacing:-13.622859px;}
.ws91{word-spacing:-13.503308px;}
.ws9a{word-spacing:-13.383757px;}
.wsd2{word-spacing:-13.323981px;}
.ws185{word-spacing:-13.204430px;}
.ws1c{word-spacing:-13.144654px;}
.ws95{word-spacing:-13.084879px;}
.ws23{word-spacing:-13.025103px;}
.ws14{word-spacing:-12.965328px;}
.ws1e{word-spacing:-12.911530px;}
.wscc{word-spacing:-12.905552px;}
.ws12b{word-spacing:-12.885821px;}
.ws12d{word-spacing:-12.845776px;}
.ws8c{word-spacing:-12.786001px;}
.ws7a{word-spacing:-12.726225px;}
.ws17d{word-spacing:-12.666450px;}
.wsce{word-spacing:-12.606674px;}
.wsbf{word-spacing:-12.552876px;}
.ws69{word-spacing:-12.546898px;}
.ws159{word-spacing:-12.516050px;}
.ws157{word-spacing:-12.504741px;}
.ws5d{word-spacing:-12.487123px;}
.ws8e{word-spacing:-12.427347px;}
.ws54{word-spacing:-12.367572px;}
.ws127{word-spacing:-12.307796px;}
.wsd4{word-spacing:-12.188245px;}
.ws7f{word-spacing:-12.068694px;}
.wsd3{word-spacing:-11.889367px;}
.ws22{word-spacing:-11.829591px;}
.ws18f{word-spacing:-11.777173px;}
.ws191{word-spacing:-11.769816px;}
.wsd1{word-spacing:-11.710040px;}
.ws58{word-spacing:-11.650264px;}
.ws75{word-spacing:-11.530713px;}
.ws7{word-spacing:-11.470938px;}
.ws2d{word-spacing:-11.411162px;}
.ws17f{word-spacing:-11.388381px;}
.ws2e{word-spacing:-11.351386px;}
.ws145{word-spacing:-11.231835px;}
.ws43{word-spacing:-11.052508px;}
.wsdc{word-spacing:-10.992733px;}
.wsac{word-spacing:-10.938935px;}
.ws39{word-spacing:-10.932957px;}
.ws52{word-spacing:-10.873182px;}
.wsd5{word-spacing:-10.813406px;}
.ws18c{word-spacing:-10.797976px;}
.wsfb{word-spacing:-10.759723px;}
.wscf{word-spacing:-10.753630px;}
.wscb{word-spacing:-10.693855px;}
.wsa8{word-spacing:-10.574304px;}
.wsbc{word-spacing:-10.571473px;}
.ws55{word-spacing:-10.514528px;}
.ws3{word-spacing:-10.512937px;}
.ws5e{word-spacing:-10.454752px;}
.wsb2{word-spacing:-10.394977px;}
.wsd9{word-spacing:-10.386718px;}
.ws85{word-spacing:-10.335201px;}
.ws2c{word-spacing:-10.215650px;}
.ws6f{word-spacing:-10.155874px;}
.ws98{word-spacing:-10.152019px;}
.ws4a{word-spacing:-10.096099px;}
.ws34{word-spacing:-10.059216px;}
.ws35{word-spacing:-10.050953px;}
.ws37{word-spacing:-10.050381px;}
.ws38{word-spacing:-10.036323px;}
.ws1f{word-spacing:-9.976548px;}
.ws133{word-spacing:-9.976388px;}
.ws182{word-spacing:-9.965770px;}
.ws181{word-spacing:-9.961775px;}
.ws74{word-spacing:-9.960381px;}
.ws16a{word-spacing:-9.959770px;}
.ws10e{word-spacing:-9.951451px;}
.ws1a{word-spacing:-9.931309px;}
.ws19{word-spacing:-9.916772px;}
.wsd0{word-spacing:-9.856996px;}
.ws64{word-spacing:-9.737445px;}
.ws178{word-spacing:-9.696381px;}
.wsdf{word-spacing:-9.677670px;}
.wsdd{word-spacing:-9.558118px;}
.ws28{word-spacing:-9.498343px;}
.ws8b{word-spacing:-9.438567px;}
.ws15a{word-spacing:-9.394914px;}
.ws18{word-spacing:-9.378792px;}
.ws53{word-spacing:-9.319016px;}
.ws87{word-spacing:-9.259240px;}
.ws70{word-spacing:-9.205442px;}
.ws65{word-spacing:-9.199465px;}
.ws89{word-spacing:-9.191526px;}
.wsfe{word-spacing:-9.174381px;}
.ws20{word-spacing:-9.145667px;}
.ws7e{word-spacing:-9.139689px;}
.ws15{word-spacing:-9.079914px;}
.wsca{word-spacing:-9.020138px;}
.ws82{word-spacing:-8.960362px;}
.ws24{word-spacing:-8.840811px;}
.wsa7{word-spacing:-8.661484px;}
.wsa5{word-spacing:-8.601709px;}
.ws6c{word-spacing:-8.541933px;}
.ws17{word-spacing:-8.482158px;}
.wsc5{word-spacing:-8.362606px;}
.wsab{word-spacing:-8.302831px;}
.ws83{word-spacing:-8.249033px;}
.ws2a{word-spacing:-8.243055px;}
.wse9{word-spacing:-8.183280px;}
.wsc8{word-spacing:-8.123504px;}
.wsf5{word-spacing:-8.105770px;}
.wsf1{word-spacing:-8.100458px;}
.ws62{word-spacing:-8.063728px;}
.ws186{word-spacing:-8.003953px;}
.wse8{word-spacing:-7.944177px;}
.wsc6{word-spacing:-7.884402px;}
.ws80{word-spacing:-7.822577px;}
.ws10f{word-spacing:-7.764850px;}
.ws192{word-spacing:-7.709536px;}
.ws44{word-spacing:-7.705075px;}
.ws81{word-spacing:-7.591501px;}
.ws4b{word-spacing:-7.585524px;}
.ws50{word-spacing:-7.525748px;}
.ws92{word-spacing:-7.465972px;}
.ws3d{word-spacing:-7.346421px;}
.ws104{word-spacing:-7.286646px;}
.ws106{word-spacing:-7.260381px;}
.wsb1{word-spacing:-7.226870px;}
.ws16c{word-spacing:-7.190369px;}
.wsa9{word-spacing:-7.167094px;}
.ws16e{word-spacing:-7.164381px;}
.ws45{word-spacing:-7.113296px;}
.ws11f{word-spacing:-7.107319px;}
.ws15d{word-spacing:-7.086381px;}
.wseb{word-spacing:-7.047543px;}
.wsd8{word-spacing:-6.987768px;}
.ws57{word-spacing:-6.927992px;}
.wsef{word-spacing:-6.910393px;}
.ws71{word-spacing:-6.868216px;}
.ws174{word-spacing:-6.824521px;}
.ws49{word-spacing:-6.808441px;}
.wsb5{word-spacing:-6.754643px;}
.wsed{word-spacing:-6.689865px;}
.wsec{word-spacing:-6.688890px;}
.ws18a{word-spacing:-6.660381px;}
.wsa0{word-spacing:-6.629114px;}
.wsb3{word-spacing:-6.580257px;}
.ws199{word-spacing:-6.569338px;}
.ws47{word-spacing:-6.509563px;}
.ws124{word-spacing:-6.449787px;}
.ws115{word-spacing:-6.390012px;}
.wsda{word-spacing:-6.270460px;}
.wsb8{word-spacing:-6.031358px;}
.wsba{word-spacing:-6.023770px;}
.wsb4{word-spacing:-5.971582px;}
.wsbd{word-spacing:-5.964495px;}
.ws4f{word-spacing:-5.911807px;}
.wsd6{word-spacing:-5.852031px;}
.ws188{word-spacing:-5.831975px;}
.ws2f{word-spacing:-5.732480px;}
.ws32{word-spacing:-5.721216px;}
.ws31{word-spacing:-5.718381px;}
.ws2b{word-spacing:-5.672704px;}
.wsaa{word-spacing:-5.612929px;}
.ws15b{word-spacing:-5.604050px;}
.ws6d{word-spacing:-5.553153px;}
.ws161{word-spacing:-5.493378px;}
.ws197{word-spacing:-5.433602px;}
.ws73{word-spacing:-5.338813px;}
.ws117{word-spacing:-5.331761px;}
.ws194{word-spacing:-5.254275px;}
.ws8a{word-spacing:-5.250852px;}
.ws195{word-spacing:-5.213770px;}
.ws196{word-spacing:-5.194500px;}
.wsaf{word-spacing:-5.153770px;}
.wsad{word-spacing:-5.134724px;}
.ws120{word-spacing:-5.074948px;}
.wsb7{word-spacing:-4.955397px;}
.wsff{word-spacing:-4.949702px;}
.ws101{word-spacing:-4.895622px;}
.ws3b{word-spacing:-4.835846px;}
.ws5c{word-spacing:-4.776070px;}
.wsb0{word-spacing:-4.722272px;}
.ws61{word-spacing:-4.716295px;}
.ws131{word-spacing:-4.656519px;}
.ws121{word-spacing:-4.609621px;}
.ws184{word-spacing:-4.596744px;}
.wse2{word-spacing:-4.536968px;}
.ws7d{word-spacing:-4.477192px;}
.ws6a{word-spacing:-4.417417px;}
.ws9f{word-spacing:-4.320381px;}
.ws9d{word-spacing:-4.297866px;}
.ws130{word-spacing:-4.238090px;}
.wsb6{word-spacing:-4.178314px;}
.wsa1{word-spacing:-4.118539px;}
.wsa3{word-spacing:-4.100618px;}
.ws146{word-spacing:-3.998988px;}
.ws180{word-spacing:-3.957995px;}
.ws17e{word-spacing:-3.951995px;}
.ws3e{word-spacing:-3.939212px;}
.ws177{word-spacing:-3.928855px;}
.ws5a{word-spacing:-3.879436px;}
.wsc9{word-spacing:-3.819661px;}
.ws41{word-spacing:-3.700110px;}
.wsc7{word-spacing:-3.607060px;}
.ws116{word-spacing:-3.526760px;}
.wsc2{word-spacing:-3.461007px;}
.ws68{word-spacing:-3.341456px;}
.ws15c{word-spacing:-3.270741px;}
.ws3f{word-spacing:-3.221905px;}
.ws113{word-spacing:-3.102354px;}
.wsa6{word-spacing:-3.088790px;}
.ws11d{word-spacing:-2.863251px;}
.ws4e{word-spacing:-2.683924px;}
.ws9c{word-spacing:-2.624149px;}
.wsc3{word-spacing:-2.444822px;}
.ws160{word-spacing:-2.365370px;}
.ws60{word-spacing:-2.325271px;}
.ws67{word-spacing:-2.265495px;}
.wsbb{word-spacing:-2.226371px;}
.wsfc{word-spacing:-2.145944px;}
.wsde{word-spacing:-1.249310px;}
.wsc1{word-spacing:-1.189534px;}
.ws51{word-spacing:-1.129759px;}
.ws99{word-spacing:-1.069983px;}
.ws114{word-spacing:-0.978446px;}
.ws66{word-spacing:-0.950432px;}
.wsae{word-spacing:-0.913051px;}
.ws4d{word-spacing:-0.890656px;}
.ws11b{word-spacing:-0.651554px;}
.ws11c{word-spacing:-0.597756px;}
.wsb9{word-spacing:-0.510653px;}
.ws15f{word-spacing:-0.412452px;}
.ws59{word-spacing:-0.292900px;}
.wsa4{word-spacing:-0.201596px;}
.ws1{word-spacing:-0.148723px;}
.ws144{word-spacing:-0.113574px;}
.ws21{word-spacing:-0.059776px;}
.ws11{word-spacing:0.000000px;}
.wsb{word-spacing:0.005978px;}
.ws9e{word-spacing:0.301187px;}
.ws6b{word-spacing:1.352713px;}
.wsa2{word-spacing:1.385730px;}
.ws119{word-spacing:1.700974px;}
.wsc4{word-spacing:1.835601px;}
.ws198{word-spacing:1.859021px;}
.ws15e{word-spacing:2.009838px;}
.ws179{word-spacing:9.870722px;}
.ws162{word-spacing:9.896805px;}
.ws163{word-spacing:9.906411px;}
.ws142{word-spacing:9.922750px;}
.ws103{word-spacing:11.781771px;}
.ws10a{word-spacing:13.210312px;}
.ws125{word-spacing:15.596624px;}
.ws12e{word-spacing:15.851587px;}
.ws122{word-spacing:15.969766px;}
.ws129{word-spacing:16.089375px;}
.ws112{word-spacing:16.313587px;}
.ws13f{word-spacing:16.514691px;}
.ws140{word-spacing:16.520388px;}
.ws171{word-spacing:16.520691px;}
.ws173{word-spacing:16.521482px;}
.ws135{word-spacing:16.526388px;}
.ws155{word-spacing:16.532737px;}
.ws13b{word-spacing:16.533375px;}
.ws14a{word-spacing:16.535202px;}
.ws154{word-spacing:16.537162px;}
.ws13d{word-spacing:16.537800px;}
.ws149{word-spacing:16.541026px;}
.ws152{word-spacing:16.541587px;}
.ws17a{word-spacing:16.543694px;}
.ws150{word-spacing:16.543800px;}
.ws147{word-spacing:16.543960px;}
.ws137{word-spacing:16.547026px;}
.ws138{word-spacing:16.548169px;}
.ws153{word-spacing:16.565703px;}
.ws151{word-spacing:16.566906px;}
.ws14e{word-spacing:16.569757px;}
.ws13{word-spacing:16.863766px;}
.ws12c{word-spacing:16.949587px;}
.ws8d{word-spacing:17.051587px;}
.ws8f{word-spacing:17.402737px;}
.ws13e{word-spacing:17.728569px;}
.ws139{word-spacing:17.734569px;}
.wsd7{word-spacing:17.969910px;}
.ws18e{word-spacing:18.043800px;}
.wse1{word-spacing:18.111375px;}
.ws172{word-spacing:18.177720px;}
.ws18d{word-spacing:18.181800px;}
.ws14b{word-spacing:18.192937px;}
.ws14d{word-spacing:18.198937px;}
.ws3a{word-spacing:18.862312px;}
.ws110{word-spacing:19.055587px;}
.wsfa{word-spacing:19.079587px;}
.wsf9{word-spacing:19.083375px;}
.ws10c{word-spacing:19.552024px;}
.ws10d{word-spacing:19.553313px;}
.ws109{word-spacing:19.554602px;}
.ws108{word-spacing:19.559757px;}
.ws36{word-spacing:19.761375px;}
.ws169{word-spacing:19.835250px;}
.ws97{word-spacing:19.837485px;}
.ws136{word-spacing:19.838388px;}
.ws13a{word-spacing:19.845499px;}
.ws168{word-spacing:19.847312px;}
.wse0{word-spacing:19.850737px;}
.wse5{word-spacing:19.851375px;}
.ws26{word-spacing:19.851766px;}
.ws166{word-spacing:19.853950px;}
.ws167{word-spacing:19.856162px;}
.ws187{word-spacing:19.857375px;}
.ws164{word-spacing:19.858032px;}
.ws165{word-spacing:19.858375px;}
.ws118{word-spacing:19.859587px;}
.ws143{word-spacing:19.860763px;}
.ws17b{word-spacing:19.861694px;}
.ws16f{word-spacing:19.861800px;}
.ws148{word-spacing:19.861960px;}
.ws134{word-spacing:19.863960px;}
.ws16b{word-spacing:19.865012px;}
.ws170{word-spacing:19.869762px;}
.ws1b{word-spacing:19.893766px;}
.ws14c{word-spacing:19.905275px;}
.ws86{word-spacing:20.493375px;}
.wsfd{word-spacing:20.632312px;}
.wsd{word-spacing:20.927438px;}
.ws96{word-spacing:21.274950px;}
.ws111{word-spacing:21.503587px;}
.wsf6{word-spacing:21.707587px;}
.wsf3{word-spacing:21.713587px;}
.wsf2{word-spacing:21.715162px;}
.wsf4{word-spacing:21.717375px;}
.ws183{word-spacing:21.717766px;}
.ws11e{word-spacing:21.861766px;}
.wsf7{word-spacing:21.873375px;}
.wsf8{word-spacing:21.877162px;}
.ws193{word-spacing:22.109587px;}
.ws93{word-spacing:22.365698px;}
.ws126{word-spacing:22.475626px;}
.ws107{word-spacing:22.545375px;}
.ws105{word-spacing:22.547587px;}
.ws16d{word-spacing:22.651800px;}
.ws5{word-spacing:22.856899px;}
.wsf0{word-spacing:22.909162px;}
.ws176{word-spacing:23.007960px;}
.ws189{word-spacing:23.140312px;}
.wsee{word-spacing:23.146312px;}
.ws18b{word-spacing:23.146950px;}
.ws48{word-spacing:23.307766px;}
.ws30{word-spacing:24.093375px;}
.ws175{word-spacing:24.654937px;}
.ws13c{word-spacing:24.831745px;}
.ws102{word-spacing:24.886312px;}
.ws100{word-spacing:24.895162px;}
.ws3c{word-spacing:24.993375px;}
.wse4{word-spacing:25.652100px;}
.ws190{word-spacing:25.891800px;}
.ws132{word-spacing:26.604169px;}
.ws63{word-spacing:26.827469px;}
.ws9b{word-spacing:27.176737px;}
.wse3{word-spacing:28.645162px;}
.ws11a{word-spacing:29.199766px;}
.ws141{word-spacing:29.768249px;}
.wscd{word-spacing:31.262639px;}
.ws42{word-spacing:31.322414px;}
.ws46{word-spacing:31.469977px;}
.ws0{word-spacing:45.089145px;}
.wse6{word-spacing:47.351068px;}
.ws17c{word-spacing:80.625869px;}
.ws6{word-spacing:1674.738963px;}
.ws4{word-spacing:1734.878899px;}
._8{margin-left:-31.501741px;}
._6{margin-left:-29.887800px;}
._d{margin-left:-28.214083px;}
._7{margin-left:-9.982525px;}
._27{margin-left:-7.919102px;}
._3{margin-left:-5.738458px;}
._2d{margin-left:-4.729012px;}
._0{margin-left:-3.718065px;}
._1{margin-left:-2.668393px;}
._4{margin-left:-1.157245px;}
._19{width:1.673717px;}
._2b{width:3.380920px;}
._34{width:5.137065px;}
._9{width:6.455765px;}
._38{width:7.469738px;}
._37{width:9.432567px;}
._36{width:10.472708px;}
._33{width:15.608172px;}
._13{width:16.916495px;}
._1e{width:18.107256px;}
._f{width:19.905275px;}
._12{width:20.959727px;}
._1b{width:22.466095px;}
._26{width:23.491811px;}
._1d{width:24.589280px;}
._1c{width:25.731757px;}
._21{width:26.839244px;}
._14{width:27.855430px;}
._29{width:28.871615px;}
._28{width:30.019329px;}
._b{width:31.202863px;}
._20{width:32.401522px;}
._35{width:33.575541px;}
._23{width:34.585114px;}
._32{width:36.463116px;}
._c{width:38.495486px;}
._30{width:39.690998px;}
._39{width:40.830723px;}
._22{width:42.022247px;}
._2e{width:43.294292px;}
._2c{width:44.353495px;}
._25{width:45.429456px;}
._24{width:47.217859px;}
._1a{width:48.836665px;}
._10{width:52.184099px;}
._2a{width:53.570915px;}
._2{width:55.292430px;}
._11{width:56.727044px;}
._e{width:61.090663px;}
._18{width:68.383286px;}
._2f{width:80.697600px;}
._a{width:86.614844px;}
._1f{width:94.684920px;}
._31{width:670.325332px;}
._5{width:1774.080032px;}
._15{width:1875.220348px;}
._17{width:1952.390647px;}
._16{width:2149.176189px;}
.fc2{color:rgb(0,173,239);}
.fc1{color:rgb(0,255,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.842800px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y1a{bottom:84.768000px;}
.y17e{bottom:129.600000px;}
.yf7{bottom:130.656000px;}
.y1c0{bottom:135.168000px;}
.y158{bottom:147.396000px;}
.y17d{bottom:147.532500px;}
.yf6{bottom:148.588500px;}
.y1bf{bottom:153.102000px;}
.y157{bottom:165.328500px;}
.y94{bottom:171.600000px;}
.y19e{bottom:174.180000px;}
.yf5{bottom:175.488000px;}
.y4a{bottom:177.006000px;}
.y75{bottom:179.916000px;}
.y1be{bottom:180.682500px;}
.y156{bottom:183.261000px;}
.y17c{bottom:188.269500px;}
.yf4{bottom:193.420500px;}
.y74{bottom:197.848500px;}
.y19d{bottom:201.079500px;}
.y155{bottom:201.193500px;}
.y110{bottom:201.345000px;}
.ya4{bottom:205.978500px;}
.y17b{bottom:210.685500px;}
.yf3{bottom:211.353000px;}
.y14e{bottom:213.559500px;}
.y73{bottom:215.782500px;}
.y19c{bottom:219.012000px;}
.y154{bottom:219.126000px;}
.y10f{bottom:219.277500px;}
.y1bd{bottom:219.522000px;}
.ya3{bottom:223.911000px;}
.y33{bottom:226.986000px;}
.y139{bottom:227.689500px;}
.y14d{bottom:231.492000px;}
.yaf{bottom:232.368000px;}
.y17a{bottom:233.101500px;}
.y72{bottom:233.715000px;}
.y19b{bottom:236.944500px;}
.y1bc{bottom:237.454500px;}
.yf2{bottom:238.935000px;}
.ya2{bottom:241.843500px;}
.y32{bottom:244.918500px;}
.y138{bottom:245.622000px;}
.y153{bottom:246.025500px;}
.y14c{bottom:249.424500px;}
.yae{bottom:250.300500px;}
.y19{bottom:250.375500px;}
.y10e{bottom:251.439000px;}
.y1bb{bottom:255.387000px;}
.y179{bottom:255.517500px;}
.ya1{bottom:259.776000px;}
.ydb{bottom:260.905500px;}
.y71{bottom:261.297000px;}
.y19a{bottom:263.844000px;}
.y14b{bottom:267.357000px;}
.yad{bottom:268.233000px;}
.y18{bottom:268.308000px;}
.y31{bottom:271.818000px;}
.y1ba{bottom:273.319500px;}
.ya0{bottom:277.708500px;}
.y178{bottom:277.933500px;}
.yda{bottom:278.838000px;}
.y199{bottom:281.776500px;}
.yc8{bottom:284.050500px;}
.yac{bottom:286.165500px;}
.y17{bottom:286.242000px;}
.yf1{bottom:287.389500px;}
.y137{bottom:288.621000px;}
.y1b9{bottom:291.253500px;}
.y5f{bottom:296.575500px;}
.yd9{bottom:296.770500px;}
.y144{bottom:297.628500px;}
.y30{bottom:298.716000px;}
.y177{bottom:300.349500px;}
.y70{bottom:303.124500px;}
.y16{bottom:304.174500px;}
.y198{bottom:308.676000px;}
.y1b8{bottom:309.186000px;}
.y9f{bottom:309.871500px;}
.y136{bottom:311.037000px;}
.y121{bottom:314.196000px;}
.y5e{bottom:314.508000px;}
.yd8{bottom:314.704500px;}
.y143{bottom:315.561000px;}
.y104{bottom:318.169500px;}
.yab{bottom:319.240500px;}
.y7d{bottom:319.921500px;}
.y6f{bottom:321.057000px;}
.y15{bottom:322.107000px;}
.y176{bottom:322.765500px;}
.y2f{bottom:325.615500px;}
.y197{bottom:326.608500px;}
.y5d{bottom:332.440500px;}
.yd7{bottom:332.637000px;}
.y135{bottom:333.453000px;}
.ybd{bottom:334.948500px;}
.y103{bottom:336.102000px;}
.y1b7{bottom:336.768000px;}
.y7c{bottom:337.855500px;}
.y14{bottom:340.039500px;}
.y120{bottom:342.370500px;}
.y142{bottom:342.459000px;}
.y6e{bottom:344.715000px;}
.y175{bottom:345.181500px;}
.y5c{bottom:350.374500px;}
.yd6{bottom:350.569500px;}
.y2e{bottom:352.515000px;}
.ybc{bottom:352.881000px;}
.y196{bottom:353.508000px;}
.y102{bottom:354.034500px;}
.y7b{bottom:355.788000px;}
.y134{bottom:355.869000px;}
.y13{bottom:357.972000px;}
.y141{bottom:360.393000px;}
.y174{bottom:367.597500px;}
.yd5{bottom:368.502000px;}
.y11f{bottom:370.546500px;}
.ybb{bottom:370.813500px;}
.y195{bottom:371.440500px;}
.y101{bottom:371.967000px;}
.y12{bottom:375.906000px;}
.y5b{bottom:377.272500px;}
.y133{bottom:378.285000px;}
.y140{bottom:378.325500px;}
.y1b6{bottom:378.595500px;}
.y2d{bottom:379.414500px;}
.y128{bottom:385.135500px;}
.yd4{bottom:386.434500px;}
.y11e{bottom:388.479000px;}
.yba{bottom:388.746000px;}
.y7a{bottom:389.779500px;}
.y11{bottom:393.838500px;}
.y5a{bottom:395.205000px;}
.y13f{bottom:396.258000px;}
.y1b5{bottom:396.528000px;}
.yec{bottom:398.014500px;}
.y194{bottom:398.340000px;}
.y173{bottom:399.367500px;}
.y100{bottom:404.130000px;}
.y6d{bottom:405.885000px;}
.y2c{bottom:406.312500px;}
.y1dc{bottom:408.498000px;}
.y10{bottom:411.771000px;}
.y59{bottom:413.139000px;}
.yeb{bottom:415.947000px;}
.y193{bottom:416.272500px;}
.yb9{bottom:416.328000px;}
.y11d{bottom:416.653500px;}
.y132{bottom:416.800500px;}
.yd3{bottom:419.427000px;}
.y13e{bottom:423.157500px;}
.y6c{bottom:423.817500px;}
.y172{bottom:426.267000px;}
.y1db{bottom:426.430500px;}
.y58{bottom:431.071500px;}
.y2b{bottom:433.212000px;}
.yea{bottom:433.879500px;}
.y131{bottom:434.733000px;}
.y13d{bottom:441.090000px;}
.y1b4{bottom:441.360000px;}
.y6b{bottom:441.751500px;}
.y8c{bottom:442.708500px;}
.y192{bottom:443.172000px;}
.y171{bottom:444.199500px;}
.y1da{bottom:444.364500px;}
.yf{bottom:444.643500px;}
.y11c{bottom:444.828000px;}
.y57{bottom:449.004000px;}
.y2a{bottom:451.144500px;}
.y161{bottom:451.228500px;}
.y130{bottom:452.665500px;}
.y13c{bottom:459.022500px;}
.y1b3{bottom:459.292500px;}
.y6a{bottom:459.684000px;}
.y191{bottom:461.104500px;}
.ye9{bottom:461.461500px;}
.y170{bottom:462.132000px;}
.y1d9{bottom:462.297000px;}
.y11b{bottom:462.760500px;}
.yb8{bottom:464.782500px;}
.y56{bottom:466.936500px;}
.y29{bottom:469.077000px;}
.y160{bottom:469.161000px;}
.y12f{bottom:470.599500px;}
.y13b{bottom:476.955000px;}
.y1b2{bottom:477.225000px;}
.ye{bottom:477.517500px;}
.y69{bottom:477.616500px;}
.y16f{bottom:480.066000px;}
.y1d8{bottom:480.229500px;}
.y8b{bottom:482.364000px;}
.y14a{bottom:483.750000px;}
.y28{bottom:487.011000px;}
.y15f{bottom:487.093500px;}
.y190{bottom:488.004000px;}
.y12e{bottom:488.532000px;}
.y11a{bottom:489.660000px;}
.y9e{bottom:491.197500px;}
.y55{bottom:493.836000px;}
.y68{bottom:495.549000px;}
.y149{bottom:501.684000px;}
.y1b1{bottom:504.124500px;}
.y27{bottom:504.943500px;}
.y10d{bottom:505.794000px;}
.y18f{bottom:505.936500px;}
.y12d{bottom:506.464500px;}
.yc7{bottom:506.541000px;}
.y119{bottom:507.592500px;}
.y16e{bottom:507.646500px;}
.y1d7{bottom:507.811500px;}
.y9d{bottom:509.130000px;}
.y8a{bottom:509.263500px;}
.ye8{bottom:509.916000px;}
.yd{bottom:510.390000px;}
.y54{bottom:511.768500px;}
.y15e{bottom:513.993000px;}
.y148{bottom:519.616500px;}
.y1b0{bottom:522.057000px;}
.y10c{bottom:523.726500px;}
.yc6{bottom:524.475000px;}
.y118{bottom:525.525000px;}
.y9c{bottom:527.064000px;}
.yc{bottom:528.322500px;}
.y53{bottom:529.701000px;}
.y26{bottom:531.843000px;}
.y15d{bottom:531.925500px;}
.y18e{bottom:532.836000px;}
.y93{bottom:532.861500px;}
.y89{bottom:536.161500px;}
.y1af{bottom:539.989500px;}
.y10b{bottom:541.659000px;}
.yc5{bottom:542.407500px;}
.yb{bottom:546.255000px;}
.y16d{bottom:546.295500px;}
.y1d6{bottom:546.649500px;}
.y15c{bottom:549.858000px;}
.y92{bottom:550.794000px;}
.y117{bottom:552.424500px;}
.y52{bottom:556.600500px;}
.y9b{bottom:559.225500px;}
.y18d{bottom:559.734000px;}
.yc4{bottom:560.340000px;}
.y88{bottom:563.061000px;}
.ya{bottom:564.189000px;}
.y1d5{bottom:564.582000px;}
.y1ae{bottom:567.571500px;}
.y10a{bottom:568.558500px;}
.y116{bottom:570.357000px;}
.y16c{bottom:573.195000px;}
.y51{bottom:574.533000px;}
.y9a{bottom:577.158000px;}
.y91{bottom:577.693500px;}
.yc3{bottom:578.272500px;}
.y67{bottom:580.461000px;}
.y87{bottom:580.993500px;}
.y9{bottom:582.121500px;}
.y1d4{bottom:582.516000px;}
.y49{bottom:583.500000px;}
.y109{bottom:586.491000px;}
.y18c{bottom:586.633500px;}
.y115{bottom:588.289500px;}
.y50{bottom:592.465500px;}
.y90{bottom:595.626000px;}
.yc2{bottom:596.205000px;}
.y66{bottom:598.393500px;}
.y8{bottom:600.054000px;}
.y1d3{bottom:600.448500px;}
.y79{bottom:602.467500px;}
.y108{bottom:604.423500px;}
.y18b{bottom:604.566000px;}
.y114{bottom:606.223500px;}
.y86{bottom:607.893000px;}
.y1ad{bottom:609.399000px;}
.y48{bottom:610.399500px;}
.yff{bottom:611.842500px;}
.y8f{bottom:613.558500px;}
.y16b{bottom:613.932000px;}
.yc1{bottom:614.139000px;}
.y65{bottom:616.326000px;}
.y7{bottom:617.986500px;}
.y1d2{bottom:618.381000px;}
.y78{bottom:620.400000px;}
.y107{bottom:622.357500px;}
.y18a{bottom:622.498500px;}
.y113{bottom:624.156000px;}
.y47{bottom:628.332000px;}
.yfe{bottom:629.775000px;}
.yc0{bottom:632.071500px;}
.y85{bottom:634.792500px;}
.y6{bottom:635.919000px;}
.y1ac{bottom:636.298500px;}
.y1d1{bottom:636.313500px;}
.y16a{bottom:636.348000px;}
.y77{bottom:638.332500px;}
.y106{bottom:640.290000px;}
.y189{bottom:640.432500px;}
.y8e{bottom:641.140500px;}
.y112{bottom:642.088500px;}
.y46{bottom:646.264500px;}
.y64{bottom:648.489000px;}
.ybf{bottom:650.004000px;}
.y5{bottom:653.851500px;}
.y188{bottom:658.365000px;}
.y169{bottom:658.764000px;}
.y84{bottom:661.692000px;}
.y1ab{bottom:663.196500px;}
.y1d0{bottom:663.213000px;}
.y76{bottom:670.495500px;}
.y105{bottom:672.451500px;}
.y45{bottom:673.164000px;}
.yd2{bottom:674.058000px;}
.y8d{bottom:678.999000px;}
.y111{bottom:679.353000px;}
.y1aa{bottom:681.130500px;}
.y1cf{bottom:681.145500px;}
.y168{bottom:681.180000px;}
.ye7{bottom:681.771000px;}
.ybe{bottom:683.079000px;}
.y187{bottom:685.263000px;}
.y4{bottom:686.725500px;}
.yb7{bottom:688.464000px;}
.y83{bottom:688.590000px;}
.yf0{bottom:688.660500px;}
.y44{bottom:691.096500px;}
.y1a9{bottom:699.063000px;}
.ye6{bottom:699.703500px;}
.yd1{bottom:700.957500px;}
.y167{bottom:703.596000px;}
.yaa{bottom:704.989500px;}
.yb6{bottom:706.398000px;}
.yef{bottom:706.593000px;}
.y1ce{bottom:708.045000px;}
.y43{bottom:709.029000px;}
.y82{bottom:715.489500px;}
.y1a8{bottom:716.995500px;}
.ye5{bottom:717.636000px;}
.y3{bottom:719.598000px;}
.y186{bottom:720.667500px;}
.ya9{bottom:722.922000px;}
.yb5{bottom:724.330500px;}
.yee{bottom:724.525500px;}
.y1cd{bottom:725.977500px;}
.y63{bottom:726.097500px;}
.y42{bottom:726.961500px;}
.yd0{bottom:727.855500px;}
.y147{bottom:732.538500px;}
.y81{bottom:733.422000px;}
.y166{bottom:735.366000px;}
.ya8{bottom:740.854500px;}
.yb4{bottom:742.263000px;}
.ye4{bottom:744.535500px;}
.y41{bottom:744.894000px;}
.y185{bottom:747.565500px;}
.y146{bottom:750.472500px;}
.y1cc{bottom:752.877000px;}
.y165{bottom:753.300000px;}
.y62{bottom:753.678000px;}
.y4f{bottom:753.861000px;}
.ycf{bottom:754.755000px;}
.yed{bottom:756.687000px;}
.y152{bottom:758.058000px;}
.ya7{bottom:758.787000px;}
.y1a7{bottom:758.838000px;}
.yb3{bottom:760.195500px;}
.y2{bottom:760.245000px;}
.y80{bottom:760.321500px;}
.ye3{bottom:762.468000px;}
.y145{bottom:768.405000px;}
.y1cb{bottom:770.809500px;}
.y164{bottom:771.232500px;}
.y40{bottom:771.793500px;}
.y184{bottom:774.465000px;}
.y151{bottom:775.990500px;}
.yb2{bottom:778.128000px;}
.y7f{bottom:778.254000px;}
.y13a{bottom:779.685000px;}
.y12c{bottom:780.760500px;}
.y1a6{bottom:781.254000px;}
.yce{bottom:781.654500px;}
.ya6{bottom:786.369000px;}
.y127{bottom:786.909000px;}
.y1ca{bottom:788.742000px;}
.ye2{bottom:789.367500px;}
.y3f{bottom:789.726000px;}
.y183{bottom:792.397500px;}
.y150{bottom:793.923000px;}
.y61{bottom:795.505500px;}
.y1e7{bottom:795.663000px;}
.yb1{bottom:796.062000px;}
.y12b{bottom:798.693000px;}
.y163{bottom:798.814500px;}
.y1a5{bottom:803.670000px;}
.y126{bottom:804.841500px;}
.y1c9{bottom:806.674500px;}
.ye1{bottom:807.300000px;}
.y3e{bottom:807.658500px;}
.ycd{bottom:808.554000px;}
.y7e{bottom:810.417000px;}
.y14f{bottom:811.855500px;}
.y1e6{bottom:813.595500px;}
.y12a{bottom:816.625500px;}
.y182{bottom:819.297000px;}
.y125{bottom:822.774000px;}
.y60{bottom:824.763000px;}
.ye0{bottom:825.232500px;}
.y3d{bottom:825.592500px;}
.y1a4{bottom:826.086000px;}
.ycc{bottom:826.486500px;}
.yb0{bottom:828.223500px;}
.y162{bottom:828.786000px;}
.y1e5{bottom:831.528000px;}
.y1c8{bottom:833.574000px;}
.y25{bottom:833.646000px;}
.y129{bottom:834.558000px;}
.ya5{bottom:834.825000px;}
.y124{bottom:840.706500px;}
.ydf{bottom:843.165000px;}
.y3c{bottom:843.525000px;}
.ycb{bottom:844.419000px;}
.y181{bottom:846.196500px;}
.y1a3{bottom:848.502000px;}
.y24{bottom:851.578500px;}
.y4e{bottom:852.490500px;}
.y1e4{bottom:858.427500px;}
.y123{bottom:858.640500px;}
.y1c7{bottom:860.473500px;}
.yde{bottom:861.099000px;}
.yca{bottom:862.351500px;}
.y23{bottom:869.511000px;}
.y3b{bottom:870.424500px;}
.y1a2{bottom:870.918000px;}
.y180{bottom:873.094500px;}
.y1e3{bottom:876.360000px;}
.ydd{bottom:879.031500px;}
.y1c6{bottom:887.371500px;}
.y22{bottom:887.443500px;}
.y122{bottom:887.917500px;}
.y3a{bottom:888.357000px;}
.y1a1{bottom:893.334000px;}
.yc9{bottom:895.426500px;}
.y17f{bottom:899.994000px;}
.y1e2{bottom:903.259500px;}
.y1c5{bottom:905.305500px;}
.y39{bottom:906.289500px;}
.y15b{bottom:908.961000px;}
.ydc{bottom:911.193000px;}
.y21{bottom:914.343000px;}
.y4d{bottom:915.255000px;}
.y1a0{bottom:915.750000px;}
.y1{bottom:920.221500px;}
.y1e1{bottom:921.192000px;}
.y1c4{bottom:923.238000px;}
.y38{bottom:924.222000px;}
.y15a{bottom:926.893500px;}
.y20{bottom:932.275500px;}
.y4c{bottom:933.189000px;}
.yfd{bottom:935.860500px;}
.y19f{bottom:938.166000px;}
.y1e0{bottom:939.126000px;}
.y1c3{bottom:941.170500px;}
.y37{bottom:942.154500px;}
.y159{bottom:944.826000px;}
.y1f{bottom:950.208000px;}
.y4b{bottom:951.121500px;}
.yfc{bottom:953.793000px;}
.y1c2{bottom:959.103000px;}
.y99{bottom:962.076000px;}
.y1df{bottom:966.024000px;}
.y1e{bottom:968.140500px;}
.y36{bottom:969.054000px;}
.yfb{bottom:971.725500px;}
.y98{bottom:980.008500px;}
.y1de{bottom:983.956500px;}
.y1d{bottom:986.073000px;}
.y1c1{bottom:986.685000px;}
.y35{bottom:986.986500px;}
.yfa{bottom:989.658000px;}
.y97{bottom:997.942500px;}
.y1dd{bottom:1001.890500px;}
.y1c{bottom:1004.007000px;}
.y34{bottom:1004.919000px;}
.yf9{bottom:1007.590500px;}
.y96{bottom:1015.875000px;}
.yf8{bottom:1025.523000px;}
.y1b{bottom:1039.570500px;}
.y95{bottom:1043.457000px;}
.h9{height:41.544042px;}
.h3{height:41.902696px;}
.h8{height:44.831700px;}
.h5{height:44.951251px;}
.h6{height:50.283571px;}
.h7{height:54.641251px;}
.h4{height:56.009737px;}
.h2{height:60.340117px;}
.h1{height:103.659652px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:140.400000px;}
.x1e{left:142.846500px;}
.x18{left:146.988000px;}
.x17{left:154.521000px;}
.x28{left:158.563500px;}
.x3{left:162.810000px;}
.x1f{left:165.049500px;}
.x26{left:166.203000px;}
.x7{left:177.760500px;}
.x31{left:184.471500px;}
.x30{left:188.394000px;}
.x27{left:190.795500px;}
.x29{left:196.152000px;}
.x4{left:197.173500px;}
.x22{left:202.495500px;}
.x20{left:220.183500px;}
.xd{left:221.349000px;}
.x2f{left:224.983500px;}
.x2e{left:227.989500px;}
.x2b{left:230.113500px;}
.x21{left:232.849500px;}
.x13{left:241.456500px;}
.x12{left:251.838000px;}
.x34{left:255.070500px;}
.xc{left:256.272000px;}
.xf{left:258.888000px;}
.x2d{left:264.930000px;}
.x1d{left:269.341500px;}
.x36{left:271.827000px;}
.x11{left:274.182000px;}
.x1{left:283.215000px;}
.x33{left:287.301000px;}
.x35{left:292.657500px;}
.x1c{left:295.284000px;}
.xe{left:297.192000px;}
.x19{left:301.582500px;}
.x37{left:309.970500px;}
.x2c{left:312.672000px;}
.x16{left:317.466000px;}
.x1b{left:325.923000px;}
.xa{left:327.567000px;}
.x9{left:331.863000px;}
.x6{left:343.227000px;}
.x1a{left:345.175500px;}
.x32{left:347.289000px;}
.x24{left:350.359500px;}
.x8{left:357.294000px;}
.x25{left:365.701500px;}
.x23{left:373.201500px;}
.x15{left:375.874500px;}
.x2a{left:392.329500px;}
.x10{left:423.607500px;}
.x14{left:451.530000px;}
.x5{left:455.265000px;}
.xb{left:573.604500px;}
@media print{
.v2{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:8.613333pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000277pt;}
.ls37{letter-spacing:0.000594pt;}
.ls7{letter-spacing:0.000681pt;}
.ls25{letter-spacing:0.002906pt;}
.ls39{letter-spacing:0.003733pt;}
.ls16{letter-spacing:0.845360pt;}
.ls13{letter-spacing:0.850693pt;}
.ls2d{letter-spacing:1.905799pt;}
.ls31{letter-spacing:2.338105pt;}
.ls8{letter-spacing:2.652911pt;}
.ls2e{letter-spacing:3.228401pt;}
.ls18{letter-spacing:5.108984pt;}
.ls34{letter-spacing:5.718992pt;}
.ls11{letter-spacing:5.792759pt;}
.ls19{letter-spacing:6.644984pt;}
.ls14{letter-spacing:8.850079pt;}
.ls12{letter-spacing:8.855412pt;}
.ls30{letter-spacing:11.802318pt;}
.ls24{letter-spacing:11.807651pt;}
.ls2f{letter-spacing:11.809995pt;}
.ls17{letter-spacing:13.909812pt;}
.ls23{letter-spacing:14.476629pt;}
.ls1d{letter-spacing:14.754079pt;}
.ls20{letter-spacing:14.755367pt;}
.ls10{letter-spacing:14.757812pt;}
.ls1e{letter-spacing:14.759412pt;}
.ls22{letter-spacing:14.759467pt;}
.ls1c{letter-spacing:14.760700pt;}
.ls1f{letter-spacing:14.763145pt;}
.ls2a{letter-spacing:14.963367pt;}
.ls35{letter-spacing:16.439392pt;}
.ls1b{letter-spacing:17.704700pt;}
.ls26{letter-spacing:17.707145pt;}
.ls3b{letter-spacing:18.360700pt;}
.ls21{letter-spacing:18.558559pt;}
.ls28{letter-spacing:18.590033pt;}
.lsa{letter-spacing:19.005599pt;}
.lsc{letter-spacing:19.223392pt;}
.ls3c{letter-spacing:19.804725pt;}
.ls32{letter-spacing:20.190033pt;}
.ls27{letter-spacing:20.261812pt;}
.ls9{letter-spacing:20.911146pt;}
.lse{letter-spacing:21.367392pt;}
.lsd{letter-spacing:21.372725pt;}
.ls4{letter-spacing:21.479392pt;}
.ls33{letter-spacing:21.587367pt;}
.ls5{letter-spacing:22.418059pt;}
.ls29{letter-spacing:22.696700pt;}
.ls3a{letter-spacing:23.070033pt;}
.ls15{letter-spacing:23.499426pt;}
.lsb{letter-spacing:24.199392pt;}
.ls36{letter-spacing:24.907261pt;}
.ls38{letter-spacing:25.632594pt;}
.ls2b{letter-spacing:26.195367pt;}
.ls2c{letter-spacing:26.206033pt;}
.ls1{letter-spacing:26.566933pt;}
.ls3{letter-spacing:26.569047pt;}
.ls1a{letter-spacing:32.464479pt;}
.ls0{letter-spacing:49.133340pt;}
.ls6{letter-spacing:84.144131pt;}
.ws12a{word-spacing:-53.133867pt;}
.ws2{word-spacing:-42.074535pt;}
.wsa{word-spacing:-41.545370pt;}
.ws10b{word-spacing:-41.338148pt;}
.ws14f{word-spacing:-38.393191pt;}
.wsf{word-spacing:-37.985401pt;}
.wse{word-spacing:-35.488110pt;}
.ws33{word-spacing:-30.546660pt;}
.ws9{word-spacing:-30.280991pt;}
.wsc{word-spacing:-28.952644pt;}
.ws40{word-spacing:-27.151406pt;}
.ws56{word-spacing:-26.561620pt;}
.ws8{word-spacing:-25.392675pt;}
.ws10{word-spacing:-18.910343pt;}
.ws156{word-spacing:-14.524623pt;}
.ws158{word-spacing:-14.500232pt;}
.ws84{word-spacing:-14.181429pt;}
.ws5f{word-spacing:-14.070753pt;}
.ws12{word-spacing:-14.026680pt;}
.ws27{word-spacing:-13.490689pt;}
.ws4c{word-spacing:-13.278153pt;}
.ws12f{word-spacing:-13.225019pt;}
.wse7{word-spacing:-13.118752pt;}
.ws88{word-spacing:-13.012484pt;}
.wsdb{word-spacing:-12.959350pt;}
.wsea{word-spacing:-12.906216pt;}
.ws29{word-spacing:-12.894786pt;}
.ws72{word-spacing:-12.853082pt;}
.ws7b{word-spacing:-12.842407pt;}
.ws77{word-spacing:-12.842369pt;}
.ws7c{word-spacing:-12.839166pt;}
.ws78{word-spacing:-12.836670pt;}
.ws76{word-spacing:-12.834976pt;}
.ws79{word-spacing:-12.831432pt;}
.ws25{word-spacing:-12.799948pt;}
.ws94{word-spacing:-12.746815pt;}
.ws5b{word-spacing:-12.693681pt;}
.ws6e{word-spacing:-12.587413pt;}
.ws16{word-spacing:-12.534279pt;}
.ws1d{word-spacing:-12.481145pt;}
.ws90{word-spacing:-12.428011pt;}
.ws123{word-spacing:-12.321744pt;}
.ws128{word-spacing:-12.215476pt;}
.wsbe{word-spacing:-12.162342pt;}
.wsc0{word-spacing:-12.109208pt;}
.ws91{word-spacing:-12.002940pt;}
.ws9a{word-spacing:-11.896673pt;}
.wsd2{word-spacing:-11.843539pt;}
.ws185{word-spacing:-11.737271pt;}
.ws1c{word-spacing:-11.684137pt;}
.ws95{word-spacing:-11.631003pt;}
.ws23{word-spacing:-11.577870pt;}
.ws14{word-spacing:-11.524736pt;}
.ws1e{word-spacing:-11.476915pt;}
.wscc{word-spacing:-11.471602pt;}
.ws12b{word-spacing:-11.454063pt;}
.ws12d{word-spacing:-11.418468pt;}
.ws8c{word-spacing:-11.365334pt;}
.ws7a{word-spacing:-11.312200pt;}
.ws17d{word-spacing:-11.259066pt;}
.wsce{word-spacing:-11.205932pt;}
.wsbf{word-spacing:-11.158112pt;}
.ws69{word-spacing:-11.152799pt;}
.ws159{word-spacing:-11.125378pt;}
.ws157{word-spacing:-11.115325pt;}
.ws5d{word-spacing:-11.099665pt;}
.ws8e{word-spacing:-11.046531pt;}
.ws54{word-spacing:-10.993397pt;}
.ws127{word-spacing:-10.940263pt;}
.wsd4{word-spacing:-10.833995pt;}
.ws7f{word-spacing:-10.727728pt;}
.wsd3{word-spacing:-10.568326pt;}
.ws22{word-spacing:-10.515192pt;}
.ws18f{word-spacing:-10.468599pt;}
.ws191{word-spacing:-10.462058pt;}
.wsd1{word-spacing:-10.408924pt;}
.ws58{word-spacing:-10.355791pt;}
.ws75{word-spacing:-10.249523pt;}
.ws7{word-spacing:-10.196389pt;}
.ws2d{word-spacing:-10.143255pt;}
.ws17f{word-spacing:-10.123006pt;}
.ws2e{word-spacing:-10.090121pt;}
.ws145{word-spacing:-9.983854pt;}
.ws43{word-spacing:-9.824452pt;}
.wsdc{word-spacing:-9.771318pt;}
.wsac{word-spacing:-9.723498pt;}
.ws39{word-spacing:-9.718184pt;}
.ws52{word-spacing:-9.665050pt;}
.wsd5{word-spacing:-9.611916pt;}
.ws18c{word-spacing:-9.598201pt;}
.wsfb{word-spacing:-9.564198pt;}
.wscf{word-spacing:-9.558783pt;}
.wscb{word-spacing:-9.505649pt;}
.wsa8{word-spacing:-9.399381pt;}
.wsbc{word-spacing:-9.396865pt;}
.ws55{word-spacing:-9.346247pt;}
.ws3{word-spacing:-9.344833pt;}
.ws5e{word-spacing:-9.293113pt;}
.wsb2{word-spacing:-9.239979pt;}
.wsd9{word-spacing:-9.232638pt;}
.ws85{word-spacing:-9.186846pt;}
.ws2c{word-spacing:-9.080578pt;}
.ws6f{word-spacing:-9.027444pt;}
.ws98{word-spacing:-9.024017pt;}
.ws4a{word-spacing:-8.974310pt;}
.ws34{word-spacing:-8.941525pt;}
.ws35{word-spacing:-8.934181pt;}
.ws37{word-spacing:-8.933672pt;}
.ws38{word-spacing:-8.921176pt;}
.ws1f{word-spacing:-8.868042pt;}
.ws133{word-spacing:-8.867900pt;}
.ws182{word-spacing:-8.858462pt;}
.ws181{word-spacing:-8.854911pt;}
.ws74{word-spacing:-8.853672pt;}
.ws16a{word-spacing:-8.853129pt;}
.ws10e{word-spacing:-8.845734pt;}
.ws1a{word-spacing:-8.827831pt;}
.ws19{word-spacing:-8.814908pt;}
.wsd0{word-spacing:-8.761775pt;}
.ws64{word-spacing:-8.655507pt;}
.ws178{word-spacing:-8.619006pt;}
.wsdf{word-spacing:-8.602373pt;}
.wsdd{word-spacing:-8.496105pt;}
.ws28{word-spacing:-8.442971pt;}
.ws8b{word-spacing:-8.389838pt;}
.ws15a{word-spacing:-8.351034pt;}
.ws18{word-spacing:-8.336704pt;}
.ws53{word-spacing:-8.283570pt;}
.ws87{word-spacing:-8.230436pt;}
.ws70{word-spacing:-8.182615pt;}
.ws65{word-spacing:-8.177302pt;}
.ws89{word-spacing:-8.170245pt;}
.wsfe{word-spacing:-8.155006pt;}
.ws20{word-spacing:-8.129482pt;}
.ws7e{word-spacing:-8.124168pt;}
.ws15{word-spacing:-8.071034pt;}
.wsca{word-spacing:-8.017900pt;}
.ws82{word-spacing:-7.964767pt;}
.ws24{word-spacing:-7.858499pt;}
.wsa7{word-spacing:-7.699097pt;}
.wsa5{word-spacing:-7.645963pt;}
.ws6c{word-spacing:-7.592830pt;}
.ws17{word-spacing:-7.539696pt;}
.wsc5{word-spacing:-7.433428pt;}
.wsab{word-spacing:-7.380294pt;}
.ws83{word-spacing:-7.332474pt;}
.ws2a{word-spacing:-7.327160pt;}
.wse9{word-spacing:-7.274026pt;}
.wsc8{word-spacing:-7.220892pt;}
.wsf5{word-spacing:-7.205129pt;}
.wsf1{word-spacing:-7.200407pt;}
.ws62{word-spacing:-7.167759pt;}
.ws186{word-spacing:-7.114625pt;}
.wse8{word-spacing:-7.061491pt;}
.wsc6{word-spacing:-7.008357pt;}
.ws80{word-spacing:-6.953402pt;}
.ws10f{word-spacing:-6.902089pt;}
.ws192{word-spacing:-6.852921pt;}
.ws44{word-spacing:-6.848955pt;}
.ws81{word-spacing:-6.748001pt;}
.ws4b{word-spacing:-6.742688pt;}
.ws50{word-spacing:-6.689554pt;}
.ws92{word-spacing:-6.636420pt;}
.ws3d{word-spacing:-6.530152pt;}
.ws104{word-spacing:-6.477018pt;}
.ws106{word-spacing:-6.453672pt;}
.wsb1{word-spacing:-6.423884pt;}
.ws16c{word-spacing:-6.391439pt;}
.wsa9{word-spacing:-6.370751pt;}
.ws16e{word-spacing:-6.368339pt;}
.ws45{word-spacing:-6.322930pt;}
.ws11f{word-spacing:-6.317617pt;}
.ws15d{word-spacing:-6.299006pt;}
.wseb{word-spacing:-6.264483pt;}
.wsd8{word-spacing:-6.211349pt;}
.ws57{word-spacing:-6.158215pt;}
.wsef{word-spacing:-6.142572pt;}
.ws71{word-spacing:-6.105081pt;}
.ws174{word-spacing:-6.066241pt;}
.ws49{word-spacing:-6.051947pt;}
.wsb5{word-spacing:-6.004127pt;}
.wsed{word-spacing:-5.946547pt;}
.wsec{word-spacing:-5.945680pt;}
.ws18a{word-spacing:-5.920339pt;}
.wsa0{word-spacing:-5.892546pt;}
.wsb3{word-spacing:-5.849118pt;}
.ws199{word-spacing:-5.839412pt;}
.ws47{word-spacing:-5.786278pt;}
.ws124{word-spacing:-5.733144pt;}
.ws115{word-spacing:-5.680010pt;}
.wsda{word-spacing:-5.573743pt;}
.wsb8{word-spacing:-5.361207pt;}
.wsba{word-spacing:-5.354462pt;}
.wsb4{word-spacing:-5.308073pt;}
.wsbd{word-spacing:-5.301773pt;}
.ws4f{word-spacing:-5.254939pt;}
.wsd6{word-spacing:-5.201806pt;}
.ws188{word-spacing:-5.183977pt;}
.ws2f{word-spacing:-5.095538pt;}
.ws32{word-spacing:-5.085525pt;}
.ws31{word-spacing:-5.083006pt;}
.ws2b{word-spacing:-5.042404pt;}
.wsaa{word-spacing:-4.989270pt;}
.ws15b{word-spacing:-4.981378pt;}
.ws6d{word-spacing:-4.936136pt;}
.ws161{word-spacing:-4.883002pt;}
.ws197{word-spacing:-4.829868pt;}
.ws73{word-spacing:-4.745611pt;}
.ws117{word-spacing:-4.739343pt;}
.ws194{word-spacing:-4.670467pt;}
.ws8a{word-spacing:-4.667424pt;}
.ws195{word-spacing:-4.634462pt;}
.ws196{word-spacing:-4.617333pt;}
.wsaf{word-spacing:-4.581129pt;}
.wsad{word-spacing:-4.564199pt;}
.ws120{word-spacing:-4.511065pt;}
.wsb7{word-spacing:-4.404798pt;}
.wsff{word-spacing:-4.399735pt;}
.ws101{word-spacing:-4.351664pt;}
.ws3b{word-spacing:-4.298530pt;}
.ws5c{word-spacing:-4.245396pt;}
.wsb0{word-spacing:-4.197575pt;}
.ws61{word-spacing:-4.192262pt;}
.ws131{word-spacing:-4.139128pt;}
.ws121{word-spacing:-4.097441pt;}
.ws184{word-spacing:-4.085994pt;}
.wse2{word-spacing:-4.032860pt;}
.ws7d{word-spacing:-3.979727pt;}
.ws6a{word-spacing:-3.926593pt;}
.ws9f{word-spacing:-3.840339pt;}
.ws9d{word-spacing:-3.820325pt;}
.ws130{word-spacing:-3.767191pt;}
.wsb6{word-spacing:-3.714057pt;}
.wsa1{word-spacing:-3.660923pt;}
.wsa3{word-spacing:-3.644993pt;}
.ws146{word-spacing:-3.554656pt;}
.ws180{word-spacing:-3.518218pt;}
.ws17e{word-spacing:-3.512884pt;}
.ws3e{word-spacing:-3.501522pt;}
.ws177{word-spacing:-3.492315pt;}
.ws5a{word-spacing:-3.448388pt;}
.wsc9{word-spacing:-3.395254pt;}
.ws41{word-spacing:-3.288986pt;}
.wsc7{word-spacing:-3.206275pt;}
.ws116{word-spacing:-3.134898pt;}
.wsc2{word-spacing:-3.076451pt;}
.ws68{word-spacing:-2.970183pt;}
.ws15c{word-spacing:-2.907325pt;}
.ws3f{word-spacing:-2.863915pt;}
.ws113{word-spacing:-2.757648pt;}
.wsa6{word-spacing:-2.745591pt;}
.ws11d{word-spacing:-2.545112pt;}
.ws4e{word-spacing:-2.385711pt;}
.ws9c{word-spacing:-2.332577pt;}
.wsc3{word-spacing:-2.173175pt;}
.ws160{word-spacing:-2.102551pt;}
.ws60{word-spacing:-2.066907pt;}
.ws67{word-spacing:-2.013774pt;}
.wsbb{word-spacing:-1.978997pt;}
.wsfc{word-spacing:-1.907506pt;}
.wsde{word-spacing:-1.110498pt;}
.wsc1{word-spacing:-1.057364pt;}
.ws51{word-spacing:-1.004230pt;}
.ws99{word-spacing:-0.951096pt;}
.ws114{word-spacing:-0.869730pt;}
.ws66{word-spacing:-0.844828pt;}
.wsae{word-spacing:-0.811601pt;}
.ws4d{word-spacing:-0.791695pt;}
.ws11b{word-spacing:-0.579159pt;}
.ws11c{word-spacing:-0.531339pt;}
.wsb9{word-spacing:-0.453914pt;}
.ws15f{word-spacing:-0.366624pt;}
.ws59{word-spacing:-0.260356pt;}
.wsa4{word-spacing:-0.179197pt;}
.ws1{word-spacing:-0.132198pt;}
.ws144{word-spacing:-0.100954pt;}
.ws21{word-spacing:-0.053134pt;}
.ws11{word-spacing:0.000000pt;}
.wsb{word-spacing:0.005313pt;}
.ws9e{word-spacing:0.267722pt;}
.ws6b{word-spacing:1.202412pt;}
.wsa2{word-spacing:1.231760pt;}
.ws119{word-spacing:1.511977pt;}
.wsc4{word-spacing:1.631646pt;}
.ws198{word-spacing:1.652463pt;}
.ws15e{word-spacing:1.786522pt;}
.ws179{word-spacing:8.773975pt;}
.ws162{word-spacing:8.797160pt;}
.ws163{word-spacing:8.805699pt;}
.ws142{word-spacing:8.820222pt;}
.ws103{word-spacing:10.472685pt;}
.ws10a{word-spacing:11.742500pt;}
.ws125{word-spacing:13.863666pt;}
.ws12e{word-spacing:14.090300pt;}
.ws122{word-spacing:14.195347pt;}
.ws129{word-spacing:14.301666pt;}
.ws112{word-spacing:14.500966pt;}
.ws13f{word-spacing:14.679725pt;}
.ws140{word-spacing:14.684790pt;}
.ws171{word-spacing:14.685058pt;}
.ws173{word-spacing:14.685762pt;}
.ws135{word-spacing:14.690123pt;}
.ws155{word-spacing:14.695767pt;}
.ws13b{word-spacing:14.696333pt;}
.ws14a{word-spacing:14.697957pt;}
.ws154{word-spacing:14.699700pt;}
.ws13d{word-spacing:14.700266pt;}
.ws149{word-spacing:14.703134pt;}
.ws152{word-spacing:14.703633pt;}
.ws17a{word-spacing:14.705505pt;}
.ws150{word-spacing:14.705600pt;}
.ws147{word-spacing:14.705742pt;}
.ws137{word-spacing:14.708467pt;}
.ws138{word-spacing:14.709484pt;}
.ws153{word-spacing:14.725069pt;}
.ws151{word-spacing:14.726139pt;}
.ws14e{word-spacing:14.728673pt;}
.ws13{word-spacing:14.990014pt;}
.ws12c{word-spacing:15.066300pt;}
.ws8d{word-spacing:15.156966pt;}
.ws8f{word-spacing:15.469100pt;}
.ws13e{word-spacing:15.758728pt;}
.ws139{word-spacing:15.764061pt;}
.wsd7{word-spacing:15.973253pt;}
.ws18e{word-spacing:16.038933pt;}
.wse1{word-spacing:16.099000pt;}
.ws172{word-spacing:16.157974pt;}
.ws18d{word-spacing:16.161600pt;}
.ws14b{word-spacing:16.171499pt;}
.ws14d{word-spacing:16.176833pt;}
.ws3a{word-spacing:16.766500pt;}
.ws110{word-spacing:16.938300pt;}
.wsfa{word-spacing:16.959633pt;}
.wsf9{word-spacing:16.963000pt;}
.ws10c{word-spacing:17.379577pt;}
.ws10d{word-spacing:17.380723pt;}
.ws109{word-spacing:17.381868pt;}
.ws108{word-spacing:17.386451pt;}
.ws36{word-spacing:17.565666pt;}
.ws169{word-spacing:17.631334pt;}
.ws97{word-spacing:17.633320pt;}
.ws136{word-spacing:17.634123pt;}
.ws13a{word-spacing:17.640444pt;}
.ws168{word-spacing:17.642055pt;}
.wse0{word-spacing:17.645100pt;}
.wse5{word-spacing:17.645666pt;}
.ws26{word-spacing:17.646014pt;}
.ws166{word-spacing:17.647955pt;}
.ws167{word-spacing:17.649922pt;}
.ws187{word-spacing:17.651000pt;}
.ws164{word-spacing:17.651584pt;}
.ws165{word-spacing:17.651889pt;}
.ws118{word-spacing:17.652966pt;}
.ws143{word-spacing:17.654011pt;}
.ws17b{word-spacing:17.654839pt;}
.ws16f{word-spacing:17.654933pt;}
.ws148{word-spacing:17.655075pt;}
.ws134{word-spacing:17.656854pt;}
.ws16b{word-spacing:17.657788pt;}
.ws170{word-spacing:17.662011pt;}
.ws1b{word-spacing:17.683347pt;}
.ws14c{word-spacing:17.693578pt;}
.ws86{word-spacing:18.216333pt;}
.wsfd{word-spacing:18.339833pt;}
.wsd{word-spacing:18.602167pt;}
.ws96{word-spacing:18.911066pt;}
.ws111{word-spacing:19.114300pt;}
.wsf6{word-spacing:19.295633pt;}
.wsf3{word-spacing:19.300966pt;}
.wsf2{word-spacing:19.302366pt;}
.wsf4{word-spacing:19.304333pt;}
.ws183{word-spacing:19.304681pt;}
.ws11e{word-spacing:19.432681pt;}
.wsf7{word-spacing:19.443000pt;}
.wsf8{word-spacing:19.446366pt;}
.ws193{word-spacing:19.652966pt;}
.ws93{word-spacing:19.880620pt;}
.ws126{word-spacing:19.978334pt;}
.ws107{word-spacing:20.040333pt;}
.ws105{word-spacing:20.042300pt;}
.ws16d{word-spacing:20.134933pt;}
.ws5{word-spacing:20.317243pt;}
.wsf0{word-spacing:20.363700pt;}
.ws176{word-spacing:20.451520pt;}
.ws189{word-spacing:20.569167pt;}
.wsee{word-spacing:20.574500pt;}
.ws18b{word-spacing:20.575066pt;}
.ws48{word-spacing:20.718014pt;}
.ws30{word-spacing:21.416333pt;}
.ws175{word-spacing:21.915499pt;}
.ws13c{word-spacing:22.072662pt;}
.ws102{word-spacing:22.121167pt;}
.ws100{word-spacing:22.129033pt;}
.ws3c{word-spacing:22.216333pt;}
.wse4{word-spacing:22.801867pt;}
.ws190{word-spacing:23.014933pt;}
.ws132{word-spacing:23.648151pt;}
.ws63{word-spacing:23.846639pt;}
.ws9b{word-spacing:24.157100pt;}
.wse3{word-spacing:25.462366pt;}
.ws11a{word-spacing:25.955347pt;}
.ws141{word-spacing:26.460666pt;}
.wscd{word-spacing:27.789012pt;}
.ws42{word-spacing:27.842146pt;}
.ws46{word-spacing:27.973313pt;}
.ws0{word-spacing:40.079240pt;}
.wse6{word-spacing:42.089838pt;}
.ws17c{word-spacing:71.667439pt;}
.ws6{word-spacing:1488.656856pt;}
.ws4{word-spacing:1542.114577pt;}
._8{margin-left:-28.001548pt;}
._6{margin-left:-26.566933pt;}
._d{margin-left:-25.079185pt;}
._7{margin-left:-8.873356pt;}
._27{margin-left:-7.039202pt;}
._3{margin-left:-5.100851pt;}
._2d{margin-left:-4.203567pt;}
._0{margin-left:-3.304947pt;}
._1{margin-left:-2.371905pt;}
._4{margin-left:-1.028662pt;}
._19{width:1.487748pt;}
._2b{width:3.005262pt;}
._34{width:4.566280pt;}
._9{width:5.738458pt;}
._38{width:6.639767pt;}
._37{width:8.384504pt;}
._36{width:9.309074pt;}
._33{width:13.873930pt;}
._13{width:15.036884pt;}
._1e{width:16.095339pt;}
._f{width:17.693578pt;}
._12{width:18.630868pt;}
._1b{width:19.969862pt;}
._26{width:20.881610pt;}
._1d{width:21.857138pt;}
._1c{width:22.872673pt;}
._21{width:23.857106pt;}
._14{width:24.760382pt;}
._29{width:25.663658pt;}
._28{width:26.683848pt;}
._b{width:27.735878pt;}
._20{width:28.801353pt;}
._35{width:29.844925pt;}
._23{width:30.742323pt;}
._32{width:32.411659pt;}
._c{width:34.218210pt;}
._30{width:35.280887pt;}
._39{width:36.293976pt;}
._22{width:37.353108pt;}
._2e{width:38.483815pt;}
._2c{width:39.425329pt;}
._25{width:40.381739pt;}
._24{width:41.971430pt;}
._1a{width:43.410369pt;}
._10{width:46.385866pt;}
._2a{width:47.618591pt;}
._2{width:49.148827pt;}
._11{width:50.424039pt;}
._e{width:54.302812pt;}
._18{width:60.785143pt;}
._2f{width:71.731200pt;}
._a{width:76.990973pt;}
._1f{width:84.164373pt;}
._31{width:595.844740pt;}
._5{width:1576.960029pt;}
._15{width:1666.862531pt;}
._17{width:1735.458353pt;}
._16{width:1910.378834pt;}
.fs4{font-size:37.193600pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:75.349333pt;}
.y17e{bottom:115.200000pt;}
.yf7{bottom:116.138667pt;}
.y1c0{bottom:120.149333pt;}
.y158{bottom:131.018667pt;}
.y17d{bottom:131.140000pt;}
.yf6{bottom:132.078667pt;}
.y1bf{bottom:136.090667pt;}
.y157{bottom:146.958667pt;}
.y94{bottom:152.533333pt;}
.y19e{bottom:154.826667pt;}
.yf5{bottom:155.989333pt;}
.y4a{bottom:157.338667pt;}
.y75{bottom:159.925333pt;}
.y1be{bottom:160.606667pt;}
.y156{bottom:162.898667pt;}
.y17c{bottom:167.350667pt;}
.yf4{bottom:171.929333pt;}
.y74{bottom:175.865333pt;}
.y19d{bottom:178.737333pt;}
.y155{bottom:178.838667pt;}
.y110{bottom:178.973333pt;}
.ya4{bottom:183.092000pt;}
.y17b{bottom:187.276000pt;}
.yf3{bottom:187.869333pt;}
.y14e{bottom:189.830667pt;}
.y73{bottom:191.806667pt;}
.y19c{bottom:194.677333pt;}
.y154{bottom:194.778667pt;}
.y10f{bottom:194.913333pt;}
.y1bd{bottom:195.130667pt;}
.ya3{bottom:199.032000pt;}
.y33{bottom:201.765333pt;}
.y139{bottom:202.390667pt;}
.y14d{bottom:205.770667pt;}
.yaf{bottom:206.549333pt;}
.y17a{bottom:207.201333pt;}
.y72{bottom:207.746667pt;}
.y19b{bottom:210.617333pt;}
.y1bc{bottom:211.070667pt;}
.yf2{bottom:212.386667pt;}
.ya2{bottom:214.972000pt;}
.y32{bottom:217.705333pt;}
.y138{bottom:218.330667pt;}
.y153{bottom:218.689333pt;}
.y14c{bottom:221.710667pt;}
.yae{bottom:222.489333pt;}
.y19{bottom:222.556000pt;}
.y10e{bottom:223.501333pt;}
.y1bb{bottom:227.010667pt;}
.y179{bottom:227.126667pt;}
.ya1{bottom:230.912000pt;}
.ydb{bottom:231.916000pt;}
.y71{bottom:232.264000pt;}
.y19a{bottom:234.528000pt;}
.y14b{bottom:237.650667pt;}
.yad{bottom:238.429333pt;}
.y18{bottom:238.496000pt;}
.y31{bottom:241.616000pt;}
.y1ba{bottom:242.950667pt;}
.ya0{bottom:246.852000pt;}
.y178{bottom:247.052000pt;}
.yda{bottom:247.856000pt;}
.y199{bottom:250.468000pt;}
.yc8{bottom:252.489333pt;}
.yac{bottom:254.369333pt;}
.y17{bottom:254.437333pt;}
.yf1{bottom:255.457333pt;}
.y137{bottom:256.552000pt;}
.y1b9{bottom:258.892000pt;}
.y5f{bottom:263.622667pt;}
.yd9{bottom:263.796000pt;}
.y144{bottom:264.558667pt;}
.y30{bottom:265.525333pt;}
.y177{bottom:266.977333pt;}
.y70{bottom:269.444000pt;}
.y16{bottom:270.377333pt;}
.y198{bottom:274.378667pt;}
.y1b8{bottom:274.832000pt;}
.y9f{bottom:275.441333pt;}
.y136{bottom:276.477333pt;}
.y121{bottom:279.285333pt;}
.y5e{bottom:279.562667pt;}
.yd8{bottom:279.737333pt;}
.y143{bottom:280.498667pt;}
.y104{bottom:282.817333pt;}
.yab{bottom:283.769333pt;}
.y7d{bottom:284.374667pt;}
.y6f{bottom:285.384000pt;}
.y15{bottom:286.317333pt;}
.y176{bottom:286.902667pt;}
.y2f{bottom:289.436000pt;}
.y197{bottom:290.318667pt;}
.y5d{bottom:295.502667pt;}
.yd7{bottom:295.677333pt;}
.y135{bottom:296.402667pt;}
.ybd{bottom:297.732000pt;}
.y103{bottom:298.757333pt;}
.y1b7{bottom:299.349333pt;}
.y7c{bottom:300.316000pt;}
.y14{bottom:302.257333pt;}
.y120{bottom:304.329333pt;}
.y142{bottom:304.408000pt;}
.y6e{bottom:306.413333pt;}
.y175{bottom:306.828000pt;}
.y5c{bottom:311.444000pt;}
.yd6{bottom:311.617333pt;}
.y2e{bottom:313.346667pt;}
.ybc{bottom:313.672000pt;}
.y196{bottom:314.229333pt;}
.y102{bottom:314.697333pt;}
.y7b{bottom:316.256000pt;}
.y134{bottom:316.328000pt;}
.y13{bottom:318.197333pt;}
.y141{bottom:320.349333pt;}
.y174{bottom:326.753333pt;}
.yd5{bottom:327.557333pt;}
.y11f{bottom:329.374667pt;}
.ybb{bottom:329.612000pt;}
.y195{bottom:330.169333pt;}
.y101{bottom:330.637333pt;}
.y12{bottom:334.138667pt;}
.y5b{bottom:335.353333pt;}
.y133{bottom:336.253333pt;}
.y140{bottom:336.289333pt;}
.y1b6{bottom:336.529333pt;}
.y2d{bottom:337.257333pt;}
.y128{bottom:342.342667pt;}
.yd4{bottom:343.497333pt;}
.y11e{bottom:345.314667pt;}
.yba{bottom:345.552000pt;}
.y7a{bottom:346.470667pt;}
.y11{bottom:350.078667pt;}
.y5a{bottom:351.293333pt;}
.y13f{bottom:352.229333pt;}
.y1b5{bottom:352.469333pt;}
.yec{bottom:353.790667pt;}
.y194{bottom:354.080000pt;}
.y173{bottom:354.993333pt;}
.y100{bottom:359.226667pt;}
.y6d{bottom:360.786667pt;}
.y2c{bottom:361.166667pt;}
.y1dc{bottom:363.109333pt;}
.y10{bottom:366.018667pt;}
.y59{bottom:367.234667pt;}
.yeb{bottom:369.730667pt;}
.y193{bottom:370.020000pt;}
.yb9{bottom:370.069333pt;}
.y11d{bottom:370.358667pt;}
.y132{bottom:370.489333pt;}
.yd3{bottom:372.824000pt;}
.y13e{bottom:376.140000pt;}
.y6c{bottom:376.726667pt;}
.y172{bottom:378.904000pt;}
.y1db{bottom:379.049333pt;}
.y58{bottom:383.174667pt;}
.y2b{bottom:385.077333pt;}
.yea{bottom:385.670667pt;}
.y131{bottom:386.429333pt;}
.y13d{bottom:392.080000pt;}
.y1b4{bottom:392.320000pt;}
.y6b{bottom:392.668000pt;}
.y8c{bottom:393.518667pt;}
.y192{bottom:393.930667pt;}
.y171{bottom:394.844000pt;}
.y1da{bottom:394.990667pt;}
.yf{bottom:395.238667pt;}
.y11c{bottom:395.402667pt;}
.y57{bottom:399.114667pt;}
.y2a{bottom:401.017333pt;}
.y161{bottom:401.092000pt;}
.y130{bottom:402.369333pt;}
.y13c{bottom:408.020000pt;}
.y1b3{bottom:408.260000pt;}
.y6a{bottom:408.608000pt;}
.y191{bottom:409.870667pt;}
.ye9{bottom:410.188000pt;}
.y170{bottom:410.784000pt;}
.y1d9{bottom:410.930667pt;}
.y11b{bottom:411.342667pt;}
.yb8{bottom:413.140000pt;}
.y56{bottom:415.054667pt;}
.y29{bottom:416.957333pt;}
.y160{bottom:417.032000pt;}
.y12f{bottom:418.310667pt;}
.y13b{bottom:423.960000pt;}
.y1b2{bottom:424.200000pt;}
.ye{bottom:424.460000pt;}
.y69{bottom:424.548000pt;}
.y16f{bottom:426.725333pt;}
.y1d8{bottom:426.870667pt;}
.y8b{bottom:428.768000pt;}
.y14a{bottom:430.000000pt;}
.y28{bottom:432.898667pt;}
.y15f{bottom:432.972000pt;}
.y190{bottom:433.781333pt;}
.y12e{bottom:434.250667pt;}
.y11a{bottom:435.253333pt;}
.y9e{bottom:436.620000pt;}
.y55{bottom:438.965333pt;}
.y68{bottom:440.488000pt;}
.y149{bottom:445.941333pt;}
.y1b1{bottom:448.110667pt;}
.y27{bottom:448.838667pt;}
.y10d{bottom:449.594667pt;}
.y18f{bottom:449.721333pt;}
.y12d{bottom:450.190667pt;}
.yc7{bottom:450.258667pt;}
.y119{bottom:451.193333pt;}
.y16e{bottom:451.241333pt;}
.y1d7{bottom:451.388000pt;}
.y9d{bottom:452.560000pt;}
.y8a{bottom:452.678667pt;}
.ye8{bottom:453.258667pt;}
.yd{bottom:453.680000pt;}
.y54{bottom:454.905333pt;}
.y15e{bottom:456.882667pt;}
.y148{bottom:461.881333pt;}
.y1b0{bottom:464.050667pt;}
.y10c{bottom:465.534667pt;}
.yc6{bottom:466.200000pt;}
.y118{bottom:467.133333pt;}
.y9c{bottom:468.501333pt;}
.yc{bottom:469.620000pt;}
.y53{bottom:470.845333pt;}
.y26{bottom:472.749333pt;}
.y15d{bottom:472.822667pt;}
.y18e{bottom:473.632000pt;}
.y93{bottom:473.654667pt;}
.y89{bottom:476.588000pt;}
.y1af{bottom:479.990667pt;}
.y10b{bottom:481.474667pt;}
.yc5{bottom:482.140000pt;}
.yb{bottom:485.560000pt;}
.y16d{bottom:485.596000pt;}
.y1d6{bottom:485.910667pt;}
.y15c{bottom:488.762667pt;}
.y92{bottom:489.594667pt;}
.y117{bottom:491.044000pt;}
.y52{bottom:494.756000pt;}
.y9b{bottom:497.089333pt;}
.y18d{bottom:497.541333pt;}
.yc4{bottom:498.080000pt;}
.y88{bottom:500.498667pt;}
.ya{bottom:501.501333pt;}
.y1d5{bottom:501.850667pt;}
.y1ae{bottom:504.508000pt;}
.y10a{bottom:505.385333pt;}
.y116{bottom:506.984000pt;}
.y16c{bottom:509.506667pt;}
.y51{bottom:510.696000pt;}
.y9a{bottom:513.029333pt;}
.y91{bottom:513.505333pt;}
.yc3{bottom:514.020000pt;}
.y67{bottom:515.965333pt;}
.y87{bottom:516.438667pt;}
.y9{bottom:517.441333pt;}
.y1d4{bottom:517.792000pt;}
.y49{bottom:518.666667pt;}
.y109{bottom:521.325333pt;}
.y18c{bottom:521.452000pt;}
.y115{bottom:522.924000pt;}
.y50{bottom:526.636000pt;}
.y90{bottom:529.445333pt;}
.yc2{bottom:529.960000pt;}
.y66{bottom:531.905333pt;}
.y8{bottom:533.381333pt;}
.y1d3{bottom:533.732000pt;}
.y79{bottom:535.526667pt;}
.y108{bottom:537.265333pt;}
.y18b{bottom:537.392000pt;}
.y114{bottom:538.865333pt;}
.y86{bottom:540.349333pt;}
.y1ad{bottom:541.688000pt;}
.y48{bottom:542.577333pt;}
.yff{bottom:543.860000pt;}
.y8f{bottom:545.385333pt;}
.y16b{bottom:545.717333pt;}
.yc1{bottom:545.901333pt;}
.y65{bottom:547.845333pt;}
.y7{bottom:549.321333pt;}
.y1d2{bottom:549.672000pt;}
.y78{bottom:551.466667pt;}
.y107{bottom:553.206667pt;}
.y18a{bottom:553.332000pt;}
.y113{bottom:554.805333pt;}
.y47{bottom:558.517333pt;}
.yfe{bottom:559.800000pt;}
.yc0{bottom:561.841333pt;}
.y85{bottom:564.260000pt;}
.y6{bottom:565.261333pt;}
.y1ac{bottom:565.598667pt;}
.y1d1{bottom:565.612000pt;}
.y16a{bottom:565.642667pt;}
.y77{bottom:567.406667pt;}
.y106{bottom:569.146667pt;}
.y189{bottom:569.273333pt;}
.y8e{bottom:569.902667pt;}
.y112{bottom:570.745333pt;}
.y46{bottom:574.457333pt;}
.y64{bottom:576.434667pt;}
.ybf{bottom:577.781333pt;}
.y5{bottom:581.201333pt;}
.y188{bottom:585.213333pt;}
.y169{bottom:585.568000pt;}
.y84{bottom:588.170667pt;}
.y1ab{bottom:589.508000pt;}
.y1d0{bottom:589.522667pt;}
.y76{bottom:595.996000pt;}
.y105{bottom:597.734667pt;}
.y45{bottom:598.368000pt;}
.yd2{bottom:599.162667pt;}
.y8d{bottom:603.554667pt;}
.y111{bottom:603.869333pt;}
.y1aa{bottom:605.449333pt;}
.y1cf{bottom:605.462667pt;}
.y168{bottom:605.493333pt;}
.ye7{bottom:606.018667pt;}
.ybe{bottom:607.181333pt;}
.y187{bottom:609.122667pt;}
.y4{bottom:610.422667pt;}
.yb7{bottom:611.968000pt;}
.y83{bottom:612.080000pt;}
.yf0{bottom:612.142667pt;}
.y44{bottom:614.308000pt;}
.y1a9{bottom:621.389333pt;}
.ye6{bottom:621.958667pt;}
.yd1{bottom:623.073333pt;}
.y167{bottom:625.418667pt;}
.yaa{bottom:626.657333pt;}
.yb6{bottom:627.909333pt;}
.yef{bottom:628.082667pt;}
.y1ce{bottom:629.373333pt;}
.y43{bottom:630.248000pt;}
.y82{bottom:635.990667pt;}
.y1a8{bottom:637.329333pt;}
.ye5{bottom:637.898667pt;}
.y3{bottom:639.642667pt;}
.y186{bottom:640.593333pt;}
.ya9{bottom:642.597333pt;}
.yb5{bottom:643.849333pt;}
.yee{bottom:644.022667pt;}
.y1cd{bottom:645.313333pt;}
.y63{bottom:645.420000pt;}
.y42{bottom:646.188000pt;}
.yd0{bottom:646.982667pt;}
.y147{bottom:651.145333pt;}
.y81{bottom:651.930667pt;}
.y166{bottom:653.658667pt;}
.ya8{bottom:658.537333pt;}
.yb4{bottom:659.789333pt;}
.ye4{bottom:661.809333pt;}
.y41{bottom:662.128000pt;}
.y185{bottom:664.502667pt;}
.y146{bottom:667.086667pt;}
.y1cc{bottom:669.224000pt;}
.y165{bottom:669.600000pt;}
.y62{bottom:669.936000pt;}
.y4f{bottom:670.098667pt;}
.ycf{bottom:670.893333pt;}
.yed{bottom:672.610667pt;}
.y152{bottom:673.829333pt;}
.ya7{bottom:674.477333pt;}
.y1a7{bottom:674.522667pt;}
.yb3{bottom:675.729333pt;}
.y2{bottom:675.773333pt;}
.y80{bottom:675.841333pt;}
.ye3{bottom:677.749333pt;}
.y145{bottom:683.026667pt;}
.y1cb{bottom:685.164000pt;}
.y164{bottom:685.540000pt;}
.y40{bottom:686.038667pt;}
.y184{bottom:688.413333pt;}
.y151{bottom:689.769333pt;}
.yb2{bottom:691.669333pt;}
.y7f{bottom:691.781333pt;}
.y13a{bottom:693.053333pt;}
.y12c{bottom:694.009333pt;}
.y1a6{bottom:694.448000pt;}
.yce{bottom:694.804000pt;}
.ya6{bottom:698.994667pt;}
.y127{bottom:699.474667pt;}
.y1ca{bottom:701.104000pt;}
.ye2{bottom:701.660000pt;}
.y3f{bottom:701.978667pt;}
.y183{bottom:704.353333pt;}
.y150{bottom:705.709333pt;}
.y61{bottom:707.116000pt;}
.y1e7{bottom:707.256000pt;}
.yb1{bottom:707.610667pt;}
.y12b{bottom:709.949333pt;}
.y163{bottom:710.057333pt;}
.y1a5{bottom:714.373333pt;}
.y126{bottom:715.414667pt;}
.y1c9{bottom:717.044000pt;}
.ye1{bottom:717.600000pt;}
.y3e{bottom:717.918667pt;}
.ycd{bottom:718.714667pt;}
.y7e{bottom:720.370667pt;}
.y14f{bottom:721.649333pt;}
.y1e6{bottom:723.196000pt;}
.y12a{bottom:725.889333pt;}
.y182{bottom:728.264000pt;}
.y125{bottom:731.354667pt;}
.y60{bottom:733.122667pt;}
.ye0{bottom:733.540000pt;}
.y3d{bottom:733.860000pt;}
.y1a4{bottom:734.298667pt;}
.ycc{bottom:734.654667pt;}
.yb0{bottom:736.198667pt;}
.y162{bottom:736.698667pt;}
.y1e5{bottom:739.136000pt;}
.y1c8{bottom:740.954667pt;}
.y25{bottom:741.018667pt;}
.y129{bottom:741.829333pt;}
.ya5{bottom:742.066667pt;}
.y124{bottom:747.294667pt;}
.ydf{bottom:749.480000pt;}
.y3c{bottom:749.800000pt;}
.ycb{bottom:750.594667pt;}
.y181{bottom:752.174667pt;}
.y1a3{bottom:754.224000pt;}
.y24{bottom:756.958667pt;}
.y4e{bottom:757.769333pt;}
.y1e4{bottom:763.046667pt;}
.y123{bottom:763.236000pt;}
.y1c7{bottom:764.865333pt;}
.yde{bottom:765.421333pt;}
.yca{bottom:766.534667pt;}
.y23{bottom:772.898667pt;}
.y3b{bottom:773.710667pt;}
.y1a2{bottom:774.149333pt;}
.y180{bottom:776.084000pt;}
.y1e3{bottom:778.986667pt;}
.ydd{bottom:781.361333pt;}
.y1c6{bottom:788.774667pt;}
.y22{bottom:788.838667pt;}
.y122{bottom:789.260000pt;}
.y3a{bottom:789.650667pt;}
.y1a1{bottom:794.074667pt;}
.yc9{bottom:795.934667pt;}
.y17f{bottom:799.994667pt;}
.y1e2{bottom:802.897333pt;}
.y1c5{bottom:804.716000pt;}
.y39{bottom:805.590667pt;}
.y15b{bottom:807.965333pt;}
.ydc{bottom:809.949333pt;}
.y21{bottom:812.749333pt;}
.y4d{bottom:813.560000pt;}
.y1a0{bottom:814.000000pt;}
.y1{bottom:817.974667pt;}
.y1e1{bottom:818.837333pt;}
.y1c4{bottom:820.656000pt;}
.y38{bottom:821.530667pt;}
.y15a{bottom:823.905333pt;}
.y20{bottom:828.689333pt;}
.y4c{bottom:829.501333pt;}
.yfd{bottom:831.876000pt;}
.y19f{bottom:833.925333pt;}
.y1e0{bottom:834.778667pt;}
.y1c3{bottom:836.596000pt;}
.y37{bottom:837.470667pt;}
.y159{bottom:839.845333pt;}
.y1f{bottom:844.629333pt;}
.y4b{bottom:845.441333pt;}
.yfc{bottom:847.816000pt;}
.y1c2{bottom:852.536000pt;}
.y99{bottom:855.178667pt;}
.y1df{bottom:858.688000pt;}
.y1e{bottom:860.569333pt;}
.y36{bottom:861.381333pt;}
.yfb{bottom:863.756000pt;}
.y98{bottom:871.118667pt;}
.y1de{bottom:874.628000pt;}
.y1d{bottom:876.509333pt;}
.y1c1{bottom:877.053333pt;}
.y35{bottom:877.321333pt;}
.yfa{bottom:879.696000pt;}
.y97{bottom:887.060000pt;}
.y1dd{bottom:890.569333pt;}
.y1c{bottom:892.450667pt;}
.y34{bottom:893.261333pt;}
.yf9{bottom:895.636000pt;}
.y96{bottom:903.000000pt;}
.yf8{bottom:911.576000pt;}
.y1b{bottom:924.062667pt;}
.y95{bottom:927.517333pt;}
.h9{height:36.928037pt;}
.h3{height:37.246841pt;}
.h8{height:39.850400pt;}
.h5{height:39.956668pt;}
.h6{height:44.696508pt;}
.h7{height:48.570001pt;}
.h4{height:49.786433pt;}
.h2{height:53.635660pt;}
.h1{height:92.141913pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:124.800000pt;}
.x1e{left:126.974667pt;}
.x18{left:130.656000pt;}
.x17{left:137.352000pt;}
.x28{left:140.945333pt;}
.x3{left:144.720000pt;}
.x1f{left:146.710667pt;}
.x26{left:147.736000pt;}
.x7{left:158.009333pt;}
.x31{left:163.974667pt;}
.x30{left:167.461333pt;}
.x27{left:169.596000pt;}
.x29{left:174.357333pt;}
.x4{left:175.265333pt;}
.x22{left:179.996000pt;}
.x20{left:195.718667pt;}
.xd{left:196.754667pt;}
.x2f{left:199.985333pt;}
.x2e{left:202.657333pt;}
.x2b{left:204.545333pt;}
.x21{left:206.977333pt;}
.x13{left:214.628000pt;}
.x12{left:223.856000pt;}
.x34{left:226.729333pt;}
.xc{left:227.797333pt;}
.xf{left:230.122667pt;}
.x2d{left:235.493333pt;}
.x1d{left:239.414667pt;}
.x36{left:241.624000pt;}
.x11{left:243.717333pt;}
.x1{left:251.746667pt;}
.x33{left:255.378667pt;}
.x35{left:260.140000pt;}
.x1c{left:262.474667pt;}
.xe{left:264.170667pt;}
.x19{left:268.073333pt;}
.x37{left:275.529333pt;}
.x2c{left:277.930667pt;}
.x16{left:282.192000pt;}
.x1b{left:289.709333pt;}
.xa{left:291.170667pt;}
.x9{left:294.989333pt;}
.x6{left:305.090667pt;}
.x1a{left:306.822667pt;}
.x32{left:308.701333pt;}
.x24{left:311.430667pt;}
.x8{left:317.594667pt;}
.x25{left:325.068000pt;}
.x23{left:331.734667pt;}
.x15{left:334.110667pt;}
.x2a{left:348.737333pt;}
.x10{left:376.540000pt;}
.x14{left:401.360000pt;}
.x5{left:404.680000pt;}
.xb{left:509.870667pt;}
}




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