
    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_4b9e4d3e4e6b53f39644225a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_6d9f3c2548fe5969862120fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.074382;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_e24e5c4c277edc22de042922.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_17498804b970c75e916ed493.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.096000;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_60b04f9ab9883aad1455fa5f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_30cce1cb8821a3300320e6e7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.927000;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_2a4c51e02ef4dd8ee79ddc60.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.712000;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_295897f100227186f3b9286a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.831000;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_fd9ccb5ddbb8b039b63341ae.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006836;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_a24038db1464b2ece161b54e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921000;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_716b065c9e89500c5c55eab2.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_8264b30317b2e7f13750ff3a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.186035;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_ed2561315a96330309f8793f.woff2')format("woff");}.fff{font-family:fff;line-height:0.700195;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_5984d0e2bdfd043f2662c796.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.005859;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_9524c04b934ec4e08a0ac90d.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.005859;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_385c066a3826548520065dc8.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_a6481d9a6fe9f502fcd579f3.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.005859;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_0d689381c3c0e84bce9a9285.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.005859;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_e417477c06d2e5b4e99445a1.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.005859;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_e49d5d9ba995e5c5e9429855.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.005859;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_86dca0f4eca61d31fd7826b7.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.005859;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_f4afad948547ebe039f6faaf.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.005859;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_5e4ba47aef0c96d9238d1673.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.005859;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_c7024ac461f2e71c6210a41f.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_a74e99ed5e792cb270248447.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.005859;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_946a56008a9aef8f2eb911dd.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_8e911ffbd157f2d2bd20be0b.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.005859;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_3fa745f614e3567a9626013c.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_86e5a40ae5ca8a450415d0b2.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.005859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-17.982000px;}
.v4{vertical-align:-3.888000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.683000px;}
.v7{vertical-align:13.167000px;}
.v1{vertical-align:17.982600px;}
.v3{vertical-align:25.900200px;}
.v6{vertical-align:38.263500px;}
.v2{vertical-align:51.800400px;}
.ls2a{letter-spacing:-4.999500px;}
.ls2d{letter-spacing:-3.366000px;}
.ls34{letter-spacing:-3.360000px;}
.ls2e{letter-spacing:-3.267000px;}
.ls35{letter-spacing:-3.264000px;}
.ls30{letter-spacing:-2.772000px;}
.ls9{letter-spacing:-2.700000px;}
.ls38{letter-spacing:-1.800000px;}
.lsd{letter-spacing:-1.620000px;}
.ls2c{letter-spacing:-1.336500px;}
.ls29{letter-spacing:-1.287000px;}
.ls39{letter-spacing:-1.200000px;}
.ls32{letter-spacing:-1.104000px;}
.ls7{letter-spacing:-0.960000px;}
.ls2b{letter-spacing:-0.792000px;}
.ls1c{letter-spacing:-0.772982px;}
.ls20{letter-spacing:-0.760320px;}
.ls1a{letter-spacing:-0.724671px;}
.ls23{letter-spacing:-0.712800px;}
.ls6{letter-spacing:-0.600000px;}
.ls8{letter-spacing:-0.540000px;}
.ls19{letter-spacing:-0.483114px;}
.ls33{letter-spacing:-0.480000px;}
.ls1f{letter-spacing:-0.475200px;}
.ls36{letter-spacing:-0.314820px;}
.ls1b{letter-spacing:-0.096623px;}
.ls0{letter-spacing:0.000000px;}
.ls3b{letter-spacing:0.006000px;}
.ls37{letter-spacing:0.006600px;}
.lsc{letter-spacing:0.017400px;}
.lse{letter-spacing:0.048000px;}
.ls3a{letter-spacing:0.108000px;}
.ls1e{letter-spacing:0.190080px;}
.ls10{letter-spacing:0.193246px;}
.ls22{letter-spacing:0.237600px;}
.ls2{letter-spacing:0.270000px;}
.ls12{letter-spacing:0.289868px;}
.ls18{letter-spacing:0.314024px;}
.ls2f{letter-spacing:0.346500px;}
.ls5{letter-spacing:0.480000px;}
.lsb{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.600000px;}
.ls11{letter-spacing:0.628048px;}
.ls15{letter-spacing:0.676360px;}
.ls21{letter-spacing:0.760320px;}
.ls13{letter-spacing:0.772982px;}
.ls27{letter-spacing:0.960000px;}
.ls1d{letter-spacing:0.966228px;}
.ls26{letter-spacing:0.988800px;}
.ls31{letter-spacing:1.008000px;}
.ls17{letter-spacing:1.014539px;}
.ls25{letter-spacing:1.237500px;}
.ls3{letter-spacing:1.260000px;}
.lsa{letter-spacing:1.620000px;}
.ls1{letter-spacing:2.970000px;}
.ls28{letter-spacing:7.290000px;}
.ls16{letter-spacing:92.081528px;}
.ls14{letter-spacing:144.885889px;}
.lsf{letter-spacing:199.187902px;}
.ls24{letter-spacing:229.680000px;}
.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;}
}
.ws11{word-spacing:-54.000000px;}
.ws32{word-spacing:-47.044800px;}
.ws49{word-spacing:-28.314000px;}
.ws3e{word-spacing:-21.330000px;}
.ws1{word-spacing:-17.880000px;}
.ws59{word-spacing:-17.280000px;}
.ws5{word-spacing:-16.980000px;}
.ws5b{word-spacing:-16.632000px;}
.ws3{word-spacing:-16.092000px;}
.ws3d{word-spacing:-14.580000px;}
.wsa{word-spacing:-14.040000px;}
.ws4{word-spacing:-13.932000px;}
.ws19{word-spacing:-13.237324px;}
.ws48{word-spacing:-13.216500px;}
.ws40{word-spacing:-12.870000px;}
.ws31{word-spacing:-12.592800px;}
.ws29{word-spacing:-12.545280px;}
.ws2{word-spacing:-12.480000px;}
.ws42{word-spacing:-12.078000px;}
.ws17{word-spacing:-12.077850px;}
.ws33{word-spacing:-11.642400px;}
.ws3f{word-spacing:-11.583000px;}
.ws47{word-spacing:-9.603000px;}
.ws46{word-spacing:-9.504000px;}
.ws34{word-spacing:-8.185320px;}
.ws56{word-spacing:-7.870500px;}
.ws10{word-spacing:-1.944000px;}
.ws5d{word-spacing:-1.350000px;}
.ws4a{word-spacing:-1.036800px;}
.ws51{word-spacing:-1.008000px;}
.ws28{word-spacing:-0.966228px;}
.ws20{word-spacing:-0.821294px;}
.ws12{word-spacing:-0.540000px;}
.ws7{word-spacing:-0.270000px;}
.ws2f{word-spacing:-0.237600px;}
.ws1b{word-spacing:-0.193246px;}
.ws2b{word-spacing:-0.190080px;}
.ws2e{word-spacing:-0.142560px;}
.ws35{word-spacing:-0.054000px;}
.ws21{word-spacing:-0.048311px;}
.ws15{word-spacing:-0.048000px;}
.ws9{word-spacing:-0.012000px;}
.ws8{word-spacing:-0.006000px;}
.ws0{word-spacing:0.000000px;}
.ws37{word-spacing:0.047520px;}
.ws23{word-spacing:0.096623px;}
.ws25{word-spacing:0.241557px;}
.ws57{word-spacing:0.283338px;}
.ws4f{word-spacing:0.297000px;}
.ws27{word-spacing:0.386491px;}
.ws53{word-spacing:0.480000px;}
.ws1c{word-spacing:0.483114px;}
.ws58{word-spacing:0.540000px;}
.ws36{word-spacing:0.570240px;}
.ws13{word-spacing:0.600000px;}
.ws26{word-spacing:0.676360px;}
.ws39{word-spacing:0.712800px;}
.ws22{word-spacing:0.724671px;}
.ws24{word-spacing:0.772982px;}
.wsf{word-spacing:0.864000px;}
.ws50{word-spacing:0.960000px;}
.ws38{word-spacing:1.045440px;}
.ws2c{word-spacing:1.092960px;}
.ws52{word-spacing:1.104000px;}
.ws1f{word-spacing:1.111162px;}
.ws1d{word-spacing:1.159474px;}
.ws4c{word-spacing:1.336500px;}
.ws2d{word-spacing:1.378080px;}
.ws3a{word-spacing:1.520640px;}
.ws14{word-spacing:1.620000px;}
.ws3b{word-spacing:1.710720px;}
.ws1e{word-spacing:1.787522px;}
.ws5a{word-spacing:1.800000px;}
.ws3c{word-spacing:1.995840px;}
.wse{word-spacing:2.538000px;}
.ws4b{word-spacing:3.216000px;}
.ws55{word-spacing:3.264000px;}
.ws54{word-spacing:3.360000px;}
.ws4e{word-spacing:3.415500px;}
.wsc{word-spacing:4.158000px;}
.ws4d{word-spacing:4.999500px;}
.ws6{word-spacing:5.760000px;}
.wsd{word-spacing:11.772000px;}
.wsb{word-spacing:14.634000px;}
.ws5c{word-spacing:22.140000px;}
.ws1a{word-spacing:37.441335px;}
.ws2a{word-spacing:38.966400px;}
.ws18{word-spacing:62.514952px;}
.ws41{word-spacing:75.537000px;}
.ws16{word-spacing:144.596020px;}
.ws43{word-spacing:199.465200px;}
.ws45{word-spacing:226.611000px;}
.ws44{word-spacing:239.980950px;}
.ws30{word-spacing:287.068320px;}
._2d{margin-left:-13.240800px;}
._2f{margin-left:-6.800400px;}
._e{margin-left:-5.520600px;}
._9{margin-left:-4.435200px;}
._7{margin-left:-2.484000px;}
._1{margin-left:-1.200000px;}
._0{width:1.200000px;}
._8{width:2.235600px;}
._4{width:3.569400px;}
._6{width:4.617000px;}
._2{width:5.621400px;}
._a{width:6.714000px;}
._5{width:7.948800px;}
._c{width:9.115200px;}
._10{width:10.497600px;}
._b{width:11.512800px;}
._f{width:12.738600px;}
._3{width:16.005600px;}
._12{width:17.188200px;}
._11{width:18.964800px;}
._1a{width:20.028600px;}
._2c{width:22.026600px;}
._2e{width:23.128200px;}
._32{width:26.546400px;}
._36{width:27.577800px;}
._30{width:29.700000px;}
._31{width:31.584600px;}
._33{width:38.610000px;}
._34{width:40.324200px;}
._1b{width:43.815600px;}
._35{width:51.537600px;}
._2b{width:64.060916px;}
._2a{width:78.022911px;}
._29{width:89.134533px;}
._28{width:103.096528px;}
._27{width:171.504000px;}
._26{width:194.640000px;}
._24{width:276.624000px;}
._25{width:283.920000px;}
._21{width:286.224000px;}
._16{width:316.204200px;}
._23{width:318.672000px;}
._1e{width:330.768000px;}
._1d{width:341.616000px;}
._19{width:397.830600px;}
._1c{width:411.792000px;}
._20{width:427.488000px;}
._1f{width:487.632000px;}
._15{width:539.449800px;}
._14{width:572.554200px;}
._18{width:575.478600px;}
._17{width:640.821600px;}
._13{width:958.731000px;}
._22{width:1342.080000px;}
._d{width:1958.418000px;}
.fc9{color:rgb(32,33,34);}
.fca{color:rgb(3,5,4);}
.fc6{color:rgb(77,81,86);}
.fc7{color:rgb(48,88,159);}
.fc5{color:rgb(226,166,28);}
.fc3{color:rgb(58,60,141);}
.fc2{color:rgb(5,6,6);}
.fc8{color:rgb(31,31,31);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:31.482000px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:47.520000px;}
.fs7{font-size:48.000000px;}
.fs9{font-size:48.311400px;}
.fsb{font-size:49.500000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y154{bottom:53.988900px;}
.y54{bottom:56.737950px;}
.y5{bottom:66.525004px;}
.y37{bottom:89.115600px;}
.y4{bottom:97.125005px;}
.y36{bottom:113.067600px;}
.yb8{bottom:115.795200px;}
.y88{bottom:115.795350px;}
.y35{bottom:128.067600px;}
.yb7{bottom:133.795200px;}
.y87{bottom:133.795350px;}
.y21{bottom:139.264499px;}
.yb6{bottom:151.795200px;}
.y86{bottom:151.795350px;}
.yb5{bottom:169.795200px;}
.y34{bottom:169.795350px;}
.yb4{bottom:187.795200px;}
.y33{bottom:187.795350px;}
.y18{bottom:196.933500px;}
.yb3{bottom:205.795200px;}
.y32{bottom:205.795350px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.yb2{bottom:223.795200px;}
.y85{bottom:223.795350px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.yb1{bottom:241.795200px;}
.y84{bottom:241.795350px;}
.yba{bottom:259.795200px;}
.y83{bottom:259.795350px;}
.y2b{bottom:259.831350px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.yb0{bottom:265.039350px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.yb9{bottom:277.795200px;}
.y82{bottom:277.795350px;}
.y2a{bottom:277.826850px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.yaf{bottom:295.795200px;}
.y81{bottom:295.795350px;}
.y29{bottom:295.822350px;}
.yff{bottom:307.359948px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.yae{bottom:313.795200px;}
.y80{bottom:313.795350px;}
.y28{bottom:313.817850px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.yad{bottom:331.795200px;}
.y7f{bottom:331.795350px;}
.y27{bottom:331.813350px;}
.yed{bottom:340.211700px;}
.yf{bottom:348.133500px;}
.yac{bottom:349.795200px;}
.y8a{bottom:349.795350px;}
.y26{bottom:349.808850px;}
.yef{bottom:351.419945px;}
.y7e{bottom:355.039350px;}
.yf1{bottom:362.628190px;}
.yab{bottom:367.795200px;}
.y89{bottom:367.795350px;}
.y25{bottom:367.804350px;}
.y142{bottom:370.165725px;}
.yf3{bottom:373.836434px;}
.yf5{bottom:385.044679px;}
.yaa{bottom:385.795200px;}
.y7d{bottom:385.795350px;}
.y24{bottom:385.799850px;}
.y100{bottom:386.131686px;}
.y141{bottom:386.513100px;}
.ye{bottom:386.785499px;}
.y161{bottom:389.365800px;}
.yf7{bottom:396.252924px;}
.y13b{bottom:401.759100px;}
.y114{bottom:401.770350px;}
.ya9{bottom:403.795200px;}
.y23{bottom:403.795350px;}
.yf9{bottom:407.461169px;}
.yd{bottom:408.044999px;}
.y14e{bottom:416.512275px;}
.yfb{bottom:418.669414px;}
.y113{bottom:418.965900px;}
.ya8{bottom:421.795200px;}
.y7c{bottom:421.795350px;}
.y22{bottom:425.365800px;}
.y13c{bottom:428.872725px;}
.yfd{bottom:429.877658px;}
.y14d{bottom:432.859650px;}
.y112{bottom:436.774500px;}
.ya7{bottom:439.795200px;}
.y7b{bottom:439.795350px;}
.y143{bottom:440.393850px;}
.y160{bottom:445.039500px;}
.y111{bottom:454.584600px;}
.y13d{bottom:455.986350px;}
.y14c{bottom:456.931425px;}
.ya6{bottom:457.795200px;}
.y7a{bottom:457.795350px;}
.y4d{bottom:457.880700px;}
.yee{bottom:461.533703px;}
.y110{bottom:472.393200px;}
.yf0{bottom:472.741948px;}
.y14b{bottom:473.278800px;}
.ya5{bottom:475.795200px;}
.y79{bottom:475.795350px;}
.y144{bottom:478.743975px;}
.y13e{bottom:483.099975px;}
.yf2{bottom:483.950193px;}
.y10f{bottom:490.203300px;}
.ya4{bottom:493.795200px;}
.y78{bottom:493.795350px;}
.y4c{bottom:493.885200px;}
.yf4{bottom:495.158438px;}
.y14a{bottom:497.351475px;}
.y15f{bottom:499.039500px;}
.y137{bottom:499.385730px;}
.yc{bottom:502.864502px;}
.yf6{bottom:506.366682px;}
.y102{bottom:507.127587px;}
.y10e{bottom:508.013550px;}
.y13f{bottom:510.213600px;}
.ya3{bottom:511.795200px;}
.y77{bottom:511.795350px;}
.y4b{bottom:511.880700px;}
.y130{bottom:512.715090px;}
.y149{bottom:513.698850px;}
.y145{bottom:514.891350px;}
.yf8{bottom:517.574927px;}
.yb{bottom:520.864502px;}
.y101{bottom:522.140355px;}
.y10d{bottom:525.822150px;}
.yfa{bottom:528.783172px;}
.ya2{bottom:529.795200px;}
.y76{bottom:529.795350px;}
.y4a{bottom:529.876200px;}
.y131{bottom:533.291250px;}
.y140{bottom:537.327225px;}
.y148{bottom:537.771225px;}
.ya{bottom:538.864499px;}
.yfc{bottom:539.991417px;}
.y12f{bottom:540.585570px;}
.y10c{bottom:544.246800px;}
.ya1{bottom:547.795200px;}
.y75{bottom:547.795350px;}
.y49{bottom:547.871700px;}
.yfe{bottom:551.199662px;}
.y132{bottom:553.867410px;}
.y147{bottom:554.118600px;}
.y9{bottom:556.864499px;}
.ya0{bottom:565.795200px;}
.y74{bottom:565.795350px;}
.y48{bottom:565.867200px;}
.y146{bottom:574.335450px;}
.y133{bottom:574.443570px;}
.y139{bottom:577.674930px;}
.y12e{bottom:581.749770px;}
.y9f{bottom:583.795200px;}
.y73{bottom:583.795350px;}
.y47{bottom:583.862700px;}
.ye8{bottom:593.082882px;}
.y134{bottom:595.019730px;}
.y9e{bottom:601.795200px;}
.y72{bottom:601.795350px;}
.y46{bottom:601.858200px;}
.y138{bottom:602.991210px;}
.y12d{bottom:612.614010px;}
.y135{bottom:615.595890px;}
.y9d{bottom:619.795200px;}
.y71{bottom:619.795350px;}
.y45{bottom:619.853700px;}
.ye0{bottom:625.898400px;}
.y136{bottom:636.172050px;}
.y9c{bottom:637.795200px;}
.y70{bottom:637.795350px;}
.y44{bottom:637.849200px;}
.y12c{bottom:643.478250px;}
.y8{bottom:645.510000px;}
.y9b{bottom:655.795200px;}
.y6f{bottom:655.795350px;}
.y43{bottom:655.844700px;}
.y10b{bottom:660.620550px;}
.y7{bottom:666.771000px;}
.yea{bottom:669.318271px;}
.y9a{bottom:673.795200px;}
.y6e{bottom:673.795350px;}
.y42{bottom:673.840200px;}
.y10a{bottom:677.814600px;}
.ye9{bottom:684.331038px;}
.y99{bottom:691.795200px;}
.y6d{bottom:691.795350px;}
.y41{bottom:691.835700px;}
.ye2{bottom:693.087480px;}
.y109{bottom:695.624700px;}
.ye4{bottom:704.283647px;}
.y12b{bottom:709.795200px;}
.y6c{bottom:709.795350px;}
.y40{bottom:709.831200px;}
.y108{bottom:713.434950px;}
.ye6{bottom:715.479813px;}
.y6{bottom:726.298500px;}
.y98{bottom:727.795200px;}
.y6b{bottom:727.795350px;}
.y3f{bottom:727.826700px;}
.y107{bottom:731.243550px;}
.yc1{bottom:734.536200px;}
.y12a{bottom:745.795200px;}
.y6a{bottom:745.795350px;}
.y3e{bottom:745.822200px;}
.ye1{bottom:747.075469px;}
.y106{bottom:749.053650px;}
.y3{bottom:752.599495px;}
.y97{bottom:759.672750px;}
.y129{bottom:763.795200px;}
.y69{bottom:763.795350px;}
.y3d{bottom:763.817700px;}
.y105{bottom:766.863900px;}
.y13a{bottom:781.795200px;}
.y68{bottom:781.795350px;}
.y3c{bottom:781.813200px;}
.y104{bottom:784.672350px;}
.yec{bottom:786.763284px;}
.y96{bottom:789.144150px;}
.yc0{bottom:793.588200px;}
.y95{bottom:795.619200px;}
.y128{bottom:799.795200px;}
.y67{bottom:799.795350px;}
.y3b{bottom:799.808700px;}
.y103{bottom:803.097150px;}
.yeb{bottom:803.382406px;}
.ye3{bottom:814.264549px;}
.y127{bottom:817.795200px;}
.y66{bottom:817.795350px;}
.y3a{bottom:817.804200px;}
.y94{bottom:825.090600px;}
.ye5{bottom:825.460716px;}
.y93{bottom:831.565650px;}
.y126{bottom:835.795200px;}
.y65{bottom:835.795350px;}
.y39{bottom:835.799700px;}
.ye7{bottom:836.656882px;}
.ybf{bottom:852.004200px;}
.y38{bottom:853.795200px;}
.y64{bottom:853.795350px;}
.y92{bottom:861.037050px;}
.y63{bottom:871.795350px;}
.y167{bottom:873.095250px;}
.y91{bottom:873.987150px;}
.yd4{bottom:875.136048px;}
.y2{bottom:879.369000px;}
.y62{bottom:889.795350px;}
.y120{bottom:891.701580px;}
.y166{bottom:892.595250px;}
.y31{bottom:897.245550px;}
.y118{bottom:902.144100px;}
.y90{bottom:903.458400px;}
.y61{bottom:907.795350px;}
.yc2{bottom:907.987800px;}
.y165{bottom:908.795400px;}
.y30{bottom:913.445550px;}
.ybe{bottom:913.864200px;}
.yc4{bottom:919.196045px;}
.y153{bottom:923.752500px;}
.y119{bottom:924.502260px;}
.y164{bottom:924.995400px;}
.y60{bottom:925.795350px;}
.y15d{bottom:929.048250px;}
.y2f{bottom:929.645550px;}
.yc6{bottom:930.404290px;}
.y8f{bottom:932.929800px;}
.y152{bottom:939.698250px;}
.yc8{bottom:941.612534px;}
.y163{bottom:943.321350px;}
.y5f{bottom:943.795350px;}
.y151{bottom:944.546250px;}
.y125{bottom:945.268500px;}
.y2e{bottom:945.845550px;}
.y8e{bottom:945.879900px;}
.y11a{bottom:946.860420px;}
.y15c{bottom:952.407750px;}
.yca{bottom:952.820779px;}
.yd5{bottom:953.907786px;}
.y5e{bottom:961.795350px;}
.ycc{bottom:964.029024px;}
.y2d{bottom:964.171350px;}
.y1{bottom:966.726000px;}
.ydf{bottom:968.701500px;}
.y11b{bottom:969.218580px;}
.yce{bottom:975.237269px;}
.y124{bottom:975.301140px;}
.y8d{bottom:975.351300px;}
.y15b{bottom:975.767250px;}
.ybd{bottom:976.456200px;}
.y5d{bottom:979.795350px;}
.y162{bottom:984.421350px;}
.y15e{bottom:985.039500px;}
.yde{bottom:985.897050px;}
.yd0{bottom:986.445514px;}
.y123{bottom:988.986900px;}
.y11c{bottom:991.576740px;}
.yd2{bottom:997.653758px;}
.y5c{bottom:997.795350px;}
.y15a{bottom:999.125250px;}
.y2c{bottom:1001.971500px;}
.ydd{bottom:1003.707300px;}
.y8c{bottom:1005.121800px;}
.y122{bottom:1005.333780px;}
.y11d{bottom:1013.934900px;}
.y5b{bottom:1015.795350px;}
.ydc{bottom:1021.515900px;}
.y159{bottom:1022.484750px;}
.y155{bottom:1027.103400px;}
.yc3{bottom:1029.309803px;}
.y5a{bottom:1033.795350px;}
.ybc{bottom:1034.500200px;}
.y121{bottom:1035.366420px;}
.y11e{bottom:1036.293060px;}
.ydb{bottom:1039.326000px;}
.yc5{bottom:1040.518048px;}
.y158{bottom:1045.844250px;}
.yc7{bottom:1051.726293px;}
.y52{bottom:1051.795350px;}
.y156{bottom:1054.583400px;}
.y150{bottom:1056.026250px;}
.yda{bottom:1057.136100px;}
.y11f{bottom:1058.674980px;}
.yc9{bottom:1062.934538px;}
.y14f{bottom:1069.358250px;}
.y59{bottom:1069.795350px;}
.y157{bottom:1072.847250px;}
.ycb{bottom:1074.142782px;}
.yd9{bottom:1074.944850px;}
.yd6{bottom:1075.229789px;}
.ycd{bottom:1085.351027px;}
.y51{bottom:1085.500500px;}
.y117{bottom:1087.795200px;}
.y58{bottom:1087.795350px;}
.yd8{bottom:1092.754950px;}
.ycf{bottom:1096.559272px;}
.y50{bottom:1104.883500px;}
.y116{bottom:1105.795200px;}
.y57{bottom:1105.795350px;}
.yd1{bottom:1107.767517px;}
.ybb{bottom:1111.060200px;}
.yd7{bottom:1111.178100px;}
.yd3{bottom:1118.975762px;}
.y115{bottom:1123.795200px;}
.y56{bottom:1123.795350px;}
.y4f{bottom:1125.601500px;}
.y4e{bottom:1154.112000px;}
.y8b{bottom:1175.269800px;}
.y55{bottom:1176.367650px;}
.y53{bottom:1186.184700px;}
.h7{height:32.130000px;}
.h1b{height:36.359297px;}
.hf{height:36.726562px;}
.h19{height:36.964826px;}
.h1d{height:37.874268px;}
.h12{height:38.880000px;}
.hd{height:39.408000px;}
.h21{height:39.557268px;}
.h14{height:41.317383px;}
.h13{height:41.370117px;}
.h11{height:43.200000px;}
.h15{height:43.260000px;}
.h24{height:44.334000px;}
.he{height:44.695312px;}
.h1a{height:44.985273px;}
.h16{height:45.398438px;}
.hc{height:45.844170px;}
.h6{height:45.900000px;}
.h22{height:46.092041px;}
.h3{height:48.195000px;}
.h9{height:49.260000px;}
.ha{height:50.282227px;}
.h20{height:51.041268px;}
.h1c{height:51.073242px;}
.h2{height:55.080000px;}
.hb{height:59.112000px;}
.h1e{height:64.653768px;}
.h18{height:70.595512px;}
.h1f{height:76.137768px;}
.h5{height:78.030000px;}
.h17{height:96.495713px;}
.h10{height:111.510000px;}
.h4{height:119.055004px;}
.h23{height:164.043000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:295.086000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:75.919350px;}
.x5{left:85.039350px;}
.x17{left:97.894500px;}
.x1{left:102.045000px;}
.x13{left:104.782200px;}
.x2{left:106.297500px;}
.xe{left:110.551200px;}
.x51{left:113.667660px;}
.x6d{left:114.803100px;}
.x4e{left:116.673300px;}
.x50{left:120.534300px;}
.x4f{left:127.400940px;}
.xf{left:131.701350px;}
.x59{left:134.627130px;}
.x20{left:142.972950px;}
.x18{left:152.366100px;}
.x22{left:154.612950px;}
.x54{left:159.005400px;}
.x1c{left:166.452150px;}
.x52{left:169.931340px;}
.x4b{left:179.818552px;}
.x16{left:186.989250px;}
.x5a{left:195.322050px;}
.x8{left:201.811500px;}
.x4{left:203.484001px;}
.x58{left:205.479450px;}
.x14{left:207.368100px;}
.x19{left:214.270500px;}
.x24{left:218.512950px;}
.x4d{left:220.348200px;}
.x1e{left:221.363250px;}
.x6{left:237.666750px;}
.x7{left:241.454550px;}
.x12{left:245.524350px;}
.x37{left:264.365314px;}
.x4c{left:275.468700px;}
.x11{left:281.783700px;}
.x5c{left:282.844500px;}
.x4a{left:292.867228px;}
.x57{left:302.717250px;}
.x3f{left:359.013822px;}
.x1f{left:361.612950px;}
.x36{left:386.073809px;}
.x3e{left:390.911423px;}
.x23{left:400.312950px;}
.x56{left:405.004050px;}
.x21{left:407.680950px;}
.x39{left:408.955731px;}
.x3b{left:410.260139px;}
.x40{left:416.556490px;}
.x42{left:423.271775px;}
.x44{left:440.072064px;}
.x28{left:444.397746px;}
.x26{left:445.931633px;}
.x25{left:447.803700px;}
.x46{left:448.828505px;}
.x27{left:451.849780px;}
.x3{left:454.959000px;}
.x9{left:457.085850px;}
.x5d{left:461.034300px;}
.x29{left:465.340738px;}
.x61{left:472.939575px;}
.x5f{left:476.551950px;}
.x60{left:479.807700px;}
.xa{left:482.600850px;}
.x5e{left:485.470650px;}
.x69{left:494.906850px;}
.x6a{left:497.545350px;}
.x2b{left:502.117791px;}
.x55{left:512.339850px;}
.x2a{left:518.145098px;}
.x2d{left:522.010010px;}
.x2f{left:526.816995px;}
.x33{left:528.387115px;}
.x2c{left:532.179560px;}
.x6b{left:533.749350px;}
.x2e{left:539.426270px;}
.x63{left:540.507075px;}
.x64{left:543.885450px;}
.x31{left:545.114937px;}
.x53{left:558.823140px;}
.x65{left:562.523700px;}
.x1b{left:564.068550px;}
.xc{left:571.609800px;}
.x32{left:572.930226px;}
.x47{left:577.493841px;}
.x48{left:579.039806px;}
.x30{left:581.928224px;}
.x35{left:583.872758px;}
.x45{left:587.023265px;}
.x3a{left:591.391656px;}
.x62{left:594.858075px;}
.x1a{left:598.978800px;}
.x3c{left:602.720679px;}
.x5b{left:605.787930px;}
.x15{left:610.817700px;}
.x41{left:612.253894px;}
.x49{left:615.092188px;}
.x34{left:618.125541px;}
.x67{left:627.554850px;}
.x3d{left:637.372030px;}
.x43{left:642.992022px;}
.x68{left:659.822850px;}
.xb{left:693.310200px;}
.x38{left:698.454150px;}
.x66{left:700.691550px;}
.x6c{left:730.729350px;}
.xd{left:799.181550px;}
.x1d{left:800.524200px;}
@media print{
.v5{vertical-align:-15.984000pt;}
.v4{vertical-align:-3.456000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.496000pt;}
.v7{vertical-align:11.704000pt;}
.v1{vertical-align:15.984533pt;}
.v3{vertical-align:23.022400pt;}
.v6{vertical-align:34.012000pt;}
.v2{vertical-align:46.044800pt;}
.ls2a{letter-spacing:-4.444000pt;}
.ls2d{letter-spacing:-2.992000pt;}
.ls34{letter-spacing:-2.986667pt;}
.ls2e{letter-spacing:-2.904000pt;}
.ls35{letter-spacing:-2.901333pt;}
.ls30{letter-spacing:-2.464000pt;}
.ls9{letter-spacing:-2.400000pt;}
.ls38{letter-spacing:-1.600000pt;}
.lsd{letter-spacing:-1.440000pt;}
.ls2c{letter-spacing:-1.188000pt;}
.ls29{letter-spacing:-1.144000pt;}
.ls39{letter-spacing:-1.066667pt;}
.ls32{letter-spacing:-0.981333pt;}
.ls7{letter-spacing:-0.853333pt;}
.ls2b{letter-spacing:-0.704000pt;}
.ls1c{letter-spacing:-0.687095pt;}
.ls20{letter-spacing:-0.675840pt;}
.ls1a{letter-spacing:-0.644152pt;}
.ls23{letter-spacing:-0.633600pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls19{letter-spacing:-0.429435pt;}
.ls33{letter-spacing:-0.426667pt;}
.ls1f{letter-spacing:-0.422400pt;}
.ls36{letter-spacing:-0.279840pt;}
.ls1b{letter-spacing:-0.085887pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3b{letter-spacing:0.005333pt;}
.ls37{letter-spacing:0.005867pt;}
.lsc{letter-spacing:0.015467pt;}
.lse{letter-spacing:0.042667pt;}
.ls3a{letter-spacing:0.096000pt;}
.ls1e{letter-spacing:0.168960pt;}
.ls10{letter-spacing:0.171774pt;}
.ls22{letter-spacing:0.211200pt;}
.ls2{letter-spacing:0.240000pt;}
.ls12{letter-spacing:0.257661pt;}
.ls18{letter-spacing:0.279133pt;}
.ls2f{letter-spacing:0.308000pt;}
.ls5{letter-spacing:0.426667pt;}
.lsb{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.533333pt;}
.ls11{letter-spacing:0.558265pt;}
.ls15{letter-spacing:0.601209pt;}
.ls21{letter-spacing:0.675840pt;}
.ls13{letter-spacing:0.687095pt;}
.ls27{letter-spacing:0.853333pt;}
.ls1d{letter-spacing:0.858869pt;}
.ls26{letter-spacing:0.878933pt;}
.ls31{letter-spacing:0.896000pt;}
.ls17{letter-spacing:0.901813pt;}
.ls25{letter-spacing:1.100000pt;}
.ls3{letter-spacing:1.120000pt;}
.lsa{letter-spacing:1.440000pt;}
.ls1{letter-spacing:2.640000pt;}
.ls28{letter-spacing:6.480000pt;}
.ls16{letter-spacing:81.850247pt;}
.ls14{letter-spacing:128.787457pt;}
.lsf{letter-spacing:177.055913pt;}
.ls24{letter-spacing:204.160000pt;}
.ws11{word-spacing:-48.000000pt;}
.ws32{word-spacing:-41.817600pt;}
.ws49{word-spacing:-25.168000pt;}
.ws3e{word-spacing:-18.960000pt;}
.ws1{word-spacing:-15.893333pt;}
.ws59{word-spacing:-15.360000pt;}
.ws5{word-spacing:-15.093333pt;}
.ws5b{word-spacing:-14.784000pt;}
.ws3{word-spacing:-14.304000pt;}
.ws3d{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.480000pt;}
.ws4{word-spacing:-12.384000pt;}
.ws19{word-spacing:-11.766510pt;}
.ws48{word-spacing:-11.748000pt;}
.ws40{word-spacing:-11.440000pt;}
.ws31{word-spacing:-11.193600pt;}
.ws29{word-spacing:-11.151360pt;}
.ws2{word-spacing:-11.093333pt;}
.ws42{word-spacing:-10.736000pt;}
.ws17{word-spacing:-10.735867pt;}
.ws33{word-spacing:-10.348800pt;}
.ws3f{word-spacing:-10.296000pt;}
.ws47{word-spacing:-8.536000pt;}
.ws46{word-spacing:-8.448000pt;}
.ws34{word-spacing:-7.275840pt;}
.ws56{word-spacing:-6.996000pt;}
.ws10{word-spacing:-1.728000pt;}
.ws5d{word-spacing:-1.200000pt;}
.ws4a{word-spacing:-0.921600pt;}
.ws51{word-spacing:-0.896000pt;}
.ws28{word-spacing:-0.858869pt;}
.ws20{word-spacing:-0.730039pt;}
.ws12{word-spacing:-0.480000pt;}
.ws7{word-spacing:-0.240000pt;}
.ws2f{word-spacing:-0.211200pt;}
.ws1b{word-spacing:-0.171774pt;}
.ws2b{word-spacing:-0.168960pt;}
.ws2e{word-spacing:-0.126720pt;}
.ws35{word-spacing:-0.048000pt;}
.ws21{word-spacing:-0.042943pt;}
.ws15{word-spacing:-0.042667pt;}
.ws9{word-spacing:-0.010667pt;}
.ws8{word-spacing:-0.005333pt;}
.ws0{word-spacing:0.000000pt;}
.ws37{word-spacing:0.042240pt;}
.ws23{word-spacing:0.085887pt;}
.ws25{word-spacing:0.214717pt;}
.ws57{word-spacing:0.251856pt;}
.ws4f{word-spacing:0.264000pt;}
.ws27{word-spacing:0.343548pt;}
.ws53{word-spacing:0.426667pt;}
.ws1c{word-spacing:0.429435pt;}
.ws58{word-spacing:0.480000pt;}
.ws36{word-spacing:0.506880pt;}
.ws13{word-spacing:0.533333pt;}
.ws26{word-spacing:0.601209pt;}
.ws39{word-spacing:0.633600pt;}
.ws22{word-spacing:0.644152pt;}
.ws24{word-spacing:0.687095pt;}
.wsf{word-spacing:0.768000pt;}
.ws50{word-spacing:0.853333pt;}
.ws38{word-spacing:0.929280pt;}
.ws2c{word-spacing:0.971520pt;}
.ws52{word-spacing:0.981333pt;}
.ws1f{word-spacing:0.987700pt;}
.ws1d{word-spacing:1.030643pt;}
.ws4c{word-spacing:1.188000pt;}
.ws2d{word-spacing:1.224960pt;}
.ws3a{word-spacing:1.351680pt;}
.ws14{word-spacing:1.440000pt;}
.ws3b{word-spacing:1.520640pt;}
.ws1e{word-spacing:1.588908pt;}
.ws5a{word-spacing:1.600000pt;}
.ws3c{word-spacing:1.774080pt;}
.wse{word-spacing:2.256000pt;}
.ws4b{word-spacing:2.858667pt;}
.ws55{word-spacing:2.901333pt;}
.ws54{word-spacing:2.986667pt;}
.ws4e{word-spacing:3.036000pt;}
.wsc{word-spacing:3.696000pt;}
.ws4d{word-spacing:4.444000pt;}
.ws6{word-spacing:5.120000pt;}
.wsd{word-spacing:10.464000pt;}
.wsb{word-spacing:13.008000pt;}
.ws5c{word-spacing:19.680000pt;}
.ws1a{word-spacing:33.281187pt;}
.ws2a{word-spacing:34.636800pt;}
.ws18{word-spacing:55.568846pt;}
.ws41{word-spacing:67.144000pt;}
.ws16{word-spacing:128.529796pt;}
.ws43{word-spacing:177.302400pt;}
.ws45{word-spacing:201.432000pt;}
.ws44{word-spacing:213.316400pt;}
.ws30{word-spacing:255.171840pt;}
._2d{margin-left:-11.769600pt;}
._2f{margin-left:-6.044800pt;}
._e{margin-left:-4.907200pt;}
._9{margin-left:-3.942400pt;}
._7{margin-left:-2.208000pt;}
._1{margin-left:-1.066667pt;}
._0{width:1.066667pt;}
._8{width:1.987200pt;}
._4{width:3.172800pt;}
._6{width:4.104000pt;}
._2{width:4.996800pt;}
._a{width:5.968000pt;}
._5{width:7.065600pt;}
._c{width:8.102400pt;}
._10{width:9.331200pt;}
._b{width:10.233600pt;}
._f{width:11.323200pt;}
._3{width:14.227200pt;}
._12{width:15.278400pt;}
._11{width:16.857600pt;}
._1a{width:17.803200pt;}
._2c{width:19.579200pt;}
._2e{width:20.558400pt;}
._32{width:23.596800pt;}
._36{width:24.513600pt;}
._30{width:26.400000pt;}
._31{width:28.075200pt;}
._33{width:34.320000pt;}
._34{width:35.843733pt;}
._1b{width:38.947200pt;}
._35{width:45.811200pt;}
._2b{width:56.943037pt;}
._2a{width:69.353699pt;}
._29{width:79.230696pt;}
._28{width:91.641358pt;}
._27{width:152.448000pt;}
._26{width:173.013333pt;}
._24{width:245.888000pt;}
._25{width:252.373333pt;}
._21{width:254.421333pt;}
._16{width:281.070400pt;}
._23{width:283.264000pt;}
._1e{width:294.016000pt;}
._1d{width:303.658667pt;}
._19{width:353.627200pt;}
._1c{width:366.037333pt;}
._20{width:379.989333pt;}
._1f{width:433.450667pt;}
._15{width:479.510933pt;}
._14{width:508.937067pt;}
._18{width:511.536533pt;}
._17{width:569.619200pt;}
._13{width:852.205333pt;}
._22{width:1192.960000pt;}
._d{width:1740.816000pt;}
.fs6{font-size:27.984000pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:42.240000pt;}
.fs7{font-size:42.666667pt;}
.fs9{font-size:42.943467pt;}
.fsb{font-size:44.000000pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y154{bottom:47.990133pt;}
.y54{bottom:50.433733pt;}
.y5{bottom:59.133337pt;}
.y37{bottom:79.213867pt;}
.y4{bottom:86.333337pt;}
.y36{bottom:100.504533pt;}
.yb8{bottom:102.929067pt;}
.y88{bottom:102.929200pt;}
.y35{bottom:113.837867pt;}
.yb7{bottom:118.929067pt;}
.y87{bottom:118.929200pt;}
.y21{bottom:123.790666pt;}
.yb6{bottom:134.929067pt;}
.y86{bottom:134.929200pt;}
.yb5{bottom:150.929067pt;}
.y34{bottom:150.929200pt;}
.yb4{bottom:166.929067pt;}
.y33{bottom:166.929200pt;}
.y18{bottom:175.052000pt;}
.yb3{bottom:182.929067pt;}
.y32{bottom:182.929200pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.yb2{bottom:198.929067pt;}
.y85{bottom:198.929200pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.yb1{bottom:214.929067pt;}
.y84{bottom:214.929200pt;}
.yba{bottom:230.929067pt;}
.y83{bottom:230.929200pt;}
.y2b{bottom:230.961200pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.yb0{bottom:235.590533pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.yb9{bottom:246.929067pt;}
.y82{bottom:246.929200pt;}
.y2a{bottom:246.957200pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.yaf{bottom:262.929067pt;}
.y81{bottom:262.929200pt;}
.y29{bottom:262.953200pt;}
.yff{bottom:273.208843pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.yae{bottom:278.929067pt;}
.y80{bottom:278.929200pt;}
.y28{bottom:278.949200pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.yad{bottom:294.929067pt;}
.y7f{bottom:294.929200pt;}
.y27{bottom:294.945200pt;}
.yed{bottom:302.410400pt;}
.yf{bottom:309.452000pt;}
.yac{bottom:310.929067pt;}
.y8a{bottom:310.929200pt;}
.y26{bottom:310.941200pt;}
.yef{bottom:312.373284pt;}
.y7e{bottom:315.590533pt;}
.yf1{bottom:322.336169pt;}
.yab{bottom:326.929067pt;}
.y89{bottom:326.929200pt;}
.y25{bottom:326.937200pt;}
.y142{bottom:329.036200pt;}
.yf3{bottom:332.299053pt;}
.yf5{bottom:342.261937pt;}
.yaa{bottom:342.929067pt;}
.y7d{bottom:342.929200pt;}
.y24{bottom:342.933200pt;}
.y100{bottom:343.228165pt;}
.y141{bottom:343.567200pt;}
.ye{bottom:343.809333pt;}
.y161{bottom:346.102933pt;}
.yf7{bottom:352.224821pt;}
.y13b{bottom:357.119200pt;}
.y114{bottom:357.129200pt;}
.ya9{bottom:358.929067pt;}
.y23{bottom:358.929200pt;}
.yf9{bottom:362.187706pt;}
.yd{bottom:362.706666pt;}
.y14e{bottom:370.233133pt;}
.yfb{bottom:372.150590pt;}
.y113{bottom:372.414133pt;}
.ya8{bottom:374.929067pt;}
.y7c{bottom:374.929200pt;}
.y22{bottom:378.102933pt;}
.y13c{bottom:381.220200pt;}
.yfd{bottom:382.113474pt;}
.y14d{bottom:384.764133pt;}
.y112{bottom:388.244000pt;}
.ya7{bottom:390.929067pt;}
.y7b{bottom:390.929200pt;}
.y143{bottom:391.461200pt;}
.y160{bottom:395.590667pt;}
.y111{bottom:404.075200pt;}
.y13d{bottom:405.321200pt;}
.y14c{bottom:406.161267pt;}
.ya6{bottom:406.929067pt;}
.y7a{bottom:406.929200pt;}
.y4d{bottom:407.005067pt;}
.yee{bottom:410.252181pt;}
.y110{bottom:419.905067pt;}
.yf0{bottom:420.215065pt;}
.y14b{bottom:420.692267pt;}
.ya5{bottom:422.929067pt;}
.y79{bottom:422.929200pt;}
.y144{bottom:425.550200pt;}
.y13e{bottom:429.422200pt;}
.yf2{bottom:430.177949pt;}
.y10f{bottom:435.736267pt;}
.ya4{bottom:438.929067pt;}
.y78{bottom:438.929200pt;}
.y4c{bottom:439.009067pt;}
.yf4{bottom:440.140833pt;}
.y14a{bottom:442.090200pt;}
.y15f{bottom:443.590667pt;}
.y137{bottom:443.898427pt;}
.yc{bottom:446.990669pt;}
.yf6{bottom:450.103718pt;}
.y102{bottom:450.780077pt;}
.y10e{bottom:451.567600pt;}
.y13f{bottom:453.523200pt;}
.ya3{bottom:454.929067pt;}
.y77{bottom:454.929200pt;}
.y4b{bottom:455.005067pt;}
.y130{bottom:455.746747pt;}
.y149{bottom:456.621200pt;}
.y145{bottom:457.681200pt;}
.yf8{bottom:460.066602pt;}
.yb{bottom:462.990669pt;}
.y101{bottom:464.124760pt;}
.y10d{bottom:467.397467pt;}
.yfa{bottom:470.029486pt;}
.ya2{bottom:470.929067pt;}
.y76{bottom:470.929200pt;}
.y4a{bottom:471.001067pt;}
.y131{bottom:474.036667pt;}
.y140{bottom:477.624200pt;}
.y148{bottom:478.018867pt;}
.ya{bottom:478.990666pt;}
.yfc{bottom:479.992371pt;}
.y12f{bottom:480.520507pt;}
.y10c{bottom:483.774933pt;}
.ya1{bottom:486.929067pt;}
.y75{bottom:486.929200pt;}
.y49{bottom:486.997067pt;}
.yfe{bottom:489.955255pt;}
.y132{bottom:492.326587pt;}
.y147{bottom:492.549867pt;}
.y9{bottom:494.990666pt;}
.ya0{bottom:502.929067pt;}
.y74{bottom:502.929200pt;}
.y48{bottom:502.993067pt;}
.y146{bottom:510.520400pt;}
.y133{bottom:510.616507pt;}
.y139{bottom:513.488827pt;}
.y12e{bottom:517.110907pt;}
.y9f{bottom:518.929067pt;}
.y73{bottom:518.929200pt;}
.y47{bottom:518.989067pt;}
.ye8{bottom:527.184784pt;}
.y134{bottom:528.906427pt;}
.y9e{bottom:534.929067pt;}
.y72{bottom:534.929200pt;}
.y46{bottom:534.985067pt;}
.y138{bottom:535.992187pt;}
.y12d{bottom:544.545787pt;}
.y135{bottom:547.196347pt;}
.y9d{bottom:550.929067pt;}
.y71{bottom:550.929200pt;}
.y45{bottom:550.981067pt;}
.ye0{bottom:556.354133pt;}
.y136{bottom:565.486267pt;}
.y9c{bottom:566.929067pt;}
.y70{bottom:566.929200pt;}
.y44{bottom:566.977067pt;}
.y12c{bottom:571.980667pt;}
.y8{bottom:573.786667pt;}
.y9b{bottom:582.929067pt;}
.y6f{bottom:582.929200pt;}
.y43{bottom:582.973067pt;}
.y10b{bottom:587.218267pt;}
.y7{bottom:592.685334pt;}
.yea{bottom:594.949574pt;}
.y9a{bottom:598.929067pt;}
.y6e{bottom:598.929200pt;}
.y42{bottom:598.969067pt;}
.y10a{bottom:602.501867pt;}
.ye9{bottom:608.294256pt;}
.y99{bottom:614.929067pt;}
.y6d{bottom:614.929200pt;}
.y41{bottom:614.965067pt;}
.ye2{bottom:616.077760pt;}
.y109{bottom:618.333067pt;}
.ye4{bottom:626.029908pt;}
.y12b{bottom:630.929067pt;}
.y6c{bottom:630.929200pt;}
.y40{bottom:630.961067pt;}
.y108{bottom:634.164400pt;}
.ye6{bottom:635.982056pt;}
.y6{bottom:645.598667pt;}
.y98{bottom:646.929067pt;}
.y6b{bottom:646.929200pt;}
.y3f{bottom:646.957067pt;}
.y107{bottom:649.994267pt;}
.yc1{bottom:652.921067pt;}
.y12a{bottom:662.929067pt;}
.y6a{bottom:662.929200pt;}
.y3e{bottom:662.953067pt;}
.ye1{bottom:664.067084pt;}
.y106{bottom:665.825467pt;}
.y3{bottom:668.977329pt;}
.y97{bottom:675.264667pt;}
.y129{bottom:678.929067pt;}
.y69{bottom:678.929200pt;}
.y3d{bottom:678.949067pt;}
.y105{bottom:681.656800pt;}
.y13a{bottom:694.929067pt;}
.y68{bottom:694.929200pt;}
.y3c{bottom:694.945067pt;}
.y104{bottom:697.486533pt;}
.yec{bottom:699.345141pt;}
.y96{bottom:701.461467pt;}
.yc0{bottom:705.411733pt;}
.y95{bottom:707.217067pt;}
.y128{bottom:710.929067pt;}
.y67{bottom:710.929200pt;}
.y3b{bottom:710.941067pt;}
.y103{bottom:713.864133pt;}
.yeb{bottom:714.117694pt;}
.ye3{bottom:723.790710pt;}
.y127{bottom:726.929067pt;}
.y66{bottom:726.929200pt;}
.y3a{bottom:726.937067pt;}
.y94{bottom:733.413867pt;}
.ye5{bottom:733.742858pt;}
.y93{bottom:739.169467pt;}
.y126{bottom:742.929067pt;}
.y65{bottom:742.929200pt;}
.y39{bottom:742.933067pt;}
.ye7{bottom:743.695007pt;}
.ybf{bottom:757.337067pt;}
.y38{bottom:758.929067pt;}
.y64{bottom:758.929200pt;}
.y92{bottom:765.366267pt;}
.y63{bottom:774.929200pt;}
.y167{bottom:776.084667pt;}
.y91{bottom:776.877467pt;}
.yd4{bottom:777.898709pt;}
.y2{bottom:781.661334pt;}
.y62{bottom:790.929200pt;}
.y120{bottom:792.623627pt;}
.y166{bottom:793.418000pt;}
.y31{bottom:797.551600pt;}
.y118{bottom:801.905867pt;}
.y90{bottom:803.074133pt;}
.y61{bottom:806.929200pt;}
.yc2{bottom:807.100267pt;}
.y165{bottom:807.818133pt;}
.y30{bottom:811.951600pt;}
.ybe{bottom:812.323733pt;}
.yc4{bottom:817.063151pt;}
.y153{bottom:821.113333pt;}
.y119{bottom:821.779787pt;}
.y164{bottom:822.218133pt;}
.y60{bottom:822.929200pt;}
.y15d{bottom:825.820667pt;}
.y2f{bottom:826.351600pt;}
.yc6{bottom:827.026035pt;}
.y8f{bottom:829.270933pt;}
.y152{bottom:835.287333pt;}
.yc8{bottom:836.988919pt;}
.y163{bottom:838.507867pt;}
.y5f{bottom:838.929200pt;}
.y151{bottom:839.596667pt;}
.y125{bottom:840.238667pt;}
.y2e{bottom:840.751600pt;}
.y8e{bottom:840.782133pt;}
.y11a{bottom:841.653707pt;}
.y15c{bottom:846.584667pt;}
.yca{bottom:846.951804pt;}
.yd5{bottom:847.918032pt;}
.y5e{bottom:854.929200pt;}
.ycc{bottom:856.914688pt;}
.y2d{bottom:857.041200pt;}
.y1{bottom:859.312000pt;}
.ydf{bottom:861.068000pt;}
.y11b{bottom:861.527627pt;}
.yce{bottom:866.877572pt;}
.y124{bottom:866.934347pt;}
.y8d{bottom:866.978933pt;}
.y15b{bottom:867.348667pt;}
.ybd{bottom:867.961067pt;}
.y5d{bottom:870.929200pt;}
.y162{bottom:875.041200pt;}
.y15e{bottom:875.590667pt;}
.yde{bottom:876.352933pt;}
.yd0{bottom:876.840457pt;}
.y123{bottom:879.099467pt;}
.y11c{bottom:881.401547pt;}
.yd2{bottom:886.803341pt;}
.y5c{bottom:886.929200pt;}
.y15a{bottom:888.111333pt;}
.y2c{bottom:890.641333pt;}
.ydd{bottom:892.184267pt;}
.y8c{bottom:893.441600pt;}
.y122{bottom:893.630027pt;}
.y11d{bottom:901.275467pt;}
.y5b{bottom:902.929200pt;}
.ydc{bottom:908.014133pt;}
.y159{bottom:908.875333pt;}
.y155{bottom:912.980800pt;}
.yc3{bottom:914.942047pt;}
.y5a{bottom:918.929200pt;}
.ybc{bottom:919.555733pt;}
.y121{bottom:920.325707pt;}
.y11e{bottom:921.149387pt;}
.ydb{bottom:923.845333pt;}
.yc5{bottom:924.904932pt;}
.y158{bottom:929.639333pt;}
.yc7{bottom:934.867816pt;}
.y52{bottom:934.929200pt;}
.y156{bottom:937.407467pt;}
.y150{bottom:938.690000pt;}
.yda{bottom:939.676533pt;}
.y11f{bottom:941.044427pt;}
.yc9{bottom:944.830700pt;}
.y14f{bottom:950.540667pt;}
.y59{bottom:950.929200pt;}
.y157{bottom:953.642000pt;}
.ycb{bottom:954.793584pt;}
.yd9{bottom:955.506533pt;}
.yd6{bottom:955.759812pt;}
.ycd{bottom:964.756469pt;}
.y51{bottom:964.889333pt;}
.y117{bottom:966.929067pt;}
.y58{bottom:966.929200pt;}
.yd8{bottom:971.337733pt;}
.ycf{bottom:974.719353pt;}
.y50{bottom:982.118667pt;}
.y116{bottom:982.929067pt;}
.y57{bottom:982.929200pt;}
.yd1{bottom:984.682237pt;}
.ybb{bottom:987.609067pt;}
.yd7{bottom:987.713867pt;}
.yd3{bottom:994.645121pt;}
.y115{bottom:998.929067pt;}
.y56{bottom:998.929200pt;}
.y4f{bottom:1000.534667pt;}
.y4e{bottom:1025.877333pt;}
.y8b{bottom:1044.684267pt;}
.y55{bottom:1045.660133pt;}
.y53{bottom:1054.386400pt;}
.h7{height:28.560000pt;}
.h1b{height:32.319375pt;}
.hf{height:32.645833pt;}
.h19{height:32.857623pt;}
.h1d{height:33.666016pt;}
.h12{height:34.560000pt;}
.hd{height:35.029333pt;}
.h21{height:35.162016pt;}
.h14{height:36.726562pt;}
.h13{height:36.773438pt;}
.h11{height:38.400000pt;}
.h15{height:38.453333pt;}
.h24{height:39.408000pt;}
.he{height:39.729167pt;}
.h1a{height:39.986910pt;}
.h16{height:40.354167pt;}
.hc{height:40.750373pt;}
.h6{height:40.800000pt;}
.h22{height:40.970703pt;}
.h3{height:42.840000pt;}
.h9{height:43.786667pt;}
.ha{height:44.695312pt;}
.h20{height:45.370016pt;}
.h1c{height:45.398438pt;}
.h2{height:48.960000pt;}
.hb{height:52.544000pt;}
.h1e{height:57.470016pt;}
.h18{height:62.751567pt;}
.h1f{height:67.678016pt;}
.h5{height:69.360000pt;}
.h17{height:85.773967pt;}
.h10{height:99.120000pt;}
.h4{height:105.826671pt;}
.h23{height:145.816000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:262.298667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:67.483867pt;}
.x5{left:75.590533pt;}
.x17{left:87.017333pt;}
.x1{left:90.706667pt;}
.x13{left:93.139733pt;}
.x2{left:94.486667pt;}
.xe{left:98.267733pt;}
.x51{left:101.037920pt;}
.x6d{left:102.047200pt;}
.x4e{left:103.709600pt;}
.x50{left:107.141600pt;}
.x4f{left:113.245280pt;}
.xf{left:117.067867pt;}
.x59{left:119.668560pt;}
.x20{left:127.087067pt;}
.x18{left:135.436533pt;}
.x22{left:137.433733pt;}
.x54{left:141.338133pt;}
.x1c{left:147.957467pt;}
.x52{left:151.050080pt;}
.x4b{left:159.838713pt;}
.x16{left:166.212667pt;}
.x5a{left:173.619600pt;}
.x8{left:179.388000pt;}
.x4{left:180.874667pt;}
.x58{left:182.648400pt;}
.x14{left:184.327200pt;}
.x19{left:190.462667pt;}
.x24{left:194.233733pt;}
.x4d{left:195.865067pt;}
.x1e{left:196.767333pt;}
.x6{left:211.259333pt;}
.x7{left:214.626267pt;}
.x12{left:218.243867pt;}
.x37{left:234.991390pt;}
.x4c{left:244.861067pt;}
.x11{left:250.474400pt;}
.x5c{left:251.417333pt;}
.x4a{left:260.326425pt;}
.x57{left:269.082000pt;}
.x3f{left:319.123397pt;}
.x1f{left:321.433733pt;}
.x36{left:343.176719pt;}
.x3e{left:347.476821pt;}
.x23{left:355.833733pt;}
.x56{left:360.003600pt;}
.x21{left:362.383067pt;}
.x39{left:363.516206pt;}
.x3b{left:364.675679pt;}
.x40{left:370.272436pt;}
.x42{left:376.241578pt;}
.x44{left:391.175168pt;}
.x28{left:395.020219pt;}
.x26{left:396.383674pt;}
.x25{left:398.047733pt;}
.x46{left:398.958671pt;}
.x27{left:401.644249pt;}
.x3{left:404.408000pt;}
.x9{left:406.298533pt;}
.x5d{left:409.808267pt;}
.x29{left:413.636212pt;}
.x61{left:420.390733pt;}
.x5f{left:423.601733pt;}
.x60{left:426.495733pt;}
.xa{left:428.978533pt;}
.x5e{left:431.529467pt;}
.x69{left:439.917200pt;}
.x6a{left:442.262533pt;}
.x2b{left:446.326926pt;}
.x55{left:455.413200pt;}
.x2a{left:460.573421pt;}
.x2d{left:464.008898pt;}
.x2f{left:468.281773pt;}
.x33{left:469.677436pt;}
.x2c{left:473.048498pt;}
.x6b{left:474.443867pt;}
.x2e{left:479.490018pt;}
.x63{left:480.450733pt;}
.x64{left:483.453733pt;}
.x31{left:484.546611pt;}
.x53{left:496.731680pt;}
.x65{left:500.021067pt;}
.x1b{left:501.394267pt;}
.xc{left:508.097600pt;}
.x32{left:509.271312pt;}
.x47{left:513.327859pt;}
.x48{left:514.702050pt;}
.x30{left:517.269533pt;}
.x35{left:518.998007pt;}
.x45{left:521.798458pt;}
.x3a{left:525.681472pt;}
.x62{left:528.762733pt;}
.x1a{left:532.425600pt;}
.x3c{left:535.751715pt;}
.x5b{left:538.478160pt;}
.x15{left:542.949067pt;}
.x41{left:544.225683pt;}
.x49{left:546.748612pt;}
.x34{left:549.444925pt;}
.x67{left:557.826533pt;}
.x3d{left:566.552916pt;}
.x43{left:571.548464pt;}
.x68{left:586.509200pt;}
.xb{left:616.275733pt;}
.x38{left:620.848133pt;}
.x66{left:622.836933pt;}
.x6c{left:649.537200pt;}
.xd{left:710.383600pt;}
.x1d{left:711.577067pt;}
}




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