
    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_dea102cb93433e7c24a135c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_bc277323bdd19e0b922d2d2d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_de338ab37b7c2dde0ca98df4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0608a5f772da06d34aa6e58d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.181152;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_d9a543af034091ed549b9e34.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.015625;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_fdbbc27ce7041a6f79fc28b2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966309;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_3ff5f269b721aee95bbe4187.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_6344fe7bf1b39cd7e19b9466.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.692383;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_e2853ce65d99d90841c27f4f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_2b44790452b3fe09469be86a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.157715;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_11e57858dca08eb4c6d88312.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.880859;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_bc607e1d9895b3a0fa1d28d1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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_168c7d056ed1d8c951604905.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_e15f68957f2396607bef0967.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.833984;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_840ae5bf6f40c944aa523682.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;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_12d306e5e1afd81d1845bc31.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.940430;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_2b78c7a5e165472fc4a681ee.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.727539;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_f3f73cf9ad1d03cd650a68e8.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;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;}
.ma{transform:matrix(-0.004363,-0.258014,0.249959,-0.004504,0,0);-ms-transform:matrix(-0.004363,-0.258014,0.249959,-0.004504,0,0);-webkit-transform:matrix(-0.004363,-0.258014,0.249959,-0.004504,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.250182,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250182,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250182,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.256526,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.256526,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.256526,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.258056,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.258056,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.258056,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.266148,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.266148,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.266148,0.250000,0.000000,0,0);}
.m14{transform:matrix(0.000000,-0.267646,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.267646,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.267646,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.271515,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.271515,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.271515,0.250000,0.000000,0,0);}
.m12{transform:matrix(0.000000,-0.279812,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.279812,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.279812,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.198873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198873,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.223139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223139,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.223364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223364,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.230190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230190,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.233518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233518,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.234832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234832,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.242196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242196,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.243640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243640,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249818,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);}
.md{transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);}
.v9{vertical-align:-102.060000px;}
.va{vertical-align:-68.100000px;}
.v7{vertical-align:-34.140000px;}
.v4{vertical-align:-31.680000px;}
.vb{vertical-align:-29.520000px;}
.v1{vertical-align:-26.640000px;}
.v2{vertical-align:-24.480000px;}
.v5{vertical-align:-20.160000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:16.440000px;}
.v6{vertical-align:20.160000px;}
.v3{vertical-align:24.480000px;}
.vc{vertical-align:39.010532px;}
.ls34{letter-spacing:-2.604000px;}
.ls47{letter-spacing:-2.292000px;}
.ls13{letter-spacing:-1.224000px;}
.ls3f{letter-spacing:-1.098000px;}
.ls6{letter-spacing:-0.948000px;}
.lsa{letter-spacing:-0.864000px;}
.ls41{letter-spacing:-0.732000px;}
.ls14{letter-spacing:-0.504000px;}
.ls37{letter-spacing:-0.438600px;}
.ls4d{letter-spacing:-0.406818px;}
.ls7{letter-spacing:-0.375600px;}
.ls1b{letter-spacing:-0.360000px;}
.ls3d{letter-spacing:-0.350400px;}
.ls35{letter-spacing:-0.345000px;}
.ls58{letter-spacing:-0.329374px;}
.ls57{letter-spacing:-0.328782px;}
.ls36{letter-spacing:-0.320400px;}
.ls4e{letter-spacing:-0.314400px;}
.ls59{letter-spacing:-0.301048px;}
.ls55{letter-spacing:-0.300620px;}
.ls43{letter-spacing:-0.296400px;}
.ls4{letter-spacing:-0.288000px;}
.ls53{letter-spacing:-0.280863px;}
.ls51{letter-spacing:-0.264657px;}
.ls50{letter-spacing:-0.252000px;}
.ls18{letter-spacing:-0.240600px;}
.ls5b{letter-spacing:-0.235800px;}
.ls5{letter-spacing:-0.219000px;}
.ls1a{letter-spacing:-0.213000px;}
.ls3{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.144000px;}
.ls33{letter-spacing:-0.130800px;}
.ls45{letter-spacing:-0.127200px;}
.ls38{letter-spacing:-0.117600px;}
.ls4a{letter-spacing:-0.108000px;}
.ls44{letter-spacing:-0.100800px;}
.ls56{letter-spacing:-0.072000px;}
.ls19{letter-spacing:-0.066000px;}
.ls3c{letter-spacing:-0.037440px;}
.ls49{letter-spacing:-0.036000px;}
.ls0{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.004320px;}
.lsf{letter-spacing:0.030240px;}
.ls30{letter-spacing:0.059040px;}
.ls48{letter-spacing:0.085200px;}
.ls8{letter-spacing:0.091800px;}
.lse{letter-spacing:0.099936px;}
.ls16{letter-spacing:0.119400px;}
.ls2f{letter-spacing:0.132600px;}
.ls1{letter-spacing:0.135600px;}
.ls1f{letter-spacing:0.142992px;}
.ls2{letter-spacing:0.144000px;}
.ls39{letter-spacing:0.174343px;}
.ls4c{letter-spacing:0.180774px;}
.ls5c{letter-spacing:0.187200px;}
.ls4b{letter-spacing:0.189600px;}
.ls17{letter-spacing:0.195600px;}
.ls3a{letter-spacing:0.198591px;}
.ls31{letter-spacing:0.204600px;}
.ls23{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.224400px;}
.ls52{letter-spacing:0.230169px;}
.ls54{letter-spacing:0.244263px;}
.lsd{letter-spacing:0.246000px;}
.ls22{letter-spacing:0.252000px;}
.ls5a{letter-spacing:0.258624px;}
.ls29{letter-spacing:0.274752px;}
.lsb{letter-spacing:0.288000px;}
.ls4f{letter-spacing:0.294000px;}
.ls32{letter-spacing:0.301200px;}
.ls28{letter-spacing:0.319680px;}
.ls20{letter-spacing:0.322992px;}
.ls3e{letter-spacing:0.341400px;}
.ls2e{letter-spacing:0.360000px;}
.ls3b{letter-spacing:0.453572px;}
.ls2b{letter-spacing:0.454752px;}
.ls2a{letter-spacing:0.509760px;}
.ls42{letter-spacing:0.678000px;}
.ls1d{letter-spacing:0.936000px;}
.ls25{letter-spacing:1.159920px;}
.ls46{letter-spacing:5.628000px;}
.ls40{letter-spacing:21.416832px;}
.ls11{letter-spacing:54.067104px;}
.ls12{letter-spacing:54.181440px;}
.ls1e{letter-spacing:83.333664px;}
.ls1c{letter-spacing:85.608000px;}
.lsc{letter-spacing:86.581440px;}
.ls24{letter-spacing:88.087104px;}
.ls2c{letter-spacing:88.201440px;}
.ls10{letter-spacing:90.181440px;}
.ls27{letter-spacing:91.081440px;}
.ls21{letter-spacing:144.792000px;}
.ls2d{letter-spacing:1846.260000px;}
.sc_{text-shadow:none;}
.sc3{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);}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,0),0 0.015em rgb(255,255,0),0.015em 0 rgb(255,255,0),0 -0.015em  rgb(255,255,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;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-167.760000px;}
.ws4f{word-spacing:-144.144000px;}
.ws4e{word-spacing:-144.000000px;}
.ws3{word-spacing:-143.925000px;}
.ws6{word-spacing:-143.856000px;}
.ws34{word-spacing:-108.000000px;}
.ws18{word-spacing:-102.240000px;}
.ws15{word-spacing:-84.384000px;}
.ws1b{word-spacing:-72.000000px;}
.ws1{word-spacing:-59.051520px;}
.ws22{word-spacing:-57.373920px;}
.ws52{word-spacing:-50.925888px;}
.ws2{word-spacing:-50.738688px;}
.ws5{word-spacing:-50.688000px;}
.ws50{word-spacing:-50.544000px;}
.ws51{word-spacing:-50.502888px;}
.ws7{word-spacing:-49.824000px;}
.ws4{word-spacing:-49.790688px;}
.ws3e{word-spacing:-41.416080px;}
.ws3f{word-spacing:-41.122080px;}
.ws3b{word-spacing:-40.991280px;}
.ws3d{word-spacing:-40.807680px;}
.ws37{word-spacing:-38.256288px;}
.ws35{word-spacing:-37.980000px;}
.ws47{word-spacing:-37.944000px;}
.ws36{word-spacing:-37.908000px;}
.ws38{word-spacing:-37.836000px;}
.ws41{word-spacing:-37.188000px;}
.ws33{word-spacing:-36.936000px;}
.ws40{word-spacing:-36.900000px;}
.ws21{word-spacing:-32.749920px;}
.ws2c{word-spacing:-30.330480px;}
.ws9{word-spacing:-30.024000px;}
.ws30{word-spacing:-29.652480px;}
.ws2e{word-spacing:-29.602368px;}
.ws2f{word-spacing:-29.575968px;}
.ws2d{word-spacing:-29.356080px;}
.wsc{word-spacing:-29.034480px;}
.ws2b{word-spacing:-28.920480px;}
.ws32{word-spacing:-28.895280px;}
.wsb{word-spacing:-28.810080px;}
.ws3c{word-spacing:-27.332640px;}
.ws13{word-spacing:-25.560000px;}
.ws3a{word-spacing:-25.127535px;}
.ws16{word-spacing:-24.440544px;}
.ws17{word-spacing:-24.408000px;}
.ws46{word-spacing:-23.797322px;}
.ws29{word-spacing:-23.760120px;}
.ws1c{word-spacing:-23.759952px;}
.ws2a{word-spacing:-23.418720px;}
.ws27{word-spacing:-23.381280px;}
.ws26{word-spacing:-23.341152px;}
.ws10{word-spacing:-23.334384px;}
.ws1e{word-spacing:-23.327952px;}
.wse{word-spacing:-23.258184px;}
.ws19{word-spacing:-23.165280px;}
.ws1a{word-spacing:-23.110560px;}
.wsd{word-spacing:-23.106240px;}
.ws28{word-spacing:-23.068320px;}
.ws20{word-spacing:-23.020152px;}
.ws11{word-spacing:-22.898184px;}
.ws14{word-spacing:-22.893240px;}
.ws43{word-spacing:-22.427592px;}
.ws1f{word-spacing:-20.854752px;}
.ws4b{word-spacing:-20.047538px;}
.wsa{word-spacing:-20.016000px;}
.ws49{word-spacing:-20.011528px;}
.ws4d{word-spacing:-19.925445px;}
.ws31{word-spacing:-19.206720px;}
.ws1d{word-spacing:-15.652512px;}
.wsf{word-spacing:-15.541680px;}
.ws12{word-spacing:-15.295680px;}
.ws24{word-spacing:-12.291189px;}
.ws25{word-spacing:-12.116846px;}
.ws8{word-spacing:0.000000px;}
.ws23{word-spacing:62.945541px;}
.ws4c{word-spacing:86.289318px;}
.ws48{word-spacing:86.735333px;}
.ws4a{word-spacing:86.903517px;}
.ws42{word-spacing:93.046277px;}
.ws44{word-spacing:98.744077px;}
.ws45{word-spacing:98.779427px;}
.ws39{word-spacing:318.744732px;}
._8{margin-left:-24.157440px;}
._1f{margin-left:-20.448000px;}
._3{margin-left:-18.510000px;}
._7{margin-left:-15.038976px;}
._20{margin-left:-13.838880px;}
._5{margin-left:-7.200000px;}
._9{margin-left:-5.325120px;}
._6{margin-left:-4.324320px;}
._2{margin-left:-3.306240px;}
._1{margin-left:-1.728000px;}
._0{width:1.500000px;}
._4{width:2.974080px;}
._18{width:4.860480px;}
._17{width:5.945760px;}
._16{width:21.226752px;}
._10{width:88.853200px;}
._1b{width:108.660637px;}
._1e{width:112.173305px;}
._1c{width:115.306643px;}
._e{width:117.795766px;}
._14{width:120.419520px;}
._15{width:121.833840px;}
._f{width:125.301231px;}
._d{width:134.424000px;}
._13{width:140.266560px;}
._a{width:148.253760px;}
._11{width:292.212000px;}
._19{width:379.930504px;}
._1d{width:394.264254px;}
._1a{width:427.706769px;}
._12{width:536.064000px;}
._b{width:909.108000px;}
._c{width:927.360000px;}
.fcf{color:rgb(128,0,0);}
.fce{color:rgb(0,128,128);}
.fcd{color:rgb(255,0,255);}
.fc0{color:rgb(0,0,0);}
.fc5{color:rgb(255,255,255);}
.fc6{color:rgb(0,51,204);}
.fc3{color:rgb(255,255,0);}
.fcb{color:rgb(0,255,255);}
.fc4{color:rgb(255,0,0);}
.fca{color:rgb(0,0,128);}
.fc2{color:rgb(64,49,82);}
.fc7{color:rgb(51,204,51);}
.fc8{color:rgb(0,255,0);}
.fc1{color:transparent;}
.fc9{color:rgb(0,0,255);}
.fcc{color:rgb(0,0,160);}
.fs15{font-size:35.442941px;}
.fs2{font-size:43.107106px;}
.fs14{font-size:43.585777px;}
.fs1c{font-size:51.724984px;}
.fs24{font-size:54.867865px;}
.fs20{font-size:54.892425px;}
.fs16{font-size:56.160000px;}
.fs11{font-size:56.304000px;}
.fs1d{font-size:57.976287px;}
.fs30{font-size:58.879276px;}
.fs29{font-size:59.134825px;}
.fs2d{font-size:59.241234px;}
.fs25{font-size:62.757929px;}
.fs1e{font-size:62.965764px;}
.fs1f{font-size:63.714750px;}
.fs2e{font-size:64.430305px;}
.fs21{font-size:64.735623px;}
.fs23{font-size:64.736418px;}
.fs26{font-size:66.811533px;}
.fs22{font-size:66.821548px;}
.fs31{font-size:66.948874px;}
.fs27{font-size:67.606028px;}
.fsd{font-size:67.680000px;}
.fs10{font-size:67.824000px;}
.fs32{font-size:71.674261px;}
.fs2a{font-size:71.931645px;}
.fs2b{font-size:71.983915px;}
.fs0{font-size:72.000000px;}
.fs2f{font-size:72.113445px;}
.fsf{font-size:72.144000px;}
.fs17{font-size:74.250771px;}
.fs12{font-size:77.760000px;}
.fs1b{font-size:79.920000px;}
.fsa{font-size:84.240000px;}
.fse{font-size:84.384000px;}
.fs19{font-size:88.087377px;}
.fs18{font-size:90.386815px;}
.fs13{font-size:95.760000px;}
.fs28{font-size:98.542389px;}
.fs2c{font-size:98.918055px;}
.fsb{font-size:102.240000px;}
.fsc{font-size:102.384000px;}
.fs9{font-size:108.000000px;}
.fs1{font-size:108.144000px;}
.fs1a{font-size:120.240000px;}
.fs6{font-size:144.000000px;}
.fs7{font-size:144.144000px;}
.fs5{font-size:167.760000px;}
.fs8{font-size:167.904000px;}
.fs4{font-size:264.240000px;}
.fs3{font-size:264.384000px;}
.y2{bottom:-19.944000px;}
.y4{bottom:-0.097814px;}
.y0{bottom:0.000000px;}
.y3{bottom:0.000183px;}
.y4d{bottom:1.753223px;}
.yb0{bottom:4.938178px;}
.ydd{bottom:5.099713px;}
.yd1{bottom:6.833582px;}
.y1{bottom:9.972000px;}
.yaa{bottom:10.357405px;}
.y90{bottom:10.493325px;}
.ye7{bottom:13.785759px;}
.y4c{bottom:13.988699px;}
.y4e{bottom:24.074537px;}
.yae{bottom:31.404154px;}
.yd9{bottom:33.647747px;}
.ya1{bottom:35.295661px;}
.ycd{bottom:35.330337px;}
.y13{bottom:37.116000px;}
.yc5{bottom:39.179971px;}
.ye3{bottom:42.165970px;}
.yf9{bottom:45.108000px;}
.y8f{bottom:46.291709px;}
.y4f{bottom:49.167312px;}
.y75{bottom:49.428000px;}
.y3e{bottom:50.832000px;}
.y2e{bottom:53.676000px;}
.ybf{bottom:65.633311px;}
.y88{bottom:66.456000px;}
.y4b{bottom:73.309500px;}
.y50{bottom:74.260087px;}
.y12{bottom:80.316000px;}
.y2d{bottom:84.276000px;}
.y46{bottom:86.184000px;}
.yea{bottom:88.031084px;}
.yf8{bottom:88.668000px;}
.y45{bottom:91.980000px;}
.y74{bottom:96.624000px;}
.y8e{bottom:98.824500px;}
.y51{bottom:99.356692px;}
.ye0{bottom:107.693235px;}
.yc8{bottom:110.196000px;}
.y2c{bottom:114.912000px;}
.y87{bottom:115.056000px;}
.yaf{bottom:115.975375px;}
.yab{bottom:117.798401px;}
.ybd{bottom:117.900000px;}
.y73{bottom:121.824000px;}
.ya0{bottom:124.339500px;}
.y52{bottom:124.448701px;}
.y11{bottom:124.812000px;}
.y5b{bottom:127.404000px;}
.y91{bottom:128.387183px;}
.y78{bottom:129.924000px;}
.y1f{bottom:135.432000px;}
.yd4{bottom:138.373876px;}
.y7b{bottom:138.420000px;}
.yf7{bottom:141.084000px;}
.yb2{bottom:142.639467px;}
.yd6{bottom:143.208000px;}
.y2b{bottom:145.512000px;}
.ya9{bottom:145.735410px;}
.y72{bottom:147.024000px;}
.y53{bottom:149.556033px;}
.y41{bottom:150.840000px;}
.yc7{bottom:158.790000px;}
.y77{bottom:159.810000px;}
.ybc{bottom:160.020000px;}
.y86{bottom:163.650000px;}
.ydf{bottom:164.137821px;}
.y1e{bottom:166.215000px;}
.y7a{bottom:168.300000px;}
.y71{bottom:172.230000px;}
.yc4{bottom:174.236151px;}
.y54{bottom:174.648041px;}
.y10{bottom:175.215000px;}
.y2a{bottom:176.115000px;}
.ybe{bottom:183.870000px;}
.yf6{bottom:184.650000px;}
.ye9{bottom:185.106414px;}
.y76{bottom:189.870000px;}
.yd3{bottom:190.649607px;}
.y1d{bottom:196.845000px;}
.y70{bottom:197.430000px;}
.y79{bottom:198.360000px;}
.y55{bottom:199.740050px;}
.y8c{bottom:202.575000px;}
.y29{bottom:206.715000px;}
.ya7{bottom:206.863199px;}
.ydc{bottom:207.916054px;}
.ya4{bottom:208.175236px;}
.ya8{bottom:209.112405px;}
.yd0{bottom:209.285623px;}
.ye1{bottom:211.065000px;}
.y40{bottom:211.110000px;}
.y85{bottom:212.295000px;}
.yb1{bottom:212.483276px;}
.ye6{bottom:213.906430px;}
.yad{bottom:217.890000px;}
.y6f{bottom:222.630000px;}
.yf{bottom:224.355000px;}
.yb3{bottom:224.421947px;}
.y56{bottom:224.832058px;}
.yc2{bottom:227.341653px;}
.yf5{bottom:228.210000px;}
.y9f{bottom:228.270000px;}
.yda{bottom:228.735009px;}
.y5c{bottom:229.470000px;}
.yce{bottom:230.067183px;}
.ye4{bottom:236.094894px;}
.y28{bottom:237.315000px;}
.y1c{bottom:239.505000px;}
.yb4{bottom:241.737197px;}
.y5a{bottom:242.898304px;}
.ye2{bottom:243.405000px;}
.y8d{bottom:244.590000px;}
.y93{bottom:245.476552px;}
.yc6{bottom:246.631417px;}
.y6e{bottom:247.830000px;}
.yde{bottom:249.550937px;}
.ycb{bottom:249.660000px;}
.y57{bottom:249.962375px;}
.yd7{bottom:251.910000px;}
.y59{bottom:259.225349px;}
.y92{bottom:259.744784px;}
.y84{bottom:260.895000px;}
.y97{bottom:262.110000px;}
.y58{bottom:262.198081px;}
.ye8{bottom:266.389493px;}
.ye{bottom:267.555000px;}
.y27{bottom:267.915000px;}
.y6d{bottom:273.060000px;}
.y3f{bottom:273.810000px;}
.yb8{bottom:274.368635px;}
.yf4{bottom:280.590000px;}
.y1b{bottom:281.985000px;}
.y98{bottom:287.640000px;}
.y6c{bottom:298.260000px;}
.yd2{bottom:299.694626px;}
.yd{bottom:310.785000px;}
.y21{bottom:313.050000px;}
.y9a{bottom:313.170000px;}
.yc0{bottom:322.014985px;}
.y6b{bottom:323.460000px;}
.yf3{bottom:324.180000px;}
.ya2{bottom:326.862073px;}
.yb5{bottom:329.890814px;}
.y42{bottom:330.150000px;}
.y1a{bottom:331.230000px;}
.yff{bottom:338.370000px;}
.y8b{bottom:338.655000px;}
.y9e{bottom:347.370000px;}
.y2f{bottom:347.475000px;}
.y49{bottom:350.250000px;}
.y60{bottom:351.570000px;}
.yc{bottom:356.145000px;}
.y83{bottom:364.170000px;}
.y96{bottom:366.330065px;}
.yf2{bottom:367.740000px;}
.yb7{bottom:374.063100px;}
.y17{bottom:378.540000px;}
.ya5{bottom:379.362283px;}
.y8a{bottom:381.210000px;}
.y37{bottom:381.450000px;}
.y5f{bottom:381.705000px;}
.yb9{bottom:384.014645px;}
.y44{bottom:387.330000px;}
.y94{bottom:387.862907px;}
.ya6{bottom:398.489904px;}
.y6a{bottom:402.840000px;}
.yfe{bottom:403.170000px;}
.yb{bottom:404.385000px;}
.yc3{bottom:410.924452px;}
.y99{bottom:415.230000px;}
.y43{bottom:418.110000px;}
.yd8{bottom:418.878541px;}
.yf1{bottom:420.120000px;}
.y26{bottom:422.130000px;}
.y69{bottom:428.040000px;}
.ycc{bottom:429.717115px;}
.yb6{bottom:431.176571px;}
.y36{bottom:431.850000px;}
.yca{bottom:432.435000px;}
.ya{bottom:447.585000px;}
.ydb{bottom:448.077247px;}
.ycf{bottom:449.015437px;}
.y25{bottom:452.910000px;}
.y68{bottom:453.270000px;}
.ya3{bottom:453.426753px;}
.ye5{bottom:454.135410px;}
.y3d{bottom:462.420000px;}
.yf0{bottom:463.680000px;}
.yc1{bottom:464.825244px;}
.y9d{bottom:466.455000px;}
.y5e{bottom:467.670000px;}
.yfd{bottom:467.970000px;}
.y67{bottom:478.470000px;}
.y35{bottom:482.250000px;}
.y9{bottom:490.830000px;}
.y24{bottom:492.510000px;}
.y66{bottom:503.670000px;}
.y3c{bottom:508.170000px;}
.yac{bottom:508.965000px;}
.yef{bottom:516.270000px;}
.y23{bottom:523.110000px;}
.y65{bottom:528.870000px;}
.y34{bottom:532.650000px;}
.yfc{bottom:532.800000px;}
.y8{bottom:535.290000px;}
.y19{bottom:546.990000px;}
.y18{bottom:550.440000px;}
.y64{bottom:554.070000px;}
.y3b{bottom:554.250000px;}
.y5d{bottom:561.240000px;}
.y22{bottom:562.755000px;}
.yee{bottom:568.650000px;}
.y63{bottom:579.270000px;}
.y33{bottom:582.735000px;}
.yc9{bottom:585.540000px;}
.y7{bottom:585.690000px;}
.y95{bottom:586.778690px;}
.yfb{bottom:597.600000px;}
.y3a{bottom:599.970000px;}
.y62{bottom:604.470000px;}
.y20{bottom:610.845000px;}
.yd5{bottom:619.380000px;}
.yed{bottom:621.210000px;}
.y9c{bottom:627.870000px;}
.y61{bottom:629.670000px;}
.y39{bottom:630.750000px;}
.y32{bottom:633.495000px;}
.yba{bottom:644.910000px;}
.y6{bottom:659.055000px;}
.y7f{bottom:662.115000px;}
.y16{bottom:663.585000px;}
.yec{bottom:664.815000px;}
.y7e{bottom:670.605000px;}
.y81{bottom:678.930000px;}
.y48{bottom:681.990000px;}
.y31{bottom:687.390000px;}
.y38{bottom:687.420000px;}
.y9b{bottom:693.075000px;}
.ybb{bottom:695.955000px;}
.y15{bottom:696.030000px;}
.y7c{bottom:708.510000px;}
.yfa{bottom:714.990000px;}
.yeb{bottom:715.035000px;}
.y7d{bottom:717.015000px;}
.y89{bottom:732.030000px;}
.y5{bottom:738.255000px;}
.y30{bottom:740.520000px;}
.y80{bottom:740.550000px;}
.y4a{bottom:742.530000px;}
.y82{bottom:746.970000px;}
.y14{bottom:749.130000px;}
.y47{bottom:772.530000px;}
.h25{height:23.622859px;}
.h4{height:44.307312px;}
.h24{height:45.458603px;}
.h1{height:52.277344px;}
.h32{height:53.947542px;}
.h3e{height:57.225469px;}
.h37{height:57.251084px;}
.h1e{height:59.378906px;}
.h33{height:60.467455px;}
.h3{height:61.314683px;}
.h4f{height:61.409245px;}
.h45{height:61.675774px;}
.h4b{height:61.786756px;}
.h35{height:62.096993px;}
.h11{height:64.002656px;}
.h3f{height:65.454559px;}
.h34{height:65.671325px;}
.h41{height:65.889469px;}
.h4c{height:67.198795px;}
.h38{height:67.517232px;}
.h3a{height:67.518061px;}
.h43{height:68.277173px;}
.h49{height:68.537461px;}
.h40{height:69.682341px;}
.h39{height:69.692786px;}
.h50{height:69.825583px;}
.h26{height:70.171875px;}
.h14{height:70.839141px;}
.h13{height:70.938914px;}
.h18{height:72.229078px;}
.h16{height:74.233828px;}
.h1d{height:74.433516px;}
.h51{height:74.754014px;}
.h2{height:74.929852px;}
.h46{height:75.022458px;}
.h47{height:75.076974px;}
.h4d{height:75.212070px;}
.h12{height:75.731484px;}
.h17{height:75.838148px;}
.h2d{height:77.441234px;}
.h1c{height:78.416016px;}
.h1a{height:79.998047px;}
.h1b{height:80.104711px;}
.h20{height:81.101250px;}
.hf{height:82.054688px;}
.h2a{height:82.101094px;}
.h15{height:82.164094px;}
.h2b{height:82.241438px;}
.h28{height:87.859687px;}
.h1f{height:88.009875px;}
.h30{height:91.354219px;}
.h2f{height:91.872382px;}
.h22{height:93.328594px;}
.h2e{height:94.270624px;}
.h21{height:105.257812px;}
.h29{height:105.398156px;}
.h3c{height:108.052734px;}
.h3b{height:108.703318px;}
.h10{height:112.640625px;}
.h27{height:121.697812px;}
.h19{height:127.458281px;}
.he{height:127.567687px;}
.h8{height:140.343750px;}
.h9{height:140.484094px;}
.hc{height:144.070312px;}
.hb{height:144.214383px;}
.h7{height:163.500469px;}
.hd{height:167.841914px;}
.ha{height:172.430844px;}
.h6{height:257.530781px;}
.h5{height:257.671125px;}
.h23{height:272.158268px;}
.h36{height:425.233094px;}
.h4a{height:442.225416px;}
.h4e{height:442.244850px;}
.h31{height:442.255698px;}
.h48{height:442.264060px;}
.h3d{height:450.752584px;}
.h44{height:452.656819px;}
.h42{height:453.013821px;}
.h2c{height:578.322146px;}
.h0{height:810.000000px;}
.w3{width:-23.294389px;}
.w1{width:63.748792px;}
.w2{width:416.726994px;}
.wb{width:503.649050px;}
.wa{width:503.768991px;}
.w5{width:505.973987px;}
.wc{width:522.989998px;}
.w7{width:531.480299px;}
.w6{width:557.007784px;}
.w9{width:582.511641px;}
.w8{width:582.533938px;}
.w4{width:752.629779px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x2f{left:9.193421px;}
.x34{left:10.258186px;}
.x2c{left:12.697350px;}
.x1d{left:14.940000px;}
.x32{left:16.196975px;}
.x36{left:17.748106px;}
.x30{left:18.896370px;}
.x33{left:19.976371px;}
.x31{left:21.085628px;}
.x17{left:23.544000px;}
.x2d{left:25.135024px;}
.x68{left:30.258506px;}
.x2b{left:32.004000px;}
.x53{left:34.775048px;}
.x12{left:36.684000px;}
.x3b{left:40.500000px;}
.x2a{left:44.748000px;}
.x11{left:49.068000px;}
.x1c{left:53.172000px;}
.x16{left:57.492000px;}
.x60{left:60.564251px;}
.x5e{left:62.995860px;}
.x2{left:64.193687px;}
.x1{left:66.132000px;}
.x4{left:71.784000px;}
.x29{left:74.556000px;}
.x37{left:81.864000px;}
.x3{left:83.088000px;}
.x23{left:87.408000px;}
.x49{left:91.548000px;}
.x66{left:100.044000px;}
.xa{left:103.284000px;}
.x45{left:108.576000px;}
.x9{left:126.504000px;}
.x27{left:151.095000px;}
.x20{left:163.230000px;}
.x6{left:164.490000px;}
.x3c{left:168.120000px;}
.x3d{left:193.650000px;}
.x6b{left:237.337369px;}
.xb{left:244.260000px;}
.x74{left:249.201197px;}
.x67{left:250.830000px;}
.x5a{left:253.185000px;}
.x5f{left:254.758689px;}
.x6a{left:263.419677px;}
.x54{left:265.393394px;}
.x50{left:266.947099px;}
.x6c{left:269.743480px;}
.x77{left:273.507535px;}
.x73{left:276.297635px;}
.x5d{left:280.156118px;}
.x76{left:282.676431px;}
.x63{left:285.056563px;}
.x57{left:291.598973px;}
.x65{left:298.971336px;}
.xf{left:313.020000px;}
.x62{left:314.172501px;}
.x64{left:323.376543px;}
.x2e{left:338.859616px;}
.x58{left:341.111889px;}
.x6d{left:346.755000px;}
.x3f{left:357.962478px;}
.x7{left:368.280000px;}
.xe{left:372.600000px;}
.x75{left:376.327026px;}
.x6f{left:380.775000px;}
.x43{left:393.613197px;}
.x22{left:398.130000px;}
.xc{left:404.820000px;}
.x10{left:410.580000px;}
.xd{left:423.210000px;}
.x8{left:425.370000px;}
.x21{left:427.650000px;}
.x56{left:432.244638px;}
.x28{left:448.815000px;}
.x35{left:452.718733px;}
.x51{left:459.335605px;}
.x52{left:462.963264px;}
.x5{left:470.010000px;}
.x14{left:472.500000px;}
.x6e{left:474.330000px;}
.x46{left:482.835000px;}
.x59{left:484.840791px;}
.x55{left:489.271015px;}
.x38{left:491.370000px;}
.x4f{left:513.690099px;}
.x69{left:515.362922px;}
.x72{left:538.124984px;}
.x5c{left:546.609689px;}
.x5b{left:548.505000px;}
.x41{left:556.684555px;}
.x19{left:559.335000px;}
.x3e{left:567.900000px;}
.x4e{left:574.020000px;}
.x1f{left:576.390000px;}
.x1b{left:584.925000px;}
.x18{left:589.140000px;}
.x1a{left:593.175000px;}
.x61{left:595.451421px;}
.x4d{left:601.920000px;}
.x4c{left:610.455000px;}
.x40{left:616.713380px;}
.x1e{left:618.945000px;}
.x70{left:627.450000px;}
.x44{left:631.659622px;}
.x47{left:635.940000px;}
.x48{left:669.990000px;}
.x3a{left:695.490000px;}
.x71{left:738.030000px;}
.x26{left:746.895000px;}
.x42{left:768.506882px;}
.x4a{left:772.050000px;}
.x24{left:776.415000px;}
.x25{left:795.495000px;}
.x4b{left:797.580000px;}
.x39{left:823.110000px;}
.x13{left:862.590000px;}
.x15{left:942.090000px;}
@media print{
.v9{vertical-align:-90.720000pt;}
.va{vertical-align:-60.533333pt;}
.v7{vertical-align:-30.346667pt;}
.v4{vertical-align:-28.160000pt;}
.vb{vertical-align:-26.240000pt;}
.v1{vertical-align:-23.680000pt;}
.v2{vertical-align:-21.760000pt;}
.v5{vertical-align:-17.920000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:14.613333pt;}
.v6{vertical-align:17.920000pt;}
.v3{vertical-align:21.760000pt;}
.vc{vertical-align:34.676028pt;}
.ls34{letter-spacing:-2.314667pt;}
.ls47{letter-spacing:-2.037333pt;}
.ls13{letter-spacing:-1.088000pt;}
.ls3f{letter-spacing:-0.976000pt;}
.ls6{letter-spacing:-0.842667pt;}
.lsa{letter-spacing:-0.768000pt;}
.ls41{letter-spacing:-0.650667pt;}
.ls14{letter-spacing:-0.448000pt;}
.ls37{letter-spacing:-0.389867pt;}
.ls4d{letter-spacing:-0.361616pt;}
.ls7{letter-spacing:-0.333867pt;}
.ls1b{letter-spacing:-0.320000pt;}
.ls3d{letter-spacing:-0.311467pt;}
.ls35{letter-spacing:-0.306667pt;}
.ls58{letter-spacing:-0.292777pt;}
.ls57{letter-spacing:-0.292251pt;}
.ls36{letter-spacing:-0.284800pt;}
.ls4e{letter-spacing:-0.279467pt;}
.ls59{letter-spacing:-0.267599pt;}
.ls55{letter-spacing:-0.267218pt;}
.ls43{letter-spacing:-0.263467pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls53{letter-spacing:-0.249656pt;}
.ls51{letter-spacing:-0.235250pt;}
.ls50{letter-spacing:-0.224000pt;}
.ls18{letter-spacing:-0.213867pt;}
.ls5b{letter-spacing:-0.209600pt;}
.ls5{letter-spacing:-0.194667pt;}
.ls1a{letter-spacing:-0.189333pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls33{letter-spacing:-0.116267pt;}
.ls45{letter-spacing:-0.113067pt;}
.ls38{letter-spacing:-0.104533pt;}
.ls4a{letter-spacing:-0.096000pt;}
.ls44{letter-spacing:-0.089600pt;}
.ls56{letter-spacing:-0.064000pt;}
.ls19{letter-spacing:-0.058667pt;}
.ls3c{letter-spacing:-0.033280pt;}
.ls49{letter-spacing:-0.032000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.003840pt;}
.lsf{letter-spacing:0.026880pt;}
.ls30{letter-spacing:0.052480pt;}
.ls48{letter-spacing:0.075733pt;}
.ls8{letter-spacing:0.081600pt;}
.lse{letter-spacing:0.088832pt;}
.ls16{letter-spacing:0.106133pt;}
.ls2f{letter-spacing:0.117867pt;}
.ls1{letter-spacing:0.120533pt;}
.ls1f{letter-spacing:0.127104pt;}
.ls2{letter-spacing:0.128000pt;}
.ls39{letter-spacing:0.154972pt;}
.ls4c{letter-spacing:0.160688pt;}
.ls5c{letter-spacing:0.166400pt;}
.ls4b{letter-spacing:0.168533pt;}
.ls17{letter-spacing:0.173867pt;}
.ls3a{letter-spacing:0.176525pt;}
.ls31{letter-spacing:0.181867pt;}
.ls23{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.199467pt;}
.ls52{letter-spacing:0.204594pt;}
.ls54{letter-spacing:0.217123pt;}
.lsd{letter-spacing:0.218667pt;}
.ls22{letter-spacing:0.224000pt;}
.ls5a{letter-spacing:0.229888pt;}
.ls29{letter-spacing:0.244224pt;}
.lsb{letter-spacing:0.256000pt;}
.ls4f{letter-spacing:0.261333pt;}
.ls32{letter-spacing:0.267733pt;}
.ls28{letter-spacing:0.284160pt;}
.ls20{letter-spacing:0.287104pt;}
.ls3e{letter-spacing:0.303467pt;}
.ls2e{letter-spacing:0.320000pt;}
.ls3b{letter-spacing:0.403175pt;}
.ls2b{letter-spacing:0.404224pt;}
.ls2a{letter-spacing:0.453120pt;}
.ls42{letter-spacing:0.602667pt;}
.ls1d{letter-spacing:0.832000pt;}
.ls25{letter-spacing:1.031040pt;}
.ls46{letter-spacing:5.002667pt;}
.ls40{letter-spacing:19.037184pt;}
.ls11{letter-spacing:48.059648pt;}
.ls12{letter-spacing:48.161280pt;}
.ls1e{letter-spacing:74.074368pt;}
.ls1c{letter-spacing:76.096000pt;}
.lsc{letter-spacing:76.961280pt;}
.ls24{letter-spacing:78.299648pt;}
.ls2c{letter-spacing:78.401280pt;}
.ls10{letter-spacing:80.161280pt;}
.ls27{letter-spacing:80.961280pt;}
.ls21{letter-spacing:128.704000pt;}
.ls2d{letter-spacing:1641.120000pt;}
.ws0{word-spacing:-149.120000pt;}
.ws4f{word-spacing:-128.128000pt;}
.ws4e{word-spacing:-128.000000pt;}
.ws3{word-spacing:-127.933333pt;}
.ws6{word-spacing:-127.872000pt;}
.ws34{word-spacing:-96.000000pt;}
.ws18{word-spacing:-90.880000pt;}
.ws15{word-spacing:-75.008000pt;}
.ws1b{word-spacing:-64.000000pt;}
.ws1{word-spacing:-52.490240pt;}
.ws22{word-spacing:-50.999040pt;}
.ws52{word-spacing:-45.267456pt;}
.ws2{word-spacing:-45.101056pt;}
.ws5{word-spacing:-45.056000pt;}
.ws50{word-spacing:-44.928000pt;}
.ws51{word-spacing:-44.891456pt;}
.ws7{word-spacing:-44.288000pt;}
.ws4{word-spacing:-44.258389pt;}
.ws3e{word-spacing:-36.814293pt;}
.ws3f{word-spacing:-36.552960pt;}
.ws3b{word-spacing:-36.436693pt;}
.ws3d{word-spacing:-36.273493pt;}
.ws37{word-spacing:-34.005589pt;}
.ws35{word-spacing:-33.760000pt;}
.ws47{word-spacing:-33.728000pt;}
.ws36{word-spacing:-33.696000pt;}
.ws38{word-spacing:-33.632000pt;}
.ws41{word-spacing:-33.056000pt;}
.ws33{word-spacing:-32.832000pt;}
.ws40{word-spacing:-32.800000pt;}
.ws21{word-spacing:-29.111040pt;}
.ws2c{word-spacing:-26.960427pt;}
.ws9{word-spacing:-26.688000pt;}
.ws30{word-spacing:-26.357760pt;}
.ws2e{word-spacing:-26.313216pt;}
.ws2f{word-spacing:-26.289749pt;}
.ws2d{word-spacing:-26.094293pt;}
.wsc{word-spacing:-25.808427pt;}
.ws2b{word-spacing:-25.707093pt;}
.ws32{word-spacing:-25.684693pt;}
.wsb{word-spacing:-25.608960pt;}
.ws3c{word-spacing:-24.295680pt;}
.ws13{word-spacing:-22.720000pt;}
.ws3a{word-spacing:-22.335586pt;}
.ws16{word-spacing:-21.724928pt;}
.ws17{word-spacing:-21.696000pt;}
.ws46{word-spacing:-21.153175pt;}
.ws29{word-spacing:-21.120107pt;}
.ws1c{word-spacing:-21.119957pt;}
.ws2a{word-spacing:-20.816640pt;}
.ws27{word-spacing:-20.783360pt;}
.ws26{word-spacing:-20.747691pt;}
.ws10{word-spacing:-20.741675pt;}
.ws1e{word-spacing:-20.735957pt;}
.wse{word-spacing:-20.673941pt;}
.ws19{word-spacing:-20.591360pt;}
.ws1a{word-spacing:-20.542720pt;}
.wsd{word-spacing:-20.538880pt;}
.ws28{word-spacing:-20.505173pt;}
.ws20{word-spacing:-20.462357pt;}
.ws11{word-spacing:-20.353941pt;}
.ws14{word-spacing:-20.349547pt;}
.ws43{word-spacing:-19.935637pt;}
.ws1f{word-spacing:-18.537557pt;}
.ws4b{word-spacing:-17.820034pt;}
.wsa{word-spacing:-17.792000pt;}
.ws49{word-spacing:-17.788025pt;}
.ws4d{word-spacing:-17.711506pt;}
.ws31{word-spacing:-17.072640pt;}
.ws1d{word-spacing:-13.913344pt;}
.wsf{word-spacing:-13.814827pt;}
.ws12{word-spacing:-13.596160pt;}
.ws24{word-spacing:-10.925501pt;}
.ws25{word-spacing:-10.770530pt;}
.ws8{word-spacing:0.000000pt;}
.ws23{word-spacing:55.951592pt;}
.ws4c{word-spacing:76.701616pt;}
.ws48{word-spacing:77.098074pt;}
.ws4a{word-spacing:77.247571pt;}
.ws42{word-spacing:82.707802pt;}
.ws44{word-spacing:87.772513pt;}
.ws45{word-spacing:87.803935pt;}
.ws39{word-spacing:283.328651pt;}
._8{margin-left:-21.473280pt;}
._1f{margin-left:-18.176000pt;}
._3{margin-left:-16.453333pt;}
._7{margin-left:-13.367979pt;}
._20{margin-left:-12.301227pt;}
._5{margin-left:-6.400000pt;}
._9{margin-left:-4.733440pt;}
._6{margin-left:-3.843840pt;}
._2{margin-left:-2.938880pt;}
._1{margin-left:-1.536000pt;}
._0{width:1.333333pt;}
._4{width:2.643627pt;}
._18{width:4.320427pt;}
._17{width:5.285120pt;}
._16{width:18.868224pt;}
._10{width:78.980623pt;}
._1b{width:96.587233pt;}
._1e{width:99.709604pt;}
._1c{width:102.494794pt;}
._e{width:104.707348pt;}
._14{width:107.039573pt;}
._15{width:108.296747pt;}
._f{width:111.378872pt;}
._d{width:119.488000pt;}
._13{width:124.681387pt;}
._a{width:131.781120pt;}
._11{width:259.744000pt;}
._19{width:337.716003pt;}
._1d{width:350.457115pt;}
._1a{width:380.183794pt;}
._12{width:476.501333pt;}
._b{width:808.096000pt;}
._c{width:824.320000pt;}
.fs15{font-size:31.504836pt;}
.fs2{font-size:38.317427pt;}
.fs14{font-size:38.742912pt;}
.fs1c{font-size:45.977764pt;}
.fs24{font-size:48.771436pt;}
.fs20{font-size:48.793266pt;}
.fs16{font-size:49.920000pt;}
.fs11{font-size:50.048000pt;}
.fs1d{font-size:51.534477pt;}
.fs30{font-size:52.337134pt;}
.fs29{font-size:52.564289pt;}
.fs2d{font-size:52.658875pt;}
.fs25{font-size:55.784826pt;}
.fs1e{font-size:55.969568pt;}
.fs1f{font-size:56.635333pt;}
.fs2e{font-size:57.271383pt;}
.fs21{font-size:57.542776pt;}
.fs23{font-size:57.543482pt;}
.fs26{font-size:59.388030pt;}
.fs22{font-size:59.396931pt;}
.fs31{font-size:59.510110pt;}
.fs27{font-size:60.094247pt;}
.fsd{font-size:60.160000pt;}
.fs10{font-size:60.288000pt;}
.fs32{font-size:63.710454pt;}
.fs2a{font-size:63.939240pt;}
.fs2b{font-size:63.985702pt;}
.fs0{font-size:64.000000pt;}
.fs2f{font-size:64.100840pt;}
.fsf{font-size:64.128000pt;}
.fs17{font-size:66.000685pt;}
.fs12{font-size:69.120000pt;}
.fs1b{font-size:71.040000pt;}
.fsa{font-size:74.880000pt;}
.fse{font-size:75.008000pt;}
.fs19{font-size:78.299891pt;}
.fs18{font-size:80.343836pt;}
.fs13{font-size:85.120000pt;}
.fs28{font-size:87.593235pt;}
.fs2c{font-size:87.927160pt;}
.fsb{font-size:90.880000pt;}
.fsc{font-size:91.008000pt;}
.fs9{font-size:96.000000pt;}
.fs1{font-size:96.128000pt;}
.fs1a{font-size:106.880000pt;}
.fs6{font-size:128.000000pt;}
.fs7{font-size:128.128000pt;}
.fs5{font-size:149.120000pt;}
.fs8{font-size:149.248000pt;}
.fs4{font-size:234.880000pt;}
.fs3{font-size:235.008000pt;}
.y2{bottom:-17.728000pt;}
.y4{bottom:-0.086946pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:0.000163pt;}
.y4d{bottom:1.558420pt;}
.yb0{bottom:4.389492pt;}
.ydd{bottom:4.533079pt;}
.yd1{bottom:6.074295pt;}
.y1{bottom:8.864000pt;}
.yaa{bottom:9.206582pt;}
.y90{bottom:9.327400pt;}
.ye7{bottom:12.254008pt;}
.y4c{bottom:12.434399pt;}
.y4e{bottom:21.399589pt;}
.yae{bottom:27.914804pt;}
.yd9{bottom:29.909109pt;}
.ya1{bottom:31.373921pt;}
.ycd{bottom:31.404744pt;}
.y13{bottom:32.992000pt;}
.yc5{bottom:34.826641pt;}
.ye3{bottom:37.480863pt;}
.yf9{bottom:40.096000pt;}
.y8f{bottom:41.148186pt;}
.y4f{bottom:43.704277pt;}
.y75{bottom:43.936000pt;}
.y3e{bottom:45.184000pt;}
.y2e{bottom:47.712000pt;}
.ybf{bottom:58.340721pt;}
.y88{bottom:59.072000pt;}
.y4b{bottom:65.164000pt;}
.y50{bottom:66.008966pt;}
.y12{bottom:71.392000pt;}
.y2d{bottom:74.912000pt;}
.y46{bottom:76.608000pt;}
.yea{bottom:78.249852pt;}
.yf8{bottom:78.816000pt;}
.y45{bottom:81.760000pt;}
.y74{bottom:85.888000pt;}
.y8e{bottom:87.844000pt;}
.y51{bottom:88.317060pt;}
.ye0{bottom:95.727320pt;}
.yc8{bottom:97.952000pt;}
.y2c{bottom:102.144000pt;}
.y87{bottom:102.272000pt;}
.yaf{bottom:103.089222pt;}
.yab{bottom:104.709690pt;}
.ybd{bottom:104.800000pt;}
.y73{bottom:108.288000pt;}
.ya0{bottom:110.524000pt;}
.y52{bottom:110.621067pt;}
.y11{bottom:110.944000pt;}
.y5b{bottom:113.248000pt;}
.y91{bottom:114.121940pt;}
.y78{bottom:115.488000pt;}
.y1f{bottom:120.384000pt;}
.yd4{bottom:122.999001pt;}
.y7b{bottom:123.040000pt;}
.yf7{bottom:125.408000pt;}
.yb2{bottom:126.790637pt;}
.yd6{bottom:127.296000pt;}
.y2b{bottom:129.344000pt;}
.ya9{bottom:129.542587pt;}
.y72{bottom:130.688000pt;}
.y53{bottom:132.938696pt;}
.y41{bottom:134.080000pt;}
.yc7{bottom:141.146667pt;}
.y77{bottom:142.053333pt;}
.ybc{bottom:142.240000pt;}
.y86{bottom:145.466667pt;}
.ydf{bottom:145.900285pt;}
.y1e{bottom:147.746667pt;}
.y7a{bottom:149.600000pt;}
.y71{bottom:153.093333pt;}
.yc4{bottom:154.876578pt;}
.y54{bottom:155.242703pt;}
.y10{bottom:155.746667pt;}
.y2a{bottom:156.546667pt;}
.ybe{bottom:163.440000pt;}
.yf6{bottom:164.133333pt;}
.ye9{bottom:164.539034pt;}
.y76{bottom:168.773333pt;}
.yd3{bottom:169.466317pt;}
.y1d{bottom:174.973333pt;}
.y70{bottom:175.493333pt;}
.y79{bottom:176.320000pt;}
.y55{bottom:177.546711pt;}
.y8c{bottom:180.066667pt;}
.y29{bottom:183.746667pt;}
.ya7{bottom:183.878399pt;}
.ydc{bottom:184.814270pt;}
.ya4{bottom:185.044654pt;}
.ya8{bottom:185.877693pt;}
.yd0{bottom:186.031665pt;}
.ye1{bottom:187.613333pt;}
.y40{bottom:187.653333pt;}
.y85{bottom:188.706667pt;}
.yb1{bottom:188.874023pt;}
.ye6{bottom:190.139049pt;}
.yad{bottom:193.680000pt;}
.y6f{bottom:197.893333pt;}
.yf{bottom:199.426667pt;}
.yb3{bottom:199.486175pt;}
.y56{bottom:199.850718pt;}
.yc2{bottom:202.081469pt;}
.yf5{bottom:202.853333pt;}
.y9f{bottom:202.906667pt;}
.yda{bottom:203.320008pt;}
.y5c{bottom:203.973333pt;}
.yce{bottom:204.504163pt;}
.ye4{bottom:209.862128pt;}
.y28{bottom:210.946667pt;}
.y1c{bottom:212.893333pt;}
.yb4{bottom:214.877508pt;}
.y5a{bottom:215.909604pt;}
.ye2{bottom:216.360000pt;}
.y8d{bottom:217.413333pt;}
.y93{bottom:218.201379pt;}
.yc6{bottom:219.227926pt;}
.y6e{bottom:220.293333pt;}
.yde{bottom:221.823055pt;}
.ycb{bottom:221.920000pt;}
.y57{bottom:222.188778pt;}
.yd7{bottom:223.920000pt;}
.y59{bottom:230.422532pt;}
.y92{bottom:230.884252pt;}
.y84{bottom:231.906667pt;}
.y97{bottom:232.986667pt;}
.y58{bottom:233.064961pt;}
.ye8{bottom:236.790660pt;}
.ye{bottom:237.826667pt;}
.y27{bottom:238.146667pt;}
.y6d{bottom:242.720000pt;}
.y3f{bottom:243.386667pt;}
.yb8{bottom:243.883231pt;}
.yf4{bottom:249.413333pt;}
.y1b{bottom:250.653333pt;}
.y98{bottom:255.680000pt;}
.y6c{bottom:265.120000pt;}
.yd2{bottom:266.395223pt;}
.yd{bottom:276.253333pt;}
.y21{bottom:278.266667pt;}
.y9a{bottom:278.373333pt;}
.yc0{bottom:286.235542pt;}
.y6b{bottom:287.520000pt;}
.yf3{bottom:288.160000pt;}
.ya2{bottom:290.544065pt;}
.yb5{bottom:293.236279pt;}
.y42{bottom:293.466667pt;}
.y1a{bottom:294.426667pt;}
.yff{bottom:300.773333pt;}
.y8b{bottom:301.026667pt;}
.y9e{bottom:308.773333pt;}
.y2f{bottom:308.866667pt;}
.y49{bottom:311.333333pt;}
.y60{bottom:312.506667pt;}
.yc{bottom:316.573333pt;}
.y83{bottom:323.706667pt;}
.y96{bottom:325.626724pt;}
.yf2{bottom:326.880000pt;}
.yb7{bottom:332.500533pt;}
.y17{bottom:336.480000pt;}
.ya5{bottom:337.210918pt;}
.y8a{bottom:338.853333pt;}
.y37{bottom:339.066667pt;}
.y5f{bottom:339.293333pt;}
.yb9{bottom:341.346351pt;}
.y44{bottom:344.293333pt;}
.y94{bottom:344.767028pt;}
.ya6{bottom:354.213248pt;}
.y6a{bottom:358.080000pt;}
.yfe{bottom:358.373333pt;}
.yb{bottom:359.453333pt;}
.yc3{bottom:365.266179pt;}
.y99{bottom:369.093333pt;}
.y43{bottom:371.653333pt;}
.yd8{bottom:372.336481pt;}
.yf1{bottom:373.440000pt;}
.y26{bottom:375.226667pt;}
.y69{bottom:380.480000pt;}
.ycc{bottom:381.970769pt;}
.yb6{bottom:383.268063pt;}
.y36{bottom:383.866667pt;}
.yca{bottom:384.386667pt;}
.ya{bottom:397.853333pt;}
.ydb{bottom:398.290886pt;}
.ycf{bottom:399.124833pt;}
.y25{bottom:402.586667pt;}
.y68{bottom:402.906667pt;}
.ya3{bottom:403.046003pt;}
.ye5{bottom:403.675920pt;}
.y3d{bottom:411.040000pt;}
.yf0{bottom:412.160000pt;}
.yc1{bottom:413.177995pt;}
.y9d{bottom:414.626667pt;}
.y5e{bottom:415.706667pt;}
.yfd{bottom:415.973333pt;}
.y67{bottom:425.306667pt;}
.y35{bottom:428.666667pt;}
.y9{bottom:436.293333pt;}
.y24{bottom:437.786667pt;}
.y66{bottom:447.706667pt;}
.y3c{bottom:451.706667pt;}
.yac{bottom:452.413333pt;}
.yef{bottom:458.906667pt;}
.y23{bottom:464.986667pt;}
.y65{bottom:470.106667pt;}
.y34{bottom:473.466667pt;}
.yfc{bottom:473.600000pt;}
.y8{bottom:475.813333pt;}
.y19{bottom:486.213333pt;}
.y18{bottom:489.280000pt;}
.y64{bottom:492.506667pt;}
.y3b{bottom:492.666667pt;}
.y5d{bottom:498.880000pt;}
.y22{bottom:500.226667pt;}
.yee{bottom:505.466667pt;}
.y63{bottom:514.906667pt;}
.y33{bottom:517.986667pt;}
.yc9{bottom:520.480000pt;}
.y7{bottom:520.613333pt;}
.y95{bottom:521.581057pt;}
.yfb{bottom:531.200000pt;}
.y3a{bottom:533.306667pt;}
.y62{bottom:537.306667pt;}
.y20{bottom:542.973333pt;}
.yd5{bottom:550.560000pt;}
.yed{bottom:552.186667pt;}
.y9c{bottom:558.106667pt;}
.y61{bottom:559.706667pt;}
.y39{bottom:560.666667pt;}
.y32{bottom:563.106667pt;}
.yba{bottom:573.253333pt;}
.y6{bottom:585.826667pt;}
.y7f{bottom:588.546667pt;}
.y16{bottom:589.853333pt;}
.yec{bottom:590.946667pt;}
.y7e{bottom:596.093333pt;}
.y81{bottom:603.493333pt;}
.y48{bottom:606.213333pt;}
.y31{bottom:611.013333pt;}
.y38{bottom:611.040000pt;}
.y9b{bottom:616.066667pt;}
.ybb{bottom:618.626667pt;}
.y15{bottom:618.693333pt;}
.y7c{bottom:629.786667pt;}
.yfa{bottom:635.546667pt;}
.yeb{bottom:635.586667pt;}
.y7d{bottom:637.346667pt;}
.y89{bottom:650.693333pt;}
.y5{bottom:656.226667pt;}
.y30{bottom:658.240000pt;}
.y80{bottom:658.266667pt;}
.y4a{bottom:660.026667pt;}
.y82{bottom:663.973333pt;}
.y14{bottom:665.893333pt;}
.y47{bottom:686.693333pt;}
.h25{height:20.998097pt;}
.h4{height:39.384277pt;}
.h24{height:40.407647pt;}
.h1{height:46.468750pt;}
.h32{height:47.953371pt;}
.h3e{height:50.867083pt;}
.h37{height:50.889852pt;}
.h1e{height:52.781250pt;}
.h33{height:53.748849pt;}
.h3{height:54.501940pt;}
.h4f{height:54.585995pt;}
.h45{height:54.822911pt;}
.h4b{height:54.921561pt;}
.h35{height:55.197327pt;}
.h11{height:56.891250pt;}
.h3f{height:58.181830pt;}
.h34{height:58.374511pt;}
.h41{height:58.568417pt;}
.h4c{height:59.732262pt;}
.h38{height:60.015318pt;}
.h3a{height:60.016054pt;}
.h43{height:60.690820pt;}
.h49{height:60.922188pt;}
.h40{height:61.939859pt;}
.h39{height:61.949143pt;}
.h50{height:62.067185pt;}
.h26{height:62.375000pt;}
.h14{height:62.968125pt;}
.h13{height:63.056812pt;}
.h18{height:64.203625pt;}
.h16{height:65.985625pt;}
.h1d{height:66.163125pt;}
.h51{height:66.448013pt;}
.h2{height:66.604313pt;}
.h46{height:66.686630pt;}
.h47{height:66.735088pt;}
.h4d{height:66.855173pt;}
.h12{height:67.316875pt;}
.h17{height:67.411687pt;}
.h2d{height:68.836652pt;}
.h1c{height:69.703125pt;}
.h1a{height:71.109375pt;}
.h1b{height:71.204188pt;}
.h20{height:72.090000pt;}
.hf{height:72.937500pt;}
.h2a{height:72.978750pt;}
.h15{height:73.034750pt;}
.h2b{height:73.103500pt;}
.h28{height:78.097500pt;}
.h1f{height:78.231000pt;}
.h30{height:81.203750pt;}
.h2f{height:81.664339pt;}
.h22{height:82.958750pt;}
.h2e{height:83.796110pt;}
.h21{height:93.562500pt;}
.h29{height:93.687250pt;}
.h3c{height:96.046875pt;}
.h3b{height:96.625171pt;}
.h10{height:100.125000pt;}
.h27{height:108.175833pt;}
.h19{height:113.296250pt;}
.he{height:113.393500pt;}
.h8{height:124.750000pt;}
.h9{height:124.874750pt;}
.hc{height:128.062500pt;}
.hb{height:128.190562pt;}
.h7{height:145.333750pt;}
.hd{height:149.192812pt;}
.ha{height:153.271862pt;}
.h6{height:228.916250pt;}
.h5{height:229.041000pt;}
.h23{height:241.918460pt;}
.h36{height:377.984973pt;}
.h4a{height:393.089259pt;}
.h4e{height:393.106533pt;}
.h31{height:393.116176pt;}
.h48{height:393.123609pt;}
.h3d{height:400.668964pt;}
.h44{height:402.361617pt;}
.h42{height:402.678952pt;}
.h2c{height:514.064129pt;}
.h0{height:720.000000pt;}
.w3{width:-20.706124pt;}
.w1{width:56.665593pt;}
.w2{width:370.423994pt;}
.wb{width:447.688044pt;}
.wa{width:447.794659pt;}
.w5{width:449.754655pt;}
.wc{width:464.879998pt;}
.w7{width:472.426932pt;}
.w6{width:495.118030pt;}
.w9{width:517.788125pt;}
.w8{width:517.807945pt;}
.w4{width:669.004248pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:8.171930pt;}
.x34{left:9.118387pt;}
.x2c{left:11.286533pt;}
.x1d{left:13.280000pt;}
.x32{left:14.397311pt;}
.x36{left:15.776094pt;}
.x30{left:16.796773pt;}
.x33{left:17.756774pt;}
.x31{left:18.742780pt;}
.x17{left:20.928000pt;}
.x2d{left:22.342243pt;}
.x68{left:26.896450pt;}
.x2b{left:28.448000pt;}
.x53{left:30.911153pt;}
.x12{left:32.608000pt;}
.x3b{left:36.000000pt;}
.x2a{left:39.776000pt;}
.x11{left:43.616000pt;}
.x1c{left:47.264000pt;}
.x16{left:51.104000pt;}
.x60{left:53.834890pt;}
.x5e{left:55.996320pt;}
.x2{left:57.061055pt;}
.x1{left:58.784000pt;}
.x4{left:63.808000pt;}
.x29{left:66.272000pt;}
.x37{left:72.768000pt;}
.x3{left:73.856000pt;}
.x23{left:77.696000pt;}
.x49{left:81.376000pt;}
.x66{left:88.928000pt;}
.xa{left:91.808000pt;}
.x45{left:96.512000pt;}
.x9{left:112.448000pt;}
.x27{left:134.306667pt;}
.x20{left:145.093333pt;}
.x6{left:146.213333pt;}
.x3c{left:149.440000pt;}
.x3d{left:172.133333pt;}
.x6b{left:210.966550pt;}
.xb{left:217.120000pt;}
.x74{left:221.512175pt;}
.x67{left:222.960000pt;}
.x5a{left:225.053333pt;}
.x5f{left:226.452168pt;}
.x6a{left:234.150824pt;}
.x54{left:235.905239pt;}
.x50{left:237.286310pt;}
.x6c{left:239.771982pt;}
.x77{left:243.117809pt;}
.x73{left:245.597898pt;}
.x5d{left:249.027661pt;}
.x76{left:251.267939pt;}
.x63{left:253.383612pt;}
.x57{left:259.199087pt;}
.x65{left:265.752299pt;}
.xf{left:278.240000pt;}
.x62{left:279.264445pt;}
.x64{left:287.445816pt;}
.x2e{left:301.208548pt;}
.x58{left:303.210568pt;}
.x6d{left:308.226667pt;}
.x3f{left:318.188869pt;}
.x7{left:327.360000pt;}
.xe{left:331.200000pt;}
.x75{left:334.512912pt;}
.x6f{left:338.466667pt;}
.x43{left:349.878397pt;}
.x22{left:353.893333pt;}
.xc{left:359.840000pt;}
.x10{left:364.960000pt;}
.xd{left:376.186667pt;}
.x8{left:378.106667pt;}
.x21{left:380.133333pt;}
.x56{left:384.217456pt;}
.x28{left:398.946667pt;}
.x35{left:402.416651pt;}
.x51{left:408.298315pt;}
.x52{left:411.522902pt;}
.x5{left:417.786667pt;}
.x14{left:420.000000pt;}
.x6e{left:421.626667pt;}
.x46{left:429.186667pt;}
.x59{left:430.969592pt;}
.x55{left:434.907569pt;}
.x38{left:436.773333pt;}
.x4f{left:456.613422pt;}
.x69{left:458.100375pt;}
.x72{left:478.333319pt;}
.x5c{left:485.875279pt;}
.x5b{left:487.560000pt;}
.x41{left:494.830716pt;}
.x19{left:497.186667pt;}
.x3e{left:504.800000pt;}
.x4e{left:510.240000pt;}
.x1f{left:512.346667pt;}
.x1b{left:519.933333pt;}
.x18{left:523.680000pt;}
.x1a{left:527.266667pt;}
.x61{left:529.290152pt;}
.x4d{left:535.040000pt;}
.x4c{left:542.626667pt;}
.x40{left:548.189671pt;}
.x1e{left:550.173333pt;}
.x70{left:557.733333pt;}
.x44{left:561.475219pt;}
.x47{left:565.280000pt;}
.x48{left:595.546667pt;}
.x3a{left:618.213333pt;}
.x71{left:656.026667pt;}
.x26{left:663.906667pt;}
.x42{left:683.117229pt;}
.x4a{left:686.266667pt;}
.x24{left:690.146667pt;}
.x25{left:707.106667pt;}
.x4b{left:708.960000pt;}
.x39{left:731.653333pt;}
.x13{left:766.746667pt;}
.x15{left:837.413333pt;}
}




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