
    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_a6d53a5b75452a24272e40bd.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_7f9be533d28e91164f160e5c.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_f23348e8eb8fc88d9070b4d3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c5fa1928bf4369019896434a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.730957;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_2ea41de07539f33faf00ee70.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_8ad260a93b83f1ff0aec0c87.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.718750;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_d7218f7e648a56d3bdbd05b8.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_2a2aaf3df8338bfa3f9c52de.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cfc56a2a2a25e494668588ac.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e17687bb215fceb9dc5d7fc6.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1db65cb71074a3b2df69ce82.woff2')format("woff");}.ffb{font-family:ffb;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:-15.442800px;}
.v5{vertical-align:-3.243600px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v3{vertical-align:15.955800px;}
.v1{vertical-align:21.619200px;}
.ls7c{letter-spacing:-2.640000px;}
.ls11{letter-spacing:-0.780000px;}
.ls43{letter-spacing:-0.360000px;}
.ls45{letter-spacing:-0.336000px;}
.ls42{letter-spacing:-0.240000px;}
.ls68{letter-spacing:-0.192000px;}
.ls2f{letter-spacing:-0.120000px;}
.ls69{letter-spacing:-0.096000px;}
.ls12{letter-spacing:-0.060000px;}
.ls6a{letter-spacing:-0.048000px;}
.ls10{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004200px;}
.ls1{letter-spacing:0.005400px;}
.ls0{letter-spacing:0.006000px;}
.ls30{letter-spacing:0.048000px;}
.ls22{letter-spacing:0.060000px;}
.ls19{letter-spacing:0.120000px;}
.ls75{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.180000px;}
.ls56{letter-spacing:0.192000px;}
.ls82{letter-spacing:0.202200px;}
.ls83{letter-spacing:0.202800px;}
.ls29{letter-spacing:0.240000px;}
.ls88{letter-spacing:0.288000px;}
.ls20{letter-spacing:0.300000px;}
.ls2d{letter-spacing:0.330600px;}
.ls63{letter-spacing:0.336000px;}
.ls81{letter-spacing:0.348600px;}
.lsb{letter-spacing:0.360000px;}
.ls5a{letter-spacing:0.384000px;}
.ls15{letter-spacing:0.420000px;}
.ls66{letter-spacing:0.432000px;}
.ls21{letter-spacing:0.480000px;}
.ls2e{letter-spacing:0.528000px;}
.ls4e{letter-spacing:0.540000px;}
.ls77{letter-spacing:0.576000px;}
.ls39{letter-spacing:0.600000px;}
.ls5c{letter-spacing:0.624000px;}
.ls4{letter-spacing:0.660000px;}
.ls6d{letter-spacing:0.672000px;}
.ls80{letter-spacing:0.703800px;}
.ls7f{letter-spacing:0.712800px;}
.ls26{letter-spacing:0.720000px;}
.ls62{letter-spacing:0.768000px;}
.ls2b{letter-spacing:0.780000px;}
.ls71{letter-spacing:0.816000px;}
.ls1f{letter-spacing:0.840000px;}
.ls58{letter-spacing:0.864000px;}
.ls1c{letter-spacing:0.900000px;}
.ls61{letter-spacing:0.912000px;}
.ls5{letter-spacing:0.960000px;}
.ls57{letter-spacing:1.008000px;}
.ls8{letter-spacing:1.020000px;}
.ls87{letter-spacing:1.056000px;}
.ls23{letter-spacing:1.080000px;}
.ls5d{letter-spacing:1.104000px;}
.ls32{letter-spacing:1.140000px;}
.ls5b{letter-spacing:1.152000px;}
.ls7e{letter-spacing:1.185600px;}
.ls38{letter-spacing:1.200000px;}
.ls55{letter-spacing:1.248000px;}
.ls13{letter-spacing:1.260000px;}
.ls41{letter-spacing:1.320000px;}
.ls1e{letter-spacing:1.380000px;}
.ls6b{letter-spacing:1.392000px;}
.ls25{letter-spacing:1.440000px;}
.ls6f{letter-spacing:1.488000px;}
.ls2a{letter-spacing:1.500000px;}
.ls72{letter-spacing:1.536000px;}
.ls17{letter-spacing:1.560000px;}
.ls5e{letter-spacing:1.584000px;}
.ls31{letter-spacing:1.620000px;}
.ls60{letter-spacing:1.632000px;}
.ls24{letter-spacing:1.680000px;}
.ls6c{letter-spacing:1.728000px;}
.lsc{letter-spacing:1.740000px;}
.ls7a{letter-spacing:1.776000px;}
.ls3a{letter-spacing:1.800000px;}
.ls37{letter-spacing:1.860000px;}
.ls74{letter-spacing:1.872000px;}
.ls50{letter-spacing:1.920000px;}
.ls18{letter-spacing:1.980000px;}
.ls3f{letter-spacing:2.040000px;}
.ls5f{letter-spacing:2.064000px;}
.ls1b{letter-spacing:2.100000px;}
.ls76{letter-spacing:2.112000px;}
.lse{letter-spacing:2.160000px;}
.ls7d{letter-spacing:2.190000px;}
.ls84{letter-spacing:2.208000px;}
.lsf{letter-spacing:2.220000px;}
.ls65{letter-spacing:2.256000px;}
.ls44{letter-spacing:2.280000px;}
.ls4a{letter-spacing:2.340000px;}
.ls6e{letter-spacing:2.352000px;}
.ls1d{letter-spacing:2.400000px;}
.lsd{letter-spacing:2.520000px;}
.ls33{letter-spacing:2.580000px;}
.ls3{letter-spacing:2.640000px;}
.ls86{letter-spacing:2.688000px;}
.ls6{letter-spacing:2.700000px;}
.ls8a{letter-spacing:2.736000px;}
.ls40{letter-spacing:2.760000px;}
.ls73{letter-spacing:2.784000px;}
.ls1a{letter-spacing:2.820000px;}
.ls70{letter-spacing:2.832000px;}
.ls3b{letter-spacing:2.880000px;}
.ls4d{letter-spacing:2.940000px;}
.ls49{letter-spacing:3.000000px;}
.ls64{letter-spacing:3.024000px;}
.ls34{letter-spacing:3.060000px;}
.ls78{letter-spacing:3.072000px;}
.ls51{letter-spacing:3.120000px;}
.ls27{letter-spacing:3.180000px;}
.ls89{letter-spacing:3.216000px;}
.ls4f{letter-spacing:3.240000px;}
.lsa{letter-spacing:3.360000px;}
.ls3d{letter-spacing:3.480000px;}
.ls52{letter-spacing:3.540000px;}
.ls79{letter-spacing:3.552000px;}
.ls14{letter-spacing:3.600000px;}
.ls59{letter-spacing:3.648000px;}
.ls53{letter-spacing:3.660000px;}
.ls4b{letter-spacing:3.780000px;}
.ls54{letter-spacing:3.900000px;}
.ls46{letter-spacing:4.020000px;}
.ls67{letter-spacing:4.032000px;}
.ls3e{letter-spacing:4.080000px;}
.ls28{letter-spacing:4.140000px;}
.ls85{letter-spacing:4.224000px;}
.ls35{letter-spacing:4.260000px;}
.ls48{letter-spacing:4.380000px;}
.ls4c{letter-spacing:4.620000px;}
.ls7b{letter-spacing:4.704000px;}
.ls3c{letter-spacing:4.920000px;}
.ls16{letter-spacing:5.220000px;}
.ls47{letter-spacing:5.280000px;}
.ls36{letter-spacing:6.180000px;}
.ls9{letter-spacing:6.300000px;}
.ls2c{letter-spacing:392.774400px;}
.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;}
}
.ws48{word-spacing:-20.220000px;}
.ws1b{word-spacing:-16.500000px;}
.ws31{word-spacing:-16.080000px;}
.ws30{word-spacing:-15.600000px;}
.ws6e{word-spacing:-15.552000px;}
.wsc{word-spacing:-15.000000px;}
.ws88{word-spacing:-14.736000px;}
.ws68{word-spacing:-14.400000px;}
.ws4e{word-spacing:-14.256000px;}
.ws86{word-spacing:-14.208000px;}
.ws69{word-spacing:-14.064000px;}
.ws4b{word-spacing:-13.584000px;}
.ws6c{word-spacing:-13.536000px;}
.ws6b{word-spacing:-13.392000px;}
.wse{word-spacing:-13.344000px;}
.ws85{word-spacing:-13.200000px;}
.ws67{word-spacing:-12.960000px;}
.ws4c{word-spacing:-12.912000px;}
.ws87{word-spacing:-12.384000px;}
.ws4d{word-spacing:-12.336000px;}
.ws6a{word-spacing:-12.240000px;}
.ws49{word-spacing:-12.192000px;}
.ws4a{word-spacing:-12.000000px;}
.ws0{word-spacing:-10.508400px;}
.ws6d{word-spacing:-9.360000px;}
.ws50{word-spacing:-3.660000px;}
.ws89{word-spacing:-3.648000px;}
.ws82{word-spacing:-3.552000px;}
.ws2{word-spacing:-2.886000px;}
.ws90{word-spacing:-2.736000px;}
.ws58{word-spacing:-2.640000px;}
.ws71{word-spacing:-2.400000px;}
.ws63{word-spacing:-2.256000px;}
.ws43{word-spacing:-2.220000px;}
.ws8b{word-spacing:-2.208000px;}
.ws7d{word-spacing:-2.112000px;}
.ws74{word-spacing:-2.064000px;}
.ws7e{word-spacing:-1.872000px;}
.ws37{word-spacing:-1.620000px;}
.ws5b{word-spacing:-1.584000px;}
.ws77{word-spacing:-1.536000px;}
.ws73{word-spacing:-1.488000px;}
.ws78{word-spacing:-1.392000px;}
.ws29{word-spacing:-1.380000px;}
.ws52{word-spacing:-1.200000px;}
.ws75{word-spacing:-1.152000px;}
.ws59{word-spacing:-1.104000px;}
.ws56{word-spacing:-0.960000px;}
.ws5e{word-spacing:-0.912000px;}
.ws66{word-spacing:-0.864000px;}
.ws3e{word-spacing:-0.480000px;}
.ws23{word-spacing:-0.420000px;}
.ws8d{word-spacing:-0.384000px;}
.ws35{word-spacing:-0.360000px;}
.ws62{word-spacing:-0.336000px;}
.ws2a{word-spacing:-0.240000px;}
.ws55{word-spacing:-0.192000px;}
.ws6{word-spacing:-0.180000px;}
.ws81{word-spacing:-0.144000px;}
.ws26{word-spacing:-0.120000px;}
.ws28{word-spacing:-0.060000px;}
.ws1a{word-spacing:-0.048000px;}
.ws1{word-spacing:0.000000px;}
.ws83{word-spacing:0.048000px;}
.ws42{word-spacing:0.060000px;}
.ws36{word-spacing:0.120000px;}
.ws7c{word-spacing:0.144000px;}
.ws1f{word-spacing:0.180000px;}
.ws84{word-spacing:0.192000px;}
.ws7a{word-spacing:0.240000px;}
.ws11{word-spacing:0.300000px;}
.ws18{word-spacing:0.360000px;}
.ws79{word-spacing:0.432000px;}
.wsf{word-spacing:0.480000px;}
.ws5c{word-spacing:0.576000px;}
.ws8{word-spacing:0.600000px;}
.ws2b{word-spacing:0.660000px;}
.ws38{word-spacing:0.672000px;}
.ws40{word-spacing:0.720000px;}
.ws46{word-spacing:0.780000px;}
.ws2f{word-spacing:0.912000px;}
.ws7{word-spacing:0.960000px;}
.ws61{word-spacing:1.008000px;}
.ws91{word-spacing:1.056000px;}
.ws15{word-spacing:1.080000px;}
.ws12{word-spacing:1.140000px;}
.ws7b{word-spacing:1.152000px;}
.ws3f{word-spacing:1.200000px;}
.ws3d{word-spacing:1.260000px;}
.ws76{word-spacing:1.296000px;}
.ws1c{word-spacing:1.380000px;}
.ws6f{word-spacing:1.440000px;}
.ws3c{word-spacing:1.560000px;}
.ws44{word-spacing:1.620000px;}
.ws9{word-spacing:1.680000px;}
.ws16{word-spacing:1.740000px;}
.ws7f{word-spacing:1.776000px;}
.ws1e{word-spacing:1.800000px;}
.ws64{word-spacing:1.824000px;}
.ws65{word-spacing:1.968000px;}
.ws13{word-spacing:1.980000px;}
.ws8f{word-spacing:2.016000px;}
.ws3b{word-spacing:2.040000px;}
.wsa{word-spacing:2.100000px;}
.ws70{word-spacing:2.112000px;}
.ws22{word-spacing:2.160000px;}
.ws72{word-spacing:2.208000px;}
.ws45{word-spacing:2.280000px;}
.ws8a{word-spacing:2.352000px;}
.ws2c{word-spacing:2.520000px;}
.ws27{word-spacing:2.700000px;}
.ws8e{word-spacing:2.736000px;}
.ws2d{word-spacing:2.760000px;}
.ws80{word-spacing:2.832000px;}
.ws10{word-spacing:2.880000px;}
.ws60{word-spacing:2.928000px;}
.ws14{word-spacing:2.940000px;}
.ws32{word-spacing:3.120000px;}
.ws57{word-spacing:3.168000px;}
.ws5a{word-spacing:3.216000px;}
.ws25{word-spacing:3.240000px;}
.ws5d{word-spacing:3.312000px;}
.ws3a{word-spacing:3.420000px;}
.ws5{word-spacing:3.480000px;}
.ws2e{word-spacing:3.552000px;}
.ws5f{word-spacing:3.648000px;}
.ws34{word-spacing:3.720000px;}
.ws39{word-spacing:3.780000px;}
.ws53{word-spacing:3.900000px;}
.ws19{word-spacing:3.936000px;}
.ws24{word-spacing:3.960000px;}
.ws54{word-spacing:3.984000px;}
.ws47{word-spacing:4.080000px;}
.ws20{word-spacing:4.140000px;}
.ws4f{word-spacing:4.200000px;}
.ws41{word-spacing:4.260000px;}
.ws21{word-spacing:4.320000px;}
.ws1d{word-spacing:4.380000px;}
.wsb{word-spacing:4.500000px;}
.ws33{word-spacing:4.620000px;}
.ws17{word-spacing:4.680000px;}
.ws3{word-spacing:4.920000px;}
.ws4{word-spacing:4.980000px;}
.ws51{word-spacing:5.520000px;}
.ws8c{word-spacing:6.192000px;}
.wsd{word-spacing:399.936000px;}
._1b{margin-left:-2898.096000px;}
._1c{margin-left:-2874.288000px;}
._6{margin-left:-7.140000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.570000px;}
._0{margin-left:-2.310000px;}
._2{margin-left:-1.270800px;}
._8{width:1.140000px;}
._7{width:2.400000px;}
._5{width:4.020000px;}
._4{width:5.100000px;}
._1d{width:6.300000px;}
._1e{width:7.500000px;}
._1f{width:9.390000px;}
._b{width:284.016000px;}
._14{width:314.688000px;}
._11{width:345.984000px;}
._d{width:357.984000px;}
._a{width:362.016000px;}
._10{width:365.856000px;}
._13{width:419.280000px;}
._9{width:430.539600px;}
._17{width:435.936000px;}
._1a{width:442.608000px;}
._e{width:450.672000px;}
._18{width:451.920000px;}
._16{width:466.560000px;}
._15{width:685.392000px;}
._c{width:699.456000px;}
._12{width:707.670000px;}
._f{width:792.048000px;}
._19{width:814.800000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:27.000000px;}
.fsa{font-size:28.800000px;}
.fs4{font-size:37.800000px;}
.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;}
.y3b{bottom:47.777250px;}
.y12b{bottom:80.121900px;}
.y16c{bottom:80.263500px;}
.y96{bottom:83.035200px;}
.yd0{bottom:83.236050px;}
.y93{bottom:83.404350px;}
.yf9{bottom:83.635350px;}
.yc1{bottom:83.637750px;}
.y11a{bottom:83.770350px;}
.yba{bottom:83.785350px;}
.yab{bottom:83.920350px;}
.ycc{bottom:84.098100px;}
.y1e{bottom:88.026000px;}
.y12a{bottom:95.121900px;}
.y16b{bottom:95.263500px;}
.y95{bottom:98.779200px;}
.ycf{bottom:98.980050px;}
.yc0{bottom:99.381750px;}
.ycb{bottom:99.842100px;}
.yf8{bottom:101.635350px;}
.y119{bottom:101.770350px;}
.yb9{bottom:101.785350px;}
.yaa{bottom:101.920350px;}
.y1d{bottom:103.023000px;}
.y92{bottom:103.893450px;}
.y129{bottom:110.121900px;}
.y16a{bottom:110.263500px;}
.yce{bottom:114.724050px;}
.ybf{bottom:115.125750px;}
.yf7{bottom:119.635350px;}
.y118{bottom:119.770350px;}
.yb8{bottom:119.785350px;}
.ya9{bottom:119.920350px;}
.y128{bottom:125.121900px;}
.y169{bottom:125.263500px;}
.y91{bottom:125.438400px;}
.ybe{bottom:130.869750px;}
.yf6{bottom:137.635350px;}
.y117{bottom:137.770350px;}
.yb7{bottom:137.785350px;}
.ya8{bottom:137.920350px;}
.y127{bottom:140.121900px;}
.y168{bottom:140.263500px;}
.y90{bottom:141.686400px;}
.ybd{bottom:146.613750px;}
.y126{bottom:155.121900px;}
.y167{bottom:155.263500px;}
.yf5{bottom:155.635350px;}
.y116{bottom:155.770350px;}
.yb6{bottom:155.785350px;}
.ya7{bottom:155.920350px;}
.y8f{bottom:157.934400px;}
.y38{bottom:167.890650px;}
.y2a{bottom:168.025650px;}
.y125{bottom:170.121900px;}
.y166{bottom:170.263500px;}
.yf4{bottom:173.635350px;}
.y115{bottom:173.770350px;}
.yb5{bottom:173.785350px;}
.ya6{bottom:173.920350px;}
.y8e{bottom:174.182400px;}
.y124{bottom:185.121900px;}
.y165{bottom:185.263500px;}
.y37{bottom:185.890650px;}
.y29{bottom:186.025650px;}
.y8d{bottom:190.430400px;}
.yf3{bottom:191.635350px;}
.y114{bottom:191.770350px;}
.yb4{bottom:191.785350px;}
.ya5{bottom:191.920350px;}
.y123{bottom:200.121900px;}
.y164{bottom:200.263500px;}
.y36{bottom:203.890650px;}
.y28{bottom:204.025650px;}
.y8c{bottom:206.678400px;}
.yf2{bottom:209.635350px;}
.y113{bottom:209.770350px;}
.yb3{bottom:209.785350px;}
.ya4{bottom:209.920350px;}
.y122{bottom:215.121900px;}
.y163{bottom:215.263500px;}
.y35{bottom:221.890650px;}
.y27{bottom:222.025650px;}
.y8b{bottom:222.926400px;}
.yf1{bottom:227.635350px;}
.y112{bottom:227.770350px;}
.yb2{bottom:227.785350px;}
.ya3{bottom:227.920350px;}
.y121{bottom:230.121900px;}
.y162{bottom:230.263500px;}
.y8a{bottom:239.174400px;}
.y34{bottom:239.890650px;}
.y26{bottom:240.025650px;}
.y161{bottom:245.263500px;}
.yf0{bottom:245.635350px;}
.y111{bottom:245.770350px;}
.yb1{bottom:245.785350px;}
.ya2{bottom:245.920350px;}
.y33{bottom:257.890650px;}
.y25{bottom:258.025650px;}
.y160{bottom:260.263500px;}
.y120{bottom:263.230350px;}
.yef{bottom:263.635350px;}
.y110{bottom:263.770350px;}
.yb0{bottom:263.785350px;}
.ya1{bottom:263.920350px;}
.y89{bottom:270.686400px;}
.y15f{bottom:275.263500px;}
.y32{bottom:275.890650px;}
.y24{bottom:276.025650px;}
.yee{bottom:281.635350px;}
.y10f{bottom:281.770350px;}
.yaf{bottom:281.785350px;}
.ya0{bottom:281.920350px;}
.y15e{bottom:290.263500px;}
.y31{bottom:293.890650px;}
.y23{bottom:294.025650px;}
.yed{bottom:299.635350px;}
.y10e{bottom:299.770350px;}
.yae{bottom:299.785350px;}
.y9f{bottom:299.920350px;}
.y15d{bottom:305.263500px;}
.y88{bottom:305.590350px;}
.y30{bottom:311.890650px;}
.y22{bottom:312.025650px;}
.yec{bottom:317.635350px;}
.y10d{bottom:317.770350px;}
.yad{bottom:317.785350px;}
.y9e{bottom:317.920350px;}
.y19e{bottom:320.263500px;}
.y15c{bottom:320.265900px;}
.y2f{bottom:329.890650px;}
.y19d{bottom:335.263500px;}
.y15b{bottom:335.265900px;}
.y11f{bottom:335.365350px;}
.yeb{bottom:335.635350px;}
.y10c{bottom:335.770350px;}
.yac{bottom:335.785350px;}
.y9d{bottom:335.920350px;}
.y21{bottom:347.620650px;}
.y2e{bottom:347.890650px;}
.y19c{bottom:350.263500px;}
.y15a{bottom:350.265900px;}
.yea{bottom:353.635350px;}
.y10b{bottom:353.770350px;}
.y87{bottom:353.785350px;}
.y60{bottom:353.920350px;}
.y19b{bottom:365.263500px;}
.y159{bottom:365.265900px;}
.y20{bottom:365.620650px;}
.y2d{bottom:365.890650px;}
.ye9{bottom:371.635350px;}
.y10a{bottom:371.770350px;}
.y86{bottom:371.785350px;}
.y5f{bottom:371.920350px;}
.y19a{bottom:380.263500px;}
.y158{bottom:380.265900px;}
.y2c{bottom:383.890650px;}
.ye8{bottom:389.635350px;}
.y109{bottom:389.770350px;}
.y85{bottom:389.785350px;}
.y5e{bottom:389.920350px;}
.y199{bottom:395.263500px;}
.y157{bottom:395.265900px;}
.y1f{bottom:401.485650px;}
.y2b{bottom:401.890650px;}
.y11e{bottom:407.365350px;}
.ye7{bottom:407.635350px;}
.y108{bottom:407.770350px;}
.y84{bottom:407.785350px;}
.y5d{bottom:407.920350px;}
.y198{bottom:410.263500px;}
.y156{bottom:410.265900px;}
.y197{bottom:425.263500px;}
.y155{bottom:425.265900px;}
.ye6{bottom:425.635350px;}
.y107{bottom:425.770350px;}
.y83{bottom:425.785350px;}
.y5c{bottom:425.920350px;}
.y196{bottom:440.263500px;}
.y154{bottom:440.265900px;}
.ye5{bottom:443.635350px;}
.y106{bottom:443.770350px;}
.y82{bottom:443.785350px;}
.y5b{bottom:443.920350px;}
.yd2{bottom:444.160050px;}
.y195{bottom:455.263500px;}
.y153{bottom:455.265900px;}
.y11d{bottom:461.365350px;}
.ye4{bottom:461.635350px;}
.y105{bottom:461.770350px;}
.y81{bottom:461.785350px;}
.y5a{bottom:461.920350px;}
.y194{bottom:470.263500px;}
.y152{bottom:470.265900px;}
.y1c{bottom:476.464200px;}
.ye3{bottom:479.635350px;}
.y104{bottom:479.770350px;}
.y80{bottom:479.785350px;}
.y59{bottom:479.920350px;}
.y193{bottom:485.263500px;}
.y151{bottom:485.265900px;}
.ye2{bottom:497.635350px;}
.y103{bottom:497.770350px;}
.y7f{bottom:497.785350px;}
.y58{bottom:497.920350px;}
.y192{bottom:500.263500px;}
.y150{bottom:500.265900px;}
.y1b{bottom:503.809200px;}
.y191{bottom:515.263500px;}
.y14f{bottom:515.265900px;}
.ye1{bottom:515.635350px;}
.y102{bottom:515.770350px;}
.y7e{bottom:515.785350px;}
.y57{bottom:515.920350px;}
.y1a{bottom:521.809200px;}
.y190{bottom:530.263500px;}
.y14e{bottom:530.265900px;}
.ye0{bottom:533.635350px;}
.y101{bottom:533.770350px;}
.y7d{bottom:533.785350px;}
.y56{bottom:533.920350px;}
.y19{bottom:539.809200px;}
.y18f{bottom:545.263500px;}
.y14d{bottom:545.265900px;}
.y11c{bottom:551.365350px;}
.ydf{bottom:551.635350px;}
.y100{bottom:551.770350px;}
.y7c{bottom:551.785350px;}
.y55{bottom:551.920350px;}
.y18{bottom:557.809200px;}
.y18e{bottom:560.263500px;}
.y14c{bottom:560.265900px;}
.yde{bottom:569.635350px;}
.yff{bottom:569.770350px;}
.y7b{bottom:569.785350px;}
.y54{bottom:569.920350px;}
.y18d{bottom:575.263500px;}
.y14b{bottom:575.265900px;}
.y17{bottom:575.809200px;}
.ydd{bottom:587.635350px;}
.yfe{bottom:587.770350px;}
.y7a{bottom:587.785350px;}
.y53{bottom:587.920350px;}
.y18c{bottom:590.263500px;}
.y14a{bottom:590.265900px;}
.y16{bottom:593.809200px;}
.y18b{bottom:605.263500px;}
.y149{bottom:605.265900px;}
.ydc{bottom:605.635350px;}
.yfd{bottom:605.770350px;}
.y79{bottom:605.785350px;}
.y52{bottom:605.920350px;}
.y15{bottom:611.809200px;}
.y18a{bottom:620.263500px;}
.y148{bottom:620.265900px;}
.ydb{bottom:623.635350px;}
.yfc{bottom:623.770350px;}
.y78{bottom:623.785350px;}
.y51{bottom:623.920350px;}
.y14{bottom:629.809200px;}
.y189{bottom:635.263500px;}
.y147{bottom:635.265900px;}
.y9c{bottom:641.515350px;}
.yda{bottom:641.635350px;}
.yfb{bottom:641.770350px;}
.y77{bottom:641.785350px;}
.yca{bottom:641.920350px;}
.y13{bottom:647.809200px;}
.y188{bottom:650.263500px;}
.y146{bottom:650.265900px;}
.y50{bottom:659.515350px;}
.yd9{bottom:659.635350px;}
.yfa{bottom:659.770350px;}
.y76{bottom:659.785350px;}
.yc9{bottom:659.920350px;}
.y187{bottom:665.263500px;}
.y145{bottom:665.265900px;}
.y12{bottom:665.809200px;}
.y11b{bottom:677.365350px;}
.y4f{bottom:677.515350px;}
.yd8{bottom:677.635350px;}
.ybc{bottom:677.770350px;}
.y75{bottom:677.785350px;}
.yc8{bottom:677.920350px;}
.y186{bottom:680.263500px;}
.y144{bottom:680.265900px;}
.yd1{bottom:683.116050px;}
.y11{bottom:683.809200px;}
.y185{bottom:695.263500px;}
.y143{bottom:695.265900px;}
.yd7{bottom:695.635350px;}
.y9b{bottom:695.770350px;}
.y74{bottom:695.785350px;}
.yc7{bottom:695.920350px;}
.y10{bottom:701.809200px;}
.y184{bottom:710.263500px;}
.y142{bottom:710.265900px;}
.yd6{bottom:713.635350px;}
.y4e{bottom:713.770350px;}
.y73{bottom:713.785350px;}
.yc6{bottom:713.920350px;}
.yf{bottom:719.809200px;}
.y183{bottom:725.263500px;}
.y141{bottom:725.265900px;}
.yd5{bottom:731.635350px;}
.y4d{bottom:731.770350px;}
.y72{bottom:731.785350px;}
.yc5{bottom:731.920350px;}
.y182{bottom:740.263500px;}
.y140{bottom:740.265900px;}
.y4c{bottom:749.770350px;}
.y71{bottom:749.785350px;}
.yc4{bottom:749.920350px;}
.y181{bottom:755.263500px;}
.y13f{bottom:755.265900px;}
.ye{bottom:764.967000px;}
.yd4{bottom:767.230350px;}
.y4b{bottom:767.770350px;}
.y70{bottom:767.785350px;}
.y180{bottom:770.263500px;}
.y13e{bottom:770.265900px;}
.yd{bottom:777.418500px;}
.y17f{bottom:785.263500px;}
.y13d{bottom:785.265900px;}
.yc3{bottom:785.515350px;}
.y4a{bottom:785.770350px;}
.y6f{bottom:785.785350px;}
.y17e{bottom:800.263500px;}
.y13c{bottom:800.265900px;}
.y49{bottom:803.770350px;}
.y6e{bottom:803.785350px;}
.yc{bottom:812.994300px;}
.y17d{bottom:815.263500px;}
.y13b{bottom:815.265900px;}
.y48{bottom:821.770350px;}
.y6d{bottom:821.785350px;}
.yb{bottom:826.494300px;}
.y17c{bottom:830.263500px;}
.y13a{bottom:830.265900px;}
.y47{bottom:839.770350px;}
.y6c{bottom:839.785350px;}
.ya{bottom:839.994300px;}
.y17b{bottom:845.263500px;}
.y139{bottom:845.265900px;}
.y9{bottom:853.494300px;}
.y46{bottom:857.770350px;}
.y6b{bottom:857.785350px;}
.y17a{bottom:860.263500px;}
.y138{bottom:860.265900px;}
.y8{bottom:866.994300px;}
.y179{bottom:875.263500px;}
.y137{bottom:875.265900px;}
.y45{bottom:875.770350px;}
.y6a{bottom:875.785350px;}
.y7{bottom:876.633600px;}
.y178{bottom:890.263500px;}
.y136{bottom:890.265900px;}
.y44{bottom:893.770350px;}
.y69{bottom:893.785350px;}
.y6{bottom:893.994300px;}
.y177{bottom:905.263500px;}
.y135{bottom:905.265900px;}
.y43{bottom:911.770350px;}
.y68{bottom:911.785350px;}
.y176{bottom:920.263500px;}
.y134{bottom:920.265900px;}
.y5{bottom:924.280950px;}
.y42{bottom:929.770350px;}
.y67{bottom:929.785350px;}
.y175{bottom:935.263500px;}
.y133{bottom:935.265900px;}
.y41{bottom:947.770350px;}
.y66{bottom:947.785350px;}
.y174{bottom:950.263500px;}
.y132{bottom:950.265900px;}
.y173{bottom:965.263500px;}
.y131{bottom:965.265900px;}
.y40{bottom:965.770350px;}
.y65{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.y172{bottom:980.263500px;}
.y130{bottom:980.265900px;}
.y3f{bottom:983.770350px;}
.y64{bottom:983.785350px;}
.y171{bottom:995.263500px;}
.y12f{bottom:995.265900px;}
.y3e{bottom:1001.770350px;}
.y63{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y170{bottom:1010.263500px;}
.y12e{bottom:1010.265900px;}
.y99{bottom:1013.911200px;}
.y3d{bottom:1019.770350px;}
.y62{bottom:1019.785350px;}
.y16f{bottom:1025.263500px;}
.y12d{bottom:1025.265900px;}
.y3c{bottom:1037.770350px;}
.y61{bottom:1037.785350px;}
.y16e{bottom:1040.263500px;}
.y12c{bottom:1040.265900px;}
.y97{bottom:1040.275200px;}
.y2{bottom:1069.300350px;}
.ybb{bottom:1132.418700px;}
.y94{bottom:1132.420350px;}
.y9a{bottom:1132.423200px;}
.y16d{bottom:1132.423500px;}
.ycd{bottom:1132.430100px;}
.y98{bottom:1132.435200px;}
.yc2{bottom:1132.437750px;}
.yd3{bottom:1132.444050px;}
.y3a{bottom:1136.089500px;}
.y39{bottom:1150.492500px;}
.h6{height:19.683105px;}
.h10{height:20.010937px;}
.h8{height:28.393066px;}
.h2{height:30.577148px;}
.ha{height:32.761230px;}
.h7{height:32.805176px;}
.hf{height:33.351562px;}
.hd{height:34.945312px;}
.hc{height:34.992188px;}
.he{height:35.966737px;}
.h11{height:35.967338px;}
.hb{height:41.689453px;}
.h9{height:43.681641px;}
.h5{height:49.138634px;}
.h3{height:56.786133px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.xf{left:78.661350px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x19{left:102.047400px;}
.x4{left:106.299300px;}
.x12{left:109.486950px;}
.xc{left:110.555400px;}
.x1c{left:123.307050px;}
.x3{left:125.433150px;}
.x6{left:131.808900px;}
.x17{left:138.745350px;}
.x16{left:164.759400px;}
.x18{left:194.285400px;}
.x5{left:210.378900px;}
.xa{left:455.041500px;}
.xd{left:457.085400px;}
.x14{left:478.345350px;}
.x8{left:480.468900px;}
.x1a{left:482.603400px;}
.xe{left:491.105400px;}
.x1d{left:503.839050px;}
.x15{left:512.365350px;}
.x7{left:514.488900px;}
.x11{left:663.492300px;}
.x2{left:693.365400px;}
.x1b{left:721.725000px;}
.x10{left:728.390850px;}
.x1e{left:743.870400px;}
.x13{left:749.650950px;}
@media print{
.v2{vertical-align:-13.726933pt;}
.v5{vertical-align:-2.883200pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v3{vertical-align:14.182933pt;}
.v1{vertical-align:19.217067pt;}
.ls7c{letter-spacing:-2.346667pt;}
.ls11{letter-spacing:-0.693333pt;}
.ls43{letter-spacing:-0.320000pt;}
.ls45{letter-spacing:-0.298667pt;}
.ls42{letter-spacing:-0.213333pt;}
.ls68{letter-spacing:-0.170667pt;}
.ls2f{letter-spacing:-0.106667pt;}
.ls69{letter-spacing:-0.085333pt;}
.ls12{letter-spacing:-0.053333pt;}
.ls6a{letter-spacing:-0.042667pt;}
.ls10{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003733pt;}
.ls1{letter-spacing:0.004800pt;}
.ls0{letter-spacing:0.005333pt;}
.ls30{letter-spacing:0.042667pt;}
.ls22{letter-spacing:0.053333pt;}
.ls19{letter-spacing:0.106667pt;}
.ls75{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls56{letter-spacing:0.170667pt;}
.ls82{letter-spacing:0.179733pt;}
.ls83{letter-spacing:0.180267pt;}
.ls29{letter-spacing:0.213333pt;}
.ls88{letter-spacing:0.256000pt;}
.ls20{letter-spacing:0.266667pt;}
.ls2d{letter-spacing:0.293867pt;}
.ls63{letter-spacing:0.298667pt;}
.ls81{letter-spacing:0.309867pt;}
.lsb{letter-spacing:0.320000pt;}
.ls5a{letter-spacing:0.341333pt;}
.ls15{letter-spacing:0.373333pt;}
.ls66{letter-spacing:0.384000pt;}
.ls21{letter-spacing:0.426667pt;}
.ls2e{letter-spacing:0.469333pt;}
.ls4e{letter-spacing:0.480000pt;}
.ls77{letter-spacing:0.512000pt;}
.ls39{letter-spacing:0.533333pt;}
.ls5c{letter-spacing:0.554667pt;}
.ls4{letter-spacing:0.586667pt;}
.ls6d{letter-spacing:0.597333pt;}
.ls80{letter-spacing:0.625600pt;}
.ls7f{letter-spacing:0.633600pt;}
.ls26{letter-spacing:0.640000pt;}
.ls62{letter-spacing:0.682667pt;}
.ls2b{letter-spacing:0.693333pt;}
.ls71{letter-spacing:0.725333pt;}
.ls1f{letter-spacing:0.746667pt;}
.ls58{letter-spacing:0.768000pt;}
.ls1c{letter-spacing:0.800000pt;}
.ls61{letter-spacing:0.810667pt;}
.ls5{letter-spacing:0.853333pt;}
.ls57{letter-spacing:0.896000pt;}
.ls8{letter-spacing:0.906667pt;}
.ls87{letter-spacing:0.938667pt;}
.ls23{letter-spacing:0.960000pt;}
.ls5d{letter-spacing:0.981333pt;}
.ls32{letter-spacing:1.013333pt;}
.ls5b{letter-spacing:1.024000pt;}
.ls7e{letter-spacing:1.053867pt;}
.ls38{letter-spacing:1.066667pt;}
.ls55{letter-spacing:1.109333pt;}
.ls13{letter-spacing:1.120000pt;}
.ls41{letter-spacing:1.173333pt;}
.ls1e{letter-spacing:1.226667pt;}
.ls6b{letter-spacing:1.237333pt;}
.ls25{letter-spacing:1.280000pt;}
.ls6f{letter-spacing:1.322667pt;}
.ls2a{letter-spacing:1.333333pt;}
.ls72{letter-spacing:1.365333pt;}
.ls17{letter-spacing:1.386667pt;}
.ls5e{letter-spacing:1.408000pt;}
.ls31{letter-spacing:1.440000pt;}
.ls60{letter-spacing:1.450667pt;}
.ls24{letter-spacing:1.493333pt;}
.ls6c{letter-spacing:1.536000pt;}
.lsc{letter-spacing:1.546667pt;}
.ls7a{letter-spacing:1.578667pt;}
.ls3a{letter-spacing:1.600000pt;}
.ls37{letter-spacing:1.653333pt;}
.ls74{letter-spacing:1.664000pt;}
.ls50{letter-spacing:1.706667pt;}
.ls18{letter-spacing:1.760000pt;}
.ls3f{letter-spacing:1.813333pt;}
.ls5f{letter-spacing:1.834667pt;}
.ls1b{letter-spacing:1.866667pt;}
.ls76{letter-spacing:1.877333pt;}
.lse{letter-spacing:1.920000pt;}
.ls7d{letter-spacing:1.946667pt;}
.ls84{letter-spacing:1.962667pt;}
.lsf{letter-spacing:1.973333pt;}
.ls65{letter-spacing:2.005333pt;}
.ls44{letter-spacing:2.026667pt;}
.ls4a{letter-spacing:2.080000pt;}
.ls6e{letter-spacing:2.090667pt;}
.ls1d{letter-spacing:2.133333pt;}
.lsd{letter-spacing:2.240000pt;}
.ls33{letter-spacing:2.293333pt;}
.ls3{letter-spacing:2.346667pt;}
.ls86{letter-spacing:2.389333pt;}
.ls6{letter-spacing:2.400000pt;}
.ls8a{letter-spacing:2.432000pt;}
.ls40{letter-spacing:2.453333pt;}
.ls73{letter-spacing:2.474667pt;}
.ls1a{letter-spacing:2.506667pt;}
.ls70{letter-spacing:2.517333pt;}
.ls3b{letter-spacing:2.560000pt;}
.ls4d{letter-spacing:2.613333pt;}
.ls49{letter-spacing:2.666667pt;}
.ls64{letter-spacing:2.688000pt;}
.ls34{letter-spacing:2.720000pt;}
.ls78{letter-spacing:2.730667pt;}
.ls51{letter-spacing:2.773333pt;}
.ls27{letter-spacing:2.826667pt;}
.ls89{letter-spacing:2.858667pt;}
.ls4f{letter-spacing:2.880000pt;}
.lsa{letter-spacing:2.986667pt;}
.ls3d{letter-spacing:3.093333pt;}
.ls52{letter-spacing:3.146667pt;}
.ls79{letter-spacing:3.157333pt;}
.ls14{letter-spacing:3.200000pt;}
.ls59{letter-spacing:3.242667pt;}
.ls53{letter-spacing:3.253333pt;}
.ls4b{letter-spacing:3.360000pt;}
.ls54{letter-spacing:3.466667pt;}
.ls46{letter-spacing:3.573333pt;}
.ls67{letter-spacing:3.584000pt;}
.ls3e{letter-spacing:3.626667pt;}
.ls28{letter-spacing:3.680000pt;}
.ls85{letter-spacing:3.754667pt;}
.ls35{letter-spacing:3.786667pt;}
.ls48{letter-spacing:3.893333pt;}
.ls4c{letter-spacing:4.106667pt;}
.ls7b{letter-spacing:4.181333pt;}
.ls3c{letter-spacing:4.373333pt;}
.ls16{letter-spacing:4.640000pt;}
.ls47{letter-spacing:4.693333pt;}
.ls36{letter-spacing:5.493333pt;}
.ls9{letter-spacing:5.600000pt;}
.ls2c{letter-spacing:349.132800pt;}
.ws48{word-spacing:-17.973333pt;}
.ws1b{word-spacing:-14.666667pt;}
.ws31{word-spacing:-14.293333pt;}
.ws30{word-spacing:-13.866667pt;}
.ws6e{word-spacing:-13.824000pt;}
.wsc{word-spacing:-13.333333pt;}
.ws88{word-spacing:-13.098667pt;}
.ws68{word-spacing:-12.800000pt;}
.ws4e{word-spacing:-12.672000pt;}
.ws86{word-spacing:-12.629333pt;}
.ws69{word-spacing:-12.501333pt;}
.ws4b{word-spacing:-12.074667pt;}
.ws6c{word-spacing:-12.032000pt;}
.ws6b{word-spacing:-11.904000pt;}
.wse{word-spacing:-11.861333pt;}
.ws85{word-spacing:-11.733333pt;}
.ws67{word-spacing:-11.520000pt;}
.ws4c{word-spacing:-11.477333pt;}
.ws87{word-spacing:-11.008000pt;}
.ws4d{word-spacing:-10.965333pt;}
.ws6a{word-spacing:-10.880000pt;}
.ws49{word-spacing:-10.837333pt;}
.ws4a{word-spacing:-10.666667pt;}
.ws0{word-spacing:-9.340800pt;}
.ws6d{word-spacing:-8.320000pt;}
.ws50{word-spacing:-3.253333pt;}
.ws89{word-spacing:-3.242667pt;}
.ws82{word-spacing:-3.157333pt;}
.ws2{word-spacing:-2.565333pt;}
.ws90{word-spacing:-2.432000pt;}
.ws58{word-spacing:-2.346667pt;}
.ws71{word-spacing:-2.133333pt;}
.ws63{word-spacing:-2.005333pt;}
.ws43{word-spacing:-1.973333pt;}
.ws8b{word-spacing:-1.962667pt;}
.ws7d{word-spacing:-1.877333pt;}
.ws74{word-spacing:-1.834667pt;}
.ws7e{word-spacing:-1.664000pt;}
.ws37{word-spacing:-1.440000pt;}
.ws5b{word-spacing:-1.408000pt;}
.ws77{word-spacing:-1.365333pt;}
.ws73{word-spacing:-1.322667pt;}
.ws78{word-spacing:-1.237333pt;}
.ws29{word-spacing:-1.226667pt;}
.ws52{word-spacing:-1.066667pt;}
.ws75{word-spacing:-1.024000pt;}
.ws59{word-spacing:-0.981333pt;}
.ws56{word-spacing:-0.853333pt;}
.ws5e{word-spacing:-0.810667pt;}
.ws66{word-spacing:-0.768000pt;}
.ws3e{word-spacing:-0.426667pt;}
.ws23{word-spacing:-0.373333pt;}
.ws8d{word-spacing:-0.341333pt;}
.ws35{word-spacing:-0.320000pt;}
.ws62{word-spacing:-0.298667pt;}
.ws2a{word-spacing:-0.213333pt;}
.ws55{word-spacing:-0.170667pt;}
.ws6{word-spacing:-0.160000pt;}
.ws81{word-spacing:-0.128000pt;}
.ws26{word-spacing:-0.106667pt;}
.ws28{word-spacing:-0.053333pt;}
.ws1a{word-spacing:-0.042667pt;}
.ws1{word-spacing:0.000000pt;}
.ws83{word-spacing:0.042667pt;}
.ws42{word-spacing:0.053333pt;}
.ws36{word-spacing:0.106667pt;}
.ws7c{word-spacing:0.128000pt;}
.ws1f{word-spacing:0.160000pt;}
.ws84{word-spacing:0.170667pt;}
.ws7a{word-spacing:0.213333pt;}
.ws11{word-spacing:0.266667pt;}
.ws18{word-spacing:0.320000pt;}
.ws79{word-spacing:0.384000pt;}
.wsf{word-spacing:0.426667pt;}
.ws5c{word-spacing:0.512000pt;}
.ws8{word-spacing:0.533333pt;}
.ws2b{word-spacing:0.586667pt;}
.ws38{word-spacing:0.597333pt;}
.ws40{word-spacing:0.640000pt;}
.ws46{word-spacing:0.693333pt;}
.ws2f{word-spacing:0.810667pt;}
.ws7{word-spacing:0.853333pt;}
.ws61{word-spacing:0.896000pt;}
.ws91{word-spacing:0.938667pt;}
.ws15{word-spacing:0.960000pt;}
.ws12{word-spacing:1.013333pt;}
.ws7b{word-spacing:1.024000pt;}
.ws3f{word-spacing:1.066667pt;}
.ws3d{word-spacing:1.120000pt;}
.ws76{word-spacing:1.152000pt;}
.ws1c{word-spacing:1.226667pt;}
.ws6f{word-spacing:1.280000pt;}
.ws3c{word-spacing:1.386667pt;}
.ws44{word-spacing:1.440000pt;}
.ws9{word-spacing:1.493333pt;}
.ws16{word-spacing:1.546667pt;}
.ws7f{word-spacing:1.578667pt;}
.ws1e{word-spacing:1.600000pt;}
.ws64{word-spacing:1.621333pt;}
.ws65{word-spacing:1.749333pt;}
.ws13{word-spacing:1.760000pt;}
.ws8f{word-spacing:1.792000pt;}
.ws3b{word-spacing:1.813333pt;}
.wsa{word-spacing:1.866667pt;}
.ws70{word-spacing:1.877333pt;}
.ws22{word-spacing:1.920000pt;}
.ws72{word-spacing:1.962667pt;}
.ws45{word-spacing:2.026667pt;}
.ws8a{word-spacing:2.090667pt;}
.ws2c{word-spacing:2.240000pt;}
.ws27{word-spacing:2.400000pt;}
.ws8e{word-spacing:2.432000pt;}
.ws2d{word-spacing:2.453333pt;}
.ws80{word-spacing:2.517333pt;}
.ws10{word-spacing:2.560000pt;}
.ws60{word-spacing:2.602667pt;}
.ws14{word-spacing:2.613333pt;}
.ws32{word-spacing:2.773333pt;}
.ws57{word-spacing:2.816000pt;}
.ws5a{word-spacing:2.858667pt;}
.ws25{word-spacing:2.880000pt;}
.ws5d{word-spacing:2.944000pt;}
.ws3a{word-spacing:3.040000pt;}
.ws5{word-spacing:3.093333pt;}
.ws2e{word-spacing:3.157333pt;}
.ws5f{word-spacing:3.242667pt;}
.ws34{word-spacing:3.306667pt;}
.ws39{word-spacing:3.360000pt;}
.ws53{word-spacing:3.466667pt;}
.ws19{word-spacing:3.498667pt;}
.ws24{word-spacing:3.520000pt;}
.ws54{word-spacing:3.541333pt;}
.ws47{word-spacing:3.626667pt;}
.ws20{word-spacing:3.680000pt;}
.ws4f{word-spacing:3.733333pt;}
.ws41{word-spacing:3.786667pt;}
.ws21{word-spacing:3.840000pt;}
.ws1d{word-spacing:3.893333pt;}
.wsb{word-spacing:4.000000pt;}
.ws33{word-spacing:4.106667pt;}
.ws17{word-spacing:4.160000pt;}
.ws3{word-spacing:4.373333pt;}
.ws4{word-spacing:4.426667pt;}
.ws51{word-spacing:4.906667pt;}
.ws8c{word-spacing:5.504000pt;}
.wsd{word-spacing:355.498667pt;}
._1b{margin-left:-2576.085333pt;}
._1c{margin-left:-2554.922667pt;}
._6{margin-left:-6.346667pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.173333pt;}
._0{margin-left:-2.053333pt;}
._2{margin-left:-1.129600pt;}
._8{width:1.013333pt;}
._7{width:2.133333pt;}
._5{width:3.573333pt;}
._4{width:4.533333pt;}
._1d{width:5.600000pt;}
._1e{width:6.666667pt;}
._1f{width:8.346667pt;}
._b{width:252.458667pt;}
._14{width:279.722667pt;}
._11{width:307.541333pt;}
._d{width:318.208000pt;}
._a{width:321.792000pt;}
._10{width:325.205333pt;}
._13{width:372.693333pt;}
._9{width:382.701867pt;}
._17{width:387.498667pt;}
._1a{width:393.429333pt;}
._e{width:400.597333pt;}
._18{width:401.706667pt;}
._16{width:414.720000pt;}
._15{width:609.237333pt;}
._c{width:621.738667pt;}
._12{width:629.040000pt;}
._f{width:704.042667pt;}
._19{width:724.266667pt;}
.fs5{font-size:24.000000pt;}
.fsa{font-size:25.600000pt;}
.fs4{font-size:33.600000pt;}
.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;}
.y3b{bottom:42.468667pt;}
.y12b{bottom:71.219467pt;}
.y16c{bottom:71.345333pt;}
.y96{bottom:73.809067pt;}
.yd0{bottom:73.987600pt;}
.y93{bottom:74.137200pt;}
.yf9{bottom:74.342533pt;}
.yc1{bottom:74.344667pt;}
.y11a{bottom:74.462533pt;}
.yba{bottom:74.475867pt;}
.yab{bottom:74.595867pt;}
.ycc{bottom:74.753867pt;}
.y1e{bottom:78.245333pt;}
.y12a{bottom:84.552800pt;}
.y16b{bottom:84.678667pt;}
.y95{bottom:87.803733pt;}
.ycf{bottom:87.982267pt;}
.yc0{bottom:88.339333pt;}
.ycb{bottom:88.748533pt;}
.yf8{bottom:90.342533pt;}
.y119{bottom:90.462533pt;}
.yb9{bottom:90.475867pt;}
.yaa{bottom:90.595867pt;}
.y1d{bottom:91.576000pt;}
.y92{bottom:92.349733pt;}
.y129{bottom:97.886133pt;}
.y16a{bottom:98.012000pt;}
.yce{bottom:101.976933pt;}
.ybf{bottom:102.334000pt;}
.yf7{bottom:106.342533pt;}
.y118{bottom:106.462533pt;}
.yb8{bottom:106.475867pt;}
.ya9{bottom:106.595867pt;}
.y128{bottom:111.219467pt;}
.y169{bottom:111.345333pt;}
.y91{bottom:111.500800pt;}
.ybe{bottom:116.328667pt;}
.yf6{bottom:122.342533pt;}
.y117{bottom:122.462533pt;}
.yb7{bottom:122.475867pt;}
.ya8{bottom:122.595867pt;}
.y127{bottom:124.552800pt;}
.y168{bottom:124.678667pt;}
.y90{bottom:125.943467pt;}
.ybd{bottom:130.323333pt;}
.y126{bottom:137.886133pt;}
.y167{bottom:138.012000pt;}
.yf5{bottom:138.342533pt;}
.y116{bottom:138.462533pt;}
.yb6{bottom:138.475867pt;}
.ya7{bottom:138.595867pt;}
.y8f{bottom:140.386133pt;}
.y38{bottom:149.236133pt;}
.y2a{bottom:149.356133pt;}
.y125{bottom:151.219467pt;}
.y166{bottom:151.345333pt;}
.yf4{bottom:154.342533pt;}
.y115{bottom:154.462533pt;}
.yb5{bottom:154.475867pt;}
.ya6{bottom:154.595867pt;}
.y8e{bottom:154.828800pt;}
.y124{bottom:164.552800pt;}
.y165{bottom:164.678667pt;}
.y37{bottom:165.236133pt;}
.y29{bottom:165.356133pt;}
.y8d{bottom:169.271467pt;}
.yf3{bottom:170.342533pt;}
.y114{bottom:170.462533pt;}
.yb4{bottom:170.475867pt;}
.ya5{bottom:170.595867pt;}
.y123{bottom:177.886133pt;}
.y164{bottom:178.012000pt;}
.y36{bottom:181.236133pt;}
.y28{bottom:181.356133pt;}
.y8c{bottom:183.714133pt;}
.yf2{bottom:186.342533pt;}
.y113{bottom:186.462533pt;}
.yb3{bottom:186.475867pt;}
.ya4{bottom:186.595867pt;}
.y122{bottom:191.219467pt;}
.y163{bottom:191.345333pt;}
.y35{bottom:197.236133pt;}
.y27{bottom:197.356133pt;}
.y8b{bottom:198.156800pt;}
.yf1{bottom:202.342533pt;}
.y112{bottom:202.462533pt;}
.yb2{bottom:202.475867pt;}
.ya3{bottom:202.595867pt;}
.y121{bottom:204.552800pt;}
.y162{bottom:204.678667pt;}
.y8a{bottom:212.599467pt;}
.y34{bottom:213.236133pt;}
.y26{bottom:213.356133pt;}
.y161{bottom:218.012000pt;}
.yf0{bottom:218.342533pt;}
.y111{bottom:218.462533pt;}
.yb1{bottom:218.475867pt;}
.ya2{bottom:218.595867pt;}
.y33{bottom:229.236133pt;}
.y25{bottom:229.356133pt;}
.y160{bottom:231.345333pt;}
.y120{bottom:233.982533pt;}
.yef{bottom:234.342533pt;}
.y110{bottom:234.462533pt;}
.yb0{bottom:234.475867pt;}
.ya1{bottom:234.595867pt;}
.y89{bottom:240.610133pt;}
.y15f{bottom:244.678667pt;}
.y32{bottom:245.236133pt;}
.y24{bottom:245.356133pt;}
.yee{bottom:250.342533pt;}
.y10f{bottom:250.462533pt;}
.yaf{bottom:250.475867pt;}
.ya0{bottom:250.595867pt;}
.y15e{bottom:258.012000pt;}
.y31{bottom:261.236133pt;}
.y23{bottom:261.356133pt;}
.yed{bottom:266.342533pt;}
.y10e{bottom:266.462533pt;}
.yae{bottom:266.475867pt;}
.y9f{bottom:266.595867pt;}
.y15d{bottom:271.345333pt;}
.y88{bottom:271.635867pt;}
.y30{bottom:277.236133pt;}
.y22{bottom:277.356133pt;}
.yec{bottom:282.342533pt;}
.y10d{bottom:282.462533pt;}
.yad{bottom:282.475867pt;}
.y9e{bottom:282.595867pt;}
.y19e{bottom:284.678667pt;}
.y15c{bottom:284.680800pt;}
.y2f{bottom:293.236133pt;}
.y19d{bottom:298.012000pt;}
.y15b{bottom:298.014133pt;}
.y11f{bottom:298.102533pt;}
.yeb{bottom:298.342533pt;}
.y10c{bottom:298.462533pt;}
.yac{bottom:298.475867pt;}
.y9d{bottom:298.595867pt;}
.y21{bottom:308.996133pt;}
.y2e{bottom:309.236133pt;}
.y19c{bottom:311.345333pt;}
.y15a{bottom:311.347467pt;}
.yea{bottom:314.342533pt;}
.y10b{bottom:314.462533pt;}
.y87{bottom:314.475867pt;}
.y60{bottom:314.595867pt;}
.y19b{bottom:324.678667pt;}
.y159{bottom:324.680800pt;}
.y20{bottom:324.996133pt;}
.y2d{bottom:325.236133pt;}
.ye9{bottom:330.342533pt;}
.y10a{bottom:330.462533pt;}
.y86{bottom:330.475867pt;}
.y5f{bottom:330.595867pt;}
.y19a{bottom:338.012000pt;}
.y158{bottom:338.014133pt;}
.y2c{bottom:341.236133pt;}
.ye8{bottom:346.342533pt;}
.y109{bottom:346.462533pt;}
.y85{bottom:346.475867pt;}
.y5e{bottom:346.595867pt;}
.y199{bottom:351.345333pt;}
.y157{bottom:351.347467pt;}
.y1f{bottom:356.876133pt;}
.y2b{bottom:357.236133pt;}
.y11e{bottom:362.102533pt;}
.ye7{bottom:362.342533pt;}
.y108{bottom:362.462533pt;}
.y84{bottom:362.475867pt;}
.y5d{bottom:362.595867pt;}
.y198{bottom:364.678667pt;}
.y156{bottom:364.680800pt;}
.y197{bottom:378.012000pt;}
.y155{bottom:378.014133pt;}
.ye6{bottom:378.342533pt;}
.y107{bottom:378.462533pt;}
.y83{bottom:378.475867pt;}
.y5c{bottom:378.595867pt;}
.y196{bottom:391.345333pt;}
.y154{bottom:391.347467pt;}
.ye5{bottom:394.342533pt;}
.y106{bottom:394.462533pt;}
.y82{bottom:394.475867pt;}
.y5b{bottom:394.595867pt;}
.yd2{bottom:394.808933pt;}
.y195{bottom:404.678667pt;}
.y153{bottom:404.680800pt;}
.y11d{bottom:410.102533pt;}
.ye4{bottom:410.342533pt;}
.y105{bottom:410.462533pt;}
.y81{bottom:410.475867pt;}
.y5a{bottom:410.595867pt;}
.y194{bottom:418.012000pt;}
.y152{bottom:418.014133pt;}
.y1c{bottom:423.523733pt;}
.ye3{bottom:426.342533pt;}
.y104{bottom:426.462533pt;}
.y80{bottom:426.475867pt;}
.y59{bottom:426.595867pt;}
.y193{bottom:431.345333pt;}
.y151{bottom:431.347467pt;}
.ye2{bottom:442.342533pt;}
.y103{bottom:442.462533pt;}
.y7f{bottom:442.475867pt;}
.y58{bottom:442.595867pt;}
.y192{bottom:444.678667pt;}
.y150{bottom:444.680800pt;}
.y1b{bottom:447.830400pt;}
.y191{bottom:458.012000pt;}
.y14f{bottom:458.014133pt;}
.ye1{bottom:458.342533pt;}
.y102{bottom:458.462533pt;}
.y7e{bottom:458.475867pt;}
.y57{bottom:458.595867pt;}
.y1a{bottom:463.830400pt;}
.y190{bottom:471.345333pt;}
.y14e{bottom:471.347467pt;}
.ye0{bottom:474.342533pt;}
.y101{bottom:474.462533pt;}
.y7d{bottom:474.475867pt;}
.y56{bottom:474.595867pt;}
.y19{bottom:479.830400pt;}
.y18f{bottom:484.678667pt;}
.y14d{bottom:484.680800pt;}
.y11c{bottom:490.102533pt;}
.ydf{bottom:490.342533pt;}
.y100{bottom:490.462533pt;}
.y7c{bottom:490.475867pt;}
.y55{bottom:490.595867pt;}
.y18{bottom:495.830400pt;}
.y18e{bottom:498.012000pt;}
.y14c{bottom:498.014133pt;}
.yde{bottom:506.342533pt;}
.yff{bottom:506.462533pt;}
.y7b{bottom:506.475867pt;}
.y54{bottom:506.595867pt;}
.y18d{bottom:511.345333pt;}
.y14b{bottom:511.347467pt;}
.y17{bottom:511.830400pt;}
.ydd{bottom:522.342533pt;}
.yfe{bottom:522.462533pt;}
.y7a{bottom:522.475867pt;}
.y53{bottom:522.595867pt;}
.y18c{bottom:524.678667pt;}
.y14a{bottom:524.680800pt;}
.y16{bottom:527.830400pt;}
.y18b{bottom:538.012000pt;}
.y149{bottom:538.014133pt;}
.ydc{bottom:538.342533pt;}
.yfd{bottom:538.462533pt;}
.y79{bottom:538.475867pt;}
.y52{bottom:538.595867pt;}
.y15{bottom:543.830400pt;}
.y18a{bottom:551.345333pt;}
.y148{bottom:551.347467pt;}
.ydb{bottom:554.342533pt;}
.yfc{bottom:554.462533pt;}
.y78{bottom:554.475867pt;}
.y51{bottom:554.595867pt;}
.y14{bottom:559.830400pt;}
.y189{bottom:564.678667pt;}
.y147{bottom:564.680800pt;}
.y9c{bottom:570.235867pt;}
.yda{bottom:570.342533pt;}
.yfb{bottom:570.462533pt;}
.y77{bottom:570.475867pt;}
.yca{bottom:570.595867pt;}
.y13{bottom:575.830400pt;}
.y188{bottom:578.012000pt;}
.y146{bottom:578.014133pt;}
.y50{bottom:586.235867pt;}
.yd9{bottom:586.342533pt;}
.yfa{bottom:586.462533pt;}
.y76{bottom:586.475867pt;}
.yc9{bottom:586.595867pt;}
.y187{bottom:591.345333pt;}
.y145{bottom:591.347467pt;}
.y12{bottom:591.830400pt;}
.y11b{bottom:602.102533pt;}
.y4f{bottom:602.235867pt;}
.yd8{bottom:602.342533pt;}
.ybc{bottom:602.462533pt;}
.y75{bottom:602.475867pt;}
.yc8{bottom:602.595867pt;}
.y186{bottom:604.678667pt;}
.y144{bottom:604.680800pt;}
.yd1{bottom:607.214267pt;}
.y11{bottom:607.830400pt;}
.y185{bottom:618.012000pt;}
.y143{bottom:618.014133pt;}
.yd7{bottom:618.342533pt;}
.y9b{bottom:618.462533pt;}
.y74{bottom:618.475867pt;}
.yc7{bottom:618.595867pt;}
.y10{bottom:623.830400pt;}
.y184{bottom:631.345333pt;}
.y142{bottom:631.347467pt;}
.yd6{bottom:634.342533pt;}
.y4e{bottom:634.462533pt;}
.y73{bottom:634.475867pt;}
.yc6{bottom:634.595867pt;}
.yf{bottom:639.830400pt;}
.y183{bottom:644.678667pt;}
.y141{bottom:644.680800pt;}
.yd5{bottom:650.342533pt;}
.y4d{bottom:650.462533pt;}
.y72{bottom:650.475867pt;}
.yc5{bottom:650.595867pt;}
.y182{bottom:658.012000pt;}
.y140{bottom:658.014133pt;}
.y4c{bottom:666.462533pt;}
.y71{bottom:666.475867pt;}
.yc4{bottom:666.595867pt;}
.y181{bottom:671.345333pt;}
.y13f{bottom:671.347467pt;}
.ye{bottom:679.970667pt;}
.yd4{bottom:681.982533pt;}
.y4b{bottom:682.462533pt;}
.y70{bottom:682.475867pt;}
.y180{bottom:684.678667pt;}
.y13e{bottom:684.680800pt;}
.yd{bottom:691.038667pt;}
.y17f{bottom:698.012000pt;}
.y13d{bottom:698.014133pt;}
.yc3{bottom:698.235867pt;}
.y4a{bottom:698.462533pt;}
.y6f{bottom:698.475867pt;}
.y17e{bottom:711.345333pt;}
.y13c{bottom:711.347467pt;}
.y49{bottom:714.462533pt;}
.y6e{bottom:714.475867pt;}
.yc{bottom:722.661600pt;}
.y17d{bottom:724.678667pt;}
.y13b{bottom:724.680800pt;}
.y48{bottom:730.462533pt;}
.y6d{bottom:730.475867pt;}
.yb{bottom:734.661600pt;}
.y17c{bottom:738.012000pt;}
.y13a{bottom:738.014133pt;}
.y47{bottom:746.462533pt;}
.y6c{bottom:746.475867pt;}
.ya{bottom:746.661600pt;}
.y17b{bottom:751.345333pt;}
.y139{bottom:751.347467pt;}
.y9{bottom:758.661600pt;}
.y46{bottom:762.462533pt;}
.y6b{bottom:762.475867pt;}
.y17a{bottom:764.678667pt;}
.y138{bottom:764.680800pt;}
.y8{bottom:770.661600pt;}
.y179{bottom:778.012000pt;}
.y137{bottom:778.014133pt;}
.y45{bottom:778.462533pt;}
.y6a{bottom:778.475867pt;}
.y7{bottom:779.229867pt;}
.y178{bottom:791.345333pt;}
.y136{bottom:791.347467pt;}
.y44{bottom:794.462533pt;}
.y69{bottom:794.475867pt;}
.y6{bottom:794.661600pt;}
.y177{bottom:804.678667pt;}
.y135{bottom:804.680800pt;}
.y43{bottom:810.462533pt;}
.y68{bottom:810.475867pt;}
.y176{bottom:818.012000pt;}
.y134{bottom:818.014133pt;}
.y5{bottom:821.583067pt;}
.y42{bottom:826.462533pt;}
.y67{bottom:826.475867pt;}
.y175{bottom:831.345333pt;}
.y133{bottom:831.347467pt;}
.y41{bottom:842.462533pt;}
.y66{bottom:842.475867pt;}
.y174{bottom:844.678667pt;}
.y132{bottom:844.680800pt;}
.y173{bottom:858.012000pt;}
.y131{bottom:858.014133pt;}
.y40{bottom:858.462533pt;}
.y65{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.y172{bottom:871.345333pt;}
.y130{bottom:871.347467pt;}
.y3f{bottom:874.462533pt;}
.y64{bottom:874.475867pt;}
.y171{bottom:884.678667pt;}
.y12f{bottom:884.680800pt;}
.y3e{bottom:890.462533pt;}
.y63{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y170{bottom:898.012000pt;}
.y12e{bottom:898.014133pt;}
.y99{bottom:901.254400pt;}
.y3d{bottom:906.462533pt;}
.y62{bottom:906.475867pt;}
.y16f{bottom:911.345333pt;}
.y12d{bottom:911.347467pt;}
.y3c{bottom:922.462533pt;}
.y61{bottom:922.475867pt;}
.y16e{bottom:924.678667pt;}
.y12c{bottom:924.680800pt;}
.y97{bottom:924.689067pt;}
.y2{bottom:950.489200pt;}
.ybb{bottom:1006.594400pt;}
.y94{bottom:1006.595867pt;}
.y9a{bottom:1006.598400pt;}
.y16d{bottom:1006.598667pt;}
.ycd{bottom:1006.604533pt;}
.y98{bottom:1006.609067pt;}
.yc2{bottom:1006.611333pt;}
.yd3{bottom:1006.616933pt;}
.y3a{bottom:1009.857333pt;}
.y39{bottom:1022.660000pt;}
.h6{height:17.496094pt;}
.h10{height:17.787500pt;}
.h8{height:25.238281pt;}
.h2{height:27.179688pt;}
.ha{height:29.121094pt;}
.h7{height:29.160156pt;}
.hf{height:29.645833pt;}
.hd{height:31.062500pt;}
.hc{height:31.104167pt;}
.he{height:31.970433pt;}
.h11{height:31.970967pt;}
.hb{height:37.057292pt;}
.h9{height:38.828125pt;}
.h5{height:43.678785pt;}
.h3{height:50.476562pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:68.031467pt;}
.xf{left:69.921200pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x19{left:90.708800pt;}
.x4{left:94.488267pt;}
.x12{left:97.321733pt;}
.xc{left:98.271467pt;}
.x1c{left:109.606267pt;}
.x3{left:111.496133pt;}
.x6{left:117.163467pt;}
.x17{left:123.329200pt;}
.x16{left:146.452800pt;}
.x18{left:172.698133pt;}
.x5{left:187.003467pt;}
.xa{left:404.481333pt;}
.xd{left:406.298133pt;}
.x14{left:425.195867pt;}
.x8{left:427.083467pt;}
.x1a{left:428.980800pt;}
.xe{left:436.538133pt;}
.x1d{left:447.856933pt;}
.x15{left:455.435867pt;}
.x7{left:457.323467pt;}
.x11{left:589.770933pt;}
.x2{left:616.324800pt;}
.x1b{left:641.533333pt;}
.x10{left:647.458533pt;}
.x1e{left:661.218133pt;}
.x13{left:666.356400pt;}
}




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