
    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_e960a8c49d48f55b533e572c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_493d3dcaa65ef5b02e927c11.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_7b7c7c3440bf56cc9ee83c18.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5e52fb1f142e48e7c54aad09.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941406;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_a1523d3da7cc4c6a4ecf6488.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_1fb65944fc90e70bfd02f850.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939453;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_252795a23138b495ca58b4b0.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_ae6d93483cf0b569e73f5243.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941406;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_dc2a8027c56217aea648ffe2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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_25db0184039051497190d34a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.035156;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_29a160ebd03405e7d62ccde4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.130371;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_841523be6d07a4dc1c1fc185.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.130371;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;}
.m4{transform:matrix(0.000000,-0.249603,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249603,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249603,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.243717,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.243717,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.243717,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.249900,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249900,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249900,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.242201,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.242201,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.242201,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.241503,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.241503,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.241503,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.md{transform:matrix(0.218817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218817,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.218930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218930,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.221418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221418,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252247,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.256445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256445,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.257797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257797,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.258050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258050,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.258796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258796,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.258906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258906,0.000000,0.000000,0.250000,0,0);}
.vb{vertical-align:-50.256000px;}
.v4{vertical-align:-20.160000px;}
.v3{vertical-align:-17.280000px;}
.vd{vertical-align:-15.120024px;}
.v6{vertical-align:-12.240000px;}
.vf{vertical-align:-6.352059px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:3.600000px;}
.v9{vertical-align:5.940000px;}
.vc{vertical-align:13.380000px;}
.v8{vertical-align:16.260000px;}
.va{vertical-align:28.799993px;}
.v1{vertical-align:32.400000px;}
.v5{vertical-align:33.989145px;}
.v2{vertical-align:79.920000px;}
.v7{vertical-align:86.400000px;}
.ls52{letter-spacing:-3.144000px;}
.ls15{letter-spacing:-1.026000px;}
.ls18{letter-spacing:-1.008000px;}
.ls14{letter-spacing:-0.906000px;}
.ls12{letter-spacing:-0.858000px;}
.lsb{letter-spacing:-0.750000px;}
.ls1e{letter-spacing:-0.594000px;}
.ls19{letter-spacing:-0.540000px;}
.ls21{letter-spacing:-0.508800px;}
.ls13{letter-spacing:-0.474600px;}
.ls3d{letter-spacing:-0.447600px;}
.ls34{letter-spacing:-0.424800px;}
.ls20{letter-spacing:-0.399600px;}
.ls35{letter-spacing:-0.383400px;}
.lsf{letter-spacing:-0.348600px;}
.ls27{letter-spacing:-0.310200px;}
.lsd{letter-spacing:-0.306000px;}
.ls53{letter-spacing:-0.288000px;}
.ls45{letter-spacing:-0.266400px;}
.ls3{letter-spacing:-0.229800px;}
.ls16{letter-spacing:-0.216000px;}
.ls4c{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.162000px;}
.ls36{letter-spacing:-0.141600px;}
.ls44{letter-spacing:-0.088800px;}
.ls1d{letter-spacing:-0.065400px;}
.ls2a{letter-spacing:-0.061246px;}
.ls2{letter-spacing:0.000000px;}
.ls4d{letter-spacing:0.014360px;}
.ls47{letter-spacing:0.015182px;}
.ls1c{letter-spacing:0.022320px;}
.lsa{letter-spacing:0.031680px;}
.ls2b{letter-spacing:0.048064px;}
.ls3c{letter-spacing:0.050400px;}
.ls4e{letter-spacing:0.051253px;}
.ls48{letter-spacing:0.054190px;}
.ls29{letter-spacing:0.058139px;}
.lse{letter-spacing:0.064800px;}
.ls26{letter-spacing:0.078600px;}
.ls42{letter-spacing:0.094800px;}
.ls23{letter-spacing:0.100800px;}
.ls2d{letter-spacing:0.115104px;}
.ls4b{letter-spacing:0.121468px;}
.ls1f{letter-spacing:0.126000px;}
.ls46{letter-spacing:0.127627px;}
.ls28{letter-spacing:0.140131px;}
.ls2f{letter-spacing:0.165000px;}
.ls8{letter-spacing:0.169800px;}
.ls33{letter-spacing:0.172200px;}
.ls37{letter-spacing:0.211200px;}
.ls0{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.245400px;}
.ls3b{letter-spacing:0.262200px;}
.ls17{letter-spacing:0.288000px;}
.ls22{letter-spacing:0.295200px;}
.ls1a{letter-spacing:0.309000px;}
.ls50{letter-spacing:0.312000px;}
.ls1b{letter-spacing:0.320400px;}
.ls9{letter-spacing:0.338400px;}
.ls49{letter-spacing:0.348600px;}
.ls3f{letter-spacing:0.360000px;}
.ls3a{letter-spacing:0.409800px;}
.ls43{letter-spacing:0.504000px;}
.ls25{letter-spacing:0.562200px;}
.ls38{letter-spacing:0.654000px;}
.ls10{letter-spacing:0.786000px;}
.ls51{letter-spacing:0.846000px;}
.ls39{letter-spacing:0.930000px;}
.ls24{letter-spacing:2.118240px;}
.ls4f{letter-spacing:2.221753px;}
.ls32{letter-spacing:4.278240px;}
.ls31{letter-spacing:15.078240px;}
.ls30{letter-spacing:17.238240px;}
.ls7{letter-spacing:18.401760px;}
.ls1{letter-spacing:26.136000px;}
.ls4a{letter-spacing:101.844000px;}
.ls2e{letter-spacing:101.988000px;}
.ls5{letter-spacing:105.825600px;}
.ls6{letter-spacing:105.876000px;}
.ls4{letter-spacing:110.160000px;}
.ls2c{letter-spacing:155.159286px;}
.ls3e{letter-spacing:283.896000px;}
.ls41{letter-spacing:364.745520px;}
.ls40{letter-spacing:921.744000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4e{word-spacing:-95.760000px;}
.ws36{word-spacing:-84.240000px;}
.ws65{word-spacing:-54.185760px;}
.ws1b{word-spacing:-48.816000px;}
.ws5f{word-spacing:-24.440544px;}
.ws0{word-spacing:-24.408000px;}
.ws63{word-spacing:-24.120000px;}
.ws19{word-spacing:-23.868000px;}
.ws53{word-spacing:-23.436987px;}
.ws46{word-spacing:-22.571760px;}
.ws61{word-spacing:-22.487760px;}
.ws45{word-spacing:-22.295760px;}
.ws5d{word-spacing:-22.167087px;}
.ws47{word-spacing:-22.051560px;}
.ws54{word-spacing:-21.990360px;}
.ws60{word-spacing:-21.986304px;}
.ws21{word-spacing:-21.962160px;}
.ws1c{word-spacing:-21.950760px;}
.ws4b{word-spacing:-21.936960px;}
.ws48{word-spacing:-21.936504px;}
.ws44{word-spacing:-21.852960px;}
.ws40{word-spacing:-21.813960px;}
.ws3f{word-spacing:-21.806760px;}
.ws55{word-spacing:-21.769104px;}
.ws20{word-spacing:-21.767760px;}
.ws34{word-spacing:-21.742560px;}
.ws49{word-spacing:-21.724704px;}
.ws56{word-spacing:-21.720360px;}
.ws1f{word-spacing:-21.641760px;}
.ws1d{word-spacing:-21.576360px;}
.ws43{word-spacing:-21.532704px;}
.ws35{word-spacing:-21.331560px;}
.ws42{word-spacing:-21.290904px;}
.ws22{word-spacing:-21.242160px;}
.ws4a{word-spacing:-21.226704px;}
.ws41{word-spacing:-21.216960px;}
.ws23{word-spacing:-21.132960px;}
.ws1e{word-spacing:-21.047760px;}
.ws3b{word-spacing:-20.438643px;}
.wse{word-spacing:-19.824240px;}
.ws6{word-spacing:-19.409184px;}
.ws9{word-spacing:-19.283640px;}
.ws5{word-spacing:-19.240584px;}
.wsb{word-spacing:-19.103040px;}
.ws7{word-spacing:-19.102464px;}
.wsd{word-spacing:-19.038240px;}
.wsf{word-spacing:-18.876240px;}
.wsa{word-spacing:-18.732240px;}
.wsc{word-spacing:-18.689640px;}
.ws11{word-spacing:-18.563640px;}
.ws62{word-spacing:-18.497760px;}
.ws8{word-spacing:-18.288240px;}
.ws10{word-spacing:-18.180240px;}
.ws12{word-spacing:-18.164784px;}
.ws13{word-spacing:-18.012240px;}
.ws5a{word-spacing:-16.743896px;}
.ws64{word-spacing:-16.498910px;}
.ws4{word-spacing:-16.304544px;}
.ws3{word-spacing:-16.272000px;}
.ws52{word-spacing:-15.913667px;}
.ws51{word-spacing:-15.898484px;}
.ws5c{word-spacing:-15.051407px;}
.ws5b{word-spacing:-15.037047px;}
.ws4d{word-spacing:-14.482080px;}
.ws3c{word-spacing:-13.896688px;}
.ws24{word-spacing:-4.320000px;}
.ws14{word-spacing:-3.084000px;}
.ws1a{word-spacing:-2.808000px;}
.ws32{word-spacing:-1.627920px;}
.ws17{word-spacing:-0.648000px;}
.ws33{word-spacing:-0.192240px;}
.ws2{word-spacing:0.000000px;}
.ws15{word-spacing:0.360000px;}
.ws3e{word-spacing:0.408816px;}
.ws3d{word-spacing:0.576000px;}
.ws31{word-spacing:0.834120px;}
.ws18{word-spacing:1.800000px;}
.ws30{word-spacing:2.204640px;}
.ws2f{word-spacing:2.275920px;}
.ws16{word-spacing:2.520000px;}
.ws2d{word-spacing:2.559960px;}
.ws2b{word-spacing:3.131280px;}
.ws2e{word-spacing:3.215520px;}
.ws2c{word-spacing:4.002120px;}
.ws58{word-spacing:11.214996px;}
.ws59{word-spacing:12.579797px;}
.ws28{word-spacing:13.667280px;}
.ws2a{word-spacing:13.761120px;}
.ws29{word-spacing:14.371920px;}
.ws27{word-spacing:21.230640px;}
.ws37{word-spacing:29.623011px;}
.ws26{word-spacing:43.310880px;}
.ws25{word-spacing:43.592400px;}
.ws3a{word-spacing:91.280078px;}
.ws39{word-spacing:150.142824px;}
.ws5e{word-spacing:184.691999px;}
.ws4f{word-spacing:235.416173px;}
.ws50{word-spacing:277.032101px;}
.ws57{word-spacing:730.200000px;}
.ws4c{word-spacing:756.084000px;}
.ws38{word-spacing:801.772769px;}
.ws1{word-spacing:1956.032040px;}
._38{margin-left:-35.203351px;}
._30{margin-left:-9.772560px;}
._7{margin-left:-8.213400px;}
._4{margin-left:-6.421104px;}
._33{margin-left:-4.993920px;}
._1{margin-left:-3.838464px;}
._0{margin-left:-1.918080px;}
._3{width:1.201104px;}
._6{width:2.458080px;}
._2{width:3.838464px;}
._1b{width:5.057640px;}
._11{width:6.143280px;}
._1c{width:7.385280px;}
._1e{width:8.387016px;}
._c{width:9.421440px;}
._10{width:10.463280px;}
._24{width:11.537640px;}
._f{width:13.555440px;}
._e{width:14.809680px;}
._2c{width:16.266240px;}
._b{width:17.316000px;}
._14{width:20.920416px;}
._5{width:22.494000px;}
._d{width:24.468000px;}
._2e{width:26.424576px;}
._2f{width:27.489552px;}
._15{width:29.424336px;}
._36{width:32.496720px;}
._35{width:33.804000px;}
._23{width:36.759504px;}
._28{width:37.764048px;}
._29{width:38.958312px;}
._2d{width:40.557072px;}
._13{width:41.609760px;}
._18{width:44.044800px;}
._19{width:45.266640px;}
._34{width:46.686240px;}
._32{width:49.719550px;}
._21{width:51.948096px;}
._22{width:53.283552px;}
._2b{width:55.573488px;}
._17{width:57.055344px;}
._2a{width:58.547568px;}
._27{width:63.056976px;}
._25{width:64.322640px;}
._1f{width:66.378960px;}
._20{width:67.538832px;}
._16{width:109.497600px;}
._26{width:123.191669px;}
._12{width:150.753360px;}
._1d{width:193.852320px;}
._39{width:217.013683px;}
._3c{width:455.131643px;}
._3d{width:467.107962px;}
._3b{width:470.222515px;}
._3e{width:563.908197px;}
._1a{width:878.422896px;}
._3a{width:923.812843px;}
._9{width:1974.750144px;}
._31{width:2412.826080px;}
._37{width:2424.346080px;}
._a{width:2455.306080px;}
._8{width:2456.698560px;}
.fc6{color:transparent;}
.fc4{color:rgb(255,192,0);}
.fc3{color:rgb(255,0,0);}
.fc5{color:rgb(0,176,80);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,32,96);}
.fs14{font-size:42.598196px;}
.fsc{font-size:48.240000px;}
.fs18{font-size:49.988088px;}
.fs23{font-size:54.090097px;}
.fs24{font-size:56.094774px;}
.fse{font-size:56.160000px;}
.fs13{font-size:56.834775px;}
.fs15{font-size:56.925208px;}
.fs16{font-size:57.074330px;}
.fs20{font-size:57.188792px;}
.fs1e{font-size:58.939387px;}
.fsa{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs21{font-size:60.229841px;}
.fs2c{font-size:61.180982px;}
.fs1d{font-size:63.284147px;}
.fs1c{font-size:64.080000px;}
.fs10{font-size:64.713543px;}
.fsf{font-size:69.483949px;}
.fs3{font-size:72.000000px;}
.fs7{font-size:72.144000px;}
.fs27{font-size:73.004027px;}
.fs19{font-size:73.490904px;}
.fs17{font-size:73.520300px;}
.fs2d{font-size:79.510869px;}
.fs22{font-size:79.553357px;}
.fs1f{font-size:84.110782px;}
.fs6{font-size:84.240000px;}
.fs8{font-size:84.384000px;}
.fs12{font-size:89.469964px;}
.fs5{font-size:90.000000px;}
.fs4{font-size:90.144000px;}
.fs11{font-size:92.617967px;}
.fsd{font-size:95.760000px;}
.fs1a{font-size:95.904000px;}
.fs2{font-size:108.000000px;}
.fs25{font-size:108.144000px;}
.fs2b{font-size:109.509017px;}
.fs2a{font-size:134.190962px;}
.fs29{font-size:170.689999px;}
.fs2e{font-size:185.763488px;}
.fsb{font-size:216.000000px;}
.fs26{font-size:216.144000px;}
.fs28{font-size:219.166864px;}
.fs1b{font-size:234.000000px;}
.fs0{font-size:239.760000px;}
.fs1{font-size:239.904000px;}
.fs2f{font-size:265.714893px;}
.y100{bottom:-40.752303px;}
.y102{bottom:-27.599155px;}
.yff{bottom:-18.584392px;}
.y0{bottom:0.000000px;}
.yf9{bottom:1.034517px;}
.y70{bottom:5.321112px;}
.yfe{bottom:5.357132px;}
.y66{bottom:7.545184px;}
.yfc{bottom:11.638382px;}
.y5f{bottom:13.447686px;}
.y93{bottom:18.261570px;}
.yba{bottom:19.190382px;}
.y5d{bottom:23.177466px;}
.y60{bottom:25.008822px;}
.yfb{bottom:30.258487px;}
.yd8{bottom:30.492000px;}
.y68{bottom:31.839272px;}
.y94{bottom:33.811059px;}
.ybb{bottom:33.989401px;}
.yd{bottom:34.056000px;}
.ya1{bottom:44.471562px;}
.y61{bottom:44.572457px;}
.y69{bottom:45.862954px;}
.y118{bottom:46.330701px;}
.y117{bottom:46.330718px;}
.yc1{bottom:48.984404px;}
.y55{bottom:55.462185px;}
.y95{bottom:57.848671px;}
.y92{bottom:59.390492px;}
.yf7{bottom:63.693231px;}
.y62{bottom:64.136599px;}
.ybc{bottom:75.544675px;}
.y116{bottom:79.101555px;}
.y115{bottom:80.689581px;}
.y96{bottom:81.818396px;}
.y2e{bottom:81.900000px;}
.y63{bottom:83.700234px;}
.y6a{bottom:85.176812px;}
.y81{bottom:87.552000px;}
.yf6{bottom:97.351105px;}
.y56{bottom:98.851763px;}
.yb9{bottom:98.880650px;}
.y2d{bottom:99.900000px;}
.y64{bottom:103.264376px;}
.y2a{bottom:105.624000px;}
.y97{bottom:105.856008px;}
.yc{bottom:106.236000px;}
.y5b{bottom:108.839801px;}
.y114{bottom:113.015418px;}
.y6f{bottom:113.100703px;}
.y80{bottom:116.352000px;}
.ybd{bottom:117.096718px;}
.y2c{bottom:117.900000px;}
.yc9{bottom:119.988000px;}
.y65{bottom:122.828011px;}
.y5c{bottom:124.421886px;}
.y6b{bottom:124.552916px;}
.y51{bottom:124.632000px;}
.yb{bottom:125.136000px;}
.ya3{bottom:129.312000px;}
.y98{bottom:129.825733px;}
.y29{bottom:130.824000px;}
.yf5{bottom:130.898846px;}
.yd7{bottom:134.784000px;}
.y113{bottom:135.369675px;}
.y2b{bottom:135.936000px;}
.y54{bottom:140.705407px;}
.y7f{bottom:145.152000px;}
.y57{bottom:151.559783px;}
.y99{bottom:153.863345px;}
.y28{bottom:156.060000px;}
.ybe{bottom:158.651992px;}
.ya{bottom:159.150000px;}
.yd6{bottom:160.710000px;}
.y6c{bottom:163.869835px;}
.yf4{bottom:164.114696px;}
.y112{bottom:167.442511px;}
.y7e{bottom:173.955000px;}
.y9a{bottom:177.900957px;}
.y27{bottom:181.260000px;}
.yd5{bottom:186.630000px;}
.y44{bottom:187.995000px;}
.y9{bottom:192.990000px;}
.y4e{bottom:194.760000px;}
.yf3{bottom:197.809778px;}
.ybf{bottom:200.205112px;}
.y9b{bottom:201.870682px;}
.y7d{bottom:202.785000px;}
.y6d{bottom:203.183693px;}
.y58{bottom:204.195750px;}
.yaf{bottom:205.590000px;}
.y26{bottom:206.460000px;}
.yb7{bottom:208.230000px;}
.y8{bottom:211.890000px;}
.yd4{bottom:212.550000px;}
.yc8{bottom:212.970000px;}
.y5e{bottom:213.650539px;}
.y43{bottom:216.825000px;}
.yc6{bottom:221.250000px;}
.y4d{bottom:223.560000px;}
.yc3{bottom:223.987128px;}
.y9c{bottom:225.908294px;}
.yf2{bottom:231.028605px;}
.y7c{bottom:231.585000px;}
.y25{bottom:231.660000px;}
.yae{bottom:234.390000px;}
.y11{bottom:234.510000px;}
.yb6{bottom:237.030000px;}
.ya0{bottom:237.722874px;}
.y39{bottom:239.505000px;}
.yc2{bottom:241.178886px;}
.yc0{bottom:241.760386px;}
.y6e{bottom:242.559797px;}
.y42{bottom:245.625000px;}
.y7{bottom:245.730000px;}
.y9d{bottom:249.878019px;}
.y4c{bottom:252.360000px;}
.y9f{bottom:255.784178px;}
.y10{bottom:256.110000px;}
.y59{bottom:256.902528px;}
.y7b{bottom:260.385000px;}
.y38{bottom:261.105000px;}
.yad{bottom:263.190000px;}
.yf1{bottom:264.574857px;}
.y6{bottom:264.675000px;}
.yb5{bottom:265.830000px;}
.y11a{bottom:273.450000px;}
.y9e{bottom:273.915631px;}
.y41{bottom:274.425000px;}
.yf{bottom:277.710000px;}
.y4b{bottom:281.190000px;}
.y24{bottom:282.060000px;}
.y4f{bottom:286.410000px;}
.y50{bottom:287.850000px;}
.ydb{bottom:288.795000px;}
.y7a{bottom:289.185000px;}
.yac{bottom:292.035000px;}
.yd3{bottom:294.480000px;}
.yb4{bottom:294.630000px;}
.ya2{bottom:297.795000px;}
.yf0{bottom:297.897864px;}
.ye{bottom:299.310000px;}
.y40{bottom:303.225000px;}
.y23{bottom:307.260000px;}
.ya4{bottom:308.130000px;}
.y5a{bottom:309.613033px;}
.yd2{bottom:320.400000px;}
.yda{bottom:321.195000px;}
.yb3{bottom:323.430000px;}
.y67{bottom:324.711215px;}
.yef{bottom:331.444117px;}
.y3f{bottom:332.025000px;}
.y22{bottom:332.490000px;}
.yd1{bottom:346.320000px;}
.y79{bottom:346.785000px;}
.yd9{bottom:353.595000px;}
.y21{bottom:357.690000px;}
.yee{bottom:364.662943px;}
.y8f{bottom:366.510000px;}
.yc5{bottom:370.440000px;}
.y8a{bottom:370.905000px;}
.yc7{bottom:371.880000px;}
.yd0{bottom:372.240000px;}
.y5{bottom:372.315000px;}
.y78{bottom:375.630000px;}
.y89{bottom:376.410000px;}
.yab{bottom:378.435000px;}
.y20{bottom:382.890000px;}
.y4{bottom:394.995000px;}
.ydc{bottom:397.590000px;}
.ycf{bottom:398.160000px;}
.yed{bottom:398.313377px;}
.yfa{bottom:401.910639px;}
.yf8{bottom:401.910675px;}
.y101{bottom:402.132432px;}
.yfd{bottom:402.612706px;}
.y8e{bottom:403.815000px;}
.y77{bottom:404.430000px;}
.yaa{bottom:407.235000px;}
.y1f{bottom:408.090000px;}
.y4a{bottom:410.790000px;}
.y16{bottom:416.625000px;}
.yce{bottom:424.110000px;}
.y86{bottom:425.985000px;}
.yec{bottom:431.904278px;}
.y119{bottom:433.155000px;}
.y76{bottom:433.230000px;}
.y1e{bottom:433.290000px;}
.y111{bottom:433.865711px;}
.ya9{bottom:436.035000px;}
.yb8{bottom:437.325000px;}
.y8b{bottom:437.550000px;}
.y15{bottom:438.225000px;}
.y49{bottom:439.635000px;}
.y8d{bottom:445.350000px;}
.y85{bottom:447.585000px;}
.ye2{bottom:449.165502px;}
.ycd{bottom:450.030000px;}
.y33{bottom:455.370000px;}
.y32{bottom:456.990000px;}
.y110{bottom:458.169629px;}
.y1d{bottom:458.490000px;}
.y14{bottom:459.825000px;}
.y3{bottom:460.365000px;}
.y75{bottom:462.030000px;}
.ya8{bottom:464.865000px;}
.yeb{bottom:465.108221px;}
.y48{bottom:468.435000px;}
.ycc{bottom:475.950000px;}
.y3e{bottom:476.070000px;}
.y31{bottom:478.590000px;}
.y13{bottom:481.425000px;}
.y8c{bottom:482.655000px;}
.y74{bottom:490.830000px;}
.y10f{bottom:492.534445px;}
.ya7{bottom:493.665000px;}
.y47{bottom:497.235000px;}
.y35{bottom:497.265000px;}
.yea{bottom:498.773538px;}
.y12{bottom:503.025000px;}
.yb2{bottom:503.310000px;}
.y3d{bottom:504.870000px;}
.y1c{bottom:508.935000px;}
.y73{bottom:519.660000px;}
.y90{bottom:521.895000px;}
.ya6{bottom:522.465000px;}
.y2{bottom:525.210000px;}
.y46{bottom:526.035000px;}
.y10e{bottom:526.735549px;}
.y84{bottom:529.845000px;}
.ye9{bottom:531.992364px;}
.yb1{bottom:532.110000px;}
.y53{bottom:532.260000px;}
.y3c{bottom:533.700000px;}
.y1b{bottom:534.135000px;}
.ycb{bottom:538.950000px;}
.y36{bottom:542.310000px;}
.ye7{bottom:544.666715px;}
.y72{bottom:548.460000px;}
.ya5{bottom:551.265000px;}
.y45{bottom:554.835000px;}
.y83{bottom:558.690000px;}
.y1a{bottom:559.335000px;}
.y91{bottom:560.490000px;}
.yb0{bottom:560.910000px;}
.y52{bottom:561.060000px;}
.y10d{bottom:561.100365px;}
.y3b{bottom:562.215000px;}
.ye8{bottom:565.538616px;}
.y34{bottom:567.105000px;}
.y30{bottom:571.575000px;}
.ye6{bottom:572.081177px;}
.y88{bottom:574.560000px;}
.y3a{bottom:583.815000px;}
.y19{bottom:584.535000px;}
.y1{bottom:590.010000px;}
.y37{bottom:590.040000px;}
.y10c{bottom:595.465182px;}
.yca{bottom:597.315000px;}
.y18{bottom:609.735000px;}
.y87{bottom:610.485000px;}
.y82{bottom:615.705000px;}
.y10b{bottom:617.697493px;}
.y10a{bottom:617.697531px;}
.yc4{bottom:618.375000px;}
.y2f{bottom:619.305000px;}
.y71{bottom:620.175000px;}
.y17{bottom:634.965000px;}
.ye5{bottom:667.129884px;}
.ye4{bottom:722.256468px;}
.ye3{bottom:722.964881px;}
.y109{bottom:752.078852px;}
.y108{bottom:786.399020px;}
.y107{bottom:820.763836px;}
.y106{bottom:855.009589px;}
.ye1{bottom:878.944553px;}
.y105{bottom:889.374406px;}
.y104{bottom:923.724339px;}
.ye0{bottom:945.709632px;}
.y103{bottom:952.701478px;}
.ydf{bottom:1002.785886px;}
.yde{bottom:1025.035951px;}
.ydd{bottom:1047.315783px;}
.h34{height:0.922745px;}
.h1c{height:31.137451px;}
.h2f{height:41.002869px;}
.h1b{height:41.543779px;}
.h1d{height:41.609881px;}
.h1f{height:41.718883px;}
.h29{height:43.082160px;}
.h2d{height:44.025426px;}
.h28{height:46.257993px;}
.h3c{height:47.475244px;}
.h3e{height:47.955816px;}
.h38{height:48.177573px;}
.h3a{height:48.177609px;}
.h16{height:50.789781px;}
.hb{height:52.260820px;}
.ha{height:52.386750px;}
.h31{height:52.498248px;}
.h21{height:53.718693px;}
.h20{height:53.740180px;}
.h11{height:54.808594px;}
.h39{height:60.852373px;}
.h3b{height:62.644785px;}
.h10{height:62.964844px;}
.h19{height:65.398699px;}
.h18{height:67.699755px;}
.h12{height:68.691797px;}
.h25{height:68.888906px;}
.h3d{height:69.510670px;}
.h7{height:71.613281px;}
.h8{height:71.756508px;}
.h2e{height:72.158596px;}
.h32{height:72.611915px;}
.he{height:73.722656px;}
.h42{height:75.706149px;}
.h2a{height:76.278378px;}
.h5{height:78.706055px;}
.h4{height:78.831984px;}
.h3f{height:79.083808px;}
.h17{height:81.291964px;}
.h6{height:83.787539px;}
.h9{height:83.930766px;}
.h13{height:95.245664px;}
.h22{height:95.388891px;}
.h14{height:98.051133px;}
.hd{height:107.419922px;}
.h37{height:108.920834px;}
.h3{height:110.583984px;}
.h26{height:113.359922px;}
.h2b{height:120.799922px;}
.h36{height:133.470210px;}
.hf{height:153.642656px;}
.h23{height:160.122656px;}
.h1a{height:164.024295px;}
.h35{height:169.773207px;}
.h40{height:176.874415px;}
.h43{height:182.512617px;}
.hc{height:205.664062px;}
.h30{height:205.801172px;}
.h33{height:217.989698px;}
.h24{height:222.802734px;}
.h1{height:245.496445px;}
.h2{height:245.643891px;}
.h41{height:264.287714px;}
.h2c{height:291.956350px;}
.h1e{height:301.463785px;}
.h27{height:302.973255px;}
.h15{height:369.926373px;}
.h0{height:810.000000px;}
.w8{width:0.894604px;}
.wb{width:72.693229px;}
.w9{width:79.998805px;}
.w3{width:189.085656px;}
.w4{width:394.020666px;}
.w5{width:399.415309px;}
.w6{width:415.682349px;}
.w2{width:497.913524px;}
.wa{width:547.889754px;}
.w7{width:626.994987px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x57{left:-6.078008px;}
.x5f{left:-3.243129px;}
.x0{left:0.000000px;}
.x59{left:1.676555px;}
.x5c{left:8.125599px;}
.x8{left:12.563979px;}
.x3{left:13.643979px;}
.x35{left:16.487979px;}
.x36{left:18.395979px;}
.xb{left:19.763979px;}
.xd{left:22.319979px;}
.x6{left:25.343979px;}
.x21{left:28.151979px;}
.x32{left:29.405082px;}
.x12{left:30.743979px;}
.x52{left:31.787979px;}
.x1{left:33.803979px;}
.x2d{left:36.111714px;}
.x4{left:37.943979px;}
.x31{left:39.327549px;}
.x43{left:42.822693px;}
.x47{left:44.747979px;}
.x29{left:46.302554px;}
.x5{left:50.003979px;}
.x42{left:51.932196px;}
.x2{left:53.243979px;}
.x30{left:55.255613px;}
.x13{left:64.583979px;}
.x5e{left:66.467871px;}
.x2f{left:71.488880px;}
.x5a{left:73.214229px;}
.x2a{left:75.707022px;}
.x4b{left:80.340971px;}
.x28{left:83.654524px;}
.x4a{left:87.232579px;}
.xa{left:92.843979px;}
.x9{left:102.563979px;}
.x27{left:109.274284px;}
.x15{left:134.063979px;}
.x33{left:170.606540px;}
.xc{left:174.059979px;}
.x58{left:253.857210px;}
.x2b{left:276.278548px;}
.x44{left:306.903925px;}
.x62{left:311.867835px;}
.x4c{left:331.369233px;}
.x7{left:374.579979px;}
.x63{left:478.884379px;}
.x64{left:491.843900px;}
.x1a{left:540.929979px;}
.x65{left:563.383819px;}
.x60{left:565.182177px;}
.x2e{left:567.780000px;}
.x49{left:590.100002px;}
.x61{left:592.125021px;}
.x3a{left:610.379979px;}
.x22{left:616.394979px;}
.x34{left:636.299979px;}
.x3c{left:642.809979px;}
.x66{left:646.814979px;}
.x3b{left:648.179979px;}
.x41{left:678.390005px;}
.x14{left:721.109979px;}
.x37{left:733.829979px;}
.x45{left:773.744979px;}
.x38{left:774.869979px;}
.xe{left:800.384979px;}
.x56{left:806.505000px;}
.x5d{left:808.294316px;}
.xf{left:834.224979px;}
.x10{left:836.249979px;}
.x53{left:838.259979px;}
.x23{left:843.629979px;}
.x1c{left:850.319979px;}
.x1b{left:852.509979px;}
.x39{left:863.789979px;}
.x3d{left:867.884979px;}
.x11{left:870.089979px;}
.x46{left:876.164979px;}
.x5b{left:885.610233px;}
.x26{left:901.020050px;}
.x54{left:912.959979px;}
.x16{left:936.359979px;}
.x17{left:950.039979px;}
.x55{left:976.889979px;}
.x19{left:999.644979px;}
.x2c{left:1016.115000px;}
.x51{left:1032.329979px;}
.x48{left:1045.079979px;}
.x1e{left:1073.879979px;}
.x1d{left:1081.979979px;}
.x4d{left:1182.134979px;}
.x40{left:1184.219979px;}
.x4e{left:1192.289979px;}
.x20{left:1204.814979px;}
.x1f{left:1209.674979px;}
.x25{left:1231.844979px;}
.x24{left:1235.444979px;}
.x3e{left:1241.849979px;}
.x18{left:1266.299979px;}
.x3f{left:1270.649979px;}
.x4f{left:1345.784979px;}
.x50{left:1355.114979px;}
@media print{
.vb{vertical-align:-44.672000pt;}
.v4{vertical-align:-17.920000pt;}
.v3{vertical-align:-15.360000pt;}
.vd{vertical-align:-13.440021pt;}
.v6{vertical-align:-10.880000pt;}
.vf{vertical-align:-5.646274pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:3.200000pt;}
.v9{vertical-align:5.280000pt;}
.vc{vertical-align:11.893333pt;}
.v8{vertical-align:14.453333pt;}
.va{vertical-align:25.599994pt;}
.v1{vertical-align:28.800000pt;}
.v5{vertical-align:30.212573pt;}
.v2{vertical-align:71.040000pt;}
.v7{vertical-align:76.800000pt;}
.ls52{letter-spacing:-2.794667pt;}
.ls15{letter-spacing:-0.912000pt;}
.ls18{letter-spacing:-0.896000pt;}
.ls14{letter-spacing:-0.805333pt;}
.ls12{letter-spacing:-0.762667pt;}
.lsb{letter-spacing:-0.666667pt;}
.ls1e{letter-spacing:-0.528000pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls21{letter-spacing:-0.452267pt;}
.ls13{letter-spacing:-0.421867pt;}
.ls3d{letter-spacing:-0.397867pt;}
.ls34{letter-spacing:-0.377600pt;}
.ls20{letter-spacing:-0.355200pt;}
.ls35{letter-spacing:-0.340800pt;}
.lsf{letter-spacing:-0.309867pt;}
.ls27{letter-spacing:-0.275733pt;}
.lsd{letter-spacing:-0.272000pt;}
.ls53{letter-spacing:-0.256000pt;}
.ls45{letter-spacing:-0.236800pt;}
.ls3{letter-spacing:-0.204267pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls4c{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.144000pt;}
.ls36{letter-spacing:-0.125867pt;}
.ls44{letter-spacing:-0.078933pt;}
.ls1d{letter-spacing:-0.058133pt;}
.ls2a{letter-spacing:-0.054441pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4d{letter-spacing:0.012764pt;}
.ls47{letter-spacing:0.013496pt;}
.ls1c{letter-spacing:0.019840pt;}
.lsa{letter-spacing:0.028160pt;}
.ls2b{letter-spacing:0.042723pt;}
.ls3c{letter-spacing:0.044800pt;}
.ls4e{letter-spacing:0.045559pt;}
.ls48{letter-spacing:0.048169pt;}
.ls29{letter-spacing:0.051679pt;}
.lse{letter-spacing:0.057600pt;}
.ls26{letter-spacing:0.069867pt;}
.ls42{letter-spacing:0.084267pt;}
.ls23{letter-spacing:0.089600pt;}
.ls2d{letter-spacing:0.102314pt;}
.ls4b{letter-spacing:0.107971pt;}
.ls1f{letter-spacing:0.112000pt;}
.ls46{letter-spacing:0.113447pt;}
.ls28{letter-spacing:0.124561pt;}
.ls2f{letter-spacing:0.146667pt;}
.ls8{letter-spacing:0.150933pt;}
.ls33{letter-spacing:0.153067pt;}
.ls37{letter-spacing:0.187733pt;}
.ls0{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.218133pt;}
.ls3b{letter-spacing:0.233067pt;}
.ls17{letter-spacing:0.256000pt;}
.ls22{letter-spacing:0.262400pt;}
.ls1a{letter-spacing:0.274667pt;}
.ls50{letter-spacing:0.277333pt;}
.ls1b{letter-spacing:0.284800pt;}
.ls9{letter-spacing:0.300800pt;}
.ls49{letter-spacing:0.309867pt;}
.ls3f{letter-spacing:0.320000pt;}
.ls3a{letter-spacing:0.364267pt;}
.ls43{letter-spacing:0.448000pt;}
.ls25{letter-spacing:0.499733pt;}
.ls38{letter-spacing:0.581333pt;}
.ls10{letter-spacing:0.698667pt;}
.ls51{letter-spacing:0.752000pt;}
.ls39{letter-spacing:0.826667pt;}
.ls24{letter-spacing:1.882880pt;}
.ls4f{letter-spacing:1.974891pt;}
.ls32{letter-spacing:3.802880pt;}
.ls31{letter-spacing:13.402880pt;}
.ls30{letter-spacing:15.322880pt;}
.ls7{letter-spacing:16.357120pt;}
.ls1{letter-spacing:23.232000pt;}
.ls4a{letter-spacing:90.528000pt;}
.ls2e{letter-spacing:90.656000pt;}
.ls5{letter-spacing:94.067200pt;}
.ls6{letter-spacing:94.112000pt;}
.ls4{letter-spacing:97.920000pt;}
.ls2c{letter-spacing:137.919365pt;}
.ls3e{letter-spacing:252.352000pt;}
.ls41{letter-spacing:324.218240pt;}
.ls40{letter-spacing:819.328000pt;}
.ws4e{word-spacing:-85.120000pt;}
.ws36{word-spacing:-74.880000pt;}
.ws65{word-spacing:-48.165120pt;}
.ws1b{word-spacing:-43.392000pt;}
.ws5f{word-spacing:-21.724928pt;}
.ws0{word-spacing:-21.696000pt;}
.ws63{word-spacing:-21.440000pt;}
.ws19{word-spacing:-21.216000pt;}
.ws53{word-spacing:-20.832878pt;}
.ws46{word-spacing:-20.063787pt;}
.ws61{word-spacing:-19.989120pt;}
.ws45{word-spacing:-19.818453pt;}
.ws5d{word-spacing:-19.704077pt;}
.ws47{word-spacing:-19.601387pt;}
.ws54{word-spacing:-19.546987pt;}
.ws60{word-spacing:-19.543381pt;}
.ws21{word-spacing:-19.521920pt;}
.ws1c{word-spacing:-19.511787pt;}
.ws4b{word-spacing:-19.499520pt;}
.ws48{word-spacing:-19.499115pt;}
.ws44{word-spacing:-19.424853pt;}
.ws40{word-spacing:-19.390187pt;}
.ws3f{word-spacing:-19.383787pt;}
.ws55{word-spacing:-19.350315pt;}
.ws20{word-spacing:-19.349120pt;}
.ws34{word-spacing:-19.326720pt;}
.ws49{word-spacing:-19.310848pt;}
.ws56{word-spacing:-19.306987pt;}
.ws1f{word-spacing:-19.237120pt;}
.ws1d{word-spacing:-19.178987pt;}
.ws43{word-spacing:-19.140181pt;}
.ws35{word-spacing:-18.961387pt;}
.ws42{word-spacing:-18.925248pt;}
.ws22{word-spacing:-18.881920pt;}
.ws4a{word-spacing:-18.868181pt;}
.ws41{word-spacing:-18.859520pt;}
.ws23{word-spacing:-18.784853pt;}
.ws1e{word-spacing:-18.709120pt;}
.ws3b{word-spacing:-18.167683pt;}
.wse{word-spacing:-17.621547pt;}
.ws6{word-spacing:-17.252608pt;}
.ws9{word-spacing:-17.141013pt;}
.ws5{word-spacing:-17.102741pt;}
.wsb{word-spacing:-16.980480pt;}
.ws7{word-spacing:-16.979968pt;}
.wsd{word-spacing:-16.922880pt;}
.wsf{word-spacing:-16.778880pt;}
.wsa{word-spacing:-16.650880pt;}
.wsc{word-spacing:-16.613013pt;}
.ws11{word-spacing:-16.501013pt;}
.ws62{word-spacing:-16.442453pt;}
.ws8{word-spacing:-16.256213pt;}
.ws10{word-spacing:-16.160213pt;}
.ws12{word-spacing:-16.146475pt;}
.ws13{word-spacing:-16.010880pt;}
.ws5a{word-spacing:-14.883463pt;}
.ws64{word-spacing:-14.665698pt;}
.ws4{word-spacing:-14.492928pt;}
.ws3{word-spacing:-14.464000pt;}
.ws52{word-spacing:-14.145481pt;}
.ws51{word-spacing:-14.131986pt;}
.ws5c{word-spacing:-13.379028pt;}
.ws5b{word-spacing:-13.366264pt;}
.ws4d{word-spacing:-12.872960pt;}
.ws3c{word-spacing:-12.352612pt;}
.ws24{word-spacing:-3.840000pt;}
.ws14{word-spacing:-2.741333pt;}
.ws1a{word-spacing:-2.496000pt;}
.ws32{word-spacing:-1.447040pt;}
.ws17{word-spacing:-0.576000pt;}
.ws33{word-spacing:-0.170880pt;}
.ws2{word-spacing:0.000000pt;}
.ws15{word-spacing:0.320000pt;}
.ws3e{word-spacing:0.363392pt;}
.ws3d{word-spacing:0.512000pt;}
.ws31{word-spacing:0.741440pt;}
.ws18{word-spacing:1.600000pt;}
.ws30{word-spacing:1.959680pt;}
.ws2f{word-spacing:2.023040pt;}
.ws16{word-spacing:2.240000pt;}
.ws2d{word-spacing:2.275520pt;}
.ws2b{word-spacing:2.783360pt;}
.ws2e{word-spacing:2.858240pt;}
.ws2c{word-spacing:3.557440pt;}
.ws58{word-spacing:9.968886pt;}
.ws59{word-spacing:11.182042pt;}
.ws28{word-spacing:12.148693pt;}
.ws2a{word-spacing:12.232107pt;}
.ws29{word-spacing:12.775040pt;}
.ws27{word-spacing:18.871680pt;}
.ws37{word-spacing:26.331565pt;}
.ws26{word-spacing:38.498560pt;}
.ws25{word-spacing:38.748800pt;}
.ws3a{word-spacing:81.137847pt;}
.ws39{word-spacing:133.460288pt;}
.ws5e{word-spacing:164.170666pt;}
.ws4f{word-spacing:209.258820pt;}
.ws50{word-spacing:246.250756pt;}
.ws57{word-spacing:649.066667pt;}
.ws4c{word-spacing:672.074667pt;}
.ws38{word-spacing:712.686906pt;}
.ws1{word-spacing:1738.695147pt;}
._38{margin-left:-31.291867pt;}
._30{margin-left:-8.686720pt;}
._7{margin-left:-7.300800pt;}
._4{margin-left:-5.707648pt;}
._33{margin-left:-4.439040pt;}
._1{margin-left:-3.411968pt;}
._0{margin-left:-1.704960pt;}
._3{width:1.067648pt;}
._6{width:2.184960pt;}
._2{width:3.411968pt;}
._1b{width:4.495680pt;}
._11{width:5.460693pt;}
._1c{width:6.564693pt;}
._1e{width:7.455125pt;}
._c{width:8.374613pt;}
._10{width:9.300693pt;}
._24{width:10.255680pt;}
._f{width:12.049280pt;}
._e{width:13.164160pt;}
._2c{width:14.458880pt;}
._b{width:15.392000pt;}
._14{width:18.595925pt;}
._5{width:19.994667pt;}
._d{width:21.749333pt;}
._2e{width:23.488512pt;}
._2f{width:24.435157pt;}
._15{width:26.154965pt;}
._36{width:28.885973pt;}
._35{width:30.048000pt;}
._23{width:32.675115pt;}
._28{width:33.568043pt;}
._29{width:34.629611pt;}
._2d{width:36.050731pt;}
._13{width:36.986453pt;}
._18{width:39.150933pt;}
._19{width:40.237013pt;}
._34{width:41.498880pt;}
._32{width:44.195156pt;}
._21{width:46.176085pt;}
._22{width:47.363157pt;}
._2b{width:49.398656pt;}
._17{width:50.715861pt;}
._2a{width:52.042283pt;}
._27{width:56.050645pt;}
._25{width:57.175680pt;}
._1f{width:59.003520pt;}
._20{width:60.034517pt;}
._16{width:97.331200pt;}
._26{width:109.503706pt;}
._12{width:134.002987pt;}
._1d{width:172.313173pt;}
._39{width:192.901051pt;}
._3c{width:404.561460pt;}
._3d{width:415.207078pt;}
._3b{width:417.975569pt;}
._3e{width:501.251731pt;}
._1a{width:780.820352pt;}
._3a{width:821.166972pt;}
._9{width:1755.333461pt;}
._31{width:2144.734293pt;}
._37{width:2154.974293pt;}
._a{width:2182.494293pt;}
._8{width:2183.732053pt;}
.fs14{font-size:37.865063pt;}
.fsc{font-size:42.880000pt;}
.fs18{font-size:44.433856pt;}
.fs23{font-size:48.080086pt;}
.fs24{font-size:49.862021pt;}
.fse{font-size:49.920000pt;}
.fs13{font-size:50.519800pt;}
.fs15{font-size:50.600185pt;}
.fs16{font-size:50.732738pt;}
.fs20{font-size:50.834482pt;}
.fs1e{font-size:52.390566pt;}
.fsa{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs21{font-size:53.537637pt;}
.fs2c{font-size:54.383095pt;}
.fs1d{font-size:56.252575pt;}
.fs1c{font-size:56.960000pt;}
.fs10{font-size:57.523149pt;}
.fsf{font-size:61.763510pt;}
.fs3{font-size:64.000000pt;}
.fs7{font-size:64.128000pt;}
.fs27{font-size:64.892468pt;}
.fs19{font-size:65.325248pt;}
.fs17{font-size:65.351378pt;}
.fs2d{font-size:70.676328pt;}
.fs22{font-size:70.714095pt;}
.fs1f{font-size:74.765140pt;}
.fs6{font-size:74.880000pt;}
.fs8{font-size:75.008000pt;}
.fs12{font-size:79.528857pt;}
.fs5{font-size:80.000000pt;}
.fs4{font-size:80.128000pt;}
.fs11{font-size:82.327082pt;}
.fsd{font-size:85.120000pt;}
.fs1a{font-size:85.248000pt;}
.fs2{font-size:96.000000pt;}
.fs25{font-size:96.128000pt;}
.fs2b{font-size:97.341348pt;}
.fs2a{font-size:119.280855pt;}
.fs29{font-size:151.724444pt;}
.fs2e{font-size:165.123101pt;}
.fsb{font-size:192.000000pt;}
.fs26{font-size:192.128000pt;}
.fs28{font-size:194.814990pt;}
.fs1b{font-size:208.000000pt;}
.fs0{font-size:213.120000pt;}
.fs1{font-size:213.248000pt;}
.fs2f{font-size:236.191016pt;}
.y100{bottom:-36.224270pt;}
.y102{bottom:-24.532582pt;}
.yff{bottom:-16.519460pt;}
.y0{bottom:0.000000pt;}
.yf9{bottom:0.919571pt;}
.y70{bottom:4.729877pt;}
.yfe{bottom:4.761895pt;}
.y66{bottom:6.706830pt;}
.yfc{bottom:10.345228pt;}
.y5f{bottom:11.953498pt;}
.y93{bottom:16.232507pt;}
.yba{bottom:17.058117pt;}
.y5d{bottom:20.602192pt;}
.y60{bottom:22.230064pt;}
.yfb{bottom:26.896433pt;}
.yd8{bottom:27.104000pt;}
.y68{bottom:28.301575pt;}
.y94{bottom:30.054275pt;}
.ybb{bottom:30.212801pt;}
.yd{bottom:30.272000pt;}
.ya1{bottom:39.530277pt;}
.y61{bottom:39.619962pt;}
.y69{bottom:40.767070pt;}
.y118{bottom:41.182846pt;}
.y117{bottom:41.182860pt;}
.yc1{bottom:43.541693pt;}
.y55{bottom:49.299720pt;}
.y95{bottom:51.421041pt;}
.y92{bottom:52.791548pt;}
.yf7{bottom:56.616205pt;}
.y62{bottom:57.010310pt;}
.ybc{bottom:67.150822pt;}
.y116{bottom:70.312493pt;}
.y115{bottom:71.724072pt;}
.y96{bottom:72.727464pt;}
.y2e{bottom:72.800000pt;}
.y63{bottom:74.400208pt;}
.y6a{bottom:75.712722pt;}
.y81{bottom:77.824000pt;}
.yf6{bottom:86.534316pt;}
.y56{bottom:87.868234pt;}
.yb9{bottom:87.893911pt;}
.y2d{bottom:88.800000pt;}
.y64{bottom:91.790556pt;}
.y2a{bottom:93.888000pt;}
.y97{bottom:94.094230pt;}
.yc{bottom:94.432000pt;}
.y5b{bottom:96.746490pt;}
.y114{bottom:100.458149pt;}
.y6f{bottom:100.533959pt;}
.y80{bottom:103.424000pt;}
.ybd{bottom:104.085971pt;}
.y2c{bottom:104.800000pt;}
.yc9{bottom:106.656000pt;}
.y65{bottom:109.180454pt;}
.y5c{bottom:110.597232pt;}
.y6b{bottom:110.713703pt;}
.y51{bottom:110.784000pt;}
.yb{bottom:111.232000pt;}
.ya3{bottom:114.944000pt;}
.y98{bottom:115.400652pt;}
.y29{bottom:116.288000pt;}
.yf5{bottom:116.354530pt;}
.yd7{bottom:119.808000pt;}
.y113{bottom:120.328600pt;}
.y2b{bottom:120.832000pt;}
.y54{bottom:125.071473pt;}
.y7f{bottom:129.024000pt;}
.y57{bottom:134.719807pt;}
.y99{bottom:136.767418pt;}
.y28{bottom:138.720000pt;}
.ybe{bottom:141.023993pt;}
.ya{bottom:141.466667pt;}
.yd6{bottom:142.853333pt;}
.y6c{bottom:145.662076pt;}
.yf4{bottom:145.879730pt;}
.y112{bottom:148.837788pt;}
.y7e{bottom:154.626667pt;}
.y9a{bottom:158.134184pt;}
.y27{bottom:161.120000pt;}
.yd5{bottom:165.893333pt;}
.y44{bottom:167.106667pt;}
.y9{bottom:171.546667pt;}
.y4e{bottom:173.120000pt;}
.yf3{bottom:175.830914pt;}
.ybf{bottom:177.960099pt;}
.y9b{bottom:179.440607pt;}
.y7d{bottom:180.253333pt;}
.y6d{bottom:180.607727pt;}
.y58{bottom:181.507334pt;}
.yaf{bottom:182.746667pt;}
.y26{bottom:183.520000pt;}
.yb7{bottom:185.093333pt;}
.y8{bottom:188.346667pt;}
.yd4{bottom:188.933333pt;}
.yc8{bottom:189.306667pt;}
.y5e{bottom:189.911590pt;}
.y43{bottom:192.733333pt;}
.yc6{bottom:196.666667pt;}
.y4d{bottom:198.720000pt;}
.yc3{bottom:199.099669pt;}
.y9c{bottom:200.807373pt;}
.yf2{bottom:205.358760pt;}
.y7c{bottom:205.853333pt;}
.y25{bottom:205.920000pt;}
.yae{bottom:208.346667pt;}
.y11{bottom:208.453333pt;}
.yb6{bottom:210.693333pt;}
.ya0{bottom:211.309221pt;}
.y39{bottom:212.893333pt;}
.yc2{bottom:214.381232pt;}
.yc0{bottom:214.898121pt;}
.y6e{bottom:215.608709pt;}
.y42{bottom:218.333333pt;}
.y7{bottom:218.426667pt;}
.y9d{bottom:222.113795pt;}
.y4c{bottom:224.320000pt;}
.y9f{bottom:227.363714pt;}
.y10{bottom:227.653333pt;}
.y59{bottom:228.357803pt;}
.y7b{bottom:231.453333pt;}
.y38{bottom:232.093333pt;}
.yad{bottom:233.946667pt;}
.yf1{bottom:235.177651pt;}
.y6{bottom:235.266667pt;}
.yb5{bottom:236.293333pt;}
.y11a{bottom:243.066667pt;}
.y9e{bottom:243.480561pt;}
.y41{bottom:243.933333pt;}
.yf{bottom:246.853333pt;}
.y4b{bottom:249.946667pt;}
.y24{bottom:250.720000pt;}
.y4f{bottom:254.586667pt;}
.y50{bottom:255.866667pt;}
.ydb{bottom:256.706667pt;}
.y7a{bottom:257.053333pt;}
.yac{bottom:259.586667pt;}
.yd3{bottom:261.760000pt;}
.yb4{bottom:261.893333pt;}
.ya2{bottom:264.706667pt;}
.yf0{bottom:264.798102pt;}
.ye{bottom:266.053333pt;}
.y40{bottom:269.533333pt;}
.y23{bottom:273.120000pt;}
.ya4{bottom:273.893333pt;}
.y5a{bottom:275.211585pt;}
.yd2{bottom:284.800000pt;}
.yda{bottom:285.506667pt;}
.yb3{bottom:287.493333pt;}
.y67{bottom:288.632191pt;}
.yef{bottom:294.616993pt;}
.y3f{bottom:295.133333pt;}
.y22{bottom:295.546667pt;}
.yd1{bottom:307.840000pt;}
.y79{bottom:308.253333pt;}
.yd9{bottom:314.306667pt;}
.y21{bottom:317.946667pt;}
.yee{bottom:324.144839pt;}
.y8f{bottom:325.786667pt;}
.yc5{bottom:329.280000pt;}
.y8a{bottom:329.693333pt;}
.yc7{bottom:330.560000pt;}
.yd0{bottom:330.880000pt;}
.y5{bottom:330.946667pt;}
.y78{bottom:333.893333pt;}
.y89{bottom:334.586667pt;}
.yab{bottom:336.386667pt;}
.y20{bottom:340.346667pt;}
.y4{bottom:351.106667pt;}
.ydc{bottom:353.413333pt;}
.ycf{bottom:353.920000pt;}
.yed{bottom:354.056335pt;}
.yfa{bottom:357.253901pt;}
.yf8{bottom:357.253933pt;}
.y101{bottom:357.451050pt;}
.yfd{bottom:357.877960pt;}
.y8e{bottom:358.946667pt;}
.y77{bottom:359.493333pt;}
.yaa{bottom:361.986667pt;}
.y1f{bottom:362.746667pt;}
.y4a{bottom:365.146667pt;}
.y16{bottom:370.333333pt;}
.yce{bottom:376.986667pt;}
.y86{bottom:378.653333pt;}
.yec{bottom:383.914914pt;}
.y119{bottom:385.026667pt;}
.y76{bottom:385.093333pt;}
.y1e{bottom:385.146667pt;}
.y111{bottom:385.658410pt;}
.ya9{bottom:387.586667pt;}
.yb8{bottom:388.733333pt;}
.y8b{bottom:388.933333pt;}
.y15{bottom:389.533333pt;}
.y49{bottom:390.786667pt;}
.y8d{bottom:395.866667pt;}
.y85{bottom:397.853333pt;}
.ye2{bottom:399.258224pt;}
.ycd{bottom:400.026667pt;}
.y33{bottom:404.773333pt;}
.y32{bottom:406.213333pt;}
.y110{bottom:407.261892pt;}
.y1d{bottom:407.546667pt;}
.y14{bottom:408.733333pt;}
.y3{bottom:409.213333pt;}
.y75{bottom:410.693333pt;}
.ya8{bottom:413.213333pt;}
.yeb{bottom:413.429530pt;}
.y48{bottom:416.386667pt;}
.ycc{bottom:423.066667pt;}
.y3e{bottom:423.173333pt;}
.y31{bottom:425.413333pt;}
.y13{bottom:427.933333pt;}
.y8c{bottom:429.026667pt;}
.y74{bottom:436.293333pt;}
.y10f{bottom:437.808396pt;}
.ya7{bottom:438.813333pt;}
.y47{bottom:441.986667pt;}
.y35{bottom:442.013333pt;}
.yea{bottom:443.354256pt;}
.y12{bottom:447.133333pt;}
.yb2{bottom:447.386667pt;}
.y3d{bottom:448.773333pt;}
.y1c{bottom:452.386667pt;}
.y73{bottom:461.920000pt;}
.y90{bottom:463.906667pt;}
.ya6{bottom:464.413333pt;}
.y2{bottom:466.853333pt;}
.y46{bottom:467.586667pt;}
.y10e{bottom:468.209377pt;}
.y84{bottom:470.973333pt;}
.ye9{bottom:472.882101pt;}
.yb1{bottom:472.986667pt;}
.y53{bottom:473.120000pt;}
.y3c{bottom:474.400000pt;}
.y1b{bottom:474.786667pt;}
.ycb{bottom:479.066667pt;}
.y36{bottom:482.053333pt;}
.ye7{bottom:484.148191pt;}
.y72{bottom:487.520000pt;}
.ya5{bottom:490.013333pt;}
.y45{bottom:493.186667pt;}
.y83{bottom:496.613333pt;}
.y1a{bottom:497.186667pt;}
.y91{bottom:498.213333pt;}
.yb0{bottom:498.586667pt;}
.y52{bottom:498.720000pt;}
.y10d{bottom:498.755880pt;}
.y3b{bottom:499.746667pt;}
.ye8{bottom:502.700992pt;}
.y34{bottom:504.093333pt;}
.y30{bottom:508.066667pt;}
.ye6{bottom:508.516602pt;}
.y88{bottom:510.720000pt;}
.y3a{bottom:518.946667pt;}
.y19{bottom:519.586667pt;}
.y1{bottom:524.453333pt;}
.y37{bottom:524.480000pt;}
.y10c{bottom:529.302384pt;}
.yca{bottom:530.946667pt;}
.y18{bottom:541.986667pt;}
.y87{bottom:542.653333pt;}
.y82{bottom:547.293333pt;}
.y10b{bottom:549.064438pt;}
.y10a{bottom:549.064472pt;}
.yc4{bottom:549.666667pt;}
.y2f{bottom:550.493333pt;}
.y71{bottom:551.266667pt;}
.y17{bottom:564.413333pt;}
.ye5{bottom:593.004342pt;}
.ye4{bottom:642.005749pt;}
.ye3{bottom:642.635450pt;}
.y109{bottom:668.514535pt;}
.y108{bottom:699.021351pt;}
.y107{bottom:729.567855pt;}
.y106{bottom:760.008524pt;}
.ye1{bottom:781.284047pt;}
.y105{bottom:790.555027pt;}
.y104{bottom:821.088301pt;}
.ye0{bottom:840.630784pt;}
.y103{bottom:846.845758pt;}
.ydf{bottom:891.365232pt;}
.yde{bottom:911.143068pt;}
.ydd{bottom:930.947362pt;}
.h34{height:0.820218pt;}
.h1c{height:27.677734pt;}
.h2f{height:36.446995pt;}
.h1b{height:36.927803pt;}
.h1d{height:36.986561pt;}
.h1f{height:37.083451pt;}
.h29{height:38.295253pt;}
.h2d{height:39.133712pt;}
.h28{height:41.118216pt;}
.h3c{height:42.200217pt;}
.h3e{height:42.627392pt;}
.h38{height:42.824509pt;}
.h3a{height:42.824541pt;}
.h16{height:45.146472pt;}
.hb{height:46.454062pt;}
.ha{height:46.566000pt;}
.h31{height:46.665109pt;}
.h21{height:47.749949pt;}
.h20{height:47.769049pt;}
.h11{height:48.718750pt;}
.h39{height:54.090999pt;}
.h3b{height:55.684253pt;}
.h10{height:55.968750pt;}
.h19{height:58.132177pt;}
.h18{height:60.177560pt;}
.h12{height:61.059375pt;}
.h25{height:61.234583pt;}
.h3d{height:61.787262pt;}
.h7{height:63.656250pt;}
.h8{height:63.783562pt;}
.h2e{height:64.140974pt;}
.h32{height:64.543925pt;}
.he{height:65.531250pt;}
.h42{height:67.294355pt;}
.h2a{height:67.803003pt;}
.h5{height:69.960938pt;}
.h4{height:70.072875pt;}
.h3f{height:70.296719pt;}
.h17{height:72.259523pt;}
.h6{height:74.477812pt;}
.h9{height:74.605125pt;}
.h13{height:84.662813pt;}
.h22{height:84.790125pt;}
.h14{height:87.156562pt;}
.hd{height:95.484375pt;}
.h37{height:96.818519pt;}
.h3{height:98.296875pt;}
.h26{height:100.764375pt;}
.h2b{height:107.377708pt;}
.h36{height:118.640187pt;}
.hf{height:136.571250pt;}
.h23{height:142.331250pt;}
.h1a{height:145.799374pt;}
.h35{height:150.909518pt;}
.h40{height:157.221702pt;}
.h43{height:162.233437pt;}
.hc{height:182.812500pt;}
.h30{height:182.934375pt;}
.h33{height:193.768621pt;}
.h24{height:198.046875pt;}
.h1{height:218.219062pt;}
.h2{height:218.350125pt;}
.h41{height:234.922412pt;}
.h2c{height:259.516756pt;}
.h1e{height:267.967809pt;}
.h27{height:269.309560pt;}
.h15{height:328.823443pt;}
.h0{height:720.000000pt;}
.w8{width:0.795203pt;}
.wb{width:64.616204pt;}
.w9{width:71.110049pt;}
.w3{width:168.076139pt;}
.w4{width:350.240592pt;}
.w5{width:355.035830pt;}
.w6{width:369.495421pt;}
.w2{width:442.589799pt;}
.wa{width:487.013115pt;}
.w7{width:557.328878pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x57{left:-5.402674pt;}
.x5f{left:-2.882781pt;}
.x0{left:0.000000pt;}
.x59{left:1.490272pt;}
.x5c{left:7.222755pt;}
.x8{left:11.167981pt;}
.x3{left:12.127981pt;}
.x35{left:14.655981pt;}
.x36{left:16.351981pt;}
.xb{left:17.567981pt;}
.xd{left:19.839981pt;}
.x6{left:22.527981pt;}
.x21{left:25.023981pt;}
.x32{left:26.137851pt;}
.x12{left:27.327981pt;}
.x52{left:28.255981pt;}
.x1{left:30.047981pt;}
.x2d{left:32.099301pt;}
.x4{left:33.727981pt;}
.x31{left:34.957821pt;}
.x43{left:38.064616pt;}
.x47{left:39.775981pt;}
.x29{left:41.157826pt;}
.x5{left:44.447981pt;}
.x42{left:46.161952pt;}
.x2{left:47.327981pt;}
.x30{left:49.116100pt;}
.x13{left:57.407981pt;}
.x5e{left:59.082552pt;}
.x2f{left:63.545672pt;}
.x5a{left:65.079315pt;}
.x2a{left:67.295131pt;}
.x4b{left:71.414197pt;}
.x28{left:74.359576pt;}
.x4a{left:77.540070pt;}
.xa{left:82.527981pt;}
.x9{left:91.167981pt;}
.x27{left:97.132697pt;}
.x15{left:119.167981pt;}
.x33{left:151.650258pt;}
.xc{left:154.719981pt;}
.x58{left:225.650854pt;}
.x2b{left:245.580932pt;}
.x44{left:272.803489pt;}
.x62{left:277.215853pt;}
.x4c{left:294.550429pt;}
.x7{left:332.959981pt;}
.x63{left:425.675004pt;}
.x64{left:437.194578pt;}
.x1a{left:480.826648pt;}
.x65{left:500.785617pt;}
.x60{left:502.384157pt;}
.x2e{left:504.693333pt;}
.x49{left:524.533335pt;}
.x61{left:526.333352pt;}
.x3a{left:542.559981pt;}
.x22{left:547.906648pt;}
.x34{left:565.599981pt;}
.x3c{left:571.386648pt;}
.x66{left:574.946648pt;}
.x3b{left:576.159981pt;}
.x41{left:603.013337pt;}
.x14{left:640.986648pt;}
.x37{left:652.293314pt;}
.x45{left:687.773314pt;}
.x38{left:688.773314pt;}
.xe{left:711.453314pt;}
.x56{left:716.893333pt;}
.x5d{left:718.483837pt;}
.xf{left:741.533314pt;}
.x10{left:743.333314pt;}
.x53{left:745.119981pt;}
.x23{left:749.893314pt;}
.x1c{left:755.839981pt;}
.x1b{left:757.786648pt;}
.x39{left:767.813314pt;}
.x3d{left:771.453314pt;}
.x11{left:773.413314pt;}
.x46{left:778.813314pt;}
.x5b{left:787.209096pt;}
.x26{left:800.906711pt;}
.x54{left:811.519981pt;}
.x16{left:832.319981pt;}
.x17{left:844.479981pt;}
.x55{left:868.346648pt;}
.x19{left:888.573314pt;}
.x2c{left:903.213333pt;}
.x51{left:917.626648pt;}
.x48{left:928.959981pt;}
.x1e{left:954.559981pt;}
.x1d{left:961.759981pt;}
.x4d{left:1050.786648pt;}
.x40{left:1052.639981pt;}
.x4e{left:1059.813314pt;}
.x20{left:1070.946648pt;}
.x1f{left:1075.266648pt;}
.x25{left:1094.973314pt;}
.x24{left:1098.173314pt;}
.x3e{left:1103.866648pt;}
.x18{left:1125.599981pt;}
.x3f{left:1129.466648pt;}
.x4f{left:1196.253314pt;}
.x50{left:1204.546648pt;}
}




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