
    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_fc0f470f8cb2804b923fcf7e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.052734;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_5e9674a5d739761f375568d4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_568c8c4548d55edb56e7f410.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.953125;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_38bf62ebfdf6a56ef208fd20.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_cf0e4225afaf45940137e0c1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.053223;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_d65d4d5cbfd9ed0aeead6942.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.052734;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_b87a3ef1183677002e6313cc.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_dff7c6378a752732efbf3452.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6ec26dd6e9c7c84449815be3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.963000;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_f85c20dc113712314f6e6202.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.679688;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_f29ec3f26e4bc91aed97e973.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.287000;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_f35377fa32117c9c4ed4c4c9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.929688;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_e5c29a9b3d397fc17dca3866.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.762207;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_938656d29b9c9339c847361c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.696777;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_19de3d74fc28c4aa3198a7ac.woff2')format("woff");}.fff{font-family:fff;line-height:1.002441;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_8057691e480398774b065341.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.862305;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_a865e84e2deba0d0423b89d6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.692871;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_323eb5a04413d90cbb8182fd.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.692871;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_faba43de42a7c693021a3f46.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.002441;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_8aeb6ed17087cafbd9b2c7b1.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.862305;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_3d169d21cc5affea13251efe.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.692871;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_ca3370ac0b514dc3297ab886.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_70d8b0fed4df3db38ab8f629.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.862305;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_396f2fccd98bdd1ce61b68fc.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.002441;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_af80b6a41793df7c489513db.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.696777;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:ff1a;src:url('chunks/assets/font_381314a97b3cb1be65177bf7.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.676270;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:ff1b;src:url('chunks/assets/font_f29ec3f26e4bc91aed97e973.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.287000;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:ff1c;src:url('chunks/assets/font_1b4c5f996f01069c4f856ddb.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.929688;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:ff1d;src:url('chunks/assets/font_d7802c0a63492f144c86324a.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.922852;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.205923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205923,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249636,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);}
.m3{transform:matrix(0.337842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337842,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.906400px;}
.v1{vertical-align:33.042000px;}
.lsa{letter-spacing:-0.936000px;}
.ls17{letter-spacing:-0.864000px;}
.ls8{letter-spacing:-0.792000px;}
.ls14{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.648000px;}
.ls9{letter-spacing:-0.576000px;}
.ls18{letter-spacing:-0.504000px;}
.ls6{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.036000px;}
.ls1a{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.142560px;}
.lsc{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.256200px;}
.ls2{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.454784px;}
.lsb{letter-spacing:7.500000px;}
.ls16{letter-spacing:31.080000px;}
.ls1{letter-spacing:32.520000px;}
.ls11{letter-spacing:33.264000px;}
.ls15{letter-spacing:38.489760px;}
.lse{letter-spacing:44.784000px;}
.ls1d{letter-spacing:83.389981px;}
.ls1b{letter-spacing:995.251800px;}
.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;}
}
.ws15{word-spacing:-155.962800px;}
.ws11{word-spacing:-151.594800px;}
.wsf{word-spacing:-71.136000px;}
.ws10{word-spacing:-70.560000px;}
.ws17{word-spacing:-48.000000px;}
.ws13{word-spacing:-40.829567px;}
.ws14{word-spacing:-35.247593px;}
.ws12{word-spacing:-34.260425px;}
.ws16{word-spacing:-30.126116px;}
.wsb{word-spacing:-19.038240px;}
.wsc{word-spacing:-18.858240px;}
.ws3{word-spacing:-16.632000px;}
.ws1{word-spacing:-16.488000px;}
.ws8{word-spacing:-16.416000px;}
.ws4{word-spacing:-16.272000px;}
.ws2{word-spacing:-16.056000px;}
.wse{word-spacing:-15.768000px;}
.ws7{word-spacing:-15.696000px;}
.ws5{word-spacing:-15.624000px;}
.wsd{word-spacing:-15.552000px;}
.ws6{word-spacing:-15.480000px;}
.wsa{word-spacing:-15.226440px;}
.ws9{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
._3d{margin-left:-28.876800px;}
._34{margin-left:-25.418400px;}
._3c{margin-left:-15.806640px;}
._2e{margin-left:-14.094000px;}
._37{margin-left:-12.009600px;}
._39{margin-left:-10.924800px;}
._2f{margin-left:-9.720000px;}
._38{margin-left:-8.620800px;}
._30{margin-left:-7.488000px;}
._2d{margin-left:-6.480000px;}
._33{margin-left:-5.222400px;}
._32{margin-left:-3.398400px;}
._31{margin-left:-2.204863px;}
._1{margin-left:-1.093680px;}
._0{width:1.092000px;}
._8{width:2.952000px;}
._9{width:3.972000px;}
._4{width:5.285040px;}
._3{width:6.552000px;}
._2{width:7.560000px;}
._7{width:9.432000px;}
._6{width:11.064000px;}
._d{width:12.096000px;}
._10{width:13.536000px;}
._5{width:15.264000px;}
._11{width:18.000000px;}
._19{width:19.524000px;}
._18{width:20.592000px;}
._b{width:21.744000px;}
._a{width:23.040000px;}
._1f{width:24.048000px;}
._c{width:25.056000px;}
._f{width:26.859360px;}
._e{width:27.864000px;}
._1c{width:29.220000px;}
._1d{width:30.672000px;}
._2c{width:31.680000px;}
._1e{width:33.740640px;}
._15{width:34.803360px;}
._14{width:35.928000px;}
._13{width:38.232000px;}
._12{width:39.240000px;}
._21{width:41.845680px;}
._17{width:42.912000px;}
._16{width:45.000000px;}
._25{width:47.736000px;}
._24{width:48.816000px;}
._28{width:56.259360px;}
._27{width:57.528000px;}
._2b{width:70.056000px;}
._20{width:71.064000px;}
._23{width:86.616000px;}
._22{width:87.624000px;}
._26{width:101.736000px;}
._2a{width:149.616000px;}
._29{width:150.912000px;}
._1a{width:192.576000px;}
._1b{width:196.128000px;}
._3a{width:344.025600px;}
._3b{width:450.010800px;}
._35{width:1788.515400px;}
._36{width:2984.610600px;}
.fc6{color:rgb(247,94,37);}
.fc5{color:rgb(17,15,13);}
.fc3{color:transparent;}
.fc4{color:rgb(35,31,32);}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(37,37,37);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.fsb{font-size:129.697800px;}
.fs14{font-size:133.301400px;}
.fs11{font-size:139.467000px;}
.fs3{font-size:144.000000px;}
.fs10{font-size:151.594800px;}
.fs15{font-size:155.962800px;}
.fs2{font-size:156.240000px;}
.fs12{font-size:166.209000px;}
.fs13{font-size:180.661800px;}
.fse{font-size:192.000000px;}
.fs16{font-size:195.384000px;}
.fs1{font-size:216.000000px;}
.fsd{font-size:240.000000px;}
.fsa{font-size:252.000000px;}
.fsc{font-size:277.390800px;}
.fs9{font-size:288.000000px;}
.fsf{font-size:360.000000px;}
.fs8{font-size:540.000000px;}
.yed{bottom:-27.540000px;}
.y0{bottom:0.000000px;}
.yf5{bottom:5.580000px;}
.yf3{bottom:5.760000px;}
.yef{bottom:8.280000px;}
.y16d{bottom:9.006750px;}
.y16f{bottom:9.013800px;}
.y16b{bottom:9.336300px;}
.yec{bottom:12.420000px;}
.yf1{bottom:13.320000px;}
.y167{bottom:15.660750px;}
.y15d{bottom:22.483200px;}
.y165{bottom:23.009700px;}
.y169{bottom:24.997050px;}
.y13e{bottom:33.348900px;}
.y146{bottom:33.367650px;}
.y143{bottom:33.371250px;}
.y14a{bottom:33.382650px;}
.y13c{bottom:33.716700px;}
.y148{bottom:33.751950px;}
.yb3{bottom:37.440000px;}
.yb1{bottom:37.470000px;}
.yb8{bottom:37.485000px;}
.yd2{bottom:37.620000px;}
.y14f{bottom:39.730050px;}
.y151{bottom:39.757200px;}
.y159{bottom:39.765000px;}
.y155{bottom:39.767100px;}
.y157{bottom:39.769500px;}
.y15b{bottom:56.474550px;}
.y153{bottom:57.383100px;}
.y1{bottom:57.600000px;}
.yb5{bottom:70.380000px;}
.y10{bottom:77.760000px;}
.y140{bottom:102.712350px;}
.y15e{bottom:115.011000px;}
.y47{bottom:118.656000px;}
.y89{bottom:119.736000px;}
.y2a{bottom:120.816000px;}
.y110{bottom:120.996000px;}
.yea{bottom:122.076000px;}
.y7b{bottom:128.916000px;}
.y59{bottom:129.996000px;}
.yaf{bottom:132.336000px;}
.y18d{bottom:132.615600px;}
.yce{bottom:133.416000px;}
.y116{bottom:142.596000px;}
.y46{bottom:151.590000px;}
.ye{bottom:152.490000px;}
.y107{bottom:153.930000px;}
.y16c{bottom:155.002500px;}
.ye9{bottom:155.010000px;}
.y7a{bottom:161.850000px;}
.y58{bottom:162.930000px;}
.yc0{bottom:165.270000px;}
.ycd{bottom:166.350000px;}
.y163{bottom:172.013654px;}
.yfd{bottom:173.190000px;}
.y88{bottom:174.270000px;}
.y29{bottom:175.350000px;}
.y9d{bottom:175.530000px;}
.yfc{bottom:184.530000px;}
.yae{bottom:186.870000px;}
.ye8{bottom:187.950000px;}
.y18c{bottom:190.215600px;}
.y79{bottom:194.790000px;}
.y69{bottom:195.870000px;}
.ycc{bottom:199.290000px;}
.y168{bottom:203.659500px;}
.y45{bottom:206.130000px;}
.y87{bottom:207.390000px;}
.y9c{bottom:208.470000px;}
.yd{bottom:212.610000px;}
.y57{bottom:217.470000px;}
.ybf{bottom:219.810000px;}
.ye7{bottom:220.890000px;}
.y78{bottom:227.730000px;}
.y68{bottom:228.990000px;}
.y28{bottom:229.890000px;}
.ycb{bottom:232.230000px;}
.y44{bottom:239.070000px;}
.y86{bottom:240.330000px;}
.y9b{bottom:241.410000px;}
.y11b{bottom:242.490000px;}
.y18b{bottom:247.815600px;}
.y56{bottom:250.590000px;}
.y162{bottom:260.659084px;}
.y77{bottom:260.670000px;}
.y67{bottom:261.930000px;}
.y115{bottom:263.010000px;}
.yca{bottom:265.170000px;}
.y43{bottom:272.190000px;}
.yc{bottom:272.550000px;}
.y85{bottom:273.270000px;}
.y9a{bottom:274.350000px;}
.ye6{bottom:275.430000px;}
.y55{bottom:283.530000px;}
.y27{bottom:284.430000px;}
.y76{bottom:293.790000px;}
.y66{bottom:294.870000px;}
.y114{bottom:295.950000px;}
.y11a{bottom:297.030000px;}
.yc9{bottom:298.110000px;}
.y42{bottom:305.130000px;}
.y18a{bottom:305.415600px;}
.y84{bottom:306.210000px;}
.y99{bottom:307.290000px;}
.ye5{bottom:308.370000px;}
.y54{bottom:316.470000px;}
.y75{bottom:326.730000px;}
.y65{bottom:327.810000px;}
.ybe{bottom:328.890000px;}
.yb{bottom:332.670000px;}
.y41{bottom:338.070000px;}
.y26{bottom:339.150000px;}
.y98{bottom:340.230000px;}
.y166{bottom:341.293500px;}
.ye4{bottom:341.310000px;}
.y53{bottom:349.410000px;}
.y161{bottom:349.637769px;}
.y113{bottom:350.490000px;}
.y119{bottom:351.570000px;}
.yc8{bottom:352.650000px;}
.y74{bottom:359.715000px;}
.y64{bottom:360.795000px;}
.y106{bottom:361.875000px;}
.y189{bottom:363.015600px;}
.y40{bottom:371.055000px;}
.y25{bottom:372.135000px;}
.y97{bottom:373.215000px;}
.ye3{bottom:374.295000px;}
.y164{bottom:382.950000px;}
.ybd{bottom:383.475000px;}
.yc7{bottom:385.815000px;}
.y16e{bottom:392.613000px;}
.y73{bottom:392.655000px;}
.y83{bottom:393.735000px;}
.y105{bottom:394.815000px;}
.ya{bottom:398.235000px;}
.y3f{bottom:403.995000px;}
.y24{bottom:405.075000px;}
.y96{bottom:406.155000px;}
.ye2{bottom:407.415000px;}
.y15f{bottom:412.227150px;}
.y63{bottom:415.335000px;}
.y10f{bottom:416.415000px;}
.y188{bottom:420.615600px;}
.y72{bottom:425.595000px;}
.y82{bottom:426.675000px;}
.y104{bottom:427.755000px;}
.y3e{bottom:436.935000px;}
.y23{bottom:438.015000px;}
.y160{bottom:438.283200px;}
.yad{bottom:439.095000px;}
.yc6{bottom:440.355000px;}
.y16a{bottom:440.602500px;}
.y62{bottom:448.275000px;}
.y10e{bottom:449.355000px;}
.y71{bottom:458.535000px;}
.y81{bottom:459.615000px;}
.y95{bottom:460.695000px;}
.ye1{bottom:461.955000px;}
.y9{bottom:469.155000px;}
.yfb{bottom:469.875000px;}
.y22{bottom:470.955000px;}
.yac{bottom:472.215000px;}
.yc5{bottom:473.295000px;}
.y187{bottom:478.215600px;}
.y9f{bottom:480.135000px;}
.y61{bottom:481.215000px;}
.y103{bottom:482.295000px;}
.y3d{bottom:491.475000px;}
.y80{bottom:492.555000px;}
.y94{bottom:493.815000px;}
.ye0{bottom:494.895000px;}
.yfa{bottom:502.815000px;}
.y21{bottom:503.895000px;}
.yab{bottom:505.155000px;}
.yc4{bottom:506.235000px;}
.y9e{bottom:513.075000px;}
.y60{bottom:514.155000px;}
.y102{bottom:515.415000px;}
.y3c{bottom:524.415000px;}
.y112{bottom:525.495000px;}
.y93{bottom:526.755000px;}
.ydf{bottom:527.835000px;}
.y170{bottom:531.175800px;}
.yf9{bottom:535.755000px;}
.y186{bottom:535.815600px;}
.y20{bottom:536.835000px;}
.y10d{bottom:537.015000px;}
.yaa{bottom:538.095000px;}
.yc3{bottom:539.175000px;}
.y70{bottom:546.015000px;}
.y5f{bottom:547.095000px;}
.y101{bottom:548.355000px;}
.y8{bottom:550.695000px;}
.y3b{bottom:557.355000px;}
.ybc{bottom:558.615000px;}
.y92{bottom:559.695000px;}
.yde{bottom:560.775000px;}
.yf8{bottom:568.695000px;}
.y1f{bottom:569.775000px;}
.y10c{bottom:569.955000px;}
.ya9{bottom:571.035000px;}
.y6f{bottom:578.955000px;}
.y5e{bottom:580.215000px;}
.y14d{bottom:585.350850px;}
.y3a{bottom:590.295000px;}
.y111{bottom:591.555000px;}
.y91{bottom:592.635000px;}
.y185{bottom:593.415600px;}
.yc2{bottom:593.715000px;}
.yf7{bottom:601.815000px;}
.y1e{bottom:602.715000px;}
.y100{bottom:602.895000px;}
.ya8{bottom:603.975000px;}
.y6e{bottom:611.895000px;}
.y5d{bottom:613.155000px;}
.ydd{bottom:615.315000px;}
.y39{bottom:623.445000px;}
.y10b{bottom:624.525000px;}
.y7f{bottom:634.785000px;}
.yff{bottom:635.865000px;}
.ya7{bottom:636.945000px;}
.y7{bottom:640.905000px;}
.y6d{bottom:645.045000px;}
.y5c{bottom:646.125000px;}
.y90{bottom:647.205000px;}
.yc1{bottom:648.285000px;}
.y184{bottom:651.015600px;}
.y38{bottom:656.385000px;}
.y1d{bottom:657.465000px;}
.y7e{bottom:667.725000px;}
.ya6{bottom:669.885000px;}
.yf4{bottom:673.665000px;}
.y6c{bottom:677.985000px;}
.y5b{bottom:679.065000px;}
.ybb{bottom:685.545000px;}
.y37{bottom:689.325000px;}
.yfe{bottom:690.405000px;}
.y7d{bottom:700.665000px;}
.y8f{bottom:701.745000px;}
.ya5{bottom:702.825000px;}
.yf0{bottom:706.785000px;}
.y183{bottom:708.615600px;}
.y6{bottom:709.485000px;}
.y6b{bottom:710.925000px;}
.y1c{bottom:712.005000px;}
.yd6{bottom:716.145000px;}
.y36{bottom:722.265000px;}
.y118{bottom:723.345000px;}
.ydc{bottom:724.425000px;}
.y7c{bottom:733.605000px;}
.yba{bottom:740.085000px;}
.y15c{bottom:742.633500px;}
.y6a{bottom:743.865000px;}
.y5a{bottom:744.945000px;}
.y35{bottom:755.205000px;}
.y8e{bottom:756.285000px;}
.ya4{bottom:757.365000px;}
.y182{bottom:766.215600px;}
.y1b{bottom:766.545000px;}
.yd5{bottom:770.685000px;}
.y52{bottom:776.805000px;}
.y10a{bottom:777.885000px;}
.ydb{bottom:778.965000px;}
.yee{bottom:781.125000px;}
.y34{bottom:788.145000px;}
.y8d{bottom:789.225000px;}
.yb9{bottom:794.625000px;}
.y1a{bottom:799.485000px;}
.y5{bottom:799.665000px;}
.yeb{bottom:803.625000px;}
.yf6{bottom:808.485000px;}
.y51{bottom:809.745000px;}
.y109{bottom:810.825000px;}
.ya3{bottom:812.085000px;}
.y33{bottom:821.085000px;}
.y8c{bottom:822.165000px;}
.yd4{bottom:825.225000px;}
.y19{bottom:832.425000px;}
.yda{bottom:833.685000px;}
.yf2{bottom:837.105000px;}
.y50{bottom:842.685000px;}
.y117{bottom:843.765000px;}
.y14c{bottom:848.598000px;}
.yb7{bottom:849.165000px;}
.y15a{bottom:850.401000px;}
.y32{bottom:854.025000px;}
.y18{bottom:865.365000px;}
.ya2{bottom:866.625000px;}
.y18e{bottom:874.764150px;}
.y4f{bottom:875.670000px;}
.y8b{bottom:876.930000px;}
.yd3{bottom:879.810000px;}
.y31{bottom:887.010000px;}
.yd9{bottom:888.270000px;}
.y4{bottom:889.890000px;}
.y17{bottom:898.350000px;}
.y108{bottom:898.530000px;}
.yb6{bottom:903.750000px;}
.y4e{bottom:908.610000px;}
.y30{bottom:920.130000px;}
.ya1{bottom:921.210000px;}
.y16{bottom:931.290000px;}
.y8a{bottom:931.470000px;}
.yd1{bottom:934.350000px;}
.y4d{bottom:941.730000px;}
.yd8{bottom:942.810000px;}
.y158{bottom:949.764000px;}
.y2f{bottom:953.070000px;}
.yb4{bottom:959.190000px;}
.y15{bottom:964.230000px;}
.y4c{bottom:974.670000px;}
.ya0{bottom:975.750000px;}
.y2e{bottom:986.010000px;}
.yd0{bottom:989.790000px;}
.y3{bottom:992.490000px;}
.y14{bottom:997.170000px;}
.yd7{bottom:997.350000px;}
.y4b{bottom:1007.610000px;}
.y17f{bottom:1012.434750px;}
.y2d{bottom:1018.950000px;}
.y13{bottom:1030.290000px;}
.y156{bottom:1032.412500px;}
.y4a{bottom:1040.550000px;}
.ycf{bottom:1045.050000px;}
.yb2{bottom:1047.390000px;}
.y2c{bottom:1051.890000px;}
.y12{bottom:1063.230000px;}
.y17e{bottom:1070.034750px;}
.y49{bottom:1073.490000px;}
.y2b{bottom:1084.830000px;}
.y2{bottom:1087.350000px;}
.y11{bottom:1096.170000px;}
.yb0{bottom:1101.930000px;}
.y48{bottom:1106.430000px;}
.y154{bottom:1115.068500px;}
.y17d{bottom:1127.634750px;}
.yf{bottom:1139.400000px;}
.y17c{bottom:1185.234750px;}
.y152{bottom:1197.723000px;}
.y17b{bottom:1242.834750px;}
.y150{bottom:1299.793500px;}
.y17a{bottom:1300.434750px;}
.y179{bottom:1358.034750px;}
.y14e{bottom:1384.705500px;}
.y178{bottom:1415.634750px;}
.y177{bottom:1473.234750px;}
.y14b{bottom:1551.327450px;}
.y181{bottom:1577.061750px;}
.y149{bottom:1585.797000px;}
.y147{bottom:1655.152500px;}
.y145{bottom:1724.892000px;}
.y176{bottom:1736.917200px;}
.y144{bottom:1794.243000px;}
.y175{bottom:1852.117200px;}
.y142{bottom:1863.598500px;}
.y174{bottom:1909.717200px;}
.y13f{bottom:1934.470500px;}
.y173{bottom:1967.317200px;}
.y141{bottom:1967.827650px;}
.y172{bottom:2024.917050px;}
.y13d{bottom:2074.692000px;}
.y171{bottom:2140.117200px;}
.y13b{bottom:2144.049000px;}
.y13a{bottom:2246.955000px;}
.y180{bottom:2254.136100px;}
.y133{bottom:2396.217900px;}
.y135{bottom:2492.432250px;}
.y137{bottom:2499.694650px;}
.y132{bottom:2511.418050px;}
.y134{bottom:2607.632100px;}
.y131{bottom:2626.617900px;}
.y138{bottom:2657.135550px;}
.y136{bottom:2716.863450px;}
.y139{bottom:2834.199150px;}
.y125{bottom:3013.890562px;}
.y130{bottom:3032.675400px;}
.y12f{bottom:3090.275400px;}
.y123{bottom:3130.424698px;}
.y12e{bottom:3147.875250px;}
.y12d{bottom:3205.475400px;}
.y124{bottom:3232.755600px;}
.y12c{bottom:3263.075250px;}
.y12b{bottom:3320.675550px;}
.y122{bottom:3351.990600px;}
.y12a{bottom:3378.275400px;}
.y127{bottom:3416.569807px;}
.y120{bottom:3436.021800px;}
.y129{bottom:3444.398400px;}
.y126{bottom:3455.479147px;}
.y128{bottom:3501.998250px;}
.y121{bottom:3535.435164px;}
.y11d{bottom:3676.823400px;}
.y11f{bottom:3872.867400px;}
.y11e{bottom:3948.467250px;}
.y11c{bottom:4077.923550px;}
.h18{height:25.740000px;}
.h16{height:25.920000px;}
.h14{height:28.440000px;}
.h13{height:32.580000px;}
.h15{height:33.480000px;}
.h3f{height:46.321500px;}
.h3e{height:46.327500px;}
.h3c{height:46.660500px;}
.h3a{height:52.987500px;}
.hd{height:54.525000px;}
.h10{height:54.540000px;}
.hf{height:54.562500px;}
.hc{height:54.570000px;}
.h12{height:54.576000px;}
.h11{height:54.720000px;}
.h8{height:55.792969px;}
.h2{height:57.927656px;}
.h38{height:60.319500px;}
.h3b{height:62.316000px;}
.ha{height:62.964844px;}
.h7{height:65.277773px;}
.h34{height:65.389500px;}
.h2a{height:69.351000px;}
.h27{height:69.355500px;}
.h24{height:69.733500px;}
.h2b{height:69.739500px;}
.h17{height:73.668867px;}
.hb{height:74.004654px;}
.h9{height:74.953125px;}
.h2f{height:82.653000px;}
.h32{height:82.654500px;}
.h6{height:83.689453px;}
.he{height:87.465000px;}
.h36{height:91.254181px;}
.h33{height:99.358500px;}
.h31{height:100.267500px;}
.h28{height:103.777300px;}
.h25{height:103.925341px;}
.h39{height:106.919810px;}
.h37{height:109.934602px;}
.h2c{height:115.019416px;}
.h5{height:121.070742px;}
.h26{height:125.021297px;}
.h21{height:127.968750px;}
.h3d{height:128.623618px;}
.h1e{height:133.718432px;}
.h2e{height:137.073731px;}
.h4{height:137.167734px;}
.h29{height:138.708000px;}
.h30{height:148.993057px;}
.h1d{height:167.958984px;}
.h20{height:175.200000px;}
.h3{height:189.632812px;}
.h40{height:201.440904px;}
.h22{height:208.242000px;}
.h1c{height:210.240000px;}
.h23{height:270.000000px;}
.h1f{height:285.989915px;}
.h1b{height:394.200000px;}
.h35{height:443.896500px;}
.h2d{height:624.634500px;}
.h1{height:1262.880000px;}
.h0{height:1263.000000px;}
.h19{height:4337.010000px;}
.h1a{height:4337.250000px;}
.wf{width:36.000000px;}
.w15{width:61.005000px;}
.w14{width:61.041000px;}
.we{width:67.500000px;}
.wd{width:73.116000px;}
.wc{width:82.080000px;}
.w26{width:90.196500px;}
.w3{width:107.494500px;}
.w5{width:107.640000px;}
.w4{width:107.841000px;}
.w7{width:107.985000px;}
.w6{width:108.216000px;}
.w2e{width:111.474000px;}
.w2d{width:111.477000px;}
.w8{width:114.861000px;}
.w25{width:169.123500px;}
.w11{width:174.810000px;}
.w12{width:181.828500px;}
.w10{width:182.008500px;}
.w24{width:183.108000px;}
.w13{width:193.155000px;}
.wb{width:204.015000px;}
.w22{width:205.653000px;}
.w23{width:205.654500px;}
.w18{width:225.927000px;}
.w1a{width:226.303500px;}
.w19{width:226.683000px;}
.w1c{width:227.062500px;}
.w1b{width:227.442000px;}
.w1d{width:241.438500px;}
.w2a{width:323.449500px;}
.w2b{width:336.096000px;}
.w29{width:336.427500px;}
.w2c{width:357.061500px;}
.w21{width:510.979500px;}
.wa{width:544.785000px;}
.w9{width:654.075000px;}
.w0{width:892.500000px;}
.w1{width:892.980000px;}
.w2{width:893.250000px;}
.w20{width:1364.716500px;}
.w1e{width:1374.855000px;}
.w28{width:1426.912500px;}
.w27{width:1436.044500px;}
.w1f{width:1462.992000px;}
.w16{width:3911.805000px;}
.w17{width:3912.000000px;}
.x0{left:0.000000px;}
.x15{left:8.134500px;}
.x37{left:10.798500px;}
.x30{left:13.320000px;}
.x33{left:16.020000px;}
.x32{left:18.000000px;}
.x34{left:20.520000px;}
.x3a{left:23.565000px;}
.x2e{left:29.160000px;}
.x20{left:31.305000px;}
.x31{left:33.660000px;}
.x2a{left:36.360000px;}
.x1d{left:40.485000px;}
.x72{left:43.594950px;}
.x6b{left:45.111600px;}
.x21{left:47.505000px;}
.x1e{left:49.860000px;}
.x6c{left:51.429000px;}
.x3e{left:53.280000px;}
.x1f{left:56.685000px;}
.x22{left:58.665000px;}
.x5c{left:65.857800px;}
.x23{left:67.860000px;}
.x1b{left:72.345000px;}
.x26{left:74.910000px;}
.x24{left:77.220000px;}
.x1c{left:79.410000px;}
.x25{left:84.090000px;}
.x59{left:85.149150px;}
.x65{left:91.105950px;}
.x4e{left:92.775600px;}
.x4c{left:95.775600px;}
.x14{left:98.281500px;}
.x5d{left:99.901200px;}
.x6a{left:102.818100px;}
.x5a{left:104.838450px;}
.x1{left:106.416000px;}
.x42{left:114.445650px;}
.x43{left:116.293844px;}
.x2{left:117.936000px;}
.x5b{left:119.217150px;}
.x40{left:122.716500px;}
.x50{left:130.555650px;}
.xf{left:133.416000px;}
.x62{left:141.220500px;}
.x5e{left:142.688250px;}
.x4f{left:148.854000px;}
.x57{left:152.114400px;}
.x61{left:157.430250px;}
.x10{left:159.510000px;}
.x5f{left:162.367650px;}
.x58{left:166.891200px;}
.x6d{left:168.168000px;}
.x60{left:176.746200px;}
.x16{left:205.785000px;}
.x4d{left:222.271650px;}
.x3{left:232.410000px;}
.x8{left:235.650000px;}
.x7{left:237.810000px;}
.x5{left:252.930000px;}
.x6f{left:256.443818px;}
.x6{left:269.670000px;}
.x48{left:281.976612px;}
.x3b{left:284.265000px;}
.x3c{left:292.185000px;}
.x44{left:298.548150px;}
.x29{left:302.295000px;}
.x9{left:311.835000px;}
.x17{left:313.635000px;}
.x47{left:331.294200px;}
.x45{left:344.587716px;}
.x38{left:355.575000px;}
.x51{left:374.781000px;}
.x2b{left:384.375000px;}
.x36{left:400.395000px;}
.x13{left:406.335000px;}
.x35{left:411.195000px;}
.x18{left:421.275000px;}
.xa{left:429.195000px;}
.x12{left:437.835000px;}
.xd{left:446.475000px;}
.x2c{left:466.455000px;}
.x4{left:473.115000px;}
.xb{left:496.875000px;}
.x46{left:503.990550px;}
.x19{left:529.500000px;}
.x2d{left:539.565000px;}
.x3d{left:548.940000px;}
.x73{left:586.245000px;}
.x3f{left:594.283650px;}
.x52{left:601.462500px;}
.x2f{left:607.065000px;}
.x56{left:618.498450px;}
.x39{left:629.580000px;}
.xc{left:632.265000px;}
.x1a{left:637.500000px;}
.x27{left:654.765000px;}
.x64{left:658.852500px;}
.x28{left:707.910000px;}
.x70{left:716.691000px;}
.x6e{left:735.428850px;}
.x11{left:770.010000px;}
.xe{left:778.470000px;}
.x53{left:827.766000px;}
.x41{left:862.216500px;}
.x66{left:864.505500px;}
.x49{left:870.634950px;}
.x4b{left:996.301800px;}
.x54{left:1055.206500px;}
.x67{left:1070.161500px;}
.x74{left:1075.083000px;}
.x71{left:1223.497500px;}
.x68{left:1253.265000px;}
.x55{left:1282.267500px;}
.x63{left:1400.683950px;}
.x69{left:1422.390000px;}
.x75{left:1774.960650px;}
.x76{left:1782.519600px;}
.x78{left:1802.362200px;}
.x7a{left:1809.921450px;}
.x79{left:1866.862200px;}
.x77{left:1897.086750px;}
.x4a{left:2157.968850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.250133pt;}
.v1{vertical-align:29.370667pt;}
.lsa{letter-spacing:-0.832000pt;}
.ls17{letter-spacing:-0.768000pt;}
.ls8{letter-spacing:-0.704000pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.576000pt;}
.ls9{letter-spacing:-0.512000pt;}
.ls18{letter-spacing:-0.448000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.032000pt;}
.ls1a{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.126720pt;}
.lsc{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.227733pt;}
.ls2{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.404253pt;}
.lsb{letter-spacing:6.666667pt;}
.ls16{letter-spacing:27.626667pt;}
.ls1{letter-spacing:28.906667pt;}
.ls11{letter-spacing:29.568000pt;}
.ls15{letter-spacing:34.213120pt;}
.lse{letter-spacing:39.808000pt;}
.ls1d{letter-spacing:74.124428pt;}
.ls1b{letter-spacing:884.668267pt;}
.ws15{word-spacing:-138.633600pt;}
.ws11{word-spacing:-134.750933pt;}
.wsf{word-spacing:-63.232000pt;}
.ws10{word-spacing:-62.720000pt;}
.ws17{word-spacing:-42.666667pt;}
.ws13{word-spacing:-36.292948pt;}
.ws14{word-spacing:-31.331194pt;}
.ws12{word-spacing:-30.453711pt;}
.ws16{word-spacing:-26.778770pt;}
.wsb{word-spacing:-16.922880pt;}
.wsc{word-spacing:-16.762880pt;}
.ws3{word-spacing:-14.784000pt;}
.ws1{word-spacing:-14.656000pt;}
.ws8{word-spacing:-14.592000pt;}
.ws4{word-spacing:-14.464000pt;}
.ws2{word-spacing:-14.272000pt;}
.wse{word-spacing:-14.016000pt;}
.ws7{word-spacing:-13.952000pt;}
.ws5{word-spacing:-13.888000pt;}
.wsd{word-spacing:-13.824000pt;}
.ws6{word-spacing:-13.760000pt;}
.wsa{word-spacing:-13.534613pt;}
.ws9{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
._3d{margin-left:-25.668267pt;}
._34{margin-left:-22.594133pt;}
._3c{margin-left:-14.050347pt;}
._2e{margin-left:-12.528000pt;}
._37{margin-left:-10.675200pt;}
._39{margin-left:-9.710933pt;}
._2f{margin-left:-8.640000pt;}
._38{margin-left:-7.662933pt;}
._30{margin-left:-6.656000pt;}
._2d{margin-left:-5.760000pt;}
._33{margin-left:-4.642133pt;}
._32{margin-left:-3.020800pt;}
._31{margin-left:-1.959878pt;}
._1{margin-left:-0.972160pt;}
._0{width:0.970667pt;}
._8{width:2.624000pt;}
._9{width:3.530667pt;}
._4{width:4.697813pt;}
._3{width:5.824000pt;}
._2{width:6.720000pt;}
._7{width:8.384000pt;}
._6{width:9.834667pt;}
._d{width:10.752000pt;}
._10{width:12.032000pt;}
._5{width:13.568000pt;}
._11{width:16.000000pt;}
._19{width:17.354667pt;}
._18{width:18.304000pt;}
._b{width:19.328000pt;}
._a{width:20.480000pt;}
._1f{width:21.376000pt;}
._c{width:22.272000pt;}
._f{width:23.874987pt;}
._e{width:24.768000pt;}
._1c{width:25.973333pt;}
._1d{width:27.264000pt;}
._2c{width:28.160000pt;}
._1e{width:29.991680pt;}
._15{width:30.936320pt;}
._14{width:31.936000pt;}
._13{width:33.984000pt;}
._12{width:34.880000pt;}
._21{width:37.196160pt;}
._17{width:38.144000pt;}
._16{width:40.000000pt;}
._25{width:42.432000pt;}
._24{width:43.392000pt;}
._28{width:50.008320pt;}
._27{width:51.136000pt;}
._2b{width:62.272000pt;}
._20{width:63.168000pt;}
._23{width:76.992000pt;}
._22{width:77.888000pt;}
._26{width:90.432000pt;}
._2a{width:132.992000pt;}
._29{width:134.144000pt;}
._1a{width:171.178667pt;}
._1b{width:174.336000pt;}
._3a{width:305.800533pt;}
._3b{width:400.009600pt;}
._35{width:1589.791467pt;}
._36{width:2652.987200pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.fsb{font-size:115.286933pt;}
.fs14{font-size:118.490133pt;}
.fs11{font-size:123.970667pt;}
.fs3{font-size:128.000000pt;}
.fs10{font-size:134.750933pt;}
.fs15{font-size:138.633600pt;}
.fs2{font-size:138.880000pt;}
.fs12{font-size:147.741333pt;}
.fs13{font-size:160.588267pt;}
.fse{font-size:170.666667pt;}
.fs16{font-size:173.674667pt;}
.fs1{font-size:192.000000pt;}
.fsd{font-size:213.333333pt;}
.fsa{font-size:224.000000pt;}
.fsc{font-size:246.569600pt;}
.fs9{font-size:256.000000pt;}
.fsf{font-size:320.000000pt;}
.fs8{font-size:480.000000pt;}
.yed{bottom:-24.480000pt;}
.y0{bottom:0.000000pt;}
.yf5{bottom:4.960000pt;}
.yf3{bottom:5.120000pt;}
.yef{bottom:7.360000pt;}
.y16d{bottom:8.006000pt;}
.y16f{bottom:8.012267pt;}
.y16b{bottom:8.298933pt;}
.yec{bottom:11.040000pt;}
.yf1{bottom:11.840000pt;}
.y167{bottom:13.920667pt;}
.y15d{bottom:19.985067pt;}
.y165{bottom:20.453067pt;}
.y169{bottom:22.219600pt;}
.y13e{bottom:29.643467pt;}
.y146{bottom:29.660133pt;}
.y143{bottom:29.663333pt;}
.y14a{bottom:29.673467pt;}
.y13c{bottom:29.970400pt;}
.y148{bottom:30.001733pt;}
.yb3{bottom:33.280000pt;}
.yb1{bottom:33.306667pt;}
.yb8{bottom:33.320000pt;}
.yd2{bottom:33.440000pt;}
.y14f{bottom:35.315600pt;}
.y151{bottom:35.339733pt;}
.y159{bottom:35.346667pt;}
.y155{bottom:35.348533pt;}
.y157{bottom:35.350667pt;}
.y15b{bottom:50.199600pt;}
.y153{bottom:51.007200pt;}
.y1{bottom:51.200000pt;}
.yb5{bottom:62.560000pt;}
.y10{bottom:69.120000pt;}
.y140{bottom:91.299867pt;}
.y15e{bottom:102.232000pt;}
.y47{bottom:105.472000pt;}
.y89{bottom:106.432000pt;}
.y2a{bottom:107.392000pt;}
.y110{bottom:107.552000pt;}
.yea{bottom:108.512000pt;}
.y7b{bottom:114.592000pt;}
.y59{bottom:115.552000pt;}
.yaf{bottom:117.632000pt;}
.y18d{bottom:117.880533pt;}
.yce{bottom:118.592000pt;}
.y116{bottom:126.752000pt;}
.y46{bottom:134.746667pt;}
.ye{bottom:135.546667pt;}
.y107{bottom:136.826667pt;}
.y16c{bottom:137.780000pt;}
.ye9{bottom:137.786667pt;}
.y7a{bottom:143.866667pt;}
.y58{bottom:144.826667pt;}
.yc0{bottom:146.906667pt;}
.ycd{bottom:147.866667pt;}
.y163{bottom:152.901025pt;}
.yfd{bottom:153.946667pt;}
.y88{bottom:154.906667pt;}
.y29{bottom:155.866667pt;}
.y9d{bottom:156.026667pt;}
.yfc{bottom:164.026667pt;}
.yae{bottom:166.106667pt;}
.ye8{bottom:167.066667pt;}
.y18c{bottom:169.080533pt;}
.y79{bottom:173.146667pt;}
.y69{bottom:174.106667pt;}
.ycc{bottom:177.146667pt;}
.y168{bottom:181.030667pt;}
.y45{bottom:183.226667pt;}
.y87{bottom:184.346667pt;}
.y9c{bottom:185.306667pt;}
.yd{bottom:188.986667pt;}
.y57{bottom:193.306667pt;}
.ybf{bottom:195.386667pt;}
.ye7{bottom:196.346667pt;}
.y78{bottom:202.426667pt;}
.y68{bottom:203.546667pt;}
.y28{bottom:204.346667pt;}
.ycb{bottom:206.426667pt;}
.y44{bottom:212.506667pt;}
.y86{bottom:213.626667pt;}
.y9b{bottom:214.586667pt;}
.y11b{bottom:215.546667pt;}
.y18b{bottom:220.280533pt;}
.y56{bottom:222.746667pt;}
.y162{bottom:231.696964pt;}
.y77{bottom:231.706667pt;}
.y67{bottom:232.826667pt;}
.y115{bottom:233.786667pt;}
.yca{bottom:235.706667pt;}
.y43{bottom:241.946667pt;}
.yc{bottom:242.266667pt;}
.y85{bottom:242.906667pt;}
.y9a{bottom:243.866667pt;}
.ye6{bottom:244.826667pt;}
.y55{bottom:252.026667pt;}
.y27{bottom:252.826667pt;}
.y76{bottom:261.146667pt;}
.y66{bottom:262.106667pt;}
.y114{bottom:263.066667pt;}
.y11a{bottom:264.026667pt;}
.yc9{bottom:264.986667pt;}
.y42{bottom:271.226667pt;}
.y18a{bottom:271.480533pt;}
.y84{bottom:272.186667pt;}
.y99{bottom:273.146667pt;}
.ye5{bottom:274.106667pt;}
.y54{bottom:281.306667pt;}
.y75{bottom:290.426667pt;}
.y65{bottom:291.386667pt;}
.ybe{bottom:292.346667pt;}
.yb{bottom:295.706667pt;}
.y41{bottom:300.506667pt;}
.y26{bottom:301.466667pt;}
.y98{bottom:302.426667pt;}
.y166{bottom:303.372000pt;}
.ye4{bottom:303.386667pt;}
.y53{bottom:310.586667pt;}
.y161{bottom:310.789128pt;}
.y113{bottom:311.546667pt;}
.y119{bottom:312.506667pt;}
.yc8{bottom:313.466667pt;}
.y74{bottom:319.746667pt;}
.y64{bottom:320.706667pt;}
.y106{bottom:321.666667pt;}
.y189{bottom:322.680533pt;}
.y40{bottom:329.826667pt;}
.y25{bottom:330.786667pt;}
.y97{bottom:331.746667pt;}
.ye3{bottom:332.706667pt;}
.y164{bottom:340.400000pt;}
.ybd{bottom:340.866667pt;}
.yc7{bottom:342.946667pt;}
.y16e{bottom:348.989333pt;}
.y73{bottom:349.026667pt;}
.y83{bottom:349.986667pt;}
.y105{bottom:350.946667pt;}
.ya{bottom:353.986667pt;}
.y3f{bottom:359.106667pt;}
.y24{bottom:360.066667pt;}
.y96{bottom:361.026667pt;}
.ye2{bottom:362.146667pt;}
.y15f{bottom:366.424133pt;}
.y63{bottom:369.186667pt;}
.y10f{bottom:370.146667pt;}
.y188{bottom:373.880533pt;}
.y72{bottom:378.306667pt;}
.y82{bottom:379.266667pt;}
.y104{bottom:380.226667pt;}
.y3e{bottom:388.386667pt;}
.y23{bottom:389.346667pt;}
.y160{bottom:389.585067pt;}
.yad{bottom:390.306667pt;}
.yc6{bottom:391.426667pt;}
.y16a{bottom:391.646667pt;}
.y62{bottom:398.466667pt;}
.y10e{bottom:399.426667pt;}
.y71{bottom:407.586667pt;}
.y81{bottom:408.546667pt;}
.y95{bottom:409.506667pt;}
.ye1{bottom:410.626667pt;}
.y9{bottom:417.026667pt;}
.yfb{bottom:417.666667pt;}
.y22{bottom:418.626667pt;}
.yac{bottom:419.746667pt;}
.yc5{bottom:420.706667pt;}
.y187{bottom:425.080533pt;}
.y9f{bottom:426.786667pt;}
.y61{bottom:427.746667pt;}
.y103{bottom:428.706667pt;}
.y3d{bottom:436.866667pt;}
.y80{bottom:437.826667pt;}
.y94{bottom:438.946667pt;}
.ye0{bottom:439.906667pt;}
.yfa{bottom:446.946667pt;}
.y21{bottom:447.906667pt;}
.yab{bottom:449.026667pt;}
.yc4{bottom:449.986667pt;}
.y9e{bottom:456.066667pt;}
.y60{bottom:457.026667pt;}
.y102{bottom:458.146667pt;}
.y3c{bottom:466.146667pt;}
.y112{bottom:467.106667pt;}
.y93{bottom:468.226667pt;}
.ydf{bottom:469.186667pt;}
.y170{bottom:472.156267pt;}
.yf9{bottom:476.226667pt;}
.y186{bottom:476.280533pt;}
.y20{bottom:477.186667pt;}
.y10d{bottom:477.346667pt;}
.yaa{bottom:478.306667pt;}
.yc3{bottom:479.266667pt;}
.y70{bottom:485.346667pt;}
.y5f{bottom:486.306667pt;}
.y101{bottom:487.426667pt;}
.y8{bottom:489.506667pt;}
.y3b{bottom:495.426667pt;}
.ybc{bottom:496.546667pt;}
.y92{bottom:497.506667pt;}
.yde{bottom:498.466667pt;}
.yf8{bottom:505.506667pt;}
.y1f{bottom:506.466667pt;}
.y10c{bottom:506.626667pt;}
.ya9{bottom:507.586667pt;}
.y6f{bottom:514.626667pt;}
.y5e{bottom:515.746667pt;}
.y14d{bottom:520.311867pt;}
.y3a{bottom:524.706667pt;}
.y111{bottom:525.826667pt;}
.y91{bottom:526.786667pt;}
.y185{bottom:527.480533pt;}
.yc2{bottom:527.746667pt;}
.yf7{bottom:534.946667pt;}
.y1e{bottom:535.746667pt;}
.y100{bottom:535.906667pt;}
.ya8{bottom:536.866667pt;}
.y6e{bottom:543.906667pt;}
.y5d{bottom:545.026667pt;}
.ydd{bottom:546.946667pt;}
.y39{bottom:554.173333pt;}
.y10b{bottom:555.133333pt;}
.y7f{bottom:564.253333pt;}
.yff{bottom:565.213333pt;}
.ya7{bottom:566.173333pt;}
.y7{bottom:569.693333pt;}
.y6d{bottom:573.373333pt;}
.y5c{bottom:574.333333pt;}
.y90{bottom:575.293333pt;}
.yc1{bottom:576.253333pt;}
.y184{bottom:578.680533pt;}
.y38{bottom:583.453333pt;}
.y1d{bottom:584.413333pt;}
.y7e{bottom:593.533333pt;}
.ya6{bottom:595.453333pt;}
.yf4{bottom:598.813333pt;}
.y6c{bottom:602.653333pt;}
.y5b{bottom:603.613333pt;}
.ybb{bottom:609.373333pt;}
.y37{bottom:612.733333pt;}
.yfe{bottom:613.693333pt;}
.y7d{bottom:622.813333pt;}
.y8f{bottom:623.773333pt;}
.ya5{bottom:624.733333pt;}
.yf0{bottom:628.253333pt;}
.y183{bottom:629.880533pt;}
.y6{bottom:630.653333pt;}
.y6b{bottom:631.933333pt;}
.y1c{bottom:632.893333pt;}
.yd6{bottom:636.573333pt;}
.y36{bottom:642.013333pt;}
.y118{bottom:642.973333pt;}
.ydc{bottom:643.933333pt;}
.y7c{bottom:652.093333pt;}
.yba{bottom:657.853333pt;}
.y15c{bottom:660.118667pt;}
.y6a{bottom:661.213333pt;}
.y5a{bottom:662.173333pt;}
.y35{bottom:671.293333pt;}
.y8e{bottom:672.253333pt;}
.ya4{bottom:673.213333pt;}
.y182{bottom:681.080533pt;}
.y1b{bottom:681.373333pt;}
.yd5{bottom:685.053333pt;}
.y52{bottom:690.493333pt;}
.y10a{bottom:691.453333pt;}
.ydb{bottom:692.413333pt;}
.yee{bottom:694.333333pt;}
.y34{bottom:700.573333pt;}
.y8d{bottom:701.533333pt;}
.yb9{bottom:706.333333pt;}
.y1a{bottom:710.653333pt;}
.y5{bottom:710.813333pt;}
.yeb{bottom:714.333333pt;}
.yf6{bottom:718.653333pt;}
.y51{bottom:719.773333pt;}
.y109{bottom:720.733333pt;}
.ya3{bottom:721.853333pt;}
.y33{bottom:729.853333pt;}
.y8c{bottom:730.813333pt;}
.yd4{bottom:733.533333pt;}
.y19{bottom:739.933333pt;}
.yda{bottom:741.053333pt;}
.yf2{bottom:744.093333pt;}
.y50{bottom:749.053333pt;}
.y117{bottom:750.013333pt;}
.y14c{bottom:754.309333pt;}
.yb7{bottom:754.813333pt;}
.y15a{bottom:755.912000pt;}
.y32{bottom:759.133333pt;}
.y18{bottom:769.213333pt;}
.ya2{bottom:770.333333pt;}
.y18e{bottom:777.568133pt;}
.y4f{bottom:778.373333pt;}
.y8b{bottom:779.493333pt;}
.yd3{bottom:782.053333pt;}
.y31{bottom:788.453333pt;}
.yd9{bottom:789.573333pt;}
.y4{bottom:791.013333pt;}
.y17{bottom:798.533333pt;}
.y108{bottom:798.693333pt;}
.yb6{bottom:803.333333pt;}
.y4e{bottom:807.653333pt;}
.y30{bottom:817.893333pt;}
.ya1{bottom:818.853333pt;}
.y16{bottom:827.813333pt;}
.y8a{bottom:827.973333pt;}
.yd1{bottom:830.533333pt;}
.y4d{bottom:837.093333pt;}
.yd8{bottom:838.053333pt;}
.y158{bottom:844.234667pt;}
.y2f{bottom:847.173333pt;}
.yb4{bottom:852.613333pt;}
.y15{bottom:857.093333pt;}
.y4c{bottom:866.373333pt;}
.ya0{bottom:867.333333pt;}
.y2e{bottom:876.453333pt;}
.yd0{bottom:879.813333pt;}
.y3{bottom:882.213333pt;}
.y14{bottom:886.373333pt;}
.yd7{bottom:886.533333pt;}
.y4b{bottom:895.653333pt;}
.y17f{bottom:899.942000pt;}
.y2d{bottom:905.733333pt;}
.y13{bottom:915.813333pt;}
.y156{bottom:917.700000pt;}
.y4a{bottom:924.933333pt;}
.ycf{bottom:928.933333pt;}
.yb2{bottom:931.013333pt;}
.y2c{bottom:935.013333pt;}
.y12{bottom:945.093333pt;}
.y17e{bottom:951.142000pt;}
.y49{bottom:954.213333pt;}
.y2b{bottom:964.293333pt;}
.y2{bottom:966.533333pt;}
.y11{bottom:974.373333pt;}
.yb0{bottom:979.493333pt;}
.y48{bottom:983.493333pt;}
.y154{bottom:991.172000pt;}
.y17d{bottom:1002.342000pt;}
.yf{bottom:1012.800000pt;}
.y17c{bottom:1053.542000pt;}
.y152{bottom:1064.642667pt;}
.y17b{bottom:1104.742000pt;}
.y150{bottom:1155.372000pt;}
.y17a{bottom:1155.942000pt;}
.y179{bottom:1207.142000pt;}
.y14e{bottom:1230.849333pt;}
.y178{bottom:1258.342000pt;}
.y177{bottom:1309.542000pt;}
.y14b{bottom:1378.957733pt;}
.y181{bottom:1401.832667pt;}
.y149{bottom:1409.597333pt;}
.y147{bottom:1471.246667pt;}
.y145{bottom:1533.237333pt;}
.y176{bottom:1543.926400pt;}
.y144{bottom:1594.882667pt;}
.y175{bottom:1646.326400pt;}
.y142{bottom:1656.532000pt;}
.y174{bottom:1697.526400pt;}
.y13f{bottom:1719.529333pt;}
.y173{bottom:1748.726400pt;}
.y141{bottom:1749.180133pt;}
.y172{bottom:1799.926267pt;}
.y13d{bottom:1844.170667pt;}
.y171{bottom:1902.326400pt;}
.y13b{bottom:1905.821333pt;}
.y13a{bottom:1997.293333pt;}
.y180{bottom:2003.676533pt;}
.y133{bottom:2129.971467pt;}
.y135{bottom:2215.495333pt;}
.y137{bottom:2221.950800pt;}
.y132{bottom:2232.371600pt;}
.y134{bottom:2317.895200pt;}
.y131{bottom:2334.771467pt;}
.y138{bottom:2361.898267pt;}
.y136{bottom:2414.989733pt;}
.y139{bottom:2519.288133pt;}
.y125{bottom:2679.013833pt;}
.y130{bottom:2695.711467pt;}
.y12f{bottom:2746.911467pt;}
.y123{bottom:2782.599732pt;}
.y12e{bottom:2798.111333pt;}
.y12d{bottom:2849.311467pt;}
.y124{bottom:2873.560533pt;}
.y12c{bottom:2900.511333pt;}
.y12b{bottom:2951.711600pt;}
.y122{bottom:2979.547200pt;}
.y12a{bottom:3002.911467pt;}
.y127{bottom:3036.950940pt;}
.y120{bottom:3054.241600pt;}
.y129{bottom:3061.687467pt;}
.y126{bottom:3071.537020pt;}
.y128{bottom:3112.887333pt;}
.y121{bottom:3142.609034pt;}
.y11d{bottom:3268.287467pt;}
.y11f{bottom:3442.548800pt;}
.y11e{bottom:3509.748667pt;}
.y11c{bottom:3624.820933pt;}
.h18{height:22.880000pt;}
.h16{height:23.040000pt;}
.h14{height:25.280000pt;}
.h13{height:28.960000pt;}
.h15{height:29.760000pt;}
.h3f{height:41.174667pt;}
.h3e{height:41.180000pt;}
.h3c{height:41.476000pt;}
.h3a{height:47.100000pt;}
.hd{height:48.466667pt;}
.h10{height:48.480000pt;}
.hf{height:48.500000pt;}
.hc{height:48.506667pt;}
.h12{height:48.512000pt;}
.h11{height:48.640000pt;}
.h8{height:49.593750pt;}
.h2{height:51.491250pt;}
.h38{height:53.617333pt;}
.h3b{height:55.392000pt;}
.ha{height:55.968750pt;}
.h7{height:58.024687pt;}
.h34{height:58.124000pt;}
.h2a{height:61.645333pt;}
.h27{height:61.649333pt;}
.h24{height:61.985333pt;}
.h2b{height:61.990667pt;}
.h17{height:65.483437pt;}
.hb{height:65.781915pt;}
.h9{height:66.625000pt;}
.h2f{height:73.469333pt;}
.h32{height:73.470667pt;}
.h6{height:74.390625pt;}
.he{height:77.746667pt;}
.h36{height:81.114828pt;}
.h33{height:88.318667pt;}
.h31{height:89.126667pt;}
.h28{height:92.246489pt;}
.h25{height:92.378081pt;}
.h39{height:95.039831pt;}
.h37{height:97.719646pt;}
.h2c{height:102.239480pt;}
.h5{height:107.618437pt;}
.h26{height:111.130042pt;}
.h21{height:113.750000pt;}
.h3d{height:114.332105pt;}
.h1e{height:118.860828pt;}
.h2e{height:121.843316pt;}
.h4{height:121.926875pt;}
.h29{height:123.296000pt;}
.h30{height:132.438273pt;}
.h1d{height:149.296875pt;}
.h20{height:155.733333pt;}
.h3{height:168.562500pt;}
.h40{height:179.058581pt;}
.h22{height:185.104000pt;}
.h1c{height:186.880000pt;}
.h23{height:240.000000pt;}
.h1f{height:254.213258pt;}
.h1b{height:350.400000pt;}
.h35{height:394.574667pt;}
.h2d{height:555.230667pt;}
.h1{height:1122.560000pt;}
.h0{height:1122.666667pt;}
.h19{height:3855.120000pt;}
.h1a{height:3855.333333pt;}
.wf{width:32.000000pt;}
.w15{width:54.226667pt;}
.w14{width:54.258667pt;}
.we{width:60.000000pt;}
.wd{width:64.992000pt;}
.wc{width:72.960000pt;}
.w26{width:80.174667pt;}
.w3{width:95.550667pt;}
.w5{width:95.680000pt;}
.w4{width:95.858667pt;}
.w7{width:95.986667pt;}
.w6{width:96.192000pt;}
.w2e{width:99.088000pt;}
.w2d{width:99.090667pt;}
.w8{width:102.098667pt;}
.w25{width:150.332000pt;}
.w11{width:155.386667pt;}
.w12{width:161.625333pt;}
.w10{width:161.785333pt;}
.w24{width:162.762667pt;}
.w13{width:171.693333pt;}
.wb{width:181.346667pt;}
.w22{width:182.802667pt;}
.w23{width:182.804000pt;}
.w18{width:200.824000pt;}
.w1a{width:201.158667pt;}
.w19{width:201.496000pt;}
.w1c{width:201.833333pt;}
.w1b{width:202.170667pt;}
.w1d{width:214.612000pt;}
.w2a{width:287.510667pt;}
.w2b{width:298.752000pt;}
.w29{width:299.046667pt;}
.w2c{width:317.388000pt;}
.w21{width:454.204000pt;}
.wa{width:484.253333pt;}
.w9{width:581.400000pt;}
.w0{width:793.333333pt;}
.w1{width:793.760000pt;}
.w2{width:794.000000pt;}
.w20{width:1213.081333pt;}
.w1e{width:1222.093333pt;}
.w28{width:1268.366667pt;}
.w27{width:1276.484000pt;}
.w1f{width:1300.437333pt;}
.w16{width:3477.160000pt;}
.w17{width:3477.333333pt;}
.x0{left:0.000000pt;}
.x15{left:7.230667pt;}
.x37{left:9.598667pt;}
.x30{left:11.840000pt;}
.x33{left:14.240000pt;}
.x32{left:16.000000pt;}
.x34{left:18.240000pt;}
.x3a{left:20.946667pt;}
.x2e{left:25.920000pt;}
.x20{left:27.826667pt;}
.x31{left:29.920000pt;}
.x2a{left:32.320000pt;}
.x1d{left:35.986667pt;}
.x72{left:38.751067pt;}
.x6b{left:40.099200pt;}
.x21{left:42.226667pt;}
.x1e{left:44.320000pt;}
.x6c{left:45.714667pt;}
.x3e{left:47.360000pt;}
.x1f{left:50.386667pt;}
.x22{left:52.146667pt;}
.x5c{left:58.540267pt;}
.x23{left:60.320000pt;}
.x1b{left:64.306667pt;}
.x26{left:66.586667pt;}
.x24{left:68.640000pt;}
.x1c{left:70.586667pt;}
.x25{left:74.746667pt;}
.x59{left:75.688133pt;}
.x65{left:80.983067pt;}
.x4e{left:82.467200pt;}
.x4c{left:85.133867pt;}
.x14{left:87.361333pt;}
.x5d{left:88.801067pt;}
.x6a{left:91.393867pt;}
.x5a{left:93.189733pt;}
.x1{left:94.592000pt;}
.x42{left:101.729467pt;}
.x43{left:103.372305pt;}
.x2{left:104.832000pt;}
.x5b{left:105.970800pt;}
.x40{left:109.081333pt;}
.x50{left:116.049467pt;}
.xf{left:118.592000pt;}
.x62{left:125.529333pt;}
.x5e{left:126.834000pt;}
.x4f{left:132.314667pt;}
.x57{left:135.212800pt;}
.x61{left:139.938000pt;}
.x10{left:141.786667pt;}
.x5f{left:144.326800pt;}
.x58{left:148.347733pt;}
.x6d{left:149.482667pt;}
.x60{left:157.107733pt;}
.x16{left:182.920000pt;}
.x4d{left:197.574800pt;}
.x3{left:206.586667pt;}
.x8{left:209.466667pt;}
.x7{left:211.386667pt;}
.x5{left:224.826667pt;}
.x6f{left:227.950061pt;}
.x6{left:239.706667pt;}
.x48{left:250.645877pt;}
.x3b{left:252.680000pt;}
.x3c{left:259.720000pt;}
.x44{left:265.376133pt;}
.x29{left:268.706667pt;}
.x9{left:277.186667pt;}
.x17{left:278.786667pt;}
.x47{left:294.483733pt;}
.x45{left:306.300192pt;}
.x38{left:316.066667pt;}
.x51{left:333.138667pt;}
.x2b{left:341.666667pt;}
.x36{left:355.906667pt;}
.x13{left:361.186667pt;}
.x35{left:365.506667pt;}
.x18{left:374.466667pt;}
.xa{left:381.506667pt;}
.x12{left:389.186667pt;}
.xd{left:396.866667pt;}
.x2c{left:414.626667pt;}
.x4{left:420.546667pt;}
.xb{left:441.666667pt;}
.x46{left:447.991600pt;}
.x19{left:470.666667pt;}
.x2d{left:479.613333pt;}
.x3d{left:487.946667pt;}
.x73{left:521.106667pt;}
.x3f{left:528.252133pt;}
.x52{left:534.633333pt;}
.x2f{left:539.613333pt;}
.x56{left:549.776400pt;}
.x39{left:559.626667pt;}
.xc{left:562.013333pt;}
.x1a{left:566.666667pt;}
.x27{left:582.013333pt;}
.x64{left:585.646667pt;}
.x28{left:629.253333pt;}
.x70{left:637.058667pt;}
.x6e{left:653.714533pt;}
.x11{left:684.453333pt;}
.xe{left:691.973333pt;}
.x53{left:735.792000pt;}
.x41{left:766.414667pt;}
.x66{left:768.449333pt;}
.x49{left:773.897733pt;}
.x4b{left:885.601600pt;}
.x54{left:937.961333pt;}
.x67{left:951.254667pt;}
.x74{left:955.629333pt;}
.x71{left:1087.553333pt;}
.x68{left:1114.013333pt;}
.x55{left:1139.793333pt;}
.x63{left:1245.052400pt;}
.x69{left:1264.346667pt;}
.x75{left:1577.742800pt;}
.x76{left:1584.461867pt;}
.x78{left:1602.099733pt;}
.x7a{left:1608.819067pt;}
.x79{left:1659.433067pt;}
.x77{left:1686.299333pt;}
.x4a{left:1918.194533pt;}
}




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