
    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_84a3dfdbff8d5ed8e2c3f1da.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_7a0fd62dd07f948aa9192237.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.431000;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_1e19b789b7962b1859ccac36.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_bceb9ac6dc5555e3ce5611c7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_07d1aaab7de06a0e1ba60fc9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.920000;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_b524b4d082eb9eaba03066c7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.897000;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_316e48d0fbc9e62506665747.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_dd2b2e6c57ff9f976fdf2b84.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.890000;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_ac540b78ecac0c77a2b6aa93.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.700000;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_ac7afd03134cf56b454141d4.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_2e73395a2b68c7b6a8859c57.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.723000;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_3f2d6e259bfb1add55b100b5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.535000;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_685ca156759bc04626d61e42.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.840000;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_5521895f692a3c882127e7ac.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.664000;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_9f471c012cce278ee8f8bc35.woff2')format("woff");}.fff{font-family:fff;line-height:0.947000;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_9f471c012cce278ee8f8bc35.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.947000;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_b567074701bcdae27269a504.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.959000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.ve{vertical-align:-38.496000px;}
.vc{vertical-align:-14.946000px;}
.v2{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:6.594000px;}
.v9{vertical-align:8.970000px;}
.v4{vertical-align:15.558000px;}
.v8{vertical-align:17.934000px;}
.v3{vertical-align:21.696000px;}
.v1{vertical-align:23.754000px;}
.v7{vertical-align:30.054000px;}
.v6{vertical-align:44.832000px;}
.vd{vertical-align:50.808000px;}
.va{vertical-align:56.790000px;}
.vb{vertical-align:120.612000px;}
.vf{vertical-align:121.914000px;}
.lsf{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.000062px;}
.ls16{letter-spacing:0.000376px;}
.ls4a{letter-spacing:0.000387px;}
.ls4e{letter-spacing:0.000538px;}
.ls36{letter-spacing:0.000564px;}
.ls54{letter-spacing:0.000615px;}
.ls3e{letter-spacing:0.000993px;}
.ls5c{letter-spacing:0.001140px;}
.lsc{letter-spacing:0.002023px;}
.ls41{letter-spacing:0.002108px;}
.ls2d{letter-spacing:0.002172px;}
.ls6{letter-spacing:0.002245px;}
.ls2a{letter-spacing:0.002685px;}
.ls4c{letter-spacing:0.003269px;}
.ls48{letter-spacing:0.003954px;}
.ls13{letter-spacing:0.004188px;}
.ls6c{letter-spacing:0.004200px;}
.ls12{letter-spacing:0.005023px;}
.ls2e{letter-spacing:0.005898px;}
.ls20{letter-spacing:0.006062px;}
.ls6e{letter-spacing:0.834017px;}
.ls2c{letter-spacing:1.497110px;}
.ls49{letter-spacing:1.503110px;}
.ls3b{letter-spacing:1.880823px;}
.ls42{letter-spacing:2.140172px;}
.ls43{letter-spacing:2.146172px;}
.ls3d{letter-spacing:2.149908px;}
.ls39{letter-spacing:2.150222px;}
.ls35{letter-spacing:2.927096px;}
.ls21{letter-spacing:2.933096px;}
.ls2{letter-spacing:2.964877px;}
.ls66{letter-spacing:2.983140px;}
.ls4{letter-spacing:2.983492px;}
.ls63{letter-spacing:2.984525px;}
.ls1{letter-spacing:2.984915px;}
.ls18{letter-spacing:2.985954px;}
.ls59{letter-spacing:2.987675px;}
.ls45{letter-spacing:2.988017px;}
.ls31{letter-spacing:2.988615px;}
.ls44{letter-spacing:2.988780px;}
.ls5f{letter-spacing:2.989140px;}
.ls5b{letter-spacing:2.990525px;}
.ls0{letter-spacing:2.990915px;}
.ls50{letter-spacing:2.991954px;}
.ls3c{letter-spacing:3.422408px;}
.ls6a{letter-spacing:4.276583px;}
.ls17{letter-spacing:6.193876px;}
.ls4f{letter-spacing:9.595866px;}
.lsb{letter-spacing:9.956338px;}
.ls6d{letter-spacing:9.958200px;}
.ls7{letter-spacing:9.962338px;}
.ls51{letter-spacing:9.963269px;}
.ls55{letter-spacing:12.944525px;}
.ls30{letter-spacing:13.278538px;}
.ls65{letter-spacing:14.066338px;}
.ls61{letter-spacing:16.267140px;}
.ls60{letter-spacing:16.268525px;}
.ls5d{letter-spacing:16.273140px;}
.ls2f{letter-spacing:16.275954px;}
.ls47{letter-spacing:16.601369px;}
.ls15{letter-spacing:16.602538px;}
.ls5e{letter-spacing:17.082538px;}
.ls28{letter-spacing:17.304538px;}
.ls27{letter-spacing:17.309306px;}
.ls62{letter-spacing:17.388538px;}
.ls2b{letter-spacing:19.590615px;}
.ls14{letter-spacing:19.593954px;}
.ls5{letter-spacing:20.037954px;}
.ls25{letter-spacing:20.301954px;}
.ls6b{letter-spacing:20.878583px;}
.ls58{letter-spacing:20.919269px;}
.ls11{letter-spacing:20.919411px;}
.ls64{letter-spacing:21.339269px;}
.ls67{letter-spacing:21.345269px;}
.ls4d{letter-spacing:21.359023px;}
.ls40{letter-spacing:21.517866px;}
.ls57{letter-spacing:23.031269px;}
.ls68{letter-spacing:24.362685px;}
.lsd{letter-spacing:26.318338px;}
.ls5a{letter-spacing:26.595269px;}
.lse{letter-spacing:26.600685px;}
.ls10{letter-spacing:27.595690px;}
.ls8{letter-spacing:28.301023px;}
.ls24{letter-spacing:28.423140px;}
.ls53{letter-spacing:28.485954px;}
.ls46{letter-spacing:29.304305px;}
.lsa{letter-spacing:29.592615px;}
.ls3a{letter-spacing:29.856615px;}
.ls37{letter-spacing:30.485096px;}
.ls38{letter-spacing:31.308615px;}
.ls23{letter-spacing:31.312583px;}
.ls9{letter-spacing:33.750305px;}
.ls29{letter-spacing:34.315690px;}
.ls34{letter-spacing:35.895269px;}
.ls3{letter-spacing:36.340583px;}
.ls1f{letter-spacing:37.397607px;}
.ls1e{letter-spacing:37.404376px;}
.ls22{letter-spacing:38.075096px;}
.ls1d{letter-spacing:41.039096px;}
.ls33{letter-spacing:41.662172px;}
.ls1b{letter-spacing:42.893607px;}
.ls1a{letter-spacing:45.885954px;}
.ls69{letter-spacing:46.024583px;}
.ls26{letter-spacing:69.740338px;}
.ls56{letter-spacing:209.126338px;}
.ls32{letter-spacing:218.012338px;}
.ls52{letter-spacing:219.206338px;}
.ls3f{letter-spacing:233.918338px;}
.ls4b{letter-spacing:263.732338px;}
.ls19{letter-spacing:508.388338px;}
.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;}
}
.ws6c{word-spacing:-59.775600px;}
.ws8f{word-spacing:-47.324343px;}
.wse0{word-spacing:-43.157983px;}
.ws53{word-spacing:-38.937826px;}
.ws79{word-spacing:-36.458052px;}
.ws58{word-spacing:-28.955301px;}
.ws75{word-spacing:-16.605662px;}
.wse7{word-spacing:-14.943900px;}
.ws13{word-spacing:-14.920027px;}
.ws4d{word-spacing:-11.955150px;}
.wsde{word-spacing:-10.003997px;}
.wsdc{word-spacing:-6.643262px;}
.ws9d{word-spacing:-6.623136px;}
.wsd0{word-spacing:-3.335478px;}
.wsad{word-spacing:-0.956410px;}
.wse4{word-spacing:-0.777083px;}
.ws102{word-spacing:-0.685045px;}
.ws104{word-spacing:-0.669488px;}
.ws95{word-spacing:-0.657532px;}
.ws101{word-spacing:-0.191282px;}
.wse6{word-spacing:-0.179327px;}
.ws63{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.053798px;}
.ws112{word-spacing:-0.047821px;}
.ws55{word-spacing:-0.041843px;}
.wsa6{word-spacing:-0.016397px;}
.ws5e{word-spacing:0.000000px;}
.ws7d{word-spacing:0.011955px;}
.ws87{word-spacing:0.017309px;}
.ws7f{word-spacing:0.119551px;}
.ws7e{word-spacing:0.142309px;}
.wsae{word-spacing:0.179327px;}
.ws83{word-spacing:0.239102px;}
.ws35{word-spacing:0.358654px;}
.ws54{word-spacing:0.430384px;}
.wsa2{word-spacing:0.478205px;}
.ws6b{word-spacing:0.729262px;}
.ws69{word-spacing:0.896634px;}
.wsf6{word-spacing:0.956412px;}
.wsfd{word-spacing:1.099874px;}
.ws51{word-spacing:1.135736px;}
.ws26{word-spacing:1.195512px;}
.ws43{word-spacing:1.315063px;}
.wscf{word-spacing:1.657141px;}
.wsac{word-spacing:1.733492px;}
.ws23{word-spacing:1.853044px;}
.ws110{word-spacing:1.960645px;}
.ws8b{word-spacing:1.972595px;}
.ws40{word-spacing:2.032370px;}
.ws22{word-spacing:2.092146px;}
.ws109{word-spacing:2.199748px;}
.wsd8{word-spacing:2.211697px;}
.wsd3{word-spacing:2.809453px;}
.ws46{word-spacing:2.869229px;}
.ws48{word-spacing:2.988780px;}
.wsba{word-spacing:3.048556px;}
.ws6d{word-spacing:3.227882px;}
.ws10f{word-spacing:3.299621px;}
.wsb3{word-spacing:3.466985px;}
.ws8d{word-spacing:3.582281px;}
.ws8e{word-spacing:3.586536px;}
.ws2f{word-spacing:3.646312px;}
.ws108{word-spacing:3.682186px;}
.wsda{word-spacing:3.765863px;}
.ws18{word-spacing:3.825638px;}
.ws10e{word-spacing:3.825648px;}
.ws4b{word-spacing:3.885414px;}
.ws1c{word-spacing:3.945190px;}
.wscc{word-spacing:4.064741px;}
.wsf8{word-spacing:4.112572px;}
.wsc0{word-spacing:4.124516px;}
.wse9{word-spacing:4.184292px;}
.wsbf{word-spacing:4.316877px;}
.wsfa{word-spacing:4.447316px;}
.wsb9{word-spacing:4.483170px;}
.ws96{word-spacing:4.662497px;}
.wsb1{word-spacing:4.722272px;}
.wsb8{word-spacing:4.782048px;}
.wsfc{word-spacing:4.782060px;}
.ws1d{word-spacing:4.841824px;}
.ws29{word-spacing:5.021150px;}
.ws32{word-spacing:5.140702px;}
.wsc7{word-spacing:5.200477px;}
.wsab{word-spacing:5.260253px;}
.ws20{word-spacing:5.499355px;}
.ws6f{word-spacing:5.559131px;}
.wsdf{word-spacing:5.973882px;}
.ws70{word-spacing:5.976874px;}
.ws4c{word-spacing:5.976969px;}
.wsbe{word-spacing:5.977249px;}
.ws2{word-spacing:5.977560px;}
.ws60{word-spacing:6.112196px;}
.ws5f{word-spacing:6.156887px;}
.ws52{word-spacing:6.216662px;}
.ws6a{word-spacing:6.336214px;}
.wsd1{word-spacing:6.394309px;}
.ws99{word-spacing:6.395989px;}
.ws9b{word-spacing:6.416134px;}
.ws33{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.wsf5{word-spacing:6.599243px;}
.wsdb{word-spacing:6.635092px;}
.ws14{word-spacing:6.754643px;}
.ws78{word-spacing:6.766598px;}
.ws81{word-spacing:6.923959px;}
.wsc4{word-spacing:7.053521px;}
.wsc6{word-spacing:7.113296px;}
.wsc5{word-spacing:7.135292px;}
.ws1b{word-spacing:7.173072px;}
.ws17{word-spacing:7.232848px;}
.wsec{word-spacing:7.292623px;}
.wsb2{word-spacing:7.412174px;}
.ws106{word-spacing:7.507834px;}
.ws31{word-spacing:7.591501px;}
.ws30{word-spacing:7.770828px;}
.ws89{word-spacing:7.830604px;}
.ws8a{word-spacing:7.890379px;}
.wsa7{word-spacing:7.950155px;}
.wse5{word-spacing:8.009930px;}
.wsa5{word-spacing:8.069706px;}
.wsa4{word-spacing:8.086309px;}
.ws10a{word-spacing:8.129502px;}
.ws10c{word-spacing:8.177323px;}
.wse3{word-spacing:8.189257px;}
.ws36{word-spacing:8.249033px;}
.ws24{word-spacing:8.308808px;}
.ws111{word-spacing:8.368605px;}
.wsf9{word-spacing:8.512067px;}
.wsa8{word-spacing:8.547911px;}
.wsf4{word-spacing:8.727238px;}
.wsa9{word-spacing:9.324994px;}
.wsd2{word-spacing:9.384769px;}
.ws86{word-spacing:9.564096px;}
.ws7a{word-spacing:9.623872px;}
.ws3d{word-spacing:9.862974px;}
.wsa3{word-spacing:9.920547px;}
.ws5b{word-spacing:9.994480px;}
.ws25{word-spacing:10.221628px;}
.wsb0{word-spacing:10.341179px;}
.ws34{word-spacing:10.520506px;}
.ws9e{word-spacing:10.546309px;}
.ws9f{word-spacing:10.580281px;}
.wsb7{word-spacing:10.699832px;}
.wsc9{word-spacing:10.840738px;}
.ws2e{word-spacing:10.998710px;}
.wscd{word-spacing:11.058486px;}
.wsb5{word-spacing:11.118262px;}
.wsbc{word-spacing:11.178037px;}
.ws103{word-spacing:11.190020px;}
.wsc3{word-spacing:11.297588px;}
.ws5d{word-spacing:11.357364px;}
.ws5c{word-spacing:11.375750px;}
.ws10d{word-spacing:11.476944px;}
.wsea{word-spacing:11.536691px;}
.wsbd{word-spacing:11.656242px;}
.ws57{word-spacing:11.668197px;}
.wsaa{word-spacing:11.775793px;}
.ws1f{word-spacing:11.835569px;}
.ws105{word-spacing:11.859509px;}
.ws7b{word-spacing:11.895344px;}
.ws3e{word-spacing:11.955120px;}
.wsce{word-spacing:12.014896px;}
.ws67{word-spacing:12.074671px;}
.wscb{word-spacing:12.134447px;}
.ws100{word-spacing:12.194253px;}
.wsed{word-spacing:12.253998px;}
.ws56{word-spacing:12.293750px;}
.ws59{word-spacing:12.296134px;}
.ws5a{word-spacing:12.313774px;}
.wse2{word-spacing:12.373549px;}
.ws47{word-spacing:12.493100px;}
.wsca{word-spacing:12.500683px;}
.wsd9{word-spacing:12.552876px;}
.ws38{word-spacing:12.732203px;}
.ws45{word-spacing:12.791978px;}
.wsa0{word-spacing:12.798317px;}
.ws6e{word-spacing:12.851754px;}
.ws90{word-spacing:12.908547px;}
.ws42{word-spacing:12.911530px;}
.wsfe{word-spacing:13.007203px;}
.wsbb{word-spacing:13.031081px;}
.ws7c{word-spacing:13.150632px;}
.wse{word-spacing:13.288205px;}
.ws15{word-spacing:13.329959px;}
.ws3b{word-spacing:13.389734px;}
.ws41{word-spacing:13.569061px;}
.ws1e{word-spacing:13.628837px;}
.ws98{word-spacing:13.748388px;}
.ws4a{word-spacing:13.987490px;}
.ws68{word-spacing:14.107042px;}
.ws0{word-spacing:14.346180px;}
.wsaf{word-spacing:14.585246px;}
.ws8{word-spacing:14.633165px;}
.wseb{word-spacing:14.704798px;}
.wsc8{word-spacing:14.824349px;}
.ws19{word-spacing:14.943900px;}
.ws27{word-spacing:15.242778px;}
.ws21{word-spacing:15.840534px;}
.wsf7{word-spacing:16.019901px;}
.wsfb{word-spacing:16.354645px;}
.ws50{word-spacing:16.438290px;}
.ws3c{word-spacing:16.498066px;}
.ws44{word-spacing:16.617617px;}
.ws3f{word-spacing:16.677392px;}
.wsff{word-spacing:16.689389px;}
.wsc2{word-spacing:16.737168px;}
.ws49{word-spacing:16.856719px;}
.ws3a{word-spacing:17.095822px;}
.ws39{word-spacing:17.115025px;}
.ws66{word-spacing:17.203394px;}
.ws37{word-spacing:17.215373px;}
.wsa{word-spacing:17.215488px;}
.ws2d{word-spacing:17.574026px;}
.ws91{word-spacing:17.735311px;}
.ws2b{word-spacing:17.813129px;}
.wsd5{word-spacing:17.921908px;}
.ws12{word-spacing:17.932680px;}
.ws4f{word-spacing:18.052231px;}
.ws82{word-spacing:18.128279px;}
.ws62{word-spacing:18.171782px;}
.ws1a{word-spacing:18.530436px;}
.wsa1{word-spacing:18.590212px;}
.wsb{word-spacing:18.668045px;}
.ws4e{word-spacing:19.068416px;}
.ws107{word-spacing:19.415164px;}
.wsd4{word-spacing:19.546621px;}
.ws9c{word-spacing:19.551463px;}
.wsd6{word-spacing:19.556683px;}
.ws2c{word-spacing:19.606397px;}
.ws84{word-spacing:19.637959px;}
.ws10b{word-spacing:20.084652px;}
.wsf{word-spacing:20.120602px;}
.ws65{word-spacing:20.144377px;}
.ws64{word-spacing:20.170309px;}
.wse1{word-spacing:20.443255px;}
.ws28{word-spacing:20.622582px;}
.ws61{word-spacing:20.861684px;}
.ws76{word-spacing:20.921460px;}
.ws74{word-spacing:20.927581px;}
.ws80{word-spacing:21.053311px;}
.wsf2{word-spacing:21.698543px;}
.ws88{word-spacing:21.758318px;}
.ws16{word-spacing:21.997421px;}
.ws8c{word-spacing:22.296299px;}
.ws2a{word-spacing:22.415850px;}
.wsc{word-spacing:22.971917px;}
.wsee{word-spacing:23.013606px;}
.wsef{word-spacing:23.073382px;}
.wsb4{word-spacing:23.252708px;}
.wsf3{word-spacing:24.209118px;}
.ws9a{word-spacing:24.303463px;}
.ws73{word-spacing:24.567772px;}
.ws71{word-spacing:24.574309px;}
.wsd7{word-spacing:25.117707px;}
.ws97{word-spacing:25.367311px;}
.ws9{word-spacing:25.823232px;}
.ws85{word-spacing:27.428279px;}
.ws77{word-spacing:27.797311px;}
.wse8{word-spacing:29.170493px;}
.wsd{word-spacing:30.611290px;}
.ws92{word-spacing:30.772309px;}
.ws6{word-spacing:30.934080px;}
.wsf1{word-spacing:30.963761px;}
.wsf0{word-spacing:31.023536px;}
.ws94{word-spacing:31.262639px;}
.ws7{word-spacing:32.817024px;}
.ws4{word-spacing:35.291750px;}
.ws5{word-spacing:35.506944px;}
.ws11{word-spacing:37.605082px;}
.ws10{word-spacing:37.658880px;}
.ws72{word-spacing:43.967311px;}
.ws93{word-spacing:50.639311px;}
.wsdd{word-spacing:84.413221px;}
.wsb6{word-spacing:533.373304px;}
.wsc1{word-spacing:544.494515px;}
._12{margin-left:-33.460336px;}
._11{margin-left:-31.322414px;}
._4{margin-left:-23.252708px;}
._0{margin-left:-11.476944px;}
._b{margin-left:-7.711052px;}
._7{margin-left:-5.320028px;}
._3{margin-left:-4.184292px;}
._1{margin-left:-2.582312px;}
._6{margin-left:-1.494390px;}
._d{width:1.288248px;}
._a{width:2.394245px;}
._2{width:3.580725px;}
._10{width:5.393583px;}
._e{width:6.404009px;}
._5{width:8.333648px;}
._8{width:13.652828px;}
._14{width:17.786993px;}
._1b{width:19.238735px;}
._19{width:20.981236px;}
._9{width:22.003546px;}
._16{width:25.045976px;}
._15{width:27.747840px;}
._f{width:29.887800px;}
._13{width:31.226786px;}
._c{width:33.671636px;}
._1a{width:41.764123px;}
._1c{width:104.313258px;}
._1f{width:116.512376px;}
._1d{width:119.823052px;}
._1e{width:126.408416px;}
._17{width:549.623830px;}
._18{width:561.083877px;}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:28.788480px;}
.fs8{font-size:31.725540px;}
.fsb{font-size:32.387040px;}
.fs6{font-size:35.250600px;}
.fs9{font-size:35.985600px;}
.fs7{font-size:38.775660px;}
.fsa{font-size:39.584160px;}
.fs5{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.yb9{bottom:4.406325px;}
.y10d{bottom:4.498200px;}
.yda{bottom:9.896040px;}
.yb8{bottom:17.625300px;}
.y10c{bottom:17.992800px;}
.yd9{bottom:23.390640px;}
.y10e{bottom:26.089560px;}
.yba{bottom:27.763284px;}
.ydb{bottom:33.740009px;}
.yc8{bottom:41.901771px;}
.ybb{bottom:50.234837px;}
.yc7{bottom:52.435268px;}
.ydc{bottom:56.680109px;}
.yc6{bottom:62.968764px;}
.ybc{bottom:72.706389px;}
.ydd{bottom:79.620209px;}
.ye9{bottom:91.805563px;}
.ybd{bottom:95.177942px;}
.ye8{bottom:102.558960px;}
.yde{bottom:102.560309px;}
.y10f{bottom:103.008780px;}
.ye7{bottom:113.312357px;}
.y33{bottom:113.332500px;}
.ybe{bottom:117.649494px;}
.yc5{bottom:122.275519px;}
.y112{bottom:123.475590px;}
.ydf{bottom:125.500410px;}
.y137{bottom:126.783000px;}
.ye6{bottom:130.222890px;}
.y32{bottom:131.265000px;}
.yd7{bottom:131.266500px;}
.ybf{bottom:140.121047px;}
.y136{bottom:140.232000px;}
.ye0{bottom:148.440510px;}
.yd6{bottom:148.902000px;}
.y31{bottom:149.197500px;}
.y7c{bottom:149.199000px;}
.y9d{bottom:161.707500px;}
.y135{bottom:162.310500px;}
.yc0{bottom:162.592599px;}
.yd5{bottom:166.834500px;}
.y54{bottom:167.130000px;}
.y30{bottom:167.131500px;}
.ye1{bottom:171.380610px;}
.y9f{bottom:175.464000px;}
.y9a{bottom:179.158500px;}
.y110{bottom:180.377820px;}
.y9e{bottom:182.895000px;}
.yd4{bottom:184.767000px;}
.y2f{bottom:185.064000px;}
.yc1{bottom:185.064152px;}
.ya0{bottom:188.782500px;}
.y134{bottom:189.993000px;}
.y9c{bottom:193.354500px;}
.ye2{bottom:194.320711px;}
.y9b{bottom:197.838000px;}
.yd3{bottom:202.701000px;}
.y2e{bottom:202.996500px;}
.y7b{bottom:207.307500px;}
.yc2{bottom:207.535704px;}
.y133{bottom:207.925500px;}
.y116{bottom:213.198486px;}
.ye3{bottom:217.260811px;}
.yd2{bottom:220.633500px;}
.y2d{bottom:220.929000px;}
.y115{bottom:223.854722px;}
.y132{bottom:225.858000px;}
.y99{bottom:227.455500px;}
.yc3{bottom:230.007257px;}
.y7a{bottom:232.947000px;}
.y114{bottom:234.511858px;}
.yd1{bottom:238.566000px;}
.y2c{bottom:238.861500px;}
.y10b{bottom:238.863000px;}
.ye4{bottom:240.200911px;}
.y131{bottom:243.790500px;}
.y113{bottom:245.168094px;}
.y98{bottom:245.388000px;}
.y79{bottom:250.879500px;}
.yc4{bottom:252.478809px;}
.yd0{bottom:256.203000px;}
.y53{bottom:256.794000px;}
.y2b{bottom:256.795500px;}
.y111{bottom:257.297040px;}
.y130{bottom:261.723000px;}
.ye5{bottom:263.141011px;}
.y97{bottom:263.320500px;}
.y78{bottom:268.812000px;}
.ycf{bottom:274.135500px;}
.y2a{bottom:274.728000px;}
.y10a{bottom:275.896500px;}
.y12f{bottom:279.657000px;}
.y96{bottom:281.253000px;}
.y77{bottom:286.744500px;}
.yce{bottom:292.068000px;}
.y29{bottom:292.660500px;}
.y52{bottom:293.617500px;}
.y109{bottom:293.829000px;}
.y12e{bottom:297.589500px;}
.y95{bottom:299.187000px;}
.y76{bottom:304.677000px;}
.ycd{bottom:310.000500px;}
.y28{bottom:310.593000px;}
.y108{bottom:311.761500px;}
.y12d{bottom:315.522000px;}
.ycc{bottom:327.933000px;}
.y27{bottom:328.525500px;}
.y94{bottom:330.831000px;}
.y75{bottom:330.934500px;}
.y12c{bottom:333.454500px;}
.y51{bottom:341.730000px;}
.y107{bottom:343.341000px;}
.ycb{bottom:345.865500px;}
.y26{bottom:346.578000px;}
.y93{bottom:348.016500px;}
.y104{bottom:350.722500px;}
.y12b{bottom:351.387000px;}
.y74{bottom:357.190500px;}
.y50{bottom:359.664000px;}
.yff{bottom:360.973500px;}
.y25{bottom:364.510500px;}
.y102{bottom:365.151000px;}
.y103{bottom:371.083500px;}
.y12a{bottom:373.971000px;}
.y101{bottom:374.118000px;}
.y73{bottom:375.123000px;}
.y106{bottom:375.169500px;}
.y4f{bottom:377.596500px;}
.y105{bottom:379.653000px;}
.yca{bottom:380.734500px;}
.y24{bottom:382.443000px;}
.y100{bottom:383.083500px;}
.y92{bottom:383.689500px;}
.y72{bottom:389.362500px;}
.y71{bottom:393.055500px;}
.y4e{bottom:395.529000px;}
.yc9{bottom:398.667000px;}
.y23{bottom:400.377000px;}
.y91{bottom:401.622000px;}
.y129{bottom:401.652000px;}
.y70{bottom:410.989500px;}
.yfe{bottom:411.165000px;}
.y4d{bottom:413.461500px;}
.y22{bottom:418.309500px;}
.y90{bottom:419.554500px;}
.y128{bottom:419.584500px;}
.yb7{bottom:420.186000px;}
.y6f{bottom:428.922000px;}
.yfd{bottom:429.097500px;}
.y4c{bottom:433.758000px;}
.y21{bottom:436.242000px;}
.y8f{bottom:437.487000px;}
.y127{bottom:437.518500px;}
.y6e{bottom:446.854500px;}
.yfc{bottom:447.030000px;}
.y4b{bottom:451.690500px;}
.y20{bottom:454.174500px;}
.y126{bottom:455.451000px;}
.y6d{bottom:464.787000px;}
.yfb{bottom:464.964000px;}
.y8e{bottom:466.153500px;}
.y4a{bottom:469.623000px;}
.y1f{bottom:472.107000px;}
.y125{bottom:473.383500px;}
.yfa{bottom:482.896500px;}
.y6b{bottom:486.831000px;}
.y49{bottom:487.557000px;}
.y1e{bottom:490.041000px;}
.y124{bottom:491.316000px;}
.yf9{bottom:500.829000px;}
.y68{bottom:504.282000px;}
.y48{bottom:505.489500px;}
.y1d{bottom:507.973500px;}
.y8d{bottom:508.807500px;}
.y123{bottom:509.248500px;}
.y6a{bottom:518.479500px;}
.yf8{bottom:518.761500px;}
.y69{bottom:522.963000px;}
.y47{bottom:523.422000px;}
.y6c{bottom:523.668000px;}
.y1c{bottom:525.906000px;}
.y8c{bottom:526.740000px;}
.y122{bottom:527.182500px;}
.yf7{bottom:536.694000px;}
.y46{bottom:541.354500px;}
.y1b{bottom:543.838500px;}
.y67{bottom:543.870000px;}
.y8b{bottom:544.672500px;}
.y121{bottom:545.115000px;}
.yf6{bottom:554.626500px;}
.y45{bottom:561.651000px;}
.y1a{bottom:561.771000px;}
.y66{bottom:561.802500px;}
.y8a{bottom:562.605000px;}
.y120{bottom:567.697500px;}
.yf5{bottom:572.560500px;}
.y44{bottom:579.583500px;}
.y19{bottom:579.703500px;}
.y65{bottom:579.735000px;}
.y89{bottom:580.537500px;}
.yf4{bottom:591.661500px;}
.y11f{bottom:595.380000px;}
.y43{bottom:597.517500px;}
.y18{bottom:597.637500px;}
.y64{bottom:601.978500px;}
.yf3{bottom:609.594000px;}
.y87{bottom:612.183000px;}
.y11e{bottom:613.312500px;}
.y42{bottom:615.450000px;}
.y17{bottom:615.570000px;}
.yf2{bottom:627.526500px;}
.y63{bottom:627.618000px;}
.y84{bottom:629.634000px;}
.y11d{bottom:631.245000px;}
.y41{bottom:633.382500px;}
.y16{bottom:633.502500px;}
.y86{bottom:643.831500px;}
.yf1{bottom:645.459000px;}
.y62{bottom:645.550500px;}
.y85{bottom:648.315000px;}
.y88{bottom:649.020000px;}
.y11c{bottom:649.177500px;}
.y40{bottom:651.315000px;}
.y15{bottom:651.435000px;}
.y61{bottom:659.593500px;}
.yf0{bottom:663.393000px;}
.y60{bottom:663.483000px;}
.y11b{bottom:667.110000px;}
.y3f{bottom:669.247500px;}
.y14{bottom:674.793000px;}
.y83{bottom:678.637500px;}
.yef{bottom:681.325500px;}
.y5f{bottom:681.417000px;}
.y11a{bottom:685.044000px;}
.y3e{bottom:687.180000px;}
.y82{bottom:696.570000px;}
.yee{bottom:699.258000px;}
.y5e{bottom:699.349500px;}
.y119{bottom:702.976500px;}
.y3d{bottom:705.114000px;}
.y13{bottom:707.983500px;}
.y81{bottom:710.019000px;}
.y80{bottom:714.502500px;}
.yed{bottom:717.190500px;}
.y5d{bottom:717.282000px;}
.yb6{bottom:718.932000px;}
.y118{bottom:720.909000px;}
.y12{bottom:722.926500px;}
.y3c{bottom:723.046500px;}
.yec{bottom:735.123000px;}
.y5c{bottom:735.214500px;}
.yb5{bottom:736.864500px;}
.y11{bottom:737.991000px;}
.y117{bottom:738.841500px;}
.y3b{bottom:740.979000px;}
.y7f{bottom:743.169000px;}
.y10{bottom:752.934000px;}
.y5b{bottom:753.147000px;}
.yb4{bottom:754.797000px;}
.y3a{bottom:758.911500px;}
.yf{bottom:767.878500px;}
.yb3{bottom:772.731000px;}
.y39{bottom:776.844000px;}
.y5a{bottom:779.404500px;}
.ye{bottom:782.823000px;}
.yeb{bottom:789.348000px;}
.y14c{bottom:790.294500px;}
.yb2{bottom:790.663500px;}
.y38{bottom:794.776500px;}
.yd{bottom:797.766000px;}
.y7e{bottom:798.868500px;}
.y14b{bottom:803.743500px;}
.y59{bottom:805.660500px;}
.yea{bottom:807.282000px;}
.yb1{bottom:808.596000px;}
.yc{bottom:812.710500px;}
.y7d{bottom:816.801000px;}
.y14a{bottom:817.194000px;}
.y58{bottom:823.593000px;}
.yb0{bottom:826.231500px;}
.yb{bottom:827.655000px;}
.yd8{bottom:828.801000px;}
.y37{bottom:830.643000px;}
.ya{bottom:842.598000px;}
.y149{bottom:844.092000px;}
.yaf{bottom:844.165500px;}
.y57{bottom:845.836500px;}
.y36{bottom:848.575500px;}
.y9{bottom:857.542500px;}
.yae{bottom:862.098000px;}
.y35{bottom:866.508000px;}
.y148{bottom:870.991500px;}
.y8{bottom:872.485500px;}
.yad{bottom:880.030500px;}
.y34{bottom:884.440500px;}
.y147{bottom:884.442000px;}
.y7{bottom:887.430000px;}
.y56{bottom:892.713000px;}
.y146{bottom:897.891000px;}
.yac{bottom:897.963000px;}
.y6{bottom:902.374500px;}
.y55{bottom:910.645500px;}
.y145{bottom:911.340000px;}
.yab{bottom:915.895500px;}
.y144{bottom:924.790500px;}
.yaa{bottom:933.829500px;}
.y143{bottom:938.239500px;}
.y142{bottom:951.688500px;}
.ya9{bottom:951.762000px;}
.y5{bottom:955.027500px;}
.y141{bottom:965.139000px;}
.ya8{bottom:969.694500px;}
.y4{bottom:973.521000px;}
.y140{bottom:978.588000px;}
.ya7{bottom:987.627000px;}
.y13f{bottom:992.038500px;}
.y3{bottom:992.235000px;}
.y13e{bottom:1005.487500px;}
.ya6{bottom:1005.559500px;}
.y13d{bottom:1018.936500px;}
.ya5{bottom:1023.492000px;}
.y13c{bottom:1032.387000px;}
.y2{bottom:1039.309500px;}
.ya4{bottom:1041.426000px;}
.y13b{bottom:1045.836000px;}
.y13a{bottom:1059.285000px;}
.ya3{bottom:1059.358500px;}
.y139{bottom:1072.735500px;}
.ya2{bottom:1077.291000px;}
.y1{bottom:1081.152000px;}
.y138{bottom:1086.184500px;}
.ya1{bottom:1099.635000px;}
.hf{height:2.391024px;}
.h1d{height:23.127919px;}
.h21{height:23.610152px;}
.h27{height:23.998797px;}
.h1b{height:25.697687px;}
.h1f{height:26.233502px;}
.h24{height:26.665330px;}
.h19{height:27.783619px;}
.h1c{height:28.267456px;}
.h20{height:28.856853px;}
.h25{height:29.331863px;}
.he{height:29.415488px;}
.h29{height:32.900573px;}
.h6{height:37.336090px;}
.h5{height:37.605082px;}
.h17{height:39.147488px;}
.h26{height:39.325064px;}
.h9{height:40.826735px;}
.h4{height:41.125613px;}
.h3{height:41.419613px;}
.h28{height:41.425613px;}
.h10{height:41.484266px;}
.h7{height:42.141798px;}
.h8{height:44.831700px;}
.h23{height:45.051619px;}
.h2{height:45.990579px;}
.h11{height:49.479619px;}
.hc{height:51.105488px;}
.hb{height:51.111488px;}
.ha{height:54.093488px;}
.h12{height:56.913798px;}
.h15{height:59.181024px;}
.h14{height:59.418266px;}
.h13{height:59.469488px;}
.hd{height:60.389700px;}
.h18{height:67.977024px;}
.h1{height:98.701718px;}
.h16{height:123.003024px;}
.h22{height:124.305024px;}
.h1a{height:277.598475px;}
.h1e{height:283.386600px;}
.h0{height:1188.000000px;}
.w1{width:370.131300px;}
.w2{width:377.848800px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x40{left:23.390640px;}
.x3f{left:28.338660px;}
.x34{left:31.725540px;}
.x32{left:36.572497px;}
.x33{left:39.216293px;}
.x37{left:41.833260px;}
.x30{left:45.183778px;}
.x36{left:50.624092px;}
.xa{left:73.446000px;}
.x2f{left:76.675500px;}
.x47{left:79.423500px;}
.x35{left:85.769821px;}
.x9{left:88.390500px;}
.x1{left:96.025500px;}
.x48{left:100.834500px;}
.x45{left:138.921000px;}
.x3{left:145.177500px;}
.x17{left:149.350500px;}
.x18{left:161.154000px;}
.x8{left:166.063500px;}
.x31{left:170.084586px;}
.x3e{left:174.080340px;}
.x2e{left:177.726000px;}
.x12{left:180.511500px;}
.x11{left:182.586000px;}
.x6{left:186.447000px;}
.x43{left:196.570500px;}
.xb{left:203.430000px;}
.x42{left:204.430500px;}
.x14{left:208.737000px;}
.x13{left:214.824000px;}
.xf{left:217.966500px;}
.x46{left:219.897000px;}
.x41{left:227.782551px;}
.x15{left:232.813500px;}
.x38{left:252.642303px;}
.x10{left:261.216000px;}
.x7{left:351.082500px;}
.x16{left:372.103500px;}
.x2{left:416.176500px;}
.x44{left:435.927000px;}
.xc{left:467.967000px;}
.x49{left:473.944500px;}
.xd{left:482.910000px;}
.x4a{left:495.355500px;}
.x39{left:519.073500px;}
.x24{left:537.672000px;}
.x21{left:539.434500px;}
.x1a{left:550.566000px;}
.x4{left:568.732500px;}
.x3a{left:579.690000px;}
.x1d{left:586.461000px;}
.x1c{left:588.535500px;}
.xe{left:592.009500px;}
.x1b{left:593.070000px;}
.x22{left:597.349500px;}
.x26{left:602.902500px;}
.x25{left:608.401500px;}
.x3c{left:610.512000px;}
.x3d{left:611.625000px;}
.x23{left:613.560000px;}
.x1f{left:614.688000px;}
.x3b{left:617.611500px;}
.x1e{left:620.775000px;}
.x29{left:627.444000px;}
.x28{left:629.520000px;}
.x27{left:634.053000px;}
.x20{left:638.763000px;}
.x2a{left:655.671000px;}
.x2b{left:667.729500px;}
.x5{left:686.280000px;}
.x19{left:748.461000px;}
.x2c{left:756.522000px;}
.x2d{left:761.503500px;}
@media print{
.ve{vertical-align:-34.218667pt;}
.vc{vertical-align:-13.285333pt;}
.v2{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.861333pt;}
.v9{vertical-align:7.973333pt;}
.v4{vertical-align:13.829333pt;}
.v8{vertical-align:15.941333pt;}
.v3{vertical-align:19.285333pt;}
.v1{vertical-align:21.114667pt;}
.v7{vertical-align:26.714667pt;}
.v6{vertical-align:39.850667pt;}
.vd{vertical-align:45.162667pt;}
.va{vertical-align:50.480000pt;}
.vb{vertical-align:107.210667pt;}
.vf{vertical-align:108.368000pt;}
.lsf{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.000055pt;}
.ls16{letter-spacing:0.000334pt;}
.ls4a{letter-spacing:0.000344pt;}
.ls4e{letter-spacing:0.000479pt;}
.ls36{letter-spacing:0.000501pt;}
.ls54{letter-spacing:0.000546pt;}
.ls3e{letter-spacing:0.000882pt;}
.ls5c{letter-spacing:0.001014pt;}
.lsc{letter-spacing:0.001799pt;}
.ls41{letter-spacing:0.001873pt;}
.ls2d{letter-spacing:0.001931pt;}
.ls6{letter-spacing:0.001995pt;}
.ls2a{letter-spacing:0.002387pt;}
.ls4c{letter-spacing:0.002906pt;}
.ls48{letter-spacing:0.003514pt;}
.ls13{letter-spacing:0.003723pt;}
.ls6c{letter-spacing:0.003733pt;}
.ls12{letter-spacing:0.004465pt;}
.ls2e{letter-spacing:0.005243pt;}
.ls20{letter-spacing:0.005388pt;}
.ls6e{letter-spacing:0.741348pt;}
.ls2c{letter-spacing:1.330764pt;}
.ls49{letter-spacing:1.336098pt;}
.ls3b{letter-spacing:1.671842pt;}
.ls42{letter-spacing:1.902375pt;}
.ls43{letter-spacing:1.907709pt;}
.ls3d{letter-spacing:1.911029pt;}
.ls39{letter-spacing:1.911309pt;}
.ls35{letter-spacing:2.601863pt;}
.ls21{letter-spacing:2.607197pt;}
.ls2{letter-spacing:2.635446pt;}
.ls66{letter-spacing:2.651680pt;}
.ls4{letter-spacing:2.651993pt;}
.ls63{letter-spacing:2.652911pt;}
.ls1{letter-spacing:2.653258pt;}
.ls18{letter-spacing:2.654181pt;}
.ls59{letter-spacing:2.655711pt;}
.ls45{letter-spacing:2.656015pt;}
.ls31{letter-spacing:2.656546pt;}
.ls44{letter-spacing:2.656693pt;}
.ls5f{letter-spacing:2.657014pt;}
.ls5b{letter-spacing:2.658245pt;}
.ls0{letter-spacing:2.658591pt;}
.ls50{letter-spacing:2.659514pt;}
.ls3c{letter-spacing:3.042140pt;}
.ls6a{letter-spacing:3.801407pt;}
.ls17{letter-spacing:5.505668pt;}
.ls4f{letter-spacing:8.529659pt;}
.lsb{letter-spacing:8.850079pt;}
.ls6d{letter-spacing:8.851733pt;}
.ls7{letter-spacing:8.855412pt;}
.ls51{letter-spacing:8.856239pt;}
.ls55{letter-spacing:11.506245pt;}
.ls30{letter-spacing:11.803145pt;}
.ls65{letter-spacing:12.503412pt;}
.ls61{letter-spacing:14.459680pt;}
.ls60{letter-spacing:14.460911pt;}
.ls5d{letter-spacing:14.465014pt;}
.ls2f{letter-spacing:14.467514pt;}
.ls47{letter-spacing:14.756773pt;}
.ls15{letter-spacing:14.757812pt;}
.ls5e{letter-spacing:15.184479pt;}
.ls28{letter-spacing:15.381812pt;}
.ls27{letter-spacing:15.386050pt;}
.ls62{letter-spacing:15.456479pt;}
.ls2b{letter-spacing:17.413880pt;}
.ls14{letter-spacing:17.416848pt;}
.ls5{letter-spacing:17.811514pt;}
.ls25{letter-spacing:18.046181pt;}
.ls6b{letter-spacing:18.558740pt;}
.ls58{letter-spacing:18.594906pt;}
.ls11{letter-spacing:18.595032pt;}
.ls64{letter-spacing:18.968239pt;}
.ls67{letter-spacing:18.973573pt;}
.ls4d{letter-spacing:18.985798pt;}
.ls40{letter-spacing:19.126992pt;}
.ls57{letter-spacing:20.472239pt;}
.ls68{letter-spacing:21.655720pt;}
.lsd{letter-spacing:23.394079pt;}
.ls5a{letter-spacing:23.640239pt;}
.lse{letter-spacing:23.645053pt;}
.ls10{letter-spacing:24.529503pt;}
.ls8{letter-spacing:25.156465pt;}
.ls24{letter-spacing:25.265014pt;}
.ls53{letter-spacing:25.320848pt;}
.ls46{letter-spacing:26.048271pt;}
.lsa{letter-spacing:26.304546pt;}
.ls3a{letter-spacing:26.539213pt;}
.ls37{letter-spacing:27.097863pt;}
.ls38{letter-spacing:27.829880pt;}
.ls23{letter-spacing:27.833407pt;}
.ls9{letter-spacing:30.000271pt;}
.ls29{letter-spacing:30.502836pt;}
.ls34{letter-spacing:31.906906pt;}
.ls3{letter-spacing:32.302740pt;}
.ls1f{letter-spacing:33.242318pt;}
.ls1e{letter-spacing:33.248334pt;}
.ls22{letter-spacing:33.844530pt;}
.ls1d{letter-spacing:36.479197pt;}
.ls33{letter-spacing:37.033042pt;}
.ls1b{letter-spacing:38.127651pt;}
.ls1a{letter-spacing:40.787514pt;}
.ls69{letter-spacing:40.910740pt;}
.ls26{letter-spacing:61.991412pt;}
.ls56{letter-spacing:185.890079pt;}
.ls32{letter-spacing:193.788745pt;}
.ls52{letter-spacing:194.850079pt;}
.ls3f{letter-spacing:207.927412pt;}
.ls4b{letter-spacing:234.428745pt;}
.ls19{letter-spacing:451.900745pt;}
.ws6c{word-spacing:-53.133867pt;}
.ws8f{word-spacing:-42.066082pt;}
.wse0{word-spacing:-38.362652pt;}
.ws53{word-spacing:-34.611401pt;}
.ws79{word-spacing:-32.407157pt;}
.ws58{word-spacing:-25.738045pt;}
.ws75{word-spacing:-14.760588pt;}
.wse7{word-spacing:-13.283467pt;}
.ws13{word-spacing:-13.262246pt;}
.ws4d{word-spacing:-10.626800pt;}
.wsde{word-spacing:-8.892442pt;}
.wsdc{word-spacing:-5.905121pt;}
.ws9d{word-spacing:-5.887232pt;}
.wsd0{word-spacing:-2.964870pt;}
.wsad{word-spacing:-0.850142pt;}
.wse4{word-spacing:-0.690740pt;}
.ws102{word-spacing:-0.608929pt;}
.ws104{word-spacing:-0.595101pt;}
.ws95{word-spacing:-0.584473pt;}
.ws101{word-spacing:-0.170029pt;}
.wse6{word-spacing:-0.159402pt;}
.ws63{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.047821pt;}
.ws112{word-spacing:-0.042507pt;}
.ws55{word-spacing:-0.037194pt;}
.wsa6{word-spacing:-0.014575pt;}
.ws5e{word-spacing:0.000000pt;}
.ws7d{word-spacing:0.010627pt;}
.ws87{word-spacing:0.015386pt;}
.ws7f{word-spacing:0.106268pt;}
.ws7e{word-spacing:0.126497pt;}
.wsae{word-spacing:0.159402pt;}
.ws83{word-spacing:0.212535pt;}
.ws35{word-spacing:0.318803pt;}
.ws54{word-spacing:0.382564pt;}
.wsa2{word-spacing:0.425071pt;}
.ws6b{word-spacing:0.648233pt;}
.ws69{word-spacing:0.797008pt;}
.wsf6{word-spacing:0.850144pt;}
.wsfd{word-spacing:0.977666pt;}
.ws51{word-spacing:1.009543pt;}
.ws26{word-spacing:1.062677pt;}
.ws43{word-spacing:1.168945pt;}
.wscf{word-spacing:1.473014pt;}
.wsac{word-spacing:1.540882pt;}
.ws23{word-spacing:1.647150pt;}
.ws110{word-spacing:1.742795pt;}
.ws8b{word-spacing:1.753418pt;}
.ws40{word-spacing:1.806551pt;}
.ws22{word-spacing:1.859685pt;}
.ws109{word-spacing:1.955331pt;}
.wsd8{word-spacing:1.965953pt;}
.wsd3{word-spacing:2.497292pt;}
.ws46{word-spacing:2.550426pt;}
.ws48{word-spacing:2.656693pt;}
.wsba{word-spacing:2.709827pt;}
.ws6d{word-spacing:2.869229pt;}
.ws10f{word-spacing:2.932997pt;}
.wsb3{word-spacing:3.081764pt;}
.ws8d{word-spacing:3.184250pt;}
.ws8e{word-spacing:3.188032pt;}
.ws2f{word-spacing:3.241166pt;}
.ws108{word-spacing:3.273054pt;}
.wsda{word-spacing:3.347434pt;}
.ws18{word-spacing:3.400567pt;}
.ws10e{word-spacing:3.400576pt;}
.ws4b{word-spacing:3.453701pt;}
.ws1c{word-spacing:3.506835pt;}
.wscc{word-spacing:3.613103pt;}
.wsf8{word-spacing:3.655619pt;}
.wsc0{word-spacing:3.666237pt;}
.wse9{word-spacing:3.719371pt;}
.wsbf{word-spacing:3.837224pt;}
.wsfa{word-spacing:3.953170pt;}
.wsb9{word-spacing:3.985040pt;}
.ws96{word-spacing:4.144442pt;}
.wsb1{word-spacing:4.197575pt;}
.wsb8{word-spacing:4.250709pt;}
.wsfc{word-spacing:4.250720pt;}
.ws1d{word-spacing:4.303843pt;}
.ws29{word-spacing:4.463245pt;}
.ws32{word-spacing:4.569513pt;}
.wsc7{word-spacing:4.622646pt;}
.wsab{word-spacing:4.675780pt;}
.ws20{word-spacing:4.888316pt;}
.ws6f{word-spacing:4.941450pt;}
.wsdf{word-spacing:5.310117pt;}
.ws70{word-spacing:5.312777pt;}
.ws4c{word-spacing:5.312861pt;}
.wsbe{word-spacing:5.313110pt;}
.ws2{word-spacing:5.313387pt;}
.ws60{word-spacing:5.433063pt;}
.ws5f{word-spacing:5.472788pt;}
.ws52{word-spacing:5.525922pt;}
.ws6a{word-spacing:5.632190pt;}
.wsd1{word-spacing:5.683830pt;}
.ws99{word-spacing:5.685324pt;}
.ws9b{word-spacing:5.703230pt;}
.ws33{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.wsf5{word-spacing:5.865994pt;}
.wsdb{word-spacing:5.897859pt;}
.ws14{word-spacing:6.004127pt;}
.ws78{word-spacing:6.014754pt;}
.ws81{word-spacing:6.154630pt;}
.wsc4{word-spacing:6.269796pt;}
.wsc6{word-spacing:6.322930pt;}
.wsc5{word-spacing:6.342482pt;}
.ws1b{word-spacing:6.376064pt;}
.ws17{word-spacing:6.429198pt;}
.wsec{word-spacing:6.482332pt;}
.wsb2{word-spacing:6.588599pt;}
.ws106{word-spacing:6.673630pt;}
.ws31{word-spacing:6.748001pt;}
.ws30{word-spacing:6.907403pt;}
.ws89{word-spacing:6.960537pt;}
.ws8a{word-spacing:7.013670pt;}
.wsa7{word-spacing:7.066804pt;}
.wse5{word-spacing:7.119938pt;}
.wsa5{word-spacing:7.173072pt;}
.wsa4{word-spacing:7.187830pt;}
.ws10a{word-spacing:7.226224pt;}
.ws10c{word-spacing:7.268731pt;}
.wse3{word-spacing:7.279340pt;}
.ws36{word-spacing:7.332474pt;}
.ws24{word-spacing:7.385607pt;}
.ws111{word-spacing:7.438760pt;}
.wsf9{word-spacing:7.566282pt;}
.wsa8{word-spacing:7.598143pt;}
.wsf4{word-spacing:7.757545pt;}
.wsa9{word-spacing:8.288883pt;}
.wsd2{word-spacing:8.342017pt;}
.ws86{word-spacing:8.501419pt;}
.ws7a{word-spacing:8.554553pt;}
.ws3d{word-spacing:8.767088pt;}
.wsa3{word-spacing:8.818264pt;}
.ws5b{word-spacing:8.883983pt;}
.ws25{word-spacing:9.085891pt;}
.wsb0{word-spacing:9.192159pt;}
.ws34{word-spacing:9.351561pt;}
.ws9e{word-spacing:9.374497pt;}
.ws9f{word-spacing:9.404694pt;}
.wsb7{word-spacing:9.510962pt;}
.wsc9{word-spacing:9.636212pt;}
.ws2e{word-spacing:9.776631pt;}
.wscd{word-spacing:9.829765pt;}
.wsb5{word-spacing:9.882899pt;}
.wsbc{word-spacing:9.936033pt;}
.ws103{word-spacing:9.946685pt;}
.wsc3{word-spacing:10.042301pt;}
.ws5d{word-spacing:10.095435pt;}
.ws5c{word-spacing:10.111778pt;}
.ws10d{word-spacing:10.201728pt;}
.wsea{word-spacing:10.254836pt;}
.wsbd{word-spacing:10.361104pt;}
.ws57{word-spacing:10.371731pt;}
.wsaa{word-spacing:10.467372pt;}
.ws1f{word-spacing:10.520506pt;}
.ws105{word-spacing:10.541786pt;}
.ws7b{word-spacing:10.573639pt;}
.ws3e{word-spacing:10.626773pt;}
.wsce{word-spacing:10.679907pt;}
.ws67{word-spacing:10.733041pt;}
.wscb{word-spacing:10.786175pt;}
.ws100{word-spacing:10.839336pt;}
.wsed{word-spacing:10.892443pt;}
.ws56{word-spacing:10.927778pt;}
.ws59{word-spacing:10.929897pt;}
.ws5a{word-spacing:10.945577pt;}
.wse2{word-spacing:10.998710pt;}
.ws47{word-spacing:11.104978pt;}
.wsca{word-spacing:11.111718pt;}
.wsd9{word-spacing:11.158112pt;}
.ws38{word-spacing:11.317514pt;}
.ws45{word-spacing:11.370647pt;}
.wsa0{word-spacing:11.376282pt;}
.ws6e{word-spacing:11.423781pt;}
.ws90{word-spacing:11.474264pt;}
.ws42{word-spacing:11.476915pt;}
.wsfe{word-spacing:11.561958pt;}
.wsbb{word-spacing:11.583183pt;}
.ws7c{word-spacing:11.689451pt;}
.wse{word-spacing:11.811738pt;}
.ws15{word-spacing:11.848852pt;}
.ws3b{word-spacing:11.901986pt;}
.ws41{word-spacing:12.061388pt;}
.ws1e{word-spacing:12.114522pt;}
.ws98{word-spacing:12.220789pt;}
.ws4a{word-spacing:12.433325pt;}
.ws68{word-spacing:12.539593pt;}
.ws0{word-spacing:12.752160pt;}
.wsaf{word-spacing:12.964663pt;}
.ws8{word-spacing:13.007258pt;}
.wseb{word-spacing:13.070931pt;}
.wsc8{word-spacing:13.177199pt;}
.ws19{word-spacing:13.283467pt;}
.ws27{word-spacing:13.549136pt;}
.ws21{word-spacing:14.080475pt;}
.wsf7{word-spacing:14.239912pt;}
.wsfb{word-spacing:14.537462pt;}
.ws50{word-spacing:14.611813pt;}
.ws3c{word-spacing:14.664947pt;}
.ws44{word-spacing:14.771215pt;}
.ws3f{word-spacing:14.824349pt;}
.wsff{word-spacing:14.835013pt;}
.wsc2{word-spacing:14.877483pt;}
.ws49{word-spacing:14.983750pt;}
.ws3a{word-spacing:15.196286pt;}
.ws39{word-spacing:15.213356pt;}
.ws66{word-spacing:15.291906pt;}
.ws37{word-spacing:15.302554pt;}
.wsa{word-spacing:15.302656pt;}
.ws2d{word-spacing:15.621357pt;}
.ws91{word-spacing:15.764721pt;}
.ws2b{word-spacing:15.833892pt;}
.wsd5{word-spacing:15.930585pt;}
.ws12{word-spacing:15.940160pt;}
.ws4f{word-spacing:16.046428pt;}
.ws82{word-spacing:16.114026pt;}
.ws62{word-spacing:16.152695pt;}
.ws1a{word-spacing:16.471499pt;}
.wsa1{word-spacing:16.524633pt;}
.wsb{word-spacing:16.593818pt;}
.ws4e{word-spacing:16.949703pt;}
.ws107{word-spacing:17.257923pt;}
.wsd4{word-spacing:17.374774pt;}
.ws9c{word-spacing:17.379079pt;}
.wsd6{word-spacing:17.383718pt;}
.ws2c{word-spacing:17.427908pt;}
.ws84{word-spacing:17.455963pt;}
.ws10b{word-spacing:17.853024pt;}
.wsf{word-spacing:17.884979pt;}
.ws65{word-spacing:17.906113pt;}
.ws64{word-spacing:17.929164pt;}
.wse1{word-spacing:18.171782pt;}
.ws28{word-spacing:18.331184pt;}
.ws61{word-spacing:18.543719pt;}
.ws76{word-spacing:18.596853pt;}
.ws74{word-spacing:18.602294pt;}
.ws80{word-spacing:18.714055pt;}
.wsf2{word-spacing:19.287594pt;}
.ws88{word-spacing:19.340727pt;}
.ws16{word-spacing:19.553263pt;}
.ws8c{word-spacing:19.818932pt;}
.ws2a{word-spacing:19.925200pt;}
.wsc{word-spacing:20.419482pt;}
.wsee{word-spacing:20.456539pt;}
.wsef{word-spacing:20.509673pt;}
.wsb4{word-spacing:20.669074pt;}
.wsf3{word-spacing:21.519216pt;}
.ws9a{word-spacing:21.603079pt;}
.ws73{word-spacing:21.838019pt;}
.ws71{word-spacing:21.843830pt;}
.wsd7{word-spacing:22.326851pt;}
.ws97{word-spacing:22.548721pt;}
.ws9{word-spacing:22.953984pt;}
.ws85{word-spacing:24.380692pt;}
.ws77{word-spacing:24.708721pt;}
.wse8{word-spacing:25.929327pt;}
.wsd{word-spacing:27.210035pt;}
.ws92{word-spacing:27.353164pt;}
.ws6{word-spacing:27.496960pt;}
.wsf1{word-spacing:27.523343pt;}
.wsf0{word-spacing:27.576477pt;}
.ws94{word-spacing:27.789012pt;}
.ws7{word-spacing:29.170688pt;}
.ws4{word-spacing:31.370445pt;}
.ws5{word-spacing:31.561728pt;}
.ws11{word-spacing:33.426739pt;}
.ws10{word-spacing:33.474560pt;}
.ws72{word-spacing:39.082055pt;}
.ws93{word-spacing:45.012721pt;}
.wsdd{word-spacing:75.033974pt;}
.wsb6{word-spacing:474.109603pt;}
.wsc1{word-spacing:483.995124pt;}
._12{margin-left:-29.742521pt;}
._11{margin-left:-27.842146pt;}
._4{margin-left:-20.669074pt;}
._0{margin-left:-10.201728pt;}
._b{margin-left:-6.854269pt;}
._7{margin-left:-4.728914pt;}
._3{margin-left:-3.719371pt;}
._1{margin-left:-2.295389pt;}
._6{margin-left:-1.328347pt;}
._d{width:1.145110pt;}
._a{width:2.128218pt;}
._2{width:3.182867pt;}
._10{width:4.794296pt;}
._e{width:5.692452pt;}
._5{width:7.407687pt;}
._8{width:12.135847pt;}
._14{width:15.810660pt;}
._1b{width:17.101097pt;}
._19{width:18.649987pt;}
._9{width:19.558707pt;}
._16{width:22.263090pt;}
._15{width:24.664747pt;}
._f{width:26.566933pt;}
._13{width:27.757143pt;}
._c{width:29.930343pt;}
._1a{width:37.123665pt;}
._1c{width:92.722896pt;}
._1f{width:103.566557pt;}
._1d{width:106.509379pt;}
._1e{width:112.363037pt;}
._17{width:488.554516pt;}
._18{width:498.741224pt;}
.fsc{font-size:25.589760pt;}
.fs8{font-size:28.200480pt;}
.fsb{font-size:28.788480pt;}
.fs6{font-size:31.333867pt;}
.fs9{font-size:31.987200pt;}
.fs7{font-size:34.467253pt;}
.fsa{font-size:35.185920pt;}
.fs5{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.yb9{bottom:3.916733pt;}
.y10d{bottom:3.998400pt;}
.yda{bottom:8.796480pt;}
.yb8{bottom:15.666933pt;}
.y10c{bottom:15.993600pt;}
.yd9{bottom:20.791680pt;}
.y10e{bottom:23.190720pt;}
.yba{bottom:24.678475pt;}
.ydb{bottom:29.991119pt;}
.yc8{bottom:37.246019pt;}
.ybb{bottom:44.653188pt;}
.yc7{bottom:46.609127pt;}
.ydc{bottom:50.382319pt;}
.yc6{bottom:55.972234pt;}
.ybc{bottom:64.627902pt;}
.ydd{bottom:70.773519pt;}
.ye9{bottom:81.604945pt;}
.ybd{bottom:84.602615pt;}
.ye8{bottom:91.163520pt;}
.yde{bottom:91.164720pt;}
.y10f{bottom:91.563360pt;}
.ye7{bottom:100.722095pt;}
.y33{bottom:100.740000pt;}
.ybe{bottom:104.577328pt;}
.yc5{bottom:108.689350pt;}
.y112{bottom:109.756080pt;}
.ydf{bottom:111.555920pt;}
.y137{bottom:112.696000pt;}
.ye6{bottom:115.753680pt;}
.y32{bottom:116.680000pt;}
.yd7{bottom:116.681333pt;}
.ybf{bottom:124.552042pt;}
.y136{bottom:124.650667pt;}
.ye0{bottom:131.947120pt;}
.yd6{bottom:132.357333pt;}
.y31{bottom:132.620000pt;}
.y7c{bottom:132.621333pt;}
.y9d{bottom:143.740000pt;}
.y135{bottom:144.276000pt;}
.yc0{bottom:144.526755pt;}
.yd5{bottom:148.297333pt;}
.y54{bottom:148.560000pt;}
.y30{bottom:148.561333pt;}
.ye1{bottom:152.338320pt;}
.y9f{bottom:155.968000pt;}
.y9a{bottom:159.252000pt;}
.y110{bottom:160.335840pt;}
.y9e{bottom:162.573333pt;}
.yd4{bottom:164.237333pt;}
.y2f{bottom:164.501333pt;}
.yc1{bottom:164.501468pt;}
.ya0{bottom:167.806667pt;}
.y134{bottom:168.882667pt;}
.y9c{bottom:171.870667pt;}
.ye2{bottom:172.729521pt;}
.y9b{bottom:175.856000pt;}
.yd3{bottom:180.178667pt;}
.y2e{bottom:180.441333pt;}
.y7b{bottom:184.273333pt;}
.yc2{bottom:184.476182pt;}
.y133{bottom:184.822667pt;}
.y116{bottom:189.509766pt;}
.ye3{bottom:193.120721pt;}
.yd2{bottom:196.118667pt;}
.y2d{bottom:196.381333pt;}
.y115{bottom:198.981975pt;}
.y132{bottom:200.762667pt;}
.y99{bottom:202.182667pt;}
.yc3{bottom:204.450895pt;}
.y7a{bottom:207.064000pt;}
.y114{bottom:208.454985pt;}
.yd1{bottom:212.058667pt;}
.y2c{bottom:212.321333pt;}
.y10b{bottom:212.322667pt;}
.ye4{bottom:213.511921pt;}
.y131{bottom:216.702667pt;}
.y113{bottom:217.927194pt;}
.y98{bottom:218.122667pt;}
.y79{bottom:223.004000pt;}
.yc4{bottom:224.425608pt;}
.yd0{bottom:227.736000pt;}
.y53{bottom:228.261333pt;}
.y2b{bottom:228.262667pt;}
.y111{bottom:228.708480pt;}
.y130{bottom:232.642667pt;}
.ye5{bottom:233.903121pt;}
.y97{bottom:234.062667pt;}
.y78{bottom:238.944000pt;}
.ycf{bottom:243.676000pt;}
.y2a{bottom:244.202667pt;}
.y10a{bottom:245.241333pt;}
.y12f{bottom:248.584000pt;}
.y96{bottom:250.002667pt;}
.y77{bottom:254.884000pt;}
.yce{bottom:259.616000pt;}
.y29{bottom:260.142667pt;}
.y52{bottom:260.993333pt;}
.y109{bottom:261.181333pt;}
.y12e{bottom:264.524000pt;}
.y95{bottom:265.944000pt;}
.y76{bottom:270.824000pt;}
.ycd{bottom:275.556000pt;}
.y28{bottom:276.082667pt;}
.y108{bottom:277.121333pt;}
.y12d{bottom:280.464000pt;}
.ycc{bottom:291.496000pt;}
.y27{bottom:292.022667pt;}
.y94{bottom:294.072000pt;}
.y75{bottom:294.164000pt;}
.y12c{bottom:296.404000pt;}
.y51{bottom:303.760000pt;}
.y107{bottom:305.192000pt;}
.ycb{bottom:307.436000pt;}
.y26{bottom:308.069333pt;}
.y93{bottom:309.348000pt;}
.y104{bottom:311.753333pt;}
.y12b{bottom:312.344000pt;}
.y74{bottom:317.502667pt;}
.y50{bottom:319.701333pt;}
.yff{bottom:320.865333pt;}
.y25{bottom:324.009333pt;}
.y102{bottom:324.578667pt;}
.y103{bottom:329.852000pt;}
.y12a{bottom:332.418667pt;}
.y101{bottom:332.549333pt;}
.y73{bottom:333.442667pt;}
.y106{bottom:333.484000pt;}
.y4f{bottom:335.641333pt;}
.y105{bottom:337.469333pt;}
.yca{bottom:338.430667pt;}
.y24{bottom:339.949333pt;}
.y100{bottom:340.518667pt;}
.y92{bottom:341.057333pt;}
.y72{bottom:346.100000pt;}
.y71{bottom:349.382667pt;}
.y4e{bottom:351.581333pt;}
.yc9{bottom:354.370667pt;}
.y23{bottom:355.890667pt;}
.y91{bottom:356.997333pt;}
.y129{bottom:357.024000pt;}
.y70{bottom:365.324000pt;}
.yfe{bottom:365.480000pt;}
.y4d{bottom:367.521333pt;}
.y22{bottom:371.830667pt;}
.y90{bottom:372.937333pt;}
.y128{bottom:372.964000pt;}
.yb7{bottom:373.498667pt;}
.y6f{bottom:381.264000pt;}
.yfd{bottom:381.420000pt;}
.y4c{bottom:385.562667pt;}
.y21{bottom:387.770667pt;}
.y8f{bottom:388.877333pt;}
.y127{bottom:388.905333pt;}
.y6e{bottom:397.204000pt;}
.yfc{bottom:397.360000pt;}
.y4b{bottom:401.502667pt;}
.y20{bottom:403.710667pt;}
.y126{bottom:404.845333pt;}
.y6d{bottom:413.144000pt;}
.yfb{bottom:413.301333pt;}
.y8e{bottom:414.358667pt;}
.y4a{bottom:417.442667pt;}
.y1f{bottom:419.650667pt;}
.y125{bottom:420.785333pt;}
.yfa{bottom:429.241333pt;}
.y6b{bottom:432.738667pt;}
.y49{bottom:433.384000pt;}
.y1e{bottom:435.592000pt;}
.y124{bottom:436.725333pt;}
.yf9{bottom:445.181333pt;}
.y68{bottom:448.250667pt;}
.y48{bottom:449.324000pt;}
.y1d{bottom:451.532000pt;}
.y8d{bottom:452.273333pt;}
.y123{bottom:452.665333pt;}
.y6a{bottom:460.870667pt;}
.yf8{bottom:461.121333pt;}
.y69{bottom:464.856000pt;}
.y47{bottom:465.264000pt;}
.y6c{bottom:465.482667pt;}
.y1c{bottom:467.472000pt;}
.y8c{bottom:468.213333pt;}
.y122{bottom:468.606667pt;}
.yf7{bottom:477.061333pt;}
.y46{bottom:481.204000pt;}
.y1b{bottom:483.412000pt;}
.y67{bottom:483.440000pt;}
.y8b{bottom:484.153333pt;}
.y121{bottom:484.546667pt;}
.yf6{bottom:493.001333pt;}
.y45{bottom:499.245333pt;}
.y1a{bottom:499.352000pt;}
.y66{bottom:499.380000pt;}
.y8a{bottom:500.093333pt;}
.y120{bottom:504.620000pt;}
.yf5{bottom:508.942667pt;}
.y44{bottom:515.185333pt;}
.y19{bottom:515.292000pt;}
.y65{bottom:515.320000pt;}
.y89{bottom:516.033333pt;}
.yf4{bottom:525.921333pt;}
.y11f{bottom:529.226667pt;}
.y43{bottom:531.126667pt;}
.y18{bottom:531.233333pt;}
.y64{bottom:535.092000pt;}
.yf3{bottom:541.861333pt;}
.y87{bottom:544.162667pt;}
.y11e{bottom:545.166667pt;}
.y42{bottom:547.066667pt;}
.y17{bottom:547.173333pt;}
.yf2{bottom:557.801333pt;}
.y63{bottom:557.882667pt;}
.y84{bottom:559.674667pt;}
.y11d{bottom:561.106667pt;}
.y41{bottom:563.006667pt;}
.y16{bottom:563.113333pt;}
.y86{bottom:572.294667pt;}
.yf1{bottom:573.741333pt;}
.y62{bottom:573.822667pt;}
.y85{bottom:576.280000pt;}
.y88{bottom:576.906667pt;}
.y11c{bottom:577.046667pt;}
.y40{bottom:578.946667pt;}
.y15{bottom:579.053333pt;}
.y61{bottom:586.305333pt;}
.yf0{bottom:589.682667pt;}
.y60{bottom:589.762667pt;}
.y11b{bottom:592.986667pt;}
.y3f{bottom:594.886667pt;}
.y14{bottom:599.816000pt;}
.y83{bottom:603.233333pt;}
.yef{bottom:605.622667pt;}
.y5f{bottom:605.704000pt;}
.y11a{bottom:608.928000pt;}
.y3e{bottom:610.826667pt;}
.y82{bottom:619.173333pt;}
.yee{bottom:621.562667pt;}
.y5e{bottom:621.644000pt;}
.y119{bottom:624.868000pt;}
.y3d{bottom:626.768000pt;}
.y13{bottom:629.318667pt;}
.y81{bottom:631.128000pt;}
.y80{bottom:635.113333pt;}
.yed{bottom:637.502667pt;}
.y5d{bottom:637.584000pt;}
.yb6{bottom:639.050667pt;}
.y118{bottom:640.808000pt;}
.y12{bottom:642.601333pt;}
.y3c{bottom:642.708000pt;}
.yec{bottom:653.442667pt;}
.y5c{bottom:653.524000pt;}
.yb5{bottom:654.990667pt;}
.y11{bottom:655.992000pt;}
.y117{bottom:656.748000pt;}
.y3b{bottom:658.648000pt;}
.y7f{bottom:660.594667pt;}
.y10{bottom:669.274667pt;}
.y5b{bottom:669.464000pt;}
.yb4{bottom:670.930667pt;}
.y3a{bottom:674.588000pt;}
.yf{bottom:682.558667pt;}
.yb3{bottom:686.872000pt;}
.y39{bottom:690.528000pt;}
.y5a{bottom:692.804000pt;}
.ye{bottom:695.842667pt;}
.yeb{bottom:701.642667pt;}
.y14c{bottom:702.484000pt;}
.yb2{bottom:702.812000pt;}
.y38{bottom:706.468000pt;}
.yd{bottom:709.125333pt;}
.y7e{bottom:710.105333pt;}
.y14b{bottom:714.438667pt;}
.y59{bottom:716.142667pt;}
.yea{bottom:717.584000pt;}
.yb1{bottom:718.752000pt;}
.yc{bottom:722.409333pt;}
.y7d{bottom:726.045333pt;}
.y14a{bottom:726.394667pt;}
.y58{bottom:732.082667pt;}
.yb0{bottom:734.428000pt;}
.yb{bottom:735.693333pt;}
.yd8{bottom:736.712000pt;}
.y37{bottom:738.349333pt;}
.ya{bottom:748.976000pt;}
.y149{bottom:750.304000pt;}
.yaf{bottom:750.369333pt;}
.y57{bottom:751.854667pt;}
.y36{bottom:754.289333pt;}
.y9{bottom:762.260000pt;}
.yae{bottom:766.309333pt;}
.y35{bottom:770.229333pt;}
.y148{bottom:774.214667pt;}
.y8{bottom:775.542667pt;}
.yad{bottom:782.249333pt;}
.y34{bottom:786.169333pt;}
.y147{bottom:786.170667pt;}
.y7{bottom:788.826667pt;}
.y56{bottom:793.522667pt;}
.y146{bottom:798.125333pt;}
.yac{bottom:798.189333pt;}
.y6{bottom:802.110667pt;}
.y55{bottom:809.462667pt;}
.y145{bottom:810.080000pt;}
.yab{bottom:814.129333pt;}
.y144{bottom:822.036000pt;}
.yaa{bottom:830.070667pt;}
.y143{bottom:833.990667pt;}
.y142{bottom:845.945333pt;}
.ya9{bottom:846.010667pt;}
.y5{bottom:848.913333pt;}
.y141{bottom:857.901333pt;}
.ya8{bottom:861.950667pt;}
.y4{bottom:865.352000pt;}
.y140{bottom:869.856000pt;}
.ya7{bottom:877.890667pt;}
.y13f{bottom:881.812000pt;}
.y3{bottom:881.986667pt;}
.y13e{bottom:893.766667pt;}
.ya6{bottom:893.830667pt;}
.y13d{bottom:905.721333pt;}
.ya5{bottom:909.770667pt;}
.y13c{bottom:917.677333pt;}
.y2{bottom:923.830667pt;}
.ya4{bottom:925.712000pt;}
.y13b{bottom:929.632000pt;}
.y13a{bottom:941.586667pt;}
.ya3{bottom:941.652000pt;}
.y139{bottom:953.542667pt;}
.ya2{bottom:957.592000pt;}
.y1{bottom:961.024000pt;}
.y138{bottom:965.497333pt;}
.ya1{bottom:977.453333pt;}
.hf{height:2.125355pt;}
.h1d{height:20.558150pt;}
.h21{height:20.986802pt;}
.h27{height:21.332264pt;}
.h1b{height:22.842389pt;}
.h1f{height:23.318669pt;}
.h24{height:23.702515pt;}
.h19{height:24.696550pt;}
.h1c{height:25.126628pt;}
.h20{height:25.650536pt;}
.h25{height:26.072767pt;}
.he{height:26.147101pt;}
.h29{height:29.244954pt;}
.h6{height:33.187635pt;}
.h5{height:33.426739pt;}
.h17{height:34.797767pt;}
.h26{height:34.955612pt;}
.h9{height:36.290431pt;}
.h4{height:36.556100pt;}
.h3{height:36.817434pt;}
.h28{height:36.822767pt;}
.h10{height:36.874903pt;}
.h7{height:37.459376pt;}
.h8{height:39.850400pt;}
.h23{height:40.045884pt;}
.h2{height:40.880515pt;}
.h11{height:43.981884pt;}
.hc{height:45.427101pt;}
.hb{height:45.432434pt;}
.ha{height:48.083101pt;}
.h12{height:50.590043pt;}
.h15{height:52.605355pt;}
.h14{height:52.816237pt;}
.h13{height:52.861767pt;}
.hd{height:53.679733pt;}
.h18{height:60.424021pt;}
.h1{height:87.734861pt;}
.h16{height:109.336021pt;}
.h22{height:110.493355pt;}
.h1a{height:246.754200pt;}
.h1e{height:251.899200pt;}
.h0{height:1056.000000pt;}
.w1{width:329.005600pt;}
.w2{width:335.865600pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x40{left:20.791680pt;}
.x3f{left:25.189920pt;}
.x34{left:28.200480pt;}
.x32{left:32.508887pt;}
.x33{left:34.858927pt;}
.x37{left:37.185120pt;}
.x30{left:40.163359pt;}
.x36{left:44.999193pt;}
.xa{left:65.285333pt;}
.x2f{left:68.156000pt;}
.x47{left:70.598667pt;}
.x35{left:76.239841pt;}
.x9{left:78.569333pt;}
.x1{left:85.356000pt;}
.x48{left:89.630667pt;}
.x45{left:123.485333pt;}
.x3{left:129.046667pt;}
.x17{left:132.756000pt;}
.x18{left:143.248000pt;}
.x8{left:147.612000pt;}
.x31{left:151.186298pt;}
.x3e{left:154.738080pt;}
.x2e{left:157.978667pt;}
.x12{left:160.454667pt;}
.x11{left:162.298667pt;}
.x6{left:165.730667pt;}
.x43{left:174.729333pt;}
.xb{left:180.826667pt;}
.x42{left:181.716000pt;}
.x14{left:185.544000pt;}
.x13{left:190.954667pt;}
.xf{left:193.748000pt;}
.x46{left:195.464000pt;}
.x41{left:202.473378pt;}
.x15{left:206.945333pt;}
.x38{left:224.570936pt;}
.x10{left:232.192000pt;}
.x7{left:312.073333pt;}
.x16{left:330.758667pt;}
.x2{left:369.934667pt;}
.x44{left:387.490667pt;}
.xc{left:415.970667pt;}
.x49{left:421.284000pt;}
.xd{left:429.253333pt;}
.x4a{left:440.316000pt;}
.x39{left:461.398667pt;}
.x24{left:477.930667pt;}
.x21{left:479.497333pt;}
.x1a{left:489.392000pt;}
.x4{left:505.540000pt;}
.x3a{left:515.280000pt;}
.x1d{left:521.298667pt;}
.x1c{left:523.142667pt;}
.xe{left:526.230667pt;}
.x1b{left:527.173333pt;}
.x22{left:530.977333pt;}
.x26{left:535.913333pt;}
.x25{left:540.801333pt;}
.x3c{left:542.677333pt;}
.x3d{left:543.666667pt;}
.x23{left:545.386667pt;}
.x1f{left:546.389333pt;}
.x3b{left:548.988000pt;}
.x1e{left:551.800000pt;}
.x29{left:557.728000pt;}
.x28{left:559.573333pt;}
.x27{left:563.602667pt;}
.x20{left:567.789333pt;}
.x2a{left:582.818667pt;}
.x2b{left:593.537333pt;}
.x5{left:610.026667pt;}
.x19{left:665.298667pt;}
.x2c{left:672.464000pt;}
.x2d{left:676.892000pt;}
}




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