
    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_f9822e973957cd75ddd65f5d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3d6d47dcca89748daf8d52f3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6bf4a95f1cb77420d0ca6ad8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_ba96e7486d7f8b9163d47bdc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.871094;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_ad7d5f7618b2bea443642114.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.728516;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_dbf9f611acde654a0bcbcb22.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.682617;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_72835bcacf56b4b7cfbb91f5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.896973;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_4d4447636aae5ce0004fd8c1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.894531;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_717efd35064a32b8de85a4e7.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7d68a5da59541a90b26fc8a2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.693359;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_1f04862e850c73770a4ca486.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7dade6fcd282895d78b0c99f.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9a52136ffc24da041a7d68b0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_3e20c69d0f558b8549067975.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_ce87c3f9a200dd6cf72cc3c8.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_a03641e26f759bf363ac0f4b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_30b1b653132b998b851aec1b.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_7365b9949604565011dd108a.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_a03641e26f759bf363ac0f4b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_6554841ca4a124316f4456b3.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_c6fdcba067728ca1d60714ea.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_bf3e8c5b78c81e915547db53.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.907227;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_a03641e26f759bf363ac0f4b.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_108f412596d6e110005c7fd7.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_6528dbaa6aeab75f29d0038c.woff2')format("woff");}.ff19{font-family:ff19;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;}
.m2{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-30.240000px;}
.v4{vertical-align:-24.480000px;}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.v3{vertical-align:24.480000px;}
.ls1f{letter-spacing:-3.528000px;}
.ls1e{letter-spacing:-3.384000px;}
.ls22{letter-spacing:-3.168000px;}
.ls23{letter-spacing:-3.024000px;}
.ls21{letter-spacing:-2.376000px;}
.ls38{letter-spacing:-1.958400px;}
.ls2e{letter-spacing:-1.900800px;}
.ls29{letter-spacing:-1.843200px;}
.ls49{letter-spacing:-1.728000px;}
.ls37{letter-spacing:-1.612800px;}
.ls24{letter-spacing:-1.584000px;}
.ls35{letter-spacing:-1.555200px;}
.ls43{letter-spacing:-1.440000px;}
.ls51{letter-spacing:-1.296000px;}
.ls2f{letter-spacing:-1.152000px;}
.ls2c{letter-spacing:-1.094400px;}
.ls33{letter-spacing:-0.979200px;}
.ls39{letter-spacing:-0.936000px;}
.ls28{letter-spacing:-0.864000px;}
.ls20{letter-spacing:-0.792000px;}
.ls1d{letter-spacing:-0.720000px;}
.ls34{letter-spacing:-0.691200px;}
.ls19{letter-spacing:-0.648000px;}
.ls36{letter-spacing:-0.576000px;}
.ls3d{letter-spacing:-0.547200px;}
.ls27{letter-spacing:-0.518400px;}
.ls4b{letter-spacing:-0.504000px;}
.ls2a{letter-spacing:-0.403200px;}
.ls4f{letter-spacing:-0.330336px;}
.ls1a{letter-spacing:-0.288000px;}
.ls54{letter-spacing:-0.251856px;}
.ls2d{letter-spacing:-0.230400px;}
.ls2b{letter-spacing:-0.172800px;}
.ls1b{letter-spacing:-0.144000px;}
.ls26{letter-spacing:-0.115200px;}
.ls18{letter-spacing:-0.015552px;}
.ls16{letter-spacing:-0.007776px;}
.ls3e{letter-spacing:-0.007200px;}
.ls44{letter-spacing:-0.006000px;}
.ls17{letter-spacing:0.000000px;}
.ls52{letter-spacing:0.014256px;}
.ls1{letter-spacing:0.023328px;}
.ls14{letter-spacing:0.129600px;}
.ls42{letter-spacing:0.144000px;}
.ls40{letter-spacing:0.266400px;}
.ls1c{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.344160px;}
.ls31{letter-spacing:0.345600px;}
.ls3f{letter-spacing:0.403200px;}
.ls32{letter-spacing:0.460800px;}
.ls47{letter-spacing:0.496800px;}
.ls25{letter-spacing:0.504000px;}
.ls30{letter-spacing:0.576000px;}
.ls4{letter-spacing:0.603360px;}
.ls45{letter-spacing:0.648000px;}
.ls3{letter-spacing:0.720000px;}
.ls53{letter-spacing:0.722304px;}
.ls3b{letter-spacing:1.022400px;}
.ls48{letter-spacing:1.065600px;}
.ls10{letter-spacing:1.152000px;}
.ls41{letter-spacing:1.425600px;}
.ls3a{letter-spacing:1.562400px;}
.lsc{letter-spacing:1.699200px;}
.ls3c{letter-spacing:1.980000px;}
.ls50{letter-spacing:2.160000px;}
.ls4a{letter-spacing:2.635200px;}
.ls4d{letter-spacing:3.600000px;}
.lse{letter-spacing:3.960000px;}
.ls15{letter-spacing:5.040000px;}
.lsd{letter-spacing:5.544000px;}
.ls0{letter-spacing:6.469632px;}
.ls2{letter-spacing:6.485184px;}
.lsf{letter-spacing:7.156800px;}
.ls11{letter-spacing:10.296000px;}
.ls4c{letter-spacing:10.800000px;}
.ls13{letter-spacing:11.880000px;}
.ls12{letter-spacing:13.392000px;}
.lsa{letter-spacing:22.824000px;}
.lsb{letter-spacing:24.408000px;}
.ls8{letter-spacing:25.992000px;}
.ls7{letter-spacing:27.576000px;}
.ls6{letter-spacing:29.160000px;}
.ls9{letter-spacing:30.521455px;}
.ls46{letter-spacing:33.264000px;}
.ls4e{letter-spacing:105.264000px;}
.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;}
}
.ws28{word-spacing:-19.980000px;}
.ws2d{word-spacing:-19.699200px;}
.ws26{word-spacing:-19.562400px;}
.ws0{word-spacing:-19.463328px;}
.ws1{word-spacing:-19.440000px;}
.ws2f{word-spacing:-19.425600px;}
.ws27{word-spacing:-19.022400px;}
.ws3f{word-spacing:-18.720000px;}
.ws35{word-spacing:-18.648000px;}
.wsd{word-spacing:-18.504000px;}
.ws37{word-spacing:-18.496800px;}
.ws2c{word-spacing:-18.403200px;}
.ws6{word-spacing:-18.288000px;}
.ws2e{word-spacing:-18.266400px;}
.ws30{word-spacing:-18.144000px;}
.ws2a{word-spacing:-18.129600px;}
.ws3{word-spacing:-18.000000px;}
.ws2b{word-spacing:-17.992800px;}
.ws5{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.712000px;}
.ws38{word-spacing:-17.496000px;}
.ws29{word-spacing:-17.452800px;}
.ws2{word-spacing:-17.352000px;}
.ws9{word-spacing:-17.208000px;}
.ws32{word-spacing:-17.064000px;}
.ws3c{word-spacing:-16.704000px;}
.ws31{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.416000px;}
.ws36{word-spacing:-16.272000px;}
.wsa{word-spacing:-15.624000px;}
.wse{word-spacing:-14.976000px;}
.wsb{word-spacing:-14.832000px;}
.ws7{word-spacing:-14.616000px;}
.ws8{word-spacing:-14.472000px;}
.ws1c{word-spacing:-13.593600px;}
.ws33{word-spacing:-13.494000px;}
.ws1e{word-spacing:-13.478400px;}
.ws1d{word-spacing:-13.363200px;}
.ws23{word-spacing:-13.305600px;}
.ws10{word-spacing:-12.902400px;}
.ws15{word-spacing:-12.844800px;}
.ws18{word-spacing:-12.787200px;}
.ws19{word-spacing:-12.729600px;}
.ws14{word-spacing:-12.614400px;}
.ws3e{word-spacing:-12.602304px;}
.ws11{word-spacing:-12.499200px;}
.ws22{word-spacing:-12.441600px;}
.ws20{word-spacing:-12.326400px;}
.ws12{word-spacing:-12.153600px;}
.ws1f{word-spacing:-12.038400px;}
.ws16{word-spacing:-11.923200px;}
.ws3d{word-spacing:-11.894256px;}
.ws3b{word-spacing:-11.880000px;}
.ws1b{word-spacing:-11.865600px;}
.ws21{word-spacing:-11.462400px;}
.ws24{word-spacing:-11.404800px;}
.ws13{word-spacing:-11.174400px;}
.ws1a{word-spacing:-11.116800px;}
.ws25{word-spacing:-11.059200px;}
.ws3a{word-spacing:-9.758304px;}
.wsf{word-spacing:-8.786880px;}
.ws39{word-spacing:-0.072000px;}
.ws17{word-spacing:-0.054720px;}
.ws34{word-spacing:0.000000px;}
._7{margin-left:-13.638816px;}
._12{margin-left:-11.923200px;}
._9{margin-left:-8.092800px;}
._18{margin-left:-6.488640px;}
._6{margin-left:-4.979520px;}
._5{margin-left:-3.888000px;}
._4{margin-left:-1.886400px;}
._3{width:1.555200px;}
._20{width:2.580192px;}
._0{width:3.584736px;}
._2{width:5.279904px;}
._1{width:6.454080px;}
._14{width:7.735304px;}
._13{width:9.599165px;}
._8{width:10.800000px;}
._1d{width:11.964672px;}
._a{width:13.307328px;}
._1e{width:14.321088px;}
._1a{width:15.566400px;}
._19{width:17.265600px;}
._b{width:19.584000px;}
._c{width:21.168000px;}
._17{width:22.363200px;}
._e{width:23.400000px;}
._d{width:24.480000px;}
._f{width:25.531200px;}
._16{width:27.532800px;}
._15{width:28.815264px;}
._26{width:29.822400px;}
._11{width:31.046400px;}
._23{width:33.840000px;}
._25{width:35.856000px;}
._27{width:37.368000px;}
._28{width:38.923200px;}
._22{width:41.990400px;}
._21{width:43.185600px;}
._1f{width:45.360000px;}
._1c{width:47.304000px;}
._1b{width:48.312000px;}
._10{width:53.784000px;}
._24{width:193.680000px;}
._29{width:846.000000px;}
.fc7{color:transparent;}
.fc5{color:rgb(0,0,255);}
.fc8{color:rgb(51,122,183);}
.fc3{color:rgb(51,122,183);}
.fc6{color:rgb(33,33,33);}
.fc4{color:rgb(32,32,32);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(33,33,33);}
.fs2{font-size:38.880000px;}
.fs9{font-size:44.640000px;}
.fs5{font-size:47.520000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:54.720000px;}
.fs3{font-size:57.600000px;}
.fs8{font-size:60.480000px;}
.fs7{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y85{bottom:3.960045px;}
.y87{bottom:9.360000px;}
.y13e{bottom:24.667500px;}
.y11a{bottom:24.688800px;}
.ydf{bottom:24.787500px;}
.y11f{bottom:24.808800px;}
.yd1{bottom:24.847500px;}
.y12a{bottom:24.868800px;}
.yee{bottom:24.928800px;}
.yc9{bottom:24.967500px;}
.y10d{bottom:24.988800px;}
.y139{bottom:25.087500px;}
.yd7{bottom:25.147500px;}
.y127{bottom:25.168800px;}
.yea{bottom:25.228800px;}
.y135{bottom:25.267500px;}
.y109{bottom:25.288800px;}
.ye8{bottom:25.348800px;}
.ye1{bottom:25.387500px;}
.y107{bottom:25.408800px;}
.yd3{bottom:25.447500px;}
.ye6{bottom:25.468800px;}
.yf0{bottom:25.528800px;}
.y13c{bottom:25.567500px;}
.y10f{bottom:25.588800px;}
.yff{bottom:25.708800px;}
.ycf{bottom:25.747500px;}
.y129{bottom:25.768800px;}
.yec{bottom:25.828800px;}
.ycd{bottom:25.867500px;}
.y10b{bottom:25.888800px;}
.y137{bottom:25.927500px;}
.ycb{bottom:25.987500px;}
.yd5{bottom:26.047500px;}
.y126{bottom:26.068800px;}
.yfb{bottom:26.128800px;}
.y133{bottom:31.768800px;}
.y84{bottom:36.000045px;}
.yc5{bottom:56.647500px;}
.y26{bottom:56.848800px;}
.yf8{bottom:66.328800px;}
.y117{bottom:66.388800px;}
.y130{bottom:66.568800px;}
.yf2{bottom:66.628800px;}
.y141{bottom:66.667500px;}
.y111{bottom:66.688800px;}
.y106{bottom:66.808800px;}
.y13b{bottom:66.967500px;}
.y12f{bottom:67.168800px;}
.y103{bottom:67.228800px;}
.y12c{bottom:67.468800px;}
.y83{bottom:67.680038px;}
.y82{bottom:99.360030px;}
.y105{bottom:108.208800px;}
.yc1{bottom:113.008800px;}
.y132{bottom:114.000000px;}
.ya5{bottom:118.408800px;}
.ydd{bottom:124.500000px;}
.y43{bottom:129.568800px;}
.yb0{bottom:130.648800px;}
.y81{bottom:131.040030px;}
.y21{bottom:134.968800px;}
.y11c{bottom:135.000000px;}
.y59{bottom:143.608800px;}
.y8c{bottom:150.808800px;}
.yc0{bottom:154.408800px;}
.y131{bottom:156.000000px;}
.ya4{bottom:159.808800px;}
.y6f{bottom:161.248800px;}
.y80{bottom:163.080030px;}
.y20{bottom:165.928800px;}
.ydc{bottom:166.500000px;}
.y42{bottom:170.968800px;}
.yaa{bottom:172.048800px;}
.y11b{bottom:177.000000px;}
.y58{bottom:185.008800px;}
.y8b{bottom:192.208800px;}
.y7f{bottom:194.760030px;}
.ybf{bottom:195.808800px;}
.y1f{bottom:196.888800px;}
.y11e{bottom:198.000000px;}
.y6e{bottom:202.648800px;}
.ydb{bottom:207.000000px;}
.yc3{bottom:208.048800px;}
.y41{bottom:212.368800px;}
.ya3{bottom:213.448800px;}
.y119{bottom:219.000000px;}
.y143{bottom:222.967500px;}
.y57{bottom:226.408800px;}
.y7e{bottom:226.440000px;}
.y1e{bottom:227.848800px;}
.y8a{bottom:233.608800px;}
.yfe{bottom:238.500000px;}
.y11d{bottom:240.000000px;}
.y6d{bottom:244.048800px;}
.yda{bottom:249.000000px;}
.ybe{bottom:249.448800px;}
.y70{bottom:249.808800px;}
.y40{bottom:253.768800px;}
.ya2{bottom:254.848800px;}
.y7d{bottom:258.120000px;}
.y1d{bottom:259.168800px;}
.y118{bottom:259.500000px;}
.y142{bottom:264.367500px;}
.ya9{bottom:266.728800px;}
.y56{bottom:267.808800px;}
.y89{bottom:275.008800px;}
.yfd{bottom:280.500000px;}
.y6c{bottom:285.448800px;}
.y7c{bottom:289.800000px;}
.y1c{bottom:290.128800px;}
.ybd{bottom:290.848800px;}
.yd9{bottom:291.000000px;}
.y3f{bottom:295.168800px;}
.y116{bottom:301.500000px;}
.ya1{bottom:308.128800px;}
.y55{bottom:309.208800px;}
.y88{bottom:316.408800px;}
.y1b{bottom:321.088800px;}
.y7b{bottom:321.840000px;}
.yfc{bottom:322.500000px;}
.y6b{bottom:326.848800px;}
.yd8{bottom:331.500000px;}
.ybc{bottom:332.248800px;}
.y3e{bottom:336.568800px;}
.ya0{bottom:349.528800px;}
.y54{bottom:350.608800px;}
.y1a{bottom:353.488800px;}
.y7a{bottom:353.520000px;}
.yfa{bottom:363.000000px;}
.y140{bottom:364.500000px;}
.y6a{bottom:368.248800px;}
.ybb{bottom:373.288800px;}
.yd6{bottom:373.500000px;}
.y3d{bottom:377.968800px;}
.y115{bottom:384.000000px;}
.y19{bottom:384.448800px;}
.y79{bottom:385.200000px;}
.yc2{bottom:385.528800px;}
.y9f{bottom:390.928800px;}
.y53{bottom:392.008800px;}
.ya8{bottom:402.808800px;}
.yf9{bottom:405.000000px;}
.y13f{bottom:406.500000px;}
.y69{bottom:409.288800px;}
.yd4{bottom:414.000000px;}
.y18{bottom:415.408800px;}
.y78{bottom:416.880000px;}
.y3c{bottom:419.368800px;}
.yba{bottom:426.928800px;}
.y52{bottom:433.408800px;}
.y9e{bottom:444.208800px;}
.y12e{bottom:445.500000px;}
.yf7{bottom:447.000000px;}
.y17{bottom:447.448800px;}
.y13d{bottom:448.500000px;}
.y77{bottom:448.920000px;}
.y68{bottom:450.688800px;}
.yd2{bottom:456.000000px;}
.y3b{bottom:460.768800px;}
.y114{bottom:466.500000px;}
.yb9{bottom:468.328800px;}
.y51{bottom:474.808800px;}
.y16{bottom:478.408800px;}
.y76{bottom:480.600000px;}
.y9d{bottom:485.608800px;}
.y13a{bottom:489.000000px;}
.y67{bottom:492.088800px;}
.yaf{bottom:497.488800px;}
.yd0{bottom:498.000000px;}
.y3a{bottom:502.168800px;}
.y113{bottom:508.500000px;}
.y15{bottom:509.368800px;}
.yb8{bottom:509.728800px;}
.y75{bottom:512.280000px;}
.y50{bottom:516.208800px;}
.y9c{bottom:527.008800px;}
.yf6{bottom:529.500000px;}
.y66{bottom:533.488800px;}
.yce{bottom:538.500000px;}
.yae{bottom:538.888800px;}
.y14{bottom:540.688800px;}
.y39{bottom:543.568800px;}
.y74{bottom:543.960000px;}
.y112{bottom:549.000000px;}
.yb7{bottom:551.128800px;}
.y4f{bottom:557.608800px;}
.y9b{bottom:568.408800px;}
.y12d{bottom:570.000000px;}
.y138{bottom:573.000000px;}
.y73{bottom:575.640000px;}
.y13{bottom:577.048800px;}
.ya7{bottom:580.288800px;}
.ycc{bottom:580.500000px;}
.y38{bottom:584.968800px;}
.y65{bottom:587.128800px;}
.y110{bottom:591.000000px;}
.y4e{bottom:599.008800px;}
.yb6{bottom:604.408800px;}
.y72{bottom:607.680000px;}
.yf5{bottom:612.000000px;}
.y136{bottom:615.000000px;}
.ye3{bottom:616.500000px;}
.y12{bottom:621.328800px;}
.y9a{bottom:621.688800px;}
.yca{bottom:622.500000px;}
.y37{bottom:626.368800px;}
.y64{bottom:628.528800px;}
.yad{bottom:633.928800px;}
.y71{bottom:639.360000px;}
.y4d{bottom:640.408800px;}
.yb5{bottom:645.808800px;}
.y11{bottom:648.328800px;}
.y12b{bottom:652.500000px;}
.yf4{bottom:654.000000px;}
.ye2{bottom:658.500000px;}
.y99{bottom:663.088800px;}
.yc8{bottom:666.000000px;}
.y36{bottom:667.768800px;}
.y63{bottom:669.928800px;}
.y10e{bottom:673.500000px;}
.yac{bottom:675.328800px;}
.y10{bottom:681.088800px;}
.y4c{bottom:681.808800px;}
.yb4{bottom:687.208800px;}
.yf3{bottom:694.500000px;}
.ye0{bottom:700.500000px;}
.y35{bottom:701.968800px;}
.yf{bottom:710.968800px;}
.y62{bottom:711.328800px;}
.y10c{bottom:715.500000px;}
.y98{bottom:716.728800px;}
.y4b{bottom:723.208800px;}
.y34{bottom:724.288800px;}
.y134{bottom:725.887500px;}
.yb3{bottom:728.608800px;}
.yc7{bottom:733.087500px;}
.ye{bottom:735.448800px;}
.yf1{bottom:736.500000px;}
.yde{bottom:742.500000px;}
.y61{bottom:752.728800px;}
.y10a{bottom:756.000000px;}
.y97{bottom:758.128800px;}
.y4a{bottom:764.608800px;}
.y33{bottom:765.688800px;}
.yc6{bottom:767.287500px;}
.yd{bottom:770.008800px;}
.y128{bottom:777.000000px;}
.yb2{bottom:781.888800px;}
.y60{bottom:794.128800px;}
.y32{bottom:795.568800px;}
.y108{bottom:798.000000px;}
.yc{bottom:803.128800px;}
.y49{bottom:806.008800px;}
.y96{bottom:811.408800px;}
.yef{bottom:819.000000px;}
.yc4{bottom:823.087500px;}
.yb1{bottom:823.288800px;}
.y31{bottom:826.888800px;}
.yb{bottom:829.048800px;}
.y5f{bottom:835.528800px;}
.y104{bottom:840.000000px;}
.y48{bottom:847.408800px;}
.y95{bottom:852.808800px;}
.y30{bottom:857.848800px;}
.y125{bottom:859.500000px;}
.ya{bottom:860.008800px;}
.yed{bottom:861.000000px;}
.y86{bottom:864.328800px;}
.yab{bottom:864.688800px;}
.y5e{bottom:876.928800px;}
.y9{bottom:884.128800px;}
.y2f{bottom:888.808800px;}
.y94{bottom:894.208800px;}
.yeb{bottom:901.500000px;}
.y124{bottom:903.000000px;}
.ya6{bottom:906.088800px;}
.y8{bottom:910.408800px;}
.y5d{bottom:918.328800px;}
.y2e{bottom:919.768800px;}
.y47{bottom:930.208800px;}
.y7{bottom:934.888800px;}
.ye9{bottom:943.500000px;}
.y123{bottom:945.000000px;}
.y93{bottom:947.488800px;}
.y2d{bottom:951.088800px;}
.y5c{bottom:959.728800px;}
.y6{bottom:960.808800px;}
.y102{bottom:964.500000px;}
.y46{bottom:971.608800px;}
.y2c{bottom:982.048800px;}
.ye7{bottom:985.500000px;}
.y92{bottom:988.888800px;}
.y5{bottom:997.168800px;}
.y5b{bottom:1001.128800px;}
.y2b{bottom:1013.008800px;}
.ye5{bottom:1027.500000px;}
.y122{bottom:1033.168800px;}
.y4{bottom:1039.288800px;}
.y5a{bottom:1042.528800px;}
.y2a{bottom:1043.968800px;}
.y45{bottom:1054.408800px;}
.y90{bottom:1056.568800px;}
.y101{bottom:1068.448800px;}
.y121{bottom:1074.568800px;}
.y29{bottom:1075.288800px;}
.y8f{bottom:1077.808800px;}
.y3{bottom:1079.248800px;}
.y91{bottom:1083.928800px;}
.ye4{bottom:1095.448800px;}
.y44{bottom:1095.808800px;}
.y8e{bottom:1098.328800px;}
.y100{bottom:1103.008800px;}
.y2{bottom:1105.531680px;}
.y28{bottom:1106.248800px;}
.y120{bottom:1116.328800px;}
.y1{bottom:1127.848800px;}
.y27{bottom:1137.208800px;}
.y8d{bottom:1137.568800px;}
.y25{bottom:1193.008800px;}
.y24{bottom:1203.162450px;}
.y23{bottom:1219.362450px;}
.y22{bottom:1235.562000px;}
.h4{height:26.426250px;}
.h10{height:27.000000px;}
.h11{height:30.341250px;}
.h6{height:32.437969px;}
.h1c{height:32.994844px;}
.hb{height:37.520508px;}
.ha{height:37.522308px;}
.h5{height:39.909375px;}
.hf{height:41.904844px;}
.h16{height:42.000000px;}
.h17{height:43.500000px;}
.h15{height:44.149219px;}
.hc{height:45.895781px;}
.h7{height:48.796875px;}
.h9{height:49.042969px;}
.hd{height:49.992188px;}
.h8{height:50.027344px;}
.h2{height:52.700625px;}
.h18{height:57.474844px;}
.h12{height:57.498047px;}
.h3{height:71.627344px;}
.h19{height:84.000000px;}
.h1b{height:85.500000px;}
.h1a{height:126.000000px;}
.he{height:654.120000px;}
.h13{height:892.913400px;}
.h14{height:893.250000px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w10{width:18.000000px;}
.wa{width:19.500000px;}
.w18{width:21.000000px;}
.w15{width:48.000000px;}
.w1e{width:49.500000px;}
.w3{width:50.040000px;}
.w30{width:51.000000px;}
.w3c{width:52.500000px;}
.w9{width:54.000000px;}
.w3e{width:55.500000px;}
.w44{width:57.000000px;}
.w13{width:58.500000px;}
.w39{width:60.000000px;}
.w1f{width:61.500000px;}
.w43{width:63.000000px;}
.w14{width:64.500000px;}
.w12{width:66.000000px;}
.w42{width:67.500000px;}
.w16{width:69.000000px;}
.w25{width:70.500000px;}
.w38{width:73.500000px;}
.w2f{width:75.000000px;}
.w28{width:76.500000px;}
.w37{width:78.000000px;}
.w31{width:79.500000px;}
.w3a{width:81.000000px;}
.w29{width:87.000000px;}
.w26{width:88.500000px;}
.we{width:100.500000px;}
.w27{width:105.000000px;}
.w6{width:108.000000px;}
.w3b{width:109.500000px;}
.w7{width:118.500000px;}
.w24{width:120.000000px;}
.wd{width:121.500000px;}
.w11{width:123.000000px;}
.wc{width:129.000000px;}
.w2b{width:132.000000px;}
.wf{width:133.500000px;}
.w33{width:142.500000px;}
.w2e{width:150.000000px;}
.w36{width:160.500000px;}
.w1b{width:162.000000px;}
.w21{width:165.000000px;}
.w1d{width:178.500000px;}
.w2a{width:183.000000px;}
.w19{width:205.500000px;}
.w17{width:225.000000px;}
.w23{width:265.500000px;}
.wb{width:271.500000px;}
.w22{width:276.000000px;}
.w35{width:298.500000px;}
.w2c{width:301.500000px;}
.w34{width:313.500000px;}
.w2d{width:318.000000px;}
.w41{width:360.000000px;}
.w40{width:369.000000px;}
.w1c{width:444.000000px;}
.w8{width:469.500000px;}
.w20{width:621.000000px;}
.w3f{width:744.000000px;}
.w2{width:782.047350px;}
.w32{width:784.500000px;}
.w3d{width:787.500000px;}
.w0{width:892.913250px;}
.w1{width:893.250000px;}
.w45{width:927.000000px;}
.w1a{width:1033.500000px;}
.w4{width:1262.834700px;}
.w5{width:1263.000000px;}
.x0{left:0.000000px;}
.x35{left:4.605846px;}
.x6d{left:6.705900px;}
.x15{left:8.625846px;}
.x1b{left:9.825846px;}
.x13{left:11.100000px;}
.x37{left:12.285846px;}
.x39{left:14.145846px;}
.x47{left:15.285900px;}
.x32{left:16.305846px;}
.x38{left:17.325846px;}
.x46{left:18.825900px;}
.x2f{left:20.865846px;}
.x2e{left:22.005846px;}
.x4f{left:23.625900px;}
.x2c{left:24.885846px;}
.x19{left:27.045846px;}
.x3b{left:28.425846px;}
.x27{left:29.985846px;}
.x21{left:32.385846px;}
.x2b{left:33.405846px;}
.x45{left:34.665900px;}
.x3a{left:35.745846px;}
.x53{left:37.725900px;}
.x1e{left:39.645846px;}
.x28{left:41.865846px;}
.x54{left:43.005900px;}
.x24{left:44.505846px;}
.x55{left:47.265900px;}
.x56{left:50.325900px;}
.x4d{left:51.765900px;}
.x7{left:54.205500px;}
.x65{left:56.025900px;}
.x52{left:59.325900px;}
.x63{left:60.585900px;}
.x5c{left:76.845900px;}
.x57{left:87.000000px;}
.x71{left:89.685846px;}
.x1d{left:91.545846px;}
.x3e{left:94.065900px;}
.x4c{left:98.385900px;}
.x10{left:102.945900px;}
.x58{left:105.000000px;}
.x1{left:108.705900px;}
.x11{left:110.865900px;}
.xd{left:113.745900px;}
.x2{left:117.705900px;}
.x12{left:123.105900px;}
.x3c{left:124.500000px;}
.x48{left:126.000000px;}
.x36{left:127.500000px;}
.x14{left:144.705900px;}
.xf{left:151.185900px;}
.xe{left:161.625900px;}
.x5{left:175.665900px;}
.x8{left:178.185900px;}
.x3{left:195.825900px;}
.xa{left:201.585900px;}
.xb{left:212.745900px;}
.x16{left:214.500000px;}
.x59{left:235.500000px;}
.x64{left:246.000000px;}
.x3d{left:285.000000px;}
.x49{left:289.500000px;}
.x5d{left:292.500000px;}
.xc{left:303.825900px;}
.x68{left:322.500000px;}
.x17{left:331.500000px;}
.x6e{left:339.045846px;}
.x3f{left:352.500000px;}
.x72{left:355.500000px;}
.x5e{left:366.000000px;}
.x2d{left:394.500000px;}
.x40{left:400.500000px;}
.x4e{left:408.000000px;}
.x73{left:417.000000px;}
.x41{left:448.500000px;}
.x1f{left:459.000000px;}
.x20{left:477.000000px;}
.x74{left:480.000000px;}
.x5f{left:486.000000px;}
.x42{left:501.000000px;}
.x69{left:511.500000px;}
.x30{left:534.000000px;}
.x5a{left:535.500000px;}
.x6{left:545.385900px;}
.x5b{left:553.500000px;}
.x66{left:558.000000px;}
.x4a{left:564.000000px;}
.x67{left:576.000000px;}
.x9{left:577.065900px;}
.x4b{left:582.000000px;}
.x22{left:597.000000px;}
.x75{left:600.000000px;}
.x43{left:607.500000px;}
.x23{left:615.000000px;}
.x4{left:624.585900px;}
.x60{left:631.500000px;}
.x6a{left:634.500000px;}
.x6f{left:657.000000px;}
.x44{left:667.500000px;}
.x31{left:672.000000px;}
.x70{left:673.500000px;}
.x50{left:685.500000px;}
.x61{left:706.500000px;}
.x6b{left:714.000000px;}
.x76{left:730.500000px;}
.x25{left:735.000000px;}
.x26{left:753.000000px;}
.x51{left:760.500000px;}
.x77{left:787.500000px;}
.x18{left:799.500000px;}
.x6c{left:822.000000px;}
.x62{left:823.500000px;}
.x1a{left:852.000000px;}
.x1c{left:870.000000px;}
.x78{left:927.000000px;}
.x33{left:937.500000px;}
.x79{left:984.000000px;}
.x29{left:1002.000000px;}
.x2a{left:1018.500000px;}
.x34{left:1075.500000px;}
@media print{
.v5{vertical-align:-26.880000pt;}
.v4{vertical-align:-21.760000pt;}
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.v3{vertical-align:21.760000pt;}
.ls1f{letter-spacing:-3.136000pt;}
.ls1e{letter-spacing:-3.008000pt;}
.ls22{letter-spacing:-2.816000pt;}
.ls23{letter-spacing:-2.688000pt;}
.ls21{letter-spacing:-2.112000pt;}
.ls38{letter-spacing:-1.740800pt;}
.ls2e{letter-spacing:-1.689600pt;}
.ls29{letter-spacing:-1.638400pt;}
.ls49{letter-spacing:-1.536000pt;}
.ls37{letter-spacing:-1.433600pt;}
.ls24{letter-spacing:-1.408000pt;}
.ls35{letter-spacing:-1.382400pt;}
.ls43{letter-spacing:-1.280000pt;}
.ls51{letter-spacing:-1.152000pt;}
.ls2f{letter-spacing:-1.024000pt;}
.ls2c{letter-spacing:-0.972800pt;}
.ls33{letter-spacing:-0.870400pt;}
.ls39{letter-spacing:-0.832000pt;}
.ls28{letter-spacing:-0.768000pt;}
.ls20{letter-spacing:-0.704000pt;}
.ls1d{letter-spacing:-0.640000pt;}
.ls34{letter-spacing:-0.614400pt;}
.ls19{letter-spacing:-0.576000pt;}
.ls36{letter-spacing:-0.512000pt;}
.ls3d{letter-spacing:-0.486400pt;}
.ls27{letter-spacing:-0.460800pt;}
.ls4b{letter-spacing:-0.448000pt;}
.ls2a{letter-spacing:-0.358400pt;}
.ls4f{letter-spacing:-0.293632pt;}
.ls1a{letter-spacing:-0.256000pt;}
.ls54{letter-spacing:-0.223872pt;}
.ls2d{letter-spacing:-0.204800pt;}
.ls2b{letter-spacing:-0.153600pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls26{letter-spacing:-0.102400pt;}
.ls18{letter-spacing:-0.013824pt;}
.ls16{letter-spacing:-0.006912pt;}
.ls3e{letter-spacing:-0.006400pt;}
.ls44{letter-spacing:-0.005333pt;}
.ls17{letter-spacing:0.000000pt;}
.ls52{letter-spacing:0.012672pt;}
.ls1{letter-spacing:0.020736pt;}
.ls14{letter-spacing:0.115200pt;}
.ls42{letter-spacing:0.128000pt;}
.ls40{letter-spacing:0.236800pt;}
.ls1c{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.305920pt;}
.ls31{letter-spacing:0.307200pt;}
.ls3f{letter-spacing:0.358400pt;}
.ls32{letter-spacing:0.409600pt;}
.ls47{letter-spacing:0.441600pt;}
.ls25{letter-spacing:0.448000pt;}
.ls30{letter-spacing:0.512000pt;}
.ls4{letter-spacing:0.536320pt;}
.ls45{letter-spacing:0.576000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls53{letter-spacing:0.642048pt;}
.ls3b{letter-spacing:0.908800pt;}
.ls48{letter-spacing:0.947200pt;}
.ls10{letter-spacing:1.024000pt;}
.ls41{letter-spacing:1.267200pt;}
.ls3a{letter-spacing:1.388800pt;}
.lsc{letter-spacing:1.510400pt;}
.ls3c{letter-spacing:1.760000pt;}
.ls50{letter-spacing:1.920000pt;}
.ls4a{letter-spacing:2.342400pt;}
.ls4d{letter-spacing:3.200000pt;}
.lse{letter-spacing:3.520000pt;}
.ls15{letter-spacing:4.480000pt;}
.lsd{letter-spacing:4.928000pt;}
.ls0{letter-spacing:5.750784pt;}
.ls2{letter-spacing:5.764608pt;}
.lsf{letter-spacing:6.361600pt;}
.ls11{letter-spacing:9.152000pt;}
.ls4c{letter-spacing:9.600000pt;}
.ls13{letter-spacing:10.560000pt;}
.ls12{letter-spacing:11.904000pt;}
.lsa{letter-spacing:20.288000pt;}
.lsb{letter-spacing:21.696000pt;}
.ls8{letter-spacing:23.104000pt;}
.ls7{letter-spacing:24.512000pt;}
.ls6{letter-spacing:25.920000pt;}
.ls9{letter-spacing:27.130182pt;}
.ls46{letter-spacing:29.568000pt;}
.ls4e{letter-spacing:93.568000pt;}
.ws28{word-spacing:-17.760000pt;}
.ws2d{word-spacing:-17.510400pt;}
.ws26{word-spacing:-17.388800pt;}
.ws0{word-spacing:-17.300736pt;}
.ws1{word-spacing:-17.280000pt;}
.ws2f{word-spacing:-17.267200pt;}
.ws27{word-spacing:-16.908800pt;}
.ws3f{word-spacing:-16.640000pt;}
.ws35{word-spacing:-16.576000pt;}
.wsd{word-spacing:-16.448000pt;}
.ws37{word-spacing:-16.441600pt;}
.ws2c{word-spacing:-16.358400pt;}
.ws6{word-spacing:-16.256000pt;}
.ws2e{word-spacing:-16.236800pt;}
.ws30{word-spacing:-16.128000pt;}
.ws2a{word-spacing:-16.115200pt;}
.ws3{word-spacing:-16.000000pt;}
.ws2b{word-spacing:-15.993600pt;}
.ws5{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws38{word-spacing:-15.552000pt;}
.ws29{word-spacing:-15.513600pt;}
.ws2{word-spacing:-15.424000pt;}
.ws9{word-spacing:-15.296000pt;}
.ws32{word-spacing:-15.168000pt;}
.ws3c{word-spacing:-14.848000pt;}
.ws31{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.592000pt;}
.ws36{word-spacing:-14.464000pt;}
.wsa{word-spacing:-13.888000pt;}
.wse{word-spacing:-13.312000pt;}
.wsb{word-spacing:-13.184000pt;}
.ws7{word-spacing:-12.992000pt;}
.ws8{word-spacing:-12.864000pt;}
.ws1c{word-spacing:-12.083200pt;}
.ws33{word-spacing:-11.994667pt;}
.ws1e{word-spacing:-11.980800pt;}
.ws1d{word-spacing:-11.878400pt;}
.ws23{word-spacing:-11.827200pt;}
.ws10{word-spacing:-11.468800pt;}
.ws15{word-spacing:-11.417600pt;}
.ws18{word-spacing:-11.366400pt;}
.ws19{word-spacing:-11.315200pt;}
.ws14{word-spacing:-11.212800pt;}
.ws3e{word-spacing:-11.202048pt;}
.ws11{word-spacing:-11.110400pt;}
.ws22{word-spacing:-11.059200pt;}
.ws20{word-spacing:-10.956800pt;}
.ws12{word-spacing:-10.803200pt;}
.ws1f{word-spacing:-10.700800pt;}
.ws16{word-spacing:-10.598400pt;}
.ws3d{word-spacing:-10.572672pt;}
.ws3b{word-spacing:-10.560000pt;}
.ws1b{word-spacing:-10.547200pt;}
.ws21{word-spacing:-10.188800pt;}
.ws24{word-spacing:-10.137600pt;}
.ws13{word-spacing:-9.932800pt;}
.ws1a{word-spacing:-9.881600pt;}
.ws25{word-spacing:-9.830400pt;}
.ws3a{word-spacing:-8.674048pt;}
.wsf{word-spacing:-7.810560pt;}
.ws39{word-spacing:-0.064000pt;}
.ws17{word-spacing:-0.048640pt;}
.ws34{word-spacing:0.000000pt;}
._7{margin-left:-12.123392pt;}
._12{margin-left:-10.598400pt;}
._9{margin-left:-7.193600pt;}
._18{margin-left:-5.767680pt;}
._6{margin-left:-4.426240pt;}
._5{margin-left:-3.456000pt;}
._4{margin-left:-1.676800pt;}
._3{width:1.382400pt;}
._20{width:2.293504pt;}
._0{width:3.186432pt;}
._2{width:4.693248pt;}
._1{width:5.736960pt;}
._14{width:6.875826pt;}
._13{width:8.532591pt;}
._8{width:9.600000pt;}
._1d{width:10.635264pt;}
._a{width:11.828736pt;}
._1e{width:12.729856pt;}
._1a{width:13.836800pt;}
._19{width:15.347200pt;}
._b{width:17.408000pt;}
._c{width:18.816000pt;}
._17{width:19.878400pt;}
._e{width:20.800000pt;}
._d{width:21.760000pt;}
._f{width:22.694400pt;}
._16{width:24.473600pt;}
._15{width:25.613568pt;}
._26{width:26.508800pt;}
._11{width:27.596800pt;}
._23{width:30.080000pt;}
._25{width:31.872000pt;}
._27{width:33.216000pt;}
._28{width:34.598400pt;}
._22{width:37.324800pt;}
._21{width:38.387200pt;}
._1f{width:40.320000pt;}
._1c{width:42.048000pt;}
._1b{width:42.944000pt;}
._10{width:47.808000pt;}
._24{width:172.160000pt;}
._29{width:752.000000pt;}
.fs2{font-size:34.560000pt;}
.fs9{font-size:39.680000pt;}
.fs5{font-size:42.240000pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:48.640000pt;}
.fs3{font-size:51.200000pt;}
.fs8{font-size:53.760000pt;}
.fs7{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y85{bottom:3.520040pt;}
.y87{bottom:8.320000pt;}
.y13e{bottom:21.926667pt;}
.y11a{bottom:21.945600pt;}
.ydf{bottom:22.033333pt;}
.y11f{bottom:22.052267pt;}
.yd1{bottom:22.086667pt;}
.y12a{bottom:22.105600pt;}
.yee{bottom:22.158933pt;}
.yc9{bottom:22.193333pt;}
.y10d{bottom:22.212267pt;}
.y139{bottom:22.300000pt;}
.yd7{bottom:22.353333pt;}
.y127{bottom:22.372267pt;}
.yea{bottom:22.425600pt;}
.y135{bottom:22.460000pt;}
.y109{bottom:22.478933pt;}
.ye8{bottom:22.532267pt;}
.ye1{bottom:22.566667pt;}
.y107{bottom:22.585600pt;}
.yd3{bottom:22.620000pt;}
.ye6{bottom:22.638933pt;}
.yf0{bottom:22.692267pt;}
.y13c{bottom:22.726667pt;}
.y10f{bottom:22.745600pt;}
.yff{bottom:22.852267pt;}
.ycf{bottom:22.886667pt;}
.y129{bottom:22.905600pt;}
.yec{bottom:22.958933pt;}
.ycd{bottom:22.993333pt;}
.y10b{bottom:23.012267pt;}
.y137{bottom:23.046667pt;}
.ycb{bottom:23.100000pt;}
.yd5{bottom:23.153333pt;}
.y126{bottom:23.172267pt;}
.yfb{bottom:23.225600pt;}
.y133{bottom:28.238933pt;}
.y84{bottom:32.000040pt;}
.yc5{bottom:50.353333pt;}
.y26{bottom:50.532267pt;}
.yf8{bottom:58.958933pt;}
.y117{bottom:59.012267pt;}
.y130{bottom:59.172267pt;}
.yf2{bottom:59.225600pt;}
.y141{bottom:59.260000pt;}
.y111{bottom:59.278933pt;}
.y106{bottom:59.385600pt;}
.y13b{bottom:59.526667pt;}
.y12f{bottom:59.705600pt;}
.y103{bottom:59.758933pt;}
.y12c{bottom:59.972267pt;}
.y83{bottom:60.160033pt;}
.y82{bottom:88.320027pt;}
.y105{bottom:96.185600pt;}
.yc1{bottom:100.452267pt;}
.y132{bottom:101.333333pt;}
.ya5{bottom:105.252267pt;}
.ydd{bottom:110.666667pt;}
.y43{bottom:115.172267pt;}
.yb0{bottom:116.132267pt;}
.y81{bottom:116.480027pt;}
.y21{bottom:119.972267pt;}
.y11c{bottom:120.000000pt;}
.y59{bottom:127.652267pt;}
.y8c{bottom:134.052267pt;}
.yc0{bottom:137.252267pt;}
.y131{bottom:138.666667pt;}
.ya4{bottom:142.052267pt;}
.y6f{bottom:143.332267pt;}
.y80{bottom:144.960027pt;}
.y20{bottom:147.492267pt;}
.ydc{bottom:148.000000pt;}
.y42{bottom:151.972267pt;}
.yaa{bottom:152.932267pt;}
.y11b{bottom:157.333333pt;}
.y58{bottom:164.452267pt;}
.y8b{bottom:170.852267pt;}
.y7f{bottom:173.120027pt;}
.ybf{bottom:174.052267pt;}
.y1f{bottom:175.012267pt;}
.y11e{bottom:176.000000pt;}
.y6e{bottom:180.132267pt;}
.ydb{bottom:184.000000pt;}
.yc3{bottom:184.932267pt;}
.y41{bottom:188.772267pt;}
.ya3{bottom:189.732267pt;}
.y119{bottom:194.666667pt;}
.y143{bottom:198.193333pt;}
.y57{bottom:201.252267pt;}
.y7e{bottom:201.280000pt;}
.y1e{bottom:202.532267pt;}
.y8a{bottom:207.652267pt;}
.yfe{bottom:212.000000pt;}
.y11d{bottom:213.333333pt;}
.y6d{bottom:216.932267pt;}
.yda{bottom:221.333333pt;}
.ybe{bottom:221.732267pt;}
.y70{bottom:222.052267pt;}
.y40{bottom:225.572267pt;}
.ya2{bottom:226.532267pt;}
.y7d{bottom:229.440000pt;}
.y1d{bottom:230.372267pt;}
.y118{bottom:230.666667pt;}
.y142{bottom:234.993333pt;}
.ya9{bottom:237.092267pt;}
.y56{bottom:238.052267pt;}
.y89{bottom:244.452267pt;}
.yfd{bottom:249.333333pt;}
.y6c{bottom:253.732267pt;}
.y7c{bottom:257.600000pt;}
.y1c{bottom:257.892267pt;}
.ybd{bottom:258.532267pt;}
.yd9{bottom:258.666667pt;}
.y3f{bottom:262.372267pt;}
.y116{bottom:268.000000pt;}
.ya1{bottom:273.892267pt;}
.y55{bottom:274.852267pt;}
.y88{bottom:281.252267pt;}
.y1b{bottom:285.412267pt;}
.y7b{bottom:286.080000pt;}
.yfc{bottom:286.666667pt;}
.y6b{bottom:290.532267pt;}
.yd8{bottom:294.666667pt;}
.ybc{bottom:295.332267pt;}
.y3e{bottom:299.172267pt;}
.ya0{bottom:310.692267pt;}
.y54{bottom:311.652267pt;}
.y1a{bottom:314.212267pt;}
.y7a{bottom:314.240000pt;}
.yfa{bottom:322.666667pt;}
.y140{bottom:324.000000pt;}
.y6a{bottom:327.332267pt;}
.ybb{bottom:331.812267pt;}
.yd6{bottom:332.000000pt;}
.y3d{bottom:335.972267pt;}
.y115{bottom:341.333333pt;}
.y19{bottom:341.732267pt;}
.y79{bottom:342.400000pt;}
.yc2{bottom:342.692267pt;}
.y9f{bottom:347.492267pt;}
.y53{bottom:348.452267pt;}
.ya8{bottom:358.052267pt;}
.yf9{bottom:360.000000pt;}
.y13f{bottom:361.333333pt;}
.y69{bottom:363.812267pt;}
.yd4{bottom:368.000000pt;}
.y18{bottom:369.252267pt;}
.y78{bottom:370.560000pt;}
.y3c{bottom:372.772267pt;}
.yba{bottom:379.492267pt;}
.y52{bottom:385.252267pt;}
.y9e{bottom:394.852267pt;}
.y12e{bottom:396.000000pt;}
.yf7{bottom:397.333333pt;}
.y17{bottom:397.732267pt;}
.y13d{bottom:398.666667pt;}
.y77{bottom:399.040000pt;}
.y68{bottom:400.612267pt;}
.yd2{bottom:405.333333pt;}
.y3b{bottom:409.572267pt;}
.y114{bottom:414.666667pt;}
.yb9{bottom:416.292267pt;}
.y51{bottom:422.052267pt;}
.y16{bottom:425.252267pt;}
.y76{bottom:427.200000pt;}
.y9d{bottom:431.652267pt;}
.y13a{bottom:434.666667pt;}
.y67{bottom:437.412267pt;}
.yaf{bottom:442.212267pt;}
.yd0{bottom:442.666667pt;}
.y3a{bottom:446.372267pt;}
.y113{bottom:452.000000pt;}
.y15{bottom:452.772267pt;}
.yb8{bottom:453.092267pt;}
.y75{bottom:455.360000pt;}
.y50{bottom:458.852267pt;}
.y9c{bottom:468.452267pt;}
.yf6{bottom:470.666667pt;}
.y66{bottom:474.212267pt;}
.yce{bottom:478.666667pt;}
.yae{bottom:479.012267pt;}
.y14{bottom:480.612267pt;}
.y39{bottom:483.172267pt;}
.y74{bottom:483.520000pt;}
.y112{bottom:488.000000pt;}
.yb7{bottom:489.892267pt;}
.y4f{bottom:495.652267pt;}
.y9b{bottom:505.252267pt;}
.y12d{bottom:506.666667pt;}
.y138{bottom:509.333333pt;}
.y73{bottom:511.680000pt;}
.y13{bottom:512.932267pt;}
.ya7{bottom:515.812267pt;}
.ycc{bottom:516.000000pt;}
.y38{bottom:519.972267pt;}
.y65{bottom:521.892267pt;}
.y110{bottom:525.333333pt;}
.y4e{bottom:532.452267pt;}
.yb6{bottom:537.252267pt;}
.y72{bottom:540.160000pt;}
.yf5{bottom:544.000000pt;}
.y136{bottom:546.666667pt;}
.ye3{bottom:548.000000pt;}
.y12{bottom:552.292267pt;}
.y9a{bottom:552.612267pt;}
.yca{bottom:553.333333pt;}
.y37{bottom:556.772267pt;}
.y64{bottom:558.692267pt;}
.yad{bottom:563.492267pt;}
.y71{bottom:568.320000pt;}
.y4d{bottom:569.252267pt;}
.yb5{bottom:574.052267pt;}
.y11{bottom:576.292267pt;}
.y12b{bottom:580.000000pt;}
.yf4{bottom:581.333333pt;}
.ye2{bottom:585.333333pt;}
.y99{bottom:589.412267pt;}
.yc8{bottom:592.000000pt;}
.y36{bottom:593.572267pt;}
.y63{bottom:595.492267pt;}
.y10e{bottom:598.666667pt;}
.yac{bottom:600.292267pt;}
.y10{bottom:605.412267pt;}
.y4c{bottom:606.052267pt;}
.yb4{bottom:610.852267pt;}
.yf3{bottom:617.333333pt;}
.ye0{bottom:622.666667pt;}
.y35{bottom:623.972267pt;}
.yf{bottom:631.972267pt;}
.y62{bottom:632.292267pt;}
.y10c{bottom:636.000000pt;}
.y98{bottom:637.092267pt;}
.y4b{bottom:642.852267pt;}
.y34{bottom:643.812267pt;}
.y134{bottom:645.233333pt;}
.yb3{bottom:647.652267pt;}
.yc7{bottom:651.633333pt;}
.ye{bottom:653.732267pt;}
.yf1{bottom:654.666667pt;}
.yde{bottom:660.000000pt;}
.y61{bottom:669.092267pt;}
.y10a{bottom:672.000000pt;}
.y97{bottom:673.892267pt;}
.y4a{bottom:679.652267pt;}
.y33{bottom:680.612267pt;}
.yc6{bottom:682.033333pt;}
.yd{bottom:684.452267pt;}
.y128{bottom:690.666667pt;}
.yb2{bottom:695.012267pt;}
.y60{bottom:705.892267pt;}
.y32{bottom:707.172267pt;}
.y108{bottom:709.333333pt;}
.yc{bottom:713.892267pt;}
.y49{bottom:716.452267pt;}
.y96{bottom:721.252267pt;}
.yef{bottom:728.000000pt;}
.yc4{bottom:731.633333pt;}
.yb1{bottom:731.812267pt;}
.y31{bottom:735.012267pt;}
.yb{bottom:736.932267pt;}
.y5f{bottom:742.692267pt;}
.y104{bottom:746.666667pt;}
.y48{bottom:753.252267pt;}
.y95{bottom:758.052267pt;}
.y30{bottom:762.532267pt;}
.y125{bottom:764.000000pt;}
.ya{bottom:764.452267pt;}
.yed{bottom:765.333333pt;}
.y86{bottom:768.292267pt;}
.yab{bottom:768.612267pt;}
.y5e{bottom:779.492267pt;}
.y9{bottom:785.892267pt;}
.y2f{bottom:790.052267pt;}
.y94{bottom:794.852267pt;}
.yeb{bottom:801.333333pt;}
.y124{bottom:802.666667pt;}
.ya6{bottom:805.412267pt;}
.y8{bottom:809.252267pt;}
.y5d{bottom:816.292267pt;}
.y2e{bottom:817.572267pt;}
.y47{bottom:826.852267pt;}
.y7{bottom:831.012267pt;}
.ye9{bottom:838.666667pt;}
.y123{bottom:840.000000pt;}
.y93{bottom:842.212267pt;}
.y2d{bottom:845.412267pt;}
.y5c{bottom:853.092267pt;}
.y6{bottom:854.052267pt;}
.y102{bottom:857.333333pt;}
.y46{bottom:863.652267pt;}
.y2c{bottom:872.932267pt;}
.ye7{bottom:876.000000pt;}
.y92{bottom:879.012267pt;}
.y5{bottom:886.372267pt;}
.y5b{bottom:889.892267pt;}
.y2b{bottom:900.452267pt;}
.ye5{bottom:913.333333pt;}
.y122{bottom:918.372267pt;}
.y4{bottom:923.812267pt;}
.y5a{bottom:926.692267pt;}
.y2a{bottom:927.972267pt;}
.y45{bottom:937.252267pt;}
.y90{bottom:939.172267pt;}
.y101{bottom:949.732267pt;}
.y121{bottom:955.172267pt;}
.y29{bottom:955.812267pt;}
.y8f{bottom:958.052267pt;}
.y3{bottom:959.332267pt;}
.y91{bottom:963.492267pt;}
.ye4{bottom:973.732267pt;}
.y44{bottom:974.052267pt;}
.y8e{bottom:976.292267pt;}
.y100{bottom:980.452267pt;}
.y2{bottom:982.694827pt;}
.y28{bottom:983.332267pt;}
.y120{bottom:992.292267pt;}
.y1{bottom:1002.532267pt;}
.y27{bottom:1010.852267pt;}
.y8d{bottom:1011.172267pt;}
.y25{bottom:1060.452267pt;}
.y24{bottom:1069.477733pt;}
.y23{bottom:1083.877733pt;}
.y22{bottom:1098.277333pt;}
.h4{height:23.490000pt;}
.h10{height:24.000000pt;}
.h11{height:26.970000pt;}
.h6{height:28.833750pt;}
.h1c{height:29.328750pt;}
.hb{height:33.351562pt;}
.ha{height:33.353163pt;}
.h5{height:35.475000pt;}
.hf{height:37.248750pt;}
.h16{height:37.333333pt;}
.h17{height:38.666667pt;}
.h15{height:39.243750pt;}
.hc{height:40.796250pt;}
.h7{height:43.375000pt;}
.h9{height:43.593750pt;}
.hd{height:44.437500pt;}
.h8{height:44.468750pt;}
.h2{height:46.845000pt;}
.h18{height:51.088750pt;}
.h12{height:51.109375pt;}
.h3{height:63.668750pt;}
.h19{height:74.666667pt;}
.h1b{height:76.000000pt;}
.h1a{height:112.000000pt;}
.he{height:581.440000pt;}
.h13{height:793.700800pt;}
.h14{height:794.000000pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w10{width:16.000000pt;}
.wa{width:17.333333pt;}
.w18{width:18.666667pt;}
.w15{width:42.666667pt;}
.w1e{width:44.000000pt;}
.w3{width:44.480000pt;}
.w30{width:45.333333pt;}
.w3c{width:46.666667pt;}
.w9{width:48.000000pt;}
.w3e{width:49.333333pt;}
.w44{width:50.666667pt;}
.w13{width:52.000000pt;}
.w39{width:53.333333pt;}
.w1f{width:54.666667pt;}
.w43{width:56.000000pt;}
.w14{width:57.333333pt;}
.w12{width:58.666667pt;}
.w42{width:60.000000pt;}
.w16{width:61.333333pt;}
.w25{width:62.666667pt;}
.w38{width:65.333333pt;}
.w2f{width:66.666667pt;}
.w28{width:68.000000pt;}
.w37{width:69.333333pt;}
.w31{width:70.666667pt;}
.w3a{width:72.000000pt;}
.w29{width:77.333333pt;}
.w26{width:78.666667pt;}
.we{width:89.333333pt;}
.w27{width:93.333333pt;}
.w6{width:96.000000pt;}
.w3b{width:97.333333pt;}
.w7{width:105.333333pt;}
.w24{width:106.666667pt;}
.wd{width:108.000000pt;}
.w11{width:109.333333pt;}
.wc{width:114.666667pt;}
.w2b{width:117.333333pt;}
.wf{width:118.666667pt;}
.w33{width:126.666667pt;}
.w2e{width:133.333333pt;}
.w36{width:142.666667pt;}
.w1b{width:144.000000pt;}
.w21{width:146.666667pt;}
.w1d{width:158.666667pt;}
.w2a{width:162.666667pt;}
.w19{width:182.666667pt;}
.w17{width:200.000000pt;}
.w23{width:236.000000pt;}
.wb{width:241.333333pt;}
.w22{width:245.333333pt;}
.w35{width:265.333333pt;}
.w2c{width:268.000000pt;}
.w34{width:278.666667pt;}
.w2d{width:282.666667pt;}
.w41{width:320.000000pt;}
.w40{width:328.000000pt;}
.w1c{width:394.666667pt;}
.w8{width:417.333333pt;}
.w20{width:552.000000pt;}
.w3f{width:661.333333pt;}
.w2{width:695.153200pt;}
.w32{width:697.333333pt;}
.w3d{width:700.000000pt;}
.w0{width:793.700667pt;}
.w1{width:794.000000pt;}
.w45{width:824.000000pt;}
.w1a{width:918.666667pt;}
.w4{width:1122.519733pt;}
.w5{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x35{left:4.094085pt;}
.x6d{left:5.960800pt;}
.x15{left:7.667419pt;}
.x1b{left:8.734085pt;}
.x13{left:9.866667pt;}
.x37{left:10.920752pt;}
.x39{left:12.574085pt;}
.x47{left:13.587467pt;}
.x32{left:14.494085pt;}
.x38{left:15.400752pt;}
.x46{left:16.734133pt;}
.x2f{left:18.547419pt;}
.x2e{left:19.560752pt;}
.x4f{left:21.000800pt;}
.x2c{left:22.120752pt;}
.x19{left:24.040752pt;}
.x3b{left:25.267419pt;}
.x27{left:26.654085pt;}
.x21{left:28.787419pt;}
.x2b{left:29.694085pt;}
.x45{left:30.814133pt;}
.x3a{left:31.774085pt;}
.x53{left:33.534133pt;}
.x1e{left:35.240752pt;}
.x28{left:37.214085pt;}
.x54{left:38.227467pt;}
.x24{left:39.560752pt;}
.x55{left:42.014133pt;}
.x56{left:44.734133pt;}
.x4d{left:46.014133pt;}
.x7{left:48.182667pt;}
.x65{left:49.800800pt;}
.x52{left:52.734133pt;}
.x63{left:53.854133pt;}
.x5c{left:68.307467pt;}
.x57{left:77.333333pt;}
.x71{left:79.720752pt;}
.x1d{left:81.374085pt;}
.x3e{left:83.614133pt;}
.x4c{left:87.454133pt;}
.x10{left:91.507467pt;}
.x58{left:93.333333pt;}
.x1{left:96.627467pt;}
.x11{left:98.547467pt;}
.xd{left:101.107467pt;}
.x2{left:104.627467pt;}
.x12{left:109.427467pt;}
.x3c{left:110.666667pt;}
.x48{left:112.000000pt;}
.x36{left:113.333333pt;}
.x14{left:128.627467pt;}
.xf{left:134.387467pt;}
.xe{left:143.667467pt;}
.x5{left:156.147467pt;}
.x8{left:158.387467pt;}
.x3{left:174.067467pt;}
.xa{left:179.187467pt;}
.xb{left:189.107467pt;}
.x16{left:190.666667pt;}
.x59{left:209.333333pt;}
.x64{left:218.666667pt;}
.x3d{left:253.333333pt;}
.x49{left:257.333333pt;}
.x5d{left:260.000000pt;}
.xc{left:270.067467pt;}
.x68{left:286.666667pt;}
.x17{left:294.666667pt;}
.x6e{left:301.374085pt;}
.x3f{left:313.333333pt;}
.x72{left:316.000000pt;}
.x5e{left:325.333333pt;}
.x2d{left:350.666667pt;}
.x40{left:356.000000pt;}
.x4e{left:362.666667pt;}
.x73{left:370.666667pt;}
.x41{left:398.666667pt;}
.x1f{left:408.000000pt;}
.x20{left:424.000000pt;}
.x74{left:426.666667pt;}
.x5f{left:432.000000pt;}
.x42{left:445.333333pt;}
.x69{left:454.666667pt;}
.x30{left:474.666667pt;}
.x5a{left:476.000000pt;}
.x6{left:484.787467pt;}
.x5b{left:492.000000pt;}
.x66{left:496.000000pt;}
.x4a{left:501.333333pt;}
.x67{left:512.000000pt;}
.x9{left:512.947467pt;}
.x4b{left:517.333333pt;}
.x22{left:530.666667pt;}
.x75{left:533.333333pt;}
.x43{left:540.000000pt;}
.x23{left:546.666667pt;}
.x4{left:555.187467pt;}
.x60{left:561.333333pt;}
.x6a{left:564.000000pt;}
.x6f{left:584.000000pt;}
.x44{left:593.333333pt;}
.x31{left:597.333333pt;}
.x70{left:598.666667pt;}
.x50{left:609.333333pt;}
.x61{left:628.000000pt;}
.x6b{left:634.666667pt;}
.x76{left:649.333333pt;}
.x25{left:653.333333pt;}
.x26{left:669.333333pt;}
.x51{left:676.000000pt;}
.x77{left:700.000000pt;}
.x18{left:710.666667pt;}
.x6c{left:730.666667pt;}
.x62{left:732.000000pt;}
.x1a{left:757.333333pt;}
.x1c{left:773.333333pt;}
.x78{left:824.000000pt;}
.x33{left:833.333333pt;}
.x79{left:874.666667pt;}
.x29{left:890.666667pt;}
.x2a{left:905.333333pt;}
.x34{left:956.000000pt;}
}




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