
    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_70edfa52f45b63d2a5a75747.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_ca7e71031ad7e30bc2bdc261.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_92c42e71638e11f3623ae5d2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.665000;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_fff79df599884462261999fb.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_85fff1053e7f8ff6894b08c6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_69ae1e309b426aec1fcb662b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fb4a93875dc191df1dea9b7d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.782000;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_0bb10ebb8437619f1a8a462a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_5ac745316f1e327ea86a7a2e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.969000;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_c13d731577ad4a3113fd0c00.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666000;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_4150f4b11b674b7aff34f89c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.451000;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_810c2149b48d34bdfb740825.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.311035;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_a9d5570145d502ced934c811.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f6531c8bc2c57587514ca422.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.967773;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_81e28f3481f8202440fef2df.woff2')format("woff");}.fff{font-family:fff;line-height:0.688477;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_e0075651ca4bd3429a5c94ac.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.967773;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_4daabda61299e705cc623114.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.896000;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_ddbc1ae34891076fe3bbbc56.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.311035;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_a9d5570145d502ced934c811.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_b545738ced8d574de32ade2c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.936523;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:ff15;src:url('chunks/assets/font_e8ca0ec149da4583aafbfc09.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.881836;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:ff16;src:url('chunks/assets/font_b810d85be5c5aca46b8e07d6.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_4a8e369f52f27c628d6b957a.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.967773;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:ff18;src:url('chunks/assets/font_fbb94b35ff594931e6716c4a.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.311035;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:ff19;src:url('chunks/assets/font_a9d5570145d502ced934c811.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m2{transform:matrix(0.001088,-0.249998,0.249998,0.001088,0,0);-ms-transform:matrix(0.001088,-0.249998,0.249998,0.001088,0,0);-webkit-transform:matrix(0.001088,-0.249998,0.249998,0.001088,0,0);}
.m3{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);}
.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);}
.v2{vertical-align:-26.034000px;}
.v8{vertical-align:-15.808332px;}
.v4{vertical-align:-8.964000px;}
.v5{vertical-align:-7.255025px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.808781px;}
.v9{vertical-align:8.605575px;}
.v3{vertical-align:21.690000px;}
.v1{vertical-align:26.028000px;}
.v7{vertical-align:38.819499px;}
.lsa{letter-spacing:-0.378000px;}
.lsb{letter-spacing:-0.108000px;}
.ls8{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.000538px;}
.ls1b{letter-spacing:0.002338px;}
.lsf{letter-spacing:0.003269px;}
.ls1c{letter-spacing:0.004200px;}
.ls24{letter-spacing:0.005549px;}
.ls7{letter-spacing:0.162000px;}
.ls9{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.221549px;}
.ls30{letter-spacing:0.358560px;}
.ls6{letter-spacing:0.378000px;}
.ls34{letter-spacing:2.038037px;}
.lsd{letter-spacing:2.984525px;}
.ls0{letter-spacing:2.985234px;}
.ls1{letter-spacing:2.991234px;}
.ls3{letter-spacing:3.155563px;}
.lsc{letter-spacing:3.156921px;}
.lse{letter-spacing:8.298312px;}
.ls13{letter-spacing:8.304312px;}
.ls17{letter-spacing:11.705549px;}
.ls2d{letter-spacing:13.278538px;}
.ls2c{letter-spacing:13.284538px;}
.ls15{letter-spacing:14.127199px;}
.ls14{letter-spacing:14.127269px;}
.ls20{letter-spacing:14.943269px;}
.ls1e{letter-spacing:14.950200px;}
.ls19{letter-spacing:15.028200px;}
.ls37{letter-spacing:15.950525px;}
.ls33{letter-spacing:16.514525px;}
.ls22{letter-spacing:16.602538px;}
.ls1d{letter-spacing:16.618200px;}
.ls1a{letter-spacing:16.835549px;}
.ls18{letter-spacing:16.979549px;}
.ls31{letter-spacing:17.456525px;}
.ls3c{letter-spacing:17.582525px;}
.ls3d{letter-spacing:17.588525px;}
.ls26{letter-spacing:18.338525px;}
.ls1f{letter-spacing:19.192200px;}
.ls29{letter-spacing:19.310525px;}
.ls28{letter-spacing:19.316525px;}
.ls4{letter-spacing:19.702812px;}
.ls23{letter-spacing:20.240525px;}
.ls32{letter-spacing:20.612525px;}
.ls2{letter-spacing:20.919234px;}
.ls25{letter-spacing:21.584525px;}
.ls35{letter-spacing:21.998525px;}
.ls12{letter-spacing:24.051352px;}
.ls27{letter-spacing:24.074525px;}
.ls2e{letter-spacing:24.548525px;}
.ls2a{letter-spacing:24.980525px;}
.ls10{letter-spacing:27.933269px;}
.ls11{letter-spacing:27.936538px;}
.ls38{letter-spacing:29.942525px;}
.ls36{letter-spacing:38.957549px;}
.ls3b{letter-spacing:119.011393px;}
.ls2b{letter-spacing:150.842525px;}
.ls2f{letter-spacing:295.262525px;}
.ls3a{letter-spacing:418.952112px;}
.ls39{letter-spacing:437.312572px;}
.ls5{letter-spacing:521.375400px;}
.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;}
}
.wse7{word-spacing:-42.660929px;}
.ws5f{word-spacing:-38.937826px;}
.ws6b{word-spacing:-22.347537px;}
.wsec{word-spacing:-22.346009px;}
.wsed{word-spacing:-17.932800px;}
.ws1{word-spacing:-17.932500px;}
.wse8{word-spacing:-17.587604px;}
.ws11{word-spacing:-14.944500px;}
.ws4a{word-spacing:-14.943900px;}
.wsa0{word-spacing:-14.940000px;}
.ws6d{word-spacing:-14.473062px;}
.ws41{word-spacing:-13.878000px;}
.ws40{word-spacing:-13.716000px;}
.ws42{word-spacing:-13.500000px;}
.wsf7{word-spacing:-13.449600px;}
.ws43{word-spacing:-13.392000px;}
.ws44{word-spacing:-13.122000px;}
.ws13{word-spacing:-10.461000px;}
.wse4{word-spacing:-10.460700px;}
.wsaa{word-spacing:-3.526760px;}
.ws66{word-spacing:-3.466985px;}
.wsb2{word-spacing:-3.012710px;}
.ws48{word-spacing:-2.689902px;}
.wsfd{word-spacing:-2.528525px;}
.ws9{word-spacing:-2.510676px;}
.wsf9{word-spacing:-2.474726px;}
.wsd4{word-spacing:-2.331248px;}
.ws53{word-spacing:-2.092146px;}
.wsdb{word-spacing:-2.032370px;}
.wsc3{word-spacing:-1.972595px;}
.ws14{word-spacing:-1.913195px;}
.ws12{word-spacing:-1.912896px;}
.ws5a{word-spacing:-1.912819px;}
.ws2d{word-spacing:-1.853118px;}
.wsb3{word-spacing:-1.733492px;}
.ws3f{word-spacing:-1.673784px;}
.wsd8{word-spacing:-1.673717px;}
.ws27{word-spacing:-1.494450px;}
.ws10c{word-spacing:-1.452557px;}
.wse{word-spacing:-1.434672px;}
.wsad{word-spacing:-1.434614px;}
.wsf{word-spacing:-1.434373px;}
.wsfb{word-spacing:-1.398758px;}
.ws28{word-spacing:-1.374954px;}
.wsca{word-spacing:-1.374839px;}
.ws1d{word-spacing:-1.255577px;}
.wsb{word-spacing:-1.135782px;}
.wsd6{word-spacing:-1.016185px;}
.ws2b{word-spacing:-1.016166px;}
.wsa7{word-spacing:-0.956410px;}
.wsde{word-spacing:-0.843508px;}
.ws60{word-spacing:-0.836858px;}
.ws62{word-spacing:-0.815297px;}
.ws67{word-spacing:-0.777083px;}
.ws4{word-spacing:-0.717336px;}
.ws76{word-spacing:-0.657532px;}
.wsd9{word-spacing:-0.597756px;}
.ws25{word-spacing:-0.537942px;}
.wsee{word-spacing:-0.484186px;}
.ws2c{word-spacing:-0.478224px;}
.wsa8{word-spacing:-0.478205px;}
.wsa9{word-spacing:-0.477866px;}
.wseb{word-spacing:-0.358654px;}
.wsa1{word-spacing:-0.358560px;}
.ws84{word-spacing:-0.298878px;}
.ws63{word-spacing:-0.239102px;}
.ws45{word-spacing:-0.216000px;}
.ws61{word-spacing:-0.059776px;}
.wsa3{word-spacing:-0.054160px;}
.ws91{word-spacing:-0.018734px;}
.ws92{word-spacing:-0.003850px;}
.ws0{word-spacing:0.000000px;}
.ws15{word-spacing:0.000299px;}
.ws73{word-spacing:0.000703px;}
.ws68{word-spacing:0.059776px;}
.wsf1{word-spacing:0.107597px;}
.ws47{word-spacing:0.108000px;}
.ws5d{word-spacing:0.179327px;}
.ws88{word-spacing:0.358654px;}
.ws46{word-spacing:0.378000px;}
.ws87{word-spacing:0.392188px;}
.wsfe{word-spacing:0.484186px;}
.ws86{word-spacing:0.597756px;}
.wsdf{word-spacing:0.657532px;}
.wsa{word-spacing:0.657558px;}
.ws3a{word-spacing:0.717336px;}
.wsf8{word-spacing:0.806976px;}
.ws17{word-spacing:0.956448px;}
.ws5c{word-spacing:1.016185px;}
.wse3{word-spacing:1.195512px;}
.ws8f{word-spacing:1.255288px;}
.ws8c{word-spacing:1.374839px;}
.ws8b{word-spacing:1.382150px;}
.ws1e{word-spacing:1.434672px;}
.wsd{word-spacing:1.494330px;}
.ws78{word-spacing:1.554166px;}
.ws22{word-spacing:1.614006px;}
.ws5b{word-spacing:1.673717px;}
.ws57{word-spacing:1.733492px;}
.ws10{word-spacing:1.733562px;}
.ws52{word-spacing:1.912819px;}
.ws82{word-spacing:2.032370px;}
.ws71{word-spacing:2.092146px;}
.ws26{word-spacing:2.092230px;}
.ws9a{word-spacing:2.211697px;}
.ws77{word-spacing:2.271473px;}
.ws6e{word-spacing:2.331248px;}
.ws3c{word-spacing:2.331342px;}
.wscd{word-spacing:2.391024px;}
.ws36{word-spacing:2.570454px;}
.wsc9{word-spacing:2.630126px;}
.ws1a{word-spacing:2.630232px;}
.wsac{word-spacing:2.678134px;}
.wsab{word-spacing:2.689902px;}
.ws109{word-spacing:2.743718px;}
.wsaf{word-spacing:2.809453px;}
.ws8{word-spacing:2.809626px;}
.wscb{word-spacing:2.869229px;}
.wscf{word-spacing:2.929004px;}
.ws104{word-spacing:3.066509px;}
.wsb1{word-spacing:3.168107px;}
.ws3{word-spacing:3.168413px;}
.wsb7{word-spacing:3.203724px;}
.wsb8{word-spacing:3.227882px;}
.wsef{word-spacing:3.281702px;}
.wsba{word-spacing:3.287658px;}
.wsfa{word-spacing:3.389299px;}
.wse2{word-spacing:3.407209px;}
.ws1f{word-spacing:3.407226px;}
.ws72{word-spacing:3.466225px;}
.ws9f{word-spacing:3.466985px;}
.ws9d{word-spacing:3.586536px;}
.ws80{word-spacing:3.646312px;}
.ws70{word-spacing:3.706087px;}
.ws2e{word-spacing:3.825433px;}
.wsd7{word-spacing:3.885414px;}
.ws2f{word-spacing:3.945468px;}
.ws74{word-spacing:4.004965px;}
.wsbc{word-spacing:4.064741px;}
.wsfc{word-spacing:4.088678px;}
.wse5{word-spacing:4.303843px;}
.ws2{word-spacing:4.363794px;}
.ws3b{word-spacing:4.423572px;}
.ws103{word-spacing:4.465267px;}
.ws107{word-spacing:4.519066px;}
.wsd0{word-spacing:4.542946px;}
.ws10b{word-spacing:4.572864px;}
.ws49{word-spacing:4.767949px;}
.wsda{word-spacing:4.841824px;}
.ws50{word-spacing:4.901599px;}
.ws10d{word-spacing:4.949453px;}
.ws8e{word-spacing:4.961375px;}
.ws9b{word-spacing:5.140702px;}
.wsb0{word-spacing:5.200477px;}
.ws5{word-spacing:5.200686px;}
.wsae{word-spacing:5.260253px;}
.wsf2{word-spacing:5.272243px;}
.ws6c{word-spacing:5.320028px;}
.wsd1{word-spacing:5.379804px;}
.ws20{word-spacing:5.439798px;}
.ws106{word-spacing:5.487437px;}
.wse1{word-spacing:5.559131px;}
.ws54{word-spacing:5.618906px;}
.ws7f{word-spacing:5.738458px;}
.ws59{word-spacing:5.798233px;}
.ws37{word-spacing:5.858304px;}
.ws24{word-spacing:5.918022px;}
.ws58{word-spacing:5.977560px;}
.ws5e{word-spacing:6.097111px;}
.ws10a{word-spacing:6.133018px;}
.ws89{word-spacing:6.154567px;}
.ws75{word-spacing:6.156887px;}
.ws8d{word-spacing:6.216662px;}
.ws9e{word-spacing:6.336214px;}
.ws102{word-spacing:6.348211px;}
.ws81{word-spacing:6.395989px;}
.wsf0{word-spacing:6.402010px;}
.wsbb{word-spacing:6.575316px;}
.wsc{word-spacing:6.575341px;}
.ws29{word-spacing:6.575580px;}
.ws96{word-spacing:6.585683px;}
.ws97{word-spacing:6.614134px;}
.ws98{word-spacing:6.635092px;}
.ws108{word-spacing:6.671002px;}
.ws7{word-spacing:6.754794px;}
.ws7d{word-spacing:6.814418px;}
.ws21{word-spacing:6.814692px;}
.wsff{word-spacing:6.832397px;}
.ws90{word-spacing:7.052134px;}
.ws65{word-spacing:7.053521px;}
.wsb9{word-spacing:7.113296px;}
.wsc2{word-spacing:7.352399px;}
.ws1b{word-spacing:7.352694px;}
.ws105{word-spacing:7.370381px;}
.ws6f{word-spacing:7.412174px;}
.ws56{word-spacing:7.531726px;}
.ws101{word-spacing:7.693171px;}
.ws9c{word-spacing:7.830604px;}
.ws30{word-spacing:7.890696px;}
.ws51{word-spacing:8.009930px;}
.ws83{word-spacing:8.069706px;}
.ws6{word-spacing:8.070030px;}
.ws99{word-spacing:8.129482px;}
.ws64{word-spacing:8.139696px;}
.ws100{word-spacing:8.177357px;}
.ws18{word-spacing:8.488476px;}
.ws4d{word-spacing:8.547911px;}
.ws4e{word-spacing:8.607686px;}
.ws55{word-spacing:8.667462px;}
.wse0{word-spacing:8.787013px;}
.ws85{word-spacing:9.026116px;}
.wscc{word-spacing:9.085891px;}
.wsc7{word-spacing:9.444545px;}
.ws33{word-spacing:9.444924px;}
.ws4f{word-spacing:9.504320px;}
.wsdd{word-spacing:9.743423px;}
.wsce{word-spacing:9.771949px;}
.ws1c{word-spacing:9.923148px;}
.wsa6{word-spacing:10.036480px;}
.wsc1{word-spacing:10.102076px;}
.wsdc{word-spacing:10.161852px;}
.wsf5{word-spacing:10.275494px;}
.ws39{word-spacing:10.700262px;}
.wsc5{word-spacing:10.945279px;}
.wsc6{word-spacing:10.998710px;}
.ws31{word-spacing:11.058751px;}
.ws23{word-spacing:11.477376px;}
.ws4c{word-spacing:11.536691px;}
.ws35{word-spacing:11.537154px;}
.wsf3{word-spacing:11.781850px;}
.wsbd{word-spacing:11.955120px;}
.wsd2{word-spacing:12.014896px;}
.wsd3{word-spacing:12.020134px;}
.wsc8{word-spacing:12.134447px;}
.wsf4{word-spacing:12.588826px;}
.wsb4{word-spacing:12.863245px;}
.wsb5{word-spacing:12.865979px;}
.wsb6{word-spacing:12.911530px;}
.ws32{word-spacing:13.211058px;}
.ws93{word-spacing:13.220624px;}
.ws95{word-spacing:13.226624px;}
.ws79{word-spacing:13.270183px;}
.ws38{word-spacing:13.450050px;}
.ws8a{word-spacing:13.987490px;}
.ws2a{word-spacing:14.466276px;}
.wsf6{word-spacing:15.709133px;}
.ws19{word-spacing:15.721554px;}
.ws7a{word-spacing:16.199188px;}
.ws6a{word-spacing:16.557841px;}
.ws69{word-spacing:16.677392px;}
.ws3e{word-spacing:16.797618px;}
.ws34{word-spacing:17.335620px;}
.ws7e{word-spacing:17.574026px;}
.ws3d{word-spacing:17.813844px;}
.wsc4{word-spacing:18.450752px;}
.ws7b{word-spacing:18.769538px;}
.ws4b{word-spacing:18.981949px;}
.wsc0{word-spacing:20.263928px;}
.wsa4{word-spacing:20.631896px;}
.ws7c{word-spacing:21.399665px;}
.wse6{word-spacing:22.960286px;}
.wsbf{word-spacing:27.762752px;}
.wsbe{word-spacing:38.674813px;}
.ws94{word-spacing:71.670944px;}
.wsa2{word-spacing:91.834779px;}
.ws16{word-spacing:144.249030px;}
.wsd5{word-spacing:144.251443px;}
.wse9{word-spacing:352.408080px;}
.wsea{word-spacing:381.036994px;}
.wsa5{word-spacing:675.281133px;}
._1{margin-left:-7.918734px;}
._3{margin-left:-5.738400px;}
._1e{margin-left:-4.733748px;}
._4{margin-left:-3.715327px;}
._5{margin-left:-2.576988px;}
._0{margin-left:-1.549368px;}
._17{width:1.083996px;}
._30{width:2.155661px;}
._a{width:3.337614px;}
._2{width:4.460298px;}
._2a{width:14.178293px;}
._13{width:15.422724px;}
._b{width:17.873622px;}
._8{width:18.944646px;}
._9{width:20.503854px;}
._14{width:22.531267px;}
._d{width:23.552711px;}
._7{width:25.354963px;}
._19{width:26.719693px;}
._f{width:28.032098px;}
._22{width:29.887742px;}
._16{width:31.981230px;}
._1a{width:33.354785px;}
._31{width:35.184154px;}
._1c{width:36.941321px;}
._20{width:38.136833px;}
._1d{width:40.104630px;}
._6{width:42.681492px;}
._1b{width:44.840940px;}
._2b{width:47.700929px;}
._c{width:48.714330px;}
._e{width:52.903530px;}
._1f{width:55.232654px;}
._2f{width:56.811110px;}
._12{width:58.342730px;}
._15{width:59.782122px;}
._23{width:62.644771px;}
._21{width:71.192740px;}
._2d{width:84.433503px;}
._26{width:98.269259px;}
._11{width:108.384030px;}
._25{width:112.502489px;}
._10{width:162.181530px;}
._28{width:164.679950px;}
._2c{width:182.354290px;}
._2e{width:204.047991px;}
._24{width:362.139319px;}
._18{width:403.035804px;}
._27{width:414.404425px;}
._29{width:848.998080px;}
.fc2{color:transparent;}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:29.862650px;}
.fs11{font-size:35.542238px;}
.fsf{font-size:37.911888px;}
.fs9{font-size:41.842800px;}
.fs5{font-size:41.844000px;}
.fs12{font-size:42.660929px;}
.fsd{font-size:45.133200px;}
.fs2{font-size:47.820000px;}
.fs17{font-size:53.798400px;}
.fs6{font-size:54.000000px;}
.fse{font-size:54.159840px;}
.fs15{font-size:55.481401px;}
.fsb{font-size:59.760000px;}
.fs8{font-size:59.775600px;}
.fs4{font-size:59.778000px;}
.fs10{font-size:60.177600px;}
.fs14{font-size:64.017000px;}
.fs3{font-size:65.754000px;}
.fs7{font-size:66.000000px;}
.fsc{font-size:66.240000px;}
.fs1{font-size:71.730000px;}
.fsa{font-size:71.731200px;}
.fs16{font-size:76.820400px;}
.fs0{font-size:86.076000px;}
.y0{bottom:0.000000px;}
.ya1{bottom:2.958599px;}
.yb8{bottom:3.204074px;}
.yae{bottom:3.553917px;}
.y4c{bottom:4.428000px;}
.y10e{bottom:9.377857px;}
.ya0{bottom:19.354644px;}
.yb7{bottom:19.600120px;}
.yad{bottom:19.949962px;}
.ya2{bottom:27.823001px;}
.yb9{bottom:28.068471px;}
.yaf{bottom:28.418313px;}
.y103{bottom:29.262791px;}
.ya3{bottom:49.270298px;}
.yba{bottom:49.515768px;}
.yb0{bottom:49.865610px;}
.y4b{bottom:52.452000px;}
.y10b{bottom:52.465112px;}
.ya8{bottom:53.709005px;}
.y9d{bottom:57.240000px;}
.y113{bottom:64.090287px;}
.y10a{bottom:68.117135px;}
.ya4{bottom:70.717595px;}
.ybb{bottom:70.963067px;}
.yb1{bottom:71.312909px;}
.y104{bottom:73.815798px;}
.ya5{bottom:92.164891px;}
.ybc{bottom:92.410363px;}
.yb2{bottom:92.760206px;}
.y112{bottom:98.098660px;}
.y106{bottom:109.966574px;}
.ya6{bottom:113.612188px;}
.ybd{bottom:113.857660px;}
.yb3{bottom:114.207502px;}
.y2a{bottom:121.531500px;}
.y13c{bottom:123.124500px;}
.y153{bottom:123.723000px;}
.y11a{bottom:134.548374px;}
.ya7{bottom:135.059484px;}
.ybe{bottom:135.304956px;}
.yb4{bottom:135.654799px;}
.y29{bottom:139.315500px;}
.y13b{bottom:139.563000px;}
.ye6{bottom:139.996500px;}
.y152{bottom:141.505500px;}
.y109{bottom:146.117347px;}
.y120{bottom:146.474347px;}
.ybf{bottom:151.572437px;}
.yb5{bottom:151.971584px;}
.yaa{bottom:152.082823px;}
.y119{bottom:152.731625px;}
.y13a{bottom:156.001500px;}
.y28{bottom:157.098000px;}
.y116{bottom:157.633936px;}
.ye5{bottom:157.779000px;}
.y151{bottom:159.289500px;}
.y117{bottom:159.576109px;}
.yb6{bottom:160.809205px;}
.yac{bottom:161.159047px;}
.y139{bottom:172.440000px;}
.y27{bottom:174.882000px;}
.ye4{bottom:175.563000px;}
.y150{bottom:177.072000px;}
.y138{bottom:188.878500px;}
.y111{bottom:189.513513px;}
.y4a{bottom:190.443000px;}
.y7d{bottom:192.550500px;}
.y26{bottom:192.664500px;}
.ye3{bottom:193.345500px;}
.y105{bottom:196.865382px;}
.y14f{bottom:202.327500px;}
.y137{bottom:205.317000px;}
.y101{bottom:210.448500px;}
.ye2{bottom:211.129500px;}
.y25{bottom:211.945500px;}
.y110{bottom:219.268709px;}
.y136{bottom:221.755500px;}
.y9c{bottom:225.393000px;}
.y49{bottom:227.362500px;}
.y100{bottom:228.231000px;}
.ye1{bottom:228.912000px;}
.y24{bottom:229.729500px;}
.y7c{bottom:231.141000px;}
.y107{bottom:232.596244px;}
.y135{bottom:238.192500px;}
.y48{bottom:245.146500px;}
.yff{bottom:246.015000px;}
.ye0{bottom:246.696000px;}
.y23{bottom:247.512000px;}
.y14e{bottom:253.137000px;}
.y134{bottom:254.631000px;}
.y47{bottom:262.929000px;}
.y11e{bottom:263.090277px;}
.yfe{bottom:263.797500px;}
.ydf{bottom:264.480000px;}
.y22{bottom:265.296000px;}
.y10c{bottom:268.856442px;}
.y14d{bottom:269.575500px;}
.y133{bottom:271.069500px;}
.y7b{bottom:271.668000px;}
.y11f{bottom:274.327624px;}
.y46{bottom:280.713000px;}
.y9b{bottom:281.413500px;}
.yfd{bottom:281.581500px;}
.yde{bottom:282.943500px;}
.y21{bottom:283.080000px;}
.y14c{bottom:286.014000px;}
.y132{bottom:287.508000px;}
.y7a{bottom:289.450500px;}
.y45{bottom:298.497000px;}
.y9a{bottom:299.197500px;}
.yfc{bottom:299.364000px;}
.ydd{bottom:300.727500px;}
.y20{bottom:300.862500px;}
.y14b{bottom:302.452500px;}
.y131{bottom:303.946500px;}
.y79{bottom:307.234500px;}
.y44{bottom:316.279500px;}
.y99{bottom:316.981500px;}
.yfb{bottom:317.148000px;}
.y118{bottom:318.509439px;}
.ydc{bottom:318.510000px;}
.y1f{bottom:318.646500px;}
.y14a{bottom:318.891000px;}
.y130{bottom:320.385000px;}
.y78{bottom:325.017000px;}
.y43{bottom:334.063500px;}
.y149{bottom:335.329500px;}
.ydb{bottom:336.294000px;}
.y1e{bottom:336.429000px;}
.y12f{bottom:336.823500px;}
.y98{bottom:338.350500px;}
.y77{bottom:342.801000px;}
.yfa{bottom:343.359000px;}
.y10f{bottom:344.156496px;}
.y148{bottom:351.768000px;}
.y42{bottom:351.846000px;}
.y12e{bottom:353.262000px;}
.yda{bottom:354.076500px;}
.y1d{bottom:354.213000px;}
.y108{bottom:355.527801px;}
.y76{bottom:360.583500px;}
.yf9{bottom:361.143000px;}
.y97{bottom:366.124500px;}
.y147{bottom:368.205000px;}
.y41{bottom:369.630000px;}
.y12d{bottom:369.700500px;}
.yd9{bottom:371.860500px;}
.y1c{bottom:373.494000px;}
.y11b{bottom:377.742267px;}
.y75{bottom:378.367500px;}
.yf8{bottom:378.927000px;}
.y96{bottom:383.908500px;}
.y146{bottom:384.643500px;}
.y11d{bottom:384.991019px;}
.y12c{bottom:386.139000px;}
.y40{bottom:387.412500px;}
.yd8{bottom:389.643000px;}
.y10d{bottom:391.191530px;}
.y1b{bottom:391.276500px;}
.yf7{bottom:396.709500px;}
.y74{bottom:397.584000px;}
.y145{bottom:401.082000px;}
.y95{bottom:401.691000px;}
.y12b{bottom:402.577500px;}
.y11c{bottom:402.682374px;}
.y115{bottom:402.925852px;}
.y3f{bottom:405.196500px;}
.yd7{bottom:408.108000px;}
.y1a{bottom:409.060500px;}
.yf6{bottom:414.493500px;}
.y73{bottom:415.368000px;}
.y144{bottom:417.520500px;}
.y12a{bottom:419.014500px;}
.y94{bottom:419.475000px;}
.y114{bottom:419.881868px;}
.y3e{bottom:422.979000px;}
.yd6{bottom:425.890500px;}
.y19{bottom:426.843000px;}
.yf5{bottom:432.276000px;}
.y72{bottom:433.150500px;}
.y143{bottom:433.959000px;}
.y129{bottom:435.453000px;}
.yd5{bottom:443.674500px;}
.y18{bottom:444.627000px;}
.y142{bottom:450.397500px;}
.y71{bottom:450.934500px;}
.y128{bottom:451.891500px;}
.y3d{bottom:456.324000px;}
.yd4{bottom:461.458500px;}
.y141{bottom:466.836000px;}
.y127{bottom:468.330000px;}
.y70{bottom:468.718500px;}
.y93{bottom:478.282500px;}
.yd3{bottom:479.241000px;}
.y17{bottom:480.199500px;}
.yf4{bottom:481.017000px;}
.y140{bottom:483.274500px;}
.y126{bottom:484.768500px;}
.y6f{bottom:486.501000px;}
.y3c{bottom:492.805500px;}
.y92{bottom:496.066500px;}
.yd2{bottom:497.025000px;}
.y13f{bottom:499.713000px;}
.y125{bottom:501.207000px;}
.y6e{bottom:504.285000px;}
.y91{bottom:513.849000px;}
.yd1{bottom:514.807500px;}
.y13e{bottom:516.151500px;}
.y124{bottom:517.645500px;}
.y6d{bottom:522.067500px;}
.y3b{bottom:529.726500px;}
.y16{bottom:529.899000px;}
.y13d{bottom:532.588500px;}
.yd0{bottom:532.591500px;}
.y90{bottom:535.219500px;}
.y6c{bottom:539.851500px;}
.yf3{bottom:544.275000px;}
.y3a{bottom:547.510500px;}
.y15{bottom:547.681500px;}
.y123{bottom:549.027000px;}
.ycf{bottom:550.374000px;}
.y6b{bottom:557.634000px;}
.yf2{bottom:562.059000px;}
.y8f{bottom:562.410000px;}
.y39{bottom:565.293000px;}
.y14{bottom:565.465500px;}
.yce{bottom:568.839000px;}
.y6a{bottom:576.852000px;}
.yf1{bottom:579.841500px;}
.y8e{bottom:580.192500px;}
.y38{bottom:583.077000px;}
.y13{bottom:583.248000px;}
.ycd{bottom:586.621500px;}
.y69{bottom:594.634500px;}
.y122{bottom:597.094500px;}
.yf0{bottom:597.625500px;}
.y8d{bottom:597.976500px;}
.y37{bottom:600.859500px;}
.y12{bottom:601.032000px;}
.y68{bottom:612.418500px;}
.y121{bottom:614.878500px;}
.yef{bottom:615.408000px;}
.y36{bottom:618.643500px;}
.y11{bottom:618.814500px;}
.ycc{bottom:620.643000px;}
.y67{bottom:630.202500px;}
.yee{bottom:633.192000px;}
.y35{bottom:636.426000px;}
.y8c{bottom:636.481500px;}
.y10{bottom:636.598500px;}
.y102{bottom:640.134000px;}
.y66{bottom:647.985000px;}
.yed{bottom:650.974500px;}
.y34{bottom:654.210000px;}
.y8b{bottom:654.264000px;}
.yf{bottom:654.382500px;}
.ycb{bottom:658.722000px;}
.y65{bottom:665.769000px;}
.yec{bottom:668.758500px;}
.y33{bottom:671.992500px;}
.y8a{bottom:672.048000px;}
.ye{bottom:672.165000px;}
.yca{bottom:676.506000px;}
.y64{bottom:683.551500px;}
.y32{bottom:689.776500px;}
.y89{bottom:689.830500px;}
.yd{bottom:689.949000px;}
.yc9{bottom:694.288500px;}
.yeb{bottom:694.969500px;}
.y63{bottom:701.335500px;}
.y31{bottom:707.559000px;}
.y88{bottom:707.614500px;}
.yc{bottom:707.731500px;}
.yc8{bottom:712.072500px;}
.yea{bottom:712.753500px;}
.y62{bottom:719.118000px;}
.y30{bottom:725.343000px;}
.y87{bottom:725.398500px;}
.yb{bottom:725.515500px;}
.yc7{bottom:729.855000px;}
.ye9{bottom:730.536000px;}
.y61{bottom:736.902000px;}
.y2f{bottom:743.125500px;}
.y86{bottom:743.181000px;}
.ya{bottom:743.298000px;}
.yc6{bottom:747.639000px;}
.ye8{bottom:748.320000px;}
.y60{bottom:756.118500px;}
.y2e{bottom:760.909500px;}
.y85{bottom:760.965000px;}
.y9{bottom:761.082000px;}
.yc5{bottom:766.102500px;}
.y5f{bottom:773.902500px;}
.y84{bottom:778.747500px;}
.y8{bottom:778.864500px;}
.y2d{bottom:779.017500px;}
.yc4{bottom:783.886500px;}
.y5e{bottom:791.685000px;}
.y83{bottom:796.531500px;}
.y7{bottom:796.648500px;}
.y2c{bottom:796.801500px;}
.ye7{bottom:801.669000px;}
.yc3{bottom:801.670500px;}
.y5d{bottom:809.469000px;}
.y82{bottom:814.314000px;}
.y2b{bottom:814.584000px;}
.yc2{bottom:819.453000px;}
.y81{bottom:832.098000px;}
.y6{bottom:832.368000px;}
.y5c{bottom:844.921500px;}
.y80{bottom:849.880500px;}
.yc1{bottom:867.520500px;}
.y7f{bottom:867.664500px;}
.yc0{bottom:885.303000px;}
.y5b{bottom:885.447000px;}
.y5{bottom:887.589000px;}
.y5a{bottom:903.231000px;}
.y4{bottom:908.511000px;}
.ya9{bottom:910.558500px;}
.yab{bottom:915.745335px;}
.y9f{bottom:916.497555px;}
.y7e{bottom:921.013500px;}
.y59{bottom:921.015000px;}
.y58{bottom:938.797500px;}
.y3{bottom:943.846500px;}
.y57{bottom:956.581500px;}
.y56{bottom:974.364000px;}
.y2{bottom:988.678500px;}
.y55{bottom:992.148000px;}
.y54{bottom:1009.930500px;}
.y1{bottom:1015.576500px;}
.y53{bottom:1027.714500px;}
.y52{bottom:1045.497000px;}
.y51{bottom:1063.281000px;}
.y50{bottom:1070.295000px;}
.y4f{bottom:1090.095000px;}
.y4e{bottom:1109.895000px;}
.y9e{bottom:1118.338560px;}
.y4d{bottom:1129.695000px;}
.hb{height:18.684000px;}
.h1d{height:27.003771px;}
.h1e{height:30.079288px;}
.h4{height:31.800300px;}
.h15{height:34.290654px;}
.h25{height:37.013299px;}
.h26{height:37.283299px;}
.h6{height:40.828374px;}
.hf{height:41.125613px;}
.ha{height:41.127264px;}
.h16{height:41.148785px;}
.h1b{height:41.364715px;}
.h20{height:42.152861px;}
.he{height:42.201574px;}
.h13{height:44.149219px;}
.h11{height:44.831700px;}
.h7{height:44.833500px;}
.h5{height:45.501768px;}
.h18{height:45.720872px;}
.hd{height:46.992000px;}
.h1f{height:48.637916px;}
.h8{height:49.474416px;}
.h9{height:49.637160px;}
.h10{height:49.637990px;}
.h21{height:49.641235px;}
.h3{height:49.710240px;}
.hc{height:54.421875px;}
.h2{height:57.828300px;}
.h22{height:58.365499px;}
.h1{height:59.564592px;}
.h12{height:60.226875px;}
.h24{height:66.971074px;}
.h23{height:97.184998px;}
.h14{height:143.442058px;}
.h19{height:146.532930px;}
.h1a{height:151.927852px;}
.h17{height:167.666355px;}
.h1c{height:438.090197px;}
.h0{height:1188.000000px;}
.w5{width:174.515040px;}
.w2{width:192.065837px;}
.w4{width:195.495208px;}
.w6{width:547.702216px;}
.w3{width:584.234316px;}
.w1{width:811.371000px;}
.w0{width:918.000000px;}
.x1d{left:-190.731633px;}
.x1c{left:-189.515152px;}
.x1b{left:-120.557500px;}
.x0{left:0.000000px;}
.x17{left:10.285166px;}
.x16{left:17.301969px;}
.x2e{left:18.690539px;}
.x20{left:21.033337px;}
.x2c{left:27.698952px;}
.x2d{left:35.633228px;}
.x14{left:38.968026px;}
.x1e{left:42.699394px;}
.x29{left:46.361839px;}
.xf{left:54.000000px;}
.x10{left:66.289500px;}
.x23{left:70.133148px;}
.x28{left:85.568917px;}
.x15{left:87.476106px;}
.x1f{left:91.207475px;}
.xc{left:96.307500px;}
.x19{left:99.732978px;}
.x2f{left:105.214214px;}
.xb{left:111.250500px;}
.x25{left:118.209000px;}
.x26{left:120.060000px;}
.x37{left:126.186000px;}
.x30{left:137.535599px;}
.x35{left:147.694842px;}
.x18{left:169.333500px;}
.x13{left:173.597083px;}
.x1{left:180.793500px;}
.x27{left:187.591500px;}
.x2{left:193.876500px;}
.x3{left:213.300000px;}
.x2b{left:225.576097px;}
.x21{left:229.647940px;}
.x38{left:231.108000px;}
.xa{left:237.733500px;}
.x39{left:242.310000px;}
.x9{left:253.876500px;}
.x8{left:263.676000px;}
.x3b{left:268.875000px;}
.x3c{left:278.584500px;}
.x32{left:302.279213px;}
.x3a{left:336.322500px;}
.x31{left:341.222893px;}
.x34{left:345.967770px;}
.x1a{left:358.222712px;}
.x24{left:411.186441px;}
.x12{left:437.940000px;}
.x33{left:455.498341px;}
.x36{left:465.109616px;}
.xd{left:478.453500px;}
.xe{left:493.396500px;}
.x11{left:499.891500px;}
.x3d{left:508.332000px;}
.x2a{left:519.784732px;}
.x22{left:565.001220px;}
.x4{left:574.384500px;}
.x3e{left:583.471500px;}
.x5{left:587.331000px;}
.x3f{left:603.549000px;}
.x40{left:613.260000px;}
.x6{left:653.697000px;}
.x7{left:668.635500px;}
.x41{left:740.608500px;}
.x42{left:750.318000px;}
@media print{
.v2{vertical-align:-23.141333pt;}
.v8{vertical-align:-14.051851pt;}
.v4{vertical-align:-7.968000pt;}
.v5{vertical-align:-6.448911pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.607805pt;}
.v9{vertical-align:7.649400pt;}
.v3{vertical-align:19.280000pt;}
.v1{vertical-align:23.136000pt;}
.v7{vertical-align:34.506221pt;}
.lsa{letter-spacing:-0.336000pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.000479pt;}
.ls1b{letter-spacing:0.002079pt;}
.lsf{letter-spacing:0.002906pt;}
.ls1c{letter-spacing:0.003733pt;}
.ls24{letter-spacing:0.004932pt;}
.ls7{letter-spacing:0.144000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.196932pt;}
.ls30{letter-spacing:0.318720pt;}
.ls6{letter-spacing:0.336000pt;}
.ls34{letter-spacing:1.811588pt;}
.lsd{letter-spacing:2.652911pt;}
.ls0{letter-spacing:2.653541pt;}
.ls1{letter-spacing:2.658875pt;}
.ls3{letter-spacing:2.804945pt;}
.lsc{letter-spacing:2.806152pt;}
.lse{letter-spacing:7.376277pt;}
.ls13{letter-spacing:7.381610pt;}
.ls17{letter-spacing:10.404932pt;}
.ls2d{letter-spacing:11.803145pt;}
.ls2c{letter-spacing:11.808479pt;}
.ls15{letter-spacing:12.557510pt;}
.ls14{letter-spacing:12.557573pt;}
.ls20{letter-spacing:13.282906pt;}
.ls1e{letter-spacing:13.289067pt;}
.ls19{letter-spacing:13.358400pt;}
.ls37{letter-spacing:14.178245pt;}
.ls33{letter-spacing:14.679578pt;}
.ls22{letter-spacing:14.757812pt;}
.ls1d{letter-spacing:14.771733pt;}
.ls1a{letter-spacing:14.964932pt;}
.ls18{letter-spacing:15.092932pt;}
.ls31{letter-spacing:15.516911pt;}
.ls3c{letter-spacing:15.628911pt;}
.ls3d{letter-spacing:15.634245pt;}
.ls26{letter-spacing:16.300911pt;}
.ls1f{letter-spacing:17.059733pt;}
.ls29{letter-spacing:17.164911pt;}
.ls28{letter-spacing:17.170245pt;}
.ls4{letter-spacing:17.513611pt;}
.ls23{letter-spacing:17.991578pt;}
.ls32{letter-spacing:18.322245pt;}
.ls2{letter-spacing:18.594875pt;}
.ls25{letter-spacing:19.186245pt;}
.ls35{letter-spacing:19.554245pt;}
.ls12{letter-spacing:21.378980pt;}
.ls27{letter-spacing:21.399578pt;}
.ls2e{letter-spacing:21.820911pt;}
.ls2a{letter-spacing:22.204911pt;}
.ls10{letter-spacing:24.829573pt;}
.ls11{letter-spacing:24.832479pt;}
.ls38{letter-spacing:26.615578pt;}
.ls36{letter-spacing:34.628932pt;}
.ls3b{letter-spacing:105.787905pt;}
.ls2b{letter-spacing:134.082245pt;}
.ls2f{letter-spacing:262.455578pt;}
.ls3a{letter-spacing:372.401878pt;}
.ls39{letter-spacing:388.722286pt;}
.ls5{letter-spacing:463.444800pt;}
.wse7{word-spacing:-37.920826pt;}
.ws5f{word-spacing:-34.611401pt;}
.ws6b{word-spacing:-19.864477pt;}
.wsec{word-spacing:-19.863119pt;}
.wsed{word-spacing:-15.940267pt;}
.ws1{word-spacing:-15.940000pt;}
.wse8{word-spacing:-15.633426pt;}
.ws11{word-spacing:-13.284000pt;}
.ws4a{word-spacing:-13.283467pt;}
.wsa0{word-spacing:-13.280000pt;}
.ws6d{word-spacing:-12.864944pt;}
.ws41{word-spacing:-12.336000pt;}
.ws40{word-spacing:-12.192000pt;}
.ws42{word-spacing:-12.000000pt;}
.wsf7{word-spacing:-11.955200pt;}
.ws43{word-spacing:-11.904000pt;}
.ws44{word-spacing:-11.664000pt;}
.ws13{word-spacing:-9.298667pt;}
.wse4{word-spacing:-9.298400pt;}
.wsaa{word-spacing:-3.134898pt;}
.ws66{word-spacing:-3.081764pt;}
.wsb2{word-spacing:-2.677965pt;}
.ws48{word-spacing:-2.391024pt;}
.wsfd{word-spacing:-2.247578pt;}
.ws9{word-spacing:-2.231712pt;}
.wsf9{word-spacing:-2.199757pt;}
.wsd4{word-spacing:-2.072221pt;}
.ws53{word-spacing:-1.859685pt;}
.wsdb{word-spacing:-1.806551pt;}
.wsc3{word-spacing:-1.753418pt;}
.ws14{word-spacing:-1.700618pt;}
.ws12{word-spacing:-1.700352pt;}
.ws5a{word-spacing:-1.700284pt;}
.ws2d{word-spacing:-1.647216pt;}
.wsb3{word-spacing:-1.540882pt;}
.ws3f{word-spacing:-1.487808pt;}
.wsd8{word-spacing:-1.487748pt;}
.ws27{word-spacing:-1.328400pt;}
.ws10c{word-spacing:-1.291162pt;}
.wse{word-spacing:-1.275264pt;}
.wsad{word-spacing:-1.275213pt;}
.wsf{word-spacing:-1.274998pt;}
.wsfb{word-spacing:-1.243341pt;}
.ws28{word-spacing:-1.222181pt;}
.wsca{word-spacing:-1.222079pt;}
.ws1d{word-spacing:-1.116069pt;}
.wsb{word-spacing:-1.009584pt;}
.wsd6{word-spacing:-0.903276pt;}
.ws2b{word-spacing:-0.903259pt;}
.wsa7{word-spacing:-0.850142pt;}
.wsde{word-spacing:-0.749785pt;}
.ws60{word-spacing:-0.743874pt;}
.ws62{word-spacing:-0.724708pt;}
.ws67{word-spacing:-0.690740pt;}
.ws4{word-spacing:-0.637632pt;}
.ws76{word-spacing:-0.584473pt;}
.wsd9{word-spacing:-0.531339pt;}
.ws25{word-spacing:-0.478171pt;}
.wsee{word-spacing:-0.430387pt;}
.ws2c{word-spacing:-0.425088pt;}
.wsa8{word-spacing:-0.425071pt;}
.wsa9{word-spacing:-0.424770pt;}
.wseb{word-spacing:-0.318803pt;}
.wsa1{word-spacing:-0.318720pt;}
.ws84{word-spacing:-0.265669pt;}
.ws63{word-spacing:-0.212535pt;}
.ws45{word-spacing:-0.192000pt;}
.ws61{word-spacing:-0.053134pt;}
.wsa3{word-spacing:-0.048142pt;}
.ws91{word-spacing:-0.016653pt;}
.ws92{word-spacing:-0.003422pt;}
.ws0{word-spacing:0.000000pt;}
.ws15{word-spacing:0.000266pt;}
.ws73{word-spacing:0.000625pt;}
.ws68{word-spacing:0.053134pt;}
.wsf1{word-spacing:0.095642pt;}
.ws47{word-spacing:0.096000pt;}
.ws5d{word-spacing:0.159402pt;}
.ws88{word-spacing:0.318803pt;}
.ws46{word-spacing:0.336000pt;}
.ws87{word-spacing:0.348611pt;}
.wsfe{word-spacing:0.430387pt;}
.ws86{word-spacing:0.531339pt;}
.wsdf{word-spacing:0.584473pt;}
.wsa{word-spacing:0.584496pt;}
.ws3a{word-spacing:0.637632pt;}
.wsf8{word-spacing:0.717312pt;}
.ws17{word-spacing:0.850176pt;}
.ws5c{word-spacing:0.903276pt;}
.wse3{word-spacing:1.062677pt;}
.ws8f{word-spacing:1.115811pt;}
.ws8c{word-spacing:1.222079pt;}
.ws8b{word-spacing:1.228578pt;}
.ws1e{word-spacing:1.275264pt;}
.wsd{word-spacing:1.328294pt;}
.ws78{word-spacing:1.381481pt;}
.ws22{word-spacing:1.434672pt;}
.ws5b{word-spacing:1.487748pt;}
.ws57{word-spacing:1.540882pt;}
.ws10{word-spacing:1.540944pt;}
.ws52{word-spacing:1.700284pt;}
.ws82{word-spacing:1.806551pt;}
.ws71{word-spacing:1.859685pt;}
.ws26{word-spacing:1.859760pt;}
.ws9a{word-spacing:1.965953pt;}
.ws77{word-spacing:2.019087pt;}
.ws6e{word-spacing:2.072221pt;}
.ws3c{word-spacing:2.072304pt;}
.wscd{word-spacing:2.125355pt;}
.ws36{word-spacing:2.284848pt;}
.wsc9{word-spacing:2.337890pt;}
.ws1a{word-spacing:2.337984pt;}
.wsac{word-spacing:2.380563pt;}
.wsab{word-spacing:2.391024pt;}
.ws109{word-spacing:2.438861pt;}
.wsaf{word-spacing:2.497292pt;}
.ws8{word-spacing:2.497445pt;}
.wscb{word-spacing:2.550426pt;}
.wscf{word-spacing:2.603559pt;}
.ws104{word-spacing:2.725786pt;}
.wsb1{word-spacing:2.816095pt;}
.ws3{word-spacing:2.816367pt;}
.wsb7{word-spacing:2.847755pt;}
.wsb8{word-spacing:2.869229pt;}
.wsef{word-spacing:2.917069pt;}
.wsba{word-spacing:2.922363pt;}
.wsfa{word-spacing:3.012710pt;}
.wse2{word-spacing:3.028630pt;}
.ws1f{word-spacing:3.028646pt;}
.ws72{word-spacing:3.081089pt;}
.ws9f{word-spacing:3.081764pt;}
.ws9d{word-spacing:3.188032pt;}
.ws80{word-spacing:3.241166pt;}
.ws70{word-spacing:3.294300pt;}
.ws2e{word-spacing:3.400385pt;}
.wsd7{word-spacing:3.453701pt;}
.ws2f{word-spacing:3.507082pt;}
.ws74{word-spacing:3.559969pt;}
.wsbc{word-spacing:3.613103pt;}
.wsfc{word-spacing:3.634381pt;}
.wse5{word-spacing:3.825638pt;}
.ws2{word-spacing:3.878928pt;}
.ws3b{word-spacing:3.932064pt;}
.ws103{word-spacing:3.969126pt;}
.ws107{word-spacing:4.016947pt;}
.wsd0{word-spacing:4.038174pt;}
.ws10b{word-spacing:4.064768pt;}
.ws49{word-spacing:4.238177pt;}
.wsda{word-spacing:4.303843pt;}
.ws50{word-spacing:4.356977pt;}
.ws10d{word-spacing:4.399514pt;}
.ws8e{word-spacing:4.410111pt;}
.ws9b{word-spacing:4.569513pt;}
.wsb0{word-spacing:4.622646pt;}
.ws5{word-spacing:4.622832pt;}
.wsae{word-spacing:4.675780pt;}
.wsf2{word-spacing:4.686438pt;}
.ws6c{word-spacing:4.728914pt;}
.wsd1{word-spacing:4.782048pt;}
.ws20{word-spacing:4.835376pt;}
.ws106{word-spacing:4.877722pt;}
.wse1{word-spacing:4.941450pt;}
.ws54{word-spacing:4.994583pt;}
.ws7f{word-spacing:5.100851pt;}
.ws59{word-spacing:5.153985pt;}
.ws37{word-spacing:5.207381pt;}
.ws24{word-spacing:5.260464pt;}
.ws58{word-spacing:5.313387pt;}
.ws5e{word-spacing:5.419654pt;}
.ws10a{word-spacing:5.451571pt;}
.ws89{word-spacing:5.470726pt;}
.ws75{word-spacing:5.472788pt;}
.ws8d{word-spacing:5.525922pt;}
.ws9e{word-spacing:5.632190pt;}
.ws102{word-spacing:5.642854pt;}
.ws81{word-spacing:5.685324pt;}
.wsf0{word-spacing:5.690675pt;}
.wsbb{word-spacing:5.844725pt;}
.wsc{word-spacing:5.844747pt;}
.ws29{word-spacing:5.844960pt;}
.ws96{word-spacing:5.853940pt;}
.ws97{word-spacing:5.879230pt;}
.ws98{word-spacing:5.897859pt;}
.ws108{word-spacing:5.929779pt;}
.ws7{word-spacing:6.004262pt;}
.ws7d{word-spacing:6.057261pt;}
.ws21{word-spacing:6.057504pt;}
.wsff{word-spacing:6.073242pt;}
.ws90{word-spacing:6.268563pt;}
.ws65{word-spacing:6.269796pt;}
.wsb9{word-spacing:6.322930pt;}
.wsc2{word-spacing:6.535466pt;}
.ws1b{word-spacing:6.535728pt;}
.ws105{word-spacing:6.551450pt;}
.ws6f{word-spacing:6.588599pt;}
.ws56{word-spacing:6.694867pt;}
.ws101{word-spacing:6.838374pt;}
.ws9c{word-spacing:6.960537pt;}
.ws30{word-spacing:7.013952pt;}
.ws51{word-spacing:7.119938pt;}
.ws83{word-spacing:7.173072pt;}
.ws6{word-spacing:7.173360pt;}
.ws99{word-spacing:7.226206pt;}
.ws64{word-spacing:7.235285pt;}
.ws100{word-spacing:7.268762pt;}
.ws18{word-spacing:7.545312pt;}
.ws4d{word-spacing:7.598143pt;}
.ws4e{word-spacing:7.651277pt;}
.ws55{word-spacing:7.704411pt;}
.wse0{word-spacing:7.810678pt;}
.ws85{word-spacing:8.023214pt;}
.wscc{word-spacing:8.076348pt;}
.wsc7{word-spacing:8.395151pt;}
.ws33{word-spacing:8.395488pt;}
.ws4f{word-spacing:8.448285pt;}
.wsdd{word-spacing:8.660820pt;}
.wsce{word-spacing:8.686177pt;}
.ws1c{word-spacing:8.820576pt;}
.wsa6{word-spacing:8.921316pt;}
.wsc1{word-spacing:8.979623pt;}
.wsdc{word-spacing:9.032757pt;}
.wsf5{word-spacing:9.133773pt;}
.ws39{word-spacing:9.511344pt;}
.wsc5{word-spacing:9.729137pt;}
.wsc6{word-spacing:9.776631pt;}
.ws31{word-spacing:9.830001pt;}
.ws23{word-spacing:10.202112pt;}
.ws4c{word-spacing:10.254836pt;}
.ws35{word-spacing:10.255248pt;}
.wsf3{word-spacing:10.472755pt;}
.wsbd{word-spacing:10.626773pt;}
.wsd2{word-spacing:10.679907pt;}
.wsd3{word-spacing:10.684563pt;}
.wsc8{word-spacing:10.786175pt;}
.wsf4{word-spacing:11.190067pt;}
.wsb4{word-spacing:11.433996pt;}
.wsb5{word-spacing:11.436426pt;}
.wsb6{word-spacing:11.476915pt;}
.ws32{word-spacing:11.743162pt;}
.ws93{word-spacing:11.751666pt;}
.ws95{word-spacing:11.756999pt;}
.ws79{word-spacing:11.795718pt;}
.ws38{word-spacing:11.955600pt;}
.ws8a{word-spacing:12.433325pt;}
.ws2a{word-spacing:12.858912pt;}
.wsf6{word-spacing:13.963674pt;}
.ws19{word-spacing:13.974715pt;}
.ws7a{word-spacing:14.399278pt;}
.ws6a{word-spacing:14.718081pt;}
.ws69{word-spacing:14.824349pt;}
.ws3e{word-spacing:14.931216pt;}
.ws34{word-spacing:15.409440pt;}
.ws7e{word-spacing:15.621357pt;}
.ws3d{word-spacing:15.834528pt;}
.wsc4{word-spacing:16.400669pt;}
.ws7b{word-spacing:16.684034pt;}
.ws4b{word-spacing:16.872844pt;}
.wsc0{word-spacing:18.012381pt;}
.wsa4{word-spacing:18.339463pt;}
.ws7c{word-spacing:19.021924pt;}
.wse6{word-spacing:20.409143pt;}
.wsbf{word-spacing:24.678002pt;}
.wsbe{word-spacing:34.377612pt;}
.ws94{word-spacing:63.707506pt;}
.wsa2{word-spacing:81.630914pt;}
.ws16{word-spacing:128.221360pt;}
.wsd5{word-spacing:128.223505pt;}
.wse9{word-spacing:313.251626pt;}
.wsea{word-spacing:338.699550pt;}
.wsa5{word-spacing:600.249896pt;}
._1{margin-left:-7.038874pt;}
._3{margin-left:-5.100800pt;}
._1e{margin-left:-4.207776pt;}
._4{margin-left:-3.302513pt;}
._5{margin-left:-2.290656pt;}
._0{margin-left:-1.377216pt;}
._17{width:0.963552pt;}
._30{width:1.916143pt;}
._a{width:2.966768pt;}
._2{width:3.964709pt;}
._2a{width:12.602927pt;}
._13{width:13.709088pt;}
._b{width:15.887664pt;}
._8{width:16.839686pt;}
._9{width:18.225648pt;}
._14{width:20.027793pt;}
._d{width:20.935743pt;}
._7{width:22.537745pt;}
._19{width:23.750838pt;}
._f{width:24.917420pt;}
._22{width:26.566882pt;}
._16{width:28.427760pt;}
._1a{width:29.648698pt;}
._31{width:31.274803pt;}
._1c{width:32.836730pt;}
._20{width:33.899407pt;}
._1d{width:35.648560pt;}
._6{width:37.939104pt;}
._1b{width:39.858613pt;}
._2b{width:42.400826pt;}
._c{width:43.301626pt;}
._e{width:47.025360pt;}
._1f{width:49.095693pt;}
._2f{width:50.498765pt;}
._12{width:51.860205pt;}
._15{width:53.139664pt;}
._23{width:55.684241pt;}
._21{width:63.282435pt;}
._2d{width:75.052003pt;}
._26{width:87.350452pt;}
._11{width:96.341360pt;}
._25{width:100.002212pt;}
._10{width:144.161360pt;}
._28{width:146.382178pt;}
._2c{width:162.092702pt;}
._2e{width:181.375992pt;}
._24{width:321.901617pt;}
._18{width:358.254048pt;}
._27{width:368.359489pt;}
._29{width:754.664960pt;}
.fs13{font-size:26.544578pt;}
.fs11{font-size:31.593101pt;}
.fsf{font-size:33.699456pt;}
.fs9{font-size:37.193600pt;}
.fs5{font-size:37.194667pt;}
.fs12{font-size:37.920826pt;}
.fsd{font-size:40.118400pt;}
.fs2{font-size:42.506667pt;}
.fs17{font-size:47.820800pt;}
.fs6{font-size:48.000000pt;}
.fse{font-size:48.142080pt;}
.fs15{font-size:49.316800pt;}
.fsb{font-size:53.120000pt;}
.fs8{font-size:53.133867pt;}
.fs4{font-size:53.136000pt;}
.fs10{font-size:53.491200pt;}
.fs14{font-size:56.904000pt;}
.fs3{font-size:58.448000pt;}
.fs7{font-size:58.666667pt;}
.fsc{font-size:58.880000pt;}
.fs1{font-size:63.760000pt;}
.fsa{font-size:63.761067pt;}
.fs16{font-size:68.284800pt;}
.fs0{font-size:76.512000pt;}
.y0{bottom:0.000000pt;}
.ya1{bottom:2.629865pt;}
.yb8{bottom:2.848066pt;}
.yae{bottom:3.159037pt;}
.y4c{bottom:3.936000pt;}
.y10e{bottom:8.335873pt;}
.ya0{bottom:17.204128pt;}
.yb7{bottom:17.422329pt;}
.yad{bottom:17.733300pt;}
.ya2{bottom:24.731557pt;}
.yb9{bottom:24.949752pt;}
.yaf{bottom:25.260723pt;}
.y103{bottom:26.011369pt;}
.ya3{bottom:43.795820pt;}
.yba{bottom:44.014016pt;}
.yb0{bottom:44.324987pt;}
.y4b{bottom:46.624000pt;}
.y10b{bottom:46.635655pt;}
.ya8{bottom:47.741338pt;}
.y9d{bottom:50.880000pt;}
.y113{bottom:56.969144pt;}
.y10a{bottom:60.548565pt;}
.ya4{bottom:62.860084pt;}
.ybb{bottom:63.078281pt;}
.yb1{bottom:63.389252pt;}
.y104{bottom:65.614043pt;}
.ya5{bottom:81.924348pt;}
.ybc{bottom:82.142545pt;}
.yb2{bottom:82.453516pt;}
.y112{bottom:87.198809pt;}
.y106{bottom:97.748066pt;}
.ya6{bottom:100.988611pt;}
.ybd{bottom:101.206809pt;}
.yb3{bottom:101.517780pt;}
.y2a{bottom:108.028000pt;}
.y13c{bottom:109.444000pt;}
.y153{bottom:109.976000pt;}
.y11a{bottom:119.598555pt;}
.ya7{bottom:120.052875pt;}
.ybe{bottom:120.271072pt;}
.yb4{bottom:120.582043pt;}
.y29{bottom:123.836000pt;}
.y13b{bottom:124.056000pt;}
.ye6{bottom:124.441333pt;}
.y152{bottom:125.782667pt;}
.y109{bottom:129.882086pt;}
.y120{bottom:130.199419pt;}
.ybf{bottom:134.731055pt;}
.yb5{bottom:135.085852pt;}
.yaa{bottom:135.184732pt;}
.y119{bottom:135.761445pt;}
.y13a{bottom:138.668000pt;}
.y28{bottom:139.642667pt;}
.y116{bottom:140.119054pt;}
.ye5{bottom:140.248000pt;}
.y151{bottom:141.590667pt;}
.y117{bottom:141.845431pt;}
.yb6{bottom:142.941516pt;}
.yac{bottom:143.252487pt;}
.y139{bottom:153.280000pt;}
.y27{bottom:155.450667pt;}
.ye4{bottom:156.056000pt;}
.y150{bottom:157.397333pt;}
.y138{bottom:167.892000pt;}
.y111{bottom:168.456456pt;}
.y4a{bottom:169.282667pt;}
.y7d{bottom:171.156000pt;}
.y26{bottom:171.257333pt;}
.ye3{bottom:171.862667pt;}
.y105{bottom:174.991451pt;}
.y14f{bottom:179.846667pt;}
.y137{bottom:182.504000pt;}
.y101{bottom:187.065333pt;}
.ye2{bottom:187.670667pt;}
.y25{bottom:188.396000pt;}
.y110{bottom:194.905519pt;}
.y136{bottom:197.116000pt;}
.y9c{bottom:200.349333pt;}
.y49{bottom:202.100000pt;}
.y100{bottom:202.872000pt;}
.ye1{bottom:203.477333pt;}
.y24{bottom:204.204000pt;}
.y7c{bottom:205.458667pt;}
.y107{bottom:206.752217pt;}
.y135{bottom:211.726667pt;}
.y48{bottom:217.908000pt;}
.yff{bottom:218.680000pt;}
.ye0{bottom:219.285333pt;}
.y23{bottom:220.010667pt;}
.y14e{bottom:225.010667pt;}
.y134{bottom:226.338667pt;}
.y47{bottom:233.714667pt;}
.y11e{bottom:233.858024pt;}
.yfe{bottom:234.486667pt;}
.ydf{bottom:235.093333pt;}
.y22{bottom:235.818667pt;}
.y10c{bottom:238.983504pt;}
.y14d{bottom:239.622667pt;}
.y133{bottom:240.950667pt;}
.y7b{bottom:241.482667pt;}
.y11f{bottom:243.846777pt;}
.y46{bottom:249.522667pt;}
.y9b{bottom:250.145333pt;}
.yfd{bottom:250.294667pt;}
.yde{bottom:251.505333pt;}
.y21{bottom:251.626667pt;}
.y14c{bottom:254.234667pt;}
.y132{bottom:255.562667pt;}
.y7a{bottom:257.289333pt;}
.y45{bottom:265.330667pt;}
.y9a{bottom:265.953333pt;}
.yfc{bottom:266.101333pt;}
.ydd{bottom:267.313333pt;}
.y20{bottom:267.433333pt;}
.y14b{bottom:268.846667pt;}
.y131{bottom:270.174667pt;}
.y79{bottom:273.097333pt;}
.y44{bottom:281.137333pt;}
.y99{bottom:281.761333pt;}
.yfb{bottom:281.909333pt;}
.y118{bottom:283.119502pt;}
.ydc{bottom:283.120000pt;}
.y1f{bottom:283.241333pt;}
.y14a{bottom:283.458667pt;}
.y130{bottom:284.786667pt;}
.y78{bottom:288.904000pt;}
.y43{bottom:296.945333pt;}
.y149{bottom:298.070667pt;}
.ydb{bottom:298.928000pt;}
.y1e{bottom:299.048000pt;}
.y12f{bottom:299.398667pt;}
.y98{bottom:300.756000pt;}
.y77{bottom:304.712000pt;}
.yfa{bottom:305.208000pt;}
.y10f{bottom:305.916886pt;}
.y148{bottom:312.682667pt;}
.y42{bottom:312.752000pt;}
.y12e{bottom:314.010667pt;}
.yda{bottom:314.734667pt;}
.y1d{bottom:314.856000pt;}
.y108{bottom:316.024712pt;}
.y76{bottom:320.518667pt;}
.yf9{bottom:321.016000pt;}
.y97{bottom:325.444000pt;}
.y147{bottom:327.293333pt;}
.y41{bottom:328.560000pt;}
.y12d{bottom:328.622667pt;}
.yd9{bottom:330.542667pt;}
.y1c{bottom:331.994667pt;}
.y11b{bottom:335.770904pt;}
.y75{bottom:336.326667pt;}
.yf8{bottom:336.824000pt;}
.y96{bottom:341.252000pt;}
.y146{bottom:341.905333pt;}
.y11d{bottom:342.214239pt;}
.y12c{bottom:343.234667pt;}
.y40{bottom:344.366667pt;}
.yd8{bottom:346.349333pt;}
.y10d{bottom:347.725804pt;}
.y1b{bottom:347.801333pt;}
.yf7{bottom:352.630667pt;}
.y74{bottom:353.408000pt;}
.y145{bottom:356.517333pt;}
.y95{bottom:357.058667pt;}
.y12b{bottom:357.846667pt;}
.y11c{bottom:357.939888pt;}
.y115{bottom:358.156313pt;}
.y3f{bottom:360.174667pt;}
.yd7{bottom:362.762667pt;}
.y1a{bottom:363.609333pt;}
.yf6{bottom:368.438667pt;}
.y73{bottom:369.216000pt;}
.y144{bottom:371.129333pt;}
.y12a{bottom:372.457333pt;}
.y94{bottom:372.866667pt;}
.y114{bottom:373.228327pt;}
.y3e{bottom:375.981333pt;}
.yd6{bottom:378.569333pt;}
.y19{bottom:379.416000pt;}
.yf5{bottom:384.245333pt;}
.y72{bottom:385.022667pt;}
.y143{bottom:385.741333pt;}
.y129{bottom:387.069333pt;}
.yd5{bottom:394.377333pt;}
.y18{bottom:395.224000pt;}
.y142{bottom:400.353333pt;}
.y71{bottom:400.830667pt;}
.y128{bottom:401.681333pt;}
.y3d{bottom:405.621333pt;}
.yd4{bottom:410.185333pt;}
.y141{bottom:414.965333pt;}
.y127{bottom:416.293333pt;}
.y70{bottom:416.638667pt;}
.y93{bottom:425.140000pt;}
.yd3{bottom:425.992000pt;}
.y17{bottom:426.844000pt;}
.yf4{bottom:427.570667pt;}
.y140{bottom:429.577333pt;}
.y126{bottom:430.905333pt;}
.y6f{bottom:432.445333pt;}
.y3c{bottom:438.049333pt;}
.y92{bottom:440.948000pt;}
.yd2{bottom:441.800000pt;}
.y13f{bottom:444.189333pt;}
.y125{bottom:445.517333pt;}
.y6e{bottom:448.253333pt;}
.y91{bottom:456.754667pt;}
.yd1{bottom:457.606667pt;}
.y13e{bottom:458.801333pt;}
.y124{bottom:460.129333pt;}
.y6d{bottom:464.060000pt;}
.y3b{bottom:470.868000pt;}
.y16{bottom:471.021333pt;}
.y13d{bottom:473.412000pt;}
.yd0{bottom:473.414667pt;}
.y90{bottom:475.750667pt;}
.y6c{bottom:479.868000pt;}
.yf3{bottom:483.800000pt;}
.y3a{bottom:486.676000pt;}
.y15{bottom:486.828000pt;}
.y123{bottom:488.024000pt;}
.ycf{bottom:489.221333pt;}
.y6b{bottom:495.674667pt;}
.yf2{bottom:499.608000pt;}
.y8f{bottom:499.920000pt;}
.y39{bottom:502.482667pt;}
.y14{bottom:502.636000pt;}
.yce{bottom:505.634667pt;}
.y6a{bottom:512.757333pt;}
.yf1{bottom:515.414667pt;}
.y8e{bottom:515.726667pt;}
.y38{bottom:518.290667pt;}
.y13{bottom:518.442667pt;}
.ycd{bottom:521.441333pt;}
.y69{bottom:528.564000pt;}
.y122{bottom:530.750667pt;}
.yf0{bottom:531.222667pt;}
.y8d{bottom:531.534667pt;}
.y37{bottom:534.097333pt;}
.y12{bottom:534.250667pt;}
.y68{bottom:544.372000pt;}
.y121{bottom:546.558667pt;}
.yef{bottom:547.029333pt;}
.y36{bottom:549.905333pt;}
.y11{bottom:550.057333pt;}
.ycc{bottom:551.682667pt;}
.y67{bottom:560.180000pt;}
.yee{bottom:562.837333pt;}
.y35{bottom:565.712000pt;}
.y8c{bottom:565.761333pt;}
.y10{bottom:565.865333pt;}
.y102{bottom:569.008000pt;}
.y66{bottom:575.986667pt;}
.yed{bottom:578.644000pt;}
.y34{bottom:581.520000pt;}
.y8b{bottom:581.568000pt;}
.yf{bottom:581.673333pt;}
.ycb{bottom:585.530667pt;}
.y65{bottom:591.794667pt;}
.yec{bottom:594.452000pt;}
.y33{bottom:597.326667pt;}
.y8a{bottom:597.376000pt;}
.ye{bottom:597.480000pt;}
.yca{bottom:601.338667pt;}
.y64{bottom:607.601333pt;}
.y32{bottom:613.134667pt;}
.y89{bottom:613.182667pt;}
.yd{bottom:613.288000pt;}
.yc9{bottom:617.145333pt;}
.yeb{bottom:617.750667pt;}
.y63{bottom:623.409333pt;}
.y31{bottom:628.941333pt;}
.y88{bottom:628.990667pt;}
.yc{bottom:629.094667pt;}
.yc8{bottom:632.953333pt;}
.yea{bottom:633.558667pt;}
.y62{bottom:639.216000pt;}
.y30{bottom:644.749333pt;}
.y87{bottom:644.798667pt;}
.yb{bottom:644.902667pt;}
.yc7{bottom:648.760000pt;}
.ye9{bottom:649.365333pt;}
.y61{bottom:655.024000pt;}
.y2f{bottom:660.556000pt;}
.y86{bottom:660.605333pt;}
.ya{bottom:660.709333pt;}
.yc6{bottom:664.568000pt;}
.ye8{bottom:665.173333pt;}
.y60{bottom:672.105333pt;}
.y2e{bottom:676.364000pt;}
.y85{bottom:676.413333pt;}
.y9{bottom:676.517333pt;}
.yc5{bottom:680.980000pt;}
.y5f{bottom:687.913333pt;}
.y84{bottom:692.220000pt;}
.y8{bottom:692.324000pt;}
.y2d{bottom:692.460000pt;}
.yc4{bottom:696.788000pt;}
.y5e{bottom:703.720000pt;}
.y83{bottom:708.028000pt;}
.y7{bottom:708.132000pt;}
.y2c{bottom:708.268000pt;}
.ye7{bottom:712.594667pt;}
.yc3{bottom:712.596000pt;}
.y5d{bottom:719.528000pt;}
.y82{bottom:723.834667pt;}
.y2b{bottom:724.074667pt;}
.yc2{bottom:728.402667pt;}
.y81{bottom:739.642667pt;}
.y6{bottom:739.882667pt;}
.y5c{bottom:751.041333pt;}
.y80{bottom:755.449333pt;}
.yc1{bottom:771.129333pt;}
.y7f{bottom:771.257333pt;}
.yc0{bottom:786.936000pt;}
.y5b{bottom:787.064000pt;}
.y5{bottom:788.968000pt;}
.y5a{bottom:802.872000pt;}
.y4{bottom:807.565333pt;}
.ya9{bottom:809.385333pt;}
.yab{bottom:813.995854pt;}
.y9f{bottom:814.664494pt;}
.y7e{bottom:818.678667pt;}
.y59{bottom:818.680000pt;}
.y58{bottom:834.486667pt;}
.y3{bottom:838.974667pt;}
.y57{bottom:850.294667pt;}
.y56{bottom:866.101333pt;}
.y2{bottom:878.825333pt;}
.y55{bottom:881.909333pt;}
.y54{bottom:897.716000pt;}
.y1{bottom:902.734667pt;}
.y53{bottom:913.524000pt;}
.y52{bottom:929.330667pt;}
.y51{bottom:945.138667pt;}
.y50{bottom:951.373333pt;}
.y4f{bottom:968.973333pt;}
.y4e{bottom:986.573333pt;}
.y9e{bottom:994.078720pt;}
.y4d{bottom:1004.173333pt;}
.hb{height:16.608000pt;}
.h1d{height:24.003352pt;}
.h1e{height:26.737145pt;}
.h4{height:28.266933pt;}
.h15{height:30.480581pt;}
.h25{height:32.900710pt;}
.h26{height:33.140710pt;}
.h6{height:36.291888pt;}
.hf{height:36.556100pt;}
.ha{height:36.557568pt;}
.h16{height:36.576697pt;}
.h1b{height:36.768636pt;}
.h20{height:37.469210pt;}
.he{height:37.512510pt;}
.h13{height:39.243750pt;}
.h11{height:39.850400pt;}
.h7{height:39.852000pt;}
.h5{height:40.446016pt;}
.h18{height:40.640775pt;}
.hd{height:41.770667pt;}
.h1f{height:43.233703pt;}
.h8{height:43.977259pt;}
.h9{height:44.121920pt;}
.h10{height:44.122658pt;}
.h21{height:44.125542pt;}
.h3{height:44.186880pt;}
.hc{height:48.375000pt;}
.h2{height:51.402933pt;}
.h22{height:51.880444pt;}
.h1{height:52.946304pt;}
.h12{height:53.535000pt;}
.h24{height:59.529844pt;}
.h23{height:86.386665pt;}
.h14{height:127.504051pt;}
.h19{height:130.251493pt;}
.h1a{height:135.046979pt;}
.h17{height:149.036760pt;}
.h1c{height:389.413509pt;}
.h0{height:1056.000000pt;}
.w5{width:155.124480pt;}
.w2{width:170.725188pt;}
.w4{width:173.773518pt;}
.w6{width:486.846414pt;}
.w3{width:519.319392pt;}
.w1{width:721.218667pt;}
.w0{width:816.000000pt;}
.x1d{left:-169.539230pt;}
.x1c{left:-168.457913pt;}
.x1b{left:-107.162222pt;}
.x0{left:0.000000pt;}
.x17{left:9.142370pt;}
.x16{left:15.379528pt;}
.x2e{left:16.613812pt;}
.x20{left:18.696300pt;}
.x2c{left:24.621291pt;}
.x2d{left:31.673980pt;}
.x14{left:34.638245pt;}
.x1e{left:37.955017pt;}
.x29{left:41.210524pt;}
.xf{left:48.000000pt;}
.x10{left:58.924000pt;}
.x23{left:62.340576pt;}
.x28{left:76.061260pt;}
.x15{left:77.756539pt;}
.x1f{left:81.073311pt;}
.xc{left:85.606667pt;}
.x19{left:88.651536pt;}
.x2f{left:93.523746pt;}
.xb{left:98.889333pt;}
.x25{left:105.074667pt;}
.x26{left:106.720000pt;}
.x37{left:112.165333pt;}
.x30{left:122.253866pt;}
.x35{left:131.284304pt;}
.x18{left:150.518667pt;}
.x13{left:154.308518pt;}
.x1{left:160.705333pt;}
.x27{left:166.748000pt;}
.x2{left:172.334667pt;}
.x3{left:189.600000pt;}
.x2b{left:200.512086pt;}
.x21{left:204.131502pt;}
.x38{left:205.429333pt;}
.xa{left:211.318667pt;}
.x39{left:215.386667pt;}
.x9{left:225.668000pt;}
.x8{left:234.378667pt;}
.x3b{left:239.000000pt;}
.x3c{left:247.630667pt;}
.x32{left:268.692634pt;}
.x3a{left:298.953333pt;}
.x31{left:303.309238pt;}
.x34{left:307.526907pt;}
.x1a{left:318.420188pt;}
.x24{left:365.499059pt;}
.x12{left:389.280000pt;}
.x33{left:404.887414pt;}
.x36{left:413.430770pt;}
.xd{left:425.292000pt;}
.xe{left:438.574667pt;}
.x11{left:444.348000pt;}
.x3d{left:451.850667pt;}
.x2a{left:462.030873pt;}
.x22{left:502.223307pt;}
.x4{left:510.564000pt;}
.x3e{left:518.641333pt;}
.x5{left:522.072000pt;}
.x3f{left:536.488000pt;}
.x40{left:545.120000pt;}
.x6{left:581.064000pt;}
.x7{left:594.342667pt;}
.x41{left:658.318667pt;}
.x42{left:666.949333pt;}
}




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