
    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_ead4535be6b576af7bbb2d4d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_781a5bec088398a08a33a9f3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_44df279b4cdc376282b9c15d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.846000;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_097a5d94a61685478576e1d2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.704000;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_113d96b9bb2b5a14c508e6c4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_7cded8216fea4116f5c89e86.woff')format("woff");}.ff6{font-family:ff6;line-height:0.738000;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_b0ceaa4cda20507bda333466.woff')format("woff");}.ff7{font-family:ff7;line-height:0.909000;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_ae33e611b4da0d9a36fbeb30.woff')format("woff");}.ff8{font-family:ff8;line-height:0.929000;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_18109509412bd9b95b2b440e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910000;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_c6ccf40768e5f9bb39374651.woff')format("woff");}.ffa{font-family:ffa;line-height:0.918000;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_190c962de9e27ac2b3c73ac9.woff')format("woff");}.ffb{font-family:ffb;line-height:0.930000;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_b0341ac672ac933fe3a18e3a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.655000;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_c990742c52ee3874d62e5eb5.woff')format("woff");}.ffd{font-family:ffd;line-height:0.687000;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_195af9344de73de50938a8dc.woff')format("woff");}.ffe{font-family:ffe;line-height:1.199000;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_1893958c4a4c087f1ca73b9d.woff')format("woff");}.fff{font-family:fff;line-height:0.696000;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_85c8af902211265284048ef5.woff')format("woff");}.ff10{font-family:ff10;line-height:0.705000;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_520d19d97a52e8b27176583c.woff')format("woff");}.ff11{font-family:ff11;line-height:0.725000;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_7e9e574e3f81c07d95a35add.woff')format("woff");}.ff12{font-family:ff12;line-height:0.723000;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_73759a8f1c0fecbd4725d3c5.woff')format("woff");}.ff13{font-family:ff13;line-height:0.383000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-10.764000px;}
.vf{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:17.736000px;}
.v3{vertical-align:21.690000px;}
.v1{vertical-align:23.754000px;}
.v2{vertical-align:26.034000px;}
.ve{vertical-align:28.242000px;}
.v7{vertical-align:29.622000px;}
.vd{vertical-align:38.448000px;}
.vc{vertical-align:43.764000px;}
.vb{vertical-align:47.352000px;}
.v4{vertical-align:48.528000px;}
.v8{vertical-align:58.098000px;}
.va{vertical-align:59.778000px;}
.v9{vertical-align:75.834000px;}
.ls5{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.000472px;}
.ls5a{letter-spacing:0.002268px;}
.ls36{letter-spacing:0.002792px;}
.ls13{letter-spacing:0.004349px;}
.ls53{letter-spacing:0.004391px;}
.ls46{letter-spacing:0.004765px;}
.ls5b{letter-spacing:0.005343px;}
.ls2b{letter-spacing:0.005591px;}
.ls4d{letter-spacing:0.009870px;}
.ls7{letter-spacing:0.009884px;}
.ls11{letter-spacing:0.012317px;}
.ls10{letter-spacing:0.012511px;}
.ls1a{letter-spacing:0.013012px;}
.ls17{letter-spacing:0.013423px;}
.ls45{letter-spacing:0.013442px;}
.ls4b{letter-spacing:0.016373px;}
.ls1{letter-spacing:0.019919px;}
.ls26{letter-spacing:0.020440px;}
.ls4c{letter-spacing:0.020535px;}
.ls3d{letter-spacing:0.023055px;}
.ls4f{letter-spacing:0.030737px;}
.ls23{letter-spacing:0.031559px;}
.ls31{letter-spacing:0.032316px;}
.ls9{letter-spacing:1.673717px;}
.ls0{letter-spacing:1.767274px;}
.ls49{letter-spacing:1.817183px;}
.ls4{letter-spacing:1.832729px;}
.ls20{letter-spacing:1.936742px;}
.ls2e{letter-spacing:1.973207px;}
.ls38{letter-spacing:1.981657px;}
.ls28{letter-spacing:1.994792px;}
.ls6{letter-spacing:2.008474px;}
.ls15{letter-spacing:2.548925px;}
.ls5e{letter-spacing:2.549105px;}
.ls1c{letter-spacing:2.654054px;}
.lsb{letter-spacing:2.725786px;}
.ls54{letter-spacing:2.984915px;}
.ls8{letter-spacing:2.985072px;}
.ls18{letter-spacing:2.989739px;}
.ls2{letter-spacing:2.991072px;}
.ls3b{letter-spacing:2.991226px;}
.lsa{letter-spacing:2.993991px;}
.ls55{letter-spacing:3.919281px;}
.ls3c{letter-spacing:4.276793px;}
.ls3a{letter-spacing:4.705905px;}
.ls2a{letter-spacing:4.976915px;}
.ls39{letter-spacing:4.982915px;}
.lsf{letter-spacing:6.115301px;}
.ls50{letter-spacing:7.101389px;}
.lse{letter-spacing:7.675238px;}
.ls5d{letter-spacing:7.818701px;}
.ls5c{letter-spacing:7.890432px;}
.ls12{letter-spacing:10.114099px;}
.ls21{letter-spacing:11.907379px;}
.ls56{letter-spacing:13.949236px;}
.ls3{letter-spacing:14.530921px;}
.ls2d{letter-spacing:14.561434px;}
.ls2f{letter-spacing:15.422208px;}
.ls27{letter-spacing:15.565670px;}
.ls24{letter-spacing:15.637402px;}
.ls2c{letter-spacing:15.924326px;}
.ls4e{letter-spacing:16.617617px;}
.ls47{letter-spacing:17.932800px;}
.ls29{letter-spacing:18.926915px;}
.ls1f{letter-spacing:19.941274px;}
.ls59{letter-spacing:22.882253px;}
.ls48{letter-spacing:23.500982px;}
.ls19{letter-spacing:23.886490px;}
.ls3e{letter-spacing:24.101683px;}
.ls57{letter-spacing:24.381510px;}
.ls41{letter-spacing:27.095518px;}
.ls4a{letter-spacing:28.486536px;}
.ls5f{letter-spacing:28.519739px;}
.ls32{letter-spacing:28.814915px;}
.ls58{letter-spacing:29.124916px;}
.ls52{letter-spacing:33.068083px;}
.ls14{letter-spacing:33.493739px;}
.ls51{letter-spacing:35.148288px;}
.ls16{letter-spacing:37.975739px;}
.lsd{letter-spacing:45.047194px;}
.ls43{letter-spacing:47.312915px;}
.ls35{letter-spacing:58.967395px;}
.ls34{letter-spacing:58.967877px;}
.ls33{letter-spacing:58.973395px;}
.ls1d{letter-spacing:84.714916px;}
.ls40{letter-spacing:90.166118px;}
.ls3f{letter-spacing:92.748442px;}
.lsc{letter-spacing:140.689185px;}
.ls22{letter-spacing:504.413798px;}
.ls25{letter-spacing:534.253978px;}
.ls30{letter-spacing:715.590451px;}
.ls37{letter-spacing:769.897739px;}
.ls44{letter-spacing:780.578918px;}
.ls1b{letter-spacing:863.213261px;}
.ls1e{letter-spacing:915.577037px;}
.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;}
}
.ws64{word-spacing:-55.806874px;}
.ws6f{word-spacing:-51.861658px;}
.ws6e{word-spacing:-51.789926px;}
.ws33{word-spacing:-45.664082px;}
.ws77{word-spacing:-43.217759px;}
.ws7a{word-spacing:-43.157983px;}
.ws39{word-spacing:-33.756703px;}
.ws38{word-spacing:-33.684972px;}
.ws70{word-spacing:-33.211407px;}
.ws35{word-spacing:-30.026680px;}
.ws75{word-spacing:-22.416000px;}
.ws54{word-spacing:-21.777592px;}
.ws53{word-spacing:-21.705861px;}
.ws74{word-spacing:-21.562399px;}
.ws5c{word-spacing:-19.510886px;}
.ws76{word-spacing:-16.605662px;}
.ws5d{word-spacing:-10.300600px;}
.ws4a{word-spacing:-7.531776px;}
.ws52{word-spacing:-7.173034px;}
.ws5b{word-spacing:-7.167034px;}
.ws29{word-spacing:-3.873485px;}
.ws50{word-spacing:-3.586560px;}
.wsa2{word-spacing:-3.514829px;}
.ws1c{word-spacing:-3.299635px;}
.ws17{word-spacing:-2.797517px;}
.ws5f{word-spacing:-2.438861px;}
.ws43{word-spacing:-2.080205px;}
.wsa3{word-spacing:-1.936742px;}
.wsa0{word-spacing:-1.649818px;}
.ws60{word-spacing:-1.147699px;}
.ws7c{word-spacing:-0.932506px;}
.ws18{word-spacing:-0.717312px;}
.ws12{word-spacing:-0.641455px;}
.ws25{word-spacing:-0.466253px;}
.ws90{word-spacing:-0.358656px;}
.ws6{word-spacing:-0.248727px;}
.ws91{word-spacing:-0.215194px;}
.ws3{word-spacing:-0.086077px;}
.ws61{word-spacing:-0.071731px;}
.ws31{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.052364px;}
.ws22{word-spacing:0.000000px;}
.ws7d{word-spacing:0.071731px;}
.ws2a{word-spacing:0.286925px;}
.ws49{word-spacing:0.358656px;}
.ws8{word-spacing:0.405819px;}
.ws51{word-spacing:0.430387px;}
.ws8a{word-spacing:0.717312px;}
.ws5a{word-spacing:0.789043px;}
.ws65{word-spacing:0.932506px;}
.ws2e{word-spacing:0.968371px;}
.ws24{word-spacing:1.040102px;}
.ws3b{word-spacing:1.291162px;}
.ws4d{word-spacing:1.362893px;}
.wsa{word-spacing:1.387638px;}
.ws7{word-spacing:1.453092px;}
.ws4b{word-spacing:1.506355px;}
.ws81{word-spacing:1.578086px;}
.ws7f{word-spacing:1.649818px;}
.ws59{word-spacing:1.721549px;}
.ws11{word-spacing:1.780365px;}
.ws7e{word-spacing:1.793280px;}
.ws8b{word-spacing:1.865011px;}
.ws13{word-spacing:1.976729px;}
.wsa1{word-spacing:2.080205px;}
.ws2d{word-spacing:2.151936px;}
.ws71{word-spacing:2.223667px;}
.wse{word-spacing:2.238547px;}
.ws83{word-spacing:2.367130px;}
.ws26{word-spacing:2.438861px;}
.wsac{word-spacing:2.510592px;}
.ws62{word-spacing:2.582323px;}
.wsa5{word-spacing:2.654054px;}
.ws99{word-spacing:2.869248px;}
.ws4c{word-spacing:3.084442px;}
.ws1d{word-spacing:3.227904px;}
.ws32{word-spacing:3.299613px;}
.ws89{word-spacing:3.443098px;}
.ws15{word-spacing:3.613094px;}
.ws63{word-spacing:3.730022px;}
.ws1a{word-spacing:3.873485px;}
.ws4f{word-spacing:3.945216px;}
.wsa4{word-spacing:4.232141px;}
.ws82{word-spacing:4.375603px;}
.wsbc{word-spacing:4.447334px;}
.ws3c{word-spacing:4.483200px;}
.ws9e{word-spacing:4.519066px;}
.ws9{word-spacing:4.608004px;}
.ws1{word-spacing:4.648169px;}
.ws68{word-spacing:4.662528px;}
.wsb{word-spacing:4.673458px;}
.ws2{word-spacing:4.734246px;}
.wsb1{word-spacing:4.734259px;}
.wsb3{word-spacing:4.805990px;}
.ws57{word-spacing:4.949453px;}
.ws6d{word-spacing:5.164646px;}
.ws6c{word-spacing:5.236378px;}
.ws28{word-spacing:5.308109px;}
.ws2c{word-spacing:5.379840px;}
.ws80{word-spacing:5.451571px;}
.ws16{word-spacing:5.487437px;}
.ws42{word-spacing:5.523302px;}
.ws9c{word-spacing:5.595034px;}
.ws78{word-spacing:5.732592px;}
.ws9b{word-spacing:5.738496px;}
.ws21{word-spacing:5.810227px;}
.wsad{word-spacing:5.881958px;}
.ws9d{word-spacing:6.025421px;}
.ws27{word-spacing:6.061286px;}
.ws41{word-spacing:6.168883px;}
.ws9a{word-spacing:6.240614px;}
.ws66{word-spacing:6.312346px;}
.ws1e{word-spacing:6.384077px;}
.wsf{word-spacing:6.493096px;}
.ws88{word-spacing:6.742733px;}
.ws2f{word-spacing:6.766598px;}
.ws30{word-spacing:6.826374px;}
.ws8d{word-spacing:6.886195px;}
.ws9f{word-spacing:7.029658px;}
.ws4e{word-spacing:7.101389px;}
.ws3d{word-spacing:7.173120px;}
.ws56{word-spacing:7.244851px;}
.ws3e{word-spacing:7.316582px;}
.ws14{word-spacing:7.409461px;}
.wsbb{word-spacing:7.460045px;}
.ws84{word-spacing:7.603507px;}
.ws0{word-spacing:7.748437px;}
.ws1f{word-spacing:7.818701px;}
.ws94{word-spacing:7.962163px;}
.wsb2{word-spacing:8.033894px;}
.ws2b{word-spacing:8.105626px;}
.ws58{word-spacing:8.177357px;}
.wsbd{word-spacing:8.249088px;}
.ws8e{word-spacing:8.392550px;}
.wsb4{word-spacing:8.464282px;}
.ws44{word-spacing:8.536013px;}
.ws98{word-spacing:8.607744px;}
.wsb6{word-spacing:8.751206px;}
.ws85{word-spacing:8.822938px;}
.wsc{word-spacing:9.111280px;}
.ws92{word-spacing:9.181594px;}
.ws87{word-spacing:9.468518px;}
.wsae{word-spacing:9.540250px;}
.ws93{word-spacing:9.755443px;}
.ws8f{word-spacing:9.898906px;}
.ws79{word-spacing:9.922750px;}
.ws97{word-spacing:10.257562px;}
.ws3f{word-spacing:10.329293px;}
.wsa6{word-spacing:10.401024px;}
.ws69{word-spacing:10.544486px;}
.ws20{word-spacing:10.759680px;}
.ws45{word-spacing:10.831411px;}
.ws48{word-spacing:10.974874px;}
.wsab{word-spacing:11.118336px;}
.ws72{word-spacing:11.190067px;}
.ws95{word-spacing:11.261798px;}
.ws40{word-spacing:11.548723px;}
.wsaa{word-spacing:11.692186px;}
.wsd{word-spacing:11.742555px;}
.ws73{word-spacing:11.763917px;}
.wsb5{word-spacing:11.979110px;}
.ws46{word-spacing:12.409498px;}
.ws10{word-spacing:12.449465px;}
.wsa8{word-spacing:12.839885px;}
.ws5{word-spacing:12.973102px;}
.ws7b{word-spacing:13.126810px;}
.ws19{word-spacing:13.342003px;}
.ws86{word-spacing:13.557197px;}
.ws67{word-spacing:13.772390px;}
.ws96{word-spacing:13.987584px;}
.ws8c{word-spacing:14.704896px;}
.ws47{word-spacing:14.991821px;}
.wsa9{word-spacing:15.422208px;}
.ws23{word-spacing:15.637402px;}
.ws55{word-spacing:16.282982px;}
.wsa7{word-spacing:17.287219px;}
.ws37{word-spacing:17.978966px;}
.ws34{word-spacing:18.865306px;}
.wsaf{word-spacing:21.519360px;}
.wsb7{word-spacing:22.667059px;}
.wsb0{word-spacing:23.312640px;}
.ws1b{word-spacing:26.002560px;}
.wsba{word-spacing:28.046899px;}
.wsb9{word-spacing:29.409792px;}
.wsb8{word-spacing:34.574438px;}
.ws5e{word-spacing:36.539873px;}
.ws36{word-spacing:56.452454px;}
.ws6a{word-spacing:67.350509px;}
.ws6b{word-spacing:95.243036px;}
.ws3a{word-spacing:106.764718px;}
._23{margin-left:-14.346144px;}
._2{margin-left:-11.653650px;}
._4{margin-left:-6.972253px;}
._7{margin-left:-5.432732px;}
._0{margin-left:-3.843225px;}
._3{margin-left:-2.324084px;}
._6{margin-left:-1.275919px;}
._20{width:1.008548px;}
._5{width:2.324084px;}
._14{width:3.347434px;}
._1b{width:4.858609px;}
._21{width:6.117837px;}
._24{width:17.208209px;}
._9{width:19.211371px;}
._b{width:20.585918px;}
._1f{width:21.878016px;}
._f{width:23.810246px;}
._a{width:25.854567px;}
._8{width:27.752750px;}
._11{width:29.036777px;}
._27{width:30.051062px;}
._12{width:31.172812px;}
._19{width:32.421586px;}
._16{width:33.785395px;}
._18{width:35.765183px;}
._e{width:37.251125px;}
._10{width:38.835265px;}
._26{width:39.911233px;}
._1c{width:42.163586px;}
._13{width:43.493313px;}
._29{width:45.050070px;}
._c{width:46.061442px;}
._15{width:48.418560px;}
._25{width:49.709722px;}
._28{width:52.115384px;}
._17{width:54.126796px;}
._d{width:56.488212px;}
._1a{width:57.684461px;}
._1{width:61.987500px;}
._1e{width:70.612187px;}
._1d{width:114.766404px;}
._22{width:568.208642px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs5{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:10.531500px;}
.y7c{bottom:24.927000px;}
.y25{bottom:63.168000px;}
.y24{bottom:108.000000px;}
.y44{bottom:109.606500px;}
.yd2{bottom:110.685000px;}
.y23{bottom:129.669000px;}
.y43{bottom:131.275500px;}
.yd1{bottom:132.354000px;}
.yf4{bottom:140.986500px;}
.y22{bottom:151.338000px;}
.y69{bottom:152.221500px;}
.yd0{bottom:154.023000px;}
.y8e{bottom:159.940500px;}
.yf3{bottom:162.655500px;}
.y42{bottom:164.526000px;}
.y7d{bottom:167.889000px;}
.y8d{bottom:172.242000px;}
.y21{bottom:173.007000px;}
.y68{bottom:173.889000px;}
.ycf{bottom:175.692000px;}
.yf2{bottom:184.324500px;}
.y20{bottom:194.674500px;}
.y67{bottom:195.558000px;}
.yce{bottom:197.359500px;}
.y41{bottom:203.953500px;}
.y1f{bottom:216.343500px;}
.y66{bottom:217.227000px;}
.y8c{bottom:218.929500px;}
.ycd{bottom:219.028500px;}
.yf1{bottom:220.936500px;}
.y1e{bottom:238.012500px;}
.y8b{bottom:240.598500px;}
.ycc{bottom:240.697500px;}
.yf0{bottom:242.605500px;}
.y65{bottom:248.610000px;}
.y40{bottom:256.132500px;}
.ycb{bottom:262.366500px;}
.yef{bottom:264.274500px;}
.y1d{bottom:277.440000px;}
.y3f{bottom:277.801500px;}
.y8a{bottom:280.026000px;}
.y64{bottom:281.485500px;}
.yca{bottom:284.035500px;}
.y63{bottom:293.787000px;}
.yee{bottom:300.886500px;}
.yc9{bottom:305.703000px;}
.yb1{bottom:314.376000px;}
.yed{bottom:322.555500px;}
.y1c{bottom:325.768500px;}
.yc8{bottom:327.372000px;}
.y89{bottom:328.480500px;}
.y3e{bottom:328.993500px;}
.yb0{bottom:336.045000px;}
.y62{bottom:342.282000px;}
.yec{bottom:344.224500px;}
.y1b{bottom:347.437500px;}
.yc7{bottom:349.041000px;}
.y88{bottom:354.633000px;}
.y1a{bottom:369.105000px;}
.yc6{bottom:370.710000px;}
.yaf{bottom:372.657000px;}
.y87{bottom:380.785500px;}
.yeb{bottom:380.836500px;}
.y61{bottom:381.709500px;}
.y19{bottom:390.774000px;}
.yc5{bottom:392.379000px;}
.yae{bottom:394.326000px;}
.yea{bottom:402.505500px;}
.y3d{bottom:404.091000px;}
.y86{bottom:406.936500px;}
.yc4{bottom:414.048000px;}
.y3c{bottom:416.391000px;}
.ye9{bottom:424.174500px;}
.y18{bottom:427.911000px;}
.y60{bottom:430.402500px;}
.yad{bottom:430.938000px;}
.y85{bottom:444.930000px;}
.y17{bottom:448.234500px;}
.y5f{bottom:452.071500px;}
.yc3{bottom:453.474000px;}
.ye8{bottom:460.788000px;}
.yac{bottom:467.551500px;}
.y16{bottom:468.558000px;}
.y5e{bottom:473.739000px;}
.ye7{bottom:482.455500px;}
.y15{bottom:488.883000px;}
.y84{bottom:490.089000px;}
.y5d{bottom:495.408000px;}
.yc2{bottom:502.167000px;}
.ye6{bottom:504.124500px;}
.yab{bottom:504.163500px;}
.y14{bottom:509.206500px;}
.y83{bottom:511.758000px;}
.y5c{bottom:517.077000px;}
.y39{bottom:523.534500px;}
.yc1{bottom:523.836000px;}
.yaa{bottom:525.832500px;}
.y13{bottom:529.530000px;}
.y5b{bottom:538.746000px;}
.ye5{bottom:540.738000px;}
.y38{bottom:542.214000px;}
.yc0{bottom:545.505000px;}
.ya9{bottom:547.501500px;}
.y12{bottom:549.853500px;}
.y7f{bottom:554.223000px;}
.y5a{bottom:560.415000px;}
.ye4{bottom:562.407000px;}
.y37{bottom:563.136000px;}
.y11{bottom:570.177000px;}
.y76{bottom:579.975000px;}
.ye3{bottom:584.074500px;}
.ya8{bottom:586.929000px;}
.ybf{bottom:588.841500px;}
.y10{bottom:590.502000px;}
.y59{bottom:591.796500px;}
.y7b{bottom:600.871500px;}
.ybe{bottom:610.510500px;}
.yf{bottom:610.825500px;}
.y77{bottom:611.179500px;}
.y3b{bottom:611.181000px;}
.ye2{bottom:620.688000px;}
.y58{bottom:624.673500px;}
.ye{bottom:631.149000px;}
.ybd{bottom:632.179500px;}
.ya7{bottom:635.620500px;}
.y57{bottom:636.975000px;}
.ye1{bottom:642.357000px;}
.yd{bottom:651.472500px;}
.ybc{bottom:653.848500px;}
.y36{bottom:657.150000px;}
.ya6{bottom:657.289500px;}
.yc{bottom:671.796000px;}
.ybb{bottom:675.517500px;}
.y78{bottom:675.525000px;}
.y35{bottom:675.831000px;}
.ya5{bottom:678.958500px;}
.ye0{bottom:678.969000px;}
.y56{bottom:685.470000px;}
.y80{bottom:685.641000px;}
.yb{bottom:692.121000px;}
.y34{bottom:696.751500px;}
.ya4{bottom:700.627500px;}
.ydf{bottom:700.638000px;}
.ya{bottom:712.444500px;}
.yba{bottom:718.107000px;}
.y55{bottom:718.720500px;}
.ya3{bottom:722.296500px;}
.yde{bottom:722.307000px;}
.yb9{bottom:739.776000px;}
.y79{bottom:739.870500px;}
.y9{bottom:739.969500px;}
.ya2{bottom:743.964000px;}
.y3a{bottom:744.796500px;}
.yb8{bottom:761.445000px;}
.ydd{bottom:761.734500px;}
.y54{bottom:765.481500px;}
.ya1{bottom:765.633000px;}
.y82{bottom:780.889500px;}
.yb7{bottom:783.114000px;}
.y81{bottom:785.322000px;}
.y53{bottom:787.150500px;}
.y33{bottom:787.861500px;}
.y8{bottom:803.241000px;}
.y7a{bottom:804.216000px;}
.y32{bottom:806.541000px;}
.y52{bottom:808.819500px;}
.ydc{bottom:810.426000px;}
.ya0{bottom:811.710000px;}
.yb6{bottom:825.579000px;}
.y31{bottom:827.463000px;}
.y51{bottom:830.488500px;}
.yfe{bottom:832.045500px;}
.ydb{bottom:832.095000px;}
.y9f{bottom:833.379000px;}
.yb5{bottom:833.446500px;}
.yb4{bottom:837.879000px;}
.y7{bottom:845.308500px;}
.y75{bottom:846.610500px;}
.y50{bottom:852.157500px;}
.yfd{bottom:853.714500px;}
.yda{bottom:853.764000px;}
.y9e{bottom:855.048000px;}
.y74{bottom:868.278000px;}
.yb3{bottom:868.441500px;}
.yfc{bottom:870.949500px;}
.y6{bottom:872.208000px;}
.y30{bottom:875.382000px;}
.yd9{bottom:875.433000px;}
.y4f{bottom:883.539000px;}
.y73{bottom:889.947000px;}
.y2f{bottom:897.051000px;}
.y5{bottom:899.107500px;}
.y4e{bottom:905.208000px;}
.y72{bottom:911.616000px;}
.yfb{bottom:911.995500px;}
.yd8{bottom:914.859000px;}
.y2e{bottom:918.720000px;}
.y4d{bottom:922.443000px;}
.y9d{bottom:923.457000px;}
.y4c{bottom:926.877000px;}
.y71{bottom:933.285000px;}
.yfa{bottom:933.664500px;}
.y2d{bottom:940.389000px;}
.y9b{bottom:945.126000px;}
.y4b{bottom:948.546000px;}
.y4{bottom:952.344000px;}
.y9c{bottom:953.598000px;}
.y70{bottom:954.954000px;}
.yf9{bottom:955.333500px;}
.y2c{bottom:962.058000px;}
.yd7{bottom:963.552000px;}
.y4a{bottom:970.215000px;}
.y6f{bottom:976.621500px;}
.yf8{bottom:977.001000px;}
.y2b{bottom:983.727000px;}
.yd6{bottom:985.221000px;}
.y3{bottom:989.704500px;}
.y49{bottom:991.882500px;}
.y9a{bottom:992.412000px;}
.yb2{bottom:1003.122000px;}
.yd5{bottom:1006.890000px;}
.y6e{bottom:1010.182500px;}
.y94{bottom:1011.814500px;}
.yf7{bottom:1013.614500px;}
.y6d{bottom:1014.616500px;}
.y97{bottom:1017.235500px;}
.y93{bottom:1017.997500px;}
.y2a{bottom:1020.339000px;}
.y48{bottom:1025.133000px;}
.y2{bottom:1027.063500px;}
.yd4{bottom:1028.557500px;}
.y96{bottom:1029.535500px;}
.y90{bottom:1029.742500px;}
.yf6{bottom:1035.283500px;}
.y29{bottom:1042.008000px;}
.y92{bottom:1042.656000px;}
.yd3{bottom:1050.226500px;}
.y6c{bottom:1054.137000px;}
.y8f{bottom:1054.399500px;}
.y98{bottom:1055.146500px;}
.yf5{bottom:1056.952500px;}
.y95{bottom:1061.892000px;}
.y1{bottom:1064.424000px;}
.y91{bottom:1067.313000px;}
.y99{bottom:1067.544000px;}
.y47{bottom:1071.895500px;}
.y6b{bottom:1075.806000px;}
.y28{bottom:1078.620000px;}
.y46{bottom:1093.564500px;}
.y6a{bottom:1097.475000px;}
.y27{bottom:1100.289000px;}
.y45{bottom:1115.233500px;}
.y26{bottom:1136.902500px;}
.h1d{height:29.415488px;}
.hb{height:44.831700px;}
.h5{height:45.687311px;}
.h6{height:49.090950px;}
.h9{height:50.211840px;}
.h17{height:50.570496px;}
.hf{height:51.216077px;}
.h4{height:53.109632px;}
.h8{height:53.798400px;}
.h7{height:57.897908px;}
.h18{height:58.312905px;}
.he{height:60.171908px;}
.ha{height:60.177908px;}
.h14{height:61.894905px;}
.h1a{height:62.385908px;}
.h11{height:63.765908px;}
.h3{height:64.557900px;}
.h1f{height:71.528400px;}
.h10{height:71.534400px;}
.h19{height:76.042905px;}
.h1b{height:78.530400px;}
.h2{height:86.782500px;}
.h15{height:92.056905px;}
.h1c{height:100.487808px;}
.h12{height:102.320400px;}
.hc{height:102.326400px;}
.hd{height:102.998400px;}
.h13{height:103.004400px;}
.h1e{height:117.545808px;}
.h16{height:209.125560px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:442.993245px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:23.871000px;}
.x23{left:104.728500px;}
.xa{left:108.000000px;}
.x3a{left:114.151500px;}
.x2f{left:117.564000px;}
.xd{left:129.460500px;}
.xb{left:134.338500px;}
.x3f{left:144.093000px;}
.x30{left:147.111000px;}
.x2{left:152.715000px;}
.x3{left:179.934000px;}
.x1{left:194.679000px;}
.x27{left:205.851000px;}
.x3c{left:216.349500px;}
.x21{left:222.262500px;}
.x22{left:240.456000px;}
.x39{left:249.154500px;}
.x18{left:250.938000px;}
.x1d{left:256.528500px;}
.x1e{left:264.000000px;}
.x37{left:266.464500px;}
.x4{left:272.701500px;}
.x7{left:274.818000px;}
.x28{left:284.394000px;}
.x25{left:289.776000px;}
.x6{left:291.301500px;}
.x3b{left:293.532000px;}
.x1f{left:309.340500px;}
.x13{left:314.500500px;}
.x2d{left:325.582500px;}
.x2a{left:330.463500px;}
.x16{left:339.226500px;}
.x10{left:344.451000px;}
.x1a{left:346.254000px;}
.x12{left:347.661000px;}
.x5{left:348.895500px;}
.xf{left:350.317500px;}
.x3d{left:357.685500px;}
.x1b{left:359.329500px;}
.x14{left:361.674000px;}
.x11{left:374.311500px;}
.x2c{left:382.285500px;}
.xe{left:389.503500px;}
.x2b{left:390.583500px;}
.x8{left:392.613000px;}
.x31{left:397.267500px;}
.x9{left:410.455500px;}
.x32{left:421.984500px;}
.x29{left:425.722500px;}
.xc{left:442.066500px;}
.x17{left:448.498500px;}
.x15{left:449.980500px;}
.x20{left:452.059500px;}
.x26{left:456.057000px;}
.x1c{left:457.393500px;}
.x3e{left:471.958500px;}
.x33{left:474.127500px;}
.x2e{left:511.012500px;}
.x38{left:566.500500px;}
.x19{left:610.408500px;}
.x35{left:670.695000px;}
.x40{left:697.635000px;}
.x34{left:715.746000px;}
.x36{left:777.162000px;}
@media print{
.v5{vertical-align:-9.568000pt;}
.vf{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:15.765333pt;}
.v3{vertical-align:19.280000pt;}
.v1{vertical-align:21.114667pt;}
.v2{vertical-align:23.141333pt;}
.ve{vertical-align:25.104000pt;}
.v7{vertical-align:26.330667pt;}
.vd{vertical-align:34.176000pt;}
.vc{vertical-align:38.901333pt;}
.vb{vertical-align:42.090667pt;}
.v4{vertical-align:43.136000pt;}
.v8{vertical-align:51.642667pt;}
.va{vertical-align:53.136000pt;}
.v9{vertical-align:67.408000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.000420pt;}
.ls5a{letter-spacing:0.002016pt;}
.ls36{letter-spacing:0.002481pt;}
.ls13{letter-spacing:0.003866pt;}
.ls53{letter-spacing:0.003903pt;}
.ls46{letter-spacing:0.004236pt;}
.ls5b{letter-spacing:0.004750pt;}
.ls2b{letter-spacing:0.004970pt;}
.ls4d{letter-spacing:0.008773pt;}
.ls7{letter-spacing:0.008786pt;}
.ls11{letter-spacing:0.010948pt;}
.ls10{letter-spacing:0.011121pt;}
.ls1a{letter-spacing:0.011566pt;}
.ls17{letter-spacing:0.011931pt;}
.ls45{letter-spacing:0.011948pt;}
.ls4b{letter-spacing:0.014553pt;}
.ls1{letter-spacing:0.017706pt;}
.ls26{letter-spacing:0.018169pt;}
.ls4c{letter-spacing:0.018253pt;}
.ls3d{letter-spacing:0.020494pt;}
.ls4f{letter-spacing:0.027322pt;}
.ls23{letter-spacing:0.028052pt;}
.ls31{letter-spacing:0.028725pt;}
.ls9{letter-spacing:1.487748pt;}
.ls0{letter-spacing:1.570910pt;}
.ls49{letter-spacing:1.615274pt;}
.ls4{letter-spacing:1.629092pt;}
.ls20{letter-spacing:1.721549pt;}
.ls2e{letter-spacing:1.753962pt;}
.ls38{letter-spacing:1.761473pt;}
.ls28{letter-spacing:1.773148pt;}
.ls6{letter-spacing:1.785310pt;}
.ls15{letter-spacing:2.265711pt;}
.ls5e{letter-spacing:2.265871pt;}
.ls1c{letter-spacing:2.359159pt;}
.lsb{letter-spacing:2.422921pt;}
.ls54{letter-spacing:2.653258pt;}
.ls8{letter-spacing:2.653398pt;}
.ls18{letter-spacing:2.657546pt;}
.ls2{letter-spacing:2.658731pt;}
.ls3b{letter-spacing:2.658868pt;}
.lsa{letter-spacing:2.661325pt;}
.ls55{letter-spacing:3.483805pt;}
.ls3c{letter-spacing:3.801593pt;}
.ls3a{letter-spacing:4.183026pt;}
.ls2a{letter-spacing:4.423925pt;}
.ls39{letter-spacing:4.429258pt;}
.lsf{letter-spacing:5.435823pt;}
.ls50{letter-spacing:6.312346pt;}
.lse{letter-spacing:6.822434pt;}
.ls5d{letter-spacing:6.949956pt;}
.ls5c{letter-spacing:7.013717pt;}
.ls12{letter-spacing:8.990310pt;}
.ls21{letter-spacing:10.584337pt;}
.ls56{letter-spacing:12.399321pt;}
.ls3{letter-spacing:12.916374pt;}
.ls2d{letter-spacing:12.943497pt;}
.ls2f{letter-spacing:13.708629pt;}
.ls27{letter-spacing:13.836151pt;}
.ls24{letter-spacing:13.899913pt;}
.ls2c{letter-spacing:14.154957pt;}
.ls4e{letter-spacing:14.771215pt;}
.ls47{letter-spacing:15.940267pt;}
.ls29{letter-spacing:16.823925pt;}
.ls1f{letter-spacing:17.725577pt;}
.ls59{letter-spacing:20.339780pt;}
.ls48{letter-spacing:20.889762pt;}
.ls19{letter-spacing:21.232435pt;}
.ls3e{letter-spacing:21.423718pt;}
.ls57{letter-spacing:21.672453pt;}
.ls41{letter-spacing:24.084905pt;}
.ls4a{letter-spacing:25.321365pt;}
.ls5f{letter-spacing:25.350879pt;}
.ls32{letter-spacing:25.613258pt;}
.ls58{letter-spacing:25.888814pt;}
.ls52{letter-spacing:29.393852pt;}
.ls14{letter-spacing:29.772213pt;}
.ls51{letter-spacing:31.242923pt;}
.ls16{letter-spacing:33.756213pt;}
.lsd{letter-spacing:40.041950pt;}
.ls43{letter-spacing:42.055925pt;}
.ls35{letter-spacing:52.415462pt;}
.ls34{letter-spacing:52.415891pt;}
.ls33{letter-spacing:52.420796pt;}
.ls1d{letter-spacing:75.302147pt;}
.ls40{letter-spacing:80.147661pt;}
.ls3f{letter-spacing:82.443059pt;}
.lsc{letter-spacing:125.057053pt;}
.ls22{letter-spacing:448.367821pt;}
.ls25{letter-spacing:474.892425pt;}
.ls30{letter-spacing:636.080401pt;}
.ls37{letter-spacing:684.353546pt;}
.ls44{letter-spacing:693.847927pt;}
.ls1b{letter-spacing:767.300676pt;}
.ls1e{letter-spacing:813.846255pt;}
.ws64{word-spacing:-49.606110pt;}
.ws6f{word-spacing:-46.099251pt;}
.ws6e{word-spacing:-46.035490pt;}
.ws33{word-spacing:-40.590295pt;}
.ws77{word-spacing:-38.415786pt;}
.ws7a{word-spacing:-38.362652pt;}
.ws39{word-spacing:-30.005958pt;}
.ws38{word-spacing:-29.942197pt;}
.ws70{word-spacing:-29.521250pt;}
.ws35{word-spacing:-26.690383pt;}
.ws75{word-spacing:-19.925333pt;}
.ws54{word-spacing:-19.357860pt;}
.ws53{word-spacing:-19.294099pt;}
.ws74{word-spacing:-19.166577pt;}
.ws5c{word-spacing:-17.343010pt;}
.ws76{word-spacing:-14.760588pt;}
.ws5d{word-spacing:-9.156089pt;}
.ws4a{word-spacing:-6.694912pt;}
.ws52{word-spacing:-6.376030pt;}
.ws5b{word-spacing:-6.370697pt;}
.ws29{word-spacing:-3.443098pt;}
.ws50{word-spacing:-3.188053pt;}
.wsa2{word-spacing:-3.124292pt;}
.ws1c{word-spacing:-2.933009pt;}
.ws17{word-spacing:-2.486682pt;}
.ws5f{word-spacing:-2.167876pt;}
.ws43{word-spacing:-1.849071pt;}
.wsa3{word-spacing:-1.721549pt;}
.wsa0{word-spacing:-1.466505pt;}
.ws60{word-spacing:-1.020177pt;}
.ws7c{word-spacing:-0.828894pt;}
.ws18{word-spacing:-0.637611pt;}
.ws12{word-spacing:-0.570182pt;}
.ws25{word-spacing:-0.414447pt;}
.ws90{word-spacing:-0.318805pt;}
.ws6{word-spacing:-0.221091pt;}
.ws91{word-spacing:-0.191283pt;}
.ws3{word-spacing:-0.076513pt;}
.ws61{word-spacing:-0.063761pt;}
.ws31{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.046545pt;}
.ws22{word-spacing:0.000000pt;}
.ws7d{word-spacing:0.063761pt;}
.ws2a{word-spacing:0.255044pt;}
.ws49{word-spacing:0.318805pt;}
.ws8{word-spacing:0.360728pt;}
.ws51{word-spacing:0.382566pt;}
.ws8a{word-spacing:0.637611pt;}
.ws5a{word-spacing:0.701372pt;}
.ws65{word-spacing:0.828894pt;}
.ws2e{word-spacing:0.860774pt;}
.ws24{word-spacing:0.924535pt;}
.ws3b{word-spacing:1.147699pt;}
.ws4d{word-spacing:1.211460pt;}
.wsa{word-spacing:1.233456pt;}
.ws7{word-spacing:1.291637pt;}
.ws4b{word-spacing:1.338982pt;}
.ws81{word-spacing:1.402743pt;}
.ws7f{word-spacing:1.466505pt;}
.ws59{word-spacing:1.530266pt;}
.ws11{word-spacing:1.582547pt;}
.ws7e{word-spacing:1.594027pt;}
.ws8b{word-spacing:1.657788pt;}
.ws13{word-spacing:1.757092pt;}
.wsa1{word-spacing:1.849071pt;}
.ws2d{word-spacing:1.912832pt;}
.ws71{word-spacing:1.976593pt;}
.wse{word-spacing:1.989820pt;}
.ws83{word-spacing:2.104115pt;}
.ws26{word-spacing:2.167876pt;}
.wsac{word-spacing:2.231637pt;}
.ws62{word-spacing:2.295398pt;}
.wsa5{word-spacing:2.359159pt;}
.ws99{word-spacing:2.550443pt;}
.ws4c{word-spacing:2.741726pt;}
.ws1d{word-spacing:2.869248pt;}
.ws32{word-spacing:2.932989pt;}
.ws89{word-spacing:3.060531pt;}
.ws15{word-spacing:3.211639pt;}
.ws63{word-spacing:3.315575pt;}
.ws1a{word-spacing:3.443098pt;}
.ws4f{word-spacing:3.506859pt;}
.wsa4{word-spacing:3.761903pt;}
.ws82{word-spacing:3.889425pt;}
.wsbc{word-spacing:3.953186pt;}
.ws3c{word-spacing:3.985067pt;}
.ws9e{word-spacing:4.016947pt;}
.ws9{word-spacing:4.096003pt;}
.ws1{word-spacing:4.131706pt;}
.ws68{word-spacing:4.144469pt;}
.wsb{word-spacing:4.154185pt;}
.ws2{word-spacing:4.208219pt;}
.wsb1{word-spacing:4.208230pt;}
.wsb3{word-spacing:4.271991pt;}
.ws57{word-spacing:4.399514pt;}
.ws6d{word-spacing:4.590797pt;}
.ws6c{word-spacing:4.654558pt;}
.ws28{word-spacing:4.718319pt;}
.ws2c{word-spacing:4.782080pt;}
.ws80{word-spacing:4.845841pt;}
.ws16{word-spacing:4.877722pt;}
.ws42{word-spacing:4.909602pt;}
.ws9c{word-spacing:4.973363pt;}
.ws78{word-spacing:5.095638pt;}
.ws9b{word-spacing:5.100885pt;}
.ws21{word-spacing:5.164646pt;}
.wsad{word-spacing:5.228407pt;}
.ws9d{word-spacing:5.355930pt;}
.ws27{word-spacing:5.387810pt;}
.ws41{word-spacing:5.483452pt;}
.ws9a{word-spacing:5.547213pt;}
.ws66{word-spacing:5.610974pt;}
.ws1e{word-spacing:5.674735pt;}
.wsf{word-spacing:5.771641pt;}
.ws88{word-spacing:5.993540pt;}
.ws2f{word-spacing:6.014754pt;}
.ws30{word-spacing:6.067888pt;}
.ws8d{word-spacing:6.121062pt;}
.ws9f{word-spacing:6.248585pt;}
.ws4e{word-spacing:6.312346pt;}
.ws3d{word-spacing:6.376107pt;}
.ws56{word-spacing:6.439868pt;}
.ws3e{word-spacing:6.503629pt;}
.ws14{word-spacing:6.586187pt;}
.wsbb{word-spacing:6.631151pt;}
.ws84{word-spacing:6.758673pt;}
.ws0{word-spacing:6.887500pt;}
.ws1f{word-spacing:6.949956pt;}
.ws94{word-spacing:7.077478pt;}
.wsb2{word-spacing:7.141239pt;}
.ws2b{word-spacing:7.205001pt;}
.ws58{word-spacing:7.268762pt;}
.wsbd{word-spacing:7.332523pt;}
.ws8e{word-spacing:7.460045pt;}
.wsb4{word-spacing:7.523806pt;}
.ws44{word-spacing:7.587567pt;}
.ws98{word-spacing:7.651328pt;}
.wsb6{word-spacing:7.778850pt;}
.ws85{word-spacing:7.842611pt;}
.wsc{word-spacing:8.098916pt;}
.ws92{word-spacing:8.161417pt;}
.ws87{word-spacing:8.416461pt;}
.wsae{word-spacing:8.480222pt;}
.ws93{word-spacing:8.671505pt;}
.ws8f{word-spacing:8.799027pt;}
.ws79{word-spacing:8.820222pt;}
.ws97{word-spacing:9.117833pt;}
.ws3f{word-spacing:9.181594pt;}
.wsa6{word-spacing:9.245355pt;}
.ws69{word-spacing:9.372877pt;}
.ws20{word-spacing:9.564160pt;}
.ws45{word-spacing:9.627921pt;}
.ws48{word-spacing:9.755443pt;}
.wsab{word-spacing:9.882965pt;}
.ws72{word-spacing:9.946726pt;}
.ws95{word-spacing:10.010487pt;}
.ws40{word-spacing:10.265532pt;}
.wsaa{word-spacing:10.393054pt;}
.wsd{word-spacing:10.437827pt;}
.ws73{word-spacing:10.456815pt;}
.wsb5{word-spacing:10.648098pt;}
.ws46{word-spacing:11.030665pt;}
.ws10{word-spacing:11.066191pt;}
.wsa8{word-spacing:11.413231pt;}
.ws5{word-spacing:11.531646pt;}
.ws7b{word-spacing:11.668275pt;}
.ws19{word-spacing:11.859558pt;}
.ws86{word-spacing:12.050842pt;}
.ws67{word-spacing:12.242125pt;}
.ws96{word-spacing:12.433408pt;}
.ws8c{word-spacing:13.071019pt;}
.ws47{word-spacing:13.326063pt;}
.wsa9{word-spacing:13.708629pt;}
.ws23{word-spacing:13.899913pt;}
.ws55{word-spacing:14.473762pt;}
.wsa7{word-spacing:15.366417pt;}
.ws37{word-spacing:15.981303pt;}
.ws34{word-spacing:16.769161pt;}
.wsaf{word-spacing:19.128320pt;}
.wsb7{word-spacing:20.148497pt;}
.wsb0{word-spacing:20.722347pt;}
.ws1b{word-spacing:23.113387pt;}
.wsba{word-spacing:24.930577pt;}
.wsb9{word-spacing:26.142037pt;}
.wsb8{word-spacing:30.732834pt;}
.ws5e{word-spacing:32.479887pt;}
.ws36{word-spacing:50.179959pt;}
.ws6a{word-spacing:59.867119pt;}
.ws6b{word-spacing:84.660477pt;}
.ws3a{word-spacing:94.901972pt;}
._23{margin-left:-12.752128pt;}
._2{margin-left:-10.358800pt;}
._4{margin-left:-6.197558pt;}
._7{margin-left:-4.829095pt;}
._0{margin-left:-3.416200pt;}
._3{margin-left:-2.065853pt;}
._6{margin-left:-1.134150pt;}
._20{width:0.896487pt;}
._5{width:2.065853pt;}
._14{width:2.975497pt;}
._1b{width:4.318764pt;}
._21{width:5.438078pt;}
._24{width:15.296186pt;}
._9{width:17.076774pt;}
._b{width:18.298594pt;}
._1f{width:19.447125pt;}
._f{width:21.164663pt;}
._a{width:22.981837pt;}
._8{width:24.669111pt;}
._11{width:25.810468pt;}
._27{width:26.712055pt;}
._12{width:27.709166pt;}
._19{width:28.819188pt;}
._16{width:30.031462pt;}
._18{width:31.791274pt;}
._e{width:33.112111pt;}
._10{width:34.520236pt;}
._26{width:35.476652pt;}
._1c{width:37.478743pt;}
._13{width:38.660723pt;}
._29{width:40.044507pt;}
._c{width:40.943504pt;}
._15{width:43.038720pt;}
._25{width:44.186419pt;}
._28{width:46.324786pt;}
._17{width:48.112708pt;}
._d{width:50.211744pt;}
._1a{width:51.275077pt;}
._1{width:55.100000pt;}
._1e{width:62.766388pt;}
._1d{width:102.014582pt;}
._22{width:505.074348pt;}
.fs6{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs5{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:9.361333pt;}
.y7c{bottom:22.157333pt;}
.y25{bottom:56.149333pt;}
.y24{bottom:96.000000pt;}
.y44{bottom:97.428000pt;}
.yd2{bottom:98.386667pt;}
.y23{bottom:115.261333pt;}
.y43{bottom:116.689333pt;}
.yd1{bottom:117.648000pt;}
.yf4{bottom:125.321333pt;}
.y22{bottom:134.522667pt;}
.y69{bottom:135.308000pt;}
.yd0{bottom:136.909333pt;}
.y8e{bottom:142.169333pt;}
.yf3{bottom:144.582667pt;}
.y42{bottom:146.245333pt;}
.y7d{bottom:149.234667pt;}
.y8d{bottom:153.104000pt;}
.y21{bottom:153.784000pt;}
.y68{bottom:154.568000pt;}
.ycf{bottom:156.170667pt;}
.yf2{bottom:163.844000pt;}
.y20{bottom:173.044000pt;}
.y67{bottom:173.829333pt;}
.yce{bottom:175.430667pt;}
.y41{bottom:181.292000pt;}
.y1f{bottom:192.305333pt;}
.y66{bottom:193.090667pt;}
.y8c{bottom:194.604000pt;}
.ycd{bottom:194.692000pt;}
.yf1{bottom:196.388000pt;}
.y1e{bottom:211.566667pt;}
.y8b{bottom:213.865333pt;}
.ycc{bottom:213.953333pt;}
.yf0{bottom:215.649333pt;}
.y65{bottom:220.986667pt;}
.y40{bottom:227.673333pt;}
.ycb{bottom:233.214667pt;}
.yef{bottom:234.910667pt;}
.y1d{bottom:246.613333pt;}
.y3f{bottom:246.934667pt;}
.y8a{bottom:248.912000pt;}
.y64{bottom:250.209333pt;}
.yca{bottom:252.476000pt;}
.y63{bottom:261.144000pt;}
.yee{bottom:267.454667pt;}
.yc9{bottom:271.736000pt;}
.yb1{bottom:279.445333pt;}
.yed{bottom:286.716000pt;}
.y1c{bottom:289.572000pt;}
.yc8{bottom:290.997333pt;}
.y89{bottom:291.982667pt;}
.y3e{bottom:292.438667pt;}
.yb0{bottom:298.706667pt;}
.y62{bottom:304.250667pt;}
.yec{bottom:305.977333pt;}
.y1b{bottom:308.833333pt;}
.yc7{bottom:310.258667pt;}
.y88{bottom:315.229333pt;}
.y1a{bottom:328.093333pt;}
.yc6{bottom:329.520000pt;}
.yaf{bottom:331.250667pt;}
.y87{bottom:338.476000pt;}
.yeb{bottom:338.521333pt;}
.y61{bottom:339.297333pt;}
.y19{bottom:347.354667pt;}
.yc5{bottom:348.781333pt;}
.yae{bottom:350.512000pt;}
.yea{bottom:357.782667pt;}
.y3d{bottom:359.192000pt;}
.y86{bottom:361.721333pt;}
.yc4{bottom:368.042667pt;}
.y3c{bottom:370.125333pt;}
.ye9{bottom:377.044000pt;}
.y18{bottom:380.365333pt;}
.y60{bottom:382.580000pt;}
.yad{bottom:383.056000pt;}
.y85{bottom:395.493333pt;}
.y17{bottom:398.430667pt;}
.y5f{bottom:401.841333pt;}
.yc3{bottom:403.088000pt;}
.ye8{bottom:409.589333pt;}
.yac{bottom:415.601333pt;}
.y16{bottom:416.496000pt;}
.y5e{bottom:421.101333pt;}
.ye7{bottom:428.849333pt;}
.y15{bottom:434.562667pt;}
.y84{bottom:435.634667pt;}
.y5d{bottom:440.362667pt;}
.yc2{bottom:446.370667pt;}
.ye6{bottom:448.110667pt;}
.yab{bottom:448.145333pt;}
.y14{bottom:452.628000pt;}
.y83{bottom:454.896000pt;}
.y5c{bottom:459.624000pt;}
.y39{bottom:465.364000pt;}
.yc1{bottom:465.632000pt;}
.yaa{bottom:467.406667pt;}
.y13{bottom:470.693333pt;}
.y5b{bottom:478.885333pt;}
.ye5{bottom:480.656000pt;}
.y38{bottom:481.968000pt;}
.yc0{bottom:484.893333pt;}
.ya9{bottom:486.668000pt;}
.y12{bottom:488.758667pt;}
.y7f{bottom:492.642667pt;}
.y5a{bottom:498.146667pt;}
.ye4{bottom:499.917333pt;}
.y37{bottom:500.565333pt;}
.y11{bottom:506.824000pt;}
.y76{bottom:515.533333pt;}
.ye3{bottom:519.177333pt;}
.ya8{bottom:521.714667pt;}
.ybf{bottom:523.414667pt;}
.y10{bottom:524.890667pt;}
.y59{bottom:526.041333pt;}
.y7b{bottom:534.108000pt;}
.ybe{bottom:542.676000pt;}
.yf{bottom:542.956000pt;}
.y77{bottom:543.270667pt;}
.y3b{bottom:543.272000pt;}
.ye2{bottom:551.722667pt;}
.y58{bottom:555.265333pt;}
.ye{bottom:561.021333pt;}
.ybd{bottom:561.937333pt;}
.ya7{bottom:564.996000pt;}
.y57{bottom:566.200000pt;}
.ye1{bottom:570.984000pt;}
.yd{bottom:579.086667pt;}
.ybc{bottom:581.198667pt;}
.y36{bottom:584.133333pt;}
.ya6{bottom:584.257333pt;}
.yc{bottom:597.152000pt;}
.ybb{bottom:600.460000pt;}
.y78{bottom:600.466667pt;}
.y35{bottom:600.738667pt;}
.ya5{bottom:603.518667pt;}
.ye0{bottom:603.528000pt;}
.y56{bottom:609.306667pt;}
.y80{bottom:609.458667pt;}
.yb{bottom:615.218667pt;}
.y34{bottom:619.334667pt;}
.ya4{bottom:622.780000pt;}
.ydf{bottom:622.789333pt;}
.ya{bottom:633.284000pt;}
.yba{bottom:638.317333pt;}
.y55{bottom:638.862667pt;}
.ya3{bottom:642.041333pt;}
.yde{bottom:642.050667pt;}
.yb9{bottom:657.578667pt;}
.y79{bottom:657.662667pt;}
.y9{bottom:657.750667pt;}
.ya2{bottom:661.301333pt;}
.y3a{bottom:662.041333pt;}
.yb8{bottom:676.840000pt;}
.ydd{bottom:677.097333pt;}
.y54{bottom:680.428000pt;}
.ya1{bottom:680.562667pt;}
.y82{bottom:694.124000pt;}
.yb7{bottom:696.101333pt;}
.y81{bottom:698.064000pt;}
.y53{bottom:699.689333pt;}
.y33{bottom:700.321333pt;}
.y8{bottom:713.992000pt;}
.y7a{bottom:714.858667pt;}
.y32{bottom:716.925333pt;}
.y52{bottom:718.950667pt;}
.ydc{bottom:720.378667pt;}
.ya0{bottom:721.520000pt;}
.yb6{bottom:733.848000pt;}
.y31{bottom:735.522667pt;}
.y51{bottom:738.212000pt;}
.yfe{bottom:739.596000pt;}
.ydb{bottom:739.640000pt;}
.y9f{bottom:740.781333pt;}
.yb5{bottom:740.841333pt;}
.yb4{bottom:744.781333pt;}
.y7{bottom:751.385333pt;}
.y75{bottom:752.542667pt;}
.y50{bottom:757.473333pt;}
.yfd{bottom:758.857333pt;}
.yda{bottom:758.901333pt;}
.y9e{bottom:760.042667pt;}
.y74{bottom:771.802667pt;}
.yb3{bottom:771.948000pt;}
.yfc{bottom:774.177333pt;}
.y6{bottom:775.296000pt;}
.y30{bottom:778.117333pt;}
.yd9{bottom:778.162667pt;}
.y4f{bottom:785.368000pt;}
.y73{bottom:791.064000pt;}
.y2f{bottom:797.378667pt;}
.y5{bottom:799.206667pt;}
.y4e{bottom:804.629333pt;}
.y72{bottom:810.325333pt;}
.yfb{bottom:810.662667pt;}
.yd8{bottom:813.208000pt;}
.y2e{bottom:816.640000pt;}
.y4d{bottom:819.949333pt;}
.y9d{bottom:820.850667pt;}
.y4c{bottom:823.890667pt;}
.y71{bottom:829.586667pt;}
.yfa{bottom:829.924000pt;}
.y2d{bottom:835.901333pt;}
.y9b{bottom:840.112000pt;}
.y4b{bottom:843.152000pt;}
.y4{bottom:846.528000pt;}
.y9c{bottom:847.642667pt;}
.y70{bottom:848.848000pt;}
.yf9{bottom:849.185333pt;}
.y2c{bottom:855.162667pt;}
.yd7{bottom:856.490667pt;}
.y4a{bottom:862.413333pt;}
.y6f{bottom:868.108000pt;}
.yf8{bottom:868.445333pt;}
.y2b{bottom:874.424000pt;}
.yd6{bottom:875.752000pt;}
.y3{bottom:879.737333pt;}
.y49{bottom:881.673333pt;}
.y9a{bottom:882.144000pt;}
.yb2{bottom:891.664000pt;}
.yd5{bottom:895.013333pt;}
.y6e{bottom:897.940000pt;}
.y94{bottom:899.390667pt;}
.yf7{bottom:900.990667pt;}
.y6d{bottom:901.881333pt;}
.y97{bottom:904.209333pt;}
.y93{bottom:904.886667pt;}
.y2a{bottom:906.968000pt;}
.y48{bottom:911.229333pt;}
.y2{bottom:912.945333pt;}
.yd4{bottom:914.273333pt;}
.y96{bottom:915.142667pt;}
.y90{bottom:915.326667pt;}
.yf6{bottom:920.252000pt;}
.y29{bottom:926.229333pt;}
.y92{bottom:926.805333pt;}
.yd3{bottom:933.534667pt;}
.y6c{bottom:937.010667pt;}
.y8f{bottom:937.244000pt;}
.y98{bottom:937.908000pt;}
.yf5{bottom:939.513333pt;}
.y95{bottom:943.904000pt;}
.y1{bottom:946.154667pt;}
.y91{bottom:948.722667pt;}
.y99{bottom:948.928000pt;}
.y47{bottom:952.796000pt;}
.y6b{bottom:956.272000pt;}
.y28{bottom:958.773333pt;}
.y46{bottom:972.057333pt;}
.y6a{bottom:975.533333pt;}
.y27{bottom:978.034667pt;}
.y45{bottom:991.318667pt;}
.y26{bottom:1010.580000pt;}
.h1d{height:26.147101pt;}
.hb{height:39.850400pt;}
.h5{height:40.610943pt;}
.h6{height:43.636400pt;}
.h9{height:44.632747pt;}
.h17{height:44.951552pt;}
.hf{height:45.525402pt;}
.h4{height:47.208562pt;}
.h8{height:47.820800pt;}
.h7{height:51.464807pt;}
.h18{height:51.833693pt;}
.he{height:53.486141pt;}
.ha{height:53.491474pt;}
.h14{height:55.017693pt;}
.h1a{height:55.454141pt;}
.h11{height:56.680807pt;}
.h3{height:57.384800pt;}
.h1f{height:63.580800pt;}
.h10{height:63.586133pt;}
.h19{height:67.593693pt;}
.h1b{height:69.804800pt;}
.h2{height:77.140000pt;}
.h15{height:81.828360pt;}
.h1c{height:89.322496pt;}
.h12{height:90.951467pt;}
.hc{height:90.956800pt;}
.hd{height:91.554133pt;}
.h13{height:91.559467pt;}
.h1e{height:104.485163pt;}
.h16{height:185.889387pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:393.771773pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:21.218667pt;}
.x23{left:93.092000pt;}
.xa{left:96.000000pt;}
.x3a{left:101.468000pt;}
.x2f{left:104.501333pt;}
.xd{left:115.076000pt;}
.xb{left:119.412000pt;}
.x3f{left:128.082667pt;}
.x30{left:130.765333pt;}
.x2{left:135.746667pt;}
.x3{left:159.941333pt;}
.x1{left:173.048000pt;}
.x27{left:182.978667pt;}
.x3c{left:192.310667pt;}
.x21{left:197.566667pt;}
.x22{left:213.738667pt;}
.x39{left:221.470667pt;}
.x18{left:223.056000pt;}
.x1d{left:228.025333pt;}
.x1e{left:234.666667pt;}
.x37{left:236.857333pt;}
.x4{left:242.401333pt;}
.x7{left:244.282667pt;}
.x28{left:252.794667pt;}
.x25{left:257.578667pt;}
.x6{left:258.934667pt;}
.x3b{left:260.917333pt;}
.x1f{left:274.969333pt;}
.x13{left:279.556000pt;}
.x2d{left:289.406667pt;}
.x2a{left:293.745333pt;}
.x16{left:301.534667pt;}
.x10{left:306.178667pt;}
.x1a{left:307.781333pt;}
.x12{left:309.032000pt;}
.x5{left:310.129333pt;}
.xf{left:311.393333pt;}
.x3d{left:317.942667pt;}
.x1b{left:319.404000pt;}
.x14{left:321.488000pt;}
.x11{left:332.721333pt;}
.x2c{left:339.809333pt;}
.xe{left:346.225333pt;}
.x2b{left:347.185333pt;}
.x8{left:348.989333pt;}
.x31{left:353.126667pt;}
.x9{left:364.849333pt;}
.x32{left:375.097333pt;}
.x29{left:378.420000pt;}
.xc{left:392.948000pt;}
.x17{left:398.665333pt;}
.x15{left:399.982667pt;}
.x20{left:401.830667pt;}
.x26{left:405.384000pt;}
.x1c{left:406.572000pt;}
.x3e{left:419.518667pt;}
.x33{left:421.446667pt;}
.x2e{left:454.233333pt;}
.x38{left:503.556000pt;}
.x19{left:542.585333pt;}
.x35{left:596.173333pt;}
.x40{left:620.120000pt;}
.x34{left:636.218667pt;}
.x36{left:690.810667pt;}
}




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