
    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_db5122862925c7b7ada0c99d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_564ce6a857d2a9bcdee5f03c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962000;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_7d97376707674eb837700d9c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_6dc842f93293f599bab222b9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940000;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_00789a02ef809bc931dd650b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.723000;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_139a7c328801908b7130adbd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.049805;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_9fff54a44a5fd4bc22ef0327.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.049805;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_07353d5bb9a1e6b81e71694f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.940000;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_78dc23fe4ab72150d3929b8e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.882324;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_ce3f590b4f6c325536f46830.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.082000;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_5e7754ccc5dbceed3f16cbb7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.682129;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_de1150d26816f0ab57d70663.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.926000;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_f3dee301a2104d30ac50e8a5.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_0b81cc066b24613314cdcfe6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.893555;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_a854e961bf1ac1751f21f2f4.woff2')format("woff");}.fff{font-family:fff;line-height:1.106000;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_db387b41659f857a05aebd8f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.681152;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_1356b82ff836b85cd3b8c9a5.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.051758;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_64af8d67e7026bbb04662635.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_dde0ab6d26f8e6592cbe8bda.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.808105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_c95bbd16f9e7db3f3b9c82d4.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_afbae0a2c9aaa838f2e64fbd.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.674316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_ab185949c9adaac45c1456bd.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.706055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_44bd57ed9c8e0cc356c0754f.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_b5f9e1e9d5f172788362e314.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_a9968af85089e7816ab80c68.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_8cf9df90b876f5ec6f6fb4f8.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-5.938560px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.ls3f{letter-spacing:-1.064448px;}
.ls53{letter-spacing:-1.016064px;}
.ls1f{letter-spacing:-0.985824px;}
.ls17{letter-spacing:-0.937440px;}
.ls52{letter-spacing:-0.919296px;}
.ls1b{letter-spacing:-0.901152px;}
.ls1c{letter-spacing:-0.858816px;}
.ls18{letter-spacing:-0.840672px;}
.ls32{letter-spacing:-0.834624px;}
.ls1a{letter-spacing:-0.822528px;}
.ls26{letter-spacing:-0.801504px;}
.ls1e{letter-spacing:-0.780192px;}
.ls40{letter-spacing:-0.762048px;}
.ls21{letter-spacing:-0.761760px;}
.ls27{letter-spacing:-0.755136px;}
.ls6a{letter-spacing:-0.748512px;}
.ls1d{letter-spacing:-0.743904px;}
.ls5b{letter-spacing:-0.735264px;}
.ls22{letter-spacing:-0.722016px;}
.ls19{letter-spacing:-0.719712px;}
.ls23{letter-spacing:-0.715392px;}
.ls24{letter-spacing:-0.682272px;}
.ls28{letter-spacing:-0.675648px;}
.ls5c{letter-spacing:-0.669024px;}
.ls25{letter-spacing:-0.662400px;}
.ls12{letter-spacing:-0.604800px;}
.ls11{letter-spacing:-0.597600px;}
.ls6f{letter-spacing:-0.542880px;}
.ls41{letter-spacing:-0.334080px;}
.ls15{letter-spacing:-0.317376px;}
.ls20{letter-spacing:-0.292320px;}
.ls56{letter-spacing:-0.266112px;}
.ls16{letter-spacing:-0.258912px;}
.ls31{letter-spacing:-0.250560px;}
.ls14{letter-spacing:-0.242208px;}
.ls51{letter-spacing:-0.238464px;}
.ls13{letter-spacing:-0.225504px;}
.ls6c{letter-spacing:-0.205344px;}
.ls4e{letter-spacing:-0.198720px;}
.lse{letter-spacing:-0.158976px;}
.ls4f{letter-spacing:-0.125856px;}
.ls4c{letter-spacing:-0.119232px;}
.ls6b{letter-spacing:-0.086112px;}
.ls4b{letter-spacing:-0.079488px;}
.ls4d{letter-spacing:-0.059616px;}
.ls0{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.066240px;}
.ls49{letter-spacing:0.120000px;}
.ls64{letter-spacing:0.121200px;}
.ls2{letter-spacing:0.133056px;}
.ls10{letter-spacing:0.156816px;}
.ls2c{letter-spacing:0.264960px;}
.ls3{letter-spacing:0.266112px;}
.ls1{letter-spacing:0.285120px;}
.ls2b{letter-spacing:0.298080px;}
.ls5{letter-spacing:0.332640px;}
.lsf{letter-spacing:0.346896px;}
.ls60{letter-spacing:0.794880px;}
.ls68{letter-spacing:0.847872px;}
.ls67{letter-spacing:0.861120px;}
.ls37{letter-spacing:1.126080px;}
.ls8{letter-spacing:1.185408px;}
.ls66{letter-spacing:1.205568px;}
.ls43{letter-spacing:1.371168px;}
.ls54{letter-spacing:1.669248px;}
.ls33{letter-spacing:1.788480px;}
.ls4{letter-spacing:1.814400px;}
.ls29{letter-spacing:1.934208px;}
.ls9{letter-spacing:2.053440px;}
.ls2a{letter-spacing:2.119680px;}
.ls34{letter-spacing:2.517120px;}
.ls39{letter-spacing:2.583360px;}
.ls2d{letter-spacing:3.643200px;}
.ls50{letter-spacing:3.696192px;}
.ls7{letter-spacing:3.737664px;}
.ls6{letter-spacing:3.749760px;}
.ls55{letter-spacing:4.052160px;}
.ls3c{letter-spacing:4.106880px;}
.ls44{letter-spacing:4.212864px;}
.ls36{letter-spacing:4.239360px;}
.ls35{letter-spacing:4.252608px;}
.ls5a{letter-spacing:4.570560px;}
.ls6e{letter-spacing:4.636800px;}
.lsa{letter-spacing:4.868640px;}
.ls65{letter-spacing:4.901760px;}
.ls3a{letter-spacing:5.100480px;}
.ls6d{letter-spacing:5.564160px;}
.ls3b{letter-spacing:5.630400px;}
.lsd{letter-spacing:5.756256px;}
.lsc{letter-spacing:5.762880px;}
.ls61{letter-spacing:5.829120px;}
.ls48{letter-spacing:6.557760px;}
.lsb{letter-spacing:7.180416px;}
.ls63{letter-spacing:9.187488px;}
.ls5e{letter-spacing:9.313344px;}
.ls5f{letter-spacing:9.326592px;}
.ls5d{letter-spacing:9.366336px;}
.ls46{letter-spacing:10.452672px;}
.ls45{letter-spacing:10.465920px;}
.ls62{letter-spacing:10.797120px;}
.ls30{letter-spacing:11.128320px;}
.ls2f{letter-spacing:11.161440px;}
.ls58{letter-spacing:11.260800px;}
.ls38{letter-spacing:12.519360px;}
.ls3e{letter-spacing:12.678336px;}
.ls4a{letter-spacing:15.930720px;}
.ls42{letter-spacing:16.063200px;}
.ls59{letter-spacing:21.263040px;}
.ls57{letter-spacing:21.329280px;}
.ls69{letter-spacing:29.304576px;}
.ls47{letter-spacing:36.961920px;}
.ls2e{letter-spacing:53.985600px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws19{word-spacing:-23.218560px;}
.ws8{word-spacing:-22.993056px;}
.ws24{word-spacing:-22.976352px;}
.ws12{word-spacing:-22.926240px;}
.ws28{word-spacing:-22.901184px;}
.ws7{word-spacing:-20.016000px;}
.ws1f{word-spacing:-19.411200px;}
.ws2a{word-spacing:-18.414720px;}
.ws29{word-spacing:-17.679456px;}
.ws5{word-spacing:-17.402400px;}
.ws13{word-spacing:-16.560000px;}
.ws27{word-spacing:-16.547328px;}
.ws21{word-spacing:-16.480512px;}
.ws2d{word-spacing:-16.473888px;}
.ws20{word-spacing:-16.440768px;}
.ws23{word-spacing:-16.434144px;}
.ws22{word-spacing:-16.401024px;}
.ws2b{word-spacing:-16.361280px;}
.ws2c{word-spacing:-16.354656px;}
.ws2e{word-spacing:-16.321536px;}
.ws1c{word-spacing:-15.884352px;}
.ws1a{word-spacing:-15.877728px;}
.ws18{word-spacing:-15.844608px;}
.ws16{word-spacing:-15.837984px;}
.ws15{word-spacing:-15.804864px;}
.ws14{word-spacing:-15.798240px;}
.ws17{word-spacing:-15.758496px;}
.wsc{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.113228px;}
.wse{word-spacing:-14.376096px;}
.ws1d{word-spacing:-14.357952px;}
.wsf{word-spacing:-14.339808px;}
.ws9{word-spacing:-14.279328px;}
.wsd{word-spacing:-14.261184px;}
.wsb{word-spacing:-14.218848px;}
.ws25{word-spacing:-14.200704px;}
.wsa{word-spacing:-14.182560px;}
.ws10{word-spacing:-14.134176px;}
.ws26{word-spacing:-14.103936px;}
.ws4{word-spacing:-13.476672px;}
.ws2{word-spacing:-13.367376px;}
.ws3{word-spacing:-13.210560px;}
.ws11{word-spacing:-0.083520px;}
.ws6{word-spacing:-0.072000px;}
.ws1b{word-spacing:-0.066240px;}
.ws1{word-spacing:0.000000px;}
.ws2f{word-spacing:0.501120px;}
.ws1e{word-spacing:13.537200px;}
._c{margin-left:-4.040904px;}
._b{margin-left:-2.493759px;}
._9{margin-left:-1.007424px;}
._5{width:1.698879px;}
._8{width:3.669579px;}
._a{width:5.261760px;}
._3{width:6.727561px;}
._6{width:7.950754px;}
._f{width:9.406080px;}
._d{width:10.929600px;}
._e{width:12.386880px;}
._2{width:13.794897px;}
._17{width:15.301440px;}
._12{width:16.994880px;}
._13{width:18.283713px;}
._16{width:19.405374px;}
._10{width:20.428416px;}
._11{width:21.471873px;}
._14{width:22.975167px;}
._4{width:24.158059px;}
._1d{width:25.159680px;}
._1e{width:28.057281px;}
._1{width:29.152764px;}
._20{width:30.164617px;}
._15{width:36.432000px;}
._1c{width:37.860480px;}
._19{width:42.094080px;}
._7{width:46.549285px;}
._1a{width:49.230720px;}
._1f{width:50.583234px;}
._1b{width:55.036800px;}
._0{width:845.197156px;}
._18{width:847.408320px;}
.fc2{color:rgb(65,160,17);}
.fc1{color:rgb(255,101,0);}
.fc4{color:rgb(95,95,95);}
.fc3{color:rgb(56,56,56);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:33.977580px;}
.fs3{font-size:38.831520px;}
.fsd{font-size:41.760000px;}
.fs6{font-size:42.714672px;}
.fs7{font-size:43.685460px;}
.fsa{font-size:47.520000px;}
.fs2{font-size:48.539400px;}
.fs1{font-size:53.393340px;}
.fs5{font-size:54.364128px;}
.fs9{font-size:60.480000px;}
.fs8{font-size:66.240000px;}
.fs0{font-size:67.955160px;}
.fsb{font-size:72.000000px;}
.fsc{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.307155px;}
.y20{bottom:3.780000px;}
.y49{bottom:3.960000px;}
.y25{bottom:4.260000px;}
.y70{bottom:4.500000px;}
.y21{bottom:5.580000px;}
.ye2{bottom:7.860000px;}
.y11b{bottom:8.100000px;}
.yfc{bottom:8.219280px;}
.y114{bottom:8.274960px;}
.yec{bottom:8.275680px;}
.ye7{bottom:8.331360px;}
.y10e{bottom:8.337840px;}
.y144{bottom:8.389200px;}
.y13c{bottom:8.918400px;}
.yf0{bottom:8.997840px;}
.y154{bottom:9.036240px;}
.y111{bottom:9.057840px;}
.y15c{bottom:9.109200px;}
.y10a{bottom:9.115680px;}
.y106{bottom:9.175680px;}
.y12b{bottom:9.222720px;}
.y102{bottom:9.233520px;}
.y156{bottom:9.674700px;}
.y146{bottom:10.711800px;}
.y150{bottom:13.723440px;}
.yf5{bottom:14.935680px;}
.y13e{bottom:21.939900px;}
.y10c{bottom:25.260000px;}
.yfb{bottom:25.501440px;}
.yeb{bottom:25.557840px;}
.y113{bottom:25.560000px;}
.y10d{bottom:25.620000px;}
.y143{bottom:25.671360px;}
.yee{bottom:25.920000px;}
.y13b{bottom:26.200560px;}
.yef{bottom:26.280000px;}
.y153{bottom:26.318400px;}
.y110{bottom:26.340000px;}
.y15b{bottom:26.391360px;}
.y109{bottom:26.397840px;}
.y105{bottom:26.457840px;}
.y12a{bottom:26.504880px;}
.y101{bottom:26.515680px;}
.ye6{bottom:29.937840px;}
.y14f{bottom:31.005600px;}
.yf4{bottom:32.217840px;}
.ye9{bottom:42.480000px;}
.yea{bottom:42.840000px;}
.y142{bottom:42.953520px;}
.y129{bottom:43.424160px;}
.y100{bottom:43.434960px;}
.y13a{bottom:43.482720px;}
.y152{bottom:43.600560px;}
.y15a{bottom:43.673520px;}
.y108{bottom:43.680000px;}
.y104{bottom:43.740000px;}
.ye5{bottom:47.220000px;}
.yfa{bottom:47.455680px;}
.y14e{bottom:48.287760px;}
.yf2{bottom:49.140000px;}
.yf3{bottom:49.500000px;}
.y48{bottom:49.818900px;}
.y24{bottom:51.318900px;}
.y1e{bottom:51.755135px;}
.y47{bottom:52.340340px;}
.y135{bottom:56.455680px;}
.y23{bottom:58.458900px;}
.y141{bottom:60.235680px;}
.yfe{bottom:60.720000px;}
.y139{bottom:60.764880px;}
.y151{bottom:60.882720px;}
.y159{bottom:60.955680px;}
.yff{bottom:61.080000px;}
.yf8{bottom:64.374960px;}
.yf9{bottom:64.737840px;}
.y14d{bottom:65.207040px;}
.y128{bottom:65.378400px;}
.y1d{bottom:65.516055px;}
.y12d{bottom:67.221150px;}
.y134{bottom:73.737840px;}
.y140{bottom:77.517840px;}
.y138{bottom:78.047040px;}
.y158{bottom:78.237840px;}
.y1c{bottom:79.276975px;}
.y11d{bottom:81.451650px;}
.yf7{bottom:82.020000px;}
.y14c{bottom:82.489200px;}
.y127{bottom:82.660560px;}
.y133{bottom:91.020000px;}
.y1b{bottom:93.037895px;}
.y145{bottom:93.318900px;}
.y13f{bottom:94.800000px;}
.y46{bottom:95.223540px;}
.y137{bottom:95.329200px;}
.y157{bottom:95.520000px;}
.y14b{bottom:99.771360px;}
.yd2{bottom:99.861780px;}
.y126{bottom:99.942720px;}
.y1a0{bottom:102.090180px;}
.y1a{bottom:104.796565px;}
.y132{bottom:107.939280px;}
.y94{bottom:108.598260px;}
.yb2{bottom:112.103940px;}
.y136{bottom:112.611360px;}
.y45{bottom:114.300660px;}
.y6f{bottom:115.451220px;}
.y14a{bottom:117.053520px;}
.yf1{bottom:117.318900px;}
.yd1{bottom:118.983540px;}
.y19f{bottom:121.167300px;}
.y125{bottom:121.549200px;}
.y1bb{bottom:125.054580px;}
.y19{bottom:127.076149px;}
.y179{bottom:127.661700px;}
.y93{bottom:127.675380px;}
.y131{bottom:129.893520px;}
.yb1{bottom:132.621780px;}
.y44{bottom:133.013460px;}
.y149{bottom:134.335680px;}
.y6e{bottom:134.528340px;}
.yd0{bottom:138.060660px;}
.y124{bottom:138.831360px;}
.y19e{bottom:139.880100px;}
.y1ba{bottom:143.055300px;}
.y92{bottom:146.388180px;}
.y178{bottom:146.738820px;}
.y121{bottom:147.117120px;}
.y130{bottom:147.175680px;}
.y148{bottom:151.617840px;}
.yb0{bottom:151.698900px;}
.y43{bottom:152.090580px;}
.y6d{bottom:153.605460px;}
.y123{bottom:156.113520px;}
.ycf{bottom:156.773460px;}
.y19d{bottom:158.957220px;}
.y1b9{bottom:161.056020px;}
.y12f{bottom:164.457840px;}
.y91{bottom:165.465300px;}
.y177{bottom:165.815940px;}
.y120{bottom:168.723600px;}
.y147{bottom:168.900000px;}
.y42{bottom:171.167700px;}
.y6c{bottom:172.682580px;}
.y122{bottom:173.395680px;}
.yce{bottom:175.850580px;}
.y19c{bottom:178.034340px;}
.y1b8{bottom:179.056740px;}
.yaf{bottom:179.413140px;}
.y12e{bottom:181.740000px;}
.y176{bottom:184.528740px;}
.y90{bottom:184.542420px;}
.yed{bottom:184.818900px;}
.y41{bottom:190.244820px;}
.y11f{bottom:190.677840px;}
.y6b{bottom:191.395380px;}
.y18{bottom:191.803439px;}
.ycd{bottom:194.927700px;}
.yae{bottom:196.695300px;}
.y19b{bottom:196.747140px;}
.y1b7{bottom:197.057460px;}
.y17{bottom:202.118062px;}
.y1dd{bottom:203.184660px;}
.y175{bottom:203.605860px;}
.y8f{bottom:203.619540px;}
.y11e{bottom:207.960000px;}
.y40{bottom:208.957620px;}
.y6a{bottom:210.472500px;}
.y16{bottom:211.583245px;}
.yad{bottom:213.977460px;}
.ycc{bottom:214.004820px;}
.y1b6{bottom:215.058180px;}
.y19a{bottom:215.824260px;}
.y15{bottom:220.174718px;}
.y1dc{bottom:222.261780px;}
.y8e{bottom:222.332340px;}
.y174{bottom:222.682980px;}
.y3f{bottom:228.034740px;}
.y14{bottom:228.778327px;}
.y69{bottom:229.549620px;}
.ye8{bottom:229.818900px;}
.yac{bottom:230.896740px;}
.ycb{bottom:232.717620px;}
.y1b5{bottom:233.058900px;}
.y199{bottom:234.901380px;}
.y13{bottom:237.381936px;}
.y8d{bottom:241.409460px;}
.y173{bottom:241.760100px;}
.y12{bottom:245.973410px;}
.y3e{bottom:247.111860px;}
.yab{bottom:248.178900px;}
.y68{bottom:248.262420px;}
.y1db{bottom:249.983220px;}
.y1b4{bottom:251.052420px;}
.yca{bottom:251.794740px;}
.y198{bottom:253.978500px;}
.y11{bottom:254.577018px;}
.y172{bottom:260.472900px;}
.y8c{bottom:260.486580px;}
.y3d{bottom:265.824660px;}
.y1b3{bottom:269.053140px;}
.y1da{bottom:269.060340px;}
.yc9{bottom:270.871860px;}
.y10{bottom:272.269629px;}
.y197{bottom:272.691300px;}
.y67{bottom:276.348180px;}
.y8b{bottom:279.199380px;}
.y171{bottom:279.550020px;}
.y13d{bottom:280.818900px;}
.yaa{bottom:284.898900px;}
.y3c{bottom:284.901780px;}
.y1b2{bottom:287.053860px;}
.y1d9{bottom:288.137460px;}
.yc8{bottom:289.584660px;}
.ye4{bottom:291.318900px;}
.y196{bottom:291.768420px;}
.y66{bottom:295.425300px;}
.y8a{bottom:298.276500px;}
.y170{bottom:298.627140px;}
.y3b{bottom:303.978900px;}
.y1b1{bottom:305.054580px;}
.yc7{bottom:308.661780px;}
.y65{bottom:314.138100px;}
.y1d8{bottom:315.861780px;}
.y16f{bottom:317.339940px;}
.y89{bottom:317.353620px;}
.y1b0{bottom:323.055300px;}
.yc6{bottom:327.738900px;}
.y195{bottom:328.846260px;}
.y64{bottom:333.215220px;}
.ya9{bottom:333.521940px;}
.y1d7{bottom:334.938900px;}
.y16e{bottom:336.417060px;}
.y88{bottom:336.430740px;}
.y1af{bottom:341.056020px;}
.y3a{bottom:341.778900px;}
.y63{bottom:352.292340px;}
.ya8{bottom:352.599060px;}
.y87{bottom:355.143540px;}
.y16d{bottom:355.494180px;}
.ye3{bottom:357.318900px;}
.y1ae{bottom:359.056740px;}
.y194{bottom:364.847700px;}
.yc5{bottom:365.178900px;}
.yf{bottom:370.938095px;}
.ya7{bottom:371.311860px;}
.y62{bottom:371.369460px;}
.y1d6{bottom:372.018900px;}
.y86{bottom:374.220660px;}
.y16c{bottom:374.571300px;}
.y1ad{bottom:377.057460px;}
.y193{bottom:383.560500px;}
.ye1{bottom:384.318900px;}
.y61{bottom:390.082260px;}
.ya6{bottom:390.388980px;}
.y39{bottom:390.738900px;}
.y117{bottom:392.548980px;}
.y16b{bottom:393.284100px;}
.y85{bottom:393.297780px;}
.y12c{bottom:393.318900px;}
.y1ac{bottom:395.058180px;}
.yc4{bottom:402.310740px;}
.y192{bottom:402.637620px;}
.y1d5{bottom:408.008100px;}
.y60{bottom:409.159380px;}
.ya5{bottom:409.466100px;}
.y38{bottom:410.896740px;}
.y116{bottom:411.261780px;}
.y84{bottom:412.010580px;}
.y16a{bottom:412.361220px;}
.y1ab{bottom:413.058900px;}
.yc3{bottom:421.023540px;}
.y191{bottom:421.714740px;}
.ye0{bottom:423.856740px;}
.y1d4{bottom:426.008820px;}
.ya4{bottom:428.178900px;}
.y5f{bottom:428.236500px;}
.y115{bottom:430.338900px;}
.y83{bottom:431.087700px;}
.y169{bottom:431.438340px;}
.y37{bottom:436.812420px;}
.yc2{bottom:440.100660px;}
.y190{bottom:440.791860px;}
.ydf{bottom:441.138900px;}
.y1d3{bottom:444.009540px;}
.y5e{bottom:446.949300px;}
.y1aa{bottom:449.058900px;}
.y168{bottom:450.151140px;}
.y82{bottom:450.164820px;}
.y36{bottom:454.094580px;}
.y112{bottom:454.818900px;}
.ya3{bottom:455.889540px;}
.yc1{bottom:459.177780px;}
.y18f{bottom:459.504660px;}
.y1d2{bottom:462.010260px;}
.y5d{bottom:466.026420px;}
.yde{bottom:467.791860px;}
.y81{bottom:468.877620px;}
.y167{bottom:469.228260px;}
.y35{bottom:471.376740px;}
.ya2{bottom:473.171700px;}
.yc0{bottom:477.890580px;}
.y18e{bottom:478.581780px;}
.y1d1{bottom:480.010980px;}
.y5c{bottom:485.103540px;}
.y1a9{bottom:485.113620px;}
.ydd{bottom:486.868980px;}
.y80{bottom:487.954740px;}
.y166{bottom:488.305380px;}
.y34{bottom:488.658900px;}
.ybf{bottom:496.967700px;}
.y18d{bottom:497.666100px;}
.y1d0{bottom:498.011700px;}
.y10f{bottom:498.318900px;}
.ya1{bottom:499.450260px;}
.y5b{bottom:504.180660px;}
.y1a8{bottom:504.190740px;}
.ydc{bottom:505.946100px;}
.y7f{bottom:507.031860px;}
.y1cf{bottom:516.012420px;}
.ybe{bottom:516.044820px;}
.y18c{bottom:516.451620px;}
.ya0{bottom:516.732420px;}
.y5a{bottom:522.893460px;}
.y1a7{bottom:522.903540px;}
.y33{bottom:524.658900px;}
.y165{bottom:525.018900px;}
.y7e{bottom:526.108980px;}
.y1ce{bottom:534.013140px;}
.y9f{bottom:534.014580px;}
.ybd{bottom:535.121940px;}
.y18b{bottom:535.528740px;}
.y59{bottom:541.970580px;}
.y1a6{bottom:541.980660px;}
.y10b{bottom:543.318900px;}
.y7d{bottom:544.821780px;}
.y32{bottom:546.618900px;}
.y9e{bottom:551.296740px;}
.y1cd{bottom:552.013860px;}
.ye{bottom:553.603992px;}
.ybc{bottom:553.834740px;}
.y18a{bottom:554.605860px;}
.y58{bottom:561.047700px;}
.y1a5{bottom:561.057780px;}
.y164{bottom:561.738900px;}
.ydb{bottom:562.098900px;}
.y7c{bottom:563.898900px;}
.y31{bottom:568.578900px;}
.y1cc{bottom:570.014580px;}
.ybb{bottom:572.911860px;}
.y189{bottom:573.318660px;}
.y9d{bottom:577.212420px;}
.y57{bottom:579.760500px;}
.y1a4{bottom:579.770580px;}
.yd{bottom:580.130774px;}
.y107{bottom:586.818900px;}
.y1cb{bottom:588.015300px;}
.yba{bottom:591.988980px;}
.y188{bottom:592.395780px;}
.y11c{bottom:592.818900px;}
.yc{bottom:593.891694px;}
.y9c{bottom:594.494580px;}
.y30{bottom:598.815300px;}
.y56{bottom:598.837620px;}
.y163{bottom:598.841940px;}
.y1a3{bottom:598.847700px;}
.yda{bottom:600.258900px;}
.y7b{bottom:601.338900px;}
.y1ca{bottom:606.016020px;}
.yb9{bottom:610.701780px;}
.y187{bottom:611.472900px;}
.y9b{bottom:611.776740px;}
.y2f{bottom:616.097460px;}
.y162{bottom:617.554740px;}
.y55{bottom:617.914740px;}
.y1a2{bottom:617.924820px;}
.yb{bottom:620.685443px;}
.y1c9{bottom:624.016740px;}
.y9a{bottom:629.058900px;}
.yb8{bottom:629.778900px;}
.y186{bottom:630.550020px;}
.ya{bottom:634.446363px;}
.y54{bottom:636.627540px;}
.y161{bottom:636.631860px;}
.y1a1{bottom:636.637620px;}
.y7a{bottom:638.462100px;}
.y1c8{bottom:642.017460px;}
.y9{bottom:648.207282px;}
.y103{bottom:648.318900px;}
.yd9{bottom:648.881940px;}
.y185{bottom:649.262820px;}
.y2e{bottom:651.372420px;}
.y53{bottom:655.704660px;}
.y160{bottom:655.708980px;}
.y99{bottom:655.714740px;}
.y79{bottom:657.539220px;}
.y1c7{bottom:660.018180px;}
.y8{bottom:661.956068px;}
.yb7{bottom:667.218900px;}
.yd8{bottom:667.594740px;}
.y184{bottom:668.339940px;}
.y2d{bottom:668.654580px;}
.y15f{bottom:674.421780px;}
.y52{bottom:674.781780px;}
.y98{bottom:674.791860px;}
.y7{bottom:675.716987px;}
.y78{bottom:676.252020px;}
.y1c6{bottom:678.018900px;}
.y2c{bottom:685.936740px;}
.yd7{bottom:686.671860px;}
.y183{bottom:687.417060px;}
.y15e{bottom:693.498900px;}
.y51{bottom:693.858900px;}
.y97{bottom:693.868980px;}
.y77{bottom:695.329140px;}
.y1c5{bottom:696.017460px;}
.y2b{bottom:703.218900px;}
.yb6{bottom:704.337780px;}
.yd6{bottom:705.748980px;}
.y182{bottom:706.129860px;}
.yfd{bottom:709.818900px;}
.y96{bottom:712.581780px;}
.y1c4{bottom:714.018180px;}
.y76{bottom:714.406260px;}
.yb5{bottom:723.414900px;}
.yd5{bottom:724.826100px;}
.y181{bottom:725.206980px;}
.y15d{bottom:731.298900px;}
.y50{bottom:731.658900px;}
.y1c3{bottom:732.018900px;}
.y75{bottom:733.119060px;}
.y2a{bottom:739.589700px;}
.y6{bottom:739.849670px;}
.yb4{bottom:742.127700px;}
.yd4{bottom:743.538900px;}
.y180{bottom:744.284100px;}
.y1c2{bottom:750.013860px;}
.y74{bottom:752.196180px;}
.y5{bottom:760.260487px;}
.yb3{bottom:761.204820px;}
.y17f{bottom:762.996900px;}
.y29{bottom:765.501780px;}
.y1c1{bottom:768.014580px;}
.y95{bottom:769.458900px;}
.y73{bottom:771.273300px;}
.y155{bottom:775.818900px;}
.y4f{bottom:780.281940px;}
.yd3{bottom:780.978900px;}
.y17e{bottom:782.074020px;}
.y4{bottom:784.336030px;}
.y1c0{bottom:786.015300px;}
.yf6{bottom:789.318900px;}
.y72{bottom:789.986100px;}
.y28{bottom:791.058900px;}
.y4e{bottom:798.994740px;}
.y17d{bottom:801.151140px;}
.y1bf{bottom:804.016020px;}
.y3{bottom:808.411572px;}
.y71{bottom:809.063220px;}
.y4d{bottom:818.071860px;}
.y11a{bottom:819.318900px;}
.y17c{bottom:820.228260px;}
.y1be{bottom:822.016740px;}
.y2{bottom:832.499249px;}
.y27{bottom:833.898900px;}
.y4c{bottom:837.148980px;}
.y17b{bottom:838.941060px;}
.y1bd{bottom:840.017460px;}
.y4b{bottom:856.226100px;}
.y1bc{bottom:858.018180px;}
.y119{bottom:859.096740px;}
.y26{bottom:873.498900px;}
.y4a{bottom:874.938900px;}
.y17a{bottom:876.018900px;}
.y118{bottom:876.378900px;}
.y22{bottom:894.018900px;}
.y1f{bottom:909.318900px;}
.hf{height:19.500000px;}
.h9{height:25.177387px;}
.h1c{height:27.000000px;}
.h7{height:28.774156px;}
.h8{height:28.851819px;}
.hc{height:32.370926px;}
.h13{height:34.737120px;}
.h6{height:35.967695px;}
.ha{height:36.064774px;}
.h5{height:39.564465px;}
.hb{height:40.283819px;}
.h1d{height:40.989375px;}
.h24{height:41.993438px;}
.h14{height:43.061760px;}
.h1a{height:44.893125px;}
.h20{height:45.000000px;}
.h15{height:47.988281px;}
.h10{height:48.421440px;}
.h3{height:50.354774px;}
.h11{height:50.439375px;}
.h4{height:50.490684px;}
.h12{height:55.243125px;}
.h1b{height:55.352340px;}
.h19{height:55.372500px;}
.h2b{height:56.343949px;}
.h2a{height:56.355469px;}
.h17{height:61.053120px;}
.h1f{height:61.500000px;}
.h16{height:62.856000px;}
.h25{height:63.000000px;}
.h18{height:65.592000px;}
.h1e{height:66.000000px;}
.h21{height:69.000000px;}
.h23{height:79.500000px;}
.h22{height:100.500000px;}
.h28{height:114.000000px;}
.h29{height:187.500000px;}
.h27{height:201.000000px;}
.h26{height:226.500000px;}
.hd{height:1020.518400px;}
.he{height:1020.750000px;}
.h2{height:1021.620887px;}
.h0{height:1022.235000px;}
.h1{height:1022.250000px;}
.w5{width:9.000000px;}
.w7{width:10.500000px;}
.wd{width:18.000000px;}
.we{width:69.000000px;}
.w9{width:84.400500px;}
.w4{width:90.400500px;}
.wb{width:144.000000px;}
.wf{width:178.500000px;}
.w10{width:307.500000px;}
.wc{width:409.500000px;}
.w3{width:460.500000px;}
.w8{width:468.000000px;}
.w6{width:552.000000px;}
.wa{width:553.500000px;}
.w1{width:722.250000px;}
.w0{width:722.355000px;}
.w2{width:722.361150px;}
.x0{left:0.000000px;}
.x8{left:8.400000px;}
.x18{left:31.020000px;}
.x3{left:37.836462px;}
.x16{left:40.020000px;}
.x1{left:44.716922px;}
.x19{left:48.300000px;}
.x12{left:74.786850px;}
.x9{left:84.880650px;}
.xb{left:86.685000px;}
.xe{left:110.383050px;}
.xc{left:111.880650px;}
.x2{left:120.389847px;}
.x6{left:122.788500px;}
.x10{left:128.863500px;}
.x11{left:131.677050px;}
.xf{left:135.902010px;}
.x14{left:151.960650px;}
.x5{left:171.460650px;}
.x13{left:228.460650px;}
.x15{left:330.460650px;}
.x4{left:354.301215px;}
.x17{left:619.960650px;}
.xa{left:628.960650px;}
.x7{left:631.960650px;}
.xd{left:637.544730px;}
@media print{
.v1{vertical-align:-5.278720pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls3f{letter-spacing:-0.946176pt;}
.ls53{letter-spacing:-0.903168pt;}
.ls1f{letter-spacing:-0.876288pt;}
.ls17{letter-spacing:-0.833280pt;}
.ls52{letter-spacing:-0.817152pt;}
.ls1b{letter-spacing:-0.801024pt;}
.ls1c{letter-spacing:-0.763392pt;}
.ls18{letter-spacing:-0.747264pt;}
.ls32{letter-spacing:-0.741888pt;}
.ls1a{letter-spacing:-0.731136pt;}
.ls26{letter-spacing:-0.712448pt;}
.ls1e{letter-spacing:-0.693504pt;}
.ls40{letter-spacing:-0.677376pt;}
.ls21{letter-spacing:-0.677120pt;}
.ls27{letter-spacing:-0.671232pt;}
.ls6a{letter-spacing:-0.665344pt;}
.ls1d{letter-spacing:-0.661248pt;}
.ls5b{letter-spacing:-0.653568pt;}
.ls22{letter-spacing:-0.641792pt;}
.ls19{letter-spacing:-0.639744pt;}
.ls23{letter-spacing:-0.635904pt;}
.ls24{letter-spacing:-0.606464pt;}
.ls28{letter-spacing:-0.600576pt;}
.ls5c{letter-spacing:-0.594688pt;}
.ls25{letter-spacing:-0.588800pt;}
.ls12{letter-spacing:-0.537600pt;}
.ls11{letter-spacing:-0.531200pt;}
.ls6f{letter-spacing:-0.482560pt;}
.ls41{letter-spacing:-0.296960pt;}
.ls15{letter-spacing:-0.282112pt;}
.ls20{letter-spacing:-0.259840pt;}
.ls56{letter-spacing:-0.236544pt;}
.ls16{letter-spacing:-0.230144pt;}
.ls31{letter-spacing:-0.222720pt;}
.ls14{letter-spacing:-0.215296pt;}
.ls51{letter-spacing:-0.211968pt;}
.ls13{letter-spacing:-0.200448pt;}
.ls6c{letter-spacing:-0.182528pt;}
.ls4e{letter-spacing:-0.176640pt;}
.lse{letter-spacing:-0.141312pt;}
.ls4f{letter-spacing:-0.111872pt;}
.ls4c{letter-spacing:-0.105984pt;}
.ls6b{letter-spacing:-0.076544pt;}
.ls4b{letter-spacing:-0.070656pt;}
.ls4d{letter-spacing:-0.052992pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.058880pt;}
.ls49{letter-spacing:0.106667pt;}
.ls64{letter-spacing:0.107733pt;}
.ls2{letter-spacing:0.118272pt;}
.ls10{letter-spacing:0.139392pt;}
.ls2c{letter-spacing:0.235520pt;}
.ls3{letter-spacing:0.236544pt;}
.ls1{letter-spacing:0.253440pt;}
.ls2b{letter-spacing:0.264960pt;}
.ls5{letter-spacing:0.295680pt;}
.lsf{letter-spacing:0.308352pt;}
.ls60{letter-spacing:0.706560pt;}
.ls68{letter-spacing:0.753664pt;}
.ls67{letter-spacing:0.765440pt;}
.ls37{letter-spacing:1.000960pt;}
.ls8{letter-spacing:1.053696pt;}
.ls66{letter-spacing:1.071616pt;}
.ls43{letter-spacing:1.218816pt;}
.ls54{letter-spacing:1.483776pt;}
.ls33{letter-spacing:1.589760pt;}
.ls4{letter-spacing:1.612800pt;}
.ls29{letter-spacing:1.719296pt;}
.ls9{letter-spacing:1.825280pt;}
.ls2a{letter-spacing:1.884160pt;}
.ls34{letter-spacing:2.237440pt;}
.ls39{letter-spacing:2.296320pt;}
.ls2d{letter-spacing:3.238400pt;}
.ls50{letter-spacing:3.285504pt;}
.ls7{letter-spacing:3.322368pt;}
.ls6{letter-spacing:3.333120pt;}
.ls55{letter-spacing:3.601920pt;}
.ls3c{letter-spacing:3.650560pt;}
.ls44{letter-spacing:3.744768pt;}
.ls36{letter-spacing:3.768320pt;}
.ls35{letter-spacing:3.780096pt;}
.ls5a{letter-spacing:4.062720pt;}
.ls6e{letter-spacing:4.121600pt;}
.lsa{letter-spacing:4.327680pt;}
.ls65{letter-spacing:4.357120pt;}
.ls3a{letter-spacing:4.533760pt;}
.ls6d{letter-spacing:4.945920pt;}
.ls3b{letter-spacing:5.004800pt;}
.lsd{letter-spacing:5.116672pt;}
.lsc{letter-spacing:5.122560pt;}
.ls61{letter-spacing:5.181440pt;}
.ls48{letter-spacing:5.829120pt;}
.lsb{letter-spacing:6.382592pt;}
.ls63{letter-spacing:8.166656pt;}
.ls5e{letter-spacing:8.278528pt;}
.ls5f{letter-spacing:8.290304pt;}
.ls5d{letter-spacing:8.325632pt;}
.ls46{letter-spacing:9.291264pt;}
.ls45{letter-spacing:9.303040pt;}
.ls62{letter-spacing:9.597440pt;}
.ls30{letter-spacing:9.891840pt;}
.ls2f{letter-spacing:9.921280pt;}
.ls58{letter-spacing:10.009600pt;}
.ls38{letter-spacing:11.128320pt;}
.ls3e{letter-spacing:11.269632pt;}
.ls4a{letter-spacing:14.160640pt;}
.ls42{letter-spacing:14.278400pt;}
.ls59{letter-spacing:18.900480pt;}
.ls57{letter-spacing:18.959360pt;}
.ls69{letter-spacing:26.048512pt;}
.ls47{letter-spacing:32.855040pt;}
.ls2e{letter-spacing:47.987200pt;}
.ws19{word-spacing:-20.638720pt;}
.ws8{word-spacing:-20.438272pt;}
.ws24{word-spacing:-20.423424pt;}
.ws12{word-spacing:-20.378880pt;}
.ws28{word-spacing:-20.356608pt;}
.ws7{word-spacing:-17.792000pt;}
.ws1f{word-spacing:-17.254400pt;}
.ws2a{word-spacing:-16.368640pt;}
.ws29{word-spacing:-15.715072pt;}
.ws5{word-spacing:-15.468800pt;}
.ws13{word-spacing:-14.720000pt;}
.ws27{word-spacing:-14.708736pt;}
.ws21{word-spacing:-14.649344pt;}
.ws2d{word-spacing:-14.643456pt;}
.ws20{word-spacing:-14.614016pt;}
.ws23{word-spacing:-14.608128pt;}
.ws22{word-spacing:-14.578688pt;}
.ws2b{word-spacing:-14.543360pt;}
.ws2c{word-spacing:-14.537472pt;}
.ws2e{word-spacing:-14.508032pt;}
.ws1c{word-spacing:-14.119424pt;}
.ws1a{word-spacing:-14.113536pt;}
.ws18{word-spacing:-14.084096pt;}
.ws16{word-spacing:-14.078208pt;}
.ws15{word-spacing:-14.048768pt;}
.ws14{word-spacing:-14.042880pt;}
.ws17{word-spacing:-14.007552pt;}
.wsc{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.433980pt;}
.wse{word-spacing:-12.778752pt;}
.ws1d{word-spacing:-12.762624pt;}
.wsf{word-spacing:-12.746496pt;}
.ws9{word-spacing:-12.692736pt;}
.wsd{word-spacing:-12.676608pt;}
.wsb{word-spacing:-12.638976pt;}
.ws25{word-spacing:-12.622848pt;}
.wsa{word-spacing:-12.606720pt;}
.ws10{word-spacing:-12.563712pt;}
.ws26{word-spacing:-12.536832pt;}
.ws4{word-spacing:-11.979264pt;}
.ws2{word-spacing:-11.882112pt;}
.ws3{word-spacing:-11.742720pt;}
.ws11{word-spacing:-0.074240pt;}
.ws6{word-spacing:-0.064000pt;}
.ws1b{word-spacing:-0.058880pt;}
.ws1{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.445440pt;}
.ws1e{word-spacing:12.033067pt;}
._c{margin-left:-3.591915pt;}
._b{margin-left:-2.216675pt;}
._9{margin-left:-0.895488pt;}
._5{width:1.510115pt;}
._8{width:3.261848pt;}
._a{width:4.677120pt;}
._3{width:5.980054pt;}
._6{width:7.067337pt;}
._f{width:8.360960pt;}
._d{width:9.715200pt;}
._e{width:11.010560pt;}
._2{width:12.262131pt;}
._17{width:13.601280pt;}
._12{width:15.106560pt;}
._13{width:16.252189pt;}
._16{width:17.249221pt;}
._10{width:18.158592pt;}
._11{width:19.086109pt;}
._14{width:20.422371pt;}
._4{width:21.473831pt;}
._1d{width:22.364160pt;}
._1e{width:24.939805pt;}
._1{width:25.913568pt;}
._20{width:26.812993pt;}
._15{width:32.384000pt;}
._1c{width:33.653760pt;}
._19{width:37.416960pt;}
._7{width:41.377142pt;}
._1a{width:43.760640pt;}
._1f{width:44.962875pt;}
._1b{width:48.921600pt;}
._0{width:751.286361pt;}
._18{width:753.251840pt;}
.fs4{font-size:30.202293pt;}
.fs3{font-size:34.516907pt;}
.fsd{font-size:37.120000pt;}
.fs6{font-size:37.968597pt;}
.fs7{font-size:38.831520pt;}
.fsa{font-size:42.240000pt;}
.fs2{font-size:43.146133pt;}
.fs1{font-size:47.460747pt;}
.fs5{font-size:48.323669pt;}
.fs9{font-size:53.760000pt;}
.fs8{font-size:58.880000pt;}
.fs0{font-size:60.404587pt;}
.fsb{font-size:64.000000pt;}
.fsc{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.273027pt;}
.y20{bottom:3.360000pt;}
.y49{bottom:3.520000pt;}
.y25{bottom:3.786667pt;}
.y70{bottom:4.000000pt;}
.y21{bottom:4.960000pt;}
.ye2{bottom:6.986667pt;}
.y11b{bottom:7.200000pt;}
.yfc{bottom:7.306027pt;}
.y114{bottom:7.355520pt;}
.yec{bottom:7.356160pt;}
.ye7{bottom:7.405653pt;}
.y10e{bottom:7.411413pt;}
.y144{bottom:7.457067pt;}
.y13c{bottom:7.927467pt;}
.yf0{bottom:7.998080pt;}
.y154{bottom:8.032213pt;}
.y111{bottom:8.051413pt;}
.y15c{bottom:8.097067pt;}
.y10a{bottom:8.102827pt;}
.y106{bottom:8.156160pt;}
.y12b{bottom:8.197973pt;}
.y102{bottom:8.207573pt;}
.y156{bottom:8.599733pt;}
.y146{bottom:9.521600pt;}
.y150{bottom:12.198613pt;}
.yf5{bottom:13.276160pt;}
.y13e{bottom:19.502133pt;}
.y10c{bottom:22.453333pt;}
.yfb{bottom:22.667947pt;}
.yeb{bottom:22.718080pt;}
.y113{bottom:22.720000pt;}
.y10d{bottom:22.773333pt;}
.y143{bottom:22.818987pt;}
.yee{bottom:23.040000pt;}
.y13b{bottom:23.289387pt;}
.yef{bottom:23.360000pt;}
.y153{bottom:23.394133pt;}
.y110{bottom:23.413333pt;}
.y15b{bottom:23.458987pt;}
.y109{bottom:23.464747pt;}
.y105{bottom:23.518080pt;}
.y12a{bottom:23.559893pt;}
.y101{bottom:23.569493pt;}
.ye6{bottom:26.611413pt;}
.y14f{bottom:27.560533pt;}
.yf4{bottom:28.638080pt;}
.ye9{bottom:37.760000pt;}
.yea{bottom:38.080000pt;}
.y142{bottom:38.180907pt;}
.y129{bottom:38.599253pt;}
.y100{bottom:38.608853pt;}
.y13a{bottom:38.651307pt;}
.y152{bottom:38.756053pt;}
.y15a{bottom:38.820907pt;}
.y108{bottom:38.826667pt;}
.y104{bottom:38.880000pt;}
.ye5{bottom:41.973333pt;}
.yfa{bottom:42.182827pt;}
.y14e{bottom:42.922453pt;}
.yf2{bottom:43.680000pt;}
.yf3{bottom:44.000000pt;}
.y48{bottom:44.283467pt;}
.y24{bottom:45.616800pt;}
.y1e{bottom:46.004565pt;}
.y47{bottom:46.524747pt;}
.y135{bottom:50.182827pt;}
.y23{bottom:51.963467pt;}
.y141{bottom:53.542827pt;}
.yfe{bottom:53.973333pt;}
.y139{bottom:54.013227pt;}
.y151{bottom:54.117973pt;}
.y159{bottom:54.182827pt;}
.yff{bottom:54.293333pt;}
.yf8{bottom:57.222187pt;}
.yf9{bottom:57.544747pt;}
.y14d{bottom:57.961813pt;}
.y128{bottom:58.114133pt;}
.y1d{bottom:58.236493pt;}
.y12d{bottom:59.752133pt;}
.y134{bottom:65.544747pt;}
.y140{bottom:68.904747pt;}
.y138{bottom:69.375147pt;}
.y158{bottom:69.544747pt;}
.y1c{bottom:70.468422pt;}
.y11d{bottom:72.401467pt;}
.yf7{bottom:72.906667pt;}
.y14c{bottom:73.323733pt;}
.y127{bottom:73.476053pt;}
.y133{bottom:80.906667pt;}
.y1b{bottom:82.700351pt;}
.y145{bottom:82.950133pt;}
.y13f{bottom:84.266667pt;}
.y46{bottom:84.643147pt;}
.y137{bottom:84.737067pt;}
.y157{bottom:84.906667pt;}
.y14b{bottom:88.685653pt;}
.yd2{bottom:88.766027pt;}
.y126{bottom:88.837973pt;}
.y1a0{bottom:90.746827pt;}
.y1a{bottom:93.152502pt;}
.y132{bottom:95.946027pt;}
.y94{bottom:96.531787pt;}
.yb2{bottom:99.647947pt;}
.y136{bottom:100.098987pt;}
.y45{bottom:101.600587pt;}
.y6f{bottom:102.623307pt;}
.y14a{bottom:104.047573pt;}
.yf1{bottom:104.283467pt;}
.yd1{bottom:105.763147pt;}
.y19f{bottom:107.704267pt;}
.y125{bottom:108.043733pt;}
.y1bb{bottom:111.159627pt;}
.y19{bottom:112.956577pt;}
.y179{bottom:113.477067pt;}
.y93{bottom:113.489227pt;}
.y131{bottom:115.460907pt;}
.yb1{bottom:117.886027pt;}
.y44{bottom:118.234187pt;}
.y149{bottom:119.409493pt;}
.y6e{bottom:119.580747pt;}
.yd0{bottom:122.720587pt;}
.y124{bottom:123.405653pt;}
.y19e{bottom:124.337867pt;}
.y1ba{bottom:127.160267pt;}
.y92{bottom:130.122827pt;}
.y178{bottom:130.434507pt;}
.y121{bottom:130.770773pt;}
.y130{bottom:130.822827pt;}
.y148{bottom:134.771413pt;}
.yb0{bottom:134.843467pt;}
.y43{bottom:135.191627pt;}
.y6d{bottom:136.538187pt;}
.y123{bottom:138.767573pt;}
.ycf{bottom:139.354187pt;}
.y19d{bottom:141.295307pt;}
.y1b9{bottom:143.160907pt;}
.y12f{bottom:146.184747pt;}
.y91{bottom:147.080267pt;}
.y177{bottom:147.391947pt;}
.y120{bottom:149.976533pt;}
.y147{bottom:150.133333pt;}
.y42{bottom:152.149067pt;}
.y6c{bottom:153.495627pt;}
.y122{bottom:154.129493pt;}
.yce{bottom:156.311627pt;}
.y19c{bottom:158.252747pt;}
.y1b8{bottom:159.161547pt;}
.yaf{bottom:159.478347pt;}
.y12e{bottom:161.546667pt;}
.y176{bottom:164.025547pt;}
.y90{bottom:164.037707pt;}
.yed{bottom:164.283467pt;}
.y41{bottom:169.106507pt;}
.y11f{bottom:169.491413pt;}
.y6b{bottom:170.129227pt;}
.y18{bottom:170.491946pt;}
.ycd{bottom:173.269067pt;}
.yae{bottom:174.840267pt;}
.y19b{bottom:174.886347pt;}
.y1b7{bottom:175.162187pt;}
.y17{bottom:179.660499pt;}
.y1dd{bottom:180.608587pt;}
.y175{bottom:180.982987pt;}
.y8f{bottom:180.995147pt;}
.y11e{bottom:184.853333pt;}
.y40{bottom:185.740107pt;}
.y6a{bottom:187.086667pt;}
.y16{bottom:188.073995pt;}
.yad{bottom:190.202187pt;}
.ycc{bottom:190.226507pt;}
.y1b6{bottom:191.162827pt;}
.y19a{bottom:191.843787pt;}
.y15{bottom:195.710861pt;}
.y1dc{bottom:197.566027pt;}
.y8e{bottom:197.628747pt;}
.y174{bottom:197.940427pt;}
.y3f{bottom:202.697547pt;}
.y14{bottom:203.358513pt;}
.y69{bottom:204.044107pt;}
.ye8{bottom:204.283467pt;}
.yac{bottom:205.241547pt;}
.ycb{bottom:206.860107pt;}
.y1b5{bottom:207.163467pt;}
.y199{bottom:208.801227pt;}
.y13{bottom:211.006165pt;}
.y8d{bottom:214.586187pt;}
.y173{bottom:214.897867pt;}
.y12{bottom:218.643031pt;}
.y3e{bottom:219.654987pt;}
.yab{bottom:220.603467pt;}
.y68{bottom:220.677707pt;}
.y1db{bottom:222.207307pt;}
.y1b4{bottom:223.157707pt;}
.yca{bottom:223.817547pt;}
.y198{bottom:225.758667pt;}
.y11{bottom:226.290683pt;}
.y172{bottom:231.531467pt;}
.y8c{bottom:231.543627pt;}
.y3d{bottom:236.288587pt;}
.y1b3{bottom:239.158347pt;}
.y1da{bottom:239.164747pt;}
.yc9{bottom:240.774987pt;}
.y10{bottom:242.017448pt;}
.y197{bottom:242.392267pt;}
.y67{bottom:245.642827pt;}
.y8b{bottom:248.177227pt;}
.y171{bottom:248.488907pt;}
.y13d{bottom:249.616800pt;}
.yaa{bottom:253.243467pt;}
.y3c{bottom:253.246027pt;}
.y1b2{bottom:255.158987pt;}
.y1d9{bottom:256.122187pt;}
.yc8{bottom:257.408587pt;}
.ye4{bottom:258.950133pt;}
.y196{bottom:259.349707pt;}
.y66{bottom:262.600267pt;}
.y8a{bottom:265.134667pt;}
.y170{bottom:265.446347pt;}
.y3b{bottom:270.203467pt;}
.y1b1{bottom:271.159627pt;}
.yc7{bottom:274.366027pt;}
.y65{bottom:279.233867pt;}
.y1d8{bottom:280.766027pt;}
.y16f{bottom:282.079947pt;}
.y89{bottom:282.092107pt;}
.y1b0{bottom:287.160267pt;}
.yc6{bottom:291.323467pt;}
.y195{bottom:292.307787pt;}
.y64{bottom:296.191307pt;}
.ya9{bottom:296.463947pt;}
.y1d7{bottom:297.723467pt;}
.y16e{bottom:299.037387pt;}
.y88{bottom:299.049547pt;}
.y1af{bottom:303.160907pt;}
.y3a{bottom:303.803467pt;}
.y63{bottom:313.148747pt;}
.ya8{bottom:313.421387pt;}
.y87{bottom:315.683147pt;}
.y16d{bottom:315.994827pt;}
.ye3{bottom:317.616800pt;}
.y1ae{bottom:319.161547pt;}
.y194{bottom:324.309067pt;}
.yc5{bottom:324.603467pt;}
.yf{bottom:329.722751pt;}
.ya7{bottom:330.054987pt;}
.y62{bottom:330.106187pt;}
.y1d6{bottom:330.683467pt;}
.y86{bottom:332.640587pt;}
.y16c{bottom:332.952267pt;}
.y1ad{bottom:335.162187pt;}
.y193{bottom:340.942667pt;}
.ye1{bottom:341.616800pt;}
.y61{bottom:346.739787pt;}
.ya6{bottom:347.012427pt;}
.y39{bottom:347.323467pt;}
.y117{bottom:348.932427pt;}
.y16b{bottom:349.585867pt;}
.y85{bottom:349.598027pt;}
.y12c{bottom:349.616800pt;}
.y1ac{bottom:351.162827pt;}
.yc4{bottom:357.609547pt;}
.y192{bottom:357.900107pt;}
.y1d5{bottom:362.673867pt;}
.y60{bottom:363.697227pt;}
.ya5{bottom:363.969867pt;}
.y38{bottom:365.241547pt;}
.y116{bottom:365.566027pt;}
.y84{bottom:366.231627pt;}
.y16a{bottom:366.543307pt;}
.y1ab{bottom:367.163467pt;}
.yc3{bottom:374.243147pt;}
.y191{bottom:374.857547pt;}
.ye0{bottom:376.761547pt;}
.y1d4{bottom:378.674507pt;}
.ya4{bottom:380.603467pt;}
.y5f{bottom:380.654667pt;}
.y115{bottom:382.523467pt;}
.y83{bottom:383.189067pt;}
.y169{bottom:383.500747pt;}
.y37{bottom:388.277707pt;}
.yc2{bottom:391.200587pt;}
.y190{bottom:391.814987pt;}
.ydf{bottom:392.123467pt;}
.y1d3{bottom:394.675147pt;}
.y5e{bottom:397.288267pt;}
.y1aa{bottom:399.163467pt;}
.y168{bottom:400.134347pt;}
.y82{bottom:400.146507pt;}
.y36{bottom:403.639627pt;}
.y112{bottom:404.283467pt;}
.ya3{bottom:405.235147pt;}
.yc1{bottom:408.158027pt;}
.y18f{bottom:408.448587pt;}
.y1d2{bottom:410.675787pt;}
.y5d{bottom:414.245707pt;}
.yde{bottom:415.814987pt;}
.y81{bottom:416.780107pt;}
.y167{bottom:417.091787pt;}
.y35{bottom:419.001547pt;}
.ya2{bottom:420.597067pt;}
.yc0{bottom:424.791627pt;}
.y18e{bottom:425.406027pt;}
.y1d1{bottom:426.676427pt;}
.y5c{bottom:431.203147pt;}
.y1a9{bottom:431.212107pt;}
.ydd{bottom:432.772427pt;}
.y80{bottom:433.737547pt;}
.y166{bottom:434.049227pt;}
.y34{bottom:434.363467pt;}
.ybf{bottom:441.749067pt;}
.y18d{bottom:442.369867pt;}
.y1d0{bottom:442.677067pt;}
.y10f{bottom:442.950133pt;}
.ya1{bottom:443.955787pt;}
.y5b{bottom:448.160587pt;}
.y1a8{bottom:448.169547pt;}
.ydc{bottom:449.729867pt;}
.y7f{bottom:450.694987pt;}
.y1cf{bottom:458.677707pt;}
.ybe{bottom:458.706507pt;}
.y18c{bottom:459.068107pt;}
.ya0{bottom:459.317707pt;}
.y5a{bottom:464.794187pt;}
.y1a7{bottom:464.803147pt;}
.y33{bottom:466.363467pt;}
.y165{bottom:466.683467pt;}
.y7e{bottom:467.652427pt;}
.y1ce{bottom:474.678347pt;}
.y9f{bottom:474.679627pt;}
.ybd{bottom:475.663947pt;}
.y18b{bottom:476.025547pt;}
.y59{bottom:481.751627pt;}
.y1a6{bottom:481.760587pt;}
.y10b{bottom:482.950133pt;}
.y7d{bottom:484.286027pt;}
.y32{bottom:485.883467pt;}
.y9e{bottom:490.041547pt;}
.y1cd{bottom:490.678987pt;}
.ye{bottom:492.092437pt;}
.ybc{bottom:492.297547pt;}
.y18a{bottom:492.982987pt;}
.y58{bottom:498.709067pt;}
.y1a5{bottom:498.718027pt;}
.y164{bottom:499.323467pt;}
.ydb{bottom:499.643467pt;}
.y7c{bottom:501.243467pt;}
.y31{bottom:505.403467pt;}
.y1cc{bottom:506.679627pt;}
.ybb{bottom:509.254987pt;}
.y189{bottom:509.616587pt;}
.y9d{bottom:513.077707pt;}
.y57{bottom:515.342667pt;}
.y1a4{bottom:515.351627pt;}
.yd{bottom:515.671799pt;}
.y107{bottom:521.616800pt;}
.y1cb{bottom:522.680267pt;}
.yba{bottom:526.212427pt;}
.y188{bottom:526.574027pt;}
.y11c{bottom:526.950133pt;}
.yc{bottom:527.903728pt;}
.y9c{bottom:528.439627pt;}
.y30{bottom:532.280267pt;}
.y56{bottom:532.300107pt;}
.y163{bottom:532.303947pt;}
.y1a3{bottom:532.309067pt;}
.yda{bottom:533.563467pt;}
.y7b{bottom:534.523467pt;}
.y1ca{bottom:538.680907pt;}
.yb9{bottom:542.846027pt;}
.y187{bottom:543.531467pt;}
.y9b{bottom:543.801547pt;}
.y2f{bottom:547.642187pt;}
.y162{bottom:548.937547pt;}
.y55{bottom:549.257547pt;}
.y1a2{bottom:549.266507pt;}
.yb{bottom:551.720393pt;}
.y1c9{bottom:554.681547pt;}
.y9a{bottom:559.163467pt;}
.yb8{bottom:559.803467pt;}
.y186{bottom:560.488907pt;}
.ya{bottom:563.952322pt;}
.y54{bottom:565.891147pt;}
.y161{bottom:565.894987pt;}
.y1a1{bottom:565.900107pt;}
.y7a{bottom:567.521867pt;}
.y1c8{bottom:570.682187pt;}
.y9{bottom:576.184251pt;}
.y103{bottom:576.283467pt;}
.yd9{bottom:576.783947pt;}
.y185{bottom:577.122507pt;}
.y2e{bottom:578.997707pt;}
.y53{bottom:582.848587pt;}
.y160{bottom:582.852427pt;}
.y99{bottom:582.857547pt;}
.y79{bottom:584.479307pt;}
.y1c7{bottom:586.682827pt;}
.y8{bottom:588.405393pt;}
.yb7{bottom:593.083467pt;}
.yd8{bottom:593.417547pt;}
.y184{bottom:594.079947pt;}
.y2d{bottom:594.359627pt;}
.y15f{bottom:599.486027pt;}
.y52{bottom:599.806027pt;}
.y98{bottom:599.814987pt;}
.y7{bottom:600.637322pt;}
.y78{bottom:601.112907pt;}
.y1c6{bottom:602.683467pt;}
.y2c{bottom:609.721547pt;}
.yd7{bottom:610.374987pt;}
.y183{bottom:611.037387pt;}
.y15e{bottom:616.443467pt;}
.y51{bottom:616.763467pt;}
.y97{bottom:616.772427pt;}
.y77{bottom:618.070347pt;}
.y1c5{bottom:618.682187pt;}
.y2b{bottom:625.083467pt;}
.yb6{bottom:626.078027pt;}
.yd6{bottom:627.332427pt;}
.y182{bottom:627.670987pt;}
.yfd{bottom:630.950133pt;}
.y96{bottom:633.406027pt;}
.y1c4{bottom:634.682827pt;}
.y76{bottom:635.027787pt;}
.yb5{bottom:643.035467pt;}
.yd5{bottom:644.289867pt;}
.y181{bottom:644.628427pt;}
.y15d{bottom:650.043467pt;}
.y50{bottom:650.363467pt;}
.y1c3{bottom:650.683467pt;}
.y75{bottom:651.661387pt;}
.y2a{bottom:657.413067pt;}
.y6{bottom:657.644151pt;}
.yb4{bottom:659.669067pt;}
.yd4{bottom:660.923467pt;}
.y180{bottom:661.585867pt;}
.y1c2{bottom:666.678987pt;}
.y74{bottom:668.618827pt;}
.y5{bottom:675.787100pt;}
.yb3{bottom:676.626507pt;}
.y17f{bottom:678.219467pt;}
.y29{bottom:680.446027pt;}
.y1c1{bottom:682.679627pt;}
.y95{bottom:683.963467pt;}
.y73{bottom:685.576267pt;}
.y155{bottom:689.616800pt;}
.y4f{bottom:693.583947pt;}
.yd3{bottom:694.203467pt;}
.y17e{bottom:695.176907pt;}
.y4{bottom:697.187582pt;}
.y1c0{bottom:698.680267pt;}
.yf6{bottom:701.616800pt;}
.y72{bottom:702.209867pt;}
.y28{bottom:703.163467pt;}
.y4e{bottom:710.217547pt;}
.y17d{bottom:712.134347pt;}
.y1bf{bottom:714.680907pt;}
.y3{bottom:718.588064pt;}
.y71{bottom:719.167307pt;}
.y4d{bottom:727.174987pt;}
.y11a{bottom:728.283467pt;}
.y17c{bottom:729.091787pt;}
.y1be{bottom:730.681547pt;}
.y2{bottom:739.999333pt;}
.y27{bottom:741.243467pt;}
.y4c{bottom:744.132427pt;}
.y17b{bottom:745.725387pt;}
.y1bd{bottom:746.682187pt;}
.y4b{bottom:761.089867pt;}
.y1bc{bottom:762.682827pt;}
.y119{bottom:763.641547pt;}
.y26{bottom:776.443467pt;}
.y4a{bottom:777.723467pt;}
.y17a{bottom:778.683467pt;}
.y118{bottom:779.003467pt;}
.y22{bottom:794.683467pt;}
.y1f{bottom:808.283467pt;}
.hf{height:17.333333pt;}
.h9{height:22.379899pt;}
.h1c{height:24.000000pt;}
.h7{height:25.577028pt;}
.h8{height:25.646062pt;}
.hc{height:28.774156pt;}
.h13{height:30.877440pt;}
.h6{height:31.971285pt;}
.ha{height:32.057577pt;}
.h5{height:35.168413pt;}
.hb{height:35.807839pt;}
.h1d{height:36.435000pt;}
.h24{height:37.327500pt;}
.h14{height:38.277120pt;}
.h1a{height:39.905000pt;}
.h20{height:40.000000pt;}
.h15{height:42.656250pt;}
.h10{height:43.041280pt;}
.h3{height:44.759799pt;}
.h11{height:44.835000pt;}
.h4{height:44.880608pt;}
.h12{height:49.105000pt;}
.h1b{height:49.202080pt;}
.h19{height:49.220000pt;}
.h2b{height:50.083510pt;}
.h2a{height:50.093750pt;}
.h17{height:54.269440pt;}
.h1f{height:54.666667pt;}
.h16{height:55.872000pt;}
.h25{height:56.000000pt;}
.h18{height:58.304000pt;}
.h1e{height:58.666667pt;}
.h21{height:61.333333pt;}
.h23{height:70.666667pt;}
.h22{height:89.333333pt;}
.h28{height:101.333333pt;}
.h29{height:166.666667pt;}
.h27{height:178.666667pt;}
.h26{height:201.333333pt;}
.hd{height:907.127467pt;}
.he{height:907.333333pt;}
.h2{height:908.107455pt;}
.h0{height:908.653333pt;}
.h1{height:908.666667pt;}
.w5{width:8.000000pt;}
.w7{width:9.333333pt;}
.wd{width:16.000000pt;}
.we{width:61.333333pt;}
.w9{width:75.022667pt;}
.w4{width:80.356000pt;}
.wb{width:128.000000pt;}
.wf{width:158.666667pt;}
.w10{width:273.333333pt;}
.wc{width:364.000000pt;}
.w3{width:409.333333pt;}
.w8{width:416.000000pt;}
.w6{width:490.666667pt;}
.wa{width:492.000000pt;}
.w1{width:642.000000pt;}
.w0{width:642.093333pt;}
.w2{width:642.098800pt;}
.x0{left:0.000000pt;}
.x8{left:7.466667pt;}
.x18{left:27.573333pt;}
.x3{left:33.632411pt;}
.x16{left:35.573333pt;}
.x1{left:39.748375pt;}
.x19{left:42.933333pt;}
.x12{left:66.477200pt;}
.x9{left:75.449467pt;}
.xb{left:77.053333pt;}
.xe{left:98.118267pt;}
.xc{left:99.449467pt;}
.x2{left:107.013197pt;}
.x6{left:109.145333pt;}
.x10{left:114.545333pt;}
.x11{left:117.046267pt;}
.xf{left:120.801787pt;}
.x14{left:135.076133pt;}
.x5{left:152.409467pt;}
.x13{left:203.076133pt;}
.x15{left:293.742800pt;}
.x4{left:314.934414pt;}
.x17{left:551.076133pt;}
.xa{left:559.076133pt;}
.x7{left:561.742800pt;}
.xd{left:566.706427pt;}
}




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