
    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_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_a31ad6e01ed7f12885063df1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_e03742792b99c3ecebef9c9f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.927734;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_c49c1ae83030e0d5e6e62599.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_eb2530fc0a36593f01a81056.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941895;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_3675022a3404d9008db86820.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_86ca9c14f41ef570a8507162.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.740723;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_c5beb456d23984055fedb881.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.793457;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_824712acbbff00862e6a5518.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.972168;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_28b10125e7cd2d606bd605b1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.947754;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_bedbe4391e34c506981b5012.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.962402;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_b74bab66b1de9518e78cb98d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.205566;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_31b381fa1c56734e7230aff7.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.128906;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_23b83dde12537339ba2d6b32.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.973145;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_f7d5be15110113537debe82a.woff2')format("woff");}.fff{font-family:fff;line-height:0.952148;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_a3c08c66f684a5d3cfa23bf6.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_8e0e2a0b08002734f7f53e8a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.747070;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_c664886795baa287d010ebdd.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_cd1353cc9088bb594d15660e.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.435059;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_cd08ca75e86cf4818e6b46cc.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.128906;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_63f2c6a622013f2250e6206e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.901855;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_a4709ec3c52539fa23ce36e7.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.973145;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_feaecbe35dd1dc04fdd4823b.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.770996;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_6ecb30ddbf3e29f71aa9486d.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.205566;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_868604ca7ce2a2a1888f413a.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_5b9c5d60da426bf34e302f17.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_212219dc6c5b84ecd2ac9690.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-15.120000px;}
.v5{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:12.240000px;}
.v4{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.ls8{letter-spacing:-0.720000px;}
.ls31{letter-spacing:-0.576000px;}
.ls56{letter-spacing:-0.450000px;}
.ls5c{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.331200px;}
.ls33{letter-spacing:-0.326400px;}
.ls55{letter-spacing:-0.324000px;}
.ls42{letter-spacing:-0.318000px;}
.lse{letter-spacing:-0.306000px;}
.ls43{letter-spacing:-0.303600px;}
.ls19{letter-spacing:-0.288000px;}
.ls2e{letter-spacing:-0.270000px;}
.ls11{letter-spacing:-0.234000px;}
.ls2b{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.198000px;}
.ls17{letter-spacing:-0.180000px;}
.ls41{letter-spacing:-0.169800px;}
.ls1c{letter-spacing:-0.162000px;}
.ls2d{letter-spacing:-0.126000px;}
.ls28{letter-spacing:-0.108000px;}
.ls7{letter-spacing:-0.091200px;}
.ls1d{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.072000px;}
.ls1b{letter-spacing:-0.054000px;}
.lsc{letter-spacing:-0.036000px;}
.ls6{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.011520px;}
.ls1a{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.031680px;}
.ls23{letter-spacing:0.036000px;}
.ls35{letter-spacing:0.048960px;}
.ls53{letter-spacing:0.054000px;}
.ls40{letter-spacing:0.059040px;}
.ls20{letter-spacing:0.090000px;}
.ls36{letter-spacing:0.104400px;}
.ls44{letter-spacing:0.108000px;}
.ls32{letter-spacing:0.136800px;}
.ls9{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls3f{letter-spacing:0.188400px;}
.ls5a{letter-spacing:0.198000px;}
.ls54{letter-spacing:0.234000px;}
.ls1{letter-spacing:0.234720px;}
.ls3b{letter-spacing:0.244800px;}
.ls39{letter-spacing:0.250560px;}
.ls5d{letter-spacing:0.252000px;}
.ls3a{letter-spacing:0.279600px;}
.ls29{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.300000px;}
.ls59{letter-spacing:0.306000px;}
.ls57{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.331200px;}
.ls3d{letter-spacing:0.342000px;}
.lsb{letter-spacing:0.360000px;}
.ls52{letter-spacing:0.396000px;}
.ls18{letter-spacing:0.540000px;}
.ls4c{letter-spacing:0.558000px;}
.lsd{letter-spacing:0.666000px;}
.ls2c{letter-spacing:0.684000px;}
.ls27{letter-spacing:0.720000px;}
.ls49{letter-spacing:0.738000px;}
.ls16{letter-spacing:1.386000px;}
.ls15{letter-spacing:1.548000px;}
.ls14{letter-spacing:2.106000px;}
.ls4e{letter-spacing:2.124000px;}
.ls38{letter-spacing:2.826000px;}
.ls3{letter-spacing:2.844000px;}
.ls24{letter-spacing:3.546000px;}
.ls58{letter-spacing:4.284000px;}
.ls2a{letter-spacing:4.986000px;}
.ls3e{letter-spacing:6.420000px;}
.ls48{letter-spacing:7.140000px;}
.ls12{letter-spacing:7.146000px;}
.ls4d{letter-spacing:7.860000px;}
.ls13{letter-spacing:8.586000px;}
.ls26{letter-spacing:9.324000px;}
.ls51{letter-spacing:9.540000px;}
.ls37{letter-spacing:11.646000px;}
.ls1e{letter-spacing:12.900000px;}
.ls50{letter-spacing:13.626000px;}
.ls4f{letter-spacing:14.346000px;}
.ls21{letter-spacing:15.246000px;}
.ls5e{letter-spacing:15.786000px;}
.ls3c{letter-spacing:17.226000px;}
.ls30{letter-spacing:17.946000px;}
.ls4b{letter-spacing:19.548000px;}
.ls1f{letter-spacing:22.260000px;}
.ls4a{letter-spacing:22.284000px;}
.ls2f{letter-spacing:23.706000px;}
.ls47{letter-spacing:26.580000px;}
.ls22{letter-spacing:26.586000px;}
.ls5b{letter-spacing:27.540000px;}
.ls45{letter-spacing:38.826000px;}
.ls46{letter-spacing:42.444000px;}
.ls25{letter-spacing:1994.766000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws17{word-spacing:-54.000000px;}
.ws1{word-spacing:-22.316640px;}
.ws2{word-spacing:-19.296000px;}
.wsa{word-spacing:-18.468000px;}
.ws3{word-spacing:-18.360000px;}
.ws9{word-spacing:-18.234000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.928000px;}
.ws5{word-spacing:-16.824960px;}
.ws8{word-spacing:-14.940000px;}
.ws34{word-spacing:-14.040000px;}
.ws39{word-spacing:-14.022000px;}
.ws30{word-spacing:-14.004000px;}
.ws32{word-spacing:-13.950000px;}
.ws3b{word-spacing:-13.914000px;}
.ws35{word-spacing:-13.896000px;}
.ws37{word-spacing:-13.824000px;}
.ws2c{word-spacing:-13.806000px;}
.ws36{word-spacing:-13.770000px;}
.ws2d{word-spacing:-13.752000px;}
.ws2e{word-spacing:-13.716000px;}
.ws18{word-spacing:-13.698000px;}
.ws6{word-spacing:-13.680000px;}
.ws3a{word-spacing:-13.662000px;}
.wsd{word-spacing:-13.554000px;}
.ws38{word-spacing:-13.500000px;}
.ws2f{word-spacing:-13.410000px;}
.ws21{word-spacing:-13.356000px;}
.ws20{word-spacing:-13.302000px;}
.ws33{word-spacing:-13.266000px;}
.ws15{word-spacing:-13.104000px;}
.ws3d{word-spacing:-13.068000px;}
.ws11{word-spacing:-13.032000px;}
.wse{word-spacing:-13.014000px;}
.wsf{word-spacing:-12.978000px;}
.ws13{word-spacing:-12.924000px;}
.ws14{word-spacing:-12.906000px;}
.ws19{word-spacing:-12.888000px;}
.ws12{word-spacing:-12.852000px;}
.wsc{word-spacing:-12.834000px;}
.ws3c{word-spacing:-12.798000px;}
.ws16{word-spacing:-12.780000px;}
.ws1a{word-spacing:-12.744000px;}
.ws10{word-spacing:-12.726000px;}
.ws7{word-spacing:-12.708000px;}
.ws31{word-spacing:-12.690000px;}
.ws1b{word-spacing:-11.762640px;}
.ws1f{word-spacing:-11.730240px;}
.ws1e{word-spacing:-11.674800px;}
.ws1d{word-spacing:-11.637360px;}
.ws2b{word-spacing:-11.625840px;}
.ws1c{word-spacing:-11.299440px;}
.ws25{word-spacing:-10.343760px;}
.ws2a{word-spacing:-10.308960px;}
.ws22{word-spacing:-10.252560px;}
.ws23{word-spacing:-10.123200px;}
.ws24{word-spacing:-10.113120px;}
.ws29{word-spacing:-10.064160px;}
.ws26{word-spacing:-9.894360px;}
.ws28{word-spacing:-9.760560px;}
.ws27{word-spacing:-9.746160px;}
.wsb{word-spacing:0.000000px;}
._1{margin-left:-2.420400px;}
._0{margin-left:-1.263600px;}
._3{width:1.322400px;}
._b{width:2.592000px;}
._7{width:4.032000px;}
._8{width:5.124000px;}
._d{width:6.480000px;}
._e{width:7.545600px;}
._28{width:8.600400px;}
._9{width:9.612000px;}
._a{width:10.692000px;}
._11{width:12.000000px;}
._c{width:14.364000px;}
._f{width:15.660000px;}
._10{width:17.658000px;}
._12{width:18.792000px;}
._21{width:19.803600px;}
._20{width:21.168000px;}
._19{width:22.734000px;}
._13{width:24.030000px;}
._22{width:25.164000px;}
._17{width:26.940000px;}
._2f{width:27.972000px;}
._1f{width:29.016000px;}
._1e{width:30.288000px;}
._18{width:31.806000px;}
._27{width:32.976000px;}
._23{width:34.146000px;}
._31{width:35.161200px;}
._14{width:36.234000px;}
._1b{width:38.124000px;}
._25{width:39.312000px;}
._26{width:40.917600px;}
._16{width:42.174000px;}
._15{width:43.308000px;}
._2b{width:44.658000px;}
._3b{width:45.678000px;}
._2d{width:46.935600px;}
._29{width:48.114000px;}
._2a{width:49.158000px;}
._33{width:50.247600px;}
._39{width:51.974400px;}
._36{width:53.298000px;}
._1a{width:54.426000px;}
._1c{width:56.430000px;}
._1d{width:57.888000px;}
._6{width:61.304640px;}
._5{width:62.880960px;}
._40{width:66.684000px;}
._41{width:67.722000px;}
._2e{width:68.958000px;}
._30{width:70.281600px;}
._3a{width:71.604000px;}
._32{width:72.628800px;}
._2c{width:73.926000px;}
._34{width:76.644000px;}
._35{width:77.778000px;}
._3f{width:79.140000px;}
._2{width:80.438400px;}
._4{width:81.510000px;}
._3c{width:83.646000px;}
._24{width:84.726000px;}
._38{width:88.182000px;}
._42{width:91.854000px;}
._37{width:93.042000px;}
._3d{width:95.850000px;}
._3e{width:113.400000px;}
.fc8{color:transparent;}
.fc6{color:rgb(0,32,96);}
.fc7{color:rgb(255,0,0);}
.fc5{color:rgb(0,0,128);}
.fc4{color:rgb(28,30,41);}
.fc3{color:rgb(0,0,255);}
.fc9{color:rgb(34,30,31);}
.fc2{color:rgb(17,17,17);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:12.240000px;}
.fs8{font-size:33.120000px;}
.fsc{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fsd{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fsa{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:74.880000px;}
.fs2{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.y42{bottom:-15.660000px;}
.y0{bottom:0.000000px;}
.y16{bottom:2.340000px;}
.y7{bottom:2.880000px;}
.y12{bottom:3.240000px;}
.y21{bottom:3.420000px;}
.y28{bottom:3.600000px;}
.y2a{bottom:3.960000px;}
.y4{bottom:4.140000px;}
.y3{bottom:4.500000px;}
.y26{bottom:5.040000px;}
.yd5{bottom:5.385000px;}
.ya7{bottom:5.400000px;}
.yca{bottom:5.565000px;}
.ya5{bottom:5.580000px;}
.yc8{bottom:5.610000px;}
.yda{bottom:5.616000px;}
.ydf{bottom:5.940000px;}
.ye8{bottom:6.120000px;}
.yb7{bottom:6.300000px;}
.yd1{bottom:7.005000px;}
.yaa{bottom:7.020000px;}
.y41{bottom:9.000000px;}
.yf4{bottom:9.525000px;}
.ydc{bottom:9.540000px;}
.y1f{bottom:10.800000px;}
.y106{bottom:10.980000px;}
.y23{bottom:14.760000px;}
.y24{bottom:14.940000px;}
.y1b{bottom:15.120000px;}
.y14{bottom:15.300000px;}
.y3b{bottom:15.465000px;}
.y3d{bottom:16.186500px;}
.y10{bottom:20.205000px;}
.ya4{bottom:21.960000px;}
.y40{bottom:30.240000px;}
.y1e{bottom:33.840000px;}
.y3a{bottom:38.505000px;}
.y1a{bottom:51.660000px;}
.y5{bottom:58.320000px;}
.yf{bottom:60.885000px;}
.y39{bottom:61.545000px;}
.y2{bottom:74.520000px;}
.y3f{bottom:75.810000px;}
.ya{bottom:80.460000px;}
.y19{bottom:82.260000px;}
.y38{bottom:84.405000px;}
.y9{bottom:91.440000px;}
.ye{bottom:101.745000px;}
.y37{bottom:107.445000px;}
.y18{bottom:112.860000px;}
.y100{bottom:114.840000px;}
.y104{bottom:115.560000px;}
.ydb{bottom:116.280000px;}
.y12e{bottom:117.180000px;}
.y11d{bottom:120.060000px;}
.y149{bottom:121.320000px;}
.y18d{bottom:124.200000px;}
.y71{bottom:127.260000px;}
.ya2{bottom:129.240000px;}
.y75{bottom:129.780000px;}
.y16a{bottom:129.960000px;}
.y70{bottom:130.320000px;}
.y36{bottom:130.485000px;}
.yd9{bottom:137.700000px;}
.yff{bottom:137.880000px;}
.y103{bottom:138.600000px;}
.y12d{bottom:140.220000px;}
.y11c{bottom:143.136000px;}
.y148{bottom:144.216000px;}
.y18c{bottom:147.276000px;}
.y3c{bottom:148.183500px;}
.ya1{bottom:152.310000px;}
.y74{bottom:153.030000px;}
.y6f{bottom:153.210000px;}
.y35{bottom:153.525000px;}
.yd8{bottom:155.205000px;}
.yfe{bottom:161.130000px;}
.y102{bottom:161.670000px;}
.y12c{bottom:163.110000px;}
.y11b{bottom:166.170000px;}
.y147{bottom:167.250000px;}
.y18b{bottom:170.310000px;}
.yd7{bottom:172.665000px;}
.y2b{bottom:173.925000px;}
.ya0{bottom:175.350000px;}
.y73{bottom:176.070000px;}
.y6e{bottom:176.250000px;}
.y34{bottom:176.565000px;}
.yfd{bottom:184.350000px;}
.y101{bottom:184.530000px;}
.y12b{bottom:186.150000px;}
.y11a{bottom:189.210000px;}
.y146{bottom:190.290000px;}
.yd6{bottom:191.565000px;}
.y18a{bottom:193.350000px;}
.y9f{bottom:198.390000px;}
.y169{bottom:198.930000px;}
.y72{bottom:199.110000px;}
.y6d{bottom:199.290000px;}
.y33{bottom:199.605000px;}
.yfc{bottom:207.570000px;}
.y12a{bottom:209.190000px;}
.yd4{bottom:209.205000px;}
.y119{bottom:212.250000px;}
.y145{bottom:213.330000px;}
.y189{bottom:216.390000px;}
.y9e{bottom:221.430000px;}
.y168{bottom:221.970000px;}
.y6c{bottom:222.330000px;}
.y32{bottom:222.510000px;}
.yd3{bottom:226.665000px;}
.y129{bottom:232.230000px;}
.y118{bottom:235.290000px;}
.y144{bottom:236.370000px;}
.y188{bottom:239.250000px;}
.yd2{bottom:244.125000px;}
.y9d{bottom:244.470000px;}
.y167{bottom:245.010000px;}
.y6b{bottom:245.370000px;}
.y31{bottom:245.550000px;}
.yfb{bottom:250.770000px;}
.y128{bottom:255.270000px;}
.y117{bottom:258.150000px;}
.y143{bottom:259.410000px;}
.yd0{bottom:261.585000px;}
.y187{bottom:262.290000px;}
.y9c{bottom:267.330000px;}
.y166{bottom:268.050000px;}
.y6a{bottom:268.410000px;}
.y30{bottom:268.590000px;}
.yfa{bottom:269.850000px;}
.y127{bottom:278.310000px;}
.ycf{bottom:280.485000px;}
.y116{bottom:281.190000px;}
.y142{bottom:282.270000px;}
.y186{bottom:285.330000px;}
.yf9{bottom:288.930000px;}
.y9b{bottom:290.370000px;}
.y165{bottom:291.090000px;}
.y69{bottom:291.270000px;}
.y2f{bottom:291.630000px;}
.yce{bottom:297.945000px;}
.y126{bottom:301.170000px;}
.y115{bottom:304.230000px;}
.y141{bottom:305.310000px;}
.yf8{bottom:308.010000px;}
.y185{bottom:308.370000px;}
.y9a{bottom:313.410000px;}
.y164{bottom:314.130000px;}
.y68{bottom:314.310000px;}
.y2e{bottom:314.670000px;}
.ycd{bottom:315.405000px;}
.y125{bottom:324.210000px;}
.yf7{bottom:327.090000px;}
.y114{bottom:327.270000px;}
.y140{bottom:328.350000px;}
.y184{bottom:331.410000px;}
.ycc{bottom:332.865000px;}
.y99{bottom:336.450000px;}
.y163{bottom:336.990000px;}
.y67{bottom:337.350000px;}
.y2d{bottom:337.710000px;}
.yf6{bottom:346.170000px;}
.y124{bottom:347.250000px;}
.y113{bottom:350.310000px;}
.ycb{bottom:350.505000px;}
.y13f{bottom:351.390000px;}
.y183{bottom:354.450000px;}
.y98{bottom:359.490000px;}
.y162{bottom:360.030000px;}
.y66{bottom:360.390000px;}
.y2c{bottom:360.570000px;}
.yf5{bottom:365.250000px;}
.yc9{bottom:367.965000px;}
.y123{bottom:370.290000px;}
.y112{bottom:373.170000px;}
.y13e{bottom:374.430000px;}
.y182{bottom:377.310000px;}
.yf3{bottom:378.585000px;}
.y97{bottom:382.350000px;}
.y161{bottom:383.070000px;}
.y65{bottom:383.430000px;}
.yc7{bottom:385.425000px;}
.y122{bottom:393.375000px;}
.y111{bottom:396.255000px;}
.y13d{bottom:397.515000px;}
.yf2{bottom:398.775000px;}
.y181{bottom:400.395000px;}
.yc6{bottom:402.915000px;}
.y96{bottom:405.435000px;}
.y160{bottom:406.155000px;}
.y64{bottom:406.515000px;}
.yf1{bottom:415.695000px;}
.y121{bottom:416.235000px;}
.y110{bottom:419.295000px;}
.yc5{bottom:420.375000px;}
.y180{bottom:423.435000px;}
.y95{bottom:428.475000px;}
.y15f{bottom:429.195000px;}
.y63{bottom:429.375000px;}
.yf0{bottom:432.435000px;}
.yc4{bottom:437.835000px;}
.y120{bottom:439.275000px;}
.y10f{bottom:442.335000px;}
.y13c{bottom:443.415000px;}
.y17f{bottom:446.475000px;}
.yef{bottom:448.995000px;}
.y94{bottom:451.515000px;}
.y15e{bottom:452.055000px;}
.y62{bottom:452.415000px;}
.yc3{bottom:455.475000px;}
.y11f{bottom:462.315000px;}
.y10e{bottom:465.375000px;}
.yee{bottom:465.915000px;}
.y13b{bottom:466.455000px;}
.y17e{bottom:469.515000px;}
.yc2{bottom:472.935000px;}
.y93{bottom:474.555000px;}
.y15d{bottom:475.095000px;}
.y61{bottom:475.455000px;}
.yed{bottom:482.475000px;}
.y11e{bottom:485.355000px;}
.y10d{bottom:488.415000px;}
.y13a{bottom:489.495000px;}
.yc1{bottom:490.395000px;}
.y17d{bottom:492.555000px;}
.y92{bottom:497.595000px;}
.y15c{bottom:498.135000px;}
.y60{bottom:498.495000px;}
.yec{bottom:499.035000px;}
.yc0{bottom:507.855000px;}
.y10c{bottom:511.275000px;}
.y139{bottom:512.535000px;}
.y17c{bottom:515.415000px;}
.yeb{bottom:515.955000px;}
.y91{bottom:520.455000px;}
.y15b{bottom:521.175000px;}
.y5f{bottom:521.535000px;}
.ybf{bottom:525.315000px;}
.yea{bottom:532.695000px;}
.y10b{bottom:534.315000px;}
.y138{bottom:535.575000px;}
.y17b{bottom:541.515000px;}
.y90{bottom:543.495000px;}
.y15a{bottom:544.215000px;}
.y5e{bottom:544.575000px;}
.y29{bottom:546.555000px;}
.ye9{bottom:549.255000px;}
.y10a{bottom:557.355000px;}
.y137{bottom:558.435000px;}
.ybe{bottom:561.135000px;}
.y27{bottom:561.855000px;}
.y17a{bottom:564.555000px;}
.ye7{bottom:565.815000px;}
.y8f{bottom:566.535000px;}
.y159{bottom:567.255000px;}
.y5d{bottom:567.435000px;}
.ybd{bottom:578.595000px;}
.y109{bottom:580.395000px;}
.y25{bottom:580.575000px;}
.y136{bottom:581.475000px;}
.ye6{bottom:582.555000px;}
.y179{bottom:587.595000px;}
.y8e{bottom:589.575000px;}
.y158{bottom:590.115000px;}
.y5c{bottom:590.475000px;}
.y108{bottom:594.615000px;}
.ybc{bottom:596.055000px;}
.ye5{bottom:599.115000px;}
.y22{bottom:600.735000px;}
.y135{bottom:604.515000px;}
.y178{bottom:610.455000px;}
.y8d{bottom:612.615000px;}
.y157{bottom:613.155000px;}
.y5b{bottom:613.515000px;}
.ye4{bottom:615.855000px;}
.y107{bottom:619.995000px;}
.y134{bottom:627.555000px;}
.y20{bottom:630.615000px;}
.ybb{bottom:630.975000px;}
.ye3{bottom:632.415000px;}
.y177{bottom:633.495000px;}
.y8c{bottom:635.655000px;}
.y156{bottom:636.195000px;}
.y5a{bottom:636.555000px;}
.y1d{bottom:644.145000px;}
.yba{bottom:648.465000px;}
.ye2{bottom:649.185000px;}
.y133{bottom:650.625000px;}
.y176{bottom:656.565000px;}
.y8b{bottom:658.545000px;}
.y155{bottom:659.265000px;}
.y59{bottom:659.625000px;}
.ye1{bottom:665.745000px;}
.yb9{bottom:665.925000px;}
.y105{bottom:669.345000px;}
.y132{bottom:673.485000px;}
.y175{bottom:679.605000px;}
.y8a{bottom:681.585000px;}
.ye0{bottom:682.305000px;}
.y58{bottom:682.485000px;}
.yb8{bottom:683.565000px;}
.y131{bottom:687.885000px;}
.y1c{bottom:690.045000px;}
.yde{bottom:699.225000px;}
.yb6{bottom:701.025000px;}
.y174{bottom:702.645000px;}
.y89{bottom:704.805000px;}
.y154{bottom:705.345000px;}
.y57{bottom:705.525000px;}
.y17{bottom:707.145000px;}
.y130{bottom:713.085000px;}
.yb5{bottom:719.205000px;}
.y173{bottom:725.505000px;}
.y88{bottom:728.025000px;}
.y153{bottom:728.205000px;}
.y56{bottom:728.565000px;}
.yb4{bottom:736.665000px;}
.y12f{bottom:738.465000px;}
.y172{bottom:748.545000px;}
.y87{bottom:750.885000px;}
.y152{bottom:751.245000px;}
.y55{bottom:751.605000px;}
.yb3{bottom:754.125000px;}
.yb2{bottom:771.585000px;}
.y86{bottom:773.925000px;}
.y151{bottom:774.285000px;}
.y54{bottom:774.645000px;}
.y171{bottom:794.625000px;}
.y85{bottom:796.965000px;}
.y150{bottom:797.325000px;}
.y53{bottom:797.685000px;}
.yb1{bottom:805.425000px;}
.y170{bottom:817.665000px;}
.y84{bottom:820.005000px;}
.y14f{bottom:820.365000px;}
.y52{bottom:820.545000px;}
.yb0{bottom:823.065000px;}
.y15{bottom:829.545000px;}
.yaf{bottom:840.525000px;}
.y16f{bottom:840.705000px;}
.y83{bottom:843.045000px;}
.y14e{bottom:843.405000px;}
.y51{bottom:843.585000px;}
.y13{bottom:844.125000px;}
.yae{bottom:857.985000px;}
.y16e{bottom:863.565000px;}
.y82{bottom:866.085000px;}
.y14d{bottom:866.265000px;}
.y50{bottom:866.625000px;}
.y11{bottom:874.725000px;}
.yad{bottom:875.445000px;}
.y16d{bottom:886.605000px;}
.yd{bottom:888.225000px;}
.y81{bottom:888.945000px;}
.y14c{bottom:889.350000px;}
.ydd{bottom:889.530000px;}
.y4f{bottom:889.710000px;}
.yac{bottom:892.950000px;}
.y16c{bottom:909.690000px;}
.yab{bottom:910.410000px;}
.y80{bottom:912.030000px;}
.y14b{bottom:912.390000px;}
.y4e{bottom:912.750000px;}
.ya9{bottom:927.870000px;}
.y16b{bottom:932.730000px;}
.y7f{bottom:935.070000px;}
.y14a{bottom:935.610000px;}
.y4d{bottom:935.790000px;}
.ya8{bottom:946.770000px;}
.y7e{bottom:958.110000px;}
.y4c{bottom:958.650000px;}
.ya6{bottom:964.410000px;}
.y7d{bottom:981.150000px;}
.y4b{bottom:981.690000px;}
.ya3{bottom:981.870000px;}
.y7c{bottom:1004.190000px;}
.y4a{bottom:1004.730000px;}
.yc{bottom:1013.370000px;}
.y7b{bottom:1027.050000px;}
.y49{bottom:1027.770000px;}
.yb{bottom:1030.110000px;}
.y8{bottom:1046.850000px;}
.y7a{bottom:1050.090000px;}
.y48{bottom:1050.810000px;}
.y3e{bottom:1065.210000px;}
.y79{bottom:1073.130000px;}
.y47{bottom:1073.850000px;}
.y78{bottom:1096.170000px;}
.y46{bottom:1096.710000px;}
.y77{bottom:1119.210000px;}
.y45{bottom:1119.750000px;}
.y76{bottom:1142.640000px;}
.y44{bottom:1142.820000px;}
.y1{bottom:1171.080000px;}
.y43{bottom:1192.680000px;}
.y6{bottom:1195.740000px;}
.hc{height:8.289492px;}
.hf{height:13.500000px;}
.h1d{height:13.530000px;}
.h13{height:14.580000px;}
.h23{height:15.285000px;}
.h41{height:15.465000px;}
.h3c{height:15.480000px;}
.h40{height:15.510000px;}
.h42{height:15.645000px;}
.h43{height:15.825000px;}
.h3f{height:15.840000px;}
.h30{height:16.185000px;}
.h35{height:16.200000px;}
.h31{height:16.365000px;}
.h34{height:16.380000px;}
.h39{height:16.401000px;}
.h33{height:16.402500px;}
.h37{height:16.410000px;}
.h3a{height:16.416000px;}
.h38{height:17.085000px;}
.h18{height:17.100000px;}
.h32{height:17.805000px;}
.h21{height:18.705000px;}
.h44{height:19.101000px;}
.h20{height:20.145000px;}
.h3b{height:20.338500px;}
.h3{height:20.698500px;}
.h5{height:20.880000px;}
.h48{height:22.860000px;}
.h47{height:23.025000px;}
.h45{height:23.040000px;}
.h46{height:23.070000px;}
.h16{height:25.001719px;}
.h25{height:25.732500px;}
.h26{height:29.145586px;}
.h1f{height:29.865000px;}
.h11{height:30.600000px;}
.h3e{height:31.585078px;}
.h10{height:32.670352px;}
.h2e{height:32.745000px;}
.h36{height:32.760000px;}
.h1e{height:33.588984px;}
.h14{height:36.886641px;}
.h3d{height:38.089687px;}
.h19{height:40.472227px;}
.h2d{height:40.816406px;}
.h2c{height:40.842773px;}
.h29{height:41.291016px;}
.h2f{height:44.000156px;}
.h1a{height:45.900000px;}
.h12{height:48.761719px;}
.h1c{height:49.253906px;}
.h17{height:50.132812px;}
.h9{height:51.539062px;}
.h1b{height:53.393555px;}
.hb{height:54.457031px;}
.h28{height:55.054688px;}
.h2a{height:55.209375px;}
.h49{height:55.503491px;}
.h2b{height:56.214844px;}
.h6{height:57.051211px;}
.h4a{height:61.493906px;}
.he{height:64.853086px;}
.h22{height:65.496094px;}
.h2{height:70.664062px;}
.h4{height:72.562500px;}
.ha{height:78.468750px;}
.h7{height:84.898125px;}
.h27{height:93.810000px;}
.h8{height:108.030000px;}
.h15{height:122.400000px;}
.hd{height:122.422500px;}
.h24{height:372.615000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:45.529500px;}
.w11{width:48.600000px;}
.w17{width:67.536000px;}
.w13{width:69.334500px;}
.w14{width:72.349500px;}
.w16{width:74.340000px;}
.w6{width:76.669500px;}
.w18{width:80.985000px;}
.wd{width:81.000000px;}
.w15{width:81.021000px;}
.w19{width:81.030000px;}
.w1e{width:81.036000px;}
.w1d{width:87.840000px;}
.w1f{width:94.485000px;}
.w1c{width:94.521000px;}
.w1a{width:107.989500px;}
.w20{width:114.645000px;}
.wf{width:114.681000px;}
.we{width:121.536000px;}
.w5{width:124.005000px;}
.w10{width:133.770000px;}
.w22{width:147.960000px;}
.w24{width:171.375000px;}
.w23{width:173.370000px;}
.w21{width:182.359500px;}
.wc{width:290.413500px;}
.wa{width:332.115000px;}
.w9{width:356.464500px;}
.wb{width:464.475000px;}
.w4{width:551.790000px;}
.w1b{width:567.090000px;}
.w7{width:616.455000px;}
.w3{width:628.290000px;}
.w8{width:688.590000px;}
.w12{width:790.018500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x36{left:2.878500px;}
.x1e{left:4.485000px;}
.x4{left:6.465000px;}
.x9{left:8.089500px;}
.x4a{left:9.525000px;}
.x5{left:10.789500px;}
.x2{left:12.049500px;}
.x4b{left:13.140000px;}
.x19{left:14.580000px;}
.x4e{left:15.690000px;}
.x10{left:16.740000px;}
.x2c{left:18.360000px;}
.x55{left:19.429500px;}
.x25{left:21.060000px;}
.x58{left:22.129500px;}
.x4d{left:23.205000px;}
.x37{left:25.198500px;}
.x4c{left:27.934500px;}
.x1b{left:29.190000px;}
.x5c{left:30.810000px;}
.x3a{left:32.038500px;}
.x1c{left:34.050000px;}
.x59{left:35.280000px;}
.x22{left:36.720000px;}
.x27{left:37.800000px;}
.x7{left:39.780000px;}
.x56{left:41.220000px;}
.x31{left:42.334500px;}
.x3c{left:44.314500px;}
.x32{left:47.194500px;}
.x57{left:48.600000px;}
.x30{left:50.794500px;}
.x16{left:54.001500px;}
.x35{left:55.650000px;}
.x23{left:57.450000px;}
.x21{left:58.894500px;}
.x2b{left:60.840000px;}
.x24{left:63.000000px;}
.x29{left:64.080000px;}
.x26{left:66.094500px;}
.x3b{left:68.254500px;}
.xd{left:73.785000px;}
.x2d{left:77.074500px;}
.x2a{left:78.694500px;}
.x38{left:80.134500px;}
.x3d{left:85.534500px;}
.x39{left:86.974500px;}
.x33{left:88.774500px;}
.x28{left:90.574500px;}
.x34{left:96.148500px;}
.x3e{left:98.128500px;}
.x8{left:100.126500px;}
.xb{left:101.386500px;}
.x3f{left:102.808500px;}
.x11{left:105.300000px;}
.x40{left:106.948500px;}
.x1{left:108.036000px;}
.x17{left:125.308500px;}
.x2e{left:128.008500px;}
.x41{left:130.186500px;}
.x3{left:157.005000px;}
.xa{left:176.805000px;}
.x42{left:202.545000px;}
.x13{left:211.170000px;}
.x4f{left:216.045000px;}
.x50{left:256.740000px;}
.x12{left:263.910000px;}
.x43{left:283.575000px;}
.x5a{left:290.415000px;}
.x51{left:310.575000px;}
.xf{left:325.875000px;}
.x18{left:344.415000px;}
.x20{left:345.493500px;}
.x2f{left:349.273500px;}
.x44{left:364.575000px;}
.x52{left:398.415000px;}
.x1a{left:425.415000px;}
.x45{left:438.915000px;}
.x14{left:453.855000px;}
.xc{left:457.860000px;}
.x15{left:462.705000px;}
.x53{left:479.460000px;}
.x46{left:506.460000px;}
.x1d{left:546.960000px;}
.x54{left:573.960000px;}
.x47{left:587.460000px;}
.x5b{left:611.760000px;}
.x6{left:661.650000px;}
.x48{left:668.490000px;}
.xe{left:680.323500px;}
.x49{left:749.490000px;}
.x1f{left:795.420000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-13.440000pt;}
.v5{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.880000pt;}
.v4{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls31{letter-spacing:-0.512000pt;}
.ls56{letter-spacing:-0.400000pt;}
.ls5c{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.294400pt;}
.ls33{letter-spacing:-0.290133pt;}
.ls55{letter-spacing:-0.288000pt;}
.ls42{letter-spacing:-0.282667pt;}
.lse{letter-spacing:-0.272000pt;}
.ls43{letter-spacing:-0.269867pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls2e{letter-spacing:-0.240000pt;}
.ls11{letter-spacing:-0.208000pt;}
.ls2b{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.176000pt;}
.ls17{letter-spacing:-0.160000pt;}
.ls41{letter-spacing:-0.150933pt;}
.ls1c{letter-spacing:-0.144000pt;}
.ls2d{letter-spacing:-0.112000pt;}
.ls28{letter-spacing:-0.096000pt;}
.ls7{letter-spacing:-0.081067pt;}
.ls1d{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls1b{letter-spacing:-0.048000pt;}
.lsc{letter-spacing:-0.032000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.010240pt;}
.ls1a{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.028160pt;}
.ls23{letter-spacing:0.032000pt;}
.ls35{letter-spacing:0.043520pt;}
.ls53{letter-spacing:0.048000pt;}
.ls40{letter-spacing:0.052480pt;}
.ls20{letter-spacing:0.080000pt;}
.ls36{letter-spacing:0.092800pt;}
.ls44{letter-spacing:0.096000pt;}
.ls32{letter-spacing:0.121600pt;}
.ls9{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls3f{letter-spacing:0.167467pt;}
.ls5a{letter-spacing:0.176000pt;}
.ls54{letter-spacing:0.208000pt;}
.ls1{letter-spacing:0.208640pt;}
.ls3b{letter-spacing:0.217600pt;}
.ls39{letter-spacing:0.222720pt;}
.ls5d{letter-spacing:0.224000pt;}
.ls3a{letter-spacing:0.248533pt;}
.ls29{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.266667pt;}
.ls59{letter-spacing:0.272000pt;}
.ls57{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.294400pt;}
.ls3d{letter-spacing:0.304000pt;}
.lsb{letter-spacing:0.320000pt;}
.ls52{letter-spacing:0.352000pt;}
.ls18{letter-spacing:0.480000pt;}
.ls4c{letter-spacing:0.496000pt;}
.lsd{letter-spacing:0.592000pt;}
.ls2c{letter-spacing:0.608000pt;}
.ls27{letter-spacing:0.640000pt;}
.ls49{letter-spacing:0.656000pt;}
.ls16{letter-spacing:1.232000pt;}
.ls15{letter-spacing:1.376000pt;}
.ls14{letter-spacing:1.872000pt;}
.ls4e{letter-spacing:1.888000pt;}
.ls38{letter-spacing:2.512000pt;}
.ls3{letter-spacing:2.528000pt;}
.ls24{letter-spacing:3.152000pt;}
.ls58{letter-spacing:3.808000pt;}
.ls2a{letter-spacing:4.432000pt;}
.ls3e{letter-spacing:5.706667pt;}
.ls48{letter-spacing:6.346667pt;}
.ls12{letter-spacing:6.352000pt;}
.ls4d{letter-spacing:6.986667pt;}
.ls13{letter-spacing:7.632000pt;}
.ls26{letter-spacing:8.288000pt;}
.ls51{letter-spacing:8.480000pt;}
.ls37{letter-spacing:10.352000pt;}
.ls1e{letter-spacing:11.466667pt;}
.ls50{letter-spacing:12.112000pt;}
.ls4f{letter-spacing:12.752000pt;}
.ls21{letter-spacing:13.552000pt;}
.ls5e{letter-spacing:14.032000pt;}
.ls3c{letter-spacing:15.312000pt;}
.ls30{letter-spacing:15.952000pt;}
.ls4b{letter-spacing:17.376000pt;}
.ls1f{letter-spacing:19.786667pt;}
.ls4a{letter-spacing:19.808000pt;}
.ls2f{letter-spacing:21.072000pt;}
.ls47{letter-spacing:23.626667pt;}
.ls22{letter-spacing:23.632000pt;}
.ls5b{letter-spacing:24.480000pt;}
.ls45{letter-spacing:34.512000pt;}
.ls46{letter-spacing:37.728000pt;}
.ls25{letter-spacing:1773.125333pt;}
.ws17{word-spacing:-48.000000pt;}
.ws1{word-spacing:-19.837013pt;}
.ws2{word-spacing:-17.152000pt;}
.wsa{word-spacing:-16.416000pt;}
.ws3{word-spacing:-16.320000pt;}
.ws9{word-spacing:-16.208000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.936000pt;}
.ws5{word-spacing:-14.955520pt;}
.ws8{word-spacing:-13.280000pt;}
.ws34{word-spacing:-12.480000pt;}
.ws39{word-spacing:-12.464000pt;}
.ws30{word-spacing:-12.448000pt;}
.ws32{word-spacing:-12.400000pt;}
.ws3b{word-spacing:-12.368000pt;}
.ws35{word-spacing:-12.352000pt;}
.ws37{word-spacing:-12.288000pt;}
.ws2c{word-spacing:-12.272000pt;}
.ws36{word-spacing:-12.240000pt;}
.ws2d{word-spacing:-12.224000pt;}
.ws2e{word-spacing:-12.192000pt;}
.ws18{word-spacing:-12.176000pt;}
.ws6{word-spacing:-12.160000pt;}
.ws3a{word-spacing:-12.144000pt;}
.wsd{word-spacing:-12.048000pt;}
.ws38{word-spacing:-12.000000pt;}
.ws2f{word-spacing:-11.920000pt;}
.ws21{word-spacing:-11.872000pt;}
.ws20{word-spacing:-11.824000pt;}
.ws33{word-spacing:-11.792000pt;}
.ws15{word-spacing:-11.648000pt;}
.ws3d{word-spacing:-11.616000pt;}
.ws11{word-spacing:-11.584000pt;}
.wse{word-spacing:-11.568000pt;}
.wsf{word-spacing:-11.536000pt;}
.ws13{word-spacing:-11.488000pt;}
.ws14{word-spacing:-11.472000pt;}
.ws19{word-spacing:-11.456000pt;}
.ws12{word-spacing:-11.424000pt;}
.wsc{word-spacing:-11.408000pt;}
.ws3c{word-spacing:-11.376000pt;}
.ws16{word-spacing:-11.360000pt;}
.ws1a{word-spacing:-11.328000pt;}
.ws10{word-spacing:-11.312000pt;}
.ws7{word-spacing:-11.296000pt;}
.ws31{word-spacing:-11.280000pt;}
.ws1b{word-spacing:-10.455680pt;}
.ws1f{word-spacing:-10.426880pt;}
.ws1e{word-spacing:-10.377600pt;}
.ws1d{word-spacing:-10.344320pt;}
.ws2b{word-spacing:-10.334080pt;}
.ws1c{word-spacing:-10.043947pt;}
.ws25{word-spacing:-9.194453pt;}
.ws2a{word-spacing:-9.163520pt;}
.ws22{word-spacing:-9.113387pt;}
.ws23{word-spacing:-8.998400pt;}
.ws24{word-spacing:-8.989440pt;}
.ws29{word-spacing:-8.945920pt;}
.ws26{word-spacing:-8.794987pt;}
.ws28{word-spacing:-8.676053pt;}
.ws27{word-spacing:-8.663253pt;}
.wsb{word-spacing:0.000000pt;}
._1{margin-left:-2.151467pt;}
._0{margin-left:-1.123200pt;}
._3{width:1.175467pt;}
._b{width:2.304000pt;}
._7{width:3.584000pt;}
._8{width:4.554667pt;}
._d{width:5.760000pt;}
._e{width:6.707200pt;}
._28{width:7.644800pt;}
._9{width:8.544000pt;}
._a{width:9.504000pt;}
._11{width:10.666667pt;}
._c{width:12.768000pt;}
._f{width:13.920000pt;}
._10{width:15.696000pt;}
._12{width:16.704000pt;}
._21{width:17.603200pt;}
._20{width:18.816000pt;}
._19{width:20.208000pt;}
._13{width:21.360000pt;}
._22{width:22.368000pt;}
._17{width:23.946667pt;}
._2f{width:24.864000pt;}
._1f{width:25.792000pt;}
._1e{width:26.922667pt;}
._18{width:28.272000pt;}
._27{width:29.312000pt;}
._23{width:30.352000pt;}
._31{width:31.254400pt;}
._14{width:32.208000pt;}
._1b{width:33.888000pt;}
._25{width:34.944000pt;}
._26{width:36.371200pt;}
._16{width:37.488000pt;}
._15{width:38.496000pt;}
._2b{width:39.696000pt;}
._3b{width:40.602667pt;}
._2d{width:41.720533pt;}
._29{width:42.768000pt;}
._2a{width:43.696000pt;}
._33{width:44.664533pt;}
._39{width:46.199467pt;}
._36{width:47.376000pt;}
._1a{width:48.378667pt;}
._1c{width:50.160000pt;}
._1d{width:51.456000pt;}
._6{width:54.493013pt;}
._5{width:55.894187pt;}
._40{width:59.274667pt;}
._41{width:60.197333pt;}
._2e{width:61.296000pt;}
._30{width:62.472533pt;}
._3a{width:63.648000pt;}
._32{width:64.558933pt;}
._2c{width:65.712000pt;}
._34{width:68.128000pt;}
._35{width:69.136000pt;}
._3f{width:70.346667pt;}
._2{width:71.500800pt;}
._4{width:72.453333pt;}
._3c{width:74.352000pt;}
._24{width:75.312000pt;}
._38{width:78.384000pt;}
._42{width:81.648000pt;}
._37{width:82.704000pt;}
._3d{width:85.200000pt;}
._3e{width:100.800000pt;}
.fs4{font-size:10.880000pt;}
.fs8{font-size:29.440000pt;}
.fsc{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fsd{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fsa{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:66.560000pt;}
.fs2{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.y42{bottom:-13.920000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:2.080000pt;}
.y7{bottom:2.560000pt;}
.y12{bottom:2.880000pt;}
.y21{bottom:3.040000pt;}
.y28{bottom:3.200000pt;}
.y2a{bottom:3.520000pt;}
.y4{bottom:3.680000pt;}
.y3{bottom:4.000000pt;}
.y26{bottom:4.480000pt;}
.yd5{bottom:4.786667pt;}
.ya7{bottom:4.800000pt;}
.yca{bottom:4.946667pt;}
.ya5{bottom:4.960000pt;}
.yc8{bottom:4.986667pt;}
.yda{bottom:4.992000pt;}
.ydf{bottom:5.280000pt;}
.ye8{bottom:5.440000pt;}
.yb7{bottom:5.600000pt;}
.yd1{bottom:6.226667pt;}
.yaa{bottom:6.240000pt;}
.y41{bottom:8.000000pt;}
.yf4{bottom:8.466667pt;}
.ydc{bottom:8.480000pt;}
.y1f{bottom:9.600000pt;}
.y106{bottom:9.760000pt;}
.y23{bottom:13.120000pt;}
.y24{bottom:13.280000pt;}
.y1b{bottom:13.440000pt;}
.y14{bottom:13.600000pt;}
.y3b{bottom:13.746667pt;}
.y3d{bottom:14.388000pt;}
.y10{bottom:17.960000pt;}
.ya4{bottom:19.520000pt;}
.y40{bottom:26.880000pt;}
.y1e{bottom:30.080000pt;}
.y3a{bottom:34.226667pt;}
.y1a{bottom:45.920000pt;}
.y5{bottom:51.840000pt;}
.yf{bottom:54.120000pt;}
.y39{bottom:54.706667pt;}
.y2{bottom:66.240000pt;}
.y3f{bottom:67.386667pt;}
.ya{bottom:71.520000pt;}
.y19{bottom:73.120000pt;}
.y38{bottom:75.026667pt;}
.y9{bottom:81.280000pt;}
.ye{bottom:90.440000pt;}
.y37{bottom:95.506667pt;}
.y18{bottom:100.320000pt;}
.y100{bottom:102.080000pt;}
.y104{bottom:102.720000pt;}
.ydb{bottom:103.360000pt;}
.y12e{bottom:104.160000pt;}
.y11d{bottom:106.720000pt;}
.y149{bottom:107.840000pt;}
.y18d{bottom:110.400000pt;}
.y71{bottom:113.120000pt;}
.ya2{bottom:114.880000pt;}
.y75{bottom:115.360000pt;}
.y16a{bottom:115.520000pt;}
.y70{bottom:115.840000pt;}
.y36{bottom:115.986667pt;}
.yd9{bottom:122.400000pt;}
.yff{bottom:122.560000pt;}
.y103{bottom:123.200000pt;}
.y12d{bottom:124.640000pt;}
.y11c{bottom:127.232000pt;}
.y148{bottom:128.192000pt;}
.y18c{bottom:130.912000pt;}
.y3c{bottom:131.718667pt;}
.ya1{bottom:135.386667pt;}
.y74{bottom:136.026667pt;}
.y6f{bottom:136.186667pt;}
.y35{bottom:136.466667pt;}
.yd8{bottom:137.960000pt;}
.yfe{bottom:143.226667pt;}
.y102{bottom:143.706667pt;}
.y12c{bottom:144.986667pt;}
.y11b{bottom:147.706667pt;}
.y147{bottom:148.666667pt;}
.y18b{bottom:151.386667pt;}
.yd7{bottom:153.480000pt;}
.y2b{bottom:154.600000pt;}
.ya0{bottom:155.866667pt;}
.y73{bottom:156.506667pt;}
.y6e{bottom:156.666667pt;}
.y34{bottom:156.946667pt;}
.yfd{bottom:163.866667pt;}
.y101{bottom:164.026667pt;}
.y12b{bottom:165.466667pt;}
.y11a{bottom:168.186667pt;}
.y146{bottom:169.146667pt;}
.yd6{bottom:170.280000pt;}
.y18a{bottom:171.866667pt;}
.y9f{bottom:176.346667pt;}
.y169{bottom:176.826667pt;}
.y72{bottom:176.986667pt;}
.y6d{bottom:177.146667pt;}
.y33{bottom:177.426667pt;}
.yfc{bottom:184.506667pt;}
.y12a{bottom:185.946667pt;}
.yd4{bottom:185.960000pt;}
.y119{bottom:188.666667pt;}
.y145{bottom:189.626667pt;}
.y189{bottom:192.346667pt;}
.y9e{bottom:196.826667pt;}
.y168{bottom:197.306667pt;}
.y6c{bottom:197.626667pt;}
.y32{bottom:197.786667pt;}
.yd3{bottom:201.480000pt;}
.y129{bottom:206.426667pt;}
.y118{bottom:209.146667pt;}
.y144{bottom:210.106667pt;}
.y188{bottom:212.666667pt;}
.yd2{bottom:217.000000pt;}
.y9d{bottom:217.306667pt;}
.y167{bottom:217.786667pt;}
.y6b{bottom:218.106667pt;}
.y31{bottom:218.266667pt;}
.yfb{bottom:222.906667pt;}
.y128{bottom:226.906667pt;}
.y117{bottom:229.466667pt;}
.y143{bottom:230.586667pt;}
.yd0{bottom:232.520000pt;}
.y187{bottom:233.146667pt;}
.y9c{bottom:237.626667pt;}
.y166{bottom:238.266667pt;}
.y6a{bottom:238.586667pt;}
.y30{bottom:238.746667pt;}
.yfa{bottom:239.866667pt;}
.y127{bottom:247.386667pt;}
.ycf{bottom:249.320000pt;}
.y116{bottom:249.946667pt;}
.y142{bottom:250.906667pt;}
.y186{bottom:253.626667pt;}
.yf9{bottom:256.826667pt;}
.y9b{bottom:258.106667pt;}
.y165{bottom:258.746667pt;}
.y69{bottom:258.906667pt;}
.y2f{bottom:259.226667pt;}
.yce{bottom:264.840000pt;}
.y126{bottom:267.706667pt;}
.y115{bottom:270.426667pt;}
.y141{bottom:271.386667pt;}
.yf8{bottom:273.786667pt;}
.y185{bottom:274.106667pt;}
.y9a{bottom:278.586667pt;}
.y164{bottom:279.226667pt;}
.y68{bottom:279.386667pt;}
.y2e{bottom:279.706667pt;}
.ycd{bottom:280.360000pt;}
.y125{bottom:288.186667pt;}
.yf7{bottom:290.746667pt;}
.y114{bottom:290.906667pt;}
.y140{bottom:291.866667pt;}
.y184{bottom:294.586667pt;}
.ycc{bottom:295.880000pt;}
.y99{bottom:299.066667pt;}
.y163{bottom:299.546667pt;}
.y67{bottom:299.866667pt;}
.y2d{bottom:300.186667pt;}
.yf6{bottom:307.706667pt;}
.y124{bottom:308.666667pt;}
.y113{bottom:311.386667pt;}
.ycb{bottom:311.560000pt;}
.y13f{bottom:312.346667pt;}
.y183{bottom:315.066667pt;}
.y98{bottom:319.546667pt;}
.y162{bottom:320.026667pt;}
.y66{bottom:320.346667pt;}
.y2c{bottom:320.506667pt;}
.yf5{bottom:324.666667pt;}
.yc9{bottom:327.080000pt;}
.y123{bottom:329.146667pt;}
.y112{bottom:331.706667pt;}
.y13e{bottom:332.826667pt;}
.y182{bottom:335.386667pt;}
.yf3{bottom:336.520000pt;}
.y97{bottom:339.866667pt;}
.y161{bottom:340.506667pt;}
.y65{bottom:340.826667pt;}
.yc7{bottom:342.600000pt;}
.y122{bottom:349.666667pt;}
.y111{bottom:352.226667pt;}
.y13d{bottom:353.346667pt;}
.yf2{bottom:354.466667pt;}
.y181{bottom:355.906667pt;}
.yc6{bottom:358.146667pt;}
.y96{bottom:360.386667pt;}
.y160{bottom:361.026667pt;}
.y64{bottom:361.346667pt;}
.yf1{bottom:369.506667pt;}
.y121{bottom:369.986667pt;}
.y110{bottom:372.706667pt;}
.yc5{bottom:373.666667pt;}
.y180{bottom:376.386667pt;}
.y95{bottom:380.866667pt;}
.y15f{bottom:381.506667pt;}
.y63{bottom:381.666667pt;}
.yf0{bottom:384.386667pt;}
.yc4{bottom:389.186667pt;}
.y120{bottom:390.466667pt;}
.y10f{bottom:393.186667pt;}
.y13c{bottom:394.146667pt;}
.y17f{bottom:396.866667pt;}
.yef{bottom:399.106667pt;}
.y94{bottom:401.346667pt;}
.y15e{bottom:401.826667pt;}
.y62{bottom:402.146667pt;}
.yc3{bottom:404.866667pt;}
.y11f{bottom:410.946667pt;}
.y10e{bottom:413.666667pt;}
.yee{bottom:414.146667pt;}
.y13b{bottom:414.626667pt;}
.y17e{bottom:417.346667pt;}
.yc2{bottom:420.386667pt;}
.y93{bottom:421.826667pt;}
.y15d{bottom:422.306667pt;}
.y61{bottom:422.626667pt;}
.yed{bottom:428.866667pt;}
.y11e{bottom:431.426667pt;}
.y10d{bottom:434.146667pt;}
.y13a{bottom:435.106667pt;}
.yc1{bottom:435.906667pt;}
.y17d{bottom:437.826667pt;}
.y92{bottom:442.306667pt;}
.y15c{bottom:442.786667pt;}
.y60{bottom:443.106667pt;}
.yec{bottom:443.586667pt;}
.yc0{bottom:451.426667pt;}
.y10c{bottom:454.466667pt;}
.y139{bottom:455.586667pt;}
.y17c{bottom:458.146667pt;}
.yeb{bottom:458.626667pt;}
.y91{bottom:462.626667pt;}
.y15b{bottom:463.266667pt;}
.y5f{bottom:463.586667pt;}
.ybf{bottom:466.946667pt;}
.yea{bottom:473.506667pt;}
.y10b{bottom:474.946667pt;}
.y138{bottom:476.066667pt;}
.y17b{bottom:481.346667pt;}
.y90{bottom:483.106667pt;}
.y15a{bottom:483.746667pt;}
.y5e{bottom:484.066667pt;}
.y29{bottom:485.826667pt;}
.ye9{bottom:488.226667pt;}
.y10a{bottom:495.426667pt;}
.y137{bottom:496.386667pt;}
.ybe{bottom:498.786667pt;}
.y27{bottom:499.426667pt;}
.y17a{bottom:501.826667pt;}
.ye7{bottom:502.946667pt;}
.y8f{bottom:503.586667pt;}
.y159{bottom:504.226667pt;}
.y5d{bottom:504.386667pt;}
.ybd{bottom:514.306667pt;}
.y109{bottom:515.906667pt;}
.y25{bottom:516.066667pt;}
.y136{bottom:516.866667pt;}
.ye6{bottom:517.826667pt;}
.y179{bottom:522.306667pt;}
.y8e{bottom:524.066667pt;}
.y158{bottom:524.546667pt;}
.y5c{bottom:524.866667pt;}
.y108{bottom:528.546667pt;}
.ybc{bottom:529.826667pt;}
.ye5{bottom:532.546667pt;}
.y22{bottom:533.986667pt;}
.y135{bottom:537.346667pt;}
.y178{bottom:542.626667pt;}
.y8d{bottom:544.546667pt;}
.y157{bottom:545.026667pt;}
.y5b{bottom:545.346667pt;}
.ye4{bottom:547.426667pt;}
.y107{bottom:551.106667pt;}
.y134{bottom:557.826667pt;}
.y20{bottom:560.546667pt;}
.ybb{bottom:560.866667pt;}
.ye3{bottom:562.146667pt;}
.y177{bottom:563.106667pt;}
.y8c{bottom:565.026667pt;}
.y156{bottom:565.506667pt;}
.y5a{bottom:565.826667pt;}
.y1d{bottom:572.573333pt;}
.yba{bottom:576.413333pt;}
.ye2{bottom:577.053333pt;}
.y133{bottom:578.333333pt;}
.y176{bottom:583.613333pt;}
.y8b{bottom:585.373333pt;}
.y155{bottom:586.013333pt;}
.y59{bottom:586.333333pt;}
.ye1{bottom:591.773333pt;}
.yb9{bottom:591.933333pt;}
.y105{bottom:594.973333pt;}
.y132{bottom:598.653333pt;}
.y175{bottom:604.093333pt;}
.y8a{bottom:605.853333pt;}
.ye0{bottom:606.493333pt;}
.y58{bottom:606.653333pt;}
.yb8{bottom:607.613333pt;}
.y131{bottom:611.453333pt;}
.y1c{bottom:613.373333pt;}
.yde{bottom:621.533333pt;}
.yb6{bottom:623.133333pt;}
.y174{bottom:624.573333pt;}
.y89{bottom:626.493333pt;}
.y154{bottom:626.973333pt;}
.y57{bottom:627.133333pt;}
.y17{bottom:628.573333pt;}
.y130{bottom:633.853333pt;}
.yb5{bottom:639.293333pt;}
.y173{bottom:644.893333pt;}
.y88{bottom:647.133333pt;}
.y153{bottom:647.293333pt;}
.y56{bottom:647.613333pt;}
.yb4{bottom:654.813333pt;}
.y12f{bottom:656.413333pt;}
.y172{bottom:665.373333pt;}
.y87{bottom:667.453333pt;}
.y152{bottom:667.773333pt;}
.y55{bottom:668.093333pt;}
.yb3{bottom:670.333333pt;}
.yb2{bottom:685.853333pt;}
.y86{bottom:687.933333pt;}
.y151{bottom:688.253333pt;}
.y54{bottom:688.573333pt;}
.y171{bottom:706.333333pt;}
.y85{bottom:708.413333pt;}
.y150{bottom:708.733333pt;}
.y53{bottom:709.053333pt;}
.yb1{bottom:715.933333pt;}
.y170{bottom:726.813333pt;}
.y84{bottom:728.893333pt;}
.y14f{bottom:729.213333pt;}
.y52{bottom:729.373333pt;}
.yb0{bottom:731.613333pt;}
.y15{bottom:737.373333pt;}
.yaf{bottom:747.133333pt;}
.y16f{bottom:747.293333pt;}
.y83{bottom:749.373333pt;}
.y14e{bottom:749.693333pt;}
.y51{bottom:749.853333pt;}
.y13{bottom:750.333333pt;}
.yae{bottom:762.653333pt;}
.y16e{bottom:767.613333pt;}
.y82{bottom:769.853333pt;}
.y14d{bottom:770.013333pt;}
.y50{bottom:770.333333pt;}
.y11{bottom:777.533333pt;}
.yad{bottom:778.173333pt;}
.y16d{bottom:788.093333pt;}
.yd{bottom:789.533333pt;}
.y81{bottom:790.173333pt;}
.y14c{bottom:790.533333pt;}
.ydd{bottom:790.693333pt;}
.y4f{bottom:790.853333pt;}
.yac{bottom:793.733333pt;}
.y16c{bottom:808.613333pt;}
.yab{bottom:809.253333pt;}
.y80{bottom:810.693333pt;}
.y14b{bottom:811.013333pt;}
.y4e{bottom:811.333333pt;}
.ya9{bottom:824.773333pt;}
.y16b{bottom:829.093333pt;}
.y7f{bottom:831.173333pt;}
.y14a{bottom:831.653333pt;}
.y4d{bottom:831.813333pt;}
.ya8{bottom:841.573333pt;}
.y7e{bottom:851.653333pt;}
.y4c{bottom:852.133333pt;}
.ya6{bottom:857.253333pt;}
.y7d{bottom:872.133333pt;}
.y4b{bottom:872.613333pt;}
.ya3{bottom:872.773333pt;}
.y7c{bottom:892.613333pt;}
.y4a{bottom:893.093333pt;}
.yc{bottom:900.773333pt;}
.y7b{bottom:912.933333pt;}
.y49{bottom:913.573333pt;}
.yb{bottom:915.653333pt;}
.y8{bottom:930.533333pt;}
.y7a{bottom:933.413333pt;}
.y48{bottom:934.053333pt;}
.y3e{bottom:946.853333pt;}
.y79{bottom:953.893333pt;}
.y47{bottom:954.533333pt;}
.y78{bottom:974.373333pt;}
.y46{bottom:974.853333pt;}
.y77{bottom:994.853333pt;}
.y45{bottom:995.333333pt;}
.y76{bottom:1015.680000pt;}
.y44{bottom:1015.840000pt;}
.y1{bottom:1040.960000pt;}
.y43{bottom:1060.160000pt;}
.y6{bottom:1062.880000pt;}
.hc{height:7.368437pt;}
.hf{height:12.000000pt;}
.h1d{height:12.026667pt;}
.h13{height:12.960000pt;}
.h23{height:13.586667pt;}
.h41{height:13.746667pt;}
.h3c{height:13.760000pt;}
.h40{height:13.786667pt;}
.h42{height:13.906667pt;}
.h43{height:14.066667pt;}
.h3f{height:14.080000pt;}
.h30{height:14.386667pt;}
.h35{height:14.400000pt;}
.h31{height:14.546667pt;}
.h34{height:14.560000pt;}
.h39{height:14.578667pt;}
.h33{height:14.580000pt;}
.h37{height:14.586667pt;}
.h3a{height:14.592000pt;}
.h38{height:15.186667pt;}
.h18{height:15.200000pt;}
.h32{height:15.826667pt;}
.h21{height:16.626667pt;}
.h44{height:16.978667pt;}
.h20{height:17.906667pt;}
.h3b{height:18.078667pt;}
.h3{height:18.398667pt;}
.h5{height:18.560000pt;}
.h48{height:20.320000pt;}
.h47{height:20.466667pt;}
.h45{height:20.480000pt;}
.h46{height:20.506667pt;}
.h16{height:22.223750pt;}
.h25{height:22.873333pt;}
.h26{height:25.907187pt;}
.h1f{height:26.546667pt;}
.h11{height:27.200000pt;}
.h3e{height:28.075625pt;}
.h10{height:29.040312pt;}
.h2e{height:29.106667pt;}
.h36{height:29.120000pt;}
.h1e{height:29.856875pt;}
.h14{height:32.788125pt;}
.h3d{height:33.857500pt;}
.h19{height:35.975313pt;}
.h2d{height:36.281250pt;}
.h2c{height:36.304688pt;}
.h29{height:36.703125pt;}
.h2f{height:39.111250pt;}
.h1a{height:40.800000pt;}
.h12{height:43.343750pt;}
.h1c{height:43.781250pt;}
.h17{height:44.562500pt;}
.h9{height:45.812500pt;}
.h1b{height:47.460938pt;}
.hb{height:48.406250pt;}
.h28{height:48.937500pt;}
.h2a{height:49.075000pt;}
.h49{height:49.336436pt;}
.h2b{height:49.968750pt;}
.h6{height:50.712187pt;}
.h4a{height:54.661250pt;}
.he{height:57.647187pt;}
.h22{height:58.218750pt;}
.h2{height:62.812500pt;}
.h4{height:64.500000pt;}
.ha{height:69.750000pt;}
.h7{height:75.465000pt;}
.h27{height:83.386667pt;}
.h8{height:96.026667pt;}
.h15{height:108.800000pt;}
.hd{height:108.820000pt;}
.h24{height:331.213333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:40.470667pt;}
.w11{width:43.200000pt;}
.w17{width:60.032000pt;}
.w13{width:61.630667pt;}
.w14{width:64.310667pt;}
.w16{width:66.080000pt;}
.w6{width:68.150667pt;}
.w18{width:71.986667pt;}
.wd{width:72.000000pt;}
.w15{width:72.018667pt;}
.w19{width:72.026667pt;}
.w1e{width:72.032000pt;}
.w1d{width:78.080000pt;}
.w1f{width:83.986667pt;}
.w1c{width:84.018667pt;}
.w1a{width:95.990667pt;}
.w20{width:101.906667pt;}
.wf{width:101.938667pt;}
.we{width:108.032000pt;}
.w5{width:110.226667pt;}
.w10{width:118.906667pt;}
.w22{width:131.520000pt;}
.w24{width:152.333333pt;}
.w23{width:154.106667pt;}
.w21{width:162.097333pt;}
.wc{width:258.145333pt;}
.wa{width:295.213333pt;}
.w9{width:316.857333pt;}
.wb{width:412.866667pt;}
.w4{width:490.480000pt;}
.w1b{width:504.080000pt;}
.w7{width:547.960000pt;}
.w3{width:558.480000pt;}
.w8{width:612.080000pt;}
.w12{width:702.238667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x36{left:2.558667pt;}
.x1e{left:3.986667pt;}
.x4{left:5.746667pt;}
.x9{left:7.190667pt;}
.x4a{left:8.466667pt;}
.x5{left:9.590667pt;}
.x2{left:10.710667pt;}
.x4b{left:11.680000pt;}
.x19{left:12.960000pt;}
.x4e{left:13.946667pt;}
.x10{left:14.880000pt;}
.x2c{left:16.320000pt;}
.x55{left:17.270667pt;}
.x25{left:18.720000pt;}
.x58{left:19.670667pt;}
.x4d{left:20.626667pt;}
.x37{left:22.398667pt;}
.x4c{left:24.830667pt;}
.x1b{left:25.946667pt;}
.x5c{left:27.386667pt;}
.x3a{left:28.478667pt;}
.x1c{left:30.266667pt;}
.x59{left:31.360000pt;}
.x22{left:32.640000pt;}
.x27{left:33.600000pt;}
.x7{left:35.360000pt;}
.x56{left:36.640000pt;}
.x31{left:37.630667pt;}
.x3c{left:39.390667pt;}
.x32{left:41.950667pt;}
.x57{left:43.200000pt;}
.x30{left:45.150667pt;}
.x16{left:48.001333pt;}
.x35{left:49.466667pt;}
.x23{left:51.066667pt;}
.x21{left:52.350667pt;}
.x2b{left:54.080000pt;}
.x24{left:56.000000pt;}
.x29{left:56.960000pt;}
.x26{left:58.750667pt;}
.x3b{left:60.670667pt;}
.xd{left:65.586667pt;}
.x2d{left:68.510667pt;}
.x2a{left:69.950667pt;}
.x38{left:71.230667pt;}
.x3d{left:76.030667pt;}
.x39{left:77.310667pt;}
.x33{left:78.910667pt;}
.x28{left:80.510667pt;}
.x34{left:85.465333pt;}
.x3e{left:87.225333pt;}
.x8{left:89.001333pt;}
.xb{left:90.121333pt;}
.x3f{left:91.385333pt;}
.x11{left:93.600000pt;}
.x40{left:95.065333pt;}
.x1{left:96.032000pt;}
.x17{left:111.385333pt;}
.x2e{left:113.785333pt;}
.x41{left:115.721333pt;}
.x3{left:139.560000pt;}
.xa{left:157.160000pt;}
.x42{left:180.040000pt;}
.x13{left:187.706667pt;}
.x4f{left:192.040000pt;}
.x50{left:228.213333pt;}
.x12{left:234.586667pt;}
.x43{left:252.066667pt;}
.x5a{left:258.146667pt;}
.x51{left:276.066667pt;}
.xf{left:289.666667pt;}
.x18{left:306.146667pt;}
.x20{left:307.105333pt;}
.x2f{left:310.465333pt;}
.x44{left:324.066667pt;}
.x52{left:354.146667pt;}
.x1a{left:378.146667pt;}
.x45{left:390.146667pt;}
.x14{left:403.426667pt;}
.xc{left:406.986667pt;}
.x15{left:411.293333pt;}
.x53{left:426.186667pt;}
.x46{left:450.186667pt;}
.x1d{left:486.186667pt;}
.x54{left:510.186667pt;}
.x47{left:522.186667pt;}
.x5b{left:543.786667pt;}
.x6{left:588.133333pt;}
.x48{left:594.213333pt;}
.xe{left:604.732000pt;}
.x49{left:666.213333pt;}
.x1f{left:707.040000pt;}
}




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