
    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_badd203d17e40f76cf908ccc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_417cd2468e3fa9f3d2b0bde8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_c14a15b3010b0259f32bf3ab.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958496;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_6ee5e280ed7fa8426111031b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093750;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_e2f761d83220a0912414c5b7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958496;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_a03b98324eb3b5295d54db85.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;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_c57598dcf2e08049082de777.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973000;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_beff2009a8ed8c9e6925afb2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093750;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_9c98deb34f91c1e9a145c477.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958496;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_bb837f565b80a06ae9914d41.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958496;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_c14a15b3010b0259f32bf3ab.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958496;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_0bc7d43f323ffd7bfe20bab5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.093750;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_f48b7f36799820714a769a5e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.970000;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_21cbd5f70c9960c95051ca3f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.954000;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_9c98deb34f91c1e9a145c477.woff2')format("woff");}.fff{font-family:fff;line-height:0.958496;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_bb837f565b80a06ae9914d41.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.958496;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_c14a15b3010b0259f32bf3ab.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.958496;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_0bc7d43f323ffd7bfe20bab5.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.093750;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_bb837f565b80a06ae9914d41.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.958496;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_c14a15b3010b0259f32bf3ab.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.958496;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_0bc7d43f323ffd7bfe20bab5.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.093750;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_bb837f565b80a06ae9914d41.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.958496;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_c14a15b3010b0259f32bf3ab.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.958496;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_0bc7d43f323ffd7bfe20bab5.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.093750;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_be95ebc29c918285aa154a86.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.800000;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);}
.v4{vertical-align:-18.360000px;}
.v3{vertical-align:-17.340000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:14.745000px;}
.v2{vertical-align:18.204000px;}
.v1{vertical-align:20.400600px;}
.ls47{letter-spacing:-4.644000px;}
.ls50{letter-spacing:-1.710000px;}
.ls5b{letter-spacing:-1.350000px;}
.ls68{letter-spacing:-1.305000px;}
.ls5a{letter-spacing:-0.945000px;}
.ls33{letter-spacing:-0.810000px;}
.ls61{letter-spacing:-0.765000px;}
.ls40{letter-spacing:-0.756000px;}
.ls58{letter-spacing:-0.720000px;}
.ls48{letter-spacing:-0.702000px;}
.ls31{letter-spacing:-0.648000px;}
.ls2e{letter-spacing:-0.594000px;}
.ls5c{letter-spacing:-0.585000px;}
.ls2c{letter-spacing:-0.486000px;}
.ls51{letter-spacing:-0.450000px;}
.ls2d{letter-spacing:-0.432000px;}
.ls4e{letter-spacing:-0.324000px;}
.ls53{letter-spacing:-0.315000px;}
.ls10{letter-spacing:-0.270000px;}
.ls64{letter-spacing:-0.225000px;}
.ls36{letter-spacing:-0.216000px;}
.ls57{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.175500px;}
.ls2b{letter-spacing:-0.162000px;}
.ls17{letter-spacing:-0.153000px;}
.ls59{letter-spacing:-0.146250px;}
.ls52{letter-spacing:-0.135000px;}
.ls16{letter-spacing:-0.108000px;}
.ls34{letter-spacing:-0.105300px;}
.ls65{letter-spacing:-0.090000px;}
.ls2f{letter-spacing:-0.054000px;}
.ls1c{letter-spacing:-0.051000px;}
.ls54{letter-spacing:-0.045000px;}
.ls3a{letter-spacing:-0.035100px;}
.ls1d{letter-spacing:-0.033150px;}
.lsf{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.013200px;}
.ls4{letter-spacing:0.013800px;}
.ls44{letter-spacing:0.017550px;}
.ls37{letter-spacing:0.019200px;}
.ls2{letter-spacing:0.022800px;}
.ls3e{letter-spacing:0.028200px;}
.ls46{letter-spacing:0.035100px;}
.ls4f{letter-spacing:0.045000px;}
.ls15{letter-spacing:0.054000px;}
.ls3d{letter-spacing:0.064800px;}
.ls5{letter-spacing:0.070200px;}
.ls4d{letter-spacing:0.090000px;}
.ls8{letter-spacing:0.094050px;}
.ls13{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.116250px;}
.ls26{letter-spacing:0.140400px;}
.ls9{letter-spacing:0.153000px;}
.ls29{letter-spacing:0.157950px;}
.ls22{letter-spacing:0.162000px;}
.ls32{letter-spacing:0.175500px;}
.ls6{letter-spacing:0.176250px;}
.ls3b{letter-spacing:0.180000px;}
.ls4b{letter-spacing:0.194400px;}
.lsa{letter-spacing:0.204000px;}
.ls41{letter-spacing:0.210600px;}
.ls27{letter-spacing:0.216000px;}
.ls55{letter-spacing:0.225000px;}
.ls43{letter-spacing:0.245700px;}
.ls24{letter-spacing:0.270000px;}
.ls35{letter-spacing:0.280800px;}
.ls18{letter-spacing:0.306000px;}
.ls56{letter-spacing:0.315000px;}
.ls30{letter-spacing:0.315900px;}
.ls20{letter-spacing:0.324000px;}
.ls2a{letter-spacing:0.351000px;}
.ls45{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.378000px;}
.ls5e{letter-spacing:0.405000px;}
.ls25{letter-spacing:0.432000px;}
.ls5f{letter-spacing:0.450000px;}
.ls3f{letter-spacing:0.456300px;}
.ls28{letter-spacing:0.486000px;}
.ls4c{letter-spacing:0.495000px;}
.ls14{letter-spacing:0.540000px;}
.lsd{letter-spacing:0.543450px;}
.ls62{letter-spacing:0.585000px;}
.ls23{letter-spacing:0.594000px;}
.ls7{letter-spacing:0.644850px;}
.ls1f{letter-spacing:0.648000px;}
.ls67{letter-spacing:0.672750px;}
.ls38{letter-spacing:0.702000px;}
.ls3c{letter-spacing:0.756000px;}
.ls1b{letter-spacing:0.762450px;}
.ls66{letter-spacing:0.765000px;}
.ls39{letter-spacing:0.810000px;}
.ls49{letter-spacing:0.840000px;}
.ls42{letter-spacing:0.864000px;}
.lsc{letter-spacing:0.867000px;}
.ls63{letter-spacing:0.900000px;}
.lse{letter-spacing:0.960000px;}
.ls60{letter-spacing:0.972000px;}
.ls19{letter-spacing:1.020000px;}
.ls69{letter-spacing:1.026000px;}
.ls5d{letter-spacing:1.080000px;}
.ls1a{letter-spacing:1.173000px;}
.ls4a{letter-spacing:1.188000px;}
.ls0{letter-spacing:2.592000px;}
.ls1e{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls21{letter-spacing:14.742000px;}
.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;}
}
.ws2{word-spacing:-15.067500px;}
.ws6a{word-spacing:-13.596000px;}
.ws52{word-spacing:-12.528000px;}
.ws3{word-spacing:-12.360000px;}
.ws28{word-spacing:-12.258000px;}
.ws50{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.192000px;}
.ws69{word-spacing:-11.934000px;}
.ws5c{word-spacing:-11.880000px;}
.ws33{word-spacing:-11.610000px;}
.ws36{word-spacing:-11.448000px;}
.ws6e{word-spacing:-10.305000px;}
.ws89{word-spacing:-10.080000px;}
.ws56{word-spacing:-10.044000px;}
.ws6c{word-spacing:-9.990000px;}
.ws74{word-spacing:-9.855000px;}
.ws73{word-spacing:-9.810000px;}
.ws6d{word-spacing:-9.720000px;}
.ws6f{word-spacing:-9.585000px;}
.ws71{word-spacing:-9.360000px;}
.ws8b{word-spacing:-9.000000px;}
.ws72{word-spacing:-8.955000px;}
.ws6b{word-spacing:-8.595000px;}
.ws53{word-spacing:-8.424000px;}
.ws38{word-spacing:-8.318700px;}
.ws32{word-spacing:-8.283600px;}
.ws39{word-spacing:-8.248500px;}
.ws5b{word-spacing:-8.213400px;}
.ws51{word-spacing:-8.178300px;}
.ws34{word-spacing:-8.143200px;}
.ws35{word-spacing:-8.125650px;}
.ws31{word-spacing:-8.108100px;}
.ws7{word-spacing:-8.037900px;}
.ws4{word-spacing:-8.034000px;}
.ws5e{word-spacing:-8.002800px;}
.ws5d{word-spacing:-7.985250px;}
.ws6{word-spacing:-7.967700px;}
.ws48{word-spacing:-7.932600px;}
.ws37{word-spacing:-7.862400px;}
.ws5{word-spacing:-7.792200px;}
.ws5a{word-spacing:-7.722000px;}
.ws9{word-spacing:-7.392450px;}
.ws8a{word-spacing:-7.312500px;}
.ws8{word-spacing:-6.630000px;}
.wsa{word-spacing:-6.596850px;}
.ws70{word-spacing:-6.493500px;}
.ws10{word-spacing:-5.340000px;}
.ws92{word-spacing:-3.960000px;}
.ws1d{word-spacing:-3.825000px;}
.ws11{word-spacing:-3.600000px;}
.wsc{word-spacing:-3.276000px;}
.ws27{word-spacing:-2.760000px;}
.wsf{word-spacing:-2.700000px;}
.ws1{word-spacing:-2.640000px;}
.wse{word-spacing:-2.400000px;}
.ws41{word-spacing:-2.106000px;}
.ws4a{word-spacing:-1.944000px;}
.ws13{word-spacing:-1.890000px;}
.ws17{word-spacing:-1.836000px;}
.ws68{word-spacing:-1.782000px;}
.ws2d{word-spacing:-1.728000px;}
.ws93{word-spacing:-1.674000px;}
.ws79{word-spacing:-1.575000px;}
.ws43{word-spacing:-1.566000px;}
.ws78{word-spacing:-1.530000px;}
.ws5f{word-spacing:-1.512000px;}
.ws55{word-spacing:-1.458000px;}
.ws86{word-spacing:-1.440000px;}
.ws29{word-spacing:-1.404000px;}
.ws81{word-spacing:-1.350000px;}
.ws2b{word-spacing:-1.296000px;}
.wsd{word-spacing:-1.260000px;}
.ws2a{word-spacing:-1.242000px;}
.ws30{word-spacing:-1.188000px;}
.ws24{word-spacing:-1.173000px;}
.ws88{word-spacing:-1.170000px;}
.ws12{word-spacing:-1.134000px;}
.ws25{word-spacing:-1.122000px;}
.ws58{word-spacing:-1.080000px;}
.ws75{word-spacing:-1.035000px;}
.ws3b{word-spacing:-1.026000px;}
.ws1e{word-spacing:-1.020000px;}
.ws8c{word-spacing:-0.990000px;}
.ws57{word-spacing:-0.918000px;}
.ws87{word-spacing:-0.900000px;}
.ws22{word-spacing:-0.867000px;}
.ws4f{word-spacing:-0.864000px;}
.ws7e{word-spacing:-0.855000px;}
.ws63{word-spacing:-0.840000px;}
.ws4b{word-spacing:-0.810000px;}
.ws60{word-spacing:-0.756000px;}
.ws82{word-spacing:-0.720000px;}
.ws15{word-spacing:-0.702000px;}
.ws16{word-spacing:-0.648000px;}
.ws19{word-spacing:-0.594000px;}
.ws77{word-spacing:-0.585000px;}
.ws42{word-spacing:-0.540000px;}
.ws20{word-spacing:-0.510000px;}
.ws76{word-spacing:-0.495000px;}
.ws3a{word-spacing:-0.486000px;}
.ws7d{word-spacing:-0.450000px;}
.ws2e{word-spacing:-0.432000px;}
.ws80{word-spacing:-0.405000px;}
.ws4c{word-spacing:-0.378000px;}
.ws67{word-spacing:-0.360000px;}
.ws18{word-spacing:-0.324000px;}
.ws7f{word-spacing:-0.315000px;}
.ws1c{word-spacing:-0.306000px;}
.ws14{word-spacing:-0.270000px;}
.ws3e{word-spacing:-0.216000px;}
.ws21{word-spacing:-0.204000px;}
.ws54{word-spacing:-0.180000px;}
.ws46{word-spacing:-0.162000px;}
.ws1f{word-spacing:-0.153000px;}
.ws7b{word-spacing:-0.135000px;}
.ws47{word-spacing:-0.108000px;}
.ws85{word-spacing:-0.090000px;}
.ws44{word-spacing:-0.054000px;}
.wsb{word-spacing:0.000000px;}
.ws7c{word-spacing:0.045000px;}
.ws26{word-spacing:0.051000px;}
.ws45{word-spacing:0.054000px;}
.ws4e{word-spacing:0.108000px;}
.ws7a{word-spacing:0.135000px;}
.ws1b{word-spacing:0.153000px;}
.ws1a{word-spacing:0.162000px;}
.ws8f{word-spacing:0.180000px;}
.ws3c{word-spacing:0.216000px;}
.ws61{word-spacing:0.270000px;}
.ws2f{word-spacing:0.324000px;}
.ws8d{word-spacing:0.360000px;}
.ws66{word-spacing:0.378000px;}
.ws2c{word-spacing:0.432000px;}
.ws4d{word-spacing:0.486000px;}
.ws3d{word-spacing:0.540000px;}
.ws40{word-spacing:0.594000px;}
.ws3f{word-spacing:0.648000px;}
.ws49{word-spacing:0.756000px;}
.ws64{word-spacing:0.810000px;}
.ws90{word-spacing:0.855000px;}
.ws59{word-spacing:0.864000px;}
.ws23{word-spacing:1.071000px;}
.ws62{word-spacing:1.080000px;}
.ws8e{word-spacing:1.170000px;}
.ws94{word-spacing:1.296000px;}
.ws91{word-spacing:1.404000px;}
.ws83{word-spacing:1.620000px;}
.ws84{word-spacing:1.665000px;}
.ws65{word-spacing:1.782000px;}
._e{margin-left:-10.637400px;}
._8{margin-left:-9.215400px;}
._9{margin-left:-8.046900px;}
._5{margin-left:-6.897900px;}
._3{margin-left:-5.364000px;}
._2{margin-left:-3.748200px;}
._0{margin-left:-1.776000px;}
._1{width:1.946400px;}
._6{width:3.296700px;}
._4{width:5.040600px;}
._d{width:7.785000px;}
._c{width:9.082200px;}
._a{width:36.234000px;}
._7{width:47.712600px;}
._b{width:49.007400px;}
.fc3{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fsc{font-size:29.250000px;}
.fs7{font-size:33.150000px;}
.fs6{font-size:35.100000px;}
.fs4{font-size:39.000000px;}
.fsb{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:27.197850px;}
.y2{bottom:27.253800px;}
.y2f{bottom:68.307900px;}
.yf6{bottom:68.553000px;}
.y134{bottom:68.569500px;}
.y17b{bottom:74.890800px;}
.y44{bottom:76.300800px;}
.yac{bottom:77.058300px;}
.y2e{bottom:83.307900px;}
.yf5{bottom:83.551500px;}
.y133{bottom:83.568000px;}
.y17a{bottom:87.637050px;}
.y43{bottom:91.299300px;}
.yab{bottom:92.056800px;}
.y82{bottom:95.800800px;}
.y2d{bottom:98.307900px;}
.yf4{bottom:98.553000px;}
.y132{bottom:98.566500px;}
.y179{bottom:100.383300px;}
.y42{bottom:106.297800px;}
.yaa{bottom:107.055300px;}
.y81{bottom:110.799300px;}
.y178{bottom:113.129550px;}
.y2c{bottom:113.307900px;}
.yf3{bottom:113.551500px;}
.y131{bottom:113.565000px;}
.y41{bottom:121.296300px;}
.ya9{bottom:122.053800px;}
.y80{bottom:125.797800px;}
.y177{bottom:125.875800px;}
.y2b{bottom:128.313900px;}
.yf2{bottom:128.554500px;}
.y130{bottom:128.563500px;}
.y40{bottom:136.294800px;}
.ya8{bottom:137.052300px;}
.y176{bottom:138.622050px;}
.y7f{bottom:140.796300px;}
.y2a{bottom:143.307900px;}
.yf1{bottom:143.553000px;}
.y12f{bottom:143.562000px;}
.y3f{bottom:151.293300px;}
.y175{bottom:151.368300px;}
.ya7{bottom:152.050800px;}
.y7e{bottom:155.794800px;}
.y29{bottom:158.307900px;}
.yf0{bottom:158.551500px;}
.y12e{bottom:158.560500px;}
.y174{bottom:164.114550px;}
.y3e{bottom:166.291800px;}
.ya6{bottom:167.049300px;}
.y7d{bottom:170.802300px;}
.yef{bottom:173.554500px;}
.y12d{bottom:173.559000px;}
.y173{bottom:176.860800px;}
.y28{bottom:177.636900px;}
.y3d{bottom:181.290300px;}
.ya5{bottom:182.047800px;}
.y7c{bottom:185.800800px;}
.y27{bottom:188.307900px;}
.yee{bottom:188.553000px;}
.y12c{bottom:188.557500px;}
.y172{bottom:189.607050px;}
.y3c{bottom:196.288800px;}
.ya4{bottom:197.046300px;}
.y7b{bottom:200.799300px;}
.y171{bottom:202.353300px;}
.y12b{bottom:203.556000px;}
.y1b9{bottom:207.549300px;}
.y26{bottom:207.636900px;}
.y3b{bottom:211.287300px;}
.ya3{bottom:212.044800px;}
.y170{bottom:215.099550px;}
.y7a{bottom:215.797800px;}
.y25{bottom:218.307900px;}
.y12a{bottom:218.554500px;}
.yed{bottom:219.306000px;}
.y1b8{bottom:222.547800px;}
.y3a{bottom:226.285800px;}
.ya2{bottom:227.046300px;}
.y16f{bottom:227.845800px;}
.y79{bottom:230.796300px;}
.y129{bottom:233.553000px;}
.yec{bottom:234.304500px;}
.y1b7{bottom:237.546300px;}
.y24{bottom:237.636900px;}
.y16e{bottom:240.592050px;}
.y39{bottom:241.284300px;}
.ya1{bottom:242.044800px;}
.y78{bottom:245.794800px;}
.y128{bottom:248.551500px;}
.yeb{bottom:249.303000px;}
.y1b6{bottom:252.544800px;}
.y16d{bottom:253.338300px;}
.y38{bottom:256.282800px;}
.ya0{bottom:257.055300px;}
.y77{bottom:260.794800px;}
.y127{bottom:263.550000px;}
.yea{bottom:264.301500px;}
.y16c{bottom:266.084550px;}
.y1b5{bottom:267.543300px;}
.y37{bottom:271.281300px;}
.y9f{bottom:272.053800px;}
.y76{bottom:275.794800px;}
.y16b{bottom:278.830800px;}
.ye9{bottom:279.358500px;}
.y36{bottom:286.279800px;}
.y9e{bottom:287.052300px;}
.y1b4{bottom:289.297800px;}
.y75{bottom:290.797800px;}
.y16a{bottom:291.577050px;}
.y126{bottom:293.385600px;}
.ye8{bottom:294.357000px;}
.y23{bottom:297.688800px;}
.y35{bottom:301.278300px;}
.y9d{bottom:302.050800px;}
.y1b3{bottom:304.296300px;}
.y169{bottom:304.323300px;}
.y74{bottom:305.796300px;}
.y125{bottom:308.384100px;}
.ye7{bottom:309.355500px;}
.y22{bottom:312.687300px;}
.y9c{bottom:317.049300px;}
.y168{bottom:317.069550px;}
.y73{bottom:320.794800px;}
.y124{bottom:323.382600px;}
.ye6{bottom:324.354000px;}
.y1b2{bottom:326.044800px;}
.y21{bottom:327.685800px;}
.y167{bottom:329.815800px;}
.y9b{bottom:332.047800px;}
.y72{bottom:335.794800px;}
.y123{bottom:338.384100px;}
.ye5{bottom:339.352500px;}
.y166{bottom:342.562050px;}
.y20{bottom:342.688800px;}
.y9a{bottom:347.046300px;}
.y1b1{bottom:347.793300px;}
.y71{bottom:350.796300px;}
.y58{bottom:351.768450px;}
.y122{bottom:353.382600px;}
.ye4{bottom:354.351000px;}
.y165{bottom:355.308300px;}
.y1f{bottom:357.687300px;}
.y99{bottom:362.044800px;}
.y1b0{bottom:362.793300px;}
.y70{bottom:365.794800px;}
.y57{bottom:366.766950px;}
.y164{bottom:368.054550px;}
.y121{bottom:368.382600px;}
.ye3{bottom:369.349500px;}
.y1e{bottom:372.685800px;}
.y98{bottom:377.044800px;}
.y6f{bottom:380.794800px;}
.y163{bottom:380.800800px;}
.y56{bottom:381.765450px;}
.y120{bottom:383.384100px;}
.ye2{bottom:384.348000px;}
.y1d{bottom:387.690300px;}
.y1af{bottom:389.796300px;}
.y97{bottom:392.044800px;}
.y162{bottom:393.547050px;}
.y6e{bottom:395.794800px;}
.y55{bottom:396.766950px;}
.y11f{bottom:398.382600px;}
.ye1{bottom:399.346500px;}
.y1c{bottom:402.688800px;}
.y1ae{bottom:404.794800px;}
.y161{bottom:406.432050px;}
.y96{bottom:407.050800px;}
.y6d{bottom:410.794800px;}
.y54{bottom:411.765450px;}
.y11e{bottom:413.385600px;}
.ye0{bottom:414.345000px;}
.y1b{bottom:417.687300px;}
.y160{bottom:419.178300px;}
.y1ad{bottom:419.793300px;}
.y95{bottom:422.049300px;}
.y6c{bottom:425.794800px;}
.y53{bottom:426.771450px;}
.y11d{bottom:428.384100px;}
.ydf{bottom:429.343500px;}
.y15f{bottom:431.924550px;}
.y1a{bottom:432.685800px;}
.y1ac{bottom:434.793300px;}
.y94{bottom:437.047800px;}
.y6b{bottom:440.797800px;}
.y52{bottom:441.769950px;}
.y11c{bottom:443.382600px;}
.yde{bottom:444.342000px;}
.y15e{bottom:444.670800px;}
.y19{bottom:447.723300px;}
.y93{bottom:452.046300px;}
.y6a{bottom:455.796300px;}
.y51{bottom:456.768450px;}
.y15d{bottom:457.417050px;}
.y11b{bottom:458.381100px;}
.ydd{bottom:459.340500px;}
.y1ab{bottom:461.802300px;}
.y92{bottom:467.044800px;}
.y15c{bottom:470.163300px;}
.y69{bottom:470.794800px;}
.y50{bottom:471.766950px;}
.ydc{bottom:474.339000px;}
.y1aa{bottom:476.800800px;}
.y91{bottom:482.058300px;}
.y15b{bottom:482.909550px;}
.y68{bottom:485.815800px;}
.y4f{bottom:486.765450px;}
.y11a{bottom:488.219700px;}
.ydb{bottom:489.337500px;}
.y1a9{bottom:491.799300px;}
.y18{bottom:494.973300px;}
.y15a{bottom:495.655800px;}
.y90{bottom:497.056800px;}
.y67{bottom:500.814300px;}
.y4e{bottom:501.777450px;}
.y119{bottom:503.218200px;}
.yda{bottom:504.336000px;}
.y1a8{bottom:506.797800px;}
.y159{bottom:508.402050px;}
.y17{bottom:511.470300px;}
.y8f{bottom:512.055300px;}
.y66{bottom:515.812800px;}
.y4d{bottom:516.775950px;}
.y118{bottom:518.216700px;}
.yd9{bottom:519.334500px;}
.y158{bottom:521.148300px;}
.y1a7{bottom:521.796300px;}
.y8e{bottom:527.053800px;}
.y16{bottom:527.967300px;}
.y65{bottom:530.811300px;}
.y4c{bottom:531.774450px;}
.y117{bottom:533.215200px;}
.y157{bottom:533.894550px;}
.yd8{bottom:534.333000px;}
.y1a6{bottom:536.794800px;}
.y8d{bottom:542.052300px;}
.y15{bottom:544.464300px;}
.y64{bottom:545.809800px;}
.y156{bottom:546.640800px;}
.y4b{bottom:546.772950px;}
.y116{bottom:548.213700px;}
.yd7{bottom:549.331500px;}
.y1a5{bottom:551.793300px;}
.y8c{bottom:557.050800px;}
.y155{bottom:559.387050px;}
.y63{bottom:560.808300px;}
.y14{bottom:560.961300px;}
.y4a{bottom:561.771450px;}
.y115{bottom:563.216700px;}
.yd6{bottom:564.330000px;}
.y1a4{bottom:566.793300px;}
.y8b{bottom:572.049300px;}
.y154{bottom:572.133300px;}
.y62{bottom:575.806800px;}
.y49{bottom:576.769950px;}
.y13{bottom:577.458300px;}
.y114{bottom:578.215200px;}
.yd5{bottom:579.328500px;}
.y153{bottom:584.879550px;}
.y8a{bottom:587.047800px;}
.y61{bottom:590.805300px;}
.y48{bottom:591.768450px;}
.y113{bottom:593.213700px;}
.y1a3{bottom:593.800800px;}
.y12{bottom:593.955300px;}
.yd4{bottom:594.327000px;}
.y152{bottom:597.625800px;}
.y89{bottom:602.046300px;}
.y60{bottom:605.803800px;}
.y1a2{bottom:606.547050px;}
.y47{bottom:606.766950px;}
.y112{bottom:608.213700px;}
.yd3{bottom:609.325500px;}
.y151{bottom:610.372050px;}
.y11{bottom:610.452300px;}
.y88{bottom:617.044800px;}
.y1a1{bottom:619.432050px;}
.y5f{bottom:620.802300px;}
.y46{bottom:621.765450px;}
.y150{bottom:623.118300px;}
.y111{bottom:623.225700px;}
.yd2{bottom:624.324000px;}
.y10{bottom:626.949300px;}
.y87{bottom:632.043300px;}
.y1a0{bottom:632.178300px;}
.y5e{bottom:635.800800px;}
.y14f{bottom:635.864550px;}
.y45{bottom:636.763950px;}
.y110{bottom:638.224200px;}
.yd1{bottom:639.322500px;}
.yf{bottom:643.446300px;}
.y19f{bottom:644.924550px;}
.y14e{bottom:648.610800px;}
.y5d{bottom:650.799300px;}
.y10f{bottom:653.222700px;}
.yd0{bottom:654.321000px;}
.y19e{bottom:657.670800px;}
.ye{bottom:659.943300px;}
.y14d{bottom:661.357050px;}
.y5c{bottom:665.797800px;}
.y10e{bottom:668.221200px;}
.ycf{bottom:669.319500px;}
.y19d{bottom:670.417050px;}
.y14c{bottom:674.103300px;}
.yd{bottom:676.440300px;}
.y5b{bottom:680.796300px;}
.yb3{bottom:681.247950px;}
.y19c{bottom:683.163300px;}
.y10d{bottom:683.219700px;}
.yce{bottom:684.318000px;}
.y14b{bottom:686.849550px;}
.yc{bottom:692.937300px;}
.y5a{bottom:695.794800px;}
.y19b{bottom:695.909550px;}
.yb2{bottom:696.246450px;}
.y10c{bottom:698.218200px;}
.ycd{bottom:699.316500px;}
.y14a{bottom:699.595800px;}
.y19a{bottom:708.655800px;}
.yb{bottom:709.434300px;}
.y59{bottom:710.793300px;}
.yb1{bottom:711.244950px;}
.y149{bottom:712.342050px;}
.y10b{bottom:713.216700px;}
.ycc{bottom:714.315000px;}
.y199{bottom:721.402050px;}
.y148{bottom:725.088300px;}
.yb0{bottom:726.243450px;}
.y10a{bottom:728.215200px;}
.ycb{bottom:729.313500px;}
.y198{bottom:734.148300px;}
.y147{bottom:737.834550px;}
.ya{bottom:739.434300px;}
.yaf{bottom:741.241950px;}
.y109{bottom:743.213700px;}
.yca{bottom:744.312000px;}
.y197{bottom:746.894550px;}
.y146{bottom:750.580800px;}
.yae{bottom:756.240450px;}
.y32{bottom:757.050000px;}
.y9{bottom:757.434300px;}
.y108{bottom:758.212200px;}
.yc9{bottom:759.310500px;}
.y196{bottom:759.640800px;}
.y86{bottom:762.423450px;}
.y145{bottom:763.327050px;}
.yad{bottom:771.238950px;}
.y195{bottom:772.387050px;}
.yc8{bottom:774.309000px;}
.y8{bottom:775.434300px;}
.y144{bottom:776.073300px;}
.y85{bottom:777.421950px;}
.y31{bottom:778.050000px;}
.y194{bottom:785.133300px;}
.y143{bottom:788.819550px;}
.yc7{bottom:789.307500px;}
.y84{bottom:792.420450px;}
.y7{bottom:793.434300px;}
.y193{bottom:797.879550px;}
.y30{bottom:799.050000px;}
.y142{bottom:801.565800px;}
.y107{bottom:803.800800px;}
.yc6{bottom:804.306000px;}
.y83{bottom:807.418950px;}
.y192{bottom:810.625800px;}
.y141{bottom:814.312050px;}
.y106{bottom:818.799300px;}
.yc5{bottom:819.304500px;}
.y191{bottom:823.372050px;}
.y6{bottom:826.422300px;}
.y140{bottom:827.058300px;}
.y105{bottom:833.797800px;}
.yc4{bottom:834.303000px;}
.y190{bottom:836.118300px;}
.y13f{bottom:839.804550px;}
.y104{bottom:848.796300px;}
.y18f{bottom:848.864550px;}
.yc3{bottom:849.301500px;}
.y13e{bottom:852.550800px;}
.y18e{bottom:861.610800px;}
.y103{bottom:863.794800px;}
.yc2{bottom:864.300000px;}
.y13d{bottom:865.297050px;}
.y5{bottom:871.428300px;}
.y18d{bottom:874.357050px;}
.y13c{bottom:878.043300px;}
.y102{bottom:878.802300px;}
.yc1{bottom:879.300000px;}
.y18c{bottom:887.103300px;}
.y13b{bottom:890.793300px;}
.y101{bottom:893.800800px;}
.y18b{bottom:899.849550px;}
.y100{bottom:908.799300px;}
.yc0{bottom:908.811300px;}
.y18a{bottom:912.595800px;}
.y4{bottom:916.434300px;}
.y13a{bottom:923.794800px;}
.yff{bottom:923.797800px;}
.ybf{bottom:923.809800px;}
.y189{bottom:925.342050px;}
.y33{bottom:926.409600px;}
.y188{bottom:938.088300px;}
.y139{bottom:938.794800px;}
.yfe{bottom:938.796300px;}
.ybe{bottom:938.808300px;}
.y187{bottom:950.834550px;}
.yfd{bottom:953.794800px;}
.y138{bottom:953.799300px;}
.ybd{bottom:953.806800px;}
.y186{bottom:963.580800px;}
.yfc{bottom:968.794800px;}
.y137{bottom:968.797800px;}
.ybc{bottom:968.805300px;}
.y185{bottom:976.327050px;}
.y136{bottom:983.796300px;}
.yfb{bottom:983.800800px;}
.ybb{bottom:983.803800px;}
.y184{bottom:989.073300px;}
.y135{bottom:998.794800px;}
.yfa{bottom:998.799300px;}
.yba{bottom:998.802300px;}
.y183{bottom:1001.819550px;}
.yf9{bottom:1013.797800px;}
.yb9{bottom:1013.800800px;}
.y182{bottom:1014.565800px;}
.y181{bottom:1027.312050px;}
.yf8{bottom:1028.796300px;}
.yb8{bottom:1028.799300px;}
.y180{bottom:1040.058300px;}
.yf7{bottom:1043.794800px;}
.yb7{bottom:1043.797800px;}
.y17f{bottom:1052.804550px;}
.yb6{bottom:1058.796300px;}
.y17e{bottom:1065.550800px;}
.yb5{bottom:1073.794800px;}
.y17d{bottom:1078.297050px;}
.yb4{bottom:1088.793300px;}
.y17c{bottom:1091.043300px;}
.y34{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.hd{height:28.326416px;}
.h1f{height:32.220000px;}
.h20{height:35.688000px;}
.ha{height:38.664000px;}
.h1b{height:38.718000px;}
.h8{height:38.838867px;}
.h3{height:41.015625px;}
.h2{height:43.154297px;}
.h1c{height:43.257000px;}
.h9{height:43.335600px;}
.h15{height:43.401600px;}
.h18{height:43.431600px;}
.h12{height:43.437600px;}
.h19{height:43.443600px;}
.h17{height:43.455600px;}
.h13{height:43.461600px;}
.hb{height:43.467600px;}
.h1d{height:43.473000px;}
.hc{height:43.473600px;}
.h1e{height:43.479000px;}
.h14{height:43.479600px;}
.h16{height:43.485600px;}
.hf{height:43.579102px;}
.h10{height:45.618416px;}
.he{height:45.642416px;}
.h1a{height:47.469727px;}
.h7{height:48.450293px;}
.h6{height:48.450893px;}
.h4{height:52.551270px;}
.h11{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:61.191450px;}
.x7{left:71.141550px;}
.x6{left:78.953550px;}
.x5{left:100.349550px;}
.x8{left:140.952750px;}
.x4{left:233.456400px;}
.xc{left:238.992000px;}
.x9{left:251.452500px;}
.xb{left:255.207150px;}
.xd{left:300.348750px;}
.x3{left:584.586600px;}
.xa{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.v4{vertical-align:-16.320000pt;}
.v3{vertical-align:-15.413333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.106667pt;}
.v2{vertical-align:16.181333pt;}
.v1{vertical-align:18.133867pt;}
.ls47{letter-spacing:-4.128000pt;}
.ls50{letter-spacing:-1.520000pt;}
.ls5b{letter-spacing:-1.200000pt;}
.ls68{letter-spacing:-1.160000pt;}
.ls5a{letter-spacing:-0.840000pt;}
.ls33{letter-spacing:-0.720000pt;}
.ls61{letter-spacing:-0.680000pt;}
.ls40{letter-spacing:-0.672000pt;}
.ls58{letter-spacing:-0.640000pt;}
.ls48{letter-spacing:-0.624000pt;}
.ls31{letter-spacing:-0.576000pt;}
.ls2e{letter-spacing:-0.528000pt;}
.ls5c{letter-spacing:-0.520000pt;}
.ls2c{letter-spacing:-0.432000pt;}
.ls51{letter-spacing:-0.400000pt;}
.ls2d{letter-spacing:-0.384000pt;}
.ls4e{letter-spacing:-0.288000pt;}
.ls53{letter-spacing:-0.280000pt;}
.ls10{letter-spacing:-0.240000pt;}
.ls64{letter-spacing:-0.200000pt;}
.ls36{letter-spacing:-0.192000pt;}
.ls57{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.156000pt;}
.ls2b{letter-spacing:-0.144000pt;}
.ls17{letter-spacing:-0.136000pt;}
.ls59{letter-spacing:-0.130000pt;}
.ls52{letter-spacing:-0.120000pt;}
.ls16{letter-spacing:-0.096000pt;}
.ls34{letter-spacing:-0.093600pt;}
.ls65{letter-spacing:-0.080000pt;}
.ls2f{letter-spacing:-0.048000pt;}
.ls1c{letter-spacing:-0.045333pt;}
.ls54{letter-spacing:-0.040000pt;}
.ls3a{letter-spacing:-0.031200pt;}
.ls1d{letter-spacing:-0.029467pt;}
.lsf{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.011733pt;}
.ls4{letter-spacing:0.012267pt;}
.ls44{letter-spacing:0.015600pt;}
.ls37{letter-spacing:0.017067pt;}
.ls2{letter-spacing:0.020267pt;}
.ls3e{letter-spacing:0.025067pt;}
.ls46{letter-spacing:0.031200pt;}
.ls4f{letter-spacing:0.040000pt;}
.ls15{letter-spacing:0.048000pt;}
.ls3d{letter-spacing:0.057600pt;}
.ls5{letter-spacing:0.062400pt;}
.ls4d{letter-spacing:0.080000pt;}
.ls8{letter-spacing:0.083600pt;}
.ls13{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.103333pt;}
.ls26{letter-spacing:0.124800pt;}
.ls9{letter-spacing:0.136000pt;}
.ls29{letter-spacing:0.140400pt;}
.ls22{letter-spacing:0.144000pt;}
.ls32{letter-spacing:0.156000pt;}
.ls6{letter-spacing:0.156667pt;}
.ls3b{letter-spacing:0.160000pt;}
.ls4b{letter-spacing:0.172800pt;}
.lsa{letter-spacing:0.181333pt;}
.ls41{letter-spacing:0.187200pt;}
.ls27{letter-spacing:0.192000pt;}
.ls55{letter-spacing:0.200000pt;}
.ls43{letter-spacing:0.218400pt;}
.ls24{letter-spacing:0.240000pt;}
.ls35{letter-spacing:0.249600pt;}
.ls18{letter-spacing:0.272000pt;}
.ls56{letter-spacing:0.280000pt;}
.ls30{letter-spacing:0.280800pt;}
.ls20{letter-spacing:0.288000pt;}
.ls2a{letter-spacing:0.312000pt;}
.ls45{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.336000pt;}
.ls5e{letter-spacing:0.360000pt;}
.ls25{letter-spacing:0.384000pt;}
.ls5f{letter-spacing:0.400000pt;}
.ls3f{letter-spacing:0.405600pt;}
.ls28{letter-spacing:0.432000pt;}
.ls4c{letter-spacing:0.440000pt;}
.ls14{letter-spacing:0.480000pt;}
.lsd{letter-spacing:0.483067pt;}
.ls62{letter-spacing:0.520000pt;}
.ls23{letter-spacing:0.528000pt;}
.ls7{letter-spacing:0.573200pt;}
.ls1f{letter-spacing:0.576000pt;}
.ls67{letter-spacing:0.598000pt;}
.ls38{letter-spacing:0.624000pt;}
.ls3c{letter-spacing:0.672000pt;}
.ls1b{letter-spacing:0.677733pt;}
.ls66{letter-spacing:0.680000pt;}
.ls39{letter-spacing:0.720000pt;}
.ls49{letter-spacing:0.746667pt;}
.ls42{letter-spacing:0.768000pt;}
.lsc{letter-spacing:0.770667pt;}
.ls63{letter-spacing:0.800000pt;}
.lse{letter-spacing:0.853333pt;}
.ls60{letter-spacing:0.864000pt;}
.ls19{letter-spacing:0.906667pt;}
.ls69{letter-spacing:0.912000pt;}
.ls5d{letter-spacing:0.960000pt;}
.ls1a{letter-spacing:1.042667pt;}
.ls4a{letter-spacing:1.056000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls1e{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls21{letter-spacing:13.104000pt;}
.ws2{word-spacing:-13.393333pt;}
.ws6a{word-spacing:-12.085333pt;}
.ws52{word-spacing:-11.136000pt;}
.ws3{word-spacing:-10.986667pt;}
.ws28{word-spacing:-10.896000pt;}
.ws50{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws69{word-spacing:-10.608000pt;}
.ws5c{word-spacing:-10.560000pt;}
.ws33{word-spacing:-10.320000pt;}
.ws36{word-spacing:-10.176000pt;}
.ws6e{word-spacing:-9.160000pt;}
.ws89{word-spacing:-8.960000pt;}
.ws56{word-spacing:-8.928000pt;}
.ws6c{word-spacing:-8.880000pt;}
.ws74{word-spacing:-8.760000pt;}
.ws73{word-spacing:-8.720000pt;}
.ws6d{word-spacing:-8.640000pt;}
.ws6f{word-spacing:-8.520000pt;}
.ws71{word-spacing:-8.320000pt;}
.ws8b{word-spacing:-8.000000pt;}
.ws72{word-spacing:-7.960000pt;}
.ws6b{word-spacing:-7.640000pt;}
.ws53{word-spacing:-7.488000pt;}
.ws38{word-spacing:-7.394400pt;}
.ws32{word-spacing:-7.363200pt;}
.ws39{word-spacing:-7.332000pt;}
.ws5b{word-spacing:-7.300800pt;}
.ws51{word-spacing:-7.269600pt;}
.ws34{word-spacing:-7.238400pt;}
.ws35{word-spacing:-7.222800pt;}
.ws31{word-spacing:-7.207200pt;}
.ws7{word-spacing:-7.144800pt;}
.ws4{word-spacing:-7.141333pt;}
.ws5e{word-spacing:-7.113600pt;}
.ws5d{word-spacing:-7.098000pt;}
.ws6{word-spacing:-7.082400pt;}
.ws48{word-spacing:-7.051200pt;}
.ws37{word-spacing:-6.988800pt;}
.ws5{word-spacing:-6.926400pt;}
.ws5a{word-spacing:-6.864000pt;}
.ws9{word-spacing:-6.571067pt;}
.ws8a{word-spacing:-6.500000pt;}
.ws8{word-spacing:-5.893333pt;}
.wsa{word-spacing:-5.863867pt;}
.ws70{word-spacing:-5.772000pt;}
.ws10{word-spacing:-4.746667pt;}
.ws92{word-spacing:-3.520000pt;}
.ws1d{word-spacing:-3.400000pt;}
.ws11{word-spacing:-3.200000pt;}
.wsc{word-spacing:-2.912000pt;}
.ws27{word-spacing:-2.453333pt;}
.wsf{word-spacing:-2.400000pt;}
.ws1{word-spacing:-2.346667pt;}
.wse{word-spacing:-2.133333pt;}
.ws41{word-spacing:-1.872000pt;}
.ws4a{word-spacing:-1.728000pt;}
.ws13{word-spacing:-1.680000pt;}
.ws17{word-spacing:-1.632000pt;}
.ws68{word-spacing:-1.584000pt;}
.ws2d{word-spacing:-1.536000pt;}
.ws93{word-spacing:-1.488000pt;}
.ws79{word-spacing:-1.400000pt;}
.ws43{word-spacing:-1.392000pt;}
.ws78{word-spacing:-1.360000pt;}
.ws5f{word-spacing:-1.344000pt;}
.ws55{word-spacing:-1.296000pt;}
.ws86{word-spacing:-1.280000pt;}
.ws29{word-spacing:-1.248000pt;}
.ws81{word-spacing:-1.200000pt;}
.ws2b{word-spacing:-1.152000pt;}
.wsd{word-spacing:-1.120000pt;}
.ws2a{word-spacing:-1.104000pt;}
.ws30{word-spacing:-1.056000pt;}
.ws24{word-spacing:-1.042667pt;}
.ws88{word-spacing:-1.040000pt;}
.ws12{word-spacing:-1.008000pt;}
.ws25{word-spacing:-0.997333pt;}
.ws58{word-spacing:-0.960000pt;}
.ws75{word-spacing:-0.920000pt;}
.ws3b{word-spacing:-0.912000pt;}
.ws1e{word-spacing:-0.906667pt;}
.ws8c{word-spacing:-0.880000pt;}
.ws57{word-spacing:-0.816000pt;}
.ws87{word-spacing:-0.800000pt;}
.ws22{word-spacing:-0.770667pt;}
.ws4f{word-spacing:-0.768000pt;}
.ws7e{word-spacing:-0.760000pt;}
.ws63{word-spacing:-0.746667pt;}
.ws4b{word-spacing:-0.720000pt;}
.ws60{word-spacing:-0.672000pt;}
.ws82{word-spacing:-0.640000pt;}
.ws15{word-spacing:-0.624000pt;}
.ws16{word-spacing:-0.576000pt;}
.ws19{word-spacing:-0.528000pt;}
.ws77{word-spacing:-0.520000pt;}
.ws42{word-spacing:-0.480000pt;}
.ws20{word-spacing:-0.453333pt;}
.ws76{word-spacing:-0.440000pt;}
.ws3a{word-spacing:-0.432000pt;}
.ws7d{word-spacing:-0.400000pt;}
.ws2e{word-spacing:-0.384000pt;}
.ws80{word-spacing:-0.360000pt;}
.ws4c{word-spacing:-0.336000pt;}
.ws67{word-spacing:-0.320000pt;}
.ws18{word-spacing:-0.288000pt;}
.ws7f{word-spacing:-0.280000pt;}
.ws1c{word-spacing:-0.272000pt;}
.ws14{word-spacing:-0.240000pt;}
.ws3e{word-spacing:-0.192000pt;}
.ws21{word-spacing:-0.181333pt;}
.ws54{word-spacing:-0.160000pt;}
.ws46{word-spacing:-0.144000pt;}
.ws1f{word-spacing:-0.136000pt;}
.ws7b{word-spacing:-0.120000pt;}
.ws47{word-spacing:-0.096000pt;}
.ws85{word-spacing:-0.080000pt;}
.ws44{word-spacing:-0.048000pt;}
.wsb{word-spacing:0.000000pt;}
.ws7c{word-spacing:0.040000pt;}
.ws26{word-spacing:0.045333pt;}
.ws45{word-spacing:0.048000pt;}
.ws4e{word-spacing:0.096000pt;}
.ws7a{word-spacing:0.120000pt;}
.ws1b{word-spacing:0.136000pt;}
.ws1a{word-spacing:0.144000pt;}
.ws8f{word-spacing:0.160000pt;}
.ws3c{word-spacing:0.192000pt;}
.ws61{word-spacing:0.240000pt;}
.ws2f{word-spacing:0.288000pt;}
.ws8d{word-spacing:0.320000pt;}
.ws66{word-spacing:0.336000pt;}
.ws2c{word-spacing:0.384000pt;}
.ws4d{word-spacing:0.432000pt;}
.ws3d{word-spacing:0.480000pt;}
.ws40{word-spacing:0.528000pt;}
.ws3f{word-spacing:0.576000pt;}
.ws49{word-spacing:0.672000pt;}
.ws64{word-spacing:0.720000pt;}
.ws90{word-spacing:0.760000pt;}
.ws59{word-spacing:0.768000pt;}
.ws23{word-spacing:0.952000pt;}
.ws62{word-spacing:0.960000pt;}
.ws8e{word-spacing:1.040000pt;}
.ws94{word-spacing:1.152000pt;}
.ws91{word-spacing:1.248000pt;}
.ws83{word-spacing:1.440000pt;}
.ws84{word-spacing:1.480000pt;}
.ws65{word-spacing:1.584000pt;}
._e{margin-left:-9.455467pt;}
._8{margin-left:-8.191467pt;}
._9{margin-left:-7.152800pt;}
._5{margin-left:-6.131467pt;}
._3{margin-left:-4.768000pt;}
._2{margin-left:-3.331733pt;}
._0{margin-left:-1.578667pt;}
._1{width:1.730133pt;}
._6{width:2.930400pt;}
._4{width:4.480533pt;}
._d{width:6.920000pt;}
._c{width:8.073067pt;}
._a{width:32.208000pt;}
._7{width:42.411200pt;}
._b{width:43.562133pt;}
.fsc{font-size:26.000000pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.200000pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:24.175867pt;}
.y2{bottom:24.225600pt;}
.y2f{bottom:60.718133pt;}
.yf6{bottom:60.936000pt;}
.y134{bottom:60.950667pt;}
.y17b{bottom:66.569600pt;}
.y44{bottom:67.822933pt;}
.yac{bottom:68.496267pt;}
.y2e{bottom:74.051467pt;}
.yf5{bottom:74.268000pt;}
.y133{bottom:74.282667pt;}
.y17a{bottom:77.899600pt;}
.y43{bottom:81.154933pt;}
.yab{bottom:81.828267pt;}
.y82{bottom:85.156267pt;}
.y2d{bottom:87.384800pt;}
.yf4{bottom:87.602667pt;}
.y132{bottom:87.614667pt;}
.y179{bottom:89.229600pt;}
.y42{bottom:94.486933pt;}
.yaa{bottom:95.160267pt;}
.y81{bottom:98.488267pt;}
.y178{bottom:100.559600pt;}
.y2c{bottom:100.718133pt;}
.yf3{bottom:100.934667pt;}
.y131{bottom:100.946667pt;}
.y41{bottom:107.818933pt;}
.ya9{bottom:108.492267pt;}
.y80{bottom:111.820267pt;}
.y177{bottom:111.889600pt;}
.y2b{bottom:114.056800pt;}
.yf2{bottom:114.270667pt;}
.y130{bottom:114.278667pt;}
.y40{bottom:121.150933pt;}
.ya8{bottom:121.824267pt;}
.y176{bottom:123.219600pt;}
.y7f{bottom:125.152267pt;}
.y2a{bottom:127.384800pt;}
.yf1{bottom:127.602667pt;}
.y12f{bottom:127.610667pt;}
.y3f{bottom:134.482933pt;}
.y175{bottom:134.549600pt;}
.ya7{bottom:135.156267pt;}
.y7e{bottom:138.484267pt;}
.y29{bottom:140.718133pt;}
.yf0{bottom:140.934667pt;}
.y12e{bottom:140.942667pt;}
.y174{bottom:145.879600pt;}
.y3e{bottom:147.814933pt;}
.ya6{bottom:148.488267pt;}
.y7d{bottom:151.824267pt;}
.yef{bottom:154.270667pt;}
.y12d{bottom:154.274667pt;}
.y173{bottom:157.209600pt;}
.y28{bottom:157.899467pt;}
.y3d{bottom:161.146933pt;}
.ya5{bottom:161.820267pt;}
.y7c{bottom:165.156267pt;}
.y27{bottom:167.384800pt;}
.yee{bottom:167.602667pt;}
.y12c{bottom:167.606667pt;}
.y172{bottom:168.539600pt;}
.y3c{bottom:174.478933pt;}
.ya4{bottom:175.152267pt;}
.y7b{bottom:178.488267pt;}
.y171{bottom:179.869600pt;}
.y12b{bottom:180.938667pt;}
.y1b9{bottom:184.488267pt;}
.y26{bottom:184.566133pt;}
.y3b{bottom:187.810933pt;}
.ya3{bottom:188.484267pt;}
.y170{bottom:191.199600pt;}
.y7a{bottom:191.820267pt;}
.y25{bottom:194.051467pt;}
.y12a{bottom:194.270667pt;}
.yed{bottom:194.938667pt;}
.y1b8{bottom:197.820267pt;}
.y3a{bottom:201.142933pt;}
.ya2{bottom:201.818933pt;}
.y16f{bottom:202.529600pt;}
.y79{bottom:205.152267pt;}
.y129{bottom:207.602667pt;}
.yec{bottom:208.270667pt;}
.y1b7{bottom:211.152267pt;}
.y24{bottom:211.232800pt;}
.y16e{bottom:213.859600pt;}
.y39{bottom:214.474933pt;}
.ya1{bottom:215.150933pt;}
.y78{bottom:218.484267pt;}
.y128{bottom:220.934667pt;}
.yeb{bottom:221.602667pt;}
.y1b6{bottom:224.484267pt;}
.y16d{bottom:225.189600pt;}
.y38{bottom:227.806933pt;}
.ya0{bottom:228.493600pt;}
.y77{bottom:231.817600pt;}
.y127{bottom:234.266667pt;}
.yea{bottom:234.934667pt;}
.y16c{bottom:236.519600pt;}
.y1b5{bottom:237.816267pt;}
.y37{bottom:241.138933pt;}
.y9f{bottom:241.825600pt;}
.y76{bottom:245.150933pt;}
.y16b{bottom:247.849600pt;}
.ye9{bottom:248.318667pt;}
.y36{bottom:254.470933pt;}
.y9e{bottom:255.157600pt;}
.y1b4{bottom:257.153600pt;}
.y75{bottom:258.486933pt;}
.y16a{bottom:259.179600pt;}
.y126{bottom:260.787200pt;}
.ye8{bottom:261.650667pt;}
.y23{bottom:264.612267pt;}
.y35{bottom:267.802933pt;}
.y9d{bottom:268.489600pt;}
.y1b3{bottom:270.485600pt;}
.y169{bottom:270.509600pt;}
.y74{bottom:271.818933pt;}
.y125{bottom:274.119200pt;}
.ye7{bottom:274.982667pt;}
.y22{bottom:277.944267pt;}
.y9c{bottom:281.821600pt;}
.y168{bottom:281.839600pt;}
.y73{bottom:285.150933pt;}
.y124{bottom:287.451200pt;}
.ye6{bottom:288.314667pt;}
.y1b2{bottom:289.817600pt;}
.y21{bottom:291.276267pt;}
.y167{bottom:293.169600pt;}
.y9b{bottom:295.153600pt;}
.y72{bottom:298.484267pt;}
.y123{bottom:300.785867pt;}
.ye5{bottom:301.646667pt;}
.y166{bottom:304.499600pt;}
.y20{bottom:304.612267pt;}
.y9a{bottom:308.485600pt;}
.y1b1{bottom:309.149600pt;}
.y71{bottom:311.818933pt;}
.y58{bottom:312.683067pt;}
.y122{bottom:314.117867pt;}
.ye4{bottom:314.978667pt;}
.y165{bottom:315.829600pt;}
.y1f{bottom:317.944267pt;}
.y99{bottom:321.817600pt;}
.y1b0{bottom:322.482933pt;}
.y70{bottom:325.150933pt;}
.y57{bottom:326.015067pt;}
.y164{bottom:327.159600pt;}
.y121{bottom:327.451200pt;}
.ye3{bottom:328.310667pt;}
.y1e{bottom:331.276267pt;}
.y98{bottom:335.150933pt;}
.y6f{bottom:338.484267pt;}
.y163{bottom:338.489600pt;}
.y56{bottom:339.347067pt;}
.y120{bottom:340.785867pt;}
.ye2{bottom:341.642667pt;}
.y1d{bottom:344.613600pt;}
.y1af{bottom:346.485600pt;}
.y97{bottom:348.484267pt;}
.y162{bottom:349.819600pt;}
.y6e{bottom:351.817600pt;}
.y55{bottom:352.681733pt;}
.y11f{bottom:354.117867pt;}
.ye1{bottom:354.974667pt;}
.y1c{bottom:357.945600pt;}
.y1ae{bottom:359.817600pt;}
.y161{bottom:361.272933pt;}
.y96{bottom:361.822933pt;}
.y6d{bottom:365.150933pt;}
.y54{bottom:366.013733pt;}
.y11e{bottom:367.453867pt;}
.ye0{bottom:368.306667pt;}
.y1b{bottom:371.277600pt;}
.y160{bottom:372.602933pt;}
.y1ad{bottom:373.149600pt;}
.y95{bottom:375.154933pt;}
.y6c{bottom:378.484267pt;}
.y53{bottom:379.352400pt;}
.y11d{bottom:380.785867pt;}
.ydf{bottom:381.638667pt;}
.y15f{bottom:383.932933pt;}
.y1a{bottom:384.609600pt;}
.y1ac{bottom:386.482933pt;}
.y94{bottom:388.486933pt;}
.y6b{bottom:391.820267pt;}
.y52{bottom:392.684400pt;}
.y11c{bottom:394.117867pt;}
.yde{bottom:394.970667pt;}
.y15e{bottom:395.262933pt;}
.y19{bottom:397.976267pt;}
.y93{bottom:401.818933pt;}
.y6a{bottom:405.152267pt;}
.y51{bottom:406.016400pt;}
.y15d{bottom:406.592933pt;}
.y11b{bottom:407.449867pt;}
.ydd{bottom:408.302667pt;}
.y1ab{bottom:410.490933pt;}
.y92{bottom:415.150933pt;}
.y15c{bottom:417.922933pt;}
.y69{bottom:418.484267pt;}
.y50{bottom:419.348400pt;}
.ydc{bottom:421.634667pt;}
.y1aa{bottom:423.822933pt;}
.y91{bottom:428.496267pt;}
.y15b{bottom:429.252933pt;}
.y68{bottom:431.836267pt;}
.y4f{bottom:432.680400pt;}
.y11a{bottom:433.973067pt;}
.ydb{bottom:434.966667pt;}
.y1a9{bottom:437.154933pt;}
.y18{bottom:439.976267pt;}
.y15a{bottom:440.582933pt;}
.y90{bottom:441.828267pt;}
.y67{bottom:445.168267pt;}
.y4e{bottom:446.024400pt;}
.y119{bottom:447.305067pt;}
.yda{bottom:448.298667pt;}
.y1a8{bottom:450.486933pt;}
.y159{bottom:451.912933pt;}
.y17{bottom:454.640267pt;}
.y8f{bottom:455.160267pt;}
.y66{bottom:458.500267pt;}
.y4d{bottom:459.356400pt;}
.y118{bottom:460.637067pt;}
.yd9{bottom:461.630667pt;}
.y158{bottom:463.242933pt;}
.y1a7{bottom:463.818933pt;}
.y8e{bottom:468.492267pt;}
.y16{bottom:469.304267pt;}
.y65{bottom:471.832267pt;}
.y4c{bottom:472.688400pt;}
.y117{bottom:473.969067pt;}
.y157{bottom:474.572933pt;}
.yd8{bottom:474.962667pt;}
.y1a6{bottom:477.150933pt;}
.y8d{bottom:481.824267pt;}
.y15{bottom:483.968267pt;}
.y64{bottom:485.164267pt;}
.y156{bottom:485.902933pt;}
.y4b{bottom:486.020400pt;}
.y116{bottom:487.301067pt;}
.yd7{bottom:488.294667pt;}
.y1a5{bottom:490.482933pt;}
.y8c{bottom:495.156267pt;}
.y155{bottom:497.232933pt;}
.y63{bottom:498.496267pt;}
.y14{bottom:498.632267pt;}
.y4a{bottom:499.352400pt;}
.y115{bottom:500.637067pt;}
.yd6{bottom:501.626667pt;}
.y1a4{bottom:503.816267pt;}
.y8b{bottom:508.488267pt;}
.y154{bottom:508.562933pt;}
.y62{bottom:511.828267pt;}
.y49{bottom:512.684400pt;}
.y13{bottom:513.296267pt;}
.y114{bottom:513.969067pt;}
.yd5{bottom:514.958667pt;}
.y153{bottom:519.892933pt;}
.y8a{bottom:521.820267pt;}
.y61{bottom:525.160267pt;}
.y48{bottom:526.016400pt;}
.y113{bottom:527.301067pt;}
.y1a3{bottom:527.822933pt;}
.y12{bottom:527.960267pt;}
.yd4{bottom:528.290667pt;}
.y152{bottom:531.222933pt;}
.y89{bottom:535.152267pt;}
.y60{bottom:538.492267pt;}
.y1a2{bottom:539.152933pt;}
.y47{bottom:539.348400pt;}
.y112{bottom:540.634400pt;}
.yd3{bottom:541.622667pt;}
.y151{bottom:542.552933pt;}
.y11{bottom:542.624267pt;}
.y88{bottom:548.484267pt;}
.y1a1{bottom:550.606267pt;}
.y5f{bottom:551.824267pt;}
.y46{bottom:552.680400pt;}
.y150{bottom:553.882933pt;}
.y111{bottom:553.978400pt;}
.yd2{bottom:554.954667pt;}
.y10{bottom:557.288267pt;}
.y87{bottom:561.816267pt;}
.y1a0{bottom:561.936267pt;}
.y5e{bottom:565.156267pt;}
.y14f{bottom:565.212933pt;}
.y45{bottom:566.012400pt;}
.y110{bottom:567.310400pt;}
.yd1{bottom:568.286667pt;}
.yf{bottom:571.952267pt;}
.y19f{bottom:573.266267pt;}
.y14e{bottom:576.542933pt;}
.y5d{bottom:578.488267pt;}
.y10f{bottom:580.642400pt;}
.yd0{bottom:581.618667pt;}
.y19e{bottom:584.596267pt;}
.ye{bottom:586.616267pt;}
.y14d{bottom:587.872933pt;}
.y5c{bottom:591.820267pt;}
.y10e{bottom:593.974400pt;}
.ycf{bottom:594.950667pt;}
.y19d{bottom:595.926267pt;}
.y14c{bottom:599.202933pt;}
.yd{bottom:601.280267pt;}
.y5b{bottom:605.152267pt;}
.yb3{bottom:605.553733pt;}
.y19c{bottom:607.256267pt;}
.y10d{bottom:607.306400pt;}
.yce{bottom:608.282667pt;}
.y14b{bottom:610.532933pt;}
.yc{bottom:615.944267pt;}
.y5a{bottom:618.484267pt;}
.y19b{bottom:618.586267pt;}
.yb2{bottom:618.885733pt;}
.y10c{bottom:620.638400pt;}
.ycd{bottom:621.614667pt;}
.y14a{bottom:621.862933pt;}
.y19a{bottom:629.916267pt;}
.yb{bottom:630.608267pt;}
.y59{bottom:631.816267pt;}
.yb1{bottom:632.217733pt;}
.y149{bottom:633.192933pt;}
.y10b{bottom:633.970400pt;}
.ycc{bottom:634.946667pt;}
.y199{bottom:641.246267pt;}
.y148{bottom:644.522933pt;}
.yb0{bottom:645.549733pt;}
.y10a{bottom:647.302400pt;}
.ycb{bottom:648.278667pt;}
.y198{bottom:652.576267pt;}
.y147{bottom:655.852933pt;}
.ya{bottom:657.274933pt;}
.yaf{bottom:658.881733pt;}
.y109{bottom:660.634400pt;}
.yca{bottom:661.610667pt;}
.y197{bottom:663.906267pt;}
.y146{bottom:667.182933pt;}
.yae{bottom:672.213733pt;}
.y32{bottom:672.933333pt;}
.y9{bottom:673.274933pt;}
.y108{bottom:673.966400pt;}
.yc9{bottom:674.942667pt;}
.y196{bottom:675.236267pt;}
.y86{bottom:677.709733pt;}
.y145{bottom:678.512933pt;}
.yad{bottom:685.545733pt;}
.y195{bottom:686.566267pt;}
.yc8{bottom:688.274667pt;}
.y8{bottom:689.274933pt;}
.y144{bottom:689.842933pt;}
.y85{bottom:691.041733pt;}
.y31{bottom:691.600000pt;}
.y194{bottom:697.896267pt;}
.y143{bottom:701.172933pt;}
.yc7{bottom:701.606667pt;}
.y84{bottom:704.373733pt;}
.y7{bottom:705.274933pt;}
.y193{bottom:709.226267pt;}
.y30{bottom:710.266667pt;}
.y142{bottom:712.502933pt;}
.y107{bottom:714.489600pt;}
.yc6{bottom:714.938667pt;}
.y83{bottom:717.705733pt;}
.y192{bottom:720.556267pt;}
.y141{bottom:723.832933pt;}
.y106{bottom:727.821600pt;}
.yc5{bottom:728.270667pt;}
.y191{bottom:731.886267pt;}
.y6{bottom:734.597600pt;}
.y140{bottom:735.162933pt;}
.y105{bottom:741.153600pt;}
.yc4{bottom:741.602667pt;}
.y190{bottom:743.216267pt;}
.y13f{bottom:746.492933pt;}
.y104{bottom:754.485600pt;}
.y18f{bottom:754.546267pt;}
.yc3{bottom:754.934667pt;}
.y13e{bottom:757.822933pt;}
.y18e{bottom:765.876267pt;}
.y103{bottom:767.817600pt;}
.yc2{bottom:768.266667pt;}
.y13d{bottom:769.152933pt;}
.y5{bottom:774.602933pt;}
.y18d{bottom:777.206267pt;}
.y13c{bottom:780.482933pt;}
.y102{bottom:781.157600pt;}
.yc1{bottom:781.600000pt;}
.y18c{bottom:788.536267pt;}
.y13b{bottom:791.816267pt;}
.y101{bottom:794.489600pt;}
.y18b{bottom:799.866267pt;}
.y100{bottom:807.821600pt;}
.yc0{bottom:807.832267pt;}
.y18a{bottom:811.196267pt;}
.y4{bottom:814.608267pt;}
.y13a{bottom:821.150933pt;}
.yff{bottom:821.153600pt;}
.ybf{bottom:821.164267pt;}
.y189{bottom:822.526267pt;}
.y33{bottom:823.475200pt;}
.y188{bottom:833.856267pt;}
.y139{bottom:834.484267pt;}
.yfe{bottom:834.485600pt;}
.ybe{bottom:834.496267pt;}
.y187{bottom:845.186267pt;}
.yfd{bottom:847.817600pt;}
.y138{bottom:847.821600pt;}
.ybd{bottom:847.828267pt;}
.y186{bottom:856.516267pt;}
.yfc{bottom:861.150933pt;}
.y137{bottom:861.153600pt;}
.ybc{bottom:861.160267pt;}
.y185{bottom:867.846267pt;}
.y136{bottom:874.485600pt;}
.yfb{bottom:874.489600pt;}
.ybb{bottom:874.492267pt;}
.y184{bottom:879.176267pt;}
.y135{bottom:887.817600pt;}
.yfa{bottom:887.821600pt;}
.yba{bottom:887.824267pt;}
.y183{bottom:890.506267pt;}
.yf9{bottom:901.153600pt;}
.yb9{bottom:901.156267pt;}
.y182{bottom:901.836267pt;}
.y181{bottom:913.166267pt;}
.yf8{bottom:914.485600pt;}
.yb8{bottom:914.488267pt;}
.y180{bottom:924.496267pt;}
.yf7{bottom:927.817600pt;}
.yb7{bottom:927.820267pt;}
.y17f{bottom:935.826267pt;}
.yb6{bottom:941.152267pt;}
.y17e{bottom:947.156267pt;}
.yb5{bottom:954.484267pt;}
.y17d{bottom:958.486267pt;}
.yb4{bottom:967.816267pt;}
.y17c{bottom:969.816267pt;}
.y34{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.hd{height:25.179036pt;}
.h1f{height:28.640000pt;}
.h20{height:31.722667pt;}
.ha{height:34.368000pt;}
.h1b{height:34.416000pt;}
.h8{height:34.523438pt;}
.h3{height:36.458333pt;}
.h2{height:38.359375pt;}
.h1c{height:38.450667pt;}
.h9{height:38.520533pt;}
.h15{height:38.579200pt;}
.h18{height:38.605867pt;}
.h12{height:38.611200pt;}
.h19{height:38.616533pt;}
.h17{height:38.627200pt;}
.h13{height:38.632533pt;}
.hb{height:38.637867pt;}
.h1d{height:38.642667pt;}
.hc{height:38.643200pt;}
.h1e{height:38.648000pt;}
.h14{height:38.648533pt;}
.h16{height:38.653867pt;}
.hf{height:38.736979pt;}
.h10{height:40.549703pt;}
.he{height:40.571036pt;}
.h1a{height:42.195312pt;}
.h7{height:43.066927pt;}
.h6{height:43.067460pt;}
.h4{height:46.712240pt;}
.h11{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:54.392400pt;}
.x7{left:63.236933pt;}
.x6{left:70.180933pt;}
.x5{left:89.199600pt;}
.x8{left:125.291333pt;}
.x4{left:207.516800pt;}
.xc{left:212.437333pt;}
.x9{left:223.513333pt;}
.xb{left:226.850800pt;}
.xd{left:266.976667pt;}
.x3{left:519.632533pt;}
.xa{left:732.628800pt;}
.x1{left:733.540267pt;}
}




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