
    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_5b24843cdb08a0c73e14d9b0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c7859fc541901ad98f6dd549.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_e59a6f1a2a6fbcfd9d4fb780.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7ab8240eeafe06ef0f9aa93a.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_57d1aa4bb32b48159c3ad23d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b634b85d6b817413e02d1945.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_37ffcc19163fc1346c4d8652.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e379450e1ab353aeb702f9de.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_5b89716aac9926bdb3f0c7d8.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.v4{vertical-align:1.620000px;}
.v1{vertical-align:30.381600px;}
.v3{vertical-align:33.012000px;}
.ls17{letter-spacing:-0.780000px;}
.ls5b{letter-spacing:-0.240000px;}
.ls40{letter-spacing:-0.210000px;}
.ls39{letter-spacing:-0.180000px;}
.ls41{letter-spacing:-0.126000px;}
.ls54{letter-spacing:-0.120000px;}
.ls3a{letter-spacing:-0.060000px;}
.ls70{letter-spacing:-0.048000px;}
.ls18{letter-spacing:-0.045000px;}
.ls3f{letter-spacing:-0.042000px;}
.ls16{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.003540px;}
.ls84{letter-spacing:0.048000px;}
.ls42{letter-spacing:0.060000px;}
.ls6b{letter-spacing:0.096000px;}
.ls2{letter-spacing:0.120000px;}
.ls3d{letter-spacing:0.144000px;}
.ls38{letter-spacing:0.180000px;}
.ls57{letter-spacing:0.192000px;}
.ls2c{letter-spacing:0.240000px;}
.ls7d{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.300000px;}
.ls74{letter-spacing:0.336000px;}
.ls26{letter-spacing:0.360000px;}
.ls50{letter-spacing:0.384000px;}
.ls31{letter-spacing:0.420000px;}
.ls2b{letter-spacing:0.480000px;}
.ls71{letter-spacing:0.528000px;}
.ls6{letter-spacing:0.540000px;}
.ls7b{letter-spacing:0.576000px;}
.ls35{letter-spacing:0.600000px;}
.ls33{letter-spacing:0.660000px;}
.ls3e{letter-spacing:0.672000px;}
.ls4d{letter-spacing:0.720000px;}
.ls51{letter-spacing:0.768000px;}
.ls5a{letter-spacing:0.780000px;}
.ls72{letter-spacing:0.816000px;}
.ls27{letter-spacing:0.840000px;}
.ls86{letter-spacing:0.864000px;}
.ls2f{letter-spacing:0.900000px;}
.ls73{letter-spacing:0.912000px;}
.ls4{letter-spacing:0.960000px;}
.ls7a{letter-spacing:1.008000px;}
.ls3{letter-spacing:1.020000px;}
.ls4f{letter-spacing:1.056000px;}
.ls11{letter-spacing:1.080000px;}
.ls6c{letter-spacing:1.104000px;}
.ls32{letter-spacing:1.140000px;}
.ls76{letter-spacing:1.152000px;}
.lse{letter-spacing:1.200000px;}
.ls19{letter-spacing:1.260000px;}
.ls85{letter-spacing:1.296000px;}
.ls25{letter-spacing:1.320000px;}
.ls6d{letter-spacing:1.344000px;}
.ls24{letter-spacing:1.380000px;}
.ls6e{letter-spacing:1.392000px;}
.ls52{letter-spacing:1.440000px;}
.ls1e{letter-spacing:1.500000px;}
.ls7f{letter-spacing:1.536000px;}
.ls21{letter-spacing:1.560000px;}
.ls6f{letter-spacing:1.584000px;}
.ls4b{letter-spacing:1.620000px;}
.ls68{letter-spacing:1.632000px;}
.lsf{letter-spacing:1.680000px;}
.ls1d{letter-spacing:1.740000px;}
.ls12{letter-spacing:1.800000px;}
.ls82{letter-spacing:1.824000px;}
.ls1b{letter-spacing:1.860000px;}
.ls75{letter-spacing:1.872000px;}
.ls43{letter-spacing:1.920000px;}
.ls6a{letter-spacing:1.968000px;}
.ls45{letter-spacing:1.980000px;}
.ls3b{letter-spacing:2.040000px;}
.ls13{letter-spacing:2.100000px;}
.ls3c{letter-spacing:2.160000px;}
.ls8{letter-spacing:2.220000px;}
.ls9{letter-spacing:2.280000px;}
.lsb{letter-spacing:2.340000px;}
.ls58{letter-spacing:2.352000px;}
.ls64{letter-spacing:2.400000px;}
.ls83{letter-spacing:2.448000px;}
.ls22{letter-spacing:2.460000px;}
.ls61{letter-spacing:2.520000px;}
.ls36{letter-spacing:2.580000px;}
.ls4e{letter-spacing:2.640000px;}
.ls15{letter-spacing:2.700000px;}
.ls55{letter-spacing:2.760000px;}
.ls23{letter-spacing:2.820000px;}
.ls88{letter-spacing:2.832000px;}
.ls34{letter-spacing:2.880000px;}
.ls53{letter-spacing:2.940000px;}
.ls7e{letter-spacing:2.976000px;}
.ls44{letter-spacing:3.000000px;}
.ls1f{letter-spacing:3.060000px;}
.ls2d{letter-spacing:3.120000px;}
.ls7c{letter-spacing:3.168000px;}
.ls2e{letter-spacing:3.180000px;}
.ls4a{letter-spacing:3.240000px;}
.ls4c{letter-spacing:3.300000px;}
.ls80{letter-spacing:3.312000px;}
.ls28{letter-spacing:3.360000px;}
.ls5{letter-spacing:3.480000px;}
.lsd{letter-spacing:3.540000px;}
.ls8a{letter-spacing:3.552000px;}
.ls65{letter-spacing:3.600000px;}
.ls37{letter-spacing:3.660000px;}
.ls49{letter-spacing:3.720000px;}
.ls30{letter-spacing:3.780000px;}
.ls79{letter-spacing:3.792000px;}
.lsa{letter-spacing:3.840000px;}
.ls81{letter-spacing:3.936000px;}
.ls7{letter-spacing:4.080000px;}
.ls29{letter-spacing:4.260000px;}
.ls1{letter-spacing:4.440000px;}
.ls60{letter-spacing:4.500000px;}
.ls87{letter-spacing:4.608000px;}
.ls56{letter-spacing:4.680000px;}
.ls69{letter-spacing:4.752000px;}
.ls59{letter-spacing:4.920000px;}
.ls89{letter-spacing:5.040000px;}
.ls46{letter-spacing:5.100000px;}
.ls47{letter-spacing:5.160000px;}
.ls14{letter-spacing:5.280000px;}
.ls77{letter-spacing:5.472000px;}
.ls78{letter-spacing:5.520000px;}
.ls8b{letter-spacing:5.568000px;}
.ls5c{letter-spacing:5.700000px;}
.ls62{letter-spacing:5.760000px;}
.ls2a{letter-spacing:5.880000px;}
.ls1a{letter-spacing:6.180000px;}
.ls5d{letter-spacing:6.360000px;}
.ls10{letter-spacing:6.600000px;}
.ls1c{letter-spacing:6.840000px;}
.ls67{letter-spacing:7.620000px;}
.ls5e{letter-spacing:7.680000px;}
.ls20{letter-spacing:8.040000px;}
.ls5f{letter-spacing:8.280000px;}
.ls66{letter-spacing:8.580000px;}
.ls48{letter-spacing:10.080000px;}
.ls63{letter-spacing:10.680000px;}
.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;}
}
.ws0{word-spacing:-35.194800px;}
.ws7a{word-spacing:-23.280000px;}
.ws7c{word-spacing:-22.440000px;}
.ws43{word-spacing:-20.100000px;}
.ws4{word-spacing:-19.440000px;}
.ws7d{word-spacing:-18.300000px;}
.ws18{word-spacing:-18.060000px;}
.ws68{word-spacing:-17.880000px;}
.ws8{word-spacing:-17.700000px;}
.ws96{word-spacing:-17.568000px;}
.ws95{word-spacing:-17.520000px;}
.ws1a{word-spacing:-17.460000px;}
.ws5{word-spacing:-17.280000px;}
.ws9d{word-spacing:-17.040000px;}
.ws7b{word-spacing:-16.920000px;}
.ws17{word-spacing:-16.860000px;}
.ws3{word-spacing:-16.680000px;}
.ws6{word-spacing:-16.200000px;}
.ws69{word-spacing:-16.140000px;}
.ws7{word-spacing:-16.020000px;}
.ws1c{word-spacing:-15.960000px;}
.ws67{word-spacing:-15.900000px;}
.ws98{word-spacing:-15.792000px;}
.ws65{word-spacing:-15.720000px;}
.ws44{word-spacing:-15.300000px;}
.ws66{word-spacing:-15.240000px;}
.ws19{word-spacing:-15.120000px;}
.ws1b{word-spacing:-15.000000px;}
.ws35{word-spacing:-14.940000px;}
.ws47{word-spacing:-14.880000px;}
.ws9c{word-spacing:-14.832000px;}
.ws7e{word-spacing:-13.968000px;}
.ws93{word-spacing:-13.872000px;}
.ws9a{word-spacing:-13.824000px;}
.ws99{word-spacing:-13.632000px;}
.ws81{word-spacing:-13.584000px;}
.ws45{word-spacing:-13.500000px;}
.ws9e{word-spacing:-13.440000px;}
.ws80{word-spacing:-13.392000px;}
.wsa{word-spacing:-13.344000px;}
.ws9f{word-spacing:-13.152000px;}
.ws7f{word-spacing:-13.104000px;}
.ws97{word-spacing:-13.056000px;}
.ws94{word-spacing:-12.960000px;}
.ws92{word-spacing:-12.912000px;}
.ws91{word-spacing:-12.816000px;}
.ws9{word-spacing:-12.510000px;}
.ws9b{word-spacing:-12.048000px;}
.ws46{word-spacing:-12.000000px;}
.ws1{word-spacing:-10.210662px;}
.ws2{word-spacing:-7.293330px;}
.ws13{word-spacing:-5.280000px;}
.wsa8{word-spacing:-3.936000px;}
.wsa5{word-spacing:-3.792000px;}
.ws4a{word-spacing:-3.300000px;}
.ws85{word-spacing:-3.060000px;}
.wsc{word-spacing:-2.886000px;}
.ws6d{word-spacing:-2.880000px;}
.ws14{word-spacing:-2.700000px;}
.ws52{word-spacing:-2.640000px;}
.ws2c{word-spacing:-2.220000px;}
.ws22{word-spacing:-2.100000px;}
.ws1e{word-spacing:-1.860000px;}
.wsa9{word-spacing:-1.824000px;}
.ws11{word-spacing:-1.800000px;}
.ws34{word-spacing:-1.776000px;}
.ws77{word-spacing:-1.680000px;}
.ws8c{word-spacing:-1.632000px;}
.ws90{word-spacing:-1.584000px;}
.ws70{word-spacing:-1.500000px;}
.ws8e{word-spacing:-1.392000px;}
.ws76{word-spacing:-1.140000px;}
.ws8d{word-spacing:-1.104000px;}
.wsf{word-spacing:-0.960000px;}
.wsaa{word-spacing:-0.864000px;}
.ws6c{word-spacing:-0.840000px;}
.wsa1{word-spacing:-0.816000px;}
.ws75{word-spacing:-0.780000px;}
.ws6b{word-spacing:-0.720000px;}
.ws4f{word-spacing:-0.360000px;}
.ws73{word-spacing:-0.300000px;}
.ws6e{word-spacing:-0.180000px;}
.ws56{word-spacing:-0.144000px;}
.ws48{word-spacing:-0.060000px;}
.wsb{word-spacing:0.000000px;}
.ws8f{word-spacing:0.048000px;}
.ws25{word-spacing:0.060000px;}
.wsab{word-spacing:0.096000px;}
.ws82{word-spacing:0.120000px;}
.ws5f{word-spacing:0.180000px;}
.ws5d{word-spacing:0.240000px;}
.ws5e{word-spacing:0.288000px;}
.ws62{word-spacing:0.300000px;}
.ws2d{word-spacing:0.360000px;}
.ws3d{word-spacing:0.480000px;}
.ws26{word-spacing:0.600000px;}
.wsa6{word-spacing:0.672000px;}
.ws78{word-spacing:0.720000px;}
.ws16{word-spacing:0.780000px;}
.ws2b{word-spacing:0.840000px;}
.ws64{word-spacing:0.900000px;}
.ws42{word-spacing:0.912000px;}
.ws54{word-spacing:1.080000px;}
.ws59{word-spacing:1.200000px;}
.ws87{word-spacing:1.260000px;}
.ws30{word-spacing:1.320000px;}
.ws1d{word-spacing:1.380000px;}
.ws4d{word-spacing:1.500000px;}
.ws84{word-spacing:1.560000px;}
.ws58{word-spacing:1.620000px;}
.ws21{word-spacing:1.680000px;}
.ws40{word-spacing:1.740000px;}
.ws8a{word-spacing:1.860000px;}
.ws5b{word-spacing:1.920000px;}
.ws3e{word-spacing:1.980000px;}
.wsa0{word-spacing:2.016000px;}
.ws60{word-spacing:2.040000px;}
.ws41{word-spacing:2.160000px;}
.wsa4{word-spacing:2.208000px;}
.ws29{word-spacing:2.220000px;}
.ws86{word-spacing:2.340000px;}
.wsa7{word-spacing:2.352000px;}
.ws6f{word-spacing:2.400000px;}
.ws2f{word-spacing:2.520000px;}
.ws5a{word-spacing:2.580000px;}
.ws5c{word-spacing:2.688000px;}
.ws4e{word-spacing:2.700000px;}
.ws28{word-spacing:2.760000px;}
.ws10{word-spacing:2.820000px;}
.ws57{word-spacing:2.880000px;}
.wsae{word-spacing:2.976000px;}
.ws51{word-spacing:3.060000px;}
.wsa2{word-spacing:3.072000px;}
.ws12{word-spacing:3.120000px;}
.ws49{word-spacing:3.180000px;}
.ws83{word-spacing:3.240000px;}
.ws63{word-spacing:3.480000px;}
.ws33{word-spacing:3.504000px;}
.ws23{word-spacing:3.600000px;}
.ws4b{word-spacing:3.660000px;}
.ws55{word-spacing:3.720000px;}
.ws8b{word-spacing:3.792000px;}
.wsa3{word-spacing:3.840000px;}
.ws24{word-spacing:3.900000px;}
.ws32{word-spacing:3.936000px;}
.ws6a{word-spacing:3.960000px;}
.ws31{word-spacing:3.984000px;}
.ws1f{word-spacing:4.020000px;}
.ws3f{word-spacing:4.140000px;}
.wsac{word-spacing:4.224000px;}
.ws53{word-spacing:4.260000px;}
.ws2e{word-spacing:4.320000px;}
.ws61{word-spacing:4.380000px;}
.ws4c{word-spacing:4.500000px;}
.ws20{word-spacing:4.560000px;}
.ws2a{word-spacing:4.620000px;}
.ws50{word-spacing:4.680000px;}
.ws79{word-spacing:4.740000px;}
.ws27{word-spacing:4.860000px;}
.wse{word-spacing:4.920000px;}
.wsd{word-spacing:4.980000px;}
.ws72{word-spacing:5.100000px;}
.wsad{word-spacing:5.136000px;}
.ws74{word-spacing:5.220000px;}
.ws89{word-spacing:5.460000px;}
.ws88{word-spacing:5.520000px;}
.ws15{word-spacing:7.620000px;}
.ws71{word-spacing:8.040000px;}
.ws3c{word-spacing:317.688000px;}
.ws37{word-spacing:349.188000px;}
.ws3a{word-spacing:354.060000px;}
.ws39{word-spacing:358.722000px;}
.ws38{word-spacing:365.694000px;}
.ws36{word-spacing:467.670000px;}
.ws3b{word-spacing:488.628000px;}
._d{margin-left:-2897.481000px;}
._4c{margin-left:-2874.915000px;}
._e{margin-left:-2873.673000px;}
._2{margin-left:-9.368400px;}
._c{margin-left:-7.620000px;}
._4b{margin-left:-6.522000px;}
._1{margin-left:-5.376000px;}
._4{margin-left:-4.215000px;}
._0{margin-left:-2.310000px;}
._6{margin-left:-1.020000px;}
._5{width:1.022340px;}
._7{width:2.160000px;}
._b{width:3.660000px;}
._f{width:5.160000px;}
._a{width:6.900000px;}
._9{width:8.100000px;}
._8{width:10.200000px;}
._2d{width:17.262000px;}
._32{width:18.396000px;}
._2f{width:25.872000px;}
._34{width:28.182000px;}
._47{width:34.734000px;}
._3e{width:36.120000px;}
._39{width:37.968000px;}
._3b{width:46.872000px;}
._26{width:56.658000px;}
._3{width:59.533428px;}
._15{width:61.068000px;}
._27{width:67.158000px;}
._23{width:77.658000px;}
._44{width:78.849000px;}
._2e{width:86.100000px;}
._33{width:87.738000px;}
._46{width:97.650000px;}
._43{width:99.021000px;}
._42{width:100.968000px;}
._3a{width:108.612000px;}
._35{width:119.658000px;}
._41{width:121.212000px;}
._3d{width:123.312000px;}
._2b{width:129.570000px;}
._30{width:138.558000px;}
._2a{width:140.784000px;}
._14{width:146.049000px;}
._40{width:150.150000px;}
._24{width:154.560000px;}
._22{width:155.988000px;}
._25{width:160.650000px;}
._3f{width:162.960000px;}
._37{width:165.165000px;}
._1b{width:172.452000px;}
._31{width:176.946000px;}
._28{width:184.212000px;}
._16{width:185.304000px;}
._48{width:186.732000px;}
._45{width:200.214000px;}
._11{width:201.978000px;}
._38{width:206.430000px;}
._12{width:210.141000px;}
._36{width:216.006000px;}
._13{width:217.140000px;}
._29{width:219.198000px;}
._2c{width:226.128000px;}
._10{width:234.570000px;}
._1a{width:242.466000px;}
._18{width:274.512000px;}
._3c{width:275.646000px;}
._17{width:285.012000px;}
._19{width:295.512000px;}
._21{width:304.332000px;}
._20{width:306.012000px;}
._4a{width:310.170000px;}
._1f{width:316.512000px;}
._1e{width:331.170000px;}
._49{width:339.318000px;}
._1d{width:349.188000px;}
._1c{width:370.188000px;}
.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;}
.fsa{font-size:54.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;}
.y2c{bottom:47.777250px;}
.y8d{bottom:82.923000px;}
.ycc{bottom:82.935300px;}
.y102{bottom:83.247750px;}
.y12c{bottom:83.628600px;}
.y147{bottom:83.635350px;}
.y62{bottom:83.770350px;}
.y7f{bottom:83.920350px;}
.y103{bottom:84.322500px;}
.yfc{bottom:84.512100px;}
.y29{bottom:90.293400px;}
.y163{bottom:92.121900px;}
.y8c{bottom:98.667000px;}
.ycb{bottom:98.679300px;}
.y101{bottom:98.991750px;}
.y12b{bottom:101.628600px;}
.y146{bottom:101.635350px;}
.y61{bottom:101.770350px;}
.y7e{bottom:101.920350px;}
.yfb{bottom:102.512100px;}
.y28{bottom:105.289650px;}
.y162{bottom:107.121900px;}
.y12a{bottom:119.628600px;}
.y145{bottom:119.635350px;}
.y60{bottom:119.770350px;}
.y7d{bottom:119.920350px;}
.y27{bottom:120.285900px;}
.yfa{bottom:120.512100px;}
.y161{bottom:122.121900px;}
.yc3{bottom:129.311550px;}
.y160{bottom:137.121900px;}
.y129{bottom:137.628600px;}
.y144{bottom:137.635350px;}
.y5f{bottom:137.770350px;}
.y7c{bottom:137.920350px;}
.yf9{bottom:138.512100px;}
.yc2{bottom:145.807050px;}
.y15f{bottom:152.121900px;}
.y128{bottom:155.628600px;}
.y143{bottom:155.635350px;}
.y5e{bottom:155.770350px;}
.y7b{bottom:155.920350px;}
.yf8{bottom:156.512100px;}
.yc1{bottom:160.559550px;}
.y15e{bottom:167.121900px;}
.y127{bottom:173.628600px;}
.y142{bottom:173.635350px;}
.y5d{bottom:173.770350px;}
.y7a{bottom:173.920350px;}
.yf7{bottom:174.512100px;}
.yc0{bottom:177.055050px;}
.y15d{bottom:182.121900px;}
.y24{bottom:182.841300px;}
.y126{bottom:191.628600px;}
.y141{bottom:191.635350px;}
.y5c{bottom:191.770350px;}
.ybf{bottom:191.807550px;}
.y79{bottom:191.920350px;}
.yf6{bottom:192.512100px;}
.y15c{bottom:197.121900px;}
.y23{bottom:200.841300px;}
.ybe{bottom:208.303050px;}
.y125{bottom:209.628600px;}
.y140{bottom:209.635350px;}
.y5b{bottom:209.770350px;}
.y78{bottom:209.920350px;}
.yf5{bottom:210.512100px;}
.y15b{bottom:212.121900px;}
.y19a{bottom:215.263500px;}
.y22{bottom:218.841300px;}
.ybd{bottom:223.055550px;}
.y15a{bottom:227.121900px;}
.y124{bottom:227.628600px;}
.y13f{bottom:227.635350px;}
.y5a{bottom:227.770350px;}
.y77{bottom:227.920350px;}
.yf4{bottom:228.512100px;}
.y199{bottom:230.263500px;}
.y21{bottom:236.841300px;}
.ybc{bottom:237.808050px;}
.y159{bottom:242.121900px;}
.y198{bottom:245.263500px;}
.y123{bottom:245.628600px;}
.y13e{bottom:245.635350px;}
.y59{bottom:245.770350px;}
.y76{bottom:245.920350px;}
.yf3{bottom:246.512100px;}
.ybb{bottom:254.303550px;}
.y20{bottom:254.841300px;}
.y158{bottom:257.121900px;}
.y197{bottom:260.263500px;}
.y122{bottom:263.628600px;}
.y13d{bottom:263.635350px;}
.y58{bottom:263.770350px;}
.y75{bottom:263.920350px;}
.yf2{bottom:264.512100px;}
.y157{bottom:272.121900px;}
.y1f{bottom:272.841300px;}
.y196{bottom:275.263500px;}
.y121{bottom:281.628600px;}
.y13c{bottom:281.635350px;}
.y57{bottom:281.770350px;}
.yba{bottom:281.813550px;}
.y74{bottom:281.920350px;}
.yf1{bottom:282.512100px;}
.y156{bottom:287.121900px;}
.y195{bottom:290.263500px;}
.y1e{bottom:290.841300px;}
.yb9{bottom:296.566050px;}
.y120{bottom:299.628600px;}
.y13b{bottom:299.635350px;}
.y56{bottom:299.770350px;}
.y73{bottom:299.920350px;}
.yf0{bottom:300.512100px;}
.y155{bottom:302.121900px;}
.y194{bottom:305.263500px;}
.y1d{bottom:308.841300px;}
.yb8{bottom:311.318550px;}
.y154{bottom:317.121900px;}
.y11f{bottom:317.628600px;}
.y13a{bottom:317.635350px;}
.y55{bottom:317.770350px;}
.y72{bottom:317.920350px;}
.yef{bottom:318.512100px;}
.y193{bottom:320.263500px;}
.yb7{bottom:326.071050px;}
.y1c{bottom:326.841300px;}
.y153{bottom:332.121900px;}
.y192{bottom:335.263500px;}
.y11e{bottom:335.628600px;}
.y139{bottom:335.635350px;}
.y54{bottom:335.770350px;}
.y71{bottom:335.920350px;}
.yee{bottom:336.512100px;}
.yb6{bottom:342.566550px;}
.y1b{bottom:344.841300px;}
.y152{bottom:347.121900px;}
.y100{bottom:347.377800px;}
.y191{bottom:350.263500px;}
.y11d{bottom:353.628600px;}
.y138{bottom:353.635350px;}
.y53{bottom:353.770350px;}
.y70{bottom:353.920350px;}
.yed{bottom:354.512100px;}
.yb5{bottom:357.319050px;}
.y151{bottom:362.121900px;}
.y1a{bottom:362.841300px;}
.yff{bottom:363.121800px;}
.y190{bottom:365.263500px;}
.y11c{bottom:371.628600px;}
.y137{bottom:371.635350px;}
.y52{bottom:371.770350px;}
.y6f{bottom:371.920350px;}
.yb4{bottom:372.071550px;}
.yec{bottom:372.512100px;}
.y150{bottom:377.121900px;}
.yfe{bottom:378.865800px;}
.y18f{bottom:380.263500px;}
.y19{bottom:380.841300px;}
.yb3{bottom:388.567050px;}
.y11b{bottom:389.628600px;}
.y136{bottom:389.635350px;}
.y51{bottom:389.770350px;}
.y6e{bottom:389.920350px;}
.yeb{bottom:390.512100px;}
.y14f{bottom:392.121900px;}
.yfd{bottom:394.609800px;}
.y18e{bottom:395.263500px;}
.y18{bottom:398.841300px;}
.y11a{bottom:407.628600px;}
.y135{bottom:407.635350px;}
.y50{bottom:407.770350px;}
.y6d{bottom:407.920350px;}
.yea{bottom:408.512100px;}
.y18d{bottom:410.263500px;}
.yb2{bottom:416.077050px;}
.y26{bottom:416.841300px;}
.y14e{bottom:425.230350px;}
.y18c{bottom:425.263500px;}
.y119{bottom:425.628600px;}
.y134{bottom:425.635350px;}
.y4f{bottom:425.770350px;}
.y6c{bottom:425.920350px;}
.ye9{bottom:426.512100px;}
.yb1{bottom:430.829550px;}
.y17{bottom:434.438400px;}
.y25{bottom:434.841300px;}
.y18b{bottom:440.263500px;}
.y118{bottom:443.628600px;}
.y133{bottom:443.635350px;}
.y4e{bottom:443.770350px;}
.y6b{bottom:443.920350px;}
.ye8{bottom:444.512100px;}
.yb0{bottom:447.325050px;}
.y18a{bottom:455.263500px;}
.y117{bottom:461.628600px;}
.y132{bottom:461.635350px;}
.y4d{bottom:461.770350px;}
.y6a{bottom:461.920350px;}
.yaf{bottom:462.077550px;}
.ye7{bottom:462.512100px;}
.y189{bottom:470.263500px;}
.yae{bottom:476.830050px;}
.y116{bottom:479.628600px;}
.y131{bottom:479.635350px;}
.y4c{bottom:479.770350px;}
.y69{bottom:479.920350px;}
.ye6{bottom:480.512100px;}
.y188{bottom:485.263500px;}
.yad{bottom:491.632350px;}
.y14d{bottom:497.365350px;}
.y115{bottom:497.628600px;}
.y130{bottom:497.635350px;}
.y4b{bottom:497.770350px;}
.y68{bottom:497.920350px;}
.ye5{bottom:498.512100px;}
.y187{bottom:500.263500px;}
.yac{bottom:506.384850px;}
.y16{bottom:511.114200px;}
.y186{bottom:515.263500px;}
.y114{bottom:515.628600px;}
.y12f{bottom:515.635350px;}
.y4a{bottom:515.770350px;}
.y67{bottom:515.920350px;}
.ye4{bottom:516.512100px;}
.yab{bottom:522.880350px;}
.y185{bottom:530.263500px;}
.y14c{bottom:533.365350px;}
.y113{bottom:533.628600px;}
.y12e{bottom:533.635350px;}
.y49{bottom:533.770350px;}
.y66{bottom:533.920350px;}
.ye3{bottom:534.512100px;}
.y15{bottom:538.459200px;}
.yaa{bottom:539.375850px;}
.y184{bottom:545.263500px;}
.y112{bottom:551.628600px;}
.y48{bottom:551.770350px;}
.ye2{bottom:552.512100px;}
.ya9{bottom:554.128350px;}
.y14{bottom:556.459200px;}
.y183{bottom:560.263500px;}
.yca{bottom:565.527300px;}
.ya8{bottom:568.880850px;}
.y12d{bottom:569.230350px;}
.y65{bottom:569.515350px;}
.y111{bottom:569.628600px;}
.y47{bottom:569.770350px;}
.y13{bottom:574.459200px;}
.y182{bottom:575.263500px;}
.yc9{bottom:581.271300px;}
.ya7{bottom:585.376350px;}
.y110{bottom:587.628600px;}
.y46{bottom:587.770350px;}
.ye1{bottom:588.005250px;}
.y181{bottom:590.263500px;}
.y12{bottom:592.459200px;}
.ya6{bottom:601.871850px;}
.ye0{bottom:603.005250px;}
.y180{bottom:605.263500px;}
.y14b{bottom:605.365350px;}
.y10f{bottom:605.628600px;}
.y45{bottom:605.770350px;}
.y11{bottom:610.459200px;}
.ya5{bottom:616.624350px;}
.ydf{bottom:618.005250px;}
.y17f{bottom:620.263500px;}
.y10e{bottom:623.628600px;}
.y44{bottom:623.770350px;}
.y10{bottom:628.459200px;}
.yde{bottom:633.005250px;}
.ya4{bottom:633.119850px;}
.y17e{bottom:635.263500px;}
.y10d{bottom:641.628600px;}
.y43{bottom:641.770350px;}
.yf{bottom:646.459200px;}
.ya3{bottom:647.872350px;}
.ydd{bottom:648.005250px;}
.y17d{bottom:650.263500px;}
.y14a{bottom:659.365350px;}
.y10c{bottom:659.628600px;}
.y42{bottom:659.770350px;}
.ydc{bottom:663.005250px;}
.ya2{bottom:664.367850px;}
.ye{bottom:664.459200px;}
.y17c{bottom:665.263500px;}
.y10b{bottom:677.628600px;}
.y41{bottom:677.770350px;}
.ydb{bottom:678.005250px;}
.ya1{bottom:679.120350px;}
.y17b{bottom:680.263500px;}
.yda{bottom:693.005250px;}
.ya0{bottom:693.872850px;}
.y17a{bottom:695.263500px;}
.y10a{bottom:695.628600px;}
.y40{bottom:695.770350px;}
.yd9{bottom:708.005250px;}
.y9f{bottom:708.625350px;}
.yd{bottom:709.617300px;}
.y179{bottom:710.263500px;}
.y109{bottom:713.628600px;}
.y3f{bottom:713.770350px;}
.yc{bottom:722.068050px;}
.yd8{bottom:723.005250px;}
.y9e{bottom:723.377850px;}
.y178{bottom:725.263500px;}
.y108{bottom:731.635350px;}
.y3e{bottom:731.770350px;}
.yd7{bottom:738.005250px;}
.y9d{bottom:739.873350px;}
.y177{bottom:740.263500px;}
.y107{bottom:749.635350px;}
.y3d{bottom:749.770350px;}
.yd6{bottom:753.005250px;}
.y9c{bottom:754.625850px;}
.y176{bottom:755.263500px;}
.yb{bottom:759.208950px;}
.ya{bottom:767.283600px;}
.y149{bottom:767.365350px;}
.y106{bottom:767.635350px;}
.y3c{bottom:767.770350px;}
.yd5{bottom:768.005250px;}
.y9b{bottom:769.378350px;}
.y175{bottom:770.263500px;}
.yd4{bottom:783.005250px;}
.y9a{bottom:784.130850px;}
.y174{bottom:785.263500px;}
.y105{bottom:785.635350px;}
.y3b{bottom:785.770350px;}
.y9{bottom:786.208950px;}
.yd3{bottom:798.005250px;}
.y173{bottom:800.263500px;}
.y99{bottom:800.626350px;}
.y3a{bottom:803.770350px;}
.y8{bottom:814.930800px;}
.y172{bottom:815.263500px;}
.y8b{bottom:820.947000px;}
.y104{bottom:821.230350px;}
.y39{bottom:821.770350px;}
.y98{bottom:828.136350px;}
.y171{bottom:830.263500px;}
.yd2{bottom:830.352750px;}
.y8a{bottom:835.947000px;}
.y38{bottom:839.770350px;}
.y97{bottom:844.631850px;}
.y170{bottom:845.263500px;}
.yd1{bottom:845.958750px;}
.y89{bottom:850.947000px;}
.y37{bottom:857.770350px;}
.y16f{bottom:860.263500px;}
.yd0{bottom:860.320350px;}
.y7{bottom:861.082800px;}
.y96{bottom:861.127350px;}
.y88{bottom:865.947000px;}
.y16e{bottom:875.263500px;}
.y36{bottom:875.770350px;}
.y95{bottom:875.879850px;}
.ycf{bottom:875.920350px;}
.y87{bottom:880.947000px;}
.y16d{bottom:890.263500px;}
.y94{bottom:892.375350px;}
.yce{bottom:893.515350px;}
.y35{bottom:893.770350px;}
.y6{bottom:897.543600px;}
.y16c{bottom:905.263500px;}
.y93{bottom:907.127850px;}
.y64{bottom:911.365350px;}
.y34{bottom:911.770350px;}
.y86{bottom:912.040350px;}
.y16b{bottom:920.263500px;}
.y92{bottom:923.623350px;}
.y85{bottom:929.635350px;}
.y33{bottom:929.770350px;}
.y5{bottom:934.004400px;}
.y16a{bottom:935.263500px;}
.y63{bottom:947.230350px;}
.y84{bottom:947.635350px;}
.y32{bottom:947.770350px;}
.y169{bottom:950.263500px;}
.y91{bottom:951.133350px;}
.yc8{bottom:953.770350px;}
.y90{bottom:959.375850px;}
.y168{bottom:965.263500px;}
.y83{bottom:965.635350px;}
.y31{bottom:965.770350px;}
.y4{bottom:970.465200px;}
.yc7{bottom:971.770350px;}
.y167{bottom:980.263500px;}
.y30{bottom:983.770350px;}
.yc6{bottom:989.770350px;}
.y166{bottom:995.263500px;}
.y8f{bottom:998.770350px;}
.y148{bottom:1001.365350px;}
.y82{bottom:1001.500350px;}
.y2f{bottom:1001.770350px;}
.y3{bottom:1006.926000px;}
.y165{bottom:1010.263500px;}
.y8e{bottom:1018.270350px;}
.y2e{bottom:1019.770350px;}
.yc5{bottom:1025.263500px;}
.y81{bottom:1037.365350px;}
.y2d{bottom:1037.770350px;}
.yc4{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y164{bottom:1132.413900px;}
.y80{bottom:1132.418700px;}
.ycd{bottom:1132.421700px;}
.y19b{bottom:1132.423500px;}
.y2b{bottom:1136.092500px;}
.y2a{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.393066px;}
.h2{height:30.577148px;}
.hc{height:32.761230px;}
.h7{height:32.805176px;}
.h10{height:33.328125px;}
.he{height:34.945312px;}
.hd{height:34.992188px;}
.h13{height:36.852539px;}
.h11{height:41.660156px;}
.hf{height:42.117188px;}
.ha{height:43.681641px;}
.h9{height:43.740234px;}
.h14{height:47.381836px;}
.hb{height:52.646484px;}
.h15{height:54.266484px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h12{height:69.864539px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:61.653600px;}
.x1e{left:63.770550px;}
.x1f{left:72.275550px;}
.xb{left:76.535400px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x4{left:106.299150px;}
.xc{left:110.540400px;}
.x23{left:123.307350px;}
.x3{left:125.439150px;}
.x6{left:131.811000px;}
.x2a{left:190.130400px;}
.x21{left:193.750050px;}
.x22{left:204.250050px;}
.x1c{left:208.807050px;}
.x5{left:212.876400px;}
.x20{left:216.010050px;}
.xa{left:455.041500px;}
.xd{left:457.085400px;}
.x18{left:478.346400px;}
.x7{left:480.486000px;}
.x28{left:482.598600px;}
.x16{left:484.390350px;}
.xf{left:491.105400px;}
.x25{left:495.965400px;}
.x14{left:500.215350px;}
.x19{left:503.858400px;}
.x15{left:513.130350px;}
.x8{left:514.536000px;}
.x24{left:517.460400px;}
.xe{left:525.275400px;}
.x2b{left:574.835400px;}
.x27{left:582.859500px;}
.x26{left:593.195400px;}
.x13{left:594.580350px;}
.x29{left:600.670350px;}
.x12{left:612.910350px;}
.x17{left:624.865350px;}
.x11{left:663.492300px;}
.x2{left:693.365400px;}
.x2c{left:722.593050px;}
.x10{left:729.282150px;}
.x1d{left:744.086550px;}
.x1a{left:750.541950px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v1{vertical-align:27.005867pt;}
.v3{vertical-align:29.344000pt;}
.ls17{letter-spacing:-0.693333pt;}
.ls5b{letter-spacing:-0.213333pt;}
.ls40{letter-spacing:-0.186667pt;}
.ls39{letter-spacing:-0.160000pt;}
.ls41{letter-spacing:-0.112000pt;}
.ls54{letter-spacing:-0.106667pt;}
.ls3a{letter-spacing:-0.053333pt;}
.ls70{letter-spacing:-0.042667pt;}
.ls18{letter-spacing:-0.040000pt;}
.ls3f{letter-spacing:-0.037333pt;}
.ls16{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003147pt;}
.ls84{letter-spacing:0.042667pt;}
.ls42{letter-spacing:0.053333pt;}
.ls6b{letter-spacing:0.085333pt;}
.ls2{letter-spacing:0.106667pt;}
.ls3d{letter-spacing:0.128000pt;}
.ls38{letter-spacing:0.160000pt;}
.ls57{letter-spacing:0.170667pt;}
.ls2c{letter-spacing:0.213333pt;}
.ls7d{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.266667pt;}
.ls74{letter-spacing:0.298667pt;}
.ls26{letter-spacing:0.320000pt;}
.ls50{letter-spacing:0.341333pt;}
.ls31{letter-spacing:0.373333pt;}
.ls2b{letter-spacing:0.426667pt;}
.ls71{letter-spacing:0.469333pt;}
.ls6{letter-spacing:0.480000pt;}
.ls7b{letter-spacing:0.512000pt;}
.ls35{letter-spacing:0.533333pt;}
.ls33{letter-spacing:0.586667pt;}
.ls3e{letter-spacing:0.597333pt;}
.ls4d{letter-spacing:0.640000pt;}
.ls51{letter-spacing:0.682667pt;}
.ls5a{letter-spacing:0.693333pt;}
.ls72{letter-spacing:0.725333pt;}
.ls27{letter-spacing:0.746667pt;}
.ls86{letter-spacing:0.768000pt;}
.ls2f{letter-spacing:0.800000pt;}
.ls73{letter-spacing:0.810667pt;}
.ls4{letter-spacing:0.853333pt;}
.ls7a{letter-spacing:0.896000pt;}
.ls3{letter-spacing:0.906667pt;}
.ls4f{letter-spacing:0.938667pt;}
.ls11{letter-spacing:0.960000pt;}
.ls6c{letter-spacing:0.981333pt;}
.ls32{letter-spacing:1.013333pt;}
.ls76{letter-spacing:1.024000pt;}
.lse{letter-spacing:1.066667pt;}
.ls19{letter-spacing:1.120000pt;}
.ls85{letter-spacing:1.152000pt;}
.ls25{letter-spacing:1.173333pt;}
.ls6d{letter-spacing:1.194667pt;}
.ls24{letter-spacing:1.226667pt;}
.ls6e{letter-spacing:1.237333pt;}
.ls52{letter-spacing:1.280000pt;}
.ls1e{letter-spacing:1.333333pt;}
.ls7f{letter-spacing:1.365333pt;}
.ls21{letter-spacing:1.386667pt;}
.ls6f{letter-spacing:1.408000pt;}
.ls4b{letter-spacing:1.440000pt;}
.ls68{letter-spacing:1.450667pt;}
.lsf{letter-spacing:1.493333pt;}
.ls1d{letter-spacing:1.546667pt;}
.ls12{letter-spacing:1.600000pt;}
.ls82{letter-spacing:1.621333pt;}
.ls1b{letter-spacing:1.653333pt;}
.ls75{letter-spacing:1.664000pt;}
.ls43{letter-spacing:1.706667pt;}
.ls6a{letter-spacing:1.749333pt;}
.ls45{letter-spacing:1.760000pt;}
.ls3b{letter-spacing:1.813333pt;}
.ls13{letter-spacing:1.866667pt;}
.ls3c{letter-spacing:1.920000pt;}
.ls8{letter-spacing:1.973333pt;}
.ls9{letter-spacing:2.026667pt;}
.lsb{letter-spacing:2.080000pt;}
.ls58{letter-spacing:2.090667pt;}
.ls64{letter-spacing:2.133333pt;}
.ls83{letter-spacing:2.176000pt;}
.ls22{letter-spacing:2.186667pt;}
.ls61{letter-spacing:2.240000pt;}
.ls36{letter-spacing:2.293333pt;}
.ls4e{letter-spacing:2.346667pt;}
.ls15{letter-spacing:2.400000pt;}
.ls55{letter-spacing:2.453333pt;}
.ls23{letter-spacing:2.506667pt;}
.ls88{letter-spacing:2.517333pt;}
.ls34{letter-spacing:2.560000pt;}
.ls53{letter-spacing:2.613333pt;}
.ls7e{letter-spacing:2.645333pt;}
.ls44{letter-spacing:2.666667pt;}
.ls1f{letter-spacing:2.720000pt;}
.ls2d{letter-spacing:2.773333pt;}
.ls7c{letter-spacing:2.816000pt;}
.ls2e{letter-spacing:2.826667pt;}
.ls4a{letter-spacing:2.880000pt;}
.ls4c{letter-spacing:2.933333pt;}
.ls80{letter-spacing:2.944000pt;}
.ls28{letter-spacing:2.986667pt;}
.ls5{letter-spacing:3.093333pt;}
.lsd{letter-spacing:3.146667pt;}
.ls8a{letter-spacing:3.157333pt;}
.ls65{letter-spacing:3.200000pt;}
.ls37{letter-spacing:3.253333pt;}
.ls49{letter-spacing:3.306667pt;}
.ls30{letter-spacing:3.360000pt;}
.ls79{letter-spacing:3.370667pt;}
.lsa{letter-spacing:3.413333pt;}
.ls81{letter-spacing:3.498667pt;}
.ls7{letter-spacing:3.626667pt;}
.ls29{letter-spacing:3.786667pt;}
.ls1{letter-spacing:3.946667pt;}
.ls60{letter-spacing:4.000000pt;}
.ls87{letter-spacing:4.096000pt;}
.ls56{letter-spacing:4.160000pt;}
.ls69{letter-spacing:4.224000pt;}
.ls59{letter-spacing:4.373333pt;}
.ls89{letter-spacing:4.480000pt;}
.ls46{letter-spacing:4.533333pt;}
.ls47{letter-spacing:4.586667pt;}
.ls14{letter-spacing:4.693333pt;}
.ls77{letter-spacing:4.864000pt;}
.ls78{letter-spacing:4.906667pt;}
.ls8b{letter-spacing:4.949333pt;}
.ls5c{letter-spacing:5.066667pt;}
.ls62{letter-spacing:5.120000pt;}
.ls2a{letter-spacing:5.226667pt;}
.ls1a{letter-spacing:5.493333pt;}
.ls5d{letter-spacing:5.653333pt;}
.ls10{letter-spacing:5.866667pt;}
.ls1c{letter-spacing:6.080000pt;}
.ls67{letter-spacing:6.773333pt;}
.ls5e{letter-spacing:6.826667pt;}
.ls20{letter-spacing:7.146667pt;}
.ls5f{letter-spacing:7.360000pt;}
.ls66{letter-spacing:7.626667pt;}
.ls48{letter-spacing:8.960000pt;}
.ls63{letter-spacing:9.493333pt;}
.ws0{word-spacing:-31.284267pt;}
.ws7a{word-spacing:-20.693333pt;}
.ws7c{word-spacing:-19.946667pt;}
.ws43{word-spacing:-17.866667pt;}
.ws4{word-spacing:-17.280000pt;}
.ws7d{word-spacing:-16.266667pt;}
.ws18{word-spacing:-16.053333pt;}
.ws68{word-spacing:-15.893333pt;}
.ws8{word-spacing:-15.733333pt;}
.ws96{word-spacing:-15.616000pt;}
.ws95{word-spacing:-15.573333pt;}
.ws1a{word-spacing:-15.520000pt;}
.ws5{word-spacing:-15.360000pt;}
.ws9d{word-spacing:-15.146667pt;}
.ws7b{word-spacing:-15.040000pt;}
.ws17{word-spacing:-14.986667pt;}
.ws3{word-spacing:-14.826667pt;}
.ws6{word-spacing:-14.400000pt;}
.ws69{word-spacing:-14.346667pt;}
.ws7{word-spacing:-14.240000pt;}
.ws1c{word-spacing:-14.186667pt;}
.ws67{word-spacing:-14.133333pt;}
.ws98{word-spacing:-14.037333pt;}
.ws65{word-spacing:-13.973333pt;}
.ws44{word-spacing:-13.600000pt;}
.ws66{word-spacing:-13.546667pt;}
.ws19{word-spacing:-13.440000pt;}
.ws1b{word-spacing:-13.333333pt;}
.ws35{word-spacing:-13.280000pt;}
.ws47{word-spacing:-13.226667pt;}
.ws9c{word-spacing:-13.184000pt;}
.ws7e{word-spacing:-12.416000pt;}
.ws93{word-spacing:-12.330667pt;}
.ws9a{word-spacing:-12.288000pt;}
.ws99{word-spacing:-12.117333pt;}
.ws81{word-spacing:-12.074667pt;}
.ws45{word-spacing:-12.000000pt;}
.ws9e{word-spacing:-11.946667pt;}
.ws80{word-spacing:-11.904000pt;}
.wsa{word-spacing:-11.861333pt;}
.ws9f{word-spacing:-11.690667pt;}
.ws7f{word-spacing:-11.648000pt;}
.ws97{word-spacing:-11.605333pt;}
.ws94{word-spacing:-11.520000pt;}
.ws92{word-spacing:-11.477333pt;}
.ws91{word-spacing:-11.392000pt;}
.ws9{word-spacing:-11.120000pt;}
.ws9b{word-spacing:-10.709333pt;}
.ws46{word-spacing:-10.666667pt;}
.ws1{word-spacing:-9.076144pt;}
.ws2{word-spacing:-6.482960pt;}
.ws13{word-spacing:-4.693333pt;}
.wsa8{word-spacing:-3.498667pt;}
.wsa5{word-spacing:-3.370667pt;}
.ws4a{word-spacing:-2.933333pt;}
.ws85{word-spacing:-2.720000pt;}
.wsc{word-spacing:-2.565333pt;}
.ws6d{word-spacing:-2.560000pt;}
.ws14{word-spacing:-2.400000pt;}
.ws52{word-spacing:-2.346667pt;}
.ws2c{word-spacing:-1.973333pt;}
.ws22{word-spacing:-1.866667pt;}
.ws1e{word-spacing:-1.653333pt;}
.wsa9{word-spacing:-1.621333pt;}
.ws11{word-spacing:-1.600000pt;}
.ws34{word-spacing:-1.578667pt;}
.ws77{word-spacing:-1.493333pt;}
.ws8c{word-spacing:-1.450667pt;}
.ws90{word-spacing:-1.408000pt;}
.ws70{word-spacing:-1.333333pt;}
.ws8e{word-spacing:-1.237333pt;}
.ws76{word-spacing:-1.013333pt;}
.ws8d{word-spacing:-0.981333pt;}
.wsf{word-spacing:-0.853333pt;}
.wsaa{word-spacing:-0.768000pt;}
.ws6c{word-spacing:-0.746667pt;}
.wsa1{word-spacing:-0.725333pt;}
.ws75{word-spacing:-0.693333pt;}
.ws6b{word-spacing:-0.640000pt;}
.ws4f{word-spacing:-0.320000pt;}
.ws73{word-spacing:-0.266667pt;}
.ws6e{word-spacing:-0.160000pt;}
.ws56{word-spacing:-0.128000pt;}
.ws48{word-spacing:-0.053333pt;}
.wsb{word-spacing:0.000000pt;}
.ws8f{word-spacing:0.042667pt;}
.ws25{word-spacing:0.053333pt;}
.wsab{word-spacing:0.085333pt;}
.ws82{word-spacing:0.106667pt;}
.ws5f{word-spacing:0.160000pt;}
.ws5d{word-spacing:0.213333pt;}
.ws5e{word-spacing:0.256000pt;}
.ws62{word-spacing:0.266667pt;}
.ws2d{word-spacing:0.320000pt;}
.ws3d{word-spacing:0.426667pt;}
.ws26{word-spacing:0.533333pt;}
.wsa6{word-spacing:0.597333pt;}
.ws78{word-spacing:0.640000pt;}
.ws16{word-spacing:0.693333pt;}
.ws2b{word-spacing:0.746667pt;}
.ws64{word-spacing:0.800000pt;}
.ws42{word-spacing:0.810667pt;}
.ws54{word-spacing:0.960000pt;}
.ws59{word-spacing:1.066667pt;}
.ws87{word-spacing:1.120000pt;}
.ws30{word-spacing:1.173333pt;}
.ws1d{word-spacing:1.226667pt;}
.ws4d{word-spacing:1.333333pt;}
.ws84{word-spacing:1.386667pt;}
.ws58{word-spacing:1.440000pt;}
.ws21{word-spacing:1.493333pt;}
.ws40{word-spacing:1.546667pt;}
.ws8a{word-spacing:1.653333pt;}
.ws5b{word-spacing:1.706667pt;}
.ws3e{word-spacing:1.760000pt;}
.wsa0{word-spacing:1.792000pt;}
.ws60{word-spacing:1.813333pt;}
.ws41{word-spacing:1.920000pt;}
.wsa4{word-spacing:1.962667pt;}
.ws29{word-spacing:1.973333pt;}
.ws86{word-spacing:2.080000pt;}
.wsa7{word-spacing:2.090667pt;}
.ws6f{word-spacing:2.133333pt;}
.ws2f{word-spacing:2.240000pt;}
.ws5a{word-spacing:2.293333pt;}
.ws5c{word-spacing:2.389333pt;}
.ws4e{word-spacing:2.400000pt;}
.ws28{word-spacing:2.453333pt;}
.ws10{word-spacing:2.506667pt;}
.ws57{word-spacing:2.560000pt;}
.wsae{word-spacing:2.645333pt;}
.ws51{word-spacing:2.720000pt;}
.wsa2{word-spacing:2.730667pt;}
.ws12{word-spacing:2.773333pt;}
.ws49{word-spacing:2.826667pt;}
.ws83{word-spacing:2.880000pt;}
.ws63{word-spacing:3.093333pt;}
.ws33{word-spacing:3.114667pt;}
.ws23{word-spacing:3.200000pt;}
.ws4b{word-spacing:3.253333pt;}
.ws55{word-spacing:3.306667pt;}
.ws8b{word-spacing:3.370667pt;}
.wsa3{word-spacing:3.413333pt;}
.ws24{word-spacing:3.466667pt;}
.ws32{word-spacing:3.498667pt;}
.ws6a{word-spacing:3.520000pt;}
.ws31{word-spacing:3.541333pt;}
.ws1f{word-spacing:3.573333pt;}
.ws3f{word-spacing:3.680000pt;}
.wsac{word-spacing:3.754667pt;}
.ws53{word-spacing:3.786667pt;}
.ws2e{word-spacing:3.840000pt;}
.ws61{word-spacing:3.893333pt;}
.ws4c{word-spacing:4.000000pt;}
.ws20{word-spacing:4.053333pt;}
.ws2a{word-spacing:4.106667pt;}
.ws50{word-spacing:4.160000pt;}
.ws79{word-spacing:4.213333pt;}
.ws27{word-spacing:4.320000pt;}
.wse{word-spacing:4.373333pt;}
.wsd{word-spacing:4.426667pt;}
.ws72{word-spacing:4.533333pt;}
.wsad{word-spacing:4.565333pt;}
.ws74{word-spacing:4.640000pt;}
.ws89{word-spacing:4.853333pt;}
.ws88{word-spacing:4.906667pt;}
.ws15{word-spacing:6.773333pt;}
.ws71{word-spacing:7.146667pt;}
.ws3c{word-spacing:282.389333pt;}
.ws37{word-spacing:310.389333pt;}
.ws3a{word-spacing:314.720000pt;}
.ws39{word-spacing:318.864000pt;}
.ws38{word-spacing:325.061333pt;}
.ws36{word-spacing:415.706667pt;}
.ws3b{word-spacing:434.336000pt;}
._d{margin-left:-2575.538667pt;}
._4c{margin-left:-2555.480000pt;}
._e{margin-left:-2554.376000pt;}
._2{margin-left:-8.327467pt;}
._c{margin-left:-6.773333pt;}
._4b{margin-left:-5.797333pt;}
._1{margin-left:-4.778667pt;}
._4{margin-left:-3.746667pt;}
._0{margin-left:-2.053333pt;}
._6{margin-left:-0.906667pt;}
._5{width:0.908747pt;}
._7{width:1.920000pt;}
._b{width:3.253333pt;}
._f{width:4.586667pt;}
._a{width:6.133333pt;}
._9{width:7.200000pt;}
._8{width:9.066667pt;}
._2d{width:15.344000pt;}
._32{width:16.352000pt;}
._2f{width:22.997333pt;}
._34{width:25.050667pt;}
._47{width:30.874667pt;}
._3e{width:32.106667pt;}
._39{width:33.749333pt;}
._3b{width:41.664000pt;}
._26{width:50.362667pt;}
._3{width:52.918603pt;}
._15{width:54.282667pt;}
._27{width:59.696000pt;}
._23{width:69.029333pt;}
._44{width:70.088000pt;}
._2e{width:76.533333pt;}
._33{width:77.989333pt;}
._46{width:86.800000pt;}
._43{width:88.018667pt;}
._42{width:89.749333pt;}
._3a{width:96.544000pt;}
._35{width:106.362667pt;}
._41{width:107.744000pt;}
._3d{width:109.610667pt;}
._2b{width:115.173333pt;}
._30{width:123.162667pt;}
._2a{width:125.141333pt;}
._14{width:129.821333pt;}
._40{width:133.466667pt;}
._24{width:137.386667pt;}
._22{width:138.656000pt;}
._25{width:142.800000pt;}
._3f{width:144.853333pt;}
._37{width:146.813333pt;}
._1b{width:153.290667pt;}
._31{width:157.285333pt;}
._28{width:163.744000pt;}
._16{width:164.714667pt;}
._48{width:165.984000pt;}
._45{width:177.968000pt;}
._11{width:179.536000pt;}
._38{width:183.493333pt;}
._12{width:186.792000pt;}
._36{width:192.005333pt;}
._13{width:193.013333pt;}
._29{width:194.842667pt;}
._2c{width:201.002667pt;}
._10{width:208.506667pt;}
._1a{width:215.525333pt;}
._18{width:244.010667pt;}
._3c{width:245.018667pt;}
._17{width:253.344000pt;}
._19{width:262.677333pt;}
._21{width:270.517333pt;}
._20{width:272.010667pt;}
._4a{width:275.706667pt;}
._1f{width:281.344000pt;}
._1e{width:294.373333pt;}
._49{width:301.616000pt;}
._1d{width:310.389333pt;}
._1c{width:329.056000pt;}
.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;}
.fsa{font-size:48.000000pt;}
.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;}
.y2c{bottom:42.468667pt;}
.y8d{bottom:73.709333pt;}
.ycc{bottom:73.720267pt;}
.y102{bottom:73.998000pt;}
.y12c{bottom:74.336533pt;}
.y147{bottom:74.342533pt;}
.y62{bottom:74.462533pt;}
.y7f{bottom:74.595867pt;}
.y103{bottom:74.953333pt;}
.yfc{bottom:75.121867pt;}
.y29{bottom:80.260800pt;}
.y163{bottom:81.886133pt;}
.y8c{bottom:87.704000pt;}
.ycb{bottom:87.714933pt;}
.y101{bottom:87.992667pt;}
.y12b{bottom:90.336533pt;}
.y146{bottom:90.342533pt;}
.y61{bottom:90.462533pt;}
.y7e{bottom:90.595867pt;}
.yfb{bottom:91.121867pt;}
.y28{bottom:93.590800pt;}
.y162{bottom:95.219467pt;}
.y12a{bottom:106.336533pt;}
.y145{bottom:106.342533pt;}
.y60{bottom:106.462533pt;}
.y7d{bottom:106.595867pt;}
.y27{bottom:106.920800pt;}
.yfa{bottom:107.121867pt;}
.y161{bottom:108.552800pt;}
.yc3{bottom:114.943600pt;}
.y160{bottom:121.886133pt;}
.y129{bottom:122.336533pt;}
.y144{bottom:122.342533pt;}
.y5f{bottom:122.462533pt;}
.y7c{bottom:122.595867pt;}
.yf9{bottom:123.121867pt;}
.yc2{bottom:129.606267pt;}
.y15f{bottom:135.219467pt;}
.y128{bottom:138.336533pt;}
.y143{bottom:138.342533pt;}
.y5e{bottom:138.462533pt;}
.y7b{bottom:138.595867pt;}
.yf8{bottom:139.121867pt;}
.yc1{bottom:142.719600pt;}
.y15e{bottom:148.552800pt;}
.y127{bottom:154.336533pt;}
.y142{bottom:154.342533pt;}
.y5d{bottom:154.462533pt;}
.y7a{bottom:154.595867pt;}
.yf7{bottom:155.121867pt;}
.yc0{bottom:157.382267pt;}
.y15d{bottom:161.886133pt;}
.y24{bottom:162.525600pt;}
.y126{bottom:170.336533pt;}
.y141{bottom:170.342533pt;}
.y5c{bottom:170.462533pt;}
.ybf{bottom:170.495600pt;}
.y79{bottom:170.595867pt;}
.yf6{bottom:171.121867pt;}
.y15c{bottom:175.219467pt;}
.y23{bottom:178.525600pt;}
.ybe{bottom:185.158267pt;}
.y125{bottom:186.336533pt;}
.y140{bottom:186.342533pt;}
.y5b{bottom:186.462533pt;}
.y78{bottom:186.595867pt;}
.yf5{bottom:187.121867pt;}
.y15b{bottom:188.552800pt;}
.y19a{bottom:191.345333pt;}
.y22{bottom:194.525600pt;}
.ybd{bottom:198.271600pt;}
.y15a{bottom:201.886133pt;}
.y124{bottom:202.336533pt;}
.y13f{bottom:202.342533pt;}
.y5a{bottom:202.462533pt;}
.y77{bottom:202.595867pt;}
.yf4{bottom:203.121867pt;}
.y199{bottom:204.678667pt;}
.y21{bottom:210.525600pt;}
.ybc{bottom:211.384933pt;}
.y159{bottom:215.219467pt;}
.y198{bottom:218.012000pt;}
.y123{bottom:218.336533pt;}
.y13e{bottom:218.342533pt;}
.y59{bottom:218.462533pt;}
.y76{bottom:218.595867pt;}
.yf3{bottom:219.121867pt;}
.ybb{bottom:226.047600pt;}
.y20{bottom:226.525600pt;}
.y158{bottom:228.552800pt;}
.y197{bottom:231.345333pt;}
.y122{bottom:234.336533pt;}
.y13d{bottom:234.342533pt;}
.y58{bottom:234.462533pt;}
.y75{bottom:234.595867pt;}
.yf2{bottom:235.121867pt;}
.y157{bottom:241.886133pt;}
.y1f{bottom:242.525600pt;}
.y196{bottom:244.678667pt;}
.y121{bottom:250.336533pt;}
.y13c{bottom:250.342533pt;}
.y57{bottom:250.462533pt;}
.yba{bottom:250.500933pt;}
.y74{bottom:250.595867pt;}
.yf1{bottom:251.121867pt;}
.y156{bottom:255.219467pt;}
.y195{bottom:258.012000pt;}
.y1e{bottom:258.525600pt;}
.yb9{bottom:263.614267pt;}
.y120{bottom:266.336533pt;}
.y13b{bottom:266.342533pt;}
.y56{bottom:266.462533pt;}
.y73{bottom:266.595867pt;}
.yf0{bottom:267.121867pt;}
.y155{bottom:268.552800pt;}
.y194{bottom:271.345333pt;}
.y1d{bottom:274.525600pt;}
.yb8{bottom:276.727600pt;}
.y154{bottom:281.886133pt;}
.y11f{bottom:282.336533pt;}
.y13a{bottom:282.342533pt;}
.y55{bottom:282.462533pt;}
.y72{bottom:282.595867pt;}
.yef{bottom:283.121867pt;}
.y193{bottom:284.678667pt;}
.yb7{bottom:289.840933pt;}
.y1c{bottom:290.525600pt;}
.y153{bottom:295.219467pt;}
.y192{bottom:298.012000pt;}
.y11e{bottom:298.336533pt;}
.y139{bottom:298.342533pt;}
.y54{bottom:298.462533pt;}
.y71{bottom:298.595867pt;}
.yee{bottom:299.121867pt;}
.yb6{bottom:304.503600pt;}
.y1b{bottom:306.525600pt;}
.y152{bottom:308.552800pt;}
.y100{bottom:308.780267pt;}
.y191{bottom:311.345333pt;}
.y11d{bottom:314.336533pt;}
.y138{bottom:314.342533pt;}
.y53{bottom:314.462533pt;}
.y70{bottom:314.595867pt;}
.yed{bottom:315.121867pt;}
.yb5{bottom:317.616933pt;}
.y151{bottom:321.886133pt;}
.y1a{bottom:322.525600pt;}
.yff{bottom:322.774933pt;}
.y190{bottom:324.678667pt;}
.y11c{bottom:330.336533pt;}
.y137{bottom:330.342533pt;}
.y52{bottom:330.462533pt;}
.y6f{bottom:330.595867pt;}
.yb4{bottom:330.730267pt;}
.yec{bottom:331.121867pt;}
.y150{bottom:335.219467pt;}
.yfe{bottom:336.769600pt;}
.y18f{bottom:338.012000pt;}
.y19{bottom:338.525600pt;}
.yb3{bottom:345.392933pt;}
.y11b{bottom:346.336533pt;}
.y136{bottom:346.342533pt;}
.y51{bottom:346.462533pt;}
.y6e{bottom:346.595867pt;}
.yeb{bottom:347.121867pt;}
.y14f{bottom:348.552800pt;}
.yfd{bottom:350.764267pt;}
.y18e{bottom:351.345333pt;}
.y18{bottom:354.525600pt;}
.y11a{bottom:362.336533pt;}
.y135{bottom:362.342533pt;}
.y50{bottom:362.462533pt;}
.y6d{bottom:362.595867pt;}
.yea{bottom:363.121867pt;}
.y18d{bottom:364.678667pt;}
.yb2{bottom:369.846267pt;}
.y26{bottom:370.525600pt;}
.y14e{bottom:377.982533pt;}
.y18c{bottom:378.012000pt;}
.y119{bottom:378.336533pt;}
.y134{bottom:378.342533pt;}
.y4f{bottom:378.462533pt;}
.y6c{bottom:378.595867pt;}
.ye9{bottom:379.121867pt;}
.yb1{bottom:382.959600pt;}
.y17{bottom:386.167467pt;}
.y25{bottom:386.525600pt;}
.y18b{bottom:391.345333pt;}
.y118{bottom:394.336533pt;}
.y133{bottom:394.342533pt;}
.y4e{bottom:394.462533pt;}
.y6b{bottom:394.595867pt;}
.ye8{bottom:395.121867pt;}
.yb0{bottom:397.622267pt;}
.y18a{bottom:404.678667pt;}
.y117{bottom:410.336533pt;}
.y132{bottom:410.342533pt;}
.y4d{bottom:410.462533pt;}
.y6a{bottom:410.595867pt;}
.yaf{bottom:410.735600pt;}
.ye7{bottom:411.121867pt;}
.y189{bottom:418.012000pt;}
.yae{bottom:423.848933pt;}
.y116{bottom:426.336533pt;}
.y131{bottom:426.342533pt;}
.y4c{bottom:426.462533pt;}
.y69{bottom:426.595867pt;}
.ye6{bottom:427.121867pt;}
.y188{bottom:431.345333pt;}
.yad{bottom:437.006533pt;}
.y14d{bottom:442.102533pt;}
.y115{bottom:442.336533pt;}
.y130{bottom:442.342533pt;}
.y4b{bottom:442.462533pt;}
.y68{bottom:442.595867pt;}
.ye5{bottom:443.121867pt;}
.y187{bottom:444.678667pt;}
.yac{bottom:450.119867pt;}
.y16{bottom:454.323733pt;}
.y186{bottom:458.012000pt;}
.y114{bottom:458.336533pt;}
.y12f{bottom:458.342533pt;}
.y4a{bottom:458.462533pt;}
.y67{bottom:458.595867pt;}
.ye4{bottom:459.121867pt;}
.yab{bottom:464.782533pt;}
.y185{bottom:471.345333pt;}
.y14c{bottom:474.102533pt;}
.y113{bottom:474.336533pt;}
.y12e{bottom:474.342533pt;}
.y49{bottom:474.462533pt;}
.y66{bottom:474.595867pt;}
.ye3{bottom:475.121867pt;}
.y15{bottom:478.630400pt;}
.yaa{bottom:479.445200pt;}
.y184{bottom:484.678667pt;}
.y112{bottom:490.336533pt;}
.y48{bottom:490.462533pt;}
.ye2{bottom:491.121867pt;}
.ya9{bottom:492.558533pt;}
.y14{bottom:494.630400pt;}
.y183{bottom:498.012000pt;}
.yca{bottom:502.690933pt;}
.ya8{bottom:505.671867pt;}
.y12d{bottom:505.982533pt;}
.y65{bottom:506.235867pt;}
.y111{bottom:506.336533pt;}
.y47{bottom:506.462533pt;}
.y13{bottom:510.630400pt;}
.y182{bottom:511.345333pt;}
.yc9{bottom:516.685600pt;}
.ya7{bottom:520.334533pt;}
.y110{bottom:522.336533pt;}
.y46{bottom:522.462533pt;}
.ye1{bottom:522.671333pt;}
.y181{bottom:524.678667pt;}
.y12{bottom:526.630400pt;}
.ya6{bottom:534.997200pt;}
.ye0{bottom:536.004667pt;}
.y180{bottom:538.012000pt;}
.y14b{bottom:538.102533pt;}
.y10f{bottom:538.336533pt;}
.y45{bottom:538.462533pt;}
.y11{bottom:542.630400pt;}
.ya5{bottom:548.110533pt;}
.ydf{bottom:549.338000pt;}
.y17f{bottom:551.345333pt;}
.y10e{bottom:554.336533pt;}
.y44{bottom:554.462533pt;}
.y10{bottom:558.630400pt;}
.yde{bottom:562.671333pt;}
.ya4{bottom:562.773200pt;}
.y17e{bottom:564.678667pt;}
.y10d{bottom:570.336533pt;}
.y43{bottom:570.462533pt;}
.yf{bottom:574.630400pt;}
.ya3{bottom:575.886533pt;}
.ydd{bottom:576.004667pt;}
.y17d{bottom:578.012000pt;}
.y14a{bottom:586.102533pt;}
.y10c{bottom:586.336533pt;}
.y42{bottom:586.462533pt;}
.ydc{bottom:589.338000pt;}
.ya2{bottom:590.549200pt;}
.ye{bottom:590.630400pt;}
.y17c{bottom:591.345333pt;}
.y10b{bottom:602.336533pt;}
.y41{bottom:602.462533pt;}
.ydb{bottom:602.671333pt;}
.ya1{bottom:603.662533pt;}
.y17b{bottom:604.678667pt;}
.yda{bottom:616.004667pt;}
.ya0{bottom:616.775867pt;}
.y17a{bottom:618.012000pt;}
.y10a{bottom:618.336533pt;}
.y40{bottom:618.462533pt;}
.yd9{bottom:629.338000pt;}
.y9f{bottom:629.889200pt;}
.yd{bottom:630.770933pt;}
.y179{bottom:631.345333pt;}
.y109{bottom:634.336533pt;}
.y3f{bottom:634.462533pt;}
.yc{bottom:641.838267pt;}
.yd8{bottom:642.671333pt;}
.y9e{bottom:643.002533pt;}
.y178{bottom:644.678667pt;}
.y108{bottom:650.342533pt;}
.y3e{bottom:650.462533pt;}
.yd7{bottom:656.004667pt;}
.y9d{bottom:657.665200pt;}
.y177{bottom:658.012000pt;}
.y107{bottom:666.342533pt;}
.y3d{bottom:666.462533pt;}
.yd6{bottom:669.338000pt;}
.y9c{bottom:670.778533pt;}
.y176{bottom:671.345333pt;}
.yb{bottom:674.852400pt;}
.ya{bottom:682.029867pt;}
.y149{bottom:682.102533pt;}
.y106{bottom:682.342533pt;}
.y3c{bottom:682.462533pt;}
.yd5{bottom:682.671333pt;}
.y9b{bottom:683.891867pt;}
.y175{bottom:684.678667pt;}
.yd4{bottom:696.004667pt;}
.y9a{bottom:697.005200pt;}
.y174{bottom:698.012000pt;}
.y105{bottom:698.342533pt;}
.y3b{bottom:698.462533pt;}
.y9{bottom:698.852400pt;}
.yd3{bottom:709.338000pt;}
.y173{bottom:711.345333pt;}
.y99{bottom:711.667867pt;}
.y3a{bottom:714.462533pt;}
.y8{bottom:724.382933pt;}
.y172{bottom:724.678667pt;}
.y8b{bottom:729.730667pt;}
.y104{bottom:729.982533pt;}
.y39{bottom:730.462533pt;}
.y98{bottom:736.121200pt;}
.y171{bottom:738.012000pt;}
.yd2{bottom:738.091333pt;}
.y8a{bottom:743.064000pt;}
.y38{bottom:746.462533pt;}
.y97{bottom:750.783867pt;}
.y170{bottom:751.345333pt;}
.yd1{bottom:751.963333pt;}
.y89{bottom:756.397333pt;}
.y37{bottom:762.462533pt;}
.y16f{bottom:764.678667pt;}
.yd0{bottom:764.729200pt;}
.y7{bottom:765.406933pt;}
.y96{bottom:765.446533pt;}
.y88{bottom:769.730667pt;}
.y16e{bottom:778.012000pt;}
.y36{bottom:778.462533pt;}
.y95{bottom:778.559867pt;}
.ycf{bottom:778.595867pt;}
.y87{bottom:783.064000pt;}
.y16d{bottom:791.345333pt;}
.y94{bottom:793.222533pt;}
.yce{bottom:794.235867pt;}
.y35{bottom:794.462533pt;}
.y6{bottom:797.816533pt;}
.y16c{bottom:804.678667pt;}
.y93{bottom:806.335867pt;}
.y64{bottom:810.102533pt;}
.y34{bottom:810.462533pt;}
.y86{bottom:810.702533pt;}
.y16b{bottom:818.012000pt;}
.y92{bottom:820.998533pt;}
.y85{bottom:826.342533pt;}
.y33{bottom:826.462533pt;}
.y5{bottom:830.226133pt;}
.y16a{bottom:831.345333pt;}
.y63{bottom:841.982533pt;}
.y84{bottom:842.342533pt;}
.y32{bottom:842.462533pt;}
.y169{bottom:844.678667pt;}
.y91{bottom:845.451867pt;}
.yc8{bottom:847.795867pt;}
.y90{bottom:852.778533pt;}
.y168{bottom:858.012000pt;}
.y83{bottom:858.342533pt;}
.y31{bottom:858.462533pt;}
.y4{bottom:862.635733pt;}
.yc7{bottom:863.795867pt;}
.y167{bottom:871.345333pt;}
.y30{bottom:874.462533pt;}
.yc6{bottom:879.795867pt;}
.y166{bottom:884.678667pt;}
.y8f{bottom:887.795867pt;}
.y148{bottom:890.102533pt;}
.y82{bottom:890.222533pt;}
.y2f{bottom:890.462533pt;}
.y3{bottom:895.045333pt;}
.y165{bottom:898.012000pt;}
.y8e{bottom:905.129200pt;}
.y2e{bottom:906.462533pt;}
.yc5{bottom:911.345333pt;}
.y81{bottom:922.102533pt;}
.y2d{bottom:922.462533pt;}
.yc4{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y164{bottom:1006.590133pt;}
.y80{bottom:1006.594400pt;}
.ycd{bottom:1006.597067pt;}
.y19b{bottom:1006.598667pt;}
.y2b{bottom:1009.860000pt;}
.y2a{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.238281pt;}
.h2{height:27.179688pt;}
.hc{height:29.121094pt;}
.h7{height:29.160156pt;}
.h10{height:29.625000pt;}
.he{height:31.062500pt;}
.hd{height:31.104167pt;}
.h13{height:32.757812pt;}
.h11{height:37.031250pt;}
.hf{height:37.437500pt;}
.ha{height:38.828125pt;}
.h9{height:38.880208pt;}
.h14{height:42.117188pt;}
.hb{height:46.796875pt;}
.h15{height:48.236875pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h12{height:62.101813pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:54.803200pt;}
.x1e{left:56.684933pt;}
.x1f{left:64.244933pt;}
.xb{left:68.031467pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x4{left:94.488133pt;}
.xc{left:98.258133pt;}
.x23{left:109.606533pt;}
.x3{left:111.501467pt;}
.x6{left:117.165333pt;}
.x2a{left:169.004800pt;}
.x21{left:172.222267pt;}
.x22{left:181.555600pt;}
.x1c{left:185.606267pt;}
.x5{left:189.223467pt;}
.x20{left:192.008933pt;}
.xa{left:404.481333pt;}
.xd{left:406.298133pt;}
.x18{left:425.196800pt;}
.x7{left:427.098667pt;}
.x28{left:428.976533pt;}
.x16{left:430.569200pt;}
.xf{left:436.538133pt;}
.x25{left:440.858133pt;}
.x14{left:444.635867pt;}
.x19{left:447.874133pt;}
.x15{left:456.115867pt;}
.x8{left:457.365333pt;}
.x24{left:459.964800pt;}
.xe{left:466.911467pt;}
.x2b{left:510.964800pt;}
.x27{left:518.097333pt;}
.x26{left:527.284800pt;}
.x13{left:528.515867pt;}
.x29{left:533.929200pt;}
.x12{left:544.809200pt;}
.x17{left:555.435867pt;}
.x11{left:589.770933pt;}
.x2{left:616.324800pt;}
.x2c{left:642.304933pt;}
.x10{left:648.250800pt;}
.x1d{left:661.410267pt;}
.x1a{left:667.148400pt;}
}




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