
    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_e54c3ac964cf3156a423f199.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_0db6f9b0386be4751a6952f1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_a1733f2d053f91675412cf75.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_0db6f9b0386be4751a6952f1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_3993b581000e28bf06f7d92c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_7ec1fabb6b1953c1ba6587db.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.171387;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_0c265b316d4090e84befdf30.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.024902;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_acd0e9d771ec3a6aa1400f11.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.678711;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_0c10ae233d85c3653173f4ba.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.171387;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_1f9cefee20898966f6f3fccf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.750000;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_af8206f7de607c3de813b7b3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d62403b334fff11f091693aa.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5703ec96ead23c1bcd158bca.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ce3fd34f73eaf08f2a311d51.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_1138b14532f32128b3cbacc4.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_4175a51730b12d14897a98b5.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_683831e4880f9703823ecbe9.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.071777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_fc0932ec48ceee8543fad63a.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_bffe3cfe1027b33435415600.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_b7f15b38489395707320c351.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.919922;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.000000px;}
.v1{vertical-align:15.985800px;}
.ls1e{letter-spacing:-1.578000px;}
.ls7{letter-spacing:-1.380000px;}
.ls16{letter-spacing:-0.900000px;}
.lsb{letter-spacing:-0.852000px;}
.ls6{letter-spacing:-0.840000px;}
.ls1c{letter-spacing:-0.726000px;}
.ls12{letter-spacing:-0.600000px;}
.lsc{letter-spacing:-0.504000px;}
.ls13{letter-spacing:-0.474000px;}
.ls18{letter-spacing:-0.378000px;}
.ls5{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.348000px;}
.ls0{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.048000px;}
.ls27{letter-spacing:0.096000px;}
.ls19{letter-spacing:0.138000px;}
.ls26{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.192000px;}
.ls1{letter-spacing:0.216000px;}
.ls24{letter-spacing:0.240000px;}
.ls14{letter-spacing:0.252000px;}
.lse{letter-spacing:0.264000px;}
.ls22{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.300000px;}
.lsd{letter-spacing:0.348000px;}
.ls4{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.378000px;}
.ls3{letter-spacing:0.420000px;}
.ls23{letter-spacing:0.432000px;}
.ls1b{letter-spacing:0.474000px;}
.ls2{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.540000px;}
.lsa{letter-spacing:0.570000px;}
.ls8{letter-spacing:0.600000px;}
.ls21{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.726000px;}
.ls11{letter-spacing:0.780000px;}
.ls1a{letter-spacing:1.500000px;}
.ls1d{letter-spacing:1.800000px;}
.ls20{letter-spacing:1.920000px;}
.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;}
}
.ws3{word-spacing:-60.000000px;}
.ws5{word-spacing:-18.780000px;}
.ws6{word-spacing:-18.420000px;}
.ws15{word-spacing:-18.300000px;}
.ws4{word-spacing:-17.580000px;}
.ws2{word-spacing:-17.509680px;}
.ws10{word-spacing:-17.226000px;}
.ws8{word-spacing:-17.100000px;}
.ws17{word-spacing:-16.974000px;}
.ws14{word-spacing:-16.878000px;}
.wsa{word-spacing:-16.848000px;}
.wsb{word-spacing:-16.800000px;}
.wsc{word-spacing:-16.764000px;}
.ws1{word-spacing:-16.665840px;}
.ws9{word-spacing:-16.500000px;}
.wse{word-spacing:-16.152000px;}
.ws12{word-spacing:-16.122000px;}
.wsf{word-spacing:-16.026000px;}
.ws11{word-spacing:-15.996000px;}
.wsd{word-spacing:-15.900000px;}
.ws7{word-spacing:-15.648000px;}
.ws13{word-spacing:-15.054000px;}
.ws16{word-spacing:-14.922000px;}
.ws18{word-spacing:-10.560000px;}
.ws4f{word-spacing:-6.156480px;}
.ws28{word-spacing:-5.184000px;}
.ws98{word-spacing:-5.136000px;}
.ws84{word-spacing:-5.088000px;}
.ws20{word-spacing:-4.896000px;}
.ws5c{word-spacing:-4.848000px;}
.ws90{word-spacing:-4.416000px;}
.ws45{word-spacing:-4.320000px;}
.ws9b{word-spacing:-4.272000px;}
.ws19{word-spacing:-4.224000px;}
.ws7f{word-spacing:-4.080000px;}
.ws50{word-spacing:-4.032000px;}
.ws89{word-spacing:-3.984000px;}
.ws1a{word-spacing:-3.840000px;}
.ws5f{word-spacing:-3.792000px;}
.ws39{word-spacing:-3.696000px;}
.ws6a{word-spacing:-3.600000px;}
.ws49{word-spacing:-3.552000px;}
.ws48{word-spacing:-3.360000px;}
.ws60{word-spacing:-3.168000px;}
.ws5a{word-spacing:-3.120000px;}
.ws4c{word-spacing:-3.072000px;}
.ws61{word-spacing:-2.880000px;}
.ws87{word-spacing:-2.832000px;}
.ws42{word-spacing:-2.784000px;}
.ws1c{word-spacing:-2.688000px;}
.ws59{word-spacing:-2.544000px;}
.ws2c{word-spacing:-2.448000px;}
.ws9a{word-spacing:-2.352000px;}
.ws24{word-spacing:-2.304000px;}
.ws80{word-spacing:-2.112000px;}
.ws57{word-spacing:-2.064000px;}
.ws47{word-spacing:-2.016000px;}
.ws52{word-spacing:-1.920000px;}
.ws1d{word-spacing:-1.872000px;}
.ws9c{word-spacing:-1.824000px;}
.ws4b{word-spacing:-1.776000px;}
.ws6b{word-spacing:-1.632000px;}
.ws7e{word-spacing:-1.488000px;}
.ws2e{word-spacing:-1.296000px;}
.ws72{word-spacing:-1.152000px;}
.ws6f{word-spacing:-1.056000px;}
.ws8c{word-spacing:-1.008000px;}
.ws68{word-spacing:-0.960000px;}
.ws3d{word-spacing:-0.864000px;}
.ws1f{word-spacing:-0.816000px;}
.ws6c{word-spacing:-0.528000px;}
.ws35{word-spacing:-0.480000px;}
.ws63{word-spacing:-0.384000px;}
.ws91{word-spacing:-0.240000px;}
.ws51{word-spacing:-0.192000px;}
.ws79{word-spacing:-0.096000px;}
.ws64{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws8d{word-spacing:0.096000px;}
.ws3a{word-spacing:0.192000px;}
.ws78{word-spacing:0.240000px;}
.ws70{word-spacing:0.288000px;}
.ws73{word-spacing:0.384000px;}
.ws40{word-spacing:0.672000px;}
.ws93{word-spacing:0.768000px;}
.ws5e{word-spacing:0.816000px;}
.ws55{word-spacing:0.864000px;}
.ws22{word-spacing:0.960000px;}
.ws43{word-spacing:1.008000px;}
.ws9d{word-spacing:1.104000px;}
.ws88{word-spacing:1.152000px;}
.ws77{word-spacing:1.200000px;}
.ws6e{word-spacing:1.248000px;}
.ws8a{word-spacing:1.344000px;}
.ws2a{word-spacing:1.440000px;}
.ws2b{word-spacing:1.488000px;}
.ws75{word-spacing:1.680000px;}
.ws74{word-spacing:1.728000px;}
.ws94{word-spacing:1.776000px;}
.ws67{word-spacing:1.872000px;}
.ws36{word-spacing:1.968000px;}
.ws97{word-spacing:2.208000px;}
.ws1b{word-spacing:2.256000px;}
.ws44{word-spacing:2.448000px;}
.ws8f{word-spacing:2.544000px;}
.ws31{word-spacing:2.592000px;}
.ws92{word-spacing:2.640000px;}
.ws76{word-spacing:2.688000px;}
.ws30{word-spacing:2.736000px;}
.ws2d{word-spacing:2.832000px;}
.ws99{word-spacing:3.024000px;}
.ws7c{word-spacing:3.072000px;}
.ws7b{word-spacing:3.168000px;}
.ws41{word-spacing:3.360000px;}
.ws96{word-spacing:3.408000px;}
.ws4a{word-spacing:3.600000px;}
.ws81{word-spacing:3.648000px;}
.ws3b{word-spacing:3.696000px;}
.ws33{word-spacing:3.744000px;}
.ws83{word-spacing:3.888000px;}
.ws2f{word-spacing:4.080000px;}
.ws7a{word-spacing:4.176000px;}
.ws27{word-spacing:4.224000px;}
.ws62{word-spacing:4.560000px;}
.ws54{word-spacing:4.608000px;}
.ws1e{word-spacing:4.656000px;}
.ws32{word-spacing:4.752000px;}
.ws26{word-spacing:5.040000px;}
.ws53{word-spacing:5.232000px;}
.ws34{word-spacing:5.280000px;}
.ws3e{word-spacing:5.376000px;}
.ws3c{word-spacing:5.568000px;}
.ws37{word-spacing:5.616000px;}
.ws9e{word-spacing:5.712000px;}
.ws69{word-spacing:5.760000px;}
.ws58{word-spacing:5.904000px;}
.ws29{word-spacing:5.952000px;}
.ws85{word-spacing:6.000000px;}
.ws8b{word-spacing:6.192000px;}
.ws5d{word-spacing:6.624000px;}
.ws7d{word-spacing:6.816000px;}
.ws5b{word-spacing:6.864000px;}
.ws66{word-spacing:7.200000px;}
.ws65{word-spacing:7.248000px;}
.ws23{word-spacing:7.440000px;}
.ws71{word-spacing:7.488000px;}
.ws8e{word-spacing:7.632000px;}
.ws46{word-spacing:7.824000px;}
.ws6d{word-spacing:8.400000px;}
.ws38{word-spacing:8.496000px;}
.ws3f{word-spacing:9.264000px;}
.ws4d{word-spacing:9.360000px;}
.ws95{word-spacing:9.600000px;}
.ws82{word-spacing:9.792000px;}
.ws4e{word-spacing:9.840000px;}
.ws21{word-spacing:10.080000px;}
.ws56{word-spacing:10.224000px;}
.ws25{word-spacing:10.560000px;}
.ws86{word-spacing:10.608000px;}
._10{margin-left:-16.200300px;}
._d{margin-left:-14.742450px;}
._12{margin-left:-13.362450px;}
._e{margin-left:-11.160000px;}
._f{margin-left:-9.540150px;}
._11{margin-left:-7.824150px;}
._2{margin-left:-5.628000px;}
._17{margin-left:-4.500000px;}
._4{margin-left:-3.240150px;}
._3{margin-left:-2.153850px;}
._0{margin-left:-1.008000px;}
._1{width:1.848000px;}
._5{width:3.089250px;}
._8{width:4.500270px;}
._13{width:5.987250px;}
._6{width:7.892400px;}
._7{width:9.417360px;}
._a{width:11.100000px;}
._9{width:13.864320px;}
._16{width:112.170000px;}
._15{width:113.723850px;}
._14{width:147.323850px;}
._c{width:195.870000px;}
._b{width:847.187850px;}
.fc6{color:rgb(167,165,166);}
.fc5{color:rgb(189,188,188);}
.fc4{color:rgb(229,228,228);}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(77,77,77);}
.fc0{color:rgb(128,128,128);}
.fsc{font-size:27.984000px;}
.fsa{font-size:36.000000px;}
.fs2{font-size:48.000000px;}
.fs7{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs8{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:72.150000px;}
.fs3{font-size:84.000000px;}
.fsb{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:57.337500px;}
.y9c{bottom:63.049500px;}
.y3a{bottom:77.437500px;}
.ye0{bottom:90.475650px;}
.y134{bottom:96.026100px;}
.yd5{bottom:104.875650px;}
.y179{bottom:110.194650px;}
.y129{bottom:110.425650px;}
.y133{bottom:110.426100px;}
.y96{bottom:116.137500px;}
.y61{bottom:116.437500px;}
.yd4{bottom:119.275650px;}
.y178{bottom:124.594650px;}
.y128{bottom:124.825650px;}
.y132{bottom:124.826100px;}
.yd3{bottom:133.675650px;}
.y1b4{bottom:134.938650px;}
.y177{bottom:138.994650px;}
.y127{bottom:139.225650px;}
.y131{bottom:139.226100px;}
.yd2{bottom:148.075650px;}
.y1b3{bottom:149.338650px;}
.y176{bottom:153.394650px;}
.y126{bottom:153.625650px;}
.y95{bottom:154.245000px;}
.y60{bottom:154.530000px;}
.yd1{bottom:162.475650px;}
.y1b2{bottom:163.738650px;}
.y125{bottom:168.025650px;}
.yd0{bottom:176.875650px;}
.y175{bottom:182.194650px;}
.y130{bottom:182.425650px;}
.ycf{bottom:191.275650px;}
.y94{bottom:192.075000px;}
.y5f{bottom:192.375000px;}
.y1b1{bottom:192.538650px;}
.y174{bottom:196.594650px;}
.y124{bottom:196.825650px;}
.yce{bottom:205.675650px;}
.y173{bottom:210.994650px;}
.y123{bottom:211.225650px;}
.ycd{bottom:220.075650px;}
.y1b0{bottom:221.338650px;}
.y172{bottom:225.394650px;}
.y122{bottom:225.625650px;}
.y93{bottom:230.175000px;}
.y53{bottom:230.475000px;}
.ycc{bottom:234.475650px;}
.y1af{bottom:235.738650px;}
.y171{bottom:239.794650px;}
.y121{bottom:240.025650px;}
.y5{bottom:248.325000px;}
.ycb{bottom:248.875650px;}
.y1ae{bottom:250.138650px;}
.y170{bottom:254.194650px;}
.y120{bottom:254.425650px;}
.yca{bottom:263.275650px;}
.y1ad{bottom:264.538650px;}
.y91{bottom:267.975000px;}
.y52{bottom:268.275000px;}
.y16f{bottom:268.594650px;}
.y11f{bottom:268.825650px;}
.ydf{bottom:277.675650px;}
.y1ac{bottom:278.938650px;}
.y16e{bottom:282.994650px;}
.y11e{bottom:283.225650px;}
.yc9{bottom:292.075650px;}
.y1ab{bottom:293.338650px;}
.y16d{bottom:297.394650px;}
.y11d{bottom:297.625650px;}
.y7c{bottom:297.675000px;}
.y90{bottom:306.075000px;}
.y51{bottom:306.375000px;}
.yc8{bottom:306.475650px;}
.y1aa{bottom:307.738650px;}
.y16c{bottom:311.794650px;}
.y11c{bottom:312.025650px;}
.yc7{bottom:320.875650px;}
.y1a9{bottom:322.138650px;}
.y16b{bottom:326.194650px;}
.y11b{bottom:326.425650px;}
.y7b{bottom:327.075000px;}
.y10{bottom:333.975000px;}
.yc6{bottom:335.275650px;}
.y1a8{bottom:336.538650px;}
.y16a{bottom:340.594650px;}
.y11a{bottom:340.825650px;}
.y50{bottom:343.905000px;}
.y5e{bottom:344.205000px;}
.yc5{bottom:349.675650px;}
.y1a7{bottom:350.938650px;}
.y169{bottom:354.994650px;}
.y119{bottom:355.225650px;}
.y7a{bottom:356.505000px;}
.yc4{bottom:364.075650px;}
.y1a6{bottom:365.338650px;}
.yf{bottom:366.420000px;}
.y118{bottom:369.625650px;}
.yc3{bottom:378.475650px;}
.y1a5{bottom:379.738650px;}
.y4f{bottom:382.005000px;}
.y5d{bottom:382.320000px;}
.y168{bottom:383.794650px;}
.y117{bottom:384.025650px;}
.y79{bottom:385.905000px;}
.yc2{bottom:392.875650px;}
.y167{bottom:398.194650px;}
.y12f{bottom:398.425650px;}
.ye{bottom:398.820000px;}
.yde{bottom:407.275650px;}
.y1a4{bottom:408.538650px;}
.y39{bottom:409.005000px;}
.y166{bottom:412.594650px;}
.y116{bottom:412.825650px;}
.y78{bottom:415.005000px;}
.y4e{bottom:419.820000px;}
.y5c{bottom:420.120000px;}
.yc1{bottom:421.675650px;}
.y1a3{bottom:422.938650px;}
.y165{bottom:426.994650px;}
.y115{bottom:427.225650px;}
.yd{bottom:431.205000px;}
.yc0{bottom:436.075650px;}
.y1a2{bottom:437.338650px;}
.y164{bottom:441.394650px;}
.y114{bottom:441.625650px;}
.y77{bottom:444.405000px;}
.y38{bottom:445.005000px;}
.ydd{bottom:450.475650px;}
.y1a1{bottom:451.738650px;}
.y163{bottom:455.794650px;}
.y113{bottom:456.025650px;}
.y5b{bottom:457.905000px;}
.y4d{bottom:458.205000px;}
.yc{bottom:463.620000px;}
.ybf{bottom:464.875650px;}
.y1a0{bottom:466.138650px;}
.y162{bottom:470.194650px;}
.y112{bottom:470.425650px;}
.y76{bottom:473.820000px;}
.ybe{bottom:479.275650px;}
.y19f{bottom:480.538650px;}
.y37{bottom:481.320000px;}
.y161{bottom:484.594650px;}
.y111{bottom:484.825650px;}
.ybd{bottom:493.675650px;}
.y19e{bottom:494.938650px;}
.y99{bottom:495.705000px;}
.yb{bottom:496.005000px;}
.y160{bottom:498.994650px;}
.y110{bottom:499.225650px;}
.ybc{bottom:508.075650px;}
.y75{bottom:510.750000px;}
.y10f{bottom:513.625650px;}
.y36{bottom:517.350000px;}
.ybb{bottom:522.475650px;}
.y19d{bottom:523.738650px;}
.y15f{bottom:527.794650px;}
.y10e{bottom:528.025650px;}
.ya{bottom:528.450000px;}
.y4c{bottom:533.850000px;}
.y5a{bottom:534.150000px;}
.y8c{bottom:535.050000px;}
.yba{bottom:536.875650px;}
.y19c{bottom:538.138650px;}
.y15e{bottom:542.194650px;}
.y12e{bottom:542.425650px;}
.y74{bottom:547.350000px;}
.yb9{bottom:551.275650px;}
.y19b{bottom:552.538650px;}
.y35{bottom:553.650000px;}
.y15d{bottom:556.594650px;}
.y10d{bottom:556.825650px;}
.y9{bottom:560.850000px;}
.yb8{bottom:565.675650px;}
.y19a{bottom:566.938650px;}
.y15c{bottom:570.994650px;}
.y10c{bottom:571.225650px;}
.y4b{bottom:571.650000px;}
.y59{bottom:571.950000px;}
.y8b{bottom:573.150000px;}
.yb7{bottom:580.075650px;}
.y34{bottom:580.650000px;}
.y199{bottom:581.338650px;}
.y73{bottom:584.250000px;}
.y15b{bottom:585.394650px;}
.y10b{bottom:585.625650px;}
.y8{bottom:593.250000px;}
.yb6{bottom:594.475650px;}
.y15a{bottom:599.794650px;}
.y10a{bottom:600.025650px;}
.yb5{bottom:608.875650px;}
.y4a{bottom:609.750000px;}
.y58{bottom:610.050000px;}
.y198{bottom:610.138650px;}
.y8a{bottom:610.950000px;}
.y72{bottom:613.650000px;}
.y159{bottom:614.194650px;}
.y109{bottom:614.425650px;}
.y33{bottom:616.950000px;}
.yb4{bottom:623.275650px;}
.y197{bottom:624.538650px;}
.y7{bottom:625.650000px;}
.y158{bottom:628.594650px;}
.y108{bottom:628.825650px;}
.yb3{bottom:637.675650px;}
.y196{bottom:638.938650px;}
.y157{bottom:642.994650px;}
.y107{bottom:643.225650px;}
.y8f{bottom:647.550000px;}
.y49{bottom:647.850000px;}
.y89{bottom:649.050000px;}
.y71{bottom:650.550000px;}
.yb2{bottom:652.075650px;}
.y32{bottom:652.950000px;}
.y195{bottom:653.338650px;}
.y23{bottom:655.845000px;}
.y156{bottom:657.394650px;}
.y106{bottom:657.625650px;}
.y6{bottom:658.050000px;}
.yb1{bottom:666.475650px;}
.y194{bottom:667.738650px;}
.y155{bottom:671.794650px;}
.y105{bottom:672.025650px;}
.yb0{bottom:680.875650px;}
.y193{bottom:682.138650px;}
.y48{bottom:685.980000px;}
.y154{bottom:686.194650px;}
.y104{bottom:686.425650px;}
.y88{bottom:686.880000px;}
.y22{bottom:687.165000px;}
.y70{bottom:687.195000px;}
.y31{bottom:689.280000px;}
.yaf{bottom:695.275650px;}
.y153{bottom:700.594650px;}
.y103{bottom:700.825650px;}
.yae{bottom:709.675650px;}
.y192{bottom:710.938650px;}
.y4{bottom:711.375000px;}
.y152{bottom:714.994650px;}
.y102{bottom:715.225650px;}
.y21{bottom:723.345000px;}
.y47{bottom:723.780000px;}
.yad{bottom:724.075650px;}
.y6f{bottom:724.080000px;}
.y87{bottom:724.980000px;}
.y30{bottom:725.280000px;}
.y191{bottom:725.338650px;}
.y151{bottom:729.394650px;}
.y101{bottom:729.625650px;}
.yac{bottom:738.475650px;}
.y190{bottom:739.738650px;}
.y150{bottom:743.794650px;}
.y100{bottom:744.025650px;}
.y3{bottom:745.275000px;}
.yab{bottom:752.875650px;}
.y6e{bottom:753.480000px;}
.y18f{bottom:754.138650px;}
.y14f{bottom:758.194650px;}
.yff{bottom:758.425650px;}
.y20{bottom:759.345000px;}
.y2f{bottom:761.580000px;}
.y46{bottom:761.880000px;}
.y86{bottom:762.780000px;}
.y2{bottom:765.675000px;}
.yaa{bottom:767.275650px;}
.y18e{bottom:768.538650px;}
.y14e{bottom:772.594650px;}
.y12d{bottom:772.825650px;}
.ya9{bottom:781.675650px;}
.y6d{bottom:782.580000px;}
.y14d{bottom:786.994650px;}
.yfe{bottom:787.225650px;}
.y1f{bottom:795.525000px;}
.ya8{bottom:796.075650px;}
.y18d{bottom:797.338650px;}
.y2e{bottom:797.580000px;}
.y13{bottom:797.820000px;}
.y92{bottom:799.380000px;}
.y45{bottom:799.695000px;}
.y85{bottom:800.880000px;}
.y14c{bottom:801.394650px;}
.yfd{bottom:801.625650px;}
.ya7{bottom:810.475650px;}
.y18c{bottom:811.738650px;}
.y14b{bottom:815.794650px;}
.yfc{bottom:816.025650px;}
.y6c{bottom:819.480000px;}
.ya6{bottom:824.875650px;}
.y18b{bottom:826.138650px;}
.y14a{bottom:830.194650px;}
.yfb{bottom:830.425650px;}
.y12{bottom:831.705000px;}
.y2d{bottom:833.880000px;}
.y44{bottom:837.480000px;}
.y57{bottom:837.795000px;}
.y84{bottom:838.695000px;}
.ya5{bottom:839.275650px;}
.y18a{bottom:840.538650px;}
.y149{bottom:844.594650px;}
.yfa{bottom:844.825650px;}
.y6b{bottom:848.925000px;}
.y11{bottom:852.150000px;}
.ya4{bottom:853.675650px;}
.y1e{bottom:858.930000px;}
.y148{bottom:858.994650px;}
.y12c{bottom:859.225650px;}
.ya3{bottom:868.075650px;}
.y189{bottom:869.338650px;}
.y2c{bottom:869.925000px;}
.y147{bottom:873.394650px;}
.yf9{bottom:873.625650px;}
.y43{bottom:875.325000px;}
.y56{bottom:875.625000px;}
.y1{bottom:876.450000px;}
.y83{bottom:876.825000px;}
.ya2{bottom:882.475650px;}
.y188{bottom:883.738650px;}
.y6a{bottom:885.825000px;}
.y1d{bottom:886.110000px;}
.y146{bottom:887.794650px;}
.yf8{bottom:888.025650px;}
.ya1{bottom:896.875650px;}
.y187{bottom:898.138650px;}
.y145{bottom:902.194650px;}
.yf7{bottom:902.425650px;}
.y2b{bottom:906.225000px;}
.ya0{bottom:911.275650px;}
.y1c{bottom:913.290000px;}
.y42{bottom:913.425000px;}
.y55{bottom:913.725000px;}
.y82{bottom:914.625000px;}
.y69{bottom:914.925000px;}
.y144{bottom:916.594650px;}
.yf6{bottom:916.825650px;}
.ydc{bottom:925.675650px;}
.y186{bottom:926.938650px;}
.y143{bottom:930.994650px;}
.yf5{bottom:931.225650px;}
.ydb{bottom:940.075650px;}
.y185{bottom:941.338650px;}
.y2a{bottom:942.525000px;}
.y68{bottom:944.325000px;}
.y142{bottom:945.394650px;}
.yf4{bottom:945.625650px;}
.y1b{bottom:949.470000px;}
.y97{bottom:951.225000px;}
.y41{bottom:951.525000px;}
.y81{bottom:952.725000px;}
.ye4{bottom:954.025650px;}
.yda{bottom:954.475650px;}
.y184{bottom:955.738650px;}
.y141{bottom:959.794650px;}
.y12b{bottom:960.025650px;}
.ye3{bottom:968.425650px;}
.yd9{bottom:968.875650px;}
.y67{bottom:973.725000px;}
.y140{bottom:974.194650px;}
.yf3{bottom:974.425650px;}
.y1a{bottom:976.650000px;}
.y29{bottom:978.525000px;}
.ye2{bottom:982.825650px;}
.yd8{bottom:983.275650px;}
.y183{bottom:984.538650px;}
.y13f{bottom:988.594650px;}
.yf2{bottom:988.825650px;}
.y98{bottom:989.325000px;}
.y40{bottom:989.625000px;}
.y80{bottom:990.525000px;}
.yd7{bottom:997.675650px;}
.y182{bottom:998.938650px;}
.y13e{bottom:1002.994650px;}
.y66{bottom:1003.125000px;}
.yf1{bottom:1003.225650px;}
.y19{bottom:1003.830000px;}
.yd6{bottom:1012.075650px;}
.y181{bottom:1013.338650px;}
.y28{bottom:1014.855000px;}
.y13d{bottom:1017.394650px;}
.yf0{bottom:1017.625650px;}
.y9f{bottom:1026.475650px;}
.y8e{bottom:1027.170000px;}
.y3f{bottom:1027.455000px;}
.y7f{bottom:1028.670000px;}
.y13c{bottom:1031.794650px;}
.y12a{bottom:1032.025650px;}
.y65{bottom:1032.255000px;}
.y9e{bottom:1040.875650px;}
.y180{bottom:1042.138650px;}
.y13b{bottom:1046.194650px;}
.yef{bottom:1046.425650px;}
.y18{bottom:1049.010000px;}
.y17f{bottom:1056.538650px;}
.y27{bottom:1059.855000px;}
.y13a{bottom:1060.594650px;}
.yee{bottom:1060.825650px;}
.y64{bottom:1061.670000px;}
.y8d{bottom:1065.255000px;}
.y3e{bottom:1065.570000px;}
.y7e{bottom:1066.455000px;}
.y17e{bottom:1070.938650px;}
.y139{bottom:1074.994650px;}
.yed{bottom:1075.225650px;}
.y24{bottom:1079.070000px;}
.y17{bottom:1085.190000px;}
.y138{bottom:1089.394650px;}
.yec{bottom:1089.625650px;}
.y63{bottom:1098.570000px;}
.y17d{bottom:1099.738650px;}
.y3d{bottom:1103.070000px;}
.y54{bottom:1103.370000px;}
.y137{bottom:1103.794650px;}
.yeb{bottom:1104.025650px;}
.y7d{bottom:1104.570000px;}
.y26{bottom:1105.155000px;}
.y17c{bottom:1114.138650px;}
.y136{bottom:1118.194650px;}
.yea{bottom:1118.425650px;}
.y62{bottom:1120.155000px;}
.y16{bottom:1121.190000px;}
.ye1{bottom:1121.557200px;}
.y17b{bottom:1128.538650px;}
.ye9{bottom:1132.825650px;}
.y3c{bottom:1141.155000px;}
.y25{bottom:1141.455000px;}
.y17a{bottom:1142.938650px;}
.y135{bottom:1142.950650px;}
.ye8{bottom:1147.225650px;}
.y15{bottom:1159.920000px;}
.y9b{bottom:1180.189350px;}
.ye6{bottom:1180.523400px;}
.y9d{bottom:1190.594400px;}
.ye7{bottom:1190.969400px;}
.y14{bottom:1193.580000px;}
.y9a{bottom:1201.789350px;}
.ye5{bottom:1202.123250px;}
.h15{height:31.324219px;}
.hb{height:32.152148px;}
.h1b{height:33.656250px;}
.h18{height:40.945312px;}
.h17{height:41.765625px;}
.h1a{height:41.767425px;}
.h16{height:46.986328px;}
.h10{height:48.694336px;}
.ha{height:48.905156px;}
.h3{height:50.062500px;}
.h1c{height:53.765625px;}
.h1{height:56.320312px;}
.h9{height:57.659063px;}
.he{height:57.890625px;}
.hf{height:60.029297px;}
.h14{height:61.417969px;}
.h12{height:64.775391px;}
.h11{height:66.515625px;}
.h8{height:69.468750px;}
.h7{height:74.004654px;}
.h2{height:75.093750px;}
.h5{height:75.250195px;}
.h4{height:87.609375px;}
.hc{height:92.196000px;}
.h19{height:153.544922px;}
.hd{height:1262.700000px;}
.h13{height:1262.835000px;}
.h6{height:1262.880000px;}
.h0{height:1263.000000px;}
.w3{width:164.520000px;}
.w4{width:892.914000px;}
.w2{width:892.980000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:24.750000px;}
.x21{left:63.747000px;}
.x23{left:70.167450px;}
.x20{left:84.975000px;}
.x12{left:106.776000px;}
.xf{left:127.656000px;}
.x1a{left:139.837500px;}
.x13{left:153.714000px;}
.x16{left:159.330000px;}
.x18{left:212.475000px;}
.x19{left:265.575000px;}
.xb{left:330.150000px;}
.xa{left:343.050000px;}
.x10{left:373.755000px;}
.xe{left:396.750000px;}
.x4{left:401.250000px;}
.x14{left:446.550000px;}
.x11{left:467.895000px;}
.x22{left:488.991000px;}
.x9{left:490.995000px;}
.x6{left:548.925000px;}
.xd{left:577.125000px;}
.x2{left:581.625000px;}
.x8{left:591.525000px;}
.xc{left:642.825000px;}
.x1e{left:718.425600px;}
.x1d{left:735.121950px;}
.x1c{left:737.257650px;}
.x5{left:751.620000px;}
.x1{left:763.650000px;}
.x1b{left:770.025000px;}
.x15{left:778.455000px;}
.x17{left:786.870000px;}
.x7{left:829.200000px;}
.x3{left:833.700000px;}
.x1f{left:847.232250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.666667pt;}
.v1{vertical-align:14.209600pt;}
.ls1e{letter-spacing:-1.402667pt;}
.ls7{letter-spacing:-1.226667pt;}
.ls16{letter-spacing:-0.800000pt;}
.lsb{letter-spacing:-0.757333pt;}
.ls6{letter-spacing:-0.746667pt;}
.ls1c{letter-spacing:-0.645333pt;}
.ls12{letter-spacing:-0.533333pt;}
.lsc{letter-spacing:-0.448000pt;}
.ls13{letter-spacing:-0.421333pt;}
.ls18{letter-spacing:-0.336000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.309333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.042667pt;}
.ls27{letter-spacing:0.085333pt;}
.ls19{letter-spacing:0.122667pt;}
.ls26{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.170667pt;}
.ls1{letter-spacing:0.192000pt;}
.ls24{letter-spacing:0.213333pt;}
.ls14{letter-spacing:0.224000pt;}
.lse{letter-spacing:0.234667pt;}
.ls22{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.266667pt;}
.lsd{letter-spacing:0.309333pt;}
.ls4{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.336000pt;}
.ls3{letter-spacing:0.373333pt;}
.ls23{letter-spacing:0.384000pt;}
.ls1b{letter-spacing:0.421333pt;}
.ls2{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.480000pt;}
.lsa{letter-spacing:0.506667pt;}
.ls8{letter-spacing:0.533333pt;}
.ls21{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.645333pt;}
.ls11{letter-spacing:0.693333pt;}
.ls1a{letter-spacing:1.333333pt;}
.ls1d{letter-spacing:1.600000pt;}
.ls20{letter-spacing:1.706667pt;}
.ws3{word-spacing:-53.333333pt;}
.ws5{word-spacing:-16.693333pt;}
.ws6{word-spacing:-16.373333pt;}
.ws15{word-spacing:-16.266667pt;}
.ws4{word-spacing:-15.626667pt;}
.ws2{word-spacing:-15.564160pt;}
.ws10{word-spacing:-15.312000pt;}
.ws8{word-spacing:-15.200000pt;}
.ws17{word-spacing:-15.088000pt;}
.ws14{word-spacing:-15.002667pt;}
.wsa{word-spacing:-14.976000pt;}
.wsb{word-spacing:-14.933333pt;}
.wsc{word-spacing:-14.901333pt;}
.ws1{word-spacing:-14.814080pt;}
.ws9{word-spacing:-14.666667pt;}
.wse{word-spacing:-14.357333pt;}
.ws12{word-spacing:-14.330667pt;}
.wsf{word-spacing:-14.245333pt;}
.ws11{word-spacing:-14.218667pt;}
.wsd{word-spacing:-14.133333pt;}
.ws7{word-spacing:-13.909333pt;}
.ws13{word-spacing:-13.381333pt;}
.ws16{word-spacing:-13.264000pt;}
.ws18{word-spacing:-9.386667pt;}
.ws4f{word-spacing:-5.472427pt;}
.ws28{word-spacing:-4.608000pt;}
.ws98{word-spacing:-4.565333pt;}
.ws84{word-spacing:-4.522667pt;}
.ws20{word-spacing:-4.352000pt;}
.ws5c{word-spacing:-4.309333pt;}
.ws90{word-spacing:-3.925333pt;}
.ws45{word-spacing:-3.840000pt;}
.ws9b{word-spacing:-3.797333pt;}
.ws19{word-spacing:-3.754667pt;}
.ws7f{word-spacing:-3.626667pt;}
.ws50{word-spacing:-3.584000pt;}
.ws89{word-spacing:-3.541333pt;}
.ws1a{word-spacing:-3.413333pt;}
.ws5f{word-spacing:-3.370667pt;}
.ws39{word-spacing:-3.285333pt;}
.ws6a{word-spacing:-3.200000pt;}
.ws49{word-spacing:-3.157333pt;}
.ws48{word-spacing:-2.986667pt;}
.ws60{word-spacing:-2.816000pt;}
.ws5a{word-spacing:-2.773333pt;}
.ws4c{word-spacing:-2.730667pt;}
.ws61{word-spacing:-2.560000pt;}
.ws87{word-spacing:-2.517333pt;}
.ws42{word-spacing:-2.474667pt;}
.ws1c{word-spacing:-2.389333pt;}
.ws59{word-spacing:-2.261333pt;}
.ws2c{word-spacing:-2.176000pt;}
.ws9a{word-spacing:-2.090667pt;}
.ws24{word-spacing:-2.048000pt;}
.ws80{word-spacing:-1.877333pt;}
.ws57{word-spacing:-1.834667pt;}
.ws47{word-spacing:-1.792000pt;}
.ws52{word-spacing:-1.706667pt;}
.ws1d{word-spacing:-1.664000pt;}
.ws9c{word-spacing:-1.621333pt;}
.ws4b{word-spacing:-1.578667pt;}
.ws6b{word-spacing:-1.450667pt;}
.ws7e{word-spacing:-1.322667pt;}
.ws2e{word-spacing:-1.152000pt;}
.ws72{word-spacing:-1.024000pt;}
.ws6f{word-spacing:-0.938667pt;}
.ws8c{word-spacing:-0.896000pt;}
.ws68{word-spacing:-0.853333pt;}
.ws3d{word-spacing:-0.768000pt;}
.ws1f{word-spacing:-0.725333pt;}
.ws6c{word-spacing:-0.469333pt;}
.ws35{word-spacing:-0.426667pt;}
.ws63{word-spacing:-0.341333pt;}
.ws91{word-spacing:-0.213333pt;}
.ws51{word-spacing:-0.170667pt;}
.ws79{word-spacing:-0.085333pt;}
.ws64{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws8d{word-spacing:0.085333pt;}
.ws3a{word-spacing:0.170667pt;}
.ws78{word-spacing:0.213333pt;}
.ws70{word-spacing:0.256000pt;}
.ws73{word-spacing:0.341333pt;}
.ws40{word-spacing:0.597333pt;}
.ws93{word-spacing:0.682667pt;}
.ws5e{word-spacing:0.725333pt;}
.ws55{word-spacing:0.768000pt;}
.ws22{word-spacing:0.853333pt;}
.ws43{word-spacing:0.896000pt;}
.ws9d{word-spacing:0.981333pt;}
.ws88{word-spacing:1.024000pt;}
.ws77{word-spacing:1.066667pt;}
.ws6e{word-spacing:1.109333pt;}
.ws8a{word-spacing:1.194667pt;}
.ws2a{word-spacing:1.280000pt;}
.ws2b{word-spacing:1.322667pt;}
.ws75{word-spacing:1.493333pt;}
.ws74{word-spacing:1.536000pt;}
.ws94{word-spacing:1.578667pt;}
.ws67{word-spacing:1.664000pt;}
.ws36{word-spacing:1.749333pt;}
.ws97{word-spacing:1.962667pt;}
.ws1b{word-spacing:2.005333pt;}
.ws44{word-spacing:2.176000pt;}
.ws8f{word-spacing:2.261333pt;}
.ws31{word-spacing:2.304000pt;}
.ws92{word-spacing:2.346667pt;}
.ws76{word-spacing:2.389333pt;}
.ws30{word-spacing:2.432000pt;}
.ws2d{word-spacing:2.517333pt;}
.ws99{word-spacing:2.688000pt;}
.ws7c{word-spacing:2.730667pt;}
.ws7b{word-spacing:2.816000pt;}
.ws41{word-spacing:2.986667pt;}
.ws96{word-spacing:3.029333pt;}
.ws4a{word-spacing:3.200000pt;}
.ws81{word-spacing:3.242667pt;}
.ws3b{word-spacing:3.285333pt;}
.ws33{word-spacing:3.328000pt;}
.ws83{word-spacing:3.456000pt;}
.ws2f{word-spacing:3.626667pt;}
.ws7a{word-spacing:3.712000pt;}
.ws27{word-spacing:3.754667pt;}
.ws62{word-spacing:4.053333pt;}
.ws54{word-spacing:4.096000pt;}
.ws1e{word-spacing:4.138667pt;}
.ws32{word-spacing:4.224000pt;}
.ws26{word-spacing:4.480000pt;}
.ws53{word-spacing:4.650667pt;}
.ws34{word-spacing:4.693333pt;}
.ws3e{word-spacing:4.778667pt;}
.ws3c{word-spacing:4.949333pt;}
.ws37{word-spacing:4.992000pt;}
.ws9e{word-spacing:5.077333pt;}
.ws69{word-spacing:5.120000pt;}
.ws58{word-spacing:5.248000pt;}
.ws29{word-spacing:5.290667pt;}
.ws85{word-spacing:5.333333pt;}
.ws8b{word-spacing:5.504000pt;}
.ws5d{word-spacing:5.888000pt;}
.ws7d{word-spacing:6.058667pt;}
.ws5b{word-spacing:6.101333pt;}
.ws66{word-spacing:6.400000pt;}
.ws65{word-spacing:6.442667pt;}
.ws23{word-spacing:6.613333pt;}
.ws71{word-spacing:6.656000pt;}
.ws8e{word-spacing:6.784000pt;}
.ws46{word-spacing:6.954667pt;}
.ws6d{word-spacing:7.466667pt;}
.ws38{word-spacing:7.552000pt;}
.ws3f{word-spacing:8.234667pt;}
.ws4d{word-spacing:8.320000pt;}
.ws95{word-spacing:8.533333pt;}
.ws82{word-spacing:8.704000pt;}
.ws4e{word-spacing:8.746667pt;}
.ws21{word-spacing:8.960000pt;}
.ws56{word-spacing:9.088000pt;}
.ws25{word-spacing:9.386667pt;}
.ws86{word-spacing:9.429333pt;}
._10{margin-left:-14.400267pt;}
._d{margin-left:-13.104400pt;}
._12{margin-left:-11.877733pt;}
._e{margin-left:-9.920000pt;}
._f{margin-left:-8.480133pt;}
._11{margin-left:-6.954800pt;}
._2{margin-left:-5.002667pt;}
._17{margin-left:-4.000000pt;}
._4{margin-left:-2.880133pt;}
._3{margin-left:-1.914533pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.642667pt;}
._5{width:2.746000pt;}
._8{width:4.000240pt;}
._13{width:5.322000pt;}
._6{width:7.015467pt;}
._7{width:8.370987pt;}
._a{width:9.866667pt;}
._9{width:12.323840pt;}
._16{width:99.706667pt;}
._15{width:101.087867pt;}
._14{width:130.954533pt;}
._c{width:174.106667pt;}
._b{width:753.055867pt;}
.fsc{font-size:24.874667pt;}
.fsa{font-size:32.000000pt;}
.fs2{font-size:42.666667pt;}
.fs7{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs8{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:64.133333pt;}
.fs3{font-size:74.666667pt;}
.fsb{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:50.966667pt;}
.y9c{bottom:56.044000pt;}
.y3a{bottom:68.833333pt;}
.ye0{bottom:80.422800pt;}
.y134{bottom:85.356533pt;}
.yd5{bottom:93.222800pt;}
.y179{bottom:97.950800pt;}
.y129{bottom:98.156133pt;}
.y133{bottom:98.156533pt;}
.y96{bottom:103.233333pt;}
.y61{bottom:103.500000pt;}
.yd4{bottom:106.022800pt;}
.y178{bottom:110.750800pt;}
.y128{bottom:110.956133pt;}
.y132{bottom:110.956533pt;}
.yd3{bottom:118.822800pt;}
.y1b4{bottom:119.945467pt;}
.y177{bottom:123.550800pt;}
.y127{bottom:123.756133pt;}
.y131{bottom:123.756533pt;}
.yd2{bottom:131.622800pt;}
.y1b3{bottom:132.745467pt;}
.y176{bottom:136.350800pt;}
.y126{bottom:136.556133pt;}
.y95{bottom:137.106667pt;}
.y60{bottom:137.360000pt;}
.yd1{bottom:144.422800pt;}
.y1b2{bottom:145.545467pt;}
.y125{bottom:149.356133pt;}
.yd0{bottom:157.222800pt;}
.y175{bottom:161.950800pt;}
.y130{bottom:162.156133pt;}
.ycf{bottom:170.022800pt;}
.y94{bottom:170.733333pt;}
.y5f{bottom:171.000000pt;}
.y1b1{bottom:171.145467pt;}
.y174{bottom:174.750800pt;}
.y124{bottom:174.956133pt;}
.yce{bottom:182.822800pt;}
.y173{bottom:187.550800pt;}
.y123{bottom:187.756133pt;}
.ycd{bottom:195.622800pt;}
.y1b0{bottom:196.745467pt;}
.y172{bottom:200.350800pt;}
.y122{bottom:200.556133pt;}
.y93{bottom:204.600000pt;}
.y53{bottom:204.866667pt;}
.ycc{bottom:208.422800pt;}
.y1af{bottom:209.545467pt;}
.y171{bottom:213.150800pt;}
.y121{bottom:213.356133pt;}
.y5{bottom:220.733333pt;}
.ycb{bottom:221.222800pt;}
.y1ae{bottom:222.345467pt;}
.y170{bottom:225.950800pt;}
.y120{bottom:226.156133pt;}
.yca{bottom:234.022800pt;}
.y1ad{bottom:235.145467pt;}
.y91{bottom:238.200000pt;}
.y52{bottom:238.466667pt;}
.y16f{bottom:238.750800pt;}
.y11f{bottom:238.956133pt;}
.ydf{bottom:246.822800pt;}
.y1ac{bottom:247.945467pt;}
.y16e{bottom:251.550800pt;}
.y11e{bottom:251.756133pt;}
.yc9{bottom:259.622800pt;}
.y1ab{bottom:260.745467pt;}
.y16d{bottom:264.350800pt;}
.y11d{bottom:264.556133pt;}
.y7c{bottom:264.600000pt;}
.y90{bottom:272.066667pt;}
.y51{bottom:272.333333pt;}
.yc8{bottom:272.422800pt;}
.y1aa{bottom:273.545467pt;}
.y16c{bottom:277.150800pt;}
.y11c{bottom:277.356133pt;}
.yc7{bottom:285.222800pt;}
.y1a9{bottom:286.345467pt;}
.y16b{bottom:289.950800pt;}
.y11b{bottom:290.156133pt;}
.y7b{bottom:290.733333pt;}
.y10{bottom:296.866667pt;}
.yc6{bottom:298.022800pt;}
.y1a8{bottom:299.145467pt;}
.y16a{bottom:302.750800pt;}
.y11a{bottom:302.956133pt;}
.y50{bottom:305.693333pt;}
.y5e{bottom:305.960000pt;}
.yc5{bottom:310.822800pt;}
.y1a7{bottom:311.945467pt;}
.y169{bottom:315.550800pt;}
.y119{bottom:315.756133pt;}
.y7a{bottom:316.893333pt;}
.yc4{bottom:323.622800pt;}
.y1a6{bottom:324.745467pt;}
.yf{bottom:325.706667pt;}
.y118{bottom:328.556133pt;}
.yc3{bottom:336.422800pt;}
.y1a5{bottom:337.545467pt;}
.y4f{bottom:339.560000pt;}
.y5d{bottom:339.840000pt;}
.y168{bottom:341.150800pt;}
.y117{bottom:341.356133pt;}
.y79{bottom:343.026667pt;}
.yc2{bottom:349.222800pt;}
.y167{bottom:353.950800pt;}
.y12f{bottom:354.156133pt;}
.ye{bottom:354.506667pt;}
.yde{bottom:362.022800pt;}
.y1a4{bottom:363.145467pt;}
.y39{bottom:363.560000pt;}
.y166{bottom:366.750800pt;}
.y116{bottom:366.956133pt;}
.y78{bottom:368.893333pt;}
.y4e{bottom:373.173333pt;}
.y5c{bottom:373.440000pt;}
.yc1{bottom:374.822800pt;}
.y1a3{bottom:375.945467pt;}
.y165{bottom:379.550800pt;}
.y115{bottom:379.756133pt;}
.yd{bottom:383.293333pt;}
.yc0{bottom:387.622800pt;}
.y1a2{bottom:388.745467pt;}
.y164{bottom:392.350800pt;}
.y114{bottom:392.556133pt;}
.y77{bottom:395.026667pt;}
.y38{bottom:395.560000pt;}
.ydd{bottom:400.422800pt;}
.y1a1{bottom:401.545467pt;}
.y163{bottom:405.150800pt;}
.y113{bottom:405.356133pt;}
.y5b{bottom:407.026667pt;}
.y4d{bottom:407.293333pt;}
.yc{bottom:412.106667pt;}
.ybf{bottom:413.222800pt;}
.y1a0{bottom:414.345467pt;}
.y162{bottom:417.950800pt;}
.y112{bottom:418.156133pt;}
.y76{bottom:421.173333pt;}
.ybe{bottom:426.022800pt;}
.y19f{bottom:427.145467pt;}
.y37{bottom:427.840000pt;}
.y161{bottom:430.750800pt;}
.y111{bottom:430.956133pt;}
.ybd{bottom:438.822800pt;}
.y19e{bottom:439.945467pt;}
.y99{bottom:440.626667pt;}
.yb{bottom:440.893333pt;}
.y160{bottom:443.550800pt;}
.y110{bottom:443.756133pt;}
.ybc{bottom:451.622800pt;}
.y75{bottom:454.000000pt;}
.y10f{bottom:456.556133pt;}
.y36{bottom:459.866667pt;}
.ybb{bottom:464.422800pt;}
.y19d{bottom:465.545467pt;}
.y15f{bottom:469.150800pt;}
.y10e{bottom:469.356133pt;}
.ya{bottom:469.733333pt;}
.y4c{bottom:474.533333pt;}
.y5a{bottom:474.800000pt;}
.y8c{bottom:475.600000pt;}
.yba{bottom:477.222800pt;}
.y19c{bottom:478.345467pt;}
.y15e{bottom:481.950800pt;}
.y12e{bottom:482.156133pt;}
.y74{bottom:486.533333pt;}
.yb9{bottom:490.022800pt;}
.y19b{bottom:491.145467pt;}
.y35{bottom:492.133333pt;}
.y15d{bottom:494.750800pt;}
.y10d{bottom:494.956133pt;}
.y9{bottom:498.533333pt;}
.yb8{bottom:502.822800pt;}
.y19a{bottom:503.945467pt;}
.y15c{bottom:507.550800pt;}
.y10c{bottom:507.756133pt;}
.y4b{bottom:508.133333pt;}
.y59{bottom:508.400000pt;}
.y8b{bottom:509.466667pt;}
.yb7{bottom:515.622800pt;}
.y34{bottom:516.133333pt;}
.y199{bottom:516.745467pt;}
.y73{bottom:519.333333pt;}
.y15b{bottom:520.350800pt;}
.y10b{bottom:520.556133pt;}
.y8{bottom:527.333333pt;}
.yb6{bottom:528.422800pt;}
.y15a{bottom:533.150800pt;}
.y10a{bottom:533.356133pt;}
.yb5{bottom:541.222800pt;}
.y4a{bottom:542.000000pt;}
.y58{bottom:542.266667pt;}
.y198{bottom:542.345467pt;}
.y8a{bottom:543.066667pt;}
.y72{bottom:545.466667pt;}
.y159{bottom:545.950800pt;}
.y109{bottom:546.156133pt;}
.y33{bottom:548.400000pt;}
.yb4{bottom:554.022800pt;}
.y197{bottom:555.145467pt;}
.y7{bottom:556.133333pt;}
.y158{bottom:558.750800pt;}
.y108{bottom:558.956133pt;}
.yb3{bottom:566.822800pt;}
.y196{bottom:567.945467pt;}
.y157{bottom:571.550800pt;}
.y107{bottom:571.756133pt;}
.y8f{bottom:575.600000pt;}
.y49{bottom:575.866667pt;}
.y89{bottom:576.933333pt;}
.y71{bottom:578.266667pt;}
.yb2{bottom:579.622800pt;}
.y32{bottom:580.400000pt;}
.y195{bottom:580.745467pt;}
.y23{bottom:582.973333pt;}
.y156{bottom:584.350800pt;}
.y106{bottom:584.556133pt;}
.y6{bottom:584.933333pt;}
.yb1{bottom:592.422800pt;}
.y194{bottom:593.545467pt;}
.y155{bottom:597.150800pt;}
.y105{bottom:597.356133pt;}
.yb0{bottom:605.222800pt;}
.y193{bottom:606.345467pt;}
.y48{bottom:609.760000pt;}
.y154{bottom:609.950800pt;}
.y104{bottom:610.156133pt;}
.y88{bottom:610.560000pt;}
.y22{bottom:610.813333pt;}
.y70{bottom:610.840000pt;}
.y31{bottom:612.693333pt;}
.yaf{bottom:618.022800pt;}
.y153{bottom:622.750800pt;}
.y103{bottom:622.956133pt;}
.yae{bottom:630.822800pt;}
.y192{bottom:631.945467pt;}
.y4{bottom:632.333333pt;}
.y152{bottom:635.550800pt;}
.y102{bottom:635.756133pt;}
.y21{bottom:642.973333pt;}
.y47{bottom:643.360000pt;}
.yad{bottom:643.622800pt;}
.y6f{bottom:643.626667pt;}
.y87{bottom:644.426667pt;}
.y30{bottom:644.693333pt;}
.y191{bottom:644.745467pt;}
.y151{bottom:648.350800pt;}
.y101{bottom:648.556133pt;}
.yac{bottom:656.422800pt;}
.y190{bottom:657.545467pt;}
.y150{bottom:661.150800pt;}
.y100{bottom:661.356133pt;}
.y3{bottom:662.466667pt;}
.yab{bottom:669.222800pt;}
.y6e{bottom:669.760000pt;}
.y18f{bottom:670.345467pt;}
.y14f{bottom:673.950800pt;}
.yff{bottom:674.156133pt;}
.y20{bottom:674.973333pt;}
.y2f{bottom:676.960000pt;}
.y46{bottom:677.226667pt;}
.y86{bottom:678.026667pt;}
.y2{bottom:680.600000pt;}
.yaa{bottom:682.022800pt;}
.y18e{bottom:683.145467pt;}
.y14e{bottom:686.750800pt;}
.y12d{bottom:686.956133pt;}
.ya9{bottom:694.822800pt;}
.y6d{bottom:695.626667pt;}
.y14d{bottom:699.550800pt;}
.yfe{bottom:699.756133pt;}
.y1f{bottom:707.133333pt;}
.ya8{bottom:707.622800pt;}
.y18d{bottom:708.745467pt;}
.y2e{bottom:708.960000pt;}
.y13{bottom:709.173333pt;}
.y92{bottom:710.560000pt;}
.y45{bottom:710.840000pt;}
.y85{bottom:711.893333pt;}
.y14c{bottom:712.350800pt;}
.yfd{bottom:712.556133pt;}
.ya7{bottom:720.422800pt;}
.y18c{bottom:721.545467pt;}
.y14b{bottom:725.150800pt;}
.yfc{bottom:725.356133pt;}
.y6c{bottom:728.426667pt;}
.ya6{bottom:733.222800pt;}
.y18b{bottom:734.345467pt;}
.y14a{bottom:737.950800pt;}
.yfb{bottom:738.156133pt;}
.y12{bottom:739.293333pt;}
.y2d{bottom:741.226667pt;}
.y44{bottom:744.426667pt;}
.y57{bottom:744.706667pt;}
.y84{bottom:745.506667pt;}
.ya5{bottom:746.022800pt;}
.y18a{bottom:747.145467pt;}
.y149{bottom:750.750800pt;}
.yfa{bottom:750.956133pt;}
.y6b{bottom:754.600000pt;}
.y11{bottom:757.466667pt;}
.ya4{bottom:758.822800pt;}
.y1e{bottom:763.493333pt;}
.y148{bottom:763.550800pt;}
.y12c{bottom:763.756133pt;}
.ya3{bottom:771.622800pt;}
.y189{bottom:772.745467pt;}
.y2c{bottom:773.266667pt;}
.y147{bottom:776.350800pt;}
.yf9{bottom:776.556133pt;}
.y43{bottom:778.066667pt;}
.y56{bottom:778.333333pt;}
.y1{bottom:779.066667pt;}
.y83{bottom:779.400000pt;}
.ya2{bottom:784.422800pt;}
.y188{bottom:785.545467pt;}
.y6a{bottom:787.400000pt;}
.y1d{bottom:787.653333pt;}
.y146{bottom:789.150800pt;}
.yf8{bottom:789.356133pt;}
.ya1{bottom:797.222800pt;}
.y187{bottom:798.345467pt;}
.y145{bottom:801.950800pt;}
.yf7{bottom:802.156133pt;}
.y2b{bottom:805.533333pt;}
.ya0{bottom:810.022800pt;}
.y1c{bottom:811.813333pt;}
.y42{bottom:811.933333pt;}
.y55{bottom:812.200000pt;}
.y82{bottom:813.000000pt;}
.y69{bottom:813.266667pt;}
.y144{bottom:814.750800pt;}
.yf6{bottom:814.956133pt;}
.ydc{bottom:822.822800pt;}
.y186{bottom:823.945467pt;}
.y143{bottom:827.550800pt;}
.yf5{bottom:827.756133pt;}
.ydb{bottom:835.622800pt;}
.y185{bottom:836.745467pt;}
.y2a{bottom:837.800000pt;}
.y68{bottom:839.400000pt;}
.y142{bottom:840.350800pt;}
.yf4{bottom:840.556133pt;}
.y1b{bottom:843.973333pt;}
.y97{bottom:845.533333pt;}
.y41{bottom:845.800000pt;}
.y81{bottom:846.866667pt;}
.ye4{bottom:848.022800pt;}
.yda{bottom:848.422800pt;}
.y184{bottom:849.545467pt;}
.y141{bottom:853.150800pt;}
.y12b{bottom:853.356133pt;}
.ye3{bottom:860.822800pt;}
.yd9{bottom:861.222800pt;}
.y67{bottom:865.533333pt;}
.y140{bottom:865.950800pt;}
.yf3{bottom:866.156133pt;}
.y1a{bottom:868.133333pt;}
.y29{bottom:869.800000pt;}
.ye2{bottom:873.622800pt;}
.yd8{bottom:874.022800pt;}
.y183{bottom:875.145467pt;}
.y13f{bottom:878.750800pt;}
.yf2{bottom:878.956133pt;}
.y98{bottom:879.400000pt;}
.y40{bottom:879.666667pt;}
.y80{bottom:880.466667pt;}
.yd7{bottom:886.822800pt;}
.y182{bottom:887.945467pt;}
.y13e{bottom:891.550800pt;}
.y66{bottom:891.666667pt;}
.yf1{bottom:891.756133pt;}
.y19{bottom:892.293333pt;}
.yd6{bottom:899.622800pt;}
.y181{bottom:900.745467pt;}
.y28{bottom:902.093333pt;}
.y13d{bottom:904.350800pt;}
.yf0{bottom:904.556133pt;}
.y9f{bottom:912.422800pt;}
.y8e{bottom:913.040000pt;}
.y3f{bottom:913.293333pt;}
.y7f{bottom:914.373333pt;}
.y13c{bottom:917.150800pt;}
.y12a{bottom:917.356133pt;}
.y65{bottom:917.560000pt;}
.y9e{bottom:925.222800pt;}
.y180{bottom:926.345467pt;}
.y13b{bottom:929.950800pt;}
.yef{bottom:930.156133pt;}
.y18{bottom:932.453333pt;}
.y17f{bottom:939.145467pt;}
.y27{bottom:942.093333pt;}
.y13a{bottom:942.750800pt;}
.yee{bottom:942.956133pt;}
.y64{bottom:943.706667pt;}
.y8d{bottom:946.893333pt;}
.y3e{bottom:947.173333pt;}
.y7e{bottom:947.960000pt;}
.y17e{bottom:951.945467pt;}
.y139{bottom:955.550800pt;}
.yed{bottom:955.756133pt;}
.y24{bottom:959.173333pt;}
.y17{bottom:964.613333pt;}
.y138{bottom:968.350800pt;}
.yec{bottom:968.556133pt;}
.y63{bottom:976.506667pt;}
.y17d{bottom:977.545467pt;}
.y3d{bottom:980.506667pt;}
.y54{bottom:980.773333pt;}
.y137{bottom:981.150800pt;}
.yeb{bottom:981.356133pt;}
.y7d{bottom:981.840000pt;}
.y26{bottom:982.360000pt;}
.y17c{bottom:990.345467pt;}
.y136{bottom:993.950800pt;}
.yea{bottom:994.156133pt;}
.y62{bottom:995.693333pt;}
.y16{bottom:996.613333pt;}
.ye1{bottom:996.939733pt;}
.y17b{bottom:1003.145467pt;}
.ye9{bottom:1006.956133pt;}
.y3c{bottom:1014.360000pt;}
.y25{bottom:1014.626667pt;}
.y17a{bottom:1015.945467pt;}
.y135{bottom:1015.956133pt;}
.ye8{bottom:1019.756133pt;}
.y15{bottom:1031.040000pt;}
.y9b{bottom:1049.057200pt;}
.ye6{bottom:1049.354133pt;}
.y9d{bottom:1058.306133pt;}
.ye7{bottom:1058.639467pt;}
.y14{bottom:1060.960000pt;}
.y9a{bottom:1068.257200pt;}
.ye5{bottom:1068.554000pt;}
.h15{height:27.843750pt;}
.hb{height:28.579687pt;}
.h1b{height:29.916667pt;}
.h18{height:36.395833pt;}
.h17{height:37.125000pt;}
.h1a{height:37.126600pt;}
.h16{height:41.765625pt;}
.h10{height:43.283854pt;}
.ha{height:43.471250pt;}
.h3{height:44.500000pt;}
.h1c{height:47.791667pt;}
.h1{height:50.062500pt;}
.h9{height:51.252500pt;}
.he{height:51.458333pt;}
.hf{height:53.359375pt;}
.h14{height:54.593750pt;}
.h12{height:57.578125pt;}
.h11{height:59.125000pt;}
.h8{height:61.750000pt;}
.h7{height:65.781915pt;}
.h2{height:66.750000pt;}
.h5{height:66.889063pt;}
.h4{height:77.875000pt;}
.hc{height:81.952000pt;}
.h19{height:136.484375pt;}
.hd{height:1122.400000pt;}
.h13{height:1122.520000pt;}
.h6{height:1122.560000pt;}
.h0{height:1122.666667pt;}
.w3{width:146.240000pt;}
.w4{width:793.701333pt;}
.w2{width:793.760000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:22.000000pt;}
.x21{left:56.664000pt;}
.x23{left:62.371067pt;}
.x20{left:75.533333pt;}
.x12{left:94.912000pt;}
.xf{left:113.472000pt;}
.x1a{left:124.300000pt;}
.x13{left:136.634667pt;}
.x16{left:141.626667pt;}
.x18{left:188.866667pt;}
.x19{left:236.066667pt;}
.xb{left:293.466667pt;}
.xa{left:304.933333pt;}
.x10{left:332.226667pt;}
.xe{left:352.666667pt;}
.x4{left:356.666667pt;}
.x14{left:396.933333pt;}
.x11{left:415.906667pt;}
.x22{left:434.658667pt;}
.x9{left:436.440000pt;}
.x6{left:487.933333pt;}
.xd{left:513.000000pt;}
.x2{left:517.000000pt;}
.x8{left:525.800000pt;}
.xc{left:571.400000pt;}
.x1e{left:638.600533pt;}
.x1d{left:653.441733pt;}
.x1c{left:655.340133pt;}
.x5{left:668.106667pt;}
.x1{left:678.800000pt;}
.x1b{left:684.466667pt;}
.x15{left:691.960000pt;}
.x17{left:699.440000pt;}
.x7{left:737.066667pt;}
.x3{left:741.066667pt;}
.x1f{left:753.095333pt;}
}




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