
    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_0edd7b015d45f5e40d30b3cf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_7dd3f45309eed76b033d7a27.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6dd7828a1dbd779ee16b1c86.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.913574;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_e9b5eba771056c0c66df2114.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_f90ddffac96d0527b95c3627.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;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_5a38340c05ff571c7286838b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3a34791d564da5ea90d56661.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_be87c006b3a515f469a3d363.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_3900b09a9795d066701c1938.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.049805;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_b508fcac8febdaec2b1289c3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;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_b6839df26479e0e145eb4490.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_ddda448d54d71517a8d8dd3d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.620000px;}
.v1{vertical-align:30.381600px;}
.ls52{letter-spacing:-7.800000px;}
.ls48{letter-spacing:-7.740000px;}
.ls51{letter-spacing:-6.840000px;}
.ls49{letter-spacing:-6.060000px;}
.ls89{letter-spacing:-2.640000px;}
.ls34{letter-spacing:-1.776000px;}
.ls10{letter-spacing:-0.780000px;}
.ls42{letter-spacing:-0.600000px;}
.ls41{letter-spacing:-0.420000px;}
.ls31{letter-spacing:-0.360000px;}
.ls57{letter-spacing:-0.240000px;}
.ls11{letter-spacing:-0.225000px;}
.ls3a{letter-spacing:-0.180000px;}
.ls12{letter-spacing:-0.120000px;}
.ls7f{letter-spacing:-0.096000px;}
.ls32{letter-spacing:-0.060000px;}
.ls80{letter-spacing:-0.048000px;}
.lsf{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004140px;}
.ls81{letter-spacing:0.048000px;}
.ls21{letter-spacing:0.060000px;}
.ls47{letter-spacing:0.096000px;}
.ls9{letter-spacing:0.120000px;}
.ls72{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.180000px;}
.ls40{letter-spacing:0.192000px;}
.lsa{letter-spacing:0.240000px;}
.ls66{letter-spacing:0.288000px;}
.ls38{letter-spacing:0.300000px;}
.ls46{letter-spacing:0.336000px;}
.ls2f{letter-spacing:0.360000px;}
.ls65{letter-spacing:0.384000px;}
.ls28{letter-spacing:0.420000px;}
.ls83{letter-spacing:0.432000px;}
.ls39{letter-spacing:0.480000px;}
.ls5b{letter-spacing:0.528000px;}
.ls29{letter-spacing:0.540000px;}
.ls56{letter-spacing:0.576000px;}
.lsc{letter-spacing:0.600000px;}
.ls60{letter-spacing:0.624000px;}
.ls4{letter-spacing:0.660000px;}
.ls4b{letter-spacing:0.672000px;}
.lsb{letter-spacing:0.720000px;}
.ls69{letter-spacing:0.768000px;}
.lsd{letter-spacing:0.780000px;}
.ls62{letter-spacing:0.816000px;}
.ls14{letter-spacing:0.840000px;}
.ls74{letter-spacing:0.864000px;}
.ls30{letter-spacing:0.900000px;}
.ls6b{letter-spacing:0.912000px;}
.ls2{letter-spacing:0.960000px;}
.ls64{letter-spacing:1.008000px;}
.ls1a{letter-spacing:1.020000px;}
.ls7c{letter-spacing:1.056000px;}
.ls27{letter-spacing:1.080000px;}
.ls61{letter-spacing:1.104000px;}
.ls5{letter-spacing:1.140000px;}
.ls5d{letter-spacing:1.152000px;}
.ls1d{letter-spacing:1.200000px;}
.ls68{letter-spacing:1.248000px;}
.ls35{letter-spacing:1.260000px;}
.ls2c{letter-spacing:1.320000px;}
.ls67{letter-spacing:1.344000px;}
.ls33{letter-spacing:1.380000px;}
.lse{letter-spacing:1.440000px;}
.ls19{letter-spacing:1.500000px;}
.ls6d{letter-spacing:1.536000px;}
.ls7{letter-spacing:1.560000px;}
.ls75{letter-spacing:1.584000px;}
.ls8{letter-spacing:1.620000px;}
.ls4c{letter-spacing:1.632000px;}
.ls3f{letter-spacing:1.680000px;}
.ls6f{letter-spacing:1.728000px;}
.ls20{letter-spacing:1.740000px;}
.ls7b{letter-spacing:1.776000px;}
.ls3c{letter-spacing:1.800000px;}
.ls73{letter-spacing:1.824000px;}
.ls26{letter-spacing:1.860000px;}
.ls63{letter-spacing:1.872000px;}
.ls4f{letter-spacing:1.920000px;}
.ls1f{letter-spacing:1.980000px;}
.ls79{letter-spacing:2.016000px;}
.ls37{letter-spacing:2.040000px;}
.ls86{letter-spacing:2.064000px;}
.ls15{letter-spacing:2.100000px;}
.ls76{letter-spacing:2.112000px;}
.ls2e{letter-spacing:2.160000px;}
.ls16{letter-spacing:2.220000px;}
.ls1e{letter-spacing:2.280000px;}
.ls78{letter-spacing:2.304000px;}
.ls2d{letter-spacing:2.340000px;}
.ls5f{letter-spacing:2.352000px;}
.ls25{letter-spacing:2.400000px;}
.ls77{letter-spacing:2.448000px;}
.ls13{letter-spacing:2.460000px;}
.ls6c{letter-spacing:2.496000px;}
.ls18{letter-spacing:2.520000px;}
.ls7a{letter-spacing:2.544000px;}
.ls4d{letter-spacing:2.580000px;}
.ls6a{letter-spacing:2.592000px;}
.ls22{letter-spacing:2.640000px;}
.ls3d{letter-spacing:2.700000px;}
.ls45{letter-spacing:2.760000px;}
.ls5e{letter-spacing:2.784000px;}
.ls3b{letter-spacing:2.820000px;}
.ls6e{letter-spacing:2.832000px;}
.ls2b{letter-spacing:2.880000px;}
.ls82{letter-spacing:2.928000px;}
.ls36{letter-spacing:2.940000px;}
.ls24{letter-spacing:3.000000px;}
.ls50{letter-spacing:3.060000px;}
.ls88{letter-spacing:3.072000px;}
.ls43{letter-spacing:3.120000px;}
.ls84{letter-spacing:3.168000px;}
.ls44{letter-spacing:3.180000px;}
.ls53{letter-spacing:3.240000px;}
.ls85{letter-spacing:3.264000px;}
.ls7d{letter-spacing:3.360000px;}
.ls7e{letter-spacing:3.408000px;}
.ls3e{letter-spacing:3.480000px;}
.ls4a{letter-spacing:3.540000px;}
.ls2a{letter-spacing:3.660000px;}
.ls23{letter-spacing:3.780000px;}
.ls1b{letter-spacing:3.840000px;}
.ls55{letter-spacing:3.960000px;}
.ls71{letter-spacing:4.032000px;}
.ls54{letter-spacing:4.200000px;}
.ls5c{letter-spacing:4.224000px;}
.ls1c{letter-spacing:4.320000px;}
.ls17{letter-spacing:4.620000px;}
.ls70{letter-spacing:4.896000px;}
.ls3{letter-spacing:4.980000px;}
.ls59{letter-spacing:5.160000px;}
.ls87{letter-spacing:6.096000px;}
.ls5a{letter-spacing:7.620000px;}
.ls4e{letter-spacing:8.100000px;}
.ls58{letter-spacing:8.460000px;}
.ls0{letter-spacing:59.532876px;}
.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;}
}
.ws46{word-spacing:-23.100000px;}
.ws52{word-spacing:-18.480000px;}
.ws51{word-spacing:-18.240000px;}
.ws5a{word-spacing:-17.040000px;}
.ws2{word-spacing:-16.680000px;}
.wsc{word-spacing:-16.500000px;}
.ws5c{word-spacing:-16.224000px;}
.ws1a{word-spacing:-16.140000px;}
.ws71{word-spacing:-16.032000px;}
.ws47{word-spacing:-15.180000px;}
.ws94{word-spacing:-15.168000px;}
.ws1b{word-spacing:-14.880000px;}
.ws5e{word-spacing:-14.592000px;}
.ws77{word-spacing:-14.352000px;}
.ws76{word-spacing:-13.920000px;}
.ws6f{word-spacing:-13.728000px;}
.ws3f{word-spacing:-13.632000px;}
.ws60{word-spacing:-13.536000px;}
.ws75{word-spacing:-13.440000px;}
.ws4{word-spacing:-13.344000px;}
.ws79{word-spacing:-13.056000px;}
.ws5d{word-spacing:-13.008000px;}
.ws74{word-spacing:-12.864000px;}
.ws95{word-spacing:-12.672000px;}
.ws7a{word-spacing:-12.576000px;}
.ws5b{word-spacing:-12.528000px;}
.ws3{word-spacing:-12.510000px;}
.ws7b{word-spacing:-12.480000px;}
.ws93{word-spacing:-12.432000px;}
.ws34{word-spacing:-12.336000px;}
.ws78{word-spacing:-12.192000px;}
.ws72{word-spacing:-12.144000px;}
.ws35{word-spacing:-12.096000px;}
.ws5f{word-spacing:-12.000000px;}
.ws73{word-spacing:-11.952000px;}
.ws70{word-spacing:-11.904000px;}
.ws0{word-spacing:-10.210662px;}
.ws96{word-spacing:-9.360000px;}
.ws7e{word-spacing:-4.896000px;}
.ws11{word-spacing:-4.620000px;}
.ws69{word-spacing:-4.224000px;}
.ws8f{word-spacing:-3.408000px;}
.ws98{word-spacing:-3.360000px;}
.ws67{word-spacing:-3.300000px;}
.ws53{word-spacing:-3.240000px;}
.ws6{word-spacing:-2.886000px;}
.ws68{word-spacing:-2.700000px;}
.ws6a{word-spacing:-2.640000px;}
.ws6e{word-spacing:-2.592000px;}
.ws88{word-spacing:-2.544000px;}
.ws10{word-spacing:-2.520000px;}
.ws30{word-spacing:-2.340000px;}
.ws17{word-spacing:-2.220000px;}
.ws99{word-spacing:-2.064000px;}
.ws86{word-spacing:-2.016000px;}
.ws4d{word-spacing:-1.740000px;}
.ws82{word-spacing:-1.680000px;}
.ws15{word-spacing:-1.560000px;}
.ws84{word-spacing:-1.440000px;}
.ws6d{word-spacing:-1.344000px;}
.ws62{word-spacing:-1.260000px;}
.ws8a{word-spacing:-1.248000px;}
.ws89{word-spacing:-1.056000px;}
.ws91{word-spacing:-0.864000px;}
.ws6b{word-spacing:-0.816000px;}
.ws44{word-spacing:-0.672000px;}
.ws8e{word-spacing:-0.624000px;}
.ws1c{word-spacing:-0.600000px;}
.ws8c{word-spacing:-0.576000px;}
.ws29{word-spacing:-0.480000px;}
.ws97{word-spacing:-0.432000px;}
.ws87{word-spacing:-0.384000px;}
.ws36{word-spacing:-0.360000px;}
.ws54{word-spacing:-0.300000px;}
.ws6c{word-spacing:-0.288000px;}
.ws2f{word-spacing:-0.180000px;}
.ws48{word-spacing:-0.120000px;}
.ws3c{word-spacing:-0.096000px;}
.ws14{word-spacing:-0.060000px;}
.ws5{word-spacing:0.000000px;}
.ws80{word-spacing:0.048000px;}
.ws2d{word-spacing:0.060000px;}
.ws92{word-spacing:0.096000px;}
.ws8{word-spacing:0.120000px;}
.ws42{word-spacing:0.144000px;}
.ws21{word-spacing:0.180000px;}
.ws7{word-spacing:0.225000px;}
.ws39{word-spacing:0.240000px;}
.ws55{word-spacing:0.360000px;}
.ws2a{word-spacing:0.420000px;}
.ws22{word-spacing:0.480000px;}
.ws2e{word-spacing:0.600000px;}
.ws85{word-spacing:0.720000px;}
.ws45{word-spacing:0.780000px;}
.ws64{word-spacing:0.840000px;}
.ws61{word-spacing:0.960000px;}
.ws49{word-spacing:1.020000px;}
.ws8d{word-spacing:1.200000px;}
.ws4e{word-spacing:1.260000px;}
.ws90{word-spacing:1.344000px;}
.ws50{word-spacing:1.440000px;}
.ws8b{word-spacing:1.488000px;}
.ws26{word-spacing:1.500000px;}
.ws16{word-spacing:1.560000px;}
.ws57{word-spacing:1.620000px;}
.wsf{word-spacing:1.680000px;}
.ws59{word-spacing:1.728000px;}
.ws3d{word-spacing:1.740000px;}
.wsb{word-spacing:1.800000px;}
.ws2b{word-spacing:1.920000px;}
.ws27{word-spacing:1.980000px;}
.ws19{word-spacing:2.100000px;}
.ws12{word-spacing:2.160000px;}
.ws13{word-spacing:2.280000px;}
.ws24{word-spacing:2.520000px;}
.ws1d{word-spacing:2.580000px;}
.ws81{word-spacing:2.640000px;}
.ws32{word-spacing:2.784000px;}
.ws7c{word-spacing:2.832000px;}
.ws25{word-spacing:2.880000px;}
.ws37{word-spacing:2.940000px;}
.ws83{word-spacing:3.120000px;}
.ws58{word-spacing:3.180000px;}
.ws2c{word-spacing:3.300000px;}
.ws7f{word-spacing:3.312000px;}
.ws23{word-spacing:3.360000px;}
.ws31{word-spacing:3.480000px;}
.ws3b{word-spacing:3.540000px;}
.ws43{word-spacing:3.648000px;}
.ws7d{word-spacing:3.696000px;}
.ws1e{word-spacing:3.720000px;}
.ws56{word-spacing:3.780000px;}
.ws1f{word-spacing:3.840000px;}
.ws66{word-spacing:3.900000px;}
.ws28{word-spacing:3.936000px;}
.ws20{word-spacing:3.960000px;}
.ws33{word-spacing:3.984000px;}
.ws3e{word-spacing:4.560000px;}
.ws18{word-spacing:4.680000px;}
.ws4a{word-spacing:4.740000px;}
.wsa{word-spacing:4.920000px;}
.ws9{word-spacing:4.980000px;}
.ws4b{word-spacing:5.160000px;}
.ws65{word-spacing:5.460000px;}
.ws63{word-spacing:5.520000px;}
.ws3a{word-spacing:6.060000px;}
.ws4c{word-spacing:6.840000px;}
.ws38{word-spacing:7.740000px;}
.ws4f{word-spacing:7.800000px;}
.ws1{word-spacing:49.322028px;}
.ws41{word-spacing:231.216000px;}
.wse{word-spacing:365.184000px;}
.wsd{word-spacing:370.512000px;}
.ws40{word-spacing:374.832000px;}
._10{margin-left:-2898.096000px;}
._2c{margin-left:-2874.288000px;}
._9{margin-left:-7.980000px;}
._3{margin-left:-6.963000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.992400px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.287600px;}
._6{width:1.056000px;}
._b{width:2.604000px;}
._c{width:3.780000px;}
._a{width:4.860000px;}
._2d{width:6.420000px;}
._7{width:7.620000px;}
._8{width:9.540000px;}
._4{width:60.243414px;}
._12{width:117.360000px;}
._23{width:119.904000px;}
._28{width:144.624000px;}
._17{width:149.520000px;}
._22{width:155.232000px;}
._19{width:156.624000px;}
._13{width:157.968000px;}
._16{width:161.472000px;}
._1c{width:164.160000px;}
._2b{width:181.488000px;}
._1a{width:189.360000px;}
._24{width:193.488000px;}
._27{width:200.541000px;}
._18{width:203.379000px;}
._1d{width:205.488000px;}
._49{width:208.128000px;}
._d{width:209.232000px;}
._21{width:216.048000px;}
._1e{width:227.379000px;}
._4a{width:232.128000px;}
._20{width:235.395000px;}
._2a{width:251.856000px;}
._4b{width:254.829000px;}
._1b{width:268.512000px;}
._15{width:275.904000px;}
._14{width:277.200000px;}
._29{width:287.232000px;}
._25{width:302.019000px;}
._1f{width:323.379000px;}
._26{width:327.363000px;}
._11{width:337.776000px;}
._f{width:377.184000px;}
._e{width:401.184000px;}
._2f{width:483.072000px;}
._38{width:596.496000px;}
._45{width:620.496000px;}
._31{width:644.496000px;}
._33{width:704.496000px;}
._30{width:855.843000px;}
._35{width:863.859000px;}
._3b{width:887.859000px;}
._32{width:906.531000px;}
._39{width:927.843000px;}
._36{width:930.483000px;}
._3f{width:935.859000px;}
._34{width:951.843000px;}
._3c{width:954.483000px;}
._46{width:962.499000px;}
._37{width:967.827000px;}
._3a{width:975.843000px;}
._42{width:983.859000px;}
._3d{width:991.827000px;}
._47{width:999.843000px;}
._40{width:1002.483000px;}
._3e{width:1023.843000px;}
._41{width:1039.827000px;}
._43{width:1050.483000px;}
._48{width:1066.467000px;}
._44{width:1087.827000px;}
._2e{width:1234.992000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2e{bottom:47.777250px;}
.y197{bottom:80.263500px;}
.yb7{bottom:83.129700px;}
.ybd{bottom:83.236050px;}
.y109{bottom:83.342250px;}
.y125{bottom:83.635350px;}
.y110{bottom:83.649450px;}
.y64{bottom:83.770350px;}
.y155{bottom:86.121900px;}
.y20{bottom:88.029450px;}
.yf3{bottom:92.335950px;}
.yac{bottom:92.576250px;}
.y7b{bottom:92.702400px;}
.ydd{bottom:94.072650px;}
.y196{bottom:95.263500px;}
.yb6{bottom:98.873700px;}
.ybc{bottom:98.980050px;}
.y108{bottom:99.086250px;}
.y10f{bottom:99.393450px;}
.y154{bottom:101.121900px;}
.y124{bottom:101.635350px;}
.y63{bottom:101.770350px;}
.y1f{bottom:103.023000px;}
.yf2{bottom:108.583950px;}
.yab{bottom:108.824250px;}
.y7a{bottom:108.950400px;}
.y195{bottom:110.263500px;}
.ydc{bottom:110.320650px;}
.yb5{bottom:114.617700px;}
.ybb{bottom:114.724050px;}
.y107{bottom:114.830250px;}
.y10e{bottom:115.137450px;}
.y153{bottom:116.121900px;}
.y123{bottom:119.635350px;}
.y62{bottom:119.770350px;}
.yaa{bottom:125.072250px;}
.y79{bottom:125.198400px;}
.y194{bottom:125.263500px;}
.ydb{bottom:126.568650px;}
.y10d{bottom:130.881450px;}
.y152{bottom:131.121900px;}
.yf1{bottom:137.587950px;}
.y122{bottom:137.635350px;}
.y61{bottom:137.770350px;}
.y193{bottom:140.263500px;}
.ya9{bottom:141.320250px;}
.y78{bottom:141.446400px;}
.yda{bottom:142.816650px;}
.y151{bottom:146.121900px;}
.yf0{bottom:154.087950px;}
.y192{bottom:155.263500px;}
.y121{bottom:155.635350px;}
.y60{bottom:155.770350px;}
.ya8{bottom:157.568250px;}
.y10b{bottom:157.666500px;}
.y77{bottom:157.694400px;}
.yd9{bottom:159.064650px;}
.y150{bottom:161.121900px;}
.y29{bottom:163.886700px;}
.y191{bottom:170.263500px;}
.y120{bottom:173.230350px;}
.y5f{bottom:173.770350px;}
.ya7{bottom:173.816250px;}
.y76{bottom:173.942400px;}
.yd8{bottom:175.312650px;}
.y14f{bottom:176.121900px;}
.y28{bottom:181.886700px;}
.y190{bottom:185.263500px;}
.yef{bottom:186.479100px;}
.ya6{bottom:190.064250px;}
.y75{bottom:190.190400px;}
.y14e{bottom:191.121900px;}
.yd7{bottom:191.560650px;}
.y5e{bottom:191.770350px;}
.y27{bottom:199.886700px;}
.y18f{bottom:200.263500px;}
.yee{bottom:205.979100px;}
.y14d{bottom:206.121900px;}
.ya5{bottom:206.312250px;}
.y74{bottom:206.438400px;}
.yd6{bottom:207.808650px;}
.y11f{bottom:209.635350px;}
.y5d{bottom:209.770350px;}
.y18e{bottom:215.263500px;}
.y26{bottom:217.886700px;}
.y14c{bottom:221.121900px;}
.ya4{bottom:222.560250px;}
.y73{bottom:222.686400px;}
.yd5{bottom:224.056650px;}
.y11e{bottom:227.635350px;}
.y5c{bottom:227.770350px;}
.y18d{bottom:230.263500px;}
.y25{bottom:235.886700px;}
.y14b{bottom:236.121900px;}
.ya3{bottom:238.808250px;}
.y72{bottom:238.934400px;}
.yd4{bottom:240.304650px;}
.y18c{bottom:245.263500px;}
.y11d{bottom:245.635350px;}
.y5b{bottom:245.770350px;}
.y10c{bottom:248.809950px;}
.y14a{bottom:251.121900px;}
.y24{bottom:253.886700px;}
.yeb{bottom:254.070600px;}
.y71{bottom:255.182400px;}
.yd3{bottom:256.552650px;}
.y18b{bottom:260.263500px;}
.y11c{bottom:263.635350px;}
.y5a{bottom:263.770350px;}
.y149{bottom:266.121900px;}
.yea{bottom:269.814600px;}
.ya2{bottom:270.320250px;}
.y70{bottom:271.430400px;}
.y23{bottom:271.886700px;}
.yd2{bottom:272.800650px;}
.y18a{bottom:275.263500px;}
.y148{bottom:281.121900px;}
.y11b{bottom:281.635350px;}
.y59{bottom:281.770350px;}
.y6f{bottom:287.678400px;}
.yd1{bottom:289.048650px;}
.y22{bottom:289.886700px;}
.y189{bottom:290.263500px;}
.ye8{bottom:295.536600px;}
.y147{bottom:296.121900px;}
.yec{bottom:296.255100px;}
.y11a{bottom:299.635350px;}
.y58{bottom:299.770350px;}
.y6e{bottom:303.926400px;}
.ya1{bottom:305.230350px;}
.y188{bottom:305.263500px;}
.yd0{bottom:305.296650px;}
.y2b{bottom:307.886700px;}
.y146{bottom:311.121900px;}
.y119{bottom:317.635350px;}
.y57{bottom:317.770350px;}
.y6d{bottom:320.174400px;}
.y187{bottom:320.263500px;}
.ycf{bottom:321.544650px;}
.ya0{bottom:324.730350px;}
.y21{bottom:325.481700px;}
.y2a{bottom:325.886700px;}
.y145{bottom:326.121900px;}
.y186{bottom:335.263500px;}
.y118{bottom:335.635350px;}
.y56{bottom:335.770350px;}
.y6c{bottom:336.422400px;}
.yce{bottom:337.792650px;}
.y144{bottom:341.121900px;}
.y185{bottom:350.263500px;}
.y6b{bottom:352.670400px;}
.y117{bottom:353.635350px;}
.y55{bottom:353.770350px;}
.ycd{bottom:354.040650px;}
.y143{bottom:356.121900px;}
.y184{bottom:365.263500px;}
.y6a{bottom:368.918400px;}
.ycc{bottom:370.288650px;}
.yae{bottom:370.928250px;}
.y142{bottom:371.121900px;}
.y116{bottom:371.635350px;}
.y54{bottom:371.770350px;}
.y90{bottom:372.070350px;}
.y183{bottom:380.263500px;}
.y141{bottom:386.121900px;}
.ycb{bottom:386.536650px;}
.yad{bottom:386.672250px;}
.y115{bottom:389.230350px;}
.y53{bottom:389.770350px;}
.y8f{bottom:390.070350px;}
.yed{bottom:392.837100px;}
.y182{bottom:395.263500px;}
.y69{bottom:400.430400px;}
.y140{bottom:401.121900px;}
.yca{bottom:402.784650px;}
.y1e{bottom:403.554900px;}
.y52{bottom:407.770350px;}
.y181{bottom:410.263500px;}
.y13f{bottom:416.121900px;}
.yc9{bottom:419.032650px;}
.y1d{bottom:421.567950px;}
.y180{bottom:425.263500px;}
.y114{bottom:425.635350px;}
.y8e{bottom:425.665350px;}
.y51{bottom:425.770350px;}
.ye9{bottom:430.119000px;}
.y13e{bottom:431.121900px;}
.y68{bottom:435.325350px;}
.y17f{bottom:440.263500px;}
.y113{bottom:443.635350px;}
.y50{bottom:443.770350px;}
.y13d{bottom:446.121900px;}
.y1c{bottom:448.912950px;}
.yc8{bottom:450.544650px;}
.y67{bottom:454.825350px;}
.y17e{bottom:455.263500px;}
.y13c{bottom:461.121900px;}
.yb2{bottom:461.635350px;}
.y4f{bottom:461.770350px;}
.y8d{bottom:461.920350px;}
.y1b{bottom:466.912950px;}
.y17d{bottom:470.263500px;}
.y13b{bottom:476.121900px;}
.yc1{bottom:477.830400px;}
.yb1{bottom:479.635350px;}
.y4e{bottom:479.770350px;}
.y8c{bottom:479.920350px;}
.y1a{bottom:484.912950px;}
.y17c{bottom:485.263500px;}
.yc7{bottom:485.440350px;}
.y13a{bottom:491.121900px;}
.yc0{bottom:493.574400px;}
.y106{bottom:497.635350px;}
.y4d{bottom:497.770350px;}
.y8b{bottom:497.920350px;}
.y17b{bottom:500.263500px;}
.y19{bottom:502.912950px;}
.y139{bottom:506.121900px;}
.yb0{bottom:515.230350px;}
.y17a{bottom:515.263500px;}
.y105{bottom:515.635350px;}
.y4c{bottom:515.770350px;}
.y8a{bottom:515.920350px;}
.y18{bottom:520.912950px;}
.y138{bottom:521.121900px;}
.ybe{bottom:521.477100px;}
.y179{bottom:530.263500px;}
.y104{bottom:533.635350px;}
.y4b{bottom:533.770350px;}
.y89{bottom:533.920350px;}
.ye3{bottom:534.601050px;}
.ye1{bottom:534.913050px;}
.y137{bottom:536.121900px;}
.y17{bottom:538.912950px;}
.y178{bottom:545.263500px;}
.ye2{bottom:550.345050px;}
.ye0{bottom:550.657050px;}
.y136{bottom:551.121900px;}
.y103{bottom:551.635350px;}
.y4a{bottom:551.770350px;}
.y88{bottom:551.920350px;}
.y16{bottom:556.912950px;}
.y177{bottom:560.263500px;}
.y135{bottom:566.121900px;}
.y102{bottom:569.635350px;}
.y49{bottom:569.770350px;}
.y87{bottom:569.920350px;}
.y15{bottom:574.912950px;}
.y176{bottom:575.263500px;}
.yc3{bottom:575.515050px;}
.yde{bottom:576.191250px;}
.y134{bottom:581.121900px;}
.y101{bottom:587.635350px;}
.y48{bottom:587.770350px;}
.y86{bottom:587.920350px;}
.y175{bottom:590.263500px;}
.y14{bottom:592.912950px;}
.ybf{bottom:595.895700px;}
.y133{bottom:596.121900px;}
.y174{bottom:605.263500px;}
.y100{bottom:605.635350px;}
.y47{bottom:605.770350px;}
.y85{bottom:605.920350px;}
.y13{bottom:610.912950px;}
.y132{bottom:611.121900px;}
.y173{bottom:620.263500px;}
.yff{bottom:623.635350px;}
.y46{bottom:623.770350px;}
.y84{bottom:623.920350px;}
.y131{bottom:626.121900px;}
.y12{bottom:628.912950px;}
.y172{bottom:635.263500px;}
.y130{bottom:641.121900px;}
.yfe{bottom:641.635350px;}
.y45{bottom:641.770350px;}
.y83{bottom:641.920350px;}
.y11{bottom:646.912950px;}
.y171{bottom:650.263500px;}
.yc4{bottom:651.421950px;}
.y12f{bottom:656.121900px;}
.yfd{bottom:659.635350px;}
.y44{bottom:659.770350px;}
.y82{bottom:659.920350px;}
.y170{bottom:665.263500px;}
.ydf{bottom:667.552350px;}
.y12e{bottom:671.121900px;}
.ye7{bottom:674.571750px;}
.yfc{bottom:677.635350px;}
.y43{bottom:677.770350px;}
.y81{bottom:677.920350px;}
.y16f{bottom:680.263500px;}
.y12d{bottom:686.121900px;}
.ye6{bottom:690.315750px;}
.y10{bottom:692.067300px;}
.y16e{bottom:695.263500px;}
.yba{bottom:695.515350px;}
.yfb{bottom:695.635350px;}
.y42{bottom:695.770350px;}
.y80{bottom:695.920350px;}
.y12c{bottom:701.121900px;}
.yf{bottom:704.518050px;}
.ye5{bottom:706.059750px;}
.y16d{bottom:710.263500px;}
.y112{bottom:713.230350px;}
.yb9{bottom:713.515350px;}
.yfa{bottom:713.635350px;}
.y41{bottom:713.770350px;}
.y7f{bottom:713.920350px;}
.y12b{bottom:716.121900px;}
.y16c{bottom:725.263500px;}
.yb4{bottom:731.515350px;}
.yf9{bottom:731.635350px;}
.y40{bottom:731.770350px;}
.y7e{bottom:731.920350px;}
.ye{bottom:736.233600px;}
.y16b{bottom:740.263500px;}
.y12a{bottom:749.230350px;}
.yb3{bottom:749.515350px;}
.yf8{bottom:749.635350px;}
.y3f{bottom:749.770350px;}
.yd{bottom:755.158800px;}
.y16a{bottom:755.263500px;}
.yc{bottom:763.233600px;}
.y7d{bottom:767.515350px;}
.yf7{bottom:767.635350px;}
.y3e{bottom:767.770350px;}
.y169{bottom:770.263500px;}
.yb{bottom:782.158950px;}
.y168{bottom:785.263500px;}
.yf6{bottom:785.635350px;}
.y3d{bottom:785.770350px;}
.y9f{bottom:785.785350px;}
.ya{bottom:790.233600px;}
.y167{bottom:800.263500px;}
.y9{bottom:803.733600px;}
.y3c{bottom:803.770350px;}
.y9e{bottom:803.785350px;}
.y166{bottom:815.263500px;}
.yf5{bottom:821.230350px;}
.y129{bottom:821.365350px;}
.y3b{bottom:821.770350px;}
.y9d{bottom:821.785350px;}
.y8{bottom:822.658950px;}
.y165{bottom:830.263500px;}
.y3a{bottom:839.770350px;}
.y9c{bottom:839.785350px;}
.y164{bottom:845.263500px;}
.y7{bottom:851.380950px;}
.y128{bottom:857.365350px;}
.y39{bottom:857.770350px;}
.y9b{bottom:857.785350px;}
.y163{bottom:860.263500px;}
.y162{bottom:875.263500px;}
.y38{bottom:875.770350px;}
.y9a{bottom:875.785350px;}
.y161{bottom:890.263500px;}
.y37{bottom:893.770350px;}
.y99{bottom:893.785350px;}
.y6{bottom:897.543600px;}
.y160{bottom:905.263500px;}
.y66{bottom:911.365350px;}
.y36{bottom:911.770350px;}
.y98{bottom:911.785350px;}
.y15f{bottom:920.263500px;}
.y127{bottom:929.365350px;}
.y35{bottom:929.770350px;}
.y97{bottom:929.785350px;}
.y5{bottom:934.004400px;}
.y15e{bottom:935.263500px;}
.y65{bottom:947.230350px;}
.y34{bottom:947.770350px;}
.y96{bottom:947.785350px;}
.y15d{bottom:950.263500px;}
.y15c{bottom:965.263500px;}
.y33{bottom:965.770350px;}
.y95{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.y15b{bottom:980.263500px;}
.y126{bottom:983.365350px;}
.y32{bottom:983.770350px;}
.y94{bottom:983.785350px;}
.y15a{bottom:995.263500px;}
.y31{bottom:1001.770350px;}
.y93{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y159{bottom:1010.263500px;}
.yc6{bottom:1019.365350px;}
.y30{bottom:1019.770350px;}
.y92{bottom:1019.785350px;}
.y158{bottom:1025.263500px;}
.yc5{bottom:1037.365350px;}
.y2f{bottom:1037.770350px;}
.y91{bottom:1037.785350px;}
.y157{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y156{bottom:1132.413900px;}
.yaf{bottom:1132.418700px;}
.y198{bottom:1132.423500px;}
.yf4{bottom:1132.423950px;}
.ye4{bottom:1132.429050px;}
.y10a{bottom:1132.430250px;}
.yc2{bottom:1132.430400px;}
.yb8{bottom:1132.433700px;}
.y111{bottom:1132.437450px;}
.y7c{bottom:1132.490400px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.hd{height:32.783203px;}
.h7{height:32.805176px;}
.hc{height:32.815976px;}
.h12{height:33.351562px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.h13{height:40.031250px;}
.he{height:41.689453px;}
.hb{height:43.681641px;}
.ha{height:43.710938px;}
.h9{height:43.740234px;}
.h11{height:50.039062px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:76.535400px;}
.x1e{left:78.661350px;}
.x20{left:85.546050px;}
.xa{left:96.094500px;}
.x1{left:97.795200px;}
.x16{left:99.921300px;}
.x38{left:102.047400px;}
.x4{left:106.299150px;}
.xd{left:110.555400px;}
.x36{left:123.307050px;}
.x3{left:125.439150px;}
.x7{left:131.816400px;}
.x22{left:140.514450px;}
.x1f{left:176.691000px;}
.x32{left:190.130400px;}
.x5{left:191.338500px;}
.x30{left:198.875400px;}
.x21{left:209.643750px;}
.x1a{left:211.115400px;}
.x6{left:212.876400px;}
.x18{left:219.297300px;}
.x17{left:222.321300px;}
.x1b{left:227.833200px;}
.x31{left:233.986200px;}
.x26{left:257.673000px;}
.x25{left:261.837000px;}
.x28{left:351.969000px;}
.x27{left:359.625000px;}
.x29{left:443.433000px;}
.xb{left:455.041500px;}
.xe{left:457.100400px;}
.x11{left:459.212700px;}
.x1d{left:466.097250px;}
.x14{left:478.345350px;}
.x9{left:480.476400px;}
.x34{left:482.598600px;}
.x24{left:487.357050px;}
.x10{left:491.120400px;}
.x37{left:503.899050px;}
.x15{left:512.380350px;}
.x8{left:514.496400px;}
.xf{left:525.290400px;}
.x2b{left:547.557000px;}
.x2a{left:551.061000px;}
.x33{left:574.835400px;}
.x1c{left:584.573400px;}
.x23{left:610.297800px;}
.x2d{left:639.021000px;}
.x2c{left:648.849000px;}
.x13{left:663.492300px;}
.x2{left:693.365400px;}
.x35{left:721.720650px;}
.x12{left:728.384700px;}
.x2f{left:736.821000px;}
.x2e{left:743.145000px;}
.x19{left:749.651400px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v1{vertical-align:27.005867pt;}
.ls52{letter-spacing:-6.933333pt;}
.ls48{letter-spacing:-6.880000pt;}
.ls51{letter-spacing:-6.080000pt;}
.ls49{letter-spacing:-5.386667pt;}
.ls89{letter-spacing:-2.346667pt;}
.ls34{letter-spacing:-1.578667pt;}
.ls10{letter-spacing:-0.693333pt;}
.ls42{letter-spacing:-0.533333pt;}
.ls41{letter-spacing:-0.373333pt;}
.ls31{letter-spacing:-0.320000pt;}
.ls57{letter-spacing:-0.213333pt;}
.ls11{letter-spacing:-0.200000pt;}
.ls3a{letter-spacing:-0.160000pt;}
.ls12{letter-spacing:-0.106667pt;}
.ls7f{letter-spacing:-0.085333pt;}
.ls32{letter-spacing:-0.053333pt;}
.ls80{letter-spacing:-0.042667pt;}
.lsf{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003680pt;}
.ls81{letter-spacing:0.042667pt;}
.ls21{letter-spacing:0.053333pt;}
.ls47{letter-spacing:0.085333pt;}
.ls9{letter-spacing:0.106667pt;}
.ls72{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls40{letter-spacing:0.170667pt;}
.lsa{letter-spacing:0.213333pt;}
.ls66{letter-spacing:0.256000pt;}
.ls38{letter-spacing:0.266667pt;}
.ls46{letter-spacing:0.298667pt;}
.ls2f{letter-spacing:0.320000pt;}
.ls65{letter-spacing:0.341333pt;}
.ls28{letter-spacing:0.373333pt;}
.ls83{letter-spacing:0.384000pt;}
.ls39{letter-spacing:0.426667pt;}
.ls5b{letter-spacing:0.469333pt;}
.ls29{letter-spacing:0.480000pt;}
.ls56{letter-spacing:0.512000pt;}
.lsc{letter-spacing:0.533333pt;}
.ls60{letter-spacing:0.554667pt;}
.ls4{letter-spacing:0.586667pt;}
.ls4b{letter-spacing:0.597333pt;}
.lsb{letter-spacing:0.640000pt;}
.ls69{letter-spacing:0.682667pt;}
.lsd{letter-spacing:0.693333pt;}
.ls62{letter-spacing:0.725333pt;}
.ls14{letter-spacing:0.746667pt;}
.ls74{letter-spacing:0.768000pt;}
.ls30{letter-spacing:0.800000pt;}
.ls6b{letter-spacing:0.810667pt;}
.ls2{letter-spacing:0.853333pt;}
.ls64{letter-spacing:0.896000pt;}
.ls1a{letter-spacing:0.906667pt;}
.ls7c{letter-spacing:0.938667pt;}
.ls27{letter-spacing:0.960000pt;}
.ls61{letter-spacing:0.981333pt;}
.ls5{letter-spacing:1.013333pt;}
.ls5d{letter-spacing:1.024000pt;}
.ls1d{letter-spacing:1.066667pt;}
.ls68{letter-spacing:1.109333pt;}
.ls35{letter-spacing:1.120000pt;}
.ls2c{letter-spacing:1.173333pt;}
.ls67{letter-spacing:1.194667pt;}
.ls33{letter-spacing:1.226667pt;}
.lse{letter-spacing:1.280000pt;}
.ls19{letter-spacing:1.333333pt;}
.ls6d{letter-spacing:1.365333pt;}
.ls7{letter-spacing:1.386667pt;}
.ls75{letter-spacing:1.408000pt;}
.ls8{letter-spacing:1.440000pt;}
.ls4c{letter-spacing:1.450667pt;}
.ls3f{letter-spacing:1.493333pt;}
.ls6f{letter-spacing:1.536000pt;}
.ls20{letter-spacing:1.546667pt;}
.ls7b{letter-spacing:1.578667pt;}
.ls3c{letter-spacing:1.600000pt;}
.ls73{letter-spacing:1.621333pt;}
.ls26{letter-spacing:1.653333pt;}
.ls63{letter-spacing:1.664000pt;}
.ls4f{letter-spacing:1.706667pt;}
.ls1f{letter-spacing:1.760000pt;}
.ls79{letter-spacing:1.792000pt;}
.ls37{letter-spacing:1.813333pt;}
.ls86{letter-spacing:1.834667pt;}
.ls15{letter-spacing:1.866667pt;}
.ls76{letter-spacing:1.877333pt;}
.ls2e{letter-spacing:1.920000pt;}
.ls16{letter-spacing:1.973333pt;}
.ls1e{letter-spacing:2.026667pt;}
.ls78{letter-spacing:2.048000pt;}
.ls2d{letter-spacing:2.080000pt;}
.ls5f{letter-spacing:2.090667pt;}
.ls25{letter-spacing:2.133333pt;}
.ls77{letter-spacing:2.176000pt;}
.ls13{letter-spacing:2.186667pt;}
.ls6c{letter-spacing:2.218667pt;}
.ls18{letter-spacing:2.240000pt;}
.ls7a{letter-spacing:2.261333pt;}
.ls4d{letter-spacing:2.293333pt;}
.ls6a{letter-spacing:2.304000pt;}
.ls22{letter-spacing:2.346667pt;}
.ls3d{letter-spacing:2.400000pt;}
.ls45{letter-spacing:2.453333pt;}
.ls5e{letter-spacing:2.474667pt;}
.ls3b{letter-spacing:2.506667pt;}
.ls6e{letter-spacing:2.517333pt;}
.ls2b{letter-spacing:2.560000pt;}
.ls82{letter-spacing:2.602667pt;}
.ls36{letter-spacing:2.613333pt;}
.ls24{letter-spacing:2.666667pt;}
.ls50{letter-spacing:2.720000pt;}
.ls88{letter-spacing:2.730667pt;}
.ls43{letter-spacing:2.773333pt;}
.ls84{letter-spacing:2.816000pt;}
.ls44{letter-spacing:2.826667pt;}
.ls53{letter-spacing:2.880000pt;}
.ls85{letter-spacing:2.901333pt;}
.ls7d{letter-spacing:2.986667pt;}
.ls7e{letter-spacing:3.029333pt;}
.ls3e{letter-spacing:3.093333pt;}
.ls4a{letter-spacing:3.146667pt;}
.ls2a{letter-spacing:3.253333pt;}
.ls23{letter-spacing:3.360000pt;}
.ls1b{letter-spacing:3.413333pt;}
.ls55{letter-spacing:3.520000pt;}
.ls71{letter-spacing:3.584000pt;}
.ls54{letter-spacing:3.733333pt;}
.ls5c{letter-spacing:3.754667pt;}
.ls1c{letter-spacing:3.840000pt;}
.ls17{letter-spacing:4.106667pt;}
.ls70{letter-spacing:4.352000pt;}
.ls3{letter-spacing:4.426667pt;}
.ls59{letter-spacing:4.586667pt;}
.ls87{letter-spacing:5.418667pt;}
.ls5a{letter-spacing:6.773333pt;}
.ls4e{letter-spacing:7.200000pt;}
.ls58{letter-spacing:7.520000pt;}
.ls0{letter-spacing:52.918112pt;}
.ws46{word-spacing:-20.533333pt;}
.ws52{word-spacing:-16.426667pt;}
.ws51{word-spacing:-16.213333pt;}
.ws5a{word-spacing:-15.146667pt;}
.ws2{word-spacing:-14.826667pt;}
.wsc{word-spacing:-14.666667pt;}
.ws5c{word-spacing:-14.421333pt;}
.ws1a{word-spacing:-14.346667pt;}
.ws71{word-spacing:-14.250667pt;}
.ws47{word-spacing:-13.493333pt;}
.ws94{word-spacing:-13.482667pt;}
.ws1b{word-spacing:-13.226667pt;}
.ws5e{word-spacing:-12.970667pt;}
.ws77{word-spacing:-12.757333pt;}
.ws76{word-spacing:-12.373333pt;}
.ws6f{word-spacing:-12.202667pt;}
.ws3f{word-spacing:-12.117333pt;}
.ws60{word-spacing:-12.032000pt;}
.ws75{word-spacing:-11.946667pt;}
.ws4{word-spacing:-11.861333pt;}
.ws79{word-spacing:-11.605333pt;}
.ws5d{word-spacing:-11.562667pt;}
.ws74{word-spacing:-11.434667pt;}
.ws95{word-spacing:-11.264000pt;}
.ws7a{word-spacing:-11.178667pt;}
.ws5b{word-spacing:-11.136000pt;}
.ws3{word-spacing:-11.120000pt;}
.ws7b{word-spacing:-11.093333pt;}
.ws93{word-spacing:-11.050667pt;}
.ws34{word-spacing:-10.965333pt;}
.ws78{word-spacing:-10.837333pt;}
.ws72{word-spacing:-10.794667pt;}
.ws35{word-spacing:-10.752000pt;}
.ws5f{word-spacing:-10.666667pt;}
.ws73{word-spacing:-10.624000pt;}
.ws70{word-spacing:-10.581333pt;}
.ws0{word-spacing:-9.076144pt;}
.ws96{word-spacing:-8.320000pt;}
.ws7e{word-spacing:-4.352000pt;}
.ws11{word-spacing:-4.106667pt;}
.ws69{word-spacing:-3.754667pt;}
.ws8f{word-spacing:-3.029333pt;}
.ws98{word-spacing:-2.986667pt;}
.ws67{word-spacing:-2.933333pt;}
.ws53{word-spacing:-2.880000pt;}
.ws6{word-spacing:-2.565333pt;}
.ws68{word-spacing:-2.400000pt;}
.ws6a{word-spacing:-2.346667pt;}
.ws6e{word-spacing:-2.304000pt;}
.ws88{word-spacing:-2.261333pt;}
.ws10{word-spacing:-2.240000pt;}
.ws30{word-spacing:-2.080000pt;}
.ws17{word-spacing:-1.973333pt;}
.ws99{word-spacing:-1.834667pt;}
.ws86{word-spacing:-1.792000pt;}
.ws4d{word-spacing:-1.546667pt;}
.ws82{word-spacing:-1.493333pt;}
.ws15{word-spacing:-1.386667pt;}
.ws84{word-spacing:-1.280000pt;}
.ws6d{word-spacing:-1.194667pt;}
.ws62{word-spacing:-1.120000pt;}
.ws8a{word-spacing:-1.109333pt;}
.ws89{word-spacing:-0.938667pt;}
.ws91{word-spacing:-0.768000pt;}
.ws6b{word-spacing:-0.725333pt;}
.ws44{word-spacing:-0.597333pt;}
.ws8e{word-spacing:-0.554667pt;}
.ws1c{word-spacing:-0.533333pt;}
.ws8c{word-spacing:-0.512000pt;}
.ws29{word-spacing:-0.426667pt;}
.ws97{word-spacing:-0.384000pt;}
.ws87{word-spacing:-0.341333pt;}
.ws36{word-spacing:-0.320000pt;}
.ws54{word-spacing:-0.266667pt;}
.ws6c{word-spacing:-0.256000pt;}
.ws2f{word-spacing:-0.160000pt;}
.ws48{word-spacing:-0.106667pt;}
.ws3c{word-spacing:-0.085333pt;}
.ws14{word-spacing:-0.053333pt;}
.ws5{word-spacing:0.000000pt;}
.ws80{word-spacing:0.042667pt;}
.ws2d{word-spacing:0.053333pt;}
.ws92{word-spacing:0.085333pt;}
.ws8{word-spacing:0.106667pt;}
.ws42{word-spacing:0.128000pt;}
.ws21{word-spacing:0.160000pt;}
.ws7{word-spacing:0.200000pt;}
.ws39{word-spacing:0.213333pt;}
.ws55{word-spacing:0.320000pt;}
.ws2a{word-spacing:0.373333pt;}
.ws22{word-spacing:0.426667pt;}
.ws2e{word-spacing:0.533333pt;}
.ws85{word-spacing:0.640000pt;}
.ws45{word-spacing:0.693333pt;}
.ws64{word-spacing:0.746667pt;}
.ws61{word-spacing:0.853333pt;}
.ws49{word-spacing:0.906667pt;}
.ws8d{word-spacing:1.066667pt;}
.ws4e{word-spacing:1.120000pt;}
.ws90{word-spacing:1.194667pt;}
.ws50{word-spacing:1.280000pt;}
.ws8b{word-spacing:1.322667pt;}
.ws26{word-spacing:1.333333pt;}
.ws16{word-spacing:1.386667pt;}
.ws57{word-spacing:1.440000pt;}
.wsf{word-spacing:1.493333pt;}
.ws59{word-spacing:1.536000pt;}
.ws3d{word-spacing:1.546667pt;}
.wsb{word-spacing:1.600000pt;}
.ws2b{word-spacing:1.706667pt;}
.ws27{word-spacing:1.760000pt;}
.ws19{word-spacing:1.866667pt;}
.ws12{word-spacing:1.920000pt;}
.ws13{word-spacing:2.026667pt;}
.ws24{word-spacing:2.240000pt;}
.ws1d{word-spacing:2.293333pt;}
.ws81{word-spacing:2.346667pt;}
.ws32{word-spacing:2.474667pt;}
.ws7c{word-spacing:2.517333pt;}
.ws25{word-spacing:2.560000pt;}
.ws37{word-spacing:2.613333pt;}
.ws83{word-spacing:2.773333pt;}
.ws58{word-spacing:2.826667pt;}
.ws2c{word-spacing:2.933333pt;}
.ws7f{word-spacing:2.944000pt;}
.ws23{word-spacing:2.986667pt;}
.ws31{word-spacing:3.093333pt;}
.ws3b{word-spacing:3.146667pt;}
.ws43{word-spacing:3.242667pt;}
.ws7d{word-spacing:3.285333pt;}
.ws1e{word-spacing:3.306667pt;}
.ws56{word-spacing:3.360000pt;}
.ws1f{word-spacing:3.413333pt;}
.ws66{word-spacing:3.466667pt;}
.ws28{word-spacing:3.498667pt;}
.ws20{word-spacing:3.520000pt;}
.ws33{word-spacing:3.541333pt;}
.ws3e{word-spacing:4.053333pt;}
.ws18{word-spacing:4.160000pt;}
.ws4a{word-spacing:4.213333pt;}
.wsa{word-spacing:4.373333pt;}
.ws9{word-spacing:4.426667pt;}
.ws4b{word-spacing:4.586667pt;}
.ws65{word-spacing:4.853333pt;}
.ws63{word-spacing:4.906667pt;}
.ws3a{word-spacing:5.386667pt;}
.ws4c{word-spacing:6.080000pt;}
.ws38{word-spacing:6.880000pt;}
.ws4f{word-spacing:6.933333pt;}
.ws1{word-spacing:43.841803pt;}
.ws41{word-spacing:205.525333pt;}
.wse{word-spacing:324.608000pt;}
.wsd{word-spacing:329.344000pt;}
.ws40{word-spacing:333.184000pt;}
._10{margin-left:-2576.085333pt;}
._2c{margin-left:-2554.922667pt;}
._9{margin-left:-7.093333pt;}
._3{margin-left:-6.189333pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.548800pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-1.144533pt;}
._6{width:0.938667pt;}
._b{width:2.314667pt;}
._c{width:3.360000pt;}
._a{width:4.320000pt;}
._2d{width:5.706667pt;}
._7{width:6.773333pt;}
._8{width:8.480000pt;}
._4{width:53.549701pt;}
._12{width:104.320000pt;}
._23{width:106.581333pt;}
._28{width:128.554667pt;}
._17{width:132.906667pt;}
._22{width:137.984000pt;}
._19{width:139.221333pt;}
._13{width:140.416000pt;}
._16{width:143.530667pt;}
._1c{width:145.920000pt;}
._2b{width:161.322667pt;}
._1a{width:168.320000pt;}
._24{width:171.989333pt;}
._27{width:178.258667pt;}
._18{width:180.781333pt;}
._1d{width:182.656000pt;}
._49{width:185.002667pt;}
._d{width:185.984000pt;}
._21{width:192.042667pt;}
._1e{width:202.114667pt;}
._4a{width:206.336000pt;}
._20{width:209.240000pt;}
._2a{width:223.872000pt;}
._4b{width:226.514667pt;}
._1b{width:238.677333pt;}
._15{width:245.248000pt;}
._14{width:246.400000pt;}
._29{width:255.317333pt;}
._25{width:268.461333pt;}
._1f{width:287.448000pt;}
._26{width:290.989333pt;}
._11{width:300.245333pt;}
._f{width:335.274667pt;}
._e{width:356.608000pt;}
._2f{width:429.397333pt;}
._38{width:530.218667pt;}
._45{width:551.552000pt;}
._31{width:572.885333pt;}
._33{width:626.218667pt;}
._30{width:760.749333pt;}
._35{width:767.874667pt;}
._3b{width:789.208000pt;}
._32{width:805.805333pt;}
._39{width:824.749333pt;}
._36{width:827.096000pt;}
._3f{width:831.874667pt;}
._34{width:846.082667pt;}
._3c{width:848.429333pt;}
._46{width:855.554667pt;}
._37{width:860.290667pt;}
._3a{width:867.416000pt;}
._42{width:874.541333pt;}
._3d{width:881.624000pt;}
._47{width:888.749333pt;}
._40{width:891.096000pt;}
._3e{width:910.082667pt;}
._41{width:924.290667pt;}
._43{width:933.762667pt;}
._48{width:947.970667pt;}
._44{width:966.957333pt;}
._2e{width:1097.770667pt;}
.fs5{font-size:23.320000pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2e{bottom:42.468667pt;}
.y197{bottom:71.345333pt;}
.yb7{bottom:73.893067pt;}
.ybd{bottom:73.987600pt;}
.y109{bottom:74.082000pt;}
.y125{bottom:74.342533pt;}
.y110{bottom:74.355067pt;}
.y64{bottom:74.462533pt;}
.y155{bottom:76.552800pt;}
.y20{bottom:78.248400pt;}
.yf3{bottom:82.076400pt;}
.yac{bottom:82.290000pt;}
.y7b{bottom:82.402133pt;}
.ydd{bottom:83.620133pt;}
.y196{bottom:84.678667pt;}
.yb6{bottom:87.887733pt;}
.ybc{bottom:87.982267pt;}
.y108{bottom:88.076667pt;}
.y10f{bottom:88.349733pt;}
.y154{bottom:89.886133pt;}
.y124{bottom:90.342533pt;}
.y63{bottom:90.462533pt;}
.y1f{bottom:91.576000pt;}
.yf2{bottom:96.519067pt;}
.yab{bottom:96.732667pt;}
.y7a{bottom:96.844800pt;}
.y195{bottom:98.012000pt;}
.ydc{bottom:98.062800pt;}
.yb5{bottom:101.882400pt;}
.ybb{bottom:101.976933pt;}
.y107{bottom:102.071333pt;}
.y10e{bottom:102.344400pt;}
.y153{bottom:103.219467pt;}
.y123{bottom:106.342533pt;}
.y62{bottom:106.462533pt;}
.yaa{bottom:111.175333pt;}
.y79{bottom:111.287467pt;}
.y194{bottom:111.345333pt;}
.ydb{bottom:112.505467pt;}
.y10d{bottom:116.339067pt;}
.y152{bottom:116.552800pt;}
.yf1{bottom:122.300400pt;}
.y122{bottom:122.342533pt;}
.y61{bottom:122.462533pt;}
.y193{bottom:124.678667pt;}
.ya9{bottom:125.618000pt;}
.y78{bottom:125.730133pt;}
.yda{bottom:126.948133pt;}
.y151{bottom:129.886133pt;}
.yf0{bottom:136.967067pt;}
.y192{bottom:138.012000pt;}
.y121{bottom:138.342533pt;}
.y60{bottom:138.462533pt;}
.ya8{bottom:140.060667pt;}
.y10b{bottom:140.148000pt;}
.y77{bottom:140.172800pt;}
.yd9{bottom:141.390800pt;}
.y150{bottom:143.219467pt;}
.y29{bottom:145.677067pt;}
.y191{bottom:151.345333pt;}
.y120{bottom:153.982533pt;}
.y5f{bottom:154.462533pt;}
.ya7{bottom:154.503333pt;}
.y76{bottom:154.615467pt;}
.yd8{bottom:155.833467pt;}
.y14f{bottom:156.552800pt;}
.y28{bottom:161.677067pt;}
.y190{bottom:164.678667pt;}
.yef{bottom:165.759200pt;}
.ya6{bottom:168.946000pt;}
.y75{bottom:169.058133pt;}
.y14e{bottom:169.886133pt;}
.yd7{bottom:170.276133pt;}
.y5e{bottom:170.462533pt;}
.y27{bottom:177.677067pt;}
.y18f{bottom:178.012000pt;}
.yee{bottom:183.092533pt;}
.y14d{bottom:183.219467pt;}
.ya5{bottom:183.388667pt;}
.y74{bottom:183.500800pt;}
.yd6{bottom:184.718800pt;}
.y11f{bottom:186.342533pt;}
.y5d{bottom:186.462533pt;}
.y18e{bottom:191.345333pt;}
.y26{bottom:193.677067pt;}
.y14c{bottom:196.552800pt;}
.ya4{bottom:197.831333pt;}
.y73{bottom:197.943467pt;}
.yd5{bottom:199.161467pt;}
.y11e{bottom:202.342533pt;}
.y5c{bottom:202.462533pt;}
.y18d{bottom:204.678667pt;}
.y25{bottom:209.677067pt;}
.y14b{bottom:209.886133pt;}
.ya3{bottom:212.274000pt;}
.y72{bottom:212.386133pt;}
.yd4{bottom:213.604133pt;}
.y18c{bottom:218.012000pt;}
.y11d{bottom:218.342533pt;}
.y5b{bottom:218.462533pt;}
.y10c{bottom:221.164400pt;}
.y14a{bottom:223.219467pt;}
.y24{bottom:225.677067pt;}
.yeb{bottom:225.840533pt;}
.y71{bottom:226.828800pt;}
.yd3{bottom:228.046800pt;}
.y18b{bottom:231.345333pt;}
.y11c{bottom:234.342533pt;}
.y5a{bottom:234.462533pt;}
.y149{bottom:236.552800pt;}
.yea{bottom:239.835200pt;}
.ya2{bottom:240.284667pt;}
.y70{bottom:241.271467pt;}
.y23{bottom:241.677067pt;}
.yd2{bottom:242.489467pt;}
.y18a{bottom:244.678667pt;}
.y148{bottom:249.886133pt;}
.y11b{bottom:250.342533pt;}
.y59{bottom:250.462533pt;}
.y6f{bottom:255.714133pt;}
.yd1{bottom:256.932133pt;}
.y22{bottom:257.677067pt;}
.y189{bottom:258.012000pt;}
.ye8{bottom:262.699200pt;}
.y147{bottom:263.219467pt;}
.yec{bottom:263.337867pt;}
.y11a{bottom:266.342533pt;}
.y58{bottom:266.462533pt;}
.y6e{bottom:270.156800pt;}
.ya1{bottom:271.315867pt;}
.y188{bottom:271.345333pt;}
.yd0{bottom:271.374800pt;}
.y2b{bottom:273.677067pt;}
.y146{bottom:276.552800pt;}
.y119{bottom:282.342533pt;}
.y57{bottom:282.462533pt;}
.y6d{bottom:284.599467pt;}
.y187{bottom:284.678667pt;}
.ycf{bottom:285.817467pt;}
.ya0{bottom:288.649200pt;}
.y21{bottom:289.317067pt;}
.y2a{bottom:289.677067pt;}
.y145{bottom:289.886133pt;}
.y186{bottom:298.012000pt;}
.y118{bottom:298.342533pt;}
.y56{bottom:298.462533pt;}
.y6c{bottom:299.042133pt;}
.yce{bottom:300.260133pt;}
.y144{bottom:303.219467pt;}
.y185{bottom:311.345333pt;}
.y6b{bottom:313.484800pt;}
.y117{bottom:314.342533pt;}
.y55{bottom:314.462533pt;}
.ycd{bottom:314.702800pt;}
.y143{bottom:316.552800pt;}
.y184{bottom:324.678667pt;}
.y6a{bottom:327.927467pt;}
.ycc{bottom:329.145467pt;}
.yae{bottom:329.714000pt;}
.y142{bottom:329.886133pt;}
.y116{bottom:330.342533pt;}
.y54{bottom:330.462533pt;}
.y90{bottom:330.729200pt;}
.y183{bottom:338.012000pt;}
.y141{bottom:343.219467pt;}
.ycb{bottom:343.588133pt;}
.yad{bottom:343.708667pt;}
.y115{bottom:345.982533pt;}
.y53{bottom:346.462533pt;}
.y8f{bottom:346.729200pt;}
.yed{bottom:349.188533pt;}
.y182{bottom:351.345333pt;}
.y69{bottom:355.938133pt;}
.y140{bottom:356.552800pt;}
.yca{bottom:358.030800pt;}
.y1e{bottom:358.715467pt;}
.y52{bottom:362.462533pt;}
.y181{bottom:364.678667pt;}
.y13f{bottom:369.886133pt;}
.yc9{bottom:372.473467pt;}
.y1d{bottom:374.727067pt;}
.y180{bottom:378.012000pt;}
.y114{bottom:378.342533pt;}
.y8e{bottom:378.369200pt;}
.y51{bottom:378.462533pt;}
.ye9{bottom:382.328000pt;}
.y13e{bottom:383.219467pt;}
.y68{bottom:386.955867pt;}
.y17f{bottom:391.345333pt;}
.y113{bottom:394.342533pt;}
.y50{bottom:394.462533pt;}
.y13d{bottom:396.552800pt;}
.y1c{bottom:399.033733pt;}
.yc8{bottom:400.484133pt;}
.y67{bottom:404.289200pt;}
.y17e{bottom:404.678667pt;}
.y13c{bottom:409.886133pt;}
.yb2{bottom:410.342533pt;}
.y4f{bottom:410.462533pt;}
.y8d{bottom:410.595867pt;}
.y1b{bottom:415.033733pt;}
.y17d{bottom:418.012000pt;}
.y13b{bottom:423.219467pt;}
.yc1{bottom:424.738133pt;}
.yb1{bottom:426.342533pt;}
.y4e{bottom:426.462533pt;}
.y8c{bottom:426.595867pt;}
.y1a{bottom:431.033733pt;}
.y17c{bottom:431.345333pt;}
.yc7{bottom:431.502533pt;}
.y13a{bottom:436.552800pt;}
.yc0{bottom:438.732800pt;}
.y106{bottom:442.342533pt;}
.y4d{bottom:442.462533pt;}
.y8b{bottom:442.595867pt;}
.y17b{bottom:444.678667pt;}
.y19{bottom:447.033733pt;}
.y139{bottom:449.886133pt;}
.yb0{bottom:457.982533pt;}
.y17a{bottom:458.012000pt;}
.y105{bottom:458.342533pt;}
.y4c{bottom:458.462533pt;}
.y8a{bottom:458.595867pt;}
.y18{bottom:463.033733pt;}
.y138{bottom:463.219467pt;}
.ybe{bottom:463.535200pt;}
.y179{bottom:471.345333pt;}
.y104{bottom:474.342533pt;}
.y4b{bottom:474.462533pt;}
.y89{bottom:474.595867pt;}
.ye3{bottom:475.200933pt;}
.ye1{bottom:475.478267pt;}
.y137{bottom:476.552800pt;}
.y17{bottom:479.033733pt;}
.y178{bottom:484.678667pt;}
.ye2{bottom:489.195600pt;}
.ye0{bottom:489.472933pt;}
.y136{bottom:489.886133pt;}
.y103{bottom:490.342533pt;}
.y4a{bottom:490.462533pt;}
.y88{bottom:490.595867pt;}
.y16{bottom:495.033733pt;}
.y177{bottom:498.012000pt;}
.y135{bottom:503.219467pt;}
.y102{bottom:506.342533pt;}
.y49{bottom:506.462533pt;}
.y87{bottom:506.595867pt;}
.y15{bottom:511.033733pt;}
.y176{bottom:511.345333pt;}
.yc3{bottom:511.568933pt;}
.yde{bottom:512.170000pt;}
.y134{bottom:516.552800pt;}
.y101{bottom:522.342533pt;}
.y48{bottom:522.462533pt;}
.y86{bottom:522.595867pt;}
.y175{bottom:524.678667pt;}
.y14{bottom:527.033733pt;}
.ybf{bottom:529.685067pt;}
.y133{bottom:529.886133pt;}
.y174{bottom:538.012000pt;}
.y100{bottom:538.342533pt;}
.y47{bottom:538.462533pt;}
.y85{bottom:538.595867pt;}
.y13{bottom:543.033733pt;}
.y132{bottom:543.219467pt;}
.y173{bottom:551.345333pt;}
.yff{bottom:554.342533pt;}
.y46{bottom:554.462533pt;}
.y84{bottom:554.595867pt;}
.y131{bottom:556.552800pt;}
.y12{bottom:559.033733pt;}
.y172{bottom:564.678667pt;}
.y130{bottom:569.886133pt;}
.yfe{bottom:570.342533pt;}
.y45{bottom:570.462533pt;}
.y83{bottom:570.595867pt;}
.y11{bottom:575.033733pt;}
.y171{bottom:578.012000pt;}
.yc4{bottom:579.041733pt;}
.y12f{bottom:583.219467pt;}
.yfd{bottom:586.342533pt;}
.y44{bottom:586.462533pt;}
.y82{bottom:586.595867pt;}
.y170{bottom:591.345333pt;}
.ydf{bottom:593.379867pt;}
.y12e{bottom:596.552800pt;}
.ye7{bottom:599.619333pt;}
.yfc{bottom:602.342533pt;}
.y43{bottom:602.462533pt;}
.y81{bottom:602.595867pt;}
.y16f{bottom:604.678667pt;}
.y12d{bottom:609.886133pt;}
.ye6{bottom:613.614000pt;}
.y10{bottom:615.170933pt;}
.y16e{bottom:618.012000pt;}
.yba{bottom:618.235867pt;}
.yfb{bottom:618.342533pt;}
.y42{bottom:618.462533pt;}
.y80{bottom:618.595867pt;}
.y12c{bottom:623.219467pt;}
.yf{bottom:626.238267pt;}
.ye5{bottom:627.608667pt;}
.y16d{bottom:631.345333pt;}
.y112{bottom:633.982533pt;}
.yb9{bottom:634.235867pt;}
.yfa{bottom:634.342533pt;}
.y41{bottom:634.462533pt;}
.y7f{bottom:634.595867pt;}
.y12b{bottom:636.552800pt;}
.y16c{bottom:644.678667pt;}
.yb4{bottom:650.235867pt;}
.yf9{bottom:650.342533pt;}
.y40{bottom:650.462533pt;}
.y7e{bottom:650.595867pt;}
.ye{bottom:654.429867pt;}
.y16b{bottom:658.012000pt;}
.y12a{bottom:665.982533pt;}
.yb3{bottom:666.235867pt;}
.yf8{bottom:666.342533pt;}
.y3f{bottom:666.462533pt;}
.yd{bottom:671.252267pt;}
.y16a{bottom:671.345333pt;}
.yc{bottom:678.429867pt;}
.y7d{bottom:682.235867pt;}
.yf7{bottom:682.342533pt;}
.y3e{bottom:682.462533pt;}
.y169{bottom:684.678667pt;}
.yb{bottom:695.252400pt;}
.y168{bottom:698.012000pt;}
.yf6{bottom:698.342533pt;}
.y3d{bottom:698.462533pt;}
.y9f{bottom:698.475867pt;}
.ya{bottom:702.429867pt;}
.y167{bottom:711.345333pt;}
.y9{bottom:714.429867pt;}
.y3c{bottom:714.462533pt;}
.y9e{bottom:714.475867pt;}
.y166{bottom:724.678667pt;}
.yf5{bottom:729.982533pt;}
.y129{bottom:730.102533pt;}
.y3b{bottom:730.462533pt;}
.y9d{bottom:730.475867pt;}
.y8{bottom:731.252400pt;}
.y165{bottom:738.012000pt;}
.y3a{bottom:746.462533pt;}
.y9c{bottom:746.475867pt;}
.y164{bottom:751.345333pt;}
.y7{bottom:756.783067pt;}
.y128{bottom:762.102533pt;}
.y39{bottom:762.462533pt;}
.y9b{bottom:762.475867pt;}
.y163{bottom:764.678667pt;}
.y162{bottom:778.012000pt;}
.y38{bottom:778.462533pt;}
.y9a{bottom:778.475867pt;}
.y161{bottom:791.345333pt;}
.y37{bottom:794.462533pt;}
.y99{bottom:794.475867pt;}
.y6{bottom:797.816533pt;}
.y160{bottom:804.678667pt;}
.y66{bottom:810.102533pt;}
.y36{bottom:810.462533pt;}
.y98{bottom:810.475867pt;}
.y15f{bottom:818.012000pt;}
.y127{bottom:826.102533pt;}
.y35{bottom:826.462533pt;}
.y97{bottom:826.475867pt;}
.y5{bottom:830.226133pt;}
.y15e{bottom:831.345333pt;}
.y65{bottom:841.982533pt;}
.y34{bottom:842.462533pt;}
.y96{bottom:842.475867pt;}
.y15d{bottom:844.678667pt;}
.y15c{bottom:858.012000pt;}
.y33{bottom:858.462533pt;}
.y95{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.y15b{bottom:871.345333pt;}
.y126{bottom:874.102533pt;}
.y32{bottom:874.462533pt;}
.y94{bottom:874.475867pt;}
.y15a{bottom:884.678667pt;}
.y31{bottom:890.462533pt;}
.y93{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y159{bottom:898.012000pt;}
.yc6{bottom:906.102533pt;}
.y30{bottom:906.462533pt;}
.y92{bottom:906.475867pt;}
.y158{bottom:911.345333pt;}
.yc5{bottom:922.102533pt;}
.y2f{bottom:922.462533pt;}
.y91{bottom:922.475867pt;}
.y157{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y156{bottom:1006.590133pt;}
.yaf{bottom:1006.594400pt;}
.y198{bottom:1006.598667pt;}
.yf4{bottom:1006.599067pt;}
.ye4{bottom:1006.603600pt;}
.y10a{bottom:1006.604667pt;}
.yc2{bottom:1006.604800pt;}
.yb8{bottom:1006.607733pt;}
.y111{bottom:1006.611067pt;}
.y7c{bottom:1006.658133pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.hd{height:29.140625pt;}
.h7{height:29.160156pt;}
.hc{height:29.169756pt;}
.h12{height:29.645833pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.h13{height:35.583333pt;}
.he{height:37.057292pt;}
.hb{height:38.828125pt;}
.ha{height:38.854167pt;}
.h9{height:38.880208pt;}
.h11{height:44.479167pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:68.031467pt;}
.x1e{left:69.921200pt;}
.x20{left:76.040933pt;}
.xa{left:85.417333pt;}
.x1{left:86.929067pt;}
.x16{left:88.818933pt;}
.x38{left:90.708800pt;}
.x4{left:94.488133pt;}
.xd{left:98.271467pt;}
.x36{left:109.606267pt;}
.x3{left:111.501467pt;}
.x7{left:117.170133pt;}
.x22{left:124.901733pt;}
.x1f{left:157.058667pt;}
.x32{left:169.004800pt;}
.x5{left:170.078667pt;}
.x30{left:176.778133pt;}
.x21{left:186.350000pt;}
.x1a{left:187.658133pt;}
.x6{left:189.223467pt;}
.x18{left:194.930933pt;}
.x17{left:197.618933pt;}
.x1b{left:202.518400pt;}
.x31{left:207.987733pt;}
.x26{left:229.042667pt;}
.x25{left:232.744000pt;}
.x28{left:312.861333pt;}
.x27{left:319.666667pt;}
.x29{left:394.162667pt;}
.xb{left:404.481333pt;}
.xe{left:406.311467pt;}
.x11{left:408.189067pt;}
.x1d{left:414.308667pt;}
.x14{left:425.195867pt;}
.x9{left:427.090133pt;}
.x34{left:428.976533pt;}
.x24{left:433.206267pt;}
.x10{left:436.551467pt;}
.x37{left:447.910267pt;}
.x15{left:455.449200pt;}
.x8{left:457.330133pt;}
.xf{left:466.924800pt;}
.x2b{left:486.717333pt;}
.x2a{left:489.832000pt;}
.x33{left:510.964800pt;}
.x1c{left:519.620800pt;}
.x23{left:542.486933pt;}
.x2d{left:568.018667pt;}
.x2c{left:576.754667pt;}
.x13{left:589.770933pt;}
.x2{left:616.324800pt;}
.x35{left:641.529467pt;}
.x12{left:647.453067pt;}
.x2f{left:654.952000pt;}
.x2e{left:660.573333pt;}
.x19{left:666.356800pt;}
}




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