
    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_c9c14bd1a9bed8e4b5de270d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_675c71c50e8989540469613a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c089ce3bc1047de2c6805b24.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.700000;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_1c58c14c0279c023d02e0a44.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_b5be972e73ac752fb87d2504.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.070312;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_a972bad1f0b3f0b147a22091.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_2c93d45f8d0d4d8c609922ce.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_dc86fb8391a39c35e12700fb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_aff6dc39644fcbd493e8ad24.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.949707;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_c4fa6e04f3ba74e524e1a46e.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a4620ee4de21a2d238a9d433.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.886230;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_1e9c38de4d490cde073b5ed2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.886230;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_12f0a4482ec20d0312c68213.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.858398;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_6f6d82b69d4d342098849741.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_6bcc29df3efc20978de18d3b.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;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_0c38836f47ecb3c34a1df98a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_1ce2e957308bd57e49e78b49.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_3f4c951c6552f3e7ba30f766.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_a9dc64ae8ae7877de1679675.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938477;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_c22dae379a37393f9beecb3b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.938477;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_b54691ed239c94d1e0b4d3c1.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_80c8c66b6b817f99fe311ee3.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_fdcfeefb878c733ab3bbab3f.woff2')format("woff");}.ff17{font-family:ff17;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);}
.v0{vertical-align:0.000000px;}
.ls62{letter-spacing:-0.496080px;}
.ls2a{letter-spacing:-0.417312px;}
.ls37{letter-spacing:-0.402480px;}
.ls41{letter-spacing:-0.383760px;}
.ls36{letter-spacing:-0.318240px;}
.ls25{letter-spacing:-0.302400px;}
.ls26{letter-spacing:-0.296352px;}
.ls22{letter-spacing:-0.278208px;}
.ls29{letter-spacing:-0.272160px;}
.ls1e{letter-spacing:-0.254016px;}
.ls6{letter-spacing:-0.251712px;}
.ls1f{letter-spacing:-0.247968px;}
.ls3c{letter-spacing:-0.238464px;}
.ls20{letter-spacing:-0.229824px;}
.ls23{letter-spacing:-0.223776px;}
.ls24{letter-spacing:-0.217728px;}
.ls2d{letter-spacing:-0.211680px;}
.ls8{letter-spacing:-0.198720px;}
.ls1d{letter-spacing:-0.177840px;}
.ls6e{letter-spacing:-0.165600px;}
.ls7{letter-spacing:-0.158976px;}
.ls27{letter-spacing:-0.133056px;}
.ls3b{letter-spacing:-0.125856px;}
.ls39{letter-spacing:-0.119232px;}
.ls3a{letter-spacing:-0.079488px;}
.ls38{letter-spacing:-0.039744px;}
.ls2{letter-spacing:0.000000px;}
.ls58{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.054432px;}
.ls59{letter-spacing:0.077760px;}
.ls57{letter-spacing:0.079200px;}
.ls42{letter-spacing:0.080640px;}
.ls3e{letter-spacing:0.085536px;}
.ls53{letter-spacing:0.092160px;}
.ls47{letter-spacing:0.093744px;}
.ls5a{letter-spacing:0.108864px;}
.ls11{letter-spacing:0.111888px;}
.ls10{letter-spacing:0.112032px;}
.ls15{letter-spacing:0.112176px;}
.ls13{letter-spacing:0.112320px;}
.ls74{letter-spacing:0.116928px;}
.ls71{letter-spacing:0.118080px;}
.ls6f{letter-spacing:0.119232px;}
.ls52{letter-spacing:0.119520px;}
.ls49{letter-spacing:0.120528px;}
.ls46{letter-spacing:0.120960px;}
.ls56{letter-spacing:0.124416px;}
.ls55{letter-spacing:0.132192px;}
.ls1{letter-spacing:0.145296px;}
.ls5{letter-spacing:0.147744px;}
.ls9{letter-spacing:0.156240px;}
.ls0{letter-spacing:0.163296px;}
.ls69{letter-spacing:0.171072px;}
.ls6c{letter-spacing:0.183024px;}
.ls3{letter-spacing:0.186624px;}
.ls44{letter-spacing:0.196416px;}
.ls5c{letter-spacing:0.200304px;}
.ls45{letter-spacing:0.206928px;}
.ls5e{letter-spacing:0.207072px;}
.ls51{letter-spacing:0.207360px;}
.ls6b{letter-spacing:0.214272px;}
.ls2c{letter-spacing:0.228096px;}
.ls12{letter-spacing:0.237600px;}
.ls4a{letter-spacing:0.241056px;}
.lsc{letter-spacing:0.247104px;}
.ls19{letter-spacing:0.256608px;}
.ls14{letter-spacing:0.261360px;}
.ls48{letter-spacing:0.267840px;}
.ls70{letter-spacing:0.275616px;}
.lsf{letter-spacing:0.285120px;}
.ls28{letter-spacing:0.289872px;}
.ls2b{letter-spacing:0.299376px;}
.lsd{letter-spacing:0.308880px;}
.ls73{letter-spacing:0.317376px;}
.ls21{letter-spacing:0.323136px;}
.ls68{letter-spacing:0.342720px;}
.ls3d{letter-spacing:0.357840px;}
.ls72{letter-spacing:0.359136px;}
.ls35{letter-spacing:0.398160px;}
.ls61{letter-spacing:0.498960px;}
.ls32{letter-spacing:1.127520px;}
.ls54{letter-spacing:1.252800px;}
.ls4f{letter-spacing:1.471680px;}
.ls2f{letter-spacing:2.518560px;}
.ls31{letter-spacing:3.692160px;}
.ls65{letter-spacing:4.132080px;}
.ls66{letter-spacing:4.132800px;}
.ls3f{letter-spacing:4.708800px;}
.ls40{letter-spacing:4.801392px;}
.ls60{letter-spacing:5.087232px;}
.ls4d{letter-spacing:5.097312px;}
.ls4e{letter-spacing:5.097600px;}
.ls64{letter-spacing:5.660640px;}
.ls30{letter-spacing:6.386688px;}
.ls5d{letter-spacing:6.596640px;}
.ls4b{letter-spacing:7.061760px;}
.ls6a{letter-spacing:7.369488px;}
.ls5b{letter-spacing:7.377120px;}
.ls5f{letter-spacing:7.391520px;}
.ls43{letter-spacing:8.321760px;}
.ls50{letter-spacing:9.766080px;}
.ls67{letter-spacing:11.403360px;}
.ls33{letter-spacing:13.108320px;}
.ls34{letter-spacing:15.425280px;}
.ls2e{letter-spacing:32.618448px;}
.ls63{letter-spacing:67.606704px;}
.lsa{letter-spacing:69.292512px;}
.ls4c{letter-spacing:69.379200px;}
.lsb{letter-spacing:90.614592px;}
.lse{letter-spacing:111.057984px;}
.ls6d{letter-spacing:842.774400px;}
.ls16{letter-spacing:1435.937760px;}
.ls1a{letter-spacing:1507.288320px;}
.ls17{letter-spacing:1574.624160px;}
.ls18{letter-spacing:1619.952480px;}
.ls1b{letter-spacing:1797.631776px;}
.ls1c{letter-spacing:1874.319264px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-36.829440px;}
.ws2c{word-spacing:-26.020800px;}
.ws9{word-spacing:-25.842960px;}
.ws1c{word-spacing:-25.702560px;}
.ws31{word-spacing:-25.637040px;}
.ws1d{word-spacing:-25.618320px;}
.ws2d{word-spacing:-25.524720px;}
.ws34{word-spacing:-23.577696px;}
.ws0{word-spacing:-21.803904px;}
.ws22{word-spacing:-21.780576px;}
.ws2{word-spacing:-21.765024px;}
.ws29{word-spacing:-21.749472px;}
.ws28{word-spacing:-21.741696px;}
.ws2a{word-spacing:-21.695040px;}
.ws1{word-spacing:-21.671712px;}
.ws4{word-spacing:-18.414720px;}
.ws1e{word-spacing:-18.374976px;}
.ws21{word-spacing:-18.335232px;}
.ws1f{word-spacing:-18.295488px;}
.ws20{word-spacing:-18.288864px;}
.ws5{word-spacing:-18.255744px;}
.ws33{word-spacing:-18.249120px;}
.ws27{word-spacing:-18.216000px;}
.ws25{word-spacing:-14.970240px;}
.ws2b{word-spacing:-14.510160px;}
.ws1b{word-spacing:-14.409360px;}
.ws30{word-spacing:-14.369040px;}
.ws2e{word-spacing:-14.353920px;}
.ws7{word-spacing:-14.167440px;}
.wsc{word-spacing:-13.668480px;}
.ws12{word-spacing:-13.535424px;}
.ws1a{word-spacing:-13.456800px;}
.wsf{word-spacing:-13.444704px;}
.ws19{word-spacing:-13.438656px;}
.wsb{word-spacing:-13.420512px;}
.wsa{word-spacing:-13.414464px;}
.ws15{word-spacing:-13.396320px;}
.wse{word-spacing:-13.390272px;}
.ws16{word-spacing:-13.251168px;}
.ws23{word-spacing:-12.677760px;}
.ws26{word-spacing:-12.606336px;}
.ws24{word-spacing:-12.530448px;}
.ws11{word-spacing:-11.062656px;}
.ws17{word-spacing:-11.038896px;}
.ws13{word-spacing:-11.029392px;}
.ws10{word-spacing:-11.024640px;}
.ws14{word-spacing:-11.000880px;}
.ws18{word-spacing:-10.996128px;}
.wsd{word-spacing:-10.986624px;}
.ws8{word-spacing:-0.206640px;}
.ws2f{word-spacing:-0.066240px;}
.ws6{word-spacing:0.000000px;}
.ws32{word-spacing:842.677344px;}
._19{margin-left:-15.712128px;}
._21{margin-left:-4.850352px;}
._15{margin-left:-3.775680px;}
._14{margin-left:-2.715840px;}
._3{margin-left:-1.049904px;}
._0{width:1.058832px;}
._f{width:2.848320px;}
._12{width:4.693104px;}
._10{width:6.486624px;}
._11{width:7.495920px;}
._13{width:8.865360px;}
._1b{width:9.869760px;}
._1a{width:11.128320px;}
._1c{width:12.353904px;}
._16{width:13.380480px;}
._1e{width:14.506560px;}
._17{width:15.508224px;}
._18{width:16.528752px;}
._1d{width:19.567296px;}
._1f{width:21.461760px;}
._24{width:31.397760px;}
._23{width:36.630720px;}
._26{width:96.842880px;}
._25{width:102.929184px;}
._b{width:341.896032px;}
._c{width:636.390288px;}
._20{width:844.919280px;}
._22{width:849.617856px;}
._5{width:956.169792px;}
._9{width:982.641456px;}
._a{width:1086.627456px;}
._d{width:1218.157488px;}
._e{width:1338.795648px;}
._8{width:1373.892624px;}
._7{width:1397.904048px;}
._4{width:1483.492320px;}
._2{width:1626.984576px;}
._6{width:1864.307664px;}
._1{width:2031.571584px;}
.fc3{color:rgb(54,95,145);}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:44.640000px;}
.fs7{font-size:47.520000px;}
.fs3{font-size:50.400000px;}
.fs5{font-size:60.480000px;}
.fsb{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fsa{font-size:83.520000px;}
.fs4{font-size:93.600000px;}
.fs9{font-size:96.480000px;}
.fs2{font-size:132.480000px;}
.y17{bottom:-9.540000px;}
.y0{bottom:0.000000px;}
.y19{bottom:3.300000px;}
.y5c{bottom:4.800000px;}
.y16{bottom:6.660000px;}
.y18d{bottom:10.320000px;}
.y1b1{bottom:11.100000px;}
.y171{bottom:11.160000px;}
.y163{bottom:14.220000px;}
.y1a3{bottom:19.800000px;}
.y18c{bottom:29.400000px;}
.y1b0{bottom:30.180000px;}
.y170{bottom:30.240000px;}
.y165{bottom:32.853300px;}
.y164{bottom:32.940000px;}
.y162{bottom:33.300000px;}
.y198{bottom:36.719400px;}
.y1a2{bottom:38.880000px;}
.y14{bottom:46.800000px;}
.y199{bottom:47.257350px;}
.y18b{bottom:48.480000px;}
.y16f{bottom:48.960000px;}
.y1af{bottom:49.260000px;}
.y1a5{bottom:52.898609px;}
.y19c{bottom:53.640000px;}
.y214{bottom:57.600000px;}
.y1a1{bottom:57.960000px;}
.y174{bottom:58.680000px;}
.y18a{bottom:67.560000px;}
.y1ae{bottom:67.980000px;}
.y16e{bottom:68.400000px;}
.y19b{bottom:72.720000px;}
.y1a0{bottom:77.400000px;}
.y1b6{bottom:77.700000px;}
.y213{bottom:77.760000px;}
.y173{bottom:78.120000px;}
.y189{bottom:86.640000px;}
.y1ad{bottom:87.060000px;}
.y16d{bottom:87.480000px;}
.y19a{bottom:91.800000px;}
.ya7{bottom:92.880000px;}
.yf2{bottom:95.400000px;}
.y19f{bottom:96.480000px;}
.y1b5{bottom:96.780000px;}
.y143{bottom:97.200000px;}
.y5a{bottom:102.240000px;}
.y176{bottom:103.173450px;}
.ybf{bottom:105.120000px;}
.y188{bottom:105.360000px;}
.y1ac{bottom:106.140000px;}
.y16c{bottom:106.560000px;}
.y167{bottom:106.777800px;}
.y8c{bottom:107.280000px;}
.y11e{bottom:110.160000px;}
.ya6{bottom:114.840000px;}
.y196{bottom:115.080000px;}
.y19e{bottom:115.560000px;}
.y1b4{bottom:115.860000px;}
.y172{bottom:116.280000px;}
.yf1{bottom:117.360000px;}
.y1b7{bottom:117.720000px;}
.y142{bottom:119.160000px;}
.y59{bottom:124.200000px;}
.y187{bottom:124.440000px;}
.y1ab{bottom:125.220000px;}
.y16b{bottom:125.640000px;}
.ybe{bottom:127.080000px;}
.y8b{bottom:128.880000px;}
.y11d{bottom:131.760000px;}
.y195{bottom:133.800000px;}
.y1b3{bottom:134.940000px;}
.y1e2{bottom:135.000000px;}
.y1a4{bottom:136.500000px;}
.ya5{bottom:136.800000px;}
.y178{bottom:140.321550px;}
.y19d{bottom:140.400000px;}
.y141{bottom:140.760000px;}
.y186{bottom:143.520000px;}
.y1aa{bottom:144.300000px;}
.y16a{bottom:144.720000px;}
.y58{bottom:146.160000px;}
.y20a{bottom:147.960000px;}
.y8a{bottom:150.840000px;}
.y194{bottom:152.880000px;}
.y168{bottom:153.896250px;}
.y1b2{bottom:154.020000px;}
.yf0{bottom:154.080000px;}
.y160{bottom:154.800000px;}
.y1e1{bottom:155.520000px;}
.ybd{bottom:156.600000px;}
.ya4{bottom:158.400000px;}
.y185{bottom:162.600000px;}
.y140{bottom:162.720000px;}
.y1a9{bottom:163.380000px;}
.y57{bottom:167.760000px;}
.y209{bottom:168.480000px;}
.y11c{bottom:168.840000px;}
.y169{bottom:169.920000px;}
.y193{bottom:171.960000px;}
.yef{bottom:176.040000px;}
.y15f{bottom:176.400000px;}
.ya3{bottom:180.360000px;}
.y184{bottom:181.680000px;}
.y1a8{bottom:182.460000px;}
.y13f{bottom:184.680000px;}
.y1e0{bottom:185.040000px;}
.y89{bottom:187.560000px;}
.y208{bottom:189.000000px;}
.y56{bottom:189.720000px;}
.y11b{bottom:190.440000px;}
.y192{bottom:191.400000px;}
.ybc{bottom:195.480000px;}
.yee{bottom:197.640000px;}
.y15e{bottom:198.360000px;}
.y183{bottom:200.760000px;}
.y1a7{bottom:201.540000px;}
.y1df{bottom:205.560000px;}
.y207{bottom:209.160000px;}
.y88{bottom:209.520000px;}
.y191{bottom:210.480000px;}
.y55{bottom:211.320000px;}
.y11a{bottom:212.400000px;}
.ya2{bottom:218.880000px;}
.yed{bottom:219.600000px;}
.y182{bottom:219.840000px;}
.y15d{bottom:219.960000px;}
.ybb{bottom:220.680000px;}
.y13e{bottom:221.400000px;}
.y1de{bottom:226.080000px;}
.y1a6{bottom:226.380000px;}
.y190{bottom:229.560000px;}
.y87{bottom:231.120000px;}
.y54{bottom:233.280000px;}
.y119{bottom:234.360000px;}
.y206{bottom:238.680000px;}
.y181{bottom:238.920000px;}
.yec{bottom:241.200000px;}
.y15c{bottom:241.920000px;}
.y13d{bottom:243.360000px;}
.y22b{bottom:245.880000px;}
.ya1{bottom:247.320000px;}
.y18f{bottom:248.640000px;}
.y86{bottom:253.080000px;}
.y53{bottom:255.240000px;}
.y1dd{bottom:255.600000px;}
.y118{bottom:255.960000px;}
.y180{bottom:258.000000px;}
.y205{bottom:259.200000px;}
.y15b{bottom:263.880000px;}
.y13c{bottom:264.960000px;}
.y18e{bottom:267.720000px;}
.y85{bottom:275.040000px;}
.y1dc{bottom:276.120000px;}
.y52{bottom:276.840000px;}
.y17f{bottom:277.080000px;}
.y117{bottom:277.920000px;}
.yeb{bottom:278.280000px;}
.y22a{bottom:282.960000px;}
.y13b{bottom:286.920000px;}
.y204{bottom:288.720000px;}
.y179{bottom:291.070500px;}
.y17e{bottom:296.160000px;}
.y1db{bottom:296.280000px;}
.y84{bottom:296.640000px;}
.y10b{bottom:297.720000px;}
.y116{bottom:299.520000px;}
.yea{bottom:299.880000px;}
.y15a{bottom:300.600000px;}
.y13a{bottom:308.520000px;}
.y203{bottom:309.240000px;}
.y51{bottom:313.560000px;}
.y17d{bottom:315.240000px;}
.y229{bottom:317.160000px;}
.y10a{bottom:319.680000px;}
.y115{bottom:321.480000px;}
.ye9{bottom:321.840000px;}
.y159{bottom:322.560000px;}
.y1da{bottom:325.800000px;}
.y202{bottom:329.760000px;}
.y139{bottom:330.480000px;}
.y83{bottom:333.360000px;}
.y17c{bottom:333.960000px;}
.y50{bottom:335.520000px;}
.y109{bottom:341.280000px;}
.ye8{bottom:343.800000px;}
.y158{bottom:344.160000px;}
.y1d9{bottom:346.320000px;}
.y228{bottom:351.000000px;}
.y138{bottom:352.440000px;}
.y17b{bottom:353.040000px;}
.y82{bottom:355.320000px;}
.y4f{bottom:357.480000px;}
.y114{bottom:358.200000px;}
.y201{bottom:359.280000px;}
.y108{bottom:363.240000px;}
.ye7{bottom:365.400000px;}
.y137{bottom:374.040000px;}
.y1d8{bottom:375.840000px;}
.y81{bottom:377.280000px;}
.y197{bottom:378.000000px;}
.y17a{bottom:378.240000px;}
.y4e{bottom:379.080000px;}
.y200{bottom:379.800000px;}
.y113{bottom:380.160000px;}
.y157{bottom:380.880000px;}
.y227{bottom:385.200000px;}
.ye6{bottom:387.360000px;}
.y136{bottom:396.000000px;}
.y1d7{bottom:396.360000px;}
.y80{bottom:398.880000px;}
.y107{bottom:399.960000px;}
.y4d{bottom:401.040000px;}
.y112{bottom:401.760000px;}
.y156{bottom:402.840000px;}
.ye5{bottom:408.960000px;}
.y1d6{bottom:416.880000px;}
.y135{bottom:417.600000px;}
.y226{bottom:419.400000px;}
.y7f{bottom:420.840000px;}
.y106{bottom:421.920000px;}
.y4c{bottom:423.000000px;}
.y111{bottom:423.720000px;}
.y155{bottom:424.800000px;}
.y1ff{bottom:429.480000px;}
.ye4{bottom:430.920000px;}
.y134{bottom:439.560000px;}
.y7e{bottom:442.440000px;}
.y105{bottom:443.880000px;}
.y225{bottom:444.240000px;}
.y4b{bottom:444.600000px;}
.y110{bottom:445.680000px;}
.y154{bottom:446.400000px;}
.y1fe{bottom:450.000000px;}
.ye3{bottom:452.880000px;}
.y7d{bottom:464.400000px;}
.y104{bottom:465.480000px;}
.y1d5{bottom:466.920000px;}
.y10f{bottom:467.280000px;}
.y153{bottom:468.360000px;}
.y224{bottom:469.440000px;}
.ye2{bottom:474.480000px;}
.y133{bottom:476.280000px;}
.y1fd{bottom:479.520000px;}
.y4a{bottom:481.320000px;}
.y7c{bottom:486.360000px;}
.y103{bottom:487.440000px;}
.y223{bottom:494.280000px;}
.y1d4{bottom:496.080000px;}
.ye1{bottom:496.440000px;}
.y10e{bottom:498.240000px;}
.y152{bottom:498.960000px;}
.y1fc{bottom:500.040000px;}
.y49{bottom:503.280000px;}
.y1bd{bottom:505.080000px;}
.y7b{bottom:507.960000px;}
.y102{bottom:509.040000px;}
.y1d3{bottom:516.600000px;}
.ye0{bottom:518.040000px;}
.y222{bottom:519.480000px;}
.y132{bottom:519.840000px;}
.y1fb{bottom:520.560000px;}
.y48{bottom:525.240000px;}
.y7a{bottom:529.920000px;}
.yba{bottom:530.640000px;}
.y101{bottom:531.000000px;}
.y175{bottom:534.000000px;}
.y177{bottom:534.420000px;}
.y1d2{bottom:537.120000px;}
.ydf{bottom:540.000000px;}
.y1fa{bottom:541.080000px;}
.y131{bottom:541.800000px;}
.y221{bottom:544.680000px;}
.y47{bottom:546.840000px;}
.y10d{bottom:547.200000px;}
.y151{bottom:550.800000px;}
.yb9{bottom:551.160000px;}
.y79{bottom:551.880000px;}
.y100{bottom:552.960000px;}
.y1bc{bottom:553.320000px;}
.yde{bottom:561.960000px;}
.y1d1{bottom:566.640000px;}
.y46{bottom:568.800000px;}
.y220{bottom:569.520000px;}
.y1f9{bottom:570.600000px;}
.yb8{bottom:571.680000px;}
.y150{bottom:572.760000px;}
.y130{bottom:574.200000px;}
.yff{bottom:574.560000px;}
.y10c{bottom:575.640000px;}
.y2e{bottom:581.040000px;}
.ydd{bottom:583.560000px;}
.y1d0{bottom:587.160000px;}
.y78{bottom:588.600000px;}
.y45{bottom:590.400000px;}
.y1f8{bottom:590.760000px;}
.yb7{bottom:592.200000px;}
.y14f{bottom:594.360000px;}
.y12f{bottom:594.720000px;}
.yfe{bottom:596.520000px;}
.y12{bottom:597.240000px;}
.ya0{bottom:600.840000px;}
.ydc{bottom:605.520000px;}
.y1cf{bottom:607.680000px;}
.y77{bottom:610.200000px;}
.y1f7{bottom:611.280000px;}
.y44{bottom:612.360000px;}
.y12e{bottom:615.240000px;}
.y14e{bottom:616.320000px;}
.yfd{bottom:618.120000px;}
.y2d{bottom:619.200000px;}
.y9f{bottom:622.440000px;}
.ydb{bottom:627.120000px;}
.y21f{bottom:631.080000px;}
.y1f6{bottom:631.800000px;}
.y76{bottom:632.160000px;}
.yb6{bottom:633.240000px;}
.y43{bottom:634.320000px;}
.y11{bottom:635.400000px;}
.y12d{bottom:635.760000px;}
.y1ce{bottom:637.200000px;}
.y14d{bottom:637.920000px;}
.y9e{bottom:644.400000px;}
.yda{bottom:649.080000px;}
.y2c{bottom:650.520000px;}
.y1f5{bottom:652.320000px;}
.yb5{bottom:653.760000px;}
.y75{bottom:654.120000px;}
.yfc{bottom:655.200000px;}
.y42{bottom:655.920000px;}
.y12c{bottom:656.280000px;}
.y1cd{bottom:657.720000px;}
.y9d{bottom:666.000000px;}
.y14c{bottom:668.520000px;}
.yd9{bottom:671.040000px;}
.y21e{bottom:672.120000px;}
.y1f4{bottom:672.840000px;}
.y10{bottom:673.560000px;}
.yb4{bottom:673.920000px;}
.y74{bottom:675.720000px;}
.yfb{bottom:676.800000px;}
.y41{bottom:677.880000px;}
.y2b{bottom:680.760000px;}
.y9c{bottom:687.960000px;}
.yb3{bottom:694.800000px;}
.y12b{bottom:697.320000px;}
.y73{bottom:697.680000px;}
.yfa{bottom:698.760000px;}
.y40{bottom:699.480000px;}
.yd8{bottom:701.280000px;}
.y1f3{bottom:702.360000px;}
.y1cc{bottom:707.400000px;}
.y9b{bottom:709.920000px;}
.y2a{bottom:710.640000px;}
.yf{bottom:711.720000px;}
.y1bb{bottom:714.600000px;}
.yb2{bottom:715.320000px;}
.y12a{bottom:717.480000px;}
.y72{bottom:719.280000px;}
.yf9{bottom:720.720000px;}
.y1f2{bottom:722.880000px;}
.yd7{bottom:726.120000px;}
.y1cb{bottom:727.920000px;}
.y9a{bottom:731.520000px;}
.y29{bottom:731.880000px;}
.y21d{bottom:735.480000px;}
.yb1{bottom:735.840000px;}
.y3f{bottom:736.560000px;}
.yd1{bottom:738.000000px;}
.y71{bottom:741.240000px;}
.yf8{bottom:742.320000px;}
.y1f1{bottom:743.400000px;}
.ye{bottom:749.880000px;}
.y28{bottom:752.760000px;}
.y99{bottom:753.480000px;}
.yb0{bottom:756.720000px;}
.y1ca{bottom:757.440000px;}
.y3e{bottom:758.160000px;}
.yd0{bottom:758.520000px;}
.y21c{bottom:760.680000px;}
.y70{bottom:763.200000px;}
.y14b{bottom:764.280000px;}
.y1f0{bottom:772.560000px;}
.yf7{bottom:772.920000px;}
.y27{bottom:774.000000px;}
.y210{bottom:775.080000px;}
.yaf{bottom:776.880000px;}
.yd6{bottom:777.960000px;}
.ycf{bottom:778.680000px;}
.y129{bottom:779.040000px;}
.y3d{bottom:780.120000px;}
.y98{bottom:783.000000px;}
.y6f{bottom:784.800000px;}
.y14a{bottom:785.880000px;}
.yd{bottom:788.040000px;}
.y1ef{bottom:793.080000px;}
.y26{bottom:794.880000px;}
.yce{bottom:799.200000px;}
.y128{bottom:799.560000px;}
.yd5{bottom:799.920000px;}
.y3c{bottom:802.080000px;}
.y6e{bottom:806.760000px;}
.y1c9{bottom:807.480000px;}
.y149{bottom:807.840000px;}
.y20f{bottom:813.240000px;}
.y1ee{bottom:813.600000px;}
.yae{bottom:813.960000px;}
.ycd{bottom:819.720000px;}
.y127{bottom:820.080000px;}
.yd4{bottom:821.880000px;}
.y97{bottom:822.960000px;}
.y3b{bottom:823.680000px;}
.yf6{bottom:824.760000px;}
.yc{bottom:825.120000px;}
.y1c8{bottom:828.000000px;}
.y6d{bottom:828.720000px;}
.y148{bottom:829.800000px;}
.y1ed{bottom:834.120000px;}
.yad{bottom:835.920000px;}
.ycc{bottom:840.240000px;}
.y126{bottom:840.600000px;}
.yd3{bottom:843.480000px;}
.y96{bottom:844.560000px;}
.y21b{bottom:844.920000px;}
.y3a{bottom:845.640000px;}
.yf5{bottom:846.720000px;}
.y1c7{bottom:848.520000px;}
.y147{bottom:851.400000px;}
.y25{bottom:855.000000px;}
.yac{bottom:857.880000px;}
.ycb{bottom:860.760000px;}
.y125{bottom:861.120000px;}
.yb{bottom:861.840000px;}
.y1ec{bottom:863.640000px;}
.y6c{bottom:865.440000px;}
.y95{bottom:866.520000px;}
.y1ba{bottom:867.240000px;}
.yf4{bottom:868.320000px;}
.y21a{bottom:869.760000px;}
.y146{bottom:873.360000px;}
.y24{bottom:876.240000px;}
.y1c6{bottom:877.680000px;}
.y124{bottom:881.280000px;}
.yca{bottom:881.640000px;}
.y39{bottom:882.360000px;}
.y1eb{bottom:884.160000px;}
.y6b{bottom:887.040000px;}
.yab{bottom:887.400000px;}
.y94{bottom:888.120000px;}
.y1b9{bottom:889.200000px;}
.y20e{bottom:889.560000px;}
.yf3{bottom:890.280000px;}
.y23{bottom:897.120000px;}
.y1c5{bottom:898.200000px;}
.ya{bottom:898.920000px;}
.yc9{bottom:901.800000px;}
.y38{bottom:904.320000px;}
.y1ea{bottom:904.680000px;}
.y219{bottom:906.480000px;}
.y6a{bottom:909.000000px;}
.y93{bottom:910.080000px;}
.y1b8{bottom:911.160000px;}
.y65{bottom:912.240000px;}
.yc8{bottom:922.320000px;}
.y37{bottom:925.920000px;}
.yaa{bottom:927.000000px;}
.y22{bottom:927.360000px;}
.y1c4{bottom:927.720000px;}
.y166{bottom:928.260000px;}
.y69{bottom:930.960000px;}
.y145{bottom:932.040000px;}
.y64{bottom:933.840000px;}
.y1e9{bottom:934.200000px;}
.y9{bottom:935.640000px;}
.y123{bottom:938.880000px;}
.y92{bottom:940.680000px;}
.yc7{bottom:942.840000px;}
.y218{bottom:947.520000px;}
.y36{bottom:947.880000px;}
.y1c3{bottom:948.240000px;}
.ya9{bottom:948.960000px;}
.y68{bottom:952.560000px;}
.y144{bottom:953.640000px;}
.y1e8{bottom:954.360000px;}
.y63{bottom:955.800000px;}
.y21{bottom:957.240000px;}
.y8{bottom:957.960000px;}
.yc6{bottom:963.360000px;}
.y20d{bottom:965.880000px;}
.y1c2{bottom:968.760000px;}
.y35{bottom:969.840000px;}
.ya8{bottom:970.920000px;}
.y67{bottom:974.520000px;}
.y1e7{bottom:974.880000px;}
.y122{bottom:975.600000px;}
.y62{bottom:977.760000px;}
.y20{bottom:978.480000px;}
.yd2{bottom:983.160000px;}
.yc5{bottom:983.880000px;}
.y217{bottom:985.680000px;}
.y1c1{bottom:989.280000px;}
.y34{bottom:991.440000px;}
.y91{bottom:992.520000px;}
.y7{bottom:996.120000px;}
.y121{bottom:997.560000px;}
.y1f{bottom:999.360000px;}
.y20c{bottom:1004.040000px;}
.yc4{bottom:1004.400000px;}
.y66{bottom:1005.120000px;}
.y33{bottom:1013.400000px;}
.y90{bottom:1014.480000px;}
.y1c0{bottom:1018.800000px;}
.y120{bottom:1019.160000px;}
.y216{bottom:1019.880000px;}
.y1e{bottom:1020.600000px;}
.y61{bottom:1021.320000px;}
.yc3{bottom:1024.920000px;}
.y6{bottom:1033.920000px;}
.y32{bottom:1035.000000px;}
.y8f{bottom:1036.080000px;}
.y1bf{bottom:1039.320000px;}
.y11f{bottom:1041.120000px;}
.y1d{bottom:1041.480000px;}
.y60{bottom:1042.920000px;}
.yc2{bottom:1045.440000px;}
.y215{bottom:1053.720000px;}
.y1e6{bottom:1054.440000px;}
.y31{bottom:1056.960000px;}
.y8e{bottom:1058.040000px;}
.y1be{bottom:1059.480000px;}
.y5f{bottom:1064.880000px;}
.yc1{bottom:1065.960000px;}
.y5{bottom:1069.560000px;}
.y1c{bottom:1071.720000px;}
.y20b{bottom:1074.960000px;}
.y30{bottom:1078.920000px;}
.y8d{bottom:1080.000000px;}
.y1e5{bottom:1083.960000px;}
.yc0{bottom:1086.480000px;}
.y4{bottom:1092.960000px;}
.y2f{bottom:1100.520000px;}
.y1b{bottom:1101.600000px;}
.y1e4{bottom:1104.480000px;}
.y161{bottom:1111.500000px;}
.y3{bottom:1115.640000px;}
.y22c{bottom:1116.720000px;}
.y5e{bottom:1123.560000px;}
.y1e3{bottom:1125.000000px;}
.y2{bottom:1138.320000px;}
.y1a{bottom:1138.680000px;}
.y5d{bottom:1145.160000px;}
.y15{bottom:1210.500000px;}
.y5b{bottom:1212.000000px;}
.y1{bottom:1212.840000px;}
.y18{bottom:1213.500000px;}
.y13{bottom:1216.800000px;}
.y212{bottom:1226.880000px;}
.y211{bottom:1247.040000px;}
.h9{height:16.500000px;}
.h8{height:19.500000px;}
.hd{height:27.000000px;}
.hf{height:32.520938px;}
.h7{height:36.692578px;}
.h2{height:44.149219px;}
.hc{height:47.988281px;}
.he{height:48.224531px;}
.h12{height:48.224891px;}
.h18{height:48.225011px;}
.hb{height:48.903750px;}
.h10{height:49.500000px;}
.h4{height:54.432000px;}
.h3{height:56.649375px;}
.h6{height:56.957344px;}
.h1a{height:60.804844px;}
.h19{height:64.304297px;}
.ha{height:68.143359px;}
.h5{height:96.449063px;}
.h16{height:156.000000px;}
.h13{height:183.960000px;}
.h11{height:186.000000px;}
.h17{height:243.000000px;}
.h15{height:393.120000px;}
.h14{height:394.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:12.000000px;}
.w5{width:49.500000px;}
.w2{width:51.000000px;}
.w9{width:58.320000px;}
.w6{width:60.000000px;}
.w4{width:69.000000px;}
.w7{width:283.500000px;}
.w8{width:295.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x15{left:8.830800px;}
.x14{left:13.431132px;}
.x1b{left:24.300120px;}
.x1a{left:30.419964px;}
.x19{left:31.860048px;}
.x12{left:34.868041px;}
.x2{left:42.430284px;}
.x3{left:49.515012px;}
.x13{left:54.472920px;}
.x8{left:61.564200px;}
.x18{left:66.209160px;}
.x1d{left:111.599856px;}
.x1{left:149.040144px;}
.x5{left:165.540168px;}
.x9{left:176.040144px;}
.x6{left:182.040156px;}
.xf{left:183.090096px;}
.xc{left:203.040144px;}
.x16{left:208.500000px;}
.xb{left:270.626580px;}
.x1c{left:298.743156px;}
.x11{left:301.868784px;}
.xe{left:327.834936px;}
.x17{left:492.000000px;}
.xa{left:626.482440px;}
.x7{left:709.500000px;}
.x4{left:775.500000px;}
.xd{left:790.920000px;}
.x10{left:797.040000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls62{letter-spacing:-0.440960pt;}
.ls2a{letter-spacing:-0.370944pt;}
.ls37{letter-spacing:-0.357760pt;}
.ls41{letter-spacing:-0.341120pt;}
.ls36{letter-spacing:-0.282880pt;}
.ls25{letter-spacing:-0.268800pt;}
.ls26{letter-spacing:-0.263424pt;}
.ls22{letter-spacing:-0.247296pt;}
.ls29{letter-spacing:-0.241920pt;}
.ls1e{letter-spacing:-0.225792pt;}
.ls6{letter-spacing:-0.223744pt;}
.ls1f{letter-spacing:-0.220416pt;}
.ls3c{letter-spacing:-0.211968pt;}
.ls20{letter-spacing:-0.204288pt;}
.ls23{letter-spacing:-0.198912pt;}
.ls24{letter-spacing:-0.193536pt;}
.ls2d{letter-spacing:-0.188160pt;}
.ls8{letter-spacing:-0.176640pt;}
.ls1d{letter-spacing:-0.158080pt;}
.ls6e{letter-spacing:-0.147200pt;}
.ls7{letter-spacing:-0.141312pt;}
.ls27{letter-spacing:-0.118272pt;}
.ls3b{letter-spacing:-0.111872pt;}
.ls39{letter-spacing:-0.105984pt;}
.ls3a{letter-spacing:-0.070656pt;}
.ls38{letter-spacing:-0.035328pt;}
.ls2{letter-spacing:0.000000pt;}
.ls58{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.048384pt;}
.ls59{letter-spacing:0.069120pt;}
.ls57{letter-spacing:0.070400pt;}
.ls42{letter-spacing:0.071680pt;}
.ls3e{letter-spacing:0.076032pt;}
.ls53{letter-spacing:0.081920pt;}
.ls47{letter-spacing:0.083328pt;}
.ls5a{letter-spacing:0.096768pt;}
.ls11{letter-spacing:0.099456pt;}
.ls10{letter-spacing:0.099584pt;}
.ls15{letter-spacing:0.099712pt;}
.ls13{letter-spacing:0.099840pt;}
.ls74{letter-spacing:0.103936pt;}
.ls71{letter-spacing:0.104960pt;}
.ls6f{letter-spacing:0.105984pt;}
.ls52{letter-spacing:0.106240pt;}
.ls49{letter-spacing:0.107136pt;}
.ls46{letter-spacing:0.107520pt;}
.ls56{letter-spacing:0.110592pt;}
.ls55{letter-spacing:0.117504pt;}
.ls1{letter-spacing:0.129152pt;}
.ls5{letter-spacing:0.131328pt;}
.ls9{letter-spacing:0.138880pt;}
.ls0{letter-spacing:0.145152pt;}
.ls69{letter-spacing:0.152064pt;}
.ls6c{letter-spacing:0.162688pt;}
.ls3{letter-spacing:0.165888pt;}
.ls44{letter-spacing:0.174592pt;}
.ls5c{letter-spacing:0.178048pt;}
.ls45{letter-spacing:0.183936pt;}
.ls5e{letter-spacing:0.184064pt;}
.ls51{letter-spacing:0.184320pt;}
.ls6b{letter-spacing:0.190464pt;}
.ls2c{letter-spacing:0.202752pt;}
.ls12{letter-spacing:0.211200pt;}
.ls4a{letter-spacing:0.214272pt;}
.lsc{letter-spacing:0.219648pt;}
.ls19{letter-spacing:0.228096pt;}
.ls14{letter-spacing:0.232320pt;}
.ls48{letter-spacing:0.238080pt;}
.ls70{letter-spacing:0.244992pt;}
.lsf{letter-spacing:0.253440pt;}
.ls28{letter-spacing:0.257664pt;}
.ls2b{letter-spacing:0.266112pt;}
.lsd{letter-spacing:0.274560pt;}
.ls73{letter-spacing:0.282112pt;}
.ls21{letter-spacing:0.287232pt;}
.ls68{letter-spacing:0.304640pt;}
.ls3d{letter-spacing:0.318080pt;}
.ls72{letter-spacing:0.319232pt;}
.ls35{letter-spacing:0.353920pt;}
.ls61{letter-spacing:0.443520pt;}
.ls32{letter-spacing:1.002240pt;}
.ls54{letter-spacing:1.113600pt;}
.ls4f{letter-spacing:1.308160pt;}
.ls2f{letter-spacing:2.238720pt;}
.ls31{letter-spacing:3.281920pt;}
.ls65{letter-spacing:3.672960pt;}
.ls66{letter-spacing:3.673600pt;}
.ls3f{letter-spacing:4.185600pt;}
.ls40{letter-spacing:4.267904pt;}
.ls60{letter-spacing:4.521984pt;}
.ls4d{letter-spacing:4.530944pt;}
.ls4e{letter-spacing:4.531200pt;}
.ls64{letter-spacing:5.031680pt;}
.ls30{letter-spacing:5.677056pt;}
.ls5d{letter-spacing:5.863680pt;}
.ls4b{letter-spacing:6.277120pt;}
.ls6a{letter-spacing:6.550656pt;}
.ls5b{letter-spacing:6.557440pt;}
.ls5f{letter-spacing:6.570240pt;}
.ls43{letter-spacing:7.397120pt;}
.ls50{letter-spacing:8.680960pt;}
.ls67{letter-spacing:10.136320pt;}
.ls33{letter-spacing:11.651840pt;}
.ls34{letter-spacing:13.711360pt;}
.ls2e{letter-spacing:28.994176pt;}
.ls63{letter-spacing:60.094848pt;}
.lsa{letter-spacing:61.593344pt;}
.ls4c{letter-spacing:61.670400pt;}
.lsb{letter-spacing:80.546304pt;}
.lse{letter-spacing:98.718208pt;}
.ls6d{letter-spacing:749.132800pt;}
.ls16{letter-spacing:1276.389120pt;}
.ls1a{letter-spacing:1339.811840pt;}
.ls17{letter-spacing:1399.665920pt;}
.ls18{letter-spacing:1439.957760pt;}
.ls1b{letter-spacing:1597.894912pt;}
.ls1c{letter-spacing:1666.061568pt;}
.ws3{word-spacing:-32.737280pt;}
.ws2c{word-spacing:-23.129600pt;}
.ws9{word-spacing:-22.971520pt;}
.ws1c{word-spacing:-22.846720pt;}
.ws31{word-spacing:-22.788480pt;}
.ws1d{word-spacing:-22.771840pt;}
.ws2d{word-spacing:-22.688640pt;}
.ws34{word-spacing:-20.957952pt;}
.ws0{word-spacing:-19.381248pt;}
.ws22{word-spacing:-19.360512pt;}
.ws2{word-spacing:-19.346688pt;}
.ws29{word-spacing:-19.332864pt;}
.ws28{word-spacing:-19.325952pt;}
.ws2a{word-spacing:-19.284480pt;}
.ws1{word-spacing:-19.263744pt;}
.ws4{word-spacing:-16.368640pt;}
.ws1e{word-spacing:-16.333312pt;}
.ws21{word-spacing:-16.297984pt;}
.ws1f{word-spacing:-16.262656pt;}
.ws20{word-spacing:-16.256768pt;}
.ws5{word-spacing:-16.227328pt;}
.ws33{word-spacing:-16.221440pt;}
.ws27{word-spacing:-16.192000pt;}
.ws25{word-spacing:-13.306880pt;}
.ws2b{word-spacing:-12.897920pt;}
.ws1b{word-spacing:-12.808320pt;}
.ws30{word-spacing:-12.772480pt;}
.ws2e{word-spacing:-12.759040pt;}
.ws7{word-spacing:-12.593280pt;}
.wsc{word-spacing:-12.149760pt;}
.ws12{word-spacing:-12.031488pt;}
.ws1a{word-spacing:-11.961600pt;}
.wsf{word-spacing:-11.950848pt;}
.ws19{word-spacing:-11.945472pt;}
.wsb{word-spacing:-11.929344pt;}
.wsa{word-spacing:-11.923968pt;}
.ws15{word-spacing:-11.907840pt;}
.wse{word-spacing:-11.902464pt;}
.ws16{word-spacing:-11.778816pt;}
.ws23{word-spacing:-11.269120pt;}
.ws26{word-spacing:-11.205632pt;}
.ws24{word-spacing:-11.138176pt;}
.ws11{word-spacing:-9.833472pt;}
.ws17{word-spacing:-9.812352pt;}
.ws13{word-spacing:-9.803904pt;}
.ws10{word-spacing:-9.799680pt;}
.ws14{word-spacing:-9.778560pt;}
.ws18{word-spacing:-9.774336pt;}
.wsd{word-spacing:-9.765888pt;}
.ws8{word-spacing:-0.183680pt;}
.ws2f{word-spacing:-0.058880pt;}
.ws6{word-spacing:0.000000pt;}
.ws32{word-spacing:749.046528pt;}
._19{margin-left:-13.966336pt;}
._21{margin-left:-4.311424pt;}
._15{margin-left:-3.356160pt;}
._14{margin-left:-2.414080pt;}
._3{margin-left:-0.933248pt;}
._0{width:0.941184pt;}
._f{width:2.531840pt;}
._12{width:4.171648pt;}
._10{width:5.765888pt;}
._11{width:6.663040pt;}
._13{width:7.880320pt;}
._1b{width:8.773120pt;}
._1a{width:9.891840pt;}
._1c{width:10.981248pt;}
._16{width:11.893760pt;}
._1e{width:12.894720pt;}
._17{width:13.785088pt;}
._18{width:14.692224pt;}
._1d{width:17.393152pt;}
._1f{width:19.077120pt;}
._24{width:27.909120pt;}
._23{width:32.560640pt;}
._26{width:86.082560pt;}
._25{width:91.492608pt;}
._b{width:303.907584pt;}
._c{width:565.680256pt;}
._20{width:751.039360pt;}
._22{width:755.215872pt;}
._5{width:849.928704pt;}
._9{width:873.459072pt;}
._a{width:965.891072pt;}
._d{width:1082.806656pt;}
._e{width:1190.040576pt;}
._8{width:1221.237888pt;}
._7{width:1242.581376pt;}
._4{width:1318.659840pt;}
._2{width:1446.208512pt;}
._6{width:1657.162368pt;}
._1{width:1805.841408pt;}
.fs8{font-size:39.680000pt;}
.fs7{font-size:42.240000pt;}
.fs3{font-size:44.800000pt;}
.fs5{font-size:53.760000pt;}
.fsb{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fsa{font-size:74.240000pt;}
.fs4{font-size:83.200000pt;}
.fs9{font-size:85.760000pt;}
.fs2{font-size:117.760000pt;}
.y17{bottom:-8.480000pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:2.933333pt;}
.y5c{bottom:4.266667pt;}
.y16{bottom:5.920000pt;}
.y18d{bottom:9.173333pt;}
.y1b1{bottom:9.866667pt;}
.y171{bottom:9.920000pt;}
.y163{bottom:12.640000pt;}
.y1a3{bottom:17.600000pt;}
.y18c{bottom:26.133333pt;}
.y1b0{bottom:26.826667pt;}
.y170{bottom:26.880000pt;}
.y165{bottom:29.202933pt;}
.y164{bottom:29.280000pt;}
.y162{bottom:29.600000pt;}
.y198{bottom:32.639467pt;}
.y1a2{bottom:34.560000pt;}
.y14{bottom:41.600000pt;}
.y199{bottom:42.006533pt;}
.y18b{bottom:43.093333pt;}
.y16f{bottom:43.520000pt;}
.y1af{bottom:43.786667pt;}
.y1a5{bottom:47.020985pt;}
.y19c{bottom:47.680000pt;}
.y214{bottom:51.200000pt;}
.y1a1{bottom:51.520000pt;}
.y174{bottom:52.160000pt;}
.y18a{bottom:60.053333pt;}
.y1ae{bottom:60.426667pt;}
.y16e{bottom:60.800000pt;}
.y19b{bottom:64.640000pt;}
.y1a0{bottom:68.800000pt;}
.y1b6{bottom:69.066667pt;}
.y213{bottom:69.120000pt;}
.y173{bottom:69.440000pt;}
.y189{bottom:77.013333pt;}
.y1ad{bottom:77.386667pt;}
.y16d{bottom:77.760000pt;}
.y19a{bottom:81.600000pt;}
.ya7{bottom:82.560000pt;}
.yf2{bottom:84.800000pt;}
.y19f{bottom:85.760000pt;}
.y1b5{bottom:86.026667pt;}
.y143{bottom:86.400000pt;}
.y5a{bottom:90.880000pt;}
.y176{bottom:91.709733pt;}
.ybf{bottom:93.440000pt;}
.y188{bottom:93.653333pt;}
.y1ac{bottom:94.346667pt;}
.y16c{bottom:94.720000pt;}
.y167{bottom:94.913600pt;}
.y8c{bottom:95.360000pt;}
.y11e{bottom:97.920000pt;}
.ya6{bottom:102.080000pt;}
.y196{bottom:102.293333pt;}
.y19e{bottom:102.720000pt;}
.y1b4{bottom:102.986667pt;}
.y172{bottom:103.360000pt;}
.yf1{bottom:104.320000pt;}
.y1b7{bottom:104.640000pt;}
.y142{bottom:105.920000pt;}
.y59{bottom:110.400000pt;}
.y187{bottom:110.613333pt;}
.y1ab{bottom:111.306667pt;}
.y16b{bottom:111.680000pt;}
.ybe{bottom:112.960000pt;}
.y8b{bottom:114.560000pt;}
.y11d{bottom:117.120000pt;}
.y195{bottom:118.933333pt;}
.y1b3{bottom:119.946667pt;}
.y1e2{bottom:120.000000pt;}
.y1a4{bottom:121.333333pt;}
.ya5{bottom:121.600000pt;}
.y178{bottom:124.730267pt;}
.y19d{bottom:124.800000pt;}
.y141{bottom:125.120000pt;}
.y186{bottom:127.573333pt;}
.y1aa{bottom:128.266667pt;}
.y16a{bottom:128.640000pt;}
.y58{bottom:129.920000pt;}
.y20a{bottom:131.520000pt;}
.y8a{bottom:134.080000pt;}
.y194{bottom:135.893333pt;}
.y168{bottom:136.796667pt;}
.y1b2{bottom:136.906667pt;}
.yf0{bottom:136.960000pt;}
.y160{bottom:137.600000pt;}
.y1e1{bottom:138.240000pt;}
.ybd{bottom:139.200000pt;}
.ya4{bottom:140.800000pt;}
.y185{bottom:144.533333pt;}
.y140{bottom:144.640000pt;}
.y1a9{bottom:145.226667pt;}
.y57{bottom:149.120000pt;}
.y209{bottom:149.760000pt;}
.y11c{bottom:150.080000pt;}
.y169{bottom:151.040000pt;}
.y193{bottom:152.853333pt;}
.yef{bottom:156.480000pt;}
.y15f{bottom:156.800000pt;}
.ya3{bottom:160.320000pt;}
.y184{bottom:161.493333pt;}
.y1a8{bottom:162.186667pt;}
.y13f{bottom:164.160000pt;}
.y1e0{bottom:164.480000pt;}
.y89{bottom:166.720000pt;}
.y208{bottom:168.000000pt;}
.y56{bottom:168.640000pt;}
.y11b{bottom:169.280000pt;}
.y192{bottom:170.133333pt;}
.ybc{bottom:173.760000pt;}
.yee{bottom:175.680000pt;}
.y15e{bottom:176.320000pt;}
.y183{bottom:178.453333pt;}
.y1a7{bottom:179.146667pt;}
.y1df{bottom:182.720000pt;}
.y207{bottom:185.920000pt;}
.y88{bottom:186.240000pt;}
.y191{bottom:187.093333pt;}
.y55{bottom:187.840000pt;}
.y11a{bottom:188.800000pt;}
.ya2{bottom:194.560000pt;}
.yed{bottom:195.200000pt;}
.y182{bottom:195.413333pt;}
.y15d{bottom:195.520000pt;}
.ybb{bottom:196.160000pt;}
.y13e{bottom:196.800000pt;}
.y1de{bottom:200.960000pt;}
.y1a6{bottom:201.226667pt;}
.y190{bottom:204.053333pt;}
.y87{bottom:205.440000pt;}
.y54{bottom:207.360000pt;}
.y119{bottom:208.320000pt;}
.y206{bottom:212.160000pt;}
.y181{bottom:212.373333pt;}
.yec{bottom:214.400000pt;}
.y15c{bottom:215.040000pt;}
.y13d{bottom:216.320000pt;}
.y22b{bottom:218.560000pt;}
.ya1{bottom:219.840000pt;}
.y18f{bottom:221.013333pt;}
.y86{bottom:224.960000pt;}
.y53{bottom:226.880000pt;}
.y1dd{bottom:227.200000pt;}
.y118{bottom:227.520000pt;}
.y180{bottom:229.333333pt;}
.y205{bottom:230.400000pt;}
.y15b{bottom:234.560000pt;}
.y13c{bottom:235.520000pt;}
.y18e{bottom:237.973333pt;}
.y85{bottom:244.480000pt;}
.y1dc{bottom:245.440000pt;}
.y52{bottom:246.080000pt;}
.y17f{bottom:246.293333pt;}
.y117{bottom:247.040000pt;}
.yeb{bottom:247.360000pt;}
.y22a{bottom:251.520000pt;}
.y13b{bottom:255.040000pt;}
.y204{bottom:256.640000pt;}
.y179{bottom:258.729333pt;}
.y17e{bottom:263.253333pt;}
.y1db{bottom:263.360000pt;}
.y84{bottom:263.680000pt;}
.y10b{bottom:264.640000pt;}
.y116{bottom:266.240000pt;}
.yea{bottom:266.560000pt;}
.y15a{bottom:267.200000pt;}
.y13a{bottom:274.240000pt;}
.y203{bottom:274.880000pt;}
.y51{bottom:278.720000pt;}
.y17d{bottom:280.213333pt;}
.y229{bottom:281.920000pt;}
.y10a{bottom:284.160000pt;}
.y115{bottom:285.760000pt;}
.ye9{bottom:286.080000pt;}
.y159{bottom:286.720000pt;}
.y1da{bottom:289.600000pt;}
.y202{bottom:293.120000pt;}
.y139{bottom:293.760000pt;}
.y83{bottom:296.320000pt;}
.y17c{bottom:296.853333pt;}
.y50{bottom:298.240000pt;}
.y109{bottom:303.360000pt;}
.ye8{bottom:305.600000pt;}
.y158{bottom:305.920000pt;}
.y1d9{bottom:307.840000pt;}
.y228{bottom:312.000000pt;}
.y138{bottom:313.280000pt;}
.y17b{bottom:313.813333pt;}
.y82{bottom:315.840000pt;}
.y4f{bottom:317.760000pt;}
.y114{bottom:318.400000pt;}
.y201{bottom:319.360000pt;}
.y108{bottom:322.880000pt;}
.ye7{bottom:324.800000pt;}
.y137{bottom:332.480000pt;}
.y1d8{bottom:334.080000pt;}
.y81{bottom:335.360000pt;}
.y197{bottom:336.000000pt;}
.y17a{bottom:336.213333pt;}
.y4e{bottom:336.960000pt;}
.y200{bottom:337.600000pt;}
.y113{bottom:337.920000pt;}
.y157{bottom:338.560000pt;}
.y227{bottom:342.400000pt;}
.ye6{bottom:344.320000pt;}
.y136{bottom:352.000000pt;}
.y1d7{bottom:352.320000pt;}
.y80{bottom:354.560000pt;}
.y107{bottom:355.520000pt;}
.y4d{bottom:356.480000pt;}
.y112{bottom:357.120000pt;}
.y156{bottom:358.080000pt;}
.ye5{bottom:363.520000pt;}
.y1d6{bottom:370.560000pt;}
.y135{bottom:371.200000pt;}
.y226{bottom:372.800000pt;}
.y7f{bottom:374.080000pt;}
.y106{bottom:375.040000pt;}
.y4c{bottom:376.000000pt;}
.y111{bottom:376.640000pt;}
.y155{bottom:377.600000pt;}
.y1ff{bottom:381.760000pt;}
.ye4{bottom:383.040000pt;}
.y134{bottom:390.720000pt;}
.y7e{bottom:393.280000pt;}
.y105{bottom:394.560000pt;}
.y225{bottom:394.880000pt;}
.y4b{bottom:395.200000pt;}
.y110{bottom:396.160000pt;}
.y154{bottom:396.800000pt;}
.y1fe{bottom:400.000000pt;}
.ye3{bottom:402.560000pt;}
.y7d{bottom:412.800000pt;}
.y104{bottom:413.760000pt;}
.y1d5{bottom:415.040000pt;}
.y10f{bottom:415.360000pt;}
.y153{bottom:416.320000pt;}
.y224{bottom:417.280000pt;}
.ye2{bottom:421.760000pt;}
.y133{bottom:423.360000pt;}
.y1fd{bottom:426.240000pt;}
.y4a{bottom:427.840000pt;}
.y7c{bottom:432.320000pt;}
.y103{bottom:433.280000pt;}
.y223{bottom:439.360000pt;}
.y1d4{bottom:440.960000pt;}
.ye1{bottom:441.280000pt;}
.y10e{bottom:442.880000pt;}
.y152{bottom:443.520000pt;}
.y1fc{bottom:444.480000pt;}
.y49{bottom:447.360000pt;}
.y1bd{bottom:448.960000pt;}
.y7b{bottom:451.520000pt;}
.y102{bottom:452.480000pt;}
.y1d3{bottom:459.200000pt;}
.ye0{bottom:460.480000pt;}
.y222{bottom:461.760000pt;}
.y132{bottom:462.080000pt;}
.y1fb{bottom:462.720000pt;}
.y48{bottom:466.880000pt;}
.y7a{bottom:471.040000pt;}
.yba{bottom:471.680000pt;}
.y101{bottom:472.000000pt;}
.y175{bottom:474.666667pt;}
.y177{bottom:475.040000pt;}
.y1d2{bottom:477.440000pt;}
.ydf{bottom:480.000000pt;}
.y1fa{bottom:480.960000pt;}
.y131{bottom:481.600000pt;}
.y221{bottom:484.160000pt;}
.y47{bottom:486.080000pt;}
.y10d{bottom:486.400000pt;}
.y151{bottom:489.600000pt;}
.yb9{bottom:489.920000pt;}
.y79{bottom:490.560000pt;}
.y100{bottom:491.520000pt;}
.y1bc{bottom:491.840000pt;}
.yde{bottom:499.520000pt;}
.y1d1{bottom:503.680000pt;}
.y46{bottom:505.600000pt;}
.y220{bottom:506.240000pt;}
.y1f9{bottom:507.200000pt;}
.yb8{bottom:508.160000pt;}
.y150{bottom:509.120000pt;}
.y130{bottom:510.400000pt;}
.yff{bottom:510.720000pt;}
.y10c{bottom:511.680000pt;}
.y2e{bottom:516.480000pt;}
.ydd{bottom:518.720000pt;}
.y1d0{bottom:521.920000pt;}
.y78{bottom:523.200000pt;}
.y45{bottom:524.800000pt;}
.y1f8{bottom:525.120000pt;}
.yb7{bottom:526.400000pt;}
.y14f{bottom:528.320000pt;}
.y12f{bottom:528.640000pt;}
.yfe{bottom:530.240000pt;}
.y12{bottom:530.880000pt;}
.ya0{bottom:534.080000pt;}
.ydc{bottom:538.240000pt;}
.y1cf{bottom:540.160000pt;}
.y77{bottom:542.400000pt;}
.y1f7{bottom:543.360000pt;}
.y44{bottom:544.320000pt;}
.y12e{bottom:546.880000pt;}
.y14e{bottom:547.840000pt;}
.yfd{bottom:549.440000pt;}
.y2d{bottom:550.400000pt;}
.y9f{bottom:553.280000pt;}
.ydb{bottom:557.440000pt;}
.y21f{bottom:560.960000pt;}
.y1f6{bottom:561.600000pt;}
.y76{bottom:561.920000pt;}
.yb6{bottom:562.880000pt;}
.y43{bottom:563.840000pt;}
.y11{bottom:564.800000pt;}
.y12d{bottom:565.120000pt;}
.y1ce{bottom:566.400000pt;}
.y14d{bottom:567.040000pt;}
.y9e{bottom:572.800000pt;}
.yda{bottom:576.960000pt;}
.y2c{bottom:578.240000pt;}
.y1f5{bottom:579.840000pt;}
.yb5{bottom:581.120000pt;}
.y75{bottom:581.440000pt;}
.yfc{bottom:582.400000pt;}
.y42{bottom:583.040000pt;}
.y12c{bottom:583.360000pt;}
.y1cd{bottom:584.640000pt;}
.y9d{bottom:592.000000pt;}
.y14c{bottom:594.240000pt;}
.yd9{bottom:596.480000pt;}
.y21e{bottom:597.440000pt;}
.y1f4{bottom:598.080000pt;}
.y10{bottom:598.720000pt;}
.yb4{bottom:599.040000pt;}
.y74{bottom:600.640000pt;}
.yfb{bottom:601.600000pt;}
.y41{bottom:602.560000pt;}
.y2b{bottom:605.120000pt;}
.y9c{bottom:611.520000pt;}
.yb3{bottom:617.600000pt;}
.y12b{bottom:619.840000pt;}
.y73{bottom:620.160000pt;}
.yfa{bottom:621.120000pt;}
.y40{bottom:621.760000pt;}
.yd8{bottom:623.360000pt;}
.y1f3{bottom:624.320000pt;}
.y1cc{bottom:628.800000pt;}
.y9b{bottom:631.040000pt;}
.y2a{bottom:631.680000pt;}
.yf{bottom:632.640000pt;}
.y1bb{bottom:635.200000pt;}
.yb2{bottom:635.840000pt;}
.y12a{bottom:637.760000pt;}
.y72{bottom:639.360000pt;}
.yf9{bottom:640.640000pt;}
.y1f2{bottom:642.560000pt;}
.yd7{bottom:645.440000pt;}
.y1cb{bottom:647.040000pt;}
.y9a{bottom:650.240000pt;}
.y29{bottom:650.560000pt;}
.y21d{bottom:653.760000pt;}
.yb1{bottom:654.080000pt;}
.y3f{bottom:654.720000pt;}
.yd1{bottom:656.000000pt;}
.y71{bottom:658.880000pt;}
.yf8{bottom:659.840000pt;}
.y1f1{bottom:660.800000pt;}
.ye{bottom:666.560000pt;}
.y28{bottom:669.120000pt;}
.y99{bottom:669.760000pt;}
.yb0{bottom:672.640000pt;}
.y1ca{bottom:673.280000pt;}
.y3e{bottom:673.920000pt;}
.yd0{bottom:674.240000pt;}
.y21c{bottom:676.160000pt;}
.y70{bottom:678.400000pt;}
.y14b{bottom:679.360000pt;}
.y1f0{bottom:686.720000pt;}
.yf7{bottom:687.040000pt;}
.y27{bottom:688.000000pt;}
.y210{bottom:688.960000pt;}
.yaf{bottom:690.560000pt;}
.yd6{bottom:691.520000pt;}
.ycf{bottom:692.160000pt;}
.y129{bottom:692.480000pt;}
.y3d{bottom:693.440000pt;}
.y98{bottom:696.000000pt;}
.y6f{bottom:697.600000pt;}
.y14a{bottom:698.560000pt;}
.yd{bottom:700.480000pt;}
.y1ef{bottom:704.960000pt;}
.y26{bottom:706.560000pt;}
.yce{bottom:710.400000pt;}
.y128{bottom:710.720000pt;}
.yd5{bottom:711.040000pt;}
.y3c{bottom:712.960000pt;}
.y6e{bottom:717.120000pt;}
.y1c9{bottom:717.760000pt;}
.y149{bottom:718.080000pt;}
.y20f{bottom:722.880000pt;}
.y1ee{bottom:723.200000pt;}
.yae{bottom:723.520000pt;}
.ycd{bottom:728.640000pt;}
.y127{bottom:728.960000pt;}
.yd4{bottom:730.560000pt;}
.y97{bottom:731.520000pt;}
.y3b{bottom:732.160000pt;}
.yf6{bottom:733.120000pt;}
.yc{bottom:733.440000pt;}
.y1c8{bottom:736.000000pt;}
.y6d{bottom:736.640000pt;}
.y148{bottom:737.600000pt;}
.y1ed{bottom:741.440000pt;}
.yad{bottom:743.040000pt;}
.ycc{bottom:746.880000pt;}
.y126{bottom:747.200000pt;}
.yd3{bottom:749.760000pt;}
.y96{bottom:750.720000pt;}
.y21b{bottom:751.040000pt;}
.y3a{bottom:751.680000pt;}
.yf5{bottom:752.640000pt;}
.y1c7{bottom:754.240000pt;}
.y147{bottom:756.800000pt;}
.y25{bottom:760.000000pt;}
.yac{bottom:762.560000pt;}
.ycb{bottom:765.120000pt;}
.y125{bottom:765.440000pt;}
.yb{bottom:766.080000pt;}
.y1ec{bottom:767.680000pt;}
.y6c{bottom:769.280000pt;}
.y95{bottom:770.240000pt;}
.y1ba{bottom:770.880000pt;}
.yf4{bottom:771.840000pt;}
.y21a{bottom:773.120000pt;}
.y146{bottom:776.320000pt;}
.y24{bottom:778.880000pt;}
.y1c6{bottom:780.160000pt;}
.y124{bottom:783.360000pt;}
.yca{bottom:783.680000pt;}
.y39{bottom:784.320000pt;}
.y1eb{bottom:785.920000pt;}
.y6b{bottom:788.480000pt;}
.yab{bottom:788.800000pt;}
.y94{bottom:789.440000pt;}
.y1b9{bottom:790.400000pt;}
.y20e{bottom:790.720000pt;}
.yf3{bottom:791.360000pt;}
.y23{bottom:797.440000pt;}
.y1c5{bottom:798.400000pt;}
.ya{bottom:799.040000pt;}
.yc9{bottom:801.600000pt;}
.y38{bottom:803.840000pt;}
.y1ea{bottom:804.160000pt;}
.y219{bottom:805.760000pt;}
.y6a{bottom:808.000000pt;}
.y93{bottom:808.960000pt;}
.y1b8{bottom:809.920000pt;}
.y65{bottom:810.880000pt;}
.yc8{bottom:819.840000pt;}
.y37{bottom:823.040000pt;}
.yaa{bottom:824.000000pt;}
.y22{bottom:824.320000pt;}
.y1c4{bottom:824.640000pt;}
.y166{bottom:825.120000pt;}
.y69{bottom:827.520000pt;}
.y145{bottom:828.480000pt;}
.y64{bottom:830.080000pt;}
.y1e9{bottom:830.400000pt;}
.y9{bottom:831.680000pt;}
.y123{bottom:834.560000pt;}
.y92{bottom:836.160000pt;}
.yc7{bottom:838.080000pt;}
.y218{bottom:842.240000pt;}
.y36{bottom:842.560000pt;}
.y1c3{bottom:842.880000pt;}
.ya9{bottom:843.520000pt;}
.y68{bottom:846.720000pt;}
.y144{bottom:847.680000pt;}
.y1e8{bottom:848.320000pt;}
.y63{bottom:849.600000pt;}
.y21{bottom:850.880000pt;}
.y8{bottom:851.520000pt;}
.yc6{bottom:856.320000pt;}
.y20d{bottom:858.560000pt;}
.y1c2{bottom:861.120000pt;}
.y35{bottom:862.080000pt;}
.ya8{bottom:863.040000pt;}
.y67{bottom:866.240000pt;}
.y1e7{bottom:866.560000pt;}
.y122{bottom:867.200000pt;}
.y62{bottom:869.120000pt;}
.y20{bottom:869.760000pt;}
.yd2{bottom:873.920000pt;}
.yc5{bottom:874.560000pt;}
.y217{bottom:876.160000pt;}
.y1c1{bottom:879.360000pt;}
.y34{bottom:881.280000pt;}
.y91{bottom:882.240000pt;}
.y7{bottom:885.440000pt;}
.y121{bottom:886.720000pt;}
.y1f{bottom:888.320000pt;}
.y20c{bottom:892.480000pt;}
.yc4{bottom:892.800000pt;}
.y66{bottom:893.440000pt;}
.y33{bottom:900.800000pt;}
.y90{bottom:901.760000pt;}
.y1c0{bottom:905.600000pt;}
.y120{bottom:905.920000pt;}
.y216{bottom:906.560000pt;}
.y1e{bottom:907.200000pt;}
.y61{bottom:907.840000pt;}
.yc3{bottom:911.040000pt;}
.y6{bottom:919.040000pt;}
.y32{bottom:920.000000pt;}
.y8f{bottom:920.960000pt;}
.y1bf{bottom:923.840000pt;}
.y11f{bottom:925.440000pt;}
.y1d{bottom:925.760000pt;}
.y60{bottom:927.040000pt;}
.yc2{bottom:929.280000pt;}
.y215{bottom:936.640000pt;}
.y1e6{bottom:937.280000pt;}
.y31{bottom:939.520000pt;}
.y8e{bottom:940.480000pt;}
.y1be{bottom:941.760000pt;}
.y5f{bottom:946.560000pt;}
.yc1{bottom:947.520000pt;}
.y5{bottom:950.720000pt;}
.y1c{bottom:952.640000pt;}
.y20b{bottom:955.520000pt;}
.y30{bottom:959.040000pt;}
.y8d{bottom:960.000000pt;}
.y1e5{bottom:963.520000pt;}
.yc0{bottom:965.760000pt;}
.y4{bottom:971.520000pt;}
.y2f{bottom:978.240000pt;}
.y1b{bottom:979.200000pt;}
.y1e4{bottom:981.760000pt;}
.y161{bottom:988.000000pt;}
.y3{bottom:991.680000pt;}
.y22c{bottom:992.640000pt;}
.y5e{bottom:998.720000pt;}
.y1e3{bottom:1000.000000pt;}
.y2{bottom:1011.840000pt;}
.y1a{bottom:1012.160000pt;}
.y5d{bottom:1017.920000pt;}
.y15{bottom:1076.000000pt;}
.y5b{bottom:1077.333333pt;}
.y1{bottom:1078.080000pt;}
.y18{bottom:1078.666667pt;}
.y13{bottom:1081.600000pt;}
.y212{bottom:1090.560000pt;}
.y211{bottom:1108.480000pt;}
.h9{height:14.666667pt;}
.h8{height:17.333333pt;}
.hd{height:24.000000pt;}
.hf{height:28.907500pt;}
.h7{height:32.615625pt;}
.h2{height:39.243750pt;}
.hc{height:42.656250pt;}
.he{height:42.866250pt;}
.h12{height:42.866570pt;}
.h18{height:42.866677pt;}
.hb{height:43.470000pt;}
.h10{height:44.000000pt;}
.h4{height:48.384000pt;}
.h3{height:50.355000pt;}
.h6{height:50.628750pt;}
.h1a{height:54.048750pt;}
.h19{height:57.159375pt;}
.ha{height:60.571875pt;}
.h5{height:85.732500pt;}
.h16{height:138.666667pt;}
.h13{height:163.520000pt;}
.h11{height:165.333333pt;}
.h17{height:216.000000pt;}
.h15{height:349.440000pt;}
.h14{height:350.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:10.666667pt;}
.w5{width:44.000000pt;}
.w2{width:45.333333pt;}
.w9{width:51.840000pt;}
.w6{width:53.333333pt;}
.w4{width:61.333333pt;}
.w7{width:252.000000pt;}
.w8{width:262.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x15{left:7.849600pt;}
.x14{left:11.938784pt;}
.x1b{left:21.600107pt;}
.x1a{left:27.039968pt;}
.x19{left:28.320043pt;}
.x12{left:30.993814pt;}
.x2{left:37.715808pt;}
.x3{left:44.013344pt;}
.x13{left:48.420373pt;}
.x8{left:54.723733pt;}
.x18{left:58.852587pt;}
.x1d{left:99.199872pt;}
.x1{left:132.480128pt;}
.x5{left:147.146816pt;}
.x9{left:156.480128pt;}
.x6{left:161.813472pt;}
.xf{left:162.746752pt;}
.xc{left:180.480128pt;}
.x16{left:185.333333pt;}
.xb{left:240.556960pt;}
.x1c{left:265.549472pt;}
.x11{left:268.327808pt;}
.xe{left:291.408832pt;}
.x17{left:437.333333pt;}
.xa{left:556.873280pt;}
.x7{left:630.666667pt;}
.x4{left:689.333333pt;}
.xd{left:703.040000pt;}
.x10{left:708.480000pt;}
}




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