
    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_e27fc0ee5a4db42fcfbf8154.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_f28f3edce16ceef048ef0746.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0d521a428fd9303e0e428f90.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_49f57d27a77c9274dd688f83.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.757812;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_ffc4537c81d446c1a579c9c8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.113281;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_02913a8b60caf82dbca7c29a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.835938;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_88ae1afd5a5debc11fe2a5a8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0e0a8951d4dfabd36010a4ca.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f23bb1ec63aa81de01b2bb99.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9ed63388f69758dfa9f35746.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.842285;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_d3fd657ebf6893e3451b285e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_817c4029d195b4c6eea08fb8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7b4298ca9bda660d52d1c5ee.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.005371;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_b941bcbc4a997a2c4a7c34eb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.895996;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_3adabf0c400fc88cb943b1fe.woff2')format("woff");}.fff{font-family:fff;line-height:1.006348;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_9ce514576e3518814703f4c4.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.093262;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_d8b004c0e26047e589f82961.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.758789;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_235d8d0460faa2719497c1c8.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.104004;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_bf94f01ec823d9146411efe2.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.842285;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_316f5cbf4a157532d2f941f1.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_fc495f57fa23a96fe2d0c961.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_507fec8ef79096cb9bce3adf.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_2be74c07d427daf799893d2b.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_352d7d33a88d32dec2169040.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_3540a3faabc3bb056a1b16e6.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.904297;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_7f8288d33cc8a0ceb6c4a74f.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.675781;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_833f11ffa3dde6997ec6c6de.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_6a1ed605901c327f95d0ce77.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.093262;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_977c04f0022be3a416f0cb0a.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_0e667dfbd849aa975fe91824.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m2{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;}
.v1{vertical-align:24.480000px;}
.ls66{letter-spacing:-5.932800px;}
.ls2d{letter-spacing:-4.456800px;}
.ls40{letter-spacing:-3.009600px;}
.ls3f{letter-spacing:-2.397600px;}
.ls41{letter-spacing:-1.800000px;}
.ls67{letter-spacing:-1.533600px;}
.ls3b{letter-spacing:-1.497600px;}
.ls63{letter-spacing:-1.332000px;}
.ls3e{letter-spacing:-1.209600px;}
.ls3c{letter-spacing:-1.202400px;}
.ls3a{letter-spacing:-1.188000px;}
.ls64{letter-spacing:-1.058400px;}
.ls44{letter-spacing:-0.828576px;}
.ls69{letter-spacing:-0.722016px;}
.ls2f{letter-spacing:-0.612000px;}
.lsf{letter-spacing:-0.604800px;}
.ls2e{letter-spacing:-0.597600px;}
.ls30{letter-spacing:-0.590400px;}
.ls65{letter-spacing:-0.568800px;}
.ls23{letter-spacing:-0.525312px;}
.ls20{letter-spacing:-0.470592px;}
.ls8{letter-spacing:-0.454176px;}
.ls17{letter-spacing:-0.447552px;}
.ls22{letter-spacing:-0.432288px;}
.ls26{letter-spacing:-0.421344px;}
.ls10{letter-spacing:-0.361152px;}
.ls12{letter-spacing:-0.338688px;}
.ls13{letter-spacing:-0.320544px;}
.ls15{letter-spacing:-0.302400px;}
.ls48{letter-spacing:-0.278208px;}
.ls4a{letter-spacing:-0.272160px;}
.ls4d{letter-spacing:-0.266112px;}
.ls49{letter-spacing:-0.254016px;}
.ls11{letter-spacing:-0.241920px;}
.lsb{letter-spacing:-0.241200px;}
.ls43{letter-spacing:-0.229824px;}
.ls14{letter-spacing:-0.223776px;}
.ls50{letter-spacing:-0.217728px;}
.ls25{letter-spacing:-0.213408px;}
.ls5f{letter-spacing:-0.205344px;}
.ls61{letter-spacing:-0.198720px;}
.ls42{letter-spacing:-0.193536px;}
.ls9{letter-spacing:-0.186048px;}
.ls24{letter-spacing:-0.169632px;}
.ls5{letter-spacing:-0.158976px;}
.ls16{letter-spacing:-0.145152px;}
.ls4b{letter-spacing:-0.133056px;}
.ls7{letter-spacing:-0.125856px;}
.ls5e{letter-spacing:-0.119232px;}
.lsa{letter-spacing:-0.115776px;}
.ls4e{letter-spacing:-0.096768px;}
.ls68{letter-spacing:-0.086112px;}
.ls60{letter-spacing:-0.079488px;}
.ls62{letter-spacing:-0.059616px;}
.ls5d{letter-spacing:-0.036000px;}
.ls45{letter-spacing:-0.028800px;}
.ls51{letter-spacing:-0.021600px;}
.lse{letter-spacing:-0.014400px;}
.ls46{letter-spacing:-0.007200px;}
.ls6{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.007200px;}
.ls6a{letter-spacing:0.010080px;}
.ls5b{letter-spacing:0.010944px;}
.ls1b{letter-spacing:0.014400px;}
.ls52{letter-spacing:0.021600px;}
.ls47{letter-spacing:0.028800px;}
.ls4f{letter-spacing:0.036000px;}
.ls5c{letter-spacing:0.043200px;}
.lsd{letter-spacing:0.083664px;}
.ls53{letter-spacing:0.112032px;}
.ls1{letter-spacing:0.116640px;}
.ls35{letter-spacing:0.118800px;}
.ls32{letter-spacing:0.120960px;}
.ls2{letter-spacing:0.215136px;}
.ls31{letter-spacing:0.237600px;}
.ls3{letter-spacing:0.239040px;}
.ls33{letter-spacing:0.240048px;}
.ls4{letter-spacing:0.240480px;}
.ls34{letter-spacing:0.242352px;}
.ls29{letter-spacing:0.247104px;}
.ls0{letter-spacing:0.250992px;}
.ls2a{letter-spacing:0.270864px;}
.ls2b{letter-spacing:0.275616px;}
.ls19{letter-spacing:0.285120px;}
.ls27{letter-spacing:0.289872px;}
.ls1a{letter-spacing:0.291456px;}
.ls18{letter-spacing:0.294624px;}
.ls28{letter-spacing:0.304128px;}
.lsc{letter-spacing:0.346608px;}
.ls2c{letter-spacing:0.356400px;}
.ls1d{letter-spacing:0.500832px;}
.ls1f{letter-spacing:1.609920px;}
.ls1e{letter-spacing:2.723040px;}
.ls4c{letter-spacing:6.332256px;}
.ls58{letter-spacing:7.012800px;}
.ls56{letter-spacing:7.459200px;}
.ls3d{letter-spacing:7.502400px;}
.ls57{letter-spacing:8.812800px;}
.ls55{letter-spacing:9.261648px;}
.ls1c{letter-spacing:19.516320px;}
.ls54{letter-spacing:33.315984px;}
.ls5a{letter-spacing:34.517232px;}
.ls59{letter-spacing:40.085280px;}
.ls36{letter-spacing:127.202832px;}
.ls39{letter-spacing:162.326880px;}
.ls37{letter-spacing:190.946880px;}
.ls38{letter-spacing:435.300480px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-26.821440px;}
.ws0{word-spacing:-18.288864px;}
.ws19{word-spacing:-18.014400px;}
.wsa{word-spacing:-18.000000px;}
.ws15{word-spacing:-17.985600px;}
.ws18{word-spacing:-17.409600px;}
.ws16{word-spacing:-17.402400px;}
.ws4{word-spacing:-17.395200px;}
.ws17{word-spacing:-17.388000px;}
.ws1b{word-spacing:-16.812000px;}
.ws1d{word-spacing:-16.797600px;}
.ws2e{word-spacing:-16.560000px;}
.ws1c{word-spacing:-16.502400px;}
.ws2f{word-spacing:-16.480512px;}
.ws39{word-spacing:-16.473888px;}
.ws2d{word-spacing:-16.440768px;}
.ws31{word-spacing:-16.434144px;}
.ws30{word-spacing:-16.401024px;}
.ws32{word-spacing:-16.354656px;}
.ws26{word-spacing:-16.308000px;}
.ws22{word-spacing:-16.300800px;}
.ws34{word-spacing:-16.293600px;}
.ws25{word-spacing:-16.286400px;}
.ws28{word-spacing:-16.279200px;}
.ws2c{word-spacing:-16.272000px;}
.ws21{word-spacing:-16.264800px;}
.ws14{word-spacing:-16.257600px;}
.ws29{word-spacing:-16.250400px;}
.ws23{word-spacing:-16.243200px;}
.ws2a{word-spacing:-16.236000px;}
.ws3a{word-spacing:-15.837984px;}
.ws36{word-spacing:-15.703200px;}
.ws2b{word-spacing:-15.660000px;}
.ws35{word-spacing:-15.213600px;}
.ws8{word-spacing:-14.974848px;}
.ws33{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.896224px;}
.ws6{word-spacing:-14.878080px;}
.ws38{word-spacing:-14.738400px;}
.ws9{word-spacing:-14.672448px;}
.wsc{word-spacing:-14.227200px;}
.ws2{word-spacing:-14.041152px;}
.wsd{word-spacing:-13.866048px;}
.wsf{word-spacing:-13.805856px;}
.ws1{word-spacing:-13.773024px;}
.wse{word-spacing:-13.701888px;}
.ws24{word-spacing:-13.668480px;}
.ws1e{word-spacing:-13.474944px;}
.ws1f{word-spacing:-13.438656px;}
.ws20{word-spacing:-12.839904px;}
.ws13{word-spacing:-12.711600px;}
.ws10{word-spacing:-12.649824px;}
.ws12{word-spacing:-12.626064px;}
.ws11{word-spacing:-12.602304px;}
.ws1a{word-spacing:-12.122352px;}
.ws27{word-spacing:-10.977120px;}
.ws37{word-spacing:-10.339200px;}
.wsb{word-spacing:0.000000px;}
.ws5{word-spacing:0.313632px;}
._4{margin-left:-8.828640px;}
._5{margin-left:-7.192800px;}
._1b{margin-left:-6.086592px;}
._d{margin-left:-5.060160px;}
._1{margin-left:-3.841920px;}
._0{margin-left:-2.119680px;}
._3{margin-left:-1.023552px;}
._2{width:1.059840px;}
._1e{width:2.062944px;}
._8{width:3.110400px;}
._18{width:4.124160px;}
._14{width:5.248800px;}
._16{width:7.228800px;}
._c{width:8.359200px;}
._12{width:9.813600px;}
._a{width:11.232000px;}
._1c{width:12.904560px;}
._1a{width:14.508000px;}
._1d{width:15.677424px;}
._21{width:16.844976px;}
._27{width:18.280800px;}
._10{width:19.396800px;}
._19{width:21.005136px;}
._9{width:22.269600px;}
._13{width:24.098400px;}
._f{width:25.164000px;}
._b{width:26.193600px;}
._1f{width:27.508608px;}
._26{width:28.533600px;}
._17{width:29.613600px;}
._24{width:31.096800px;}
._25{width:32.601600px;}
._20{width:35.366400px;}
._7{width:36.864000px;}
._28{width:38.203200px;}
._15{width:39.261600px;}
._e{width:45.388800px;}
._23{width:46.994400px;}
._11{width:60.768000px;}
._6{width:77.416416px;}
._22{width:124.063200px;}
._29{width:162.711360px;}
._2b{width:368.409600px;}
._2a{width:616.820112px;}
.fc6{color:transparent;}
.fc5{color:rgb(47,84,150);}
.fc4{color:rgb(255,0,0);}
.fc1{color:rgb(121,124,143);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(51,198,119);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs6{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.fs4{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y11{bottom:4.680000px;}
.y65{bottom:5.040000px;}
.y37{bottom:5.100000px;}
.y4b{bottom:5.220000px;}
.ya0{bottom:5.280000px;}
.y53{bottom:5.400000px;}
.y62{bottom:5.940000px;}
.y9{bottom:6.900000px;}
.y4a{bottom:7.740000px;}
.y48{bottom:8.340000px;}
.yc7{bottom:14.880000px;}
.ya8{bottom:15.480000px;}
.ybe{bottom:15.540000px;}
.y9c{bottom:16.080000px;}
.y10{bottom:24.840000px;}
.ya1{bottom:25.440000px;}
.y64{bottom:25.560000px;}
.y36{bottom:25.620000px;}
.y18{bottom:26.100000px;}
.y61{bottom:26.460000px;}
.y8{bottom:29.220000px;}
.y9f{bottom:36.240000px;}
.y47{bottom:42.900000px;}
.ye{bottom:44.640000px;}
.yf{bottom:45.360000px;}
.yc6{bottom:46.200000px;}
.ya7{bottom:46.440000px;}
.ybd{bottom:46.500000px;}
.ya9{bottom:46.800000px;}
.yc{bottom:46.860000px;}
.y17{bottom:46.980000px;}
.y60{bottom:47.340000px;}
.y35{bottom:49.020000px;}
.y9e{bottom:56.400000px;}
.y51{bottom:56.880000px;}
.y4{bottom:57.240000px;}
.y46{bottom:60.180000px;}
.y52{bottom:63.000000px;}
.y16{bottom:67.860000px;}
.ycd{bottom:68.400000px;}
.y34{bottom:72.780000px;}
.y50{bottom:73.080000px;}
.y3{bottom:76.320000px;}
.y45{bottom:77.100000px;}
.yc5{bottom:77.160000px;}
.ya6{bottom:77.400000px;}
.ycb{bottom:77.760000px;}
.ybc{bottom:77.820000px;}
.yb{bottom:83.220000px;}
.y15{bottom:88.740000px;}
.y112{bottom:90.000000px;}
.ycc{bottom:92.160000px;}
.y33{bottom:96.540000px;}
.y192{bottom:97.200000px;}
.y138{bottom:102.240000px;}
.y144{bottom:103.680000px;}
.y173{bottom:106.920000px;}
.yc4{bottom:108.120000px;}
.ya5{bottom:108.360000px;}
.yca{bottom:108.720000px;}
.ybb{bottom:108.780000px;}
.y5f{bottom:109.260000px;}
.y14{bottom:109.620000px;}
.yb5{bottom:109.860000px;}
.y7b{bottom:115.920000px;}
.y11e{bottom:116.640000px;}
.y191{bottom:119.160000px;}
.ya{bottom:119.940000px;}
.y32{bottom:120.660000px;}
.yf8{bottom:122.400000px;}
.y111{bottom:126.360000px;}
.yb0{bottom:129.660000px;}
.y5e{bottom:130.140000px;}
.y13{bottom:130.860000px;}
.y137{bottom:135.360000px;}
.y9a{bottom:137.160000px;}
.y143{bottom:137.880000px;}
.yc3{bottom:139.080000px;}
.ya4{bottom:139.680000px;}
.yba{bottom:139.740000px;}
.ya3{bottom:140.040000px;}
.yc9{bottom:140.400000px;}
.yb4{bottom:140.460000px;}
.y190{bottom:141.120000px;}
.ye5{bottom:141.840000px;}
.y7{bottom:143.340000px;}
.y31{bottom:144.420000px;}
.y4c{bottom:144.720000px;}
.y7a{bottom:147.240000px;}
.y5d{bottom:150.660000px;}
.y15f{bottom:152.280000px;}
.y49{bottom:157.500000px;}
.y11d{bottom:158.760000px;}
.yf7{bottom:159.120000px;}
.yaf{bottom:160.620000px;}
.y110{bottom:160.920000px;}
.y18f{bottom:163.080000px;}
.y99{bottom:168.120000px;}
.y30{bottom:168.180000px;}
.y172{bottom:168.840000px;}
.yc2{bottom:170.040000px;}
.y107{bottom:170.280000px;}
.yb9{bottom:170.700000px;}
.yb3{bottom:171.420000px;}
.y5c{bottom:171.540000px;}
.ye4{bottom:174.960000px;}
.y79{bottom:178.200000px;}
.y19{bottom:178.500000px;}
.y18e{bottom:183.960000px;}
.y15e{bottom:185.040000px;}
.yae{bottom:191.580000px;}
.y11c{bottom:191.880000px;}
.y2f{bottom:191.940000px;}
.y5b{bottom:192.060000px;}
.yf6{bottom:195.480000px;}
.y98{bottom:199.080000px;}
.y171{bottom:200.160000px;}
.y136{bottom:201.240000px;}
.yc1{bottom:201.360000px;}
.yb8{bottom:202.020000px;}
.yc0{bottom:202.080000px;}
.yb2{bottom:202.740000px;}
.y18d{bottom:203.040000px;}
.y106{bottom:203.400000px;}
.ye3{bottom:207.720000px;}
.y78{bottom:209.160000px;}
.y5a{bottom:212.940000px;}
.y2e{bottom:215.700000px;}
.y15d{bottom:218.160000px;}
.y18c{bottom:221.760000px;}
.yad{bottom:222.900000px;}
.y11b{bottom:224.640000px;}
.y97{bottom:230.040000px;}
.ybf{bottom:231.000000px;}
.y170{bottom:231.120000px;}
.yf5{bottom:231.840000px;}
.yb7{bottom:232.980000px;}
.yb1{bottom:233.340000px;}
.y59{bottom:233.460000px;}
.y135{bottom:234.360000px;}
.y105{bottom:236.160000px;}
.y2d{bottom:239.460000px;}
.y77{bottom:240.120000px;}
.ye2{bottom:240.840000px;}
.y15c{bottom:250.920000px;}
.yac{bottom:253.500000px;}
.y58{bottom:254.340000px;}
.y11a{bottom:257.760000px;}
.y96{bottom:261.360000px;}
.y16f{bottom:262.080000px;}
.y2c{bottom:263.220000px;}
.yb6{bottom:263.940000px;}
.yab{bottom:264.660000px;}
.y134{bottom:267.120000px;}
.yf4{bottom:268.200000px;}
.y38{bottom:268.500000px;}
.y104{bottom:269.280000px;}
.y18b{bottom:270.720000px;}
.y76{bottom:271.440000px;}
.y57{bottom:274.860000px;}
.ye1{bottom:282.960000px;}
.y15b{bottom:284.040000px;}
.y2b{bottom:286.980000px;}
.y18a{bottom:289.800000px;}
.y119{bottom:290.520000px;}
.y95{bottom:292.320000px;}
.y56{bottom:295.740000px;}
.y103{bottom:302.040000px;}
.y75{bottom:302.400000px;}
.yf3{bottom:304.920000px;}
.y44{bottom:306.060000px;}
.y16e{bottom:307.800000px;}
.y133{bottom:309.240000px;}
.y2a{bottom:311.100000px;}
.y189{bottom:311.760000px;}
.ye0{bottom:315.720000px;}
.y55{bottom:316.260000px;}
.y15a{bottom:316.800000px;}
.y94{bottom:323.280000px;}
.y43{bottom:323.340000px;}
.y118{bottom:323.640000px;}
.y74{bottom:333.360000px;}
.y188{bottom:333.720000px;}
.y29{bottom:334.860000px;}
.y102{bottom:335.160000px;}
.y42{bottom:340.620000px;}
.yf2{bottom:341.280000px;}
.y132{bottom:342.000000px;}
.ydf{bottom:348.840000px;}
.y93{bottom:354.240000px;}
.y187{bottom:354.600000px;}
.y117{bottom:356.400000px;}
.y41{bottom:357.900000px;}
.y28{bottom:358.620000px;}
.y159{bottom:358.920000px;}
.y73{bottom:364.320000px;}
.y101{bottom:367.920000px;}
.y186{bottom:373.680000px;}
.y40{bottom:375.180000px;}
.yf1{bottom:377.640000px;}
.yde{bottom:381.600000px;}
.y27{bottom:382.380000px;}
.y131{bottom:384.120000px;}
.y92{bottom:385.560000px;}
.y16d{bottom:387.000000px;}
.y1aa{bottom:388.080000px;}
.y158{bottom:392.040000px;}
.y3f{bottom:392.460000px;}
.y72{bottom:395.280000px;}
.y116{bottom:398.520000px;}
.y100{bottom:401.040000px;}
.y26{bottom:406.140000px;}
.y3e{bottom:409.740000px;}
.y185{bottom:410.760000px;}
.ydd{bottom:414.720000px;}
.y91{bottom:416.520000px;}
.yf0{bottom:416.880000px;}
.y1a9{bottom:419.400000px;}
.y16c{bottom:420.120000px;}
.y157{bottom:424.800000px;}
.y130{bottom:425.880000px;}
.y71{bottom:426.600000px;}
.y3d{bottom:427.020000px;}
.y184{bottom:429.120000px;}
.y25{bottom:429.900000px;}
.yff{bottom:434.160000px;}
.y115{bottom:437.760000px;}
.y3c{bottom:444.300000px;}
.y90{bottom:447.480000px;}
.yaa{bottom:448.500000px;}
.y183{bottom:449.280000px;}
.y1a8{bottom:450.720000px;}
.y16b{bottom:452.880000px;}
.y24{bottom:453.660000px;}
.y70{bottom:457.560000px;}
.y156{bottom:457.920000px;}
.yef{bottom:458.640000px;}
.y3b{bottom:461.580000px;}
.y12f{bottom:468.000000px;}
.y182{bottom:471.240000px;}
.yfe{bottom:473.400000px;}
.y114{bottom:474.120000px;}
.y23{bottom:477.420000px;}
.y8f{bottom:478.440000px;}
.y3a{bottom:478.500000px;}
.y1a7{bottom:482.040000px;}
.y142{bottom:482.760000px;}
.y16a{bottom:486.000000px;}
.y6f{bottom:488.520000px;}
.ydc{bottom:489.600000px;}
.y155{bottom:490.680000px;}
.y181{bottom:493.200000px;}
.y39{bottom:495.780000px;}
.yee{bottom:500.760000px;}
.y22{bottom:501.180000px;}
.y113{bottom:508.680000px;}
.y8e{bottom:509.760000px;}
.y1a6{bottom:513.360000px;}
.y180{bottom:515.160000px;}
.y141{bottom:515.880000px;}
.y169{bottom:518.760000px;}
.y6e{bottom:519.480000px;}
.ydb{bottom:522.360000px;}
.y21{bottom:522.420000px;}
.y154{bottom:532.800000px;}
.y12e{bottom:533.880000px;}
.y17f{bottom:536.040000px;}
.y8d{bottom:540.720000px;}
.yed{bottom:542.520000px;}
.y20{bottom:542.940000px;}
.y1a5{bottom:544.680000px;}
.yfd{bottom:546.120000px;}
.y140{bottom:549.000000px;}
.y6d{bottom:550.800000px;}
.y168{bottom:551.880000px;}
.y17e{bottom:555.120000px;}
.yda{bottom:555.480000px;}
.y1f{bottom:563.820000px;}
.y153{bottom:565.560000px;}
.y12d{bottom:567.000000px;}
.y8c{bottom:571.680000px;}
.y17d{bottom:574.200000px;}
.y1a4{bottom:576.000000px;}
.yfc{bottom:580.680000px;}
.y6c{bottom:581.760000px;}
.yec{bottom:584.640000px;}
.y167{bottom:585.000000px;}
.yd9{bottom:588.600000px;}
.y17c{bottom:592.920000px;}
.y1e{bottom:594.780000px;}
.y152{bottom:598.680000px;}
.y12c{bottom:599.760000px;}
.y8b{bottom:602.640000px;}
.y1a3{bottom:607.320000px;}
.y17b{bottom:612.000000px;}
.y6b{bottom:612.720000px;}
.y13f{bottom:614.880000px;}
.y166{bottom:617.760000px;}
.yd8{bottom:621.360000px;}
.yeb{bottom:626.760000px;}
.y1d{bottom:628.260000px;}
.y17a{bottom:631.080000px;}
.y151{bottom:631.440000px;}
.y12b{bottom:632.880000px;}
.y8a{bottom:633.600000px;}
.y1a2{bottom:638.640000px;}
.y6a{bottom:643.680000px;}
.y13e{bottom:647.640000px;}
.y179{bottom:650.160000px;}
.yd7{bottom:654.480000px;}
.y165{bottom:659.880000px;}
.y1c{bottom:662.460000px;}
.y89{bottom:664.920000px;}
.y12a{bottom:665.640000px;}
.yea{bottom:668.520000px;}
.y1a1{bottom:669.960000px;}
.y150{bottom:673.560000px;}
.y69{bottom:675.000000px;}
.y178{bottom:679.680000px;}
.y13d{bottom:680.760000px;}
.yd6{bottom:687.240000px;}
.y164{bottom:692.640000px;}
.y88{bottom:695.880000px;}
.y1b{bottom:697.020000px;}
.y129{bottom:698.760000px;}
.y1a0{bottom:701.280000px;}
.y68{bottom:705.960000px;}
.y14f{bottom:706.680000px;}
.ye9{bottom:707.760000px;}
.yd5{bottom:720.360000px;}
.y177{bottom:720.720000px;}
.y13c{bottom:722.520000px;}
.y163{bottom:725.760000px;}
.y67{bottom:726.840000px;}
.y1a{bottom:727.980000px;}
.ya2{bottom:729.000000px;}
.y19f{bottom:732.600000px;}
.y14e{bottom:739.440000px;}
.y128{bottom:740.520000px;}
.ye8{bottom:742.320000px;}
.y176{bottom:742.680000px;}
.yd4{bottom:753.120000px;}
.y66{bottom:757.800000px;}
.y162{bottom:758.520000px;}
.y19e{bottom:763.920000px;}
.y13b{bottom:764.640000px;}
.y14d{bottom:772.560000px;}
.y10f{bottom:773.640000px;}
.y63{bottom:774.000000px;}
.y175{bottom:774.360000px;}
.y12{bottom:778.500000px;}
.y127{bottom:782.640000px;}
.y87{bottom:789.120000px;}
.y161{bottom:791.640000px;}
.yd3{bottom:795.240000px;}
.y14c{bottom:805.320000px;}
.y10e{bottom:806.400000px;}
.y174{bottom:806.760000px;}
.y54{bottom:814.500000px;}
.y86{bottom:820.080000px;}
.y126{bottom:824.400000px;}
.y19d{bottom:826.560000px;}
.yd2{bottom:828.000000px;}
.y14b{bottom:838.440000px;}
.y10d{bottom:839.520000px;}
.y19c{bottom:847.440000px;}
.y85{bottom:851.040000px;}
.y125{bottom:857.520000px;}
.yd1{bottom:859.320000px;}
.y10c{bottom:872.280000px;}
.y14a{bottom:880.200000px;}
.y84{bottom:882.000000px;}
.y9d{bottom:885.000000px;}
.y19b{bottom:888.840000px;}
.y124{bottom:890.280000px;}
.yd0{bottom:902.160000px;}
.y10b{bottom:905.400000px;}
.y83{bottom:913.320000px;}
.y123{bottom:923.400000px;}
.yd{bottom:927.000000px;}
.y19a{bottom:931.320000px;}
.ycf{bottom:933.480000px;}
.y10a{bottom:938.520000px;}
.y82{bottom:944.280000px;}
.y149{bottom:946.080000px;}
.y199{bottom:950.400000px;}
.y122{bottom:956.520000px;}
.y9b{bottom:957.000000px;}
.y160{bottom:965.520000px;}
.y13a{bottom:971.280000px;}
.y198{bottom:972.360000px;}
.y81{bottom:975.240000px;}
.yce{bottom:976.320000px;}
.y148{bottom:979.200000px;}
.y109{bottom:980.280000px;}
.y6{bottom:988.500000px;}
.y121{bottom:989.280000px;}
.yc8{bottom:990.000000px;}
.yfb{bottom:998.280000px;}
.y197{bottom:1004.040000px;}
.y80{bottom:1006.200000px;}
.y147{bottom:1011.960000px;}
.y139{bottom:1013.400000px;}
.y108{bottom:1022.400000px;}
.y196{bottom:1023.120000px;}
.yfa{bottom:1031.400000px;}
.y7f{bottom:1037.520000px;}
.y146{bottom:1045.080000px;}
.y120{bottom:1055.160000px;}
.yf9{bottom:1064.160000px;}
.y195{bottom:1067.040000px;}
.y7e{bottom:1068.480000px;}
.y145{bottom:1078.200000px;}
.y11f{bottom:1088.280000px;}
.y194{bottom:1089.000000px;}
.ye7{bottom:1097.280000px;}
.y7d{bottom:1099.440000px;}
.y193{bottom:1109.880000px;}
.ye6{bottom:1130.040000px;}
.y7c{bottom:1130.400000px;}
.y4f{bottom:1152.000000px;}
.y5{bottom:1154.520000px;}
.y4e{bottom:1173.240000px;}
.y2{bottom:1175.400000px;}
.y4d{bottom:1192.680000px;}
.y1{bottom:1194.480000px;}
.h14{height:22.500000px;}
.h19{height:24.000000px;}
.h1e{height:33.000000px;}
.h17{height:36.405703px;}
.h25{height:41.461875px;}
.h4{height:41.574375px;}
.h16{height:41.868281px;}
.h23{height:41.904844px;}
.h12{height:41.993438px;}
.h1c{height:42.000000px;}
.hb{height:44.149219px;}
.h3{height:47.988281px;}
.h2{height:48.256875px;}
.h10{height:48.761719px;}
.h26{height:49.886719px;}
.ha{height:49.992188px;}
.hf{height:50.027344px;}
.h15{height:51.679688px;}
.h27{height:52.277344px;}
.h1b{height:54.000000px;}
.h28{height:56.152266px;}
.he{height:56.593125px;}
.h29{height:58.121719px;}
.h9{height:63.000000px;}
.h18{height:63.175781px;}
.h7{height:63.597656px;}
.h1d{height:63.949219px;}
.h6{height:72.360000px;}
.h1f{height:73.500000px;}
.h24{height:79.660547px;}
.h13{height:91.500000px;}
.h8{height:98.568984px;}
.hc{height:148.500000px;}
.h20{height:157.500000px;}
.h5{height:160.500000px;}
.h22{height:219.000000px;}
.h21{height:282.000000px;}
.h1a{height:333.000000px;}
.h11{height:510.000000px;}
.hd{height:748.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:28.500000px;}
.w9{width:93.000000px;}
.w6{width:120.000000px;}
.wa{width:121.500000px;}
.wb{width:129.000000px;}
.wc{width:181.500000px;}
.w3{width:247.500000px;}
.w2{width:249.000000px;}
.wd{width:255.000000px;}
.w4{width:552.000000px;}
.w7{width:666.000000px;}
.w8{width:786.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x18{left:7.859964px;}
.xc{left:9.480108px;}
.xa{left:14.058480px;}
.x19{left:16.859964px;}
.xd{left:18.757704px;}
.x13{left:21.134748px;}
.x3{left:42.000000px;}
.x6{left:45.805656px;}
.x1{left:54.000000px;}
.x9{left:62.991552px;}
.x1d{left:64.500012px;}
.x20{left:66.000000px;}
.xb{left:67.715724px;}
.x17{left:73.605360px;}
.x12{left:77.433096px;}
.x35{left:81.000000px;}
.x11{left:86.072772px;}
.x16{left:87.210480px;}
.x10{left:89.254416px;}
.x15{left:96.896280px;}
.x34{left:105.899796px;}
.x1c{left:107.174916px;}
.x4{left:124.379904px;}
.x14{left:136.117200px;}
.x1e{left:139.049928px;}
.x25{left:143.626020px;}
.xe{left:149.266560px;}
.x26{left:156.151200px;}
.x21{left:157.500000px;}
.x1f{left:160.350228px;}
.x27{left:164.140230px;}
.x2c{left:165.509784px;}
.x1b{left:174.000000px;}
.x28{left:176.215440px;}
.x30{left:200.347416px;}
.x7{left:202.954080px;}
.x5{left:233.819832px;}
.x31{left:252.298080px;}
.x2e{left:255.539052px;}
.x33{left:269.590572px;}
.xf{left:275.459880px;}
.x22{left:277.500000px;}
.x8{left:289.500000px;}
.x23{left:405.000000px;}
.x2b{left:430.349760px;}
.x2a{left:472.875120px;}
.x32{left:550.590120px;}
.x24{left:586.500000px;}
.x2f{left:629.069760px;}
.x2d{left:670.470120px;}
.x29{left:675.974880px;}
.x2{left:685.130400px;}
.x1a{left:811.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls66{letter-spacing:-5.273600pt;}
.ls2d{letter-spacing:-3.961600pt;}
.ls40{letter-spacing:-2.675200pt;}
.ls3f{letter-spacing:-2.131200pt;}
.ls41{letter-spacing:-1.600000pt;}
.ls67{letter-spacing:-1.363200pt;}
.ls3b{letter-spacing:-1.331200pt;}
.ls63{letter-spacing:-1.184000pt;}
.ls3e{letter-spacing:-1.075200pt;}
.ls3c{letter-spacing:-1.068800pt;}
.ls3a{letter-spacing:-1.056000pt;}
.ls64{letter-spacing:-0.940800pt;}
.ls44{letter-spacing:-0.736512pt;}
.ls69{letter-spacing:-0.641792pt;}
.ls2f{letter-spacing:-0.544000pt;}
.lsf{letter-spacing:-0.537600pt;}
.ls2e{letter-spacing:-0.531200pt;}
.ls30{letter-spacing:-0.524800pt;}
.ls65{letter-spacing:-0.505600pt;}
.ls23{letter-spacing:-0.466944pt;}
.ls20{letter-spacing:-0.418304pt;}
.ls8{letter-spacing:-0.403712pt;}
.ls17{letter-spacing:-0.397824pt;}
.ls22{letter-spacing:-0.384256pt;}
.ls26{letter-spacing:-0.374528pt;}
.ls10{letter-spacing:-0.321024pt;}
.ls12{letter-spacing:-0.301056pt;}
.ls13{letter-spacing:-0.284928pt;}
.ls15{letter-spacing:-0.268800pt;}
.ls48{letter-spacing:-0.247296pt;}
.ls4a{letter-spacing:-0.241920pt;}
.ls4d{letter-spacing:-0.236544pt;}
.ls49{letter-spacing:-0.225792pt;}
.ls11{letter-spacing:-0.215040pt;}
.lsb{letter-spacing:-0.214400pt;}
.ls43{letter-spacing:-0.204288pt;}
.ls14{letter-spacing:-0.198912pt;}
.ls50{letter-spacing:-0.193536pt;}
.ls25{letter-spacing:-0.189696pt;}
.ls5f{letter-spacing:-0.182528pt;}
.ls61{letter-spacing:-0.176640pt;}
.ls42{letter-spacing:-0.172032pt;}
.ls9{letter-spacing:-0.165376pt;}
.ls24{letter-spacing:-0.150784pt;}
.ls5{letter-spacing:-0.141312pt;}
.ls16{letter-spacing:-0.129024pt;}
.ls4b{letter-spacing:-0.118272pt;}
.ls7{letter-spacing:-0.111872pt;}
.ls5e{letter-spacing:-0.105984pt;}
.lsa{letter-spacing:-0.102912pt;}
.ls4e{letter-spacing:-0.086016pt;}
.ls68{letter-spacing:-0.076544pt;}
.ls60{letter-spacing:-0.070656pt;}
.ls62{letter-spacing:-0.052992pt;}
.ls5d{letter-spacing:-0.032000pt;}
.ls45{letter-spacing:-0.025600pt;}
.ls51{letter-spacing:-0.019200pt;}
.lse{letter-spacing:-0.012800pt;}
.ls46{letter-spacing:-0.006400pt;}
.ls6{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.006400pt;}
.ls6a{letter-spacing:0.008960pt;}
.ls5b{letter-spacing:0.009728pt;}
.ls1b{letter-spacing:0.012800pt;}
.ls52{letter-spacing:0.019200pt;}
.ls47{letter-spacing:0.025600pt;}
.ls4f{letter-spacing:0.032000pt;}
.ls5c{letter-spacing:0.038400pt;}
.lsd{letter-spacing:0.074368pt;}
.ls53{letter-spacing:0.099584pt;}
.ls1{letter-spacing:0.103680pt;}
.ls35{letter-spacing:0.105600pt;}
.ls32{letter-spacing:0.107520pt;}
.ls2{letter-spacing:0.191232pt;}
.ls31{letter-spacing:0.211200pt;}
.ls3{letter-spacing:0.212480pt;}
.ls33{letter-spacing:0.213376pt;}
.ls4{letter-spacing:0.213760pt;}
.ls34{letter-spacing:0.215424pt;}
.ls29{letter-spacing:0.219648pt;}
.ls0{letter-spacing:0.223104pt;}
.ls2a{letter-spacing:0.240768pt;}
.ls2b{letter-spacing:0.244992pt;}
.ls19{letter-spacing:0.253440pt;}
.ls27{letter-spacing:0.257664pt;}
.ls1a{letter-spacing:0.259072pt;}
.ls18{letter-spacing:0.261888pt;}
.ls28{letter-spacing:0.270336pt;}
.lsc{letter-spacing:0.308096pt;}
.ls2c{letter-spacing:0.316800pt;}
.ls1d{letter-spacing:0.445184pt;}
.ls1f{letter-spacing:1.431040pt;}
.ls1e{letter-spacing:2.420480pt;}
.ls4c{letter-spacing:5.628672pt;}
.ls58{letter-spacing:6.233600pt;}
.ls56{letter-spacing:6.630400pt;}
.ls3d{letter-spacing:6.668800pt;}
.ls57{letter-spacing:7.833600pt;}
.ls55{letter-spacing:8.232576pt;}
.ls1c{letter-spacing:17.347840pt;}
.ls54{letter-spacing:29.614208pt;}
.ls5a{letter-spacing:30.681984pt;}
.ls59{letter-spacing:35.631360pt;}
.ls36{letter-spacing:113.069184pt;}
.ls39{letter-spacing:144.290560pt;}
.ls37{letter-spacing:169.730560pt;}
.ls38{letter-spacing:386.933760pt;}
.ws3{word-spacing:-23.841280pt;}
.ws0{word-spacing:-16.256768pt;}
.ws19{word-spacing:-16.012800pt;}
.wsa{word-spacing:-16.000000pt;}
.ws15{word-spacing:-15.987200pt;}
.ws18{word-spacing:-15.475200pt;}
.ws16{word-spacing:-15.468800pt;}
.ws4{word-spacing:-15.462400pt;}
.ws17{word-spacing:-15.456000pt;}
.ws1b{word-spacing:-14.944000pt;}
.ws1d{word-spacing:-14.931200pt;}
.ws2e{word-spacing:-14.720000pt;}
.ws1c{word-spacing:-14.668800pt;}
.ws2f{word-spacing:-14.649344pt;}
.ws39{word-spacing:-14.643456pt;}
.ws2d{word-spacing:-14.614016pt;}
.ws31{word-spacing:-14.608128pt;}
.ws30{word-spacing:-14.578688pt;}
.ws32{word-spacing:-14.537472pt;}
.ws26{word-spacing:-14.496000pt;}
.ws22{word-spacing:-14.489600pt;}
.ws34{word-spacing:-14.483200pt;}
.ws25{word-spacing:-14.476800pt;}
.ws28{word-spacing:-14.470400pt;}
.ws2c{word-spacing:-14.464000pt;}
.ws21{word-spacing:-14.457600pt;}
.ws14{word-spacing:-14.451200pt;}
.ws29{word-spacing:-14.444800pt;}
.ws23{word-spacing:-14.438400pt;}
.ws2a{word-spacing:-14.432000pt;}
.ws3a{word-spacing:-14.078208pt;}
.ws36{word-spacing:-13.958400pt;}
.ws2b{word-spacing:-13.920000pt;}
.ws35{word-spacing:-13.523200pt;}
.ws8{word-spacing:-13.310976pt;}
.ws33{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.241088pt;}
.ws6{word-spacing:-13.224960pt;}
.ws38{word-spacing:-13.100800pt;}
.ws9{word-spacing:-13.042176pt;}
.wsc{word-spacing:-12.646400pt;}
.ws2{word-spacing:-12.481024pt;}
.wsd{word-spacing:-12.325376pt;}
.wsf{word-spacing:-12.271872pt;}
.ws1{word-spacing:-12.242688pt;}
.wse{word-spacing:-12.179456pt;}
.ws24{word-spacing:-12.149760pt;}
.ws1e{word-spacing:-11.977728pt;}
.ws1f{word-spacing:-11.945472pt;}
.ws20{word-spacing:-11.413248pt;}
.ws13{word-spacing:-11.299200pt;}
.ws10{word-spacing:-11.244288pt;}
.ws12{word-spacing:-11.223168pt;}
.ws11{word-spacing:-11.202048pt;}
.ws1a{word-spacing:-10.775424pt;}
.ws27{word-spacing:-9.757440pt;}
.ws37{word-spacing:-9.190400pt;}
.wsb{word-spacing:0.000000pt;}
.ws5{word-spacing:0.278784pt;}
._4{margin-left:-7.847680pt;}
._5{margin-left:-6.393600pt;}
._1b{margin-left:-5.410304pt;}
._d{margin-left:-4.497920pt;}
._1{margin-left:-3.415040pt;}
._0{margin-left:-1.884160pt;}
._3{margin-left:-0.909824pt;}
._2{width:0.942080pt;}
._1e{width:1.833728pt;}
._8{width:2.764800pt;}
._18{width:3.665920pt;}
._14{width:4.665600pt;}
._16{width:6.425600pt;}
._c{width:7.430400pt;}
._12{width:8.723200pt;}
._a{width:9.984000pt;}
._1c{width:11.470720pt;}
._1a{width:12.896000pt;}
._1d{width:13.935488pt;}
._21{width:14.973312pt;}
._27{width:16.249600pt;}
._10{width:17.241600pt;}
._19{width:18.671232pt;}
._9{width:19.795200pt;}
._13{width:21.420800pt;}
._f{width:22.368000pt;}
._b{width:23.283200pt;}
._1f{width:24.452096pt;}
._26{width:25.363200pt;}
._17{width:26.323200pt;}
._24{width:27.641600pt;}
._25{width:28.979200pt;}
._20{width:31.436800pt;}
._7{width:32.768000pt;}
._28{width:33.958400pt;}
._15{width:34.899200pt;}
._e{width:40.345600pt;}
._23{width:41.772800pt;}
._11{width:54.016000pt;}
._6{width:68.814592pt;}
._22{width:110.278400pt;}
._29{width:144.632320pt;}
._2b{width:327.475200pt;}
._2a{width:548.284544pt;}
.fs5{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs6{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.fs4{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:4.160000pt;}
.y65{bottom:4.480000pt;}
.y37{bottom:4.533333pt;}
.y4b{bottom:4.640000pt;}
.ya0{bottom:4.693333pt;}
.y53{bottom:4.800000pt;}
.y62{bottom:5.280000pt;}
.y9{bottom:6.133333pt;}
.y4a{bottom:6.880000pt;}
.y48{bottom:7.413333pt;}
.yc7{bottom:13.226667pt;}
.ya8{bottom:13.760000pt;}
.ybe{bottom:13.813333pt;}
.y9c{bottom:14.293333pt;}
.y10{bottom:22.080000pt;}
.ya1{bottom:22.613333pt;}
.y64{bottom:22.720000pt;}
.y36{bottom:22.773333pt;}
.y18{bottom:23.200000pt;}
.y61{bottom:23.520000pt;}
.y8{bottom:25.973333pt;}
.y9f{bottom:32.213333pt;}
.y47{bottom:38.133333pt;}
.ye{bottom:39.680000pt;}
.yf{bottom:40.320000pt;}
.yc6{bottom:41.066667pt;}
.ya7{bottom:41.280000pt;}
.ybd{bottom:41.333333pt;}
.ya9{bottom:41.600000pt;}
.yc{bottom:41.653333pt;}
.y17{bottom:41.760000pt;}
.y60{bottom:42.080000pt;}
.y35{bottom:43.573333pt;}
.y9e{bottom:50.133333pt;}
.y51{bottom:50.560000pt;}
.y4{bottom:50.880000pt;}
.y46{bottom:53.493333pt;}
.y52{bottom:56.000000pt;}
.y16{bottom:60.320000pt;}
.ycd{bottom:60.800000pt;}
.y34{bottom:64.693333pt;}
.y50{bottom:64.960000pt;}
.y3{bottom:67.840000pt;}
.y45{bottom:68.533333pt;}
.yc5{bottom:68.586667pt;}
.ya6{bottom:68.800000pt;}
.ycb{bottom:69.120000pt;}
.ybc{bottom:69.173333pt;}
.yb{bottom:73.973333pt;}
.y15{bottom:78.880000pt;}
.y112{bottom:80.000000pt;}
.ycc{bottom:81.920000pt;}
.y33{bottom:85.813333pt;}
.y192{bottom:86.400000pt;}
.y138{bottom:90.880000pt;}
.y144{bottom:92.160000pt;}
.y173{bottom:95.040000pt;}
.yc4{bottom:96.106667pt;}
.ya5{bottom:96.320000pt;}
.yca{bottom:96.640000pt;}
.ybb{bottom:96.693333pt;}
.y5f{bottom:97.120000pt;}
.y14{bottom:97.440000pt;}
.yb5{bottom:97.653333pt;}
.y7b{bottom:103.040000pt;}
.y11e{bottom:103.680000pt;}
.y191{bottom:105.920000pt;}
.ya{bottom:106.613333pt;}
.y32{bottom:107.253333pt;}
.yf8{bottom:108.800000pt;}
.y111{bottom:112.320000pt;}
.yb0{bottom:115.253333pt;}
.y5e{bottom:115.680000pt;}
.y13{bottom:116.320000pt;}
.y137{bottom:120.320000pt;}
.y9a{bottom:121.920000pt;}
.y143{bottom:122.560000pt;}
.yc3{bottom:123.626667pt;}
.ya4{bottom:124.160000pt;}
.yba{bottom:124.213333pt;}
.ya3{bottom:124.480000pt;}
.yc9{bottom:124.800000pt;}
.yb4{bottom:124.853333pt;}
.y190{bottom:125.440000pt;}
.ye5{bottom:126.080000pt;}
.y7{bottom:127.413333pt;}
.y31{bottom:128.373333pt;}
.y4c{bottom:128.640000pt;}
.y7a{bottom:130.880000pt;}
.y5d{bottom:133.920000pt;}
.y15f{bottom:135.360000pt;}
.y49{bottom:140.000000pt;}
.y11d{bottom:141.120000pt;}
.yf7{bottom:141.440000pt;}
.yaf{bottom:142.773333pt;}
.y110{bottom:143.040000pt;}
.y18f{bottom:144.960000pt;}
.y99{bottom:149.440000pt;}
.y30{bottom:149.493333pt;}
.y172{bottom:150.080000pt;}
.yc2{bottom:151.146667pt;}
.y107{bottom:151.360000pt;}
.yb9{bottom:151.733333pt;}
.yb3{bottom:152.373333pt;}
.y5c{bottom:152.480000pt;}
.ye4{bottom:155.520000pt;}
.y79{bottom:158.400000pt;}
.y19{bottom:158.666667pt;}
.y18e{bottom:163.520000pt;}
.y15e{bottom:164.480000pt;}
.yae{bottom:170.293333pt;}
.y11c{bottom:170.560000pt;}
.y2f{bottom:170.613333pt;}
.y5b{bottom:170.720000pt;}
.yf6{bottom:173.760000pt;}
.y98{bottom:176.960000pt;}
.y171{bottom:177.920000pt;}
.y136{bottom:178.880000pt;}
.yc1{bottom:178.986667pt;}
.yb8{bottom:179.573333pt;}
.yc0{bottom:179.626667pt;}
.yb2{bottom:180.213333pt;}
.y18d{bottom:180.480000pt;}
.y106{bottom:180.800000pt;}
.ye3{bottom:184.640000pt;}
.y78{bottom:185.920000pt;}
.y5a{bottom:189.280000pt;}
.y2e{bottom:191.733333pt;}
.y15d{bottom:193.920000pt;}
.y18c{bottom:197.120000pt;}
.yad{bottom:198.133333pt;}
.y11b{bottom:199.680000pt;}
.y97{bottom:204.480000pt;}
.ybf{bottom:205.333333pt;}
.y170{bottom:205.440000pt;}
.yf5{bottom:206.080000pt;}
.yb7{bottom:207.093333pt;}
.yb1{bottom:207.413333pt;}
.y59{bottom:207.520000pt;}
.y135{bottom:208.320000pt;}
.y105{bottom:209.920000pt;}
.y2d{bottom:212.853333pt;}
.y77{bottom:213.440000pt;}
.ye2{bottom:214.080000pt;}
.y15c{bottom:223.040000pt;}
.yac{bottom:225.333333pt;}
.y58{bottom:226.080000pt;}
.y11a{bottom:229.120000pt;}
.y96{bottom:232.320000pt;}
.y16f{bottom:232.960000pt;}
.y2c{bottom:233.973333pt;}
.yb6{bottom:234.613333pt;}
.yab{bottom:235.253333pt;}
.y134{bottom:237.440000pt;}
.yf4{bottom:238.400000pt;}
.y38{bottom:238.666667pt;}
.y104{bottom:239.360000pt;}
.y18b{bottom:240.640000pt;}
.y76{bottom:241.280000pt;}
.y57{bottom:244.320000pt;}
.ye1{bottom:251.520000pt;}
.y15b{bottom:252.480000pt;}
.y2b{bottom:255.093333pt;}
.y18a{bottom:257.600000pt;}
.y119{bottom:258.240000pt;}
.y95{bottom:259.840000pt;}
.y56{bottom:262.880000pt;}
.y103{bottom:268.480000pt;}
.y75{bottom:268.800000pt;}
.yf3{bottom:271.040000pt;}
.y44{bottom:272.053333pt;}
.y16e{bottom:273.600000pt;}
.y133{bottom:274.880000pt;}
.y2a{bottom:276.533333pt;}
.y189{bottom:277.120000pt;}
.ye0{bottom:280.640000pt;}
.y55{bottom:281.120000pt;}
.y15a{bottom:281.600000pt;}
.y94{bottom:287.360000pt;}
.y43{bottom:287.413333pt;}
.y118{bottom:287.680000pt;}
.y74{bottom:296.320000pt;}
.y188{bottom:296.640000pt;}
.y29{bottom:297.653333pt;}
.y102{bottom:297.920000pt;}
.y42{bottom:302.773333pt;}
.yf2{bottom:303.360000pt;}
.y132{bottom:304.000000pt;}
.ydf{bottom:310.080000pt;}
.y93{bottom:314.880000pt;}
.y187{bottom:315.200000pt;}
.y117{bottom:316.800000pt;}
.y41{bottom:318.133333pt;}
.y28{bottom:318.773333pt;}
.y159{bottom:319.040000pt;}
.y73{bottom:323.840000pt;}
.y101{bottom:327.040000pt;}
.y186{bottom:332.160000pt;}
.y40{bottom:333.493333pt;}
.yf1{bottom:335.680000pt;}
.yde{bottom:339.200000pt;}
.y27{bottom:339.893333pt;}
.y131{bottom:341.440000pt;}
.y92{bottom:342.720000pt;}
.y16d{bottom:344.000000pt;}
.y1aa{bottom:344.960000pt;}
.y158{bottom:348.480000pt;}
.y3f{bottom:348.853333pt;}
.y72{bottom:351.360000pt;}
.y116{bottom:354.240000pt;}
.y100{bottom:356.480000pt;}
.y26{bottom:361.013333pt;}
.y3e{bottom:364.213333pt;}
.y185{bottom:365.120000pt;}
.ydd{bottom:368.640000pt;}
.y91{bottom:370.240000pt;}
.yf0{bottom:370.560000pt;}
.y1a9{bottom:372.800000pt;}
.y16c{bottom:373.440000pt;}
.y157{bottom:377.600000pt;}
.y130{bottom:378.560000pt;}
.y71{bottom:379.200000pt;}
.y3d{bottom:379.573333pt;}
.y184{bottom:381.440000pt;}
.y25{bottom:382.133333pt;}
.yff{bottom:385.920000pt;}
.y115{bottom:389.120000pt;}
.y3c{bottom:394.933333pt;}
.y90{bottom:397.760000pt;}
.yaa{bottom:398.666667pt;}
.y183{bottom:399.360000pt;}
.y1a8{bottom:400.640000pt;}
.y16b{bottom:402.560000pt;}
.y24{bottom:403.253333pt;}
.y70{bottom:406.720000pt;}
.y156{bottom:407.040000pt;}
.yef{bottom:407.680000pt;}
.y3b{bottom:410.293333pt;}
.y12f{bottom:416.000000pt;}
.y182{bottom:418.880000pt;}
.yfe{bottom:420.800000pt;}
.y114{bottom:421.440000pt;}
.y23{bottom:424.373333pt;}
.y8f{bottom:425.280000pt;}
.y3a{bottom:425.333333pt;}
.y1a7{bottom:428.480000pt;}
.y142{bottom:429.120000pt;}
.y16a{bottom:432.000000pt;}
.y6f{bottom:434.240000pt;}
.ydc{bottom:435.200000pt;}
.y155{bottom:436.160000pt;}
.y181{bottom:438.400000pt;}
.y39{bottom:440.693333pt;}
.yee{bottom:445.120000pt;}
.y22{bottom:445.493333pt;}
.y113{bottom:452.160000pt;}
.y8e{bottom:453.120000pt;}
.y1a6{bottom:456.320000pt;}
.y180{bottom:457.920000pt;}
.y141{bottom:458.560000pt;}
.y169{bottom:461.120000pt;}
.y6e{bottom:461.760000pt;}
.ydb{bottom:464.320000pt;}
.y21{bottom:464.373333pt;}
.y154{bottom:473.600000pt;}
.y12e{bottom:474.560000pt;}
.y17f{bottom:476.480000pt;}
.y8d{bottom:480.640000pt;}
.yed{bottom:482.240000pt;}
.y20{bottom:482.613333pt;}
.y1a5{bottom:484.160000pt;}
.yfd{bottom:485.440000pt;}
.y140{bottom:488.000000pt;}
.y6d{bottom:489.600000pt;}
.y168{bottom:490.560000pt;}
.y17e{bottom:493.440000pt;}
.yda{bottom:493.760000pt;}
.y1f{bottom:501.173333pt;}
.y153{bottom:502.720000pt;}
.y12d{bottom:504.000000pt;}
.y8c{bottom:508.160000pt;}
.y17d{bottom:510.400000pt;}
.y1a4{bottom:512.000000pt;}
.yfc{bottom:516.160000pt;}
.y6c{bottom:517.120000pt;}
.yec{bottom:519.680000pt;}
.y167{bottom:520.000000pt;}
.yd9{bottom:523.200000pt;}
.y17c{bottom:527.040000pt;}
.y1e{bottom:528.693333pt;}
.y152{bottom:532.160000pt;}
.y12c{bottom:533.120000pt;}
.y8b{bottom:535.680000pt;}
.y1a3{bottom:539.840000pt;}
.y17b{bottom:544.000000pt;}
.y6b{bottom:544.640000pt;}
.y13f{bottom:546.560000pt;}
.y166{bottom:549.120000pt;}
.yd8{bottom:552.320000pt;}
.yeb{bottom:557.120000pt;}
.y1d{bottom:558.453333pt;}
.y17a{bottom:560.960000pt;}
.y151{bottom:561.280000pt;}
.y12b{bottom:562.560000pt;}
.y8a{bottom:563.200000pt;}
.y1a2{bottom:567.680000pt;}
.y6a{bottom:572.160000pt;}
.y13e{bottom:575.680000pt;}
.y179{bottom:577.920000pt;}
.yd7{bottom:581.760000pt;}
.y165{bottom:586.560000pt;}
.y1c{bottom:588.853333pt;}
.y89{bottom:591.040000pt;}
.y12a{bottom:591.680000pt;}
.yea{bottom:594.240000pt;}
.y1a1{bottom:595.520000pt;}
.y150{bottom:598.720000pt;}
.y69{bottom:600.000000pt;}
.y178{bottom:604.160000pt;}
.y13d{bottom:605.120000pt;}
.yd6{bottom:610.880000pt;}
.y164{bottom:615.680000pt;}
.y88{bottom:618.560000pt;}
.y1b{bottom:619.573333pt;}
.y129{bottom:621.120000pt;}
.y1a0{bottom:623.360000pt;}
.y68{bottom:627.520000pt;}
.y14f{bottom:628.160000pt;}
.ye9{bottom:629.120000pt;}
.yd5{bottom:640.320000pt;}
.y177{bottom:640.640000pt;}
.y13c{bottom:642.240000pt;}
.y163{bottom:645.120000pt;}
.y67{bottom:646.080000pt;}
.y1a{bottom:647.093333pt;}
.ya2{bottom:648.000000pt;}
.y19f{bottom:651.200000pt;}
.y14e{bottom:657.280000pt;}
.y128{bottom:658.240000pt;}
.ye8{bottom:659.840000pt;}
.y176{bottom:660.160000pt;}
.yd4{bottom:669.440000pt;}
.y66{bottom:673.600000pt;}
.y162{bottom:674.240000pt;}
.y19e{bottom:679.040000pt;}
.y13b{bottom:679.680000pt;}
.y14d{bottom:686.720000pt;}
.y10f{bottom:687.680000pt;}
.y63{bottom:688.000000pt;}
.y175{bottom:688.320000pt;}
.y12{bottom:692.000000pt;}
.y127{bottom:695.680000pt;}
.y87{bottom:701.440000pt;}
.y161{bottom:703.680000pt;}
.yd3{bottom:706.880000pt;}
.y14c{bottom:715.840000pt;}
.y10e{bottom:716.800000pt;}
.y174{bottom:717.120000pt;}
.y54{bottom:724.000000pt;}
.y86{bottom:728.960000pt;}
.y126{bottom:732.800000pt;}
.y19d{bottom:734.720000pt;}
.yd2{bottom:736.000000pt;}
.y14b{bottom:745.280000pt;}
.y10d{bottom:746.240000pt;}
.y19c{bottom:753.280000pt;}
.y85{bottom:756.480000pt;}
.y125{bottom:762.240000pt;}
.yd1{bottom:763.840000pt;}
.y10c{bottom:775.360000pt;}
.y14a{bottom:782.400000pt;}
.y84{bottom:784.000000pt;}
.y9d{bottom:786.666667pt;}
.y19b{bottom:790.080000pt;}
.y124{bottom:791.360000pt;}
.yd0{bottom:801.920000pt;}
.y10b{bottom:804.800000pt;}
.y83{bottom:811.840000pt;}
.y123{bottom:820.800000pt;}
.yd{bottom:824.000000pt;}
.y19a{bottom:827.840000pt;}
.ycf{bottom:829.760000pt;}
.y10a{bottom:834.240000pt;}
.y82{bottom:839.360000pt;}
.y149{bottom:840.960000pt;}
.y199{bottom:844.800000pt;}
.y122{bottom:850.240000pt;}
.y9b{bottom:850.666667pt;}
.y160{bottom:858.240000pt;}
.y13a{bottom:863.360000pt;}
.y198{bottom:864.320000pt;}
.y81{bottom:866.880000pt;}
.yce{bottom:867.840000pt;}
.y148{bottom:870.400000pt;}
.y109{bottom:871.360000pt;}
.y6{bottom:878.666667pt;}
.y121{bottom:879.360000pt;}
.yc8{bottom:880.000000pt;}
.yfb{bottom:887.360000pt;}
.y197{bottom:892.480000pt;}
.y80{bottom:894.400000pt;}
.y147{bottom:899.520000pt;}
.y139{bottom:900.800000pt;}
.y108{bottom:908.800000pt;}
.y196{bottom:909.440000pt;}
.yfa{bottom:916.800000pt;}
.y7f{bottom:922.240000pt;}
.y146{bottom:928.960000pt;}
.y120{bottom:937.920000pt;}
.yf9{bottom:945.920000pt;}
.y195{bottom:948.480000pt;}
.y7e{bottom:949.760000pt;}
.y145{bottom:958.400000pt;}
.y11f{bottom:967.360000pt;}
.y194{bottom:968.000000pt;}
.ye7{bottom:975.360000pt;}
.y7d{bottom:977.280000pt;}
.y193{bottom:986.560000pt;}
.ye6{bottom:1004.480000pt;}
.y7c{bottom:1004.800000pt;}
.y4f{bottom:1024.000000pt;}
.y5{bottom:1026.240000pt;}
.y4e{bottom:1042.880000pt;}
.y2{bottom:1044.800000pt;}
.y4d{bottom:1060.160000pt;}
.y1{bottom:1061.760000pt;}
.h14{height:20.000000pt;}
.h19{height:21.333333pt;}
.h1e{height:29.333333pt;}
.h17{height:32.360625pt;}
.h25{height:36.855000pt;}
.h4{height:36.955000pt;}
.h16{height:37.216250pt;}
.h23{height:37.248750pt;}
.h12{height:37.327500pt;}
.h1c{height:37.333333pt;}
.hb{height:39.243750pt;}
.h3{height:42.656250pt;}
.h2{height:42.895000pt;}
.h10{height:43.343750pt;}
.h26{height:44.343750pt;}
.ha{height:44.437500pt;}
.hf{height:44.468750pt;}
.h15{height:45.937500pt;}
.h27{height:46.468750pt;}
.h1b{height:48.000000pt;}
.h28{height:49.913125pt;}
.he{height:50.305000pt;}
.h29{height:51.663750pt;}
.h9{height:56.000000pt;}
.h18{height:56.156250pt;}
.h7{height:56.531250pt;}
.h1d{height:56.843750pt;}
.h6{height:64.320000pt;}
.h1f{height:65.333333pt;}
.h24{height:70.809375pt;}
.h13{height:81.333333pt;}
.h8{height:87.616875pt;}
.hc{height:132.000000pt;}
.h20{height:140.000000pt;}
.h5{height:142.666667pt;}
.h22{height:194.666667pt;}
.h21{height:250.666667pt;}
.h1a{height:296.000000pt;}
.h11{height:453.333333pt;}
.hd{height:665.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:25.333333pt;}
.w9{width:82.666667pt;}
.w6{width:106.666667pt;}
.wa{width:108.000000pt;}
.wb{width:114.666667pt;}
.wc{width:161.333333pt;}
.w3{width:220.000000pt;}
.w2{width:221.333333pt;}
.wd{width:226.666667pt;}
.w4{width:490.666667pt;}
.w7{width:592.000000pt;}
.w8{width:698.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x18{left:6.986635pt;}
.xc{left:8.426763pt;}
.xa{left:12.496427pt;}
.x19{left:14.986635pt;}
.xd{left:16.673515pt;}
.x13{left:18.786443pt;}
.x3{left:37.333333pt;}
.x6{left:40.716139pt;}
.x1{left:48.000000pt;}
.x9{left:55.992491pt;}
.x1d{left:57.333344pt;}
.x20{left:58.666667pt;}
.xb{left:60.191755pt;}
.x17{left:65.426987pt;}
.x12{left:68.829419pt;}
.x35{left:72.000000pt;}
.x11{left:76.509131pt;}
.x16{left:77.520427pt;}
.x10{left:79.337259pt;}
.x15{left:86.130027pt;}
.x34{left:94.133152pt;}
.x1c{left:95.266592pt;}
.x4{left:110.559915pt;}
.x14{left:120.993067pt;}
.x1e{left:123.599936pt;}
.x25{left:127.667573pt;}
.xe{left:132.681387pt;}
.x26{left:138.801067pt;}
.x21{left:140.000000pt;}
.x1f{left:142.533536pt;}
.x27{left:145.902427pt;}
.x2c{left:147.119808pt;}
.x1b{left:154.666667pt;}
.x28{left:156.635947pt;}
.x30{left:178.086592pt;}
.x7{left:180.403627pt;}
.x5{left:207.839851pt;}
.x31{left:224.264960pt;}
.x2e{left:227.145824pt;}
.x33{left:239.636064pt;}
.xf{left:244.853227pt;}
.x22{left:246.666667pt;}
.x8{left:257.333333pt;}
.x23{left:360.000000pt;}
.x2b{left:382.533120pt;}
.x2a{left:420.333440pt;}
.x32{left:489.413440pt;}
.x24{left:521.333333pt;}
.x2f{left:559.173120pt;}
.x2d{left:595.973440pt;}
.x29{left:600.866560pt;}
.x2{left:609.004800pt;}
.x1a{left:721.333333pt;}
}




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