
    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_c23f6f0880a536617ede3f08.woff')format("woff");}.ff1{font-family:ff1;line-height:0.799805;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_d8273e254b40b203630cf010.woff')format("woff");}.ff2{font-family:ff2;line-height:0.913574;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_38b6ac88b2f911b20afd0ecc.woff')format("woff");}.ff3{font-family:ff3;line-height:0.933594;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_1890831195fb55bee9f43dbe.woff')format("woff");}.ff4{font-family:ff4;line-height:1.077637;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_692031ce121670106966cb75.woff')format("woff");}.ff5{font-family:ff5;line-height:1.077637;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_140a089f30f5d959e65fa869.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4c41697cf3bb1710b6baa490.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_76bafa00ed41761c4c419eaa.woff')format("woff");}.ff8{font-family:ff8;line-height:0.995117;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_1c5d7a17a78e0a6c53890ec1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4e7dc2e8c13fbac7957bf967.woff')format("woff");}.ffa{font-family:ffa;line-height:0.953613;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_d498d10f1e7c4835748115bd.woff')format("woff");}.ffb{font-family:ffb;line-height:0.953613;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_8f8a76c995a9463bb2fd9dfa.woff')format("woff");}.ffc{font-family:ffc;line-height:0.953613;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_8bc3cc7859e832661822d30a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_25229954daeacf9736217642.woff')format("woff");}.ffe{font-family:ffe;line-height:0.995117;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_6d6868a0a36de3bb7a75bda3.woff')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_57e4b4ca10396b3956ef3f06.woff')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_8e3024dc119d072c93bf6525.woff')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_eb89022f10de8f1d7c1c0444.woff')format("woff");}.ff12{font-family:ff12;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_7630c84e989b423656d64ce9.woff')format("woff");}.ff13{font-family:ff13;line-height:0.995117;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_a4ee2fdf51e4ff432e306ed7.woff')format("woff");}.ff14{font-family:ff14;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_4545c1cf7de8a1240820134f.woff')format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_76f659885cb31f50a9edbf95.woff')format("woff");}.ff16{font-family:ff16;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_4459a2ca51853c317397de51.woff')format("woff");}.ff17{font-family:ff17;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_e7ecf4a1729e28a69bb9087a.woff')format("woff");}.ff18{font-family:ff18;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_5a15e2c163028a9e5da0dbe3.woff')format("woff");}.ff19{font-family:ff19;line-height:0.746094;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);}
.v0{vertical-align:0.000000px;}
.ls22{letter-spacing:-0.596448px;}
.ls1f{letter-spacing:-0.443232px;}
.ls5f{letter-spacing:-0.411264px;}
.ls66{letter-spacing:-0.405216px;}
.ls23{letter-spacing:-0.388512px;}
.ls21{letter-spacing:-0.377568px;}
.ls63{letter-spacing:-0.362880px;}
.lsb{letter-spacing:-0.332640px;}
.ls59{letter-spacing:-0.302400px;}
.ls20{letter-spacing:-0.300960px;}
.ls19{letter-spacing:-0.299088px;}
.ls6{letter-spacing:-0.296352px;}
.ls9{letter-spacing:-0.290304px;}
.ls16{letter-spacing:-0.289440px;}
.ls5d{letter-spacing:-0.284256px;}
.lsc{letter-spacing:-0.278208px;}
.ls18{letter-spacing:-0.260496px;}
.ls5e{letter-spacing:-0.260064px;}
.ls5a{letter-spacing:-0.254016px;}
.ls5{letter-spacing:-0.247968px;}
.ls61{letter-spacing:-0.241920px;}
.ls4e{letter-spacing:-0.238464px;}
.ls64{letter-spacing:-0.235872px;}
.ls32{letter-spacing:-0.231552px;}
.ls65{letter-spacing:-0.229824px;}
.lsa{letter-spacing:-0.223776px;}
.ls7{letter-spacing:-0.217728px;}
.ls38{letter-spacing:-0.205344px;}
.ls33{letter-spacing:-0.202608px;}
.ls43{letter-spacing:-0.198720px;}
.ls62{letter-spacing:-0.193536px;}
.ls40{letter-spacing:-0.192096px;}
.ls4b{letter-spacing:-0.185472px;}
.ls60{letter-spacing:-0.181440px;}
.ls14{letter-spacing:-0.178848px;}
.ls37{letter-spacing:-0.172224px;}
.ls15{letter-spacing:-0.165600px;}
.ls1c{letter-spacing:-0.158976px;}
.lsd{letter-spacing:-0.152352px;}
.ls35{letter-spacing:-0.145728px;}
.ls1d{letter-spacing:-0.139104px;}
.ls10{letter-spacing:-0.132480px;}
.ls47{letter-spacing:-0.125856px;}
.ls17{letter-spacing:-0.125424px;}
.ls8{letter-spacing:-0.120960px;}
.ls48{letter-spacing:-0.119232px;}
.ls11{letter-spacing:-0.112608px;}
.ls13{letter-spacing:-0.105984px;}
.ls1a{letter-spacing:-0.099360px;}
.ls12{letter-spacing:-0.092736px;}
.lsf{letter-spacing:-0.086112px;}
.ls4f{letter-spacing:-0.079488px;}
.ls34{letter-spacing:-0.072864px;}
.lse{letter-spacing:-0.066240px;}
.ls36{letter-spacing:-0.059616px;}
.ls41{letter-spacing:-0.052992px;}
.ls1e{letter-spacing:-0.039744px;}
.ls4{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.076032px;}
.ls73{letter-spacing:0.077760px;}
.ls3b{letter-spacing:0.093600px;}
.ls42{letter-spacing:0.094320px;}
.ls25{letter-spacing:0.094464px;}
.ls24{letter-spacing:0.095040px;}
.ls27{letter-spacing:0.108864px;}
.ls4c{letter-spacing:0.116640px;}
.ls1{letter-spacing:0.119952px;}
.ls29{letter-spacing:0.132192px;}
.ls1b{letter-spacing:0.139968px;}
.ls26{letter-spacing:0.142128px;}
.ls30{letter-spacing:0.147312px;}
.ls70{letter-spacing:0.155520px;}
.ls3e{letter-spacing:0.251856px;}
.ls39{letter-spacing:0.256608px;}
.ls2f{letter-spacing:0.275616px;}
.ls3f{letter-spacing:0.280368px;}
.ls31{letter-spacing:0.313632px;}
.ls2a{letter-spacing:0.900000px;}
.ls74{letter-spacing:1.049184px;}
.ls2d{letter-spacing:1.075680px;}
.ls28{letter-spacing:2.237760px;}
.ls53{letter-spacing:2.453760px;}
.ls52{letter-spacing:2.454048px;}
.ls6b{letter-spacing:3.415680px;}
.ls67{letter-spacing:3.520800px;}
.ls3c{letter-spacing:4.789440px;}
.ls4d{letter-spacing:5.742720px;}
.ls68{letter-spacing:5.787360px;}
.ls55{letter-spacing:5.811552px;}
.ls56{letter-spacing:5.813280px;}
.ls50{letter-spacing:6.645600px;}
.ls0{letter-spacing:7.088688px;}
.ls5b{letter-spacing:8.647200px;}
.ls2b{letter-spacing:11.221920px;}
.ls2{letter-spacing:12.621600px;}
.ls3d{letter-spacing:12.729888px;}
.ls6a{letter-spacing:13.780800px;}
.ls69{letter-spacing:13.782240px;}
.ls2c{letter-spacing:16.437312px;}
.ls2e{letter-spacing:22.762656px;}
.ls6d{letter-spacing:29.611584px;}
.ls6f{letter-spacing:29.966112px;}
.ls71{letter-spacing:32.415264px;}
.ls6c{letter-spacing:33.897744px;}
.ls6e{letter-spacing:36.475920px;}
.ls58{letter-spacing:36.865584px;}
.ls4a{letter-spacing:37.764864px;}
.ls57{letter-spacing:39.991536px;}
.ls49{letter-spacing:40.890960px;}
.ls54{letter-spacing:41.570784px;}
.ls46{letter-spacing:42.469920px;}
.ls72{letter-spacing:43.920144px;}
.ls51{letter-spacing:48.982896px;}
.ls45{letter-spacing:49.882176px;}
.ls44{letter-spacing:59.227776px;}
.ls5c{letter-spacing:842.382720px;}
.ls3{letter-spacing:845.585280px;}
.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;}
}
.ws29{word-spacing:-17.029440px;}
.wsa{word-spacing:-17.013888px;}
.ws12{word-spacing:-17.006112px;}
.ws1e{word-spacing:-16.990560px;}
.ws11{word-spacing:-16.982784px;}
.ws2a{word-spacing:-16.951680px;}
.ws5{word-spacing:-14.374080px;}
.ws2b{word-spacing:-14.321088px;}
.ws13{word-spacing:-14.314464px;}
.ws16{word-spacing:-14.307840px;}
.ws14{word-spacing:-14.287968px;}
.ws18{word-spacing:-14.281344px;}
.ws1a{word-spacing:-14.274720px;}
.ws8{word-spacing:-14.268096px;}
.ws7{word-spacing:-14.261472px;}
.ws1b{word-spacing:-14.254848px;}
.ws1c{word-spacing:-14.248224px;}
.ws21{word-spacing:-14.241600px;}
.ws17{word-spacing:-14.234976px;}
.ws22{word-spacing:-14.228352px;}
.ws4{word-spacing:-14.221728px;}
.ws1f{word-spacing:-14.215104px;}
.ws9{word-spacing:-14.208480px;}
.ws2c{word-spacing:-14.201856px;}
.ws20{word-spacing:-14.195232px;}
.ws15{word-spacing:-14.168736px;}
.ws1d{word-spacing:-14.135616px;}
.ws6{word-spacing:-13.552704px;}
.ws25{word-spacing:-12.930624px;}
.ws1{word-spacing:-12.906432px;}
.ws28{word-spacing:-12.900384px;}
.ws27{word-spacing:-12.894336px;}
.ws24{word-spacing:-12.882240px;}
.ws0{word-spacing:-12.876192px;}
.ws3{word-spacing:-12.845952px;}
.ws23{word-spacing:-12.839904px;}
.ws2{word-spacing:-12.833856px;}
.ws26{word-spacing:-12.761280px;}
.wsd{word-spacing:-11.874240px;}
.wse{word-spacing:-11.573280px;}
.wsb{word-spacing:-11.431008px;}
.wsc{word-spacing:-11.277792px;}
.ws10{word-spacing:-10.459152px;}
.ws19{word-spacing:-0.066240px;}
.wsf{word-spacing:0.000000px;}
._1c{margin-left:-5.760576px;}
._d{margin-left:-3.497472px;}
._7{margin-left:-2.317824px;}
._2{margin-left:-1.076544px;}
._5{width:1.028160px;}
._9{width:2.252160px;}
._a{width:3.444480px;}
._3{width:4.886784px;}
._1{width:6.108480px;}
._4{width:7.257600px;}
._6{width:9.074880px;}
._e{width:10.267200px;}
._10{width:11.409984px;}
._b{width:12.585600px;}
._15{width:15.308064px;}
._f{width:16.326864px;}
._8{width:17.985456px;}
._16{width:19.108944px;}
._19{width:20.401920px;}
._18{width:21.528000px;}
._11{width:23.096736px;}
._14{width:24.331104px;}
._17{width:25.568640px;}
._1a{width:26.827200px;}
._12{width:28.880640px;}
._13{width:29.952288px;}
._1b{width:31.107024px;}
._c{width:32.127840px;}
._25{width:34.974720px;}
._26{width:36.233280px;}
._20{width:48.521088px;}
._1d{width:49.944960px;}
._24{width:72.002880px;}
._23{width:107.043840px;}
._21{width:136.255680px;}
._1f{width:161.493120px;}
._1e{width:162.685440px;}
._0{width:173.782944px;}
._22{width:186.399360px;}
.fc6{color:rgb(247,149,70);}
.fc5{color:rgb(247,150,70);}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(227,108,10);}
.fc1{color:rgb(246,189,136);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:11.520000px;}
.fs4{font-size:24.480000px;}
.fs9{font-size:33.120000px;}
.fsa{font-size:38.880000px;}
.fs8{font-size:44.640000px;}
.fs7{font-size:47.520000px;}
.fs0{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fsb{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs5{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y141{bottom:4.680000px;}
.y14a{bottom:5.220000px;}
.y14c{bottom:7.860000px;}
.y146{bottom:7.920000px;}
.y13b{bottom:8.760000px;}
.y2d{bottom:8.820000px;}
.y14f{bottom:9.900000px;}
.y13e{bottom:10.080000px;}
.y144{bottom:10.320000px;}
.y140{bottom:23.040000px;}
.y149{bottom:23.220000px;}
.y2c{bottom:27.180000px;}
.y14e{bottom:28.260000px;}
.y143{bottom:28.320000px;}
.y13d{bottom:28.440000px;}
.y30{bottom:61.560000px;}
.y9{bottom:63.720000px;}
.y8{bottom:93.960000px;}
.y123{bottom:113.040000px;}
.y7{bottom:114.120000px;}
.ye8{bottom:117.000000px;}
.yb5{bottom:118.800000px;}
.y151{bottom:120.960000px;}
.y102{bottom:122.040000px;}
.y86{bottom:128.880000px;}
.y111{bottom:129.600000px;}
.y1b0{bottom:134.280000px;}
.y150{bottom:136.500000px;}
.yb4{bottom:138.960000px;}
.y176{bottom:141.480000px;}
.y6{bottom:143.280000px;}
.y57{bottom:145.440000px;}
.y197{bottom:146.520000px;}
.y101{bottom:148.680000px;}
.y85{bottom:149.040000px;}
.y110{bottom:151.920000px;}
.yd3{bottom:153.000000px;}
.y1af{bottom:156.240000px;}
.y14d{bottom:157.500000px;}
.y1c7{bottom:160.560000px;}
.y5{bottom:163.440000px;}
.y56{bottom:167.400000px;}
.yb3{bottom:168.120000px;}
.y196{bottom:168.840000px;}
.y84{bottom:169.200000px;}
.ye7{bottom:170.280000px;}
.y175{bottom:172.800000px;}
.y10f{bottom:173.880000px;}
.yd2{bottom:174.960000px;}
.y1ae{bottom:178.560000px;}
.y1c6{bottom:182.880000px;}
.yb2{bottom:188.280000px;}
.y83{bottom:189.360000px;}
.y55{bottom:189.720000px;}
.y195{bottom:191.160000px;}
.ye6{bottom:192.240000px;}
.y4{bottom:192.600000px;}
.y10e{bottom:196.200000px;}
.yd1{bottom:197.280000px;}
.y14b{bottom:199.500000px;}
.y174{bottom:203.760000px;}
.yb1{bottom:208.440000px;}
.y82{bottom:209.160000px;}
.y1ad{bottom:209.520000px;}
.y54{bottom:212.040000px;}
.y1c5{bottom:213.840000px;}
.ye5{bottom:214.560000px;}
.y10d{bottom:218.160000px;}
.y148{bottom:220.500000px;}
.y3{bottom:221.040000px;}
.y194{bottom:222.120000px;}
.yb0{bottom:228.600000px;}
.y81{bottom:229.320000px;}
.y1ac{bottom:231.840000px;}
.y53{bottom:234.000000px;}
.y173{bottom:235.080000px;}
.y1c4{bottom:236.160000px;}
.ye4{bottom:236.880000px;}
.y10c{bottom:240.480000px;}
.y193{bottom:244.440000px;}
.yaf{bottom:248.760000px;}
.y80{bottom:249.480000px;}
.yd0{bottom:250.560000px;}
.y1ab{bottom:253.800000px;}
.y52{bottom:256.320000px;}
.y147{bottom:256.500000px;}
.y172{bottom:257.040000px;}
.y192{bottom:266.400000px;}
.y1c3{bottom:267.120000px;}
.ye3{bottom:267.840000px;}
.yae{bottom:268.920000px;}
.y7f{bottom:269.640000px;}
.y10b{bottom:271.440000px;}
.y145{bottom:279.000000px;}
.ycf{bottom:279.720000px;}
.y1aa{bottom:285.120000px;}
.y51{bottom:288.360000px;}
.y191{bottom:288.720000px;}
.yad{bottom:289.080000px;}
.y1c2{bottom:289.440000px;}
.y7e{bottom:289.800000px;}
.y10a{bottom:293.760000px;}
.y1de{bottom:295.200000px;}
.ye2{bottom:299.160000px;}
.yce{bottom:299.880000px;}
.y142{bottom:300.000000px;}
.y1a9{bottom:307.080000px;}
.yac{bottom:309.240000px;}
.y7d{bottom:309.960000px;}
.y171{bottom:310.680000px;}
.y50{bottom:311.400000px;}
.y2a{bottom:315.000000px;}
.y109{bottom:315.720000px;}
.y1c1{bottom:320.400000px;}
.y1dd{bottom:323.280000px;}
.ye1{bottom:325.440000px;}
.ycd{bottom:329.040000px;}
.yab{bottom:329.400000px;}
.y7c{bottom:330.120000px;}
.y170{bottom:332.640000px;}
.y4f{bottom:334.800000px;}
.y29{bottom:335.160000px;}
.y108{bottom:338.040000px;}
.y13f{bottom:342.000000px;}
.ycc{bottom:349.200000px;}
.yaa{bottom:349.560000px;}
.y7b{bottom:350.280000px;}
.y1c0{bottom:351.720000px;}
.y1dc{bottom:354.240000px;}
.y16f{bottom:354.960000px;}
.y28{bottom:355.320000px;}
.y4e{bottom:357.840000px;}
.y1a8{bottom:360.720000px;}
.y190{bottom:363.960000px;}
.ycb{bottom:369.360000px;}
.y7a{bottom:370.440000px;}
.y1bf{bottom:373.680000px;}
.y1db{bottom:376.560000px;}
.y16e{bottom:376.920000px;}
.y13c{bottom:378.000000px;}
.ya9{bottom:378.360000px;}
.y4d{bottom:380.880000px;}
.y1a7{bottom:382.680000px;}
.y27{bottom:384.480000px;}
.y18f{bottom:386.280000px;}
.yca{bottom:389.520000px;}
.y79{bottom:390.600000px;}
.y1be{bottom:396.000000px;}
.ya8{bottom:398.520000px;}
.y1da{bottom:398.880000px;}
.y4c{bottom:404.280000px;}
.y1a6{bottom:405.000000px;}
.y16d{bottom:408.240000px;}
.y78{bottom:410.760000px;}
.y26{bottom:413.640000px;}
.y18e{bottom:417.240000px;}
.y1bd{bottom:417.960000px;}
.ya7{bottom:418.680000px;}
.y13a{bottom:420.000000px;}
.y4b{bottom:427.320000px;}
.y1d9{bottom:429.840000px;}
.y16c{bottom:430.200000px;}
.y25{bottom:433.800000px;}
.y1a5{bottom:435.960000px;}
.ya6{bottom:438.840000px;}
.y18d{bottom:439.560000px;}
.y77{bottom:439.920000px;}
.yc9{bottom:447.840000px;}
.y139{bottom:448.560000px;}
.y1bc{bottom:449.280000px;}
.y4a{bottom:450.360000px;}
.y1d8{bottom:452.160000px;}
.y16b{bottom:452.520000px;}
.y24{bottom:453.960000px;}
.y1a4{bottom:458.280000px;}
.ya5{bottom:459.000000px;}
.y76{bottom:460.080000px;}
.y18c{bottom:461.880000px;}
.y100{bottom:467.640000px;}
.yc8{bottom:468.000000px;}
.y138{bottom:468.720000px;}
.y1bb{bottom:471.240000px;}
.y23{bottom:473.760000px;}
.y16a{bottom:474.480000px;}
.ya4{bottom:479.160000px;}
.y122{bottom:479.520000px;}
.y75{bottom:480.240000px;}
.y1d7{bottom:483.120000px;}
.y18b{bottom:483.840000px;}
.y137{bottom:486.720000px;}
.yc7{bottom:488.160000px;}
.y1ba{bottom:493.560000px;}
.y22{bottom:493.920000px;}
.y49{bottom:496.800000px;}
.yff{bottom:498.960000px;}
.ya3{bottom:499.320000px;}
.y74{bottom:500.400000px;}
.y1d6{bottom:505.440000px;}
.y18a{bottom:506.160000px;}
.yc6{bottom:508.320000px;}
.y1a3{bottom:511.560000px;}
.y21{bottom:514.080000px;}
.y136{bottom:518.760000px;}
.ya2{bottom:519.480000px;}
.y48{bottom:519.840000px;}
.y73{bottom:520.560000px;}
.yfe{bottom:521.280000px;}
.y1b9{bottom:524.880000px;}
.y121{bottom:525.240000px;}
.y189{bottom:528.120000px;}
.yc5{bottom:528.480000px;}
.y1a2{bottom:533.520000px;}
.y20{bottom:534.240000px;}
.y1d5{bottom:536.400000px;}
.y135{bottom:538.920000px;}
.y72{bottom:540.720000px;}
.yfd{bottom:541.080000px;}
.y47{bottom:543.240000px;}
.y120{bottom:545.760000px;}
.y1b8{bottom:546.840000px;}
.yc4{bottom:548.280000px;}
.ya1{bottom:548.640000px;}
.y169{bottom:550.080000px;}
.y1f{bottom:554.400000px;}
.y134{bottom:559.080000px;}
.y188{bottom:559.440000px;}
.y71{bottom:560.880000px;}
.y1a1{bottom:564.840000px;}
.y46{bottom:566.280000px;}
.yfc{bottom:567.360000px;}
.y11f{bottom:567.720000px;}
.yc3{bottom:568.440000px;}
.ya0{bottom:568.800000px;}
.y1b7{bottom:569.160000px;}
.y168{bottom:572.400000px;}
.y1e{bottom:574.560000px;}
.y133{bottom:579.240000px;}
.y70{bottom:581.040000px;}
.y187{bottom:581.400000px;}
.y1a0{bottom:586.800000px;}
.yc2{bottom:588.600000px;}
.y9f{bottom:588.960000px;}
.y45{bottom:589.320000px;}
.yfb{bottom:589.680000px;}
.y11e{bottom:590.040000px;}
.y167{bottom:594.360000px;}
.y132{bottom:599.400000px;}
.y1b6{bottom:600.120000px;}
.y6f{bottom:601.200000px;}
.y186{bottom:603.720000px;}
.y1d{bottom:604.440000px;}
.yc1{bottom:608.760000px;}
.y9e{bottom:609.120000px;}
.y1d4{bottom:612.000000px;}
.y44{bottom:612.720000px;}
.y166{bottom:616.680000px;}
.ye0{bottom:617.040000px;}
.y11d{bottom:618.120000px;}
.y131{bottom:619.560000px;}
.yfa{bottom:620.640000px;}
.y6e{bottom:621.000000px;}
.y1b5{bottom:622.440000px;}
.y185{bottom:625.680000px;}
.yc0{bottom:628.920000px;}
.y9d{bottom:629.280000px;}
.y1c{bottom:636.480000px;}
.y165{bottom:638.640000px;}
.ydf{bottom:639.360000px;}
.y130{bottom:639.720000px;}
.y11c{bottom:640.440000px;}
.y6d{bottom:641.160000px;}
.y1d3{bottom:642.960000px;}
.y1b4{bottom:644.400000px;}
.y43{bottom:644.760000px;}
.y184{bottom:648.000000px;}
.y9c{bottom:649.440000px;}
.yf9{bottom:651.960000px;}
.ybf{bottom:658.080000px;}
.y164{bottom:660.960000px;}
.y6c{bottom:661.320000px;}
.y11b{bottom:662.400000px;}
.y1d2{bottom:665.280000px;}
.y1b{bottom:665.640000px;}
.yde{bottom:667.800000px;}
.y9b{bottom:669.600000px;}
.y183{bottom:669.960000px;}
.y12f{bottom:670.680000px;}
.yf8{bottom:673.920000px;}
.y42{bottom:674.640000px;}
.y1b3{bottom:675.720000px;}
.y6b{bottom:681.480000px;}
.y163{bottom:682.920000px;}
.y19f{bottom:684.720000px;}
.ybe{bottom:687.240000px;}
.y1d1{bottom:687.600000px;}
.y9a{bottom:689.760000px;}
.y11a{bottom:690.840000px;}
.y1a{bottom:694.800000px;}
.yf7{bottom:696.240000px;}
.ydd{bottom:697.680000px;}
.y182{bottom:700.200000px;}
.y6a{bottom:701.640000px;}
.y162{bottom:705.240000px;}
.y41{bottom:705.960000px;}
.y1d0{bottom:709.560000px;}
.y99{bottom:709.920000px;}
.y12e{bottom:711.000000px;}
.y119{bottom:712.800000px;}
.y19e{bottom:715.680000px;}
.ybd{bottom:717.480000px;}
.yf6{bottom:718.200000px;}
.ydc{bottom:720.000000px;}
.y69{bottom:721.800000px;}
.y19{bottom:723.960000px;}
.y98{bottom:730.080000px;}
.y1cf{bottom:731.880000px;}
.y181{bottom:732.240000px;}
.y12d{bottom:732.960000px;}
.y40{bottom:733.320000px;}
.y118{bottom:735.120000px;}
.y161{bottom:736.200000px;}
.y19d{bottom:738.000000px;}
.yf5{bottom:740.520000px;}
.y68{bottom:741.960000px;}
.ybc{bottom:747.360000px;}
.y107{bottom:750.960000px;}
.y18{bottom:752.400000px;}
.y12c{bottom:755.280000px;}
.y117{bottom:757.080000px;}
.y160{bottom:758.520000px;}
.y97{bottom:758.880000px;}
.y180{bottom:761.040000px;}
.y3f{bottom:761.400000px;}
.y67{bottom:762.120000px;}
.yf4{bottom:762.480000px;}
.y1ce{bottom:762.840000px;}
.ydb{bottom:764.280000px;}
.y19c{bottom:767.880000px;}
.y106{bottom:773.280000px;}
.ybb{bottom:777.600000px;}
.y96{bottom:779.040000px;}
.y116{bottom:779.400000px;}
.y15f{bottom:780.480000px;}
.y17f{bottom:781.200000px;}
.y3e{bottom:781.560000px;}
.y17{bottom:782.280000px;}
.y1cd{bottom:785.160000px;}
.yda{bottom:786.600000px;}
.yf3{bottom:793.800000px;}
.y105{bottom:795.600000px;}
.yba{bottom:797.760000px;}
.y95{bottom:799.200000px;}
.y12b{bottom:799.560000px;}
.y19b{bottom:799.920000px;}
.y17e{bottom:801.360000px;}
.y15e{bottom:802.800000px;}
.y1cc{bottom:807.120000px;}
.y115{bottom:807.480000px;}
.yd9{bottom:808.560000px;}
.y3d{bottom:810.720000px;}
.y16{bottom:811.800000px;}
.y66{bottom:813.600000px;}
.yf2{bottom:816.120000px;}
.y1b2{bottom:817.560000px;}
.yb9{bottom:817.920000px;}
.y94{bottom:819.360000px;}
.y17d{bottom:821.520000px;}
.y12a{bottom:821.880000px;}
.y15d{bottom:825.120000px;}
.y104{bottom:826.560000px;}
.y19a{bottom:829.080000px;}
.y114{bottom:829.440000px;}
.yd8{bottom:830.880000px;}
.yf1{bottom:838.080000px;}
.y1cb{bottom:838.440000px;}
.y93{bottom:839.520000px;}
.y3c{bottom:839.880000px;}
.y15{bottom:840.960000px;}
.y17c{bottom:841.680000px;}
.y65{bottom:844.560000px;}
.y15c{bottom:847.080000px;}
.yb8{bottom:847.800000px;}
.y103{bottom:848.880000px;}
.y199{bottom:849.240000px;}
.y113{bottom:857.880000px;}
.y92{bottom:859.680000px;}
.y3b{bottom:860.040000px;}
.yf0{bottom:860.400000px;}
.yd7{bottom:861.840000px;}
.y64{bottom:866.880000px;}
.y15b{bottom:869.400000px;}
.y1b1{bottom:870.840000px;}
.y14{bottom:876.240000px;}
.y198{bottom:879.120000px;}
.y91{bottom:879.840000px;}
.y3a{bottom:880.200000px;}
.yef{bottom:882.360000px;}
.y129{bottom:884.160000px;}
.y63{bottom:888.840000px;}
.y15a{bottom:891.360000px;}
.y1ca{bottom:891.720000px;}
.y17b{bottom:893.160000px;}
.y90{bottom:900.000000px;}
.y39{bottom:900.360000px;}
.y13{bottom:901.800000px;}
.yd6{bottom:902.160000px;}
.y128{bottom:906.120000px;}
.yb7{bottom:909.000000px;}
.y62{bottom:911.160000px;}
.yee{bottom:913.680000px;}
.y17a{bottom:915.120000px;}
.y38{bottom:920.520000px;}
.y159{bottom:922.680000px;}
.yd5{bottom:924.120000px;}
.y12{bottom:928.440000px;}
.y8f{bottom:929.160000px;}
.y61{bottom:933.120000px;}
.y179{bottom:937.440000px;}
.y37{bottom:940.680000px;}
.yed{bottom:943.560000px;}
.y158{bottom:944.640000px;}
.y1c9{bottom:945.000000px;}
.yd4{bottom:946.440000px;}
.y8e{bottom:949.320000px;}
.y60{bottom:955.440000px;}
.y11{bottom:956.880000px;}
.y178{bottom:959.400000px;}
.y36{bottom:960.480000px;}
.y157{bottom:966.960000px;}
.y1c8{bottom:967.320000px;}
.y127{bottom:968.400000px;}
.y8d{bottom:969.480000px;}
.y5f{bottom:977.400000px;}
.y10{bottom:984.600000px;}
.y112{bottom:986.400000px;}
.y156{bottom:988.920000px;}
.y8c{bottom:989.640000px;}
.y35{bottom:990.720000px;}
.y5e{bottom:999.720000px;}
.yf{bottom:1004.760000px;}
.yec{bottom:1008.720000px;}
.y8b{bottom:1009.800000px;}
.y126{bottom:1012.680000px;}
.y155{bottom:1020.240000px;}
.y5d{bottom:1021.680000px;}
.y34{bottom:1022.760000px;}
.ye{bottom:1024.920000px;}
.y8a{bottom:1029.960000px;}
.yeb{bottom:1030.680000px;}
.y125{bottom:1035.000000px;}
.y154{bottom:1042.200000px;}
.y5c{bottom:1044.000000px;}
.yd{bottom:1045.080000px;}
.y89{bottom:1050.120000px;}
.yea{bottom:1053.000000px;}
.y33{bottom:1053.720000px;}
.y124{bottom:1057.320000px;}
.yb6{bottom:1059.120000px;}
.y153{bottom:1064.520000px;}
.y5b{bottom:1066.320000px;}
.ye9{bottom:1075.320000px;}
.y2b{bottom:1075.500000px;}
.y88{bottom:1079.280000px;}
.yc{bottom:1080.360000px;}
.y32{bottom:1082.880000px;}
.yb{bottom:1086.840000px;}
.y177{bottom:1088.280000px;}
.y5a{bottom:1097.280000px;}
.y87{bottom:1099.440000px;}
.ya{bottom:1111.680000px;}
.y31{bottom:1112.400000px;}
.y152{bottom:1116.720000px;}
.y59{bottom:1119.600000px;}
.y2{bottom:1155.240000px;}
.y2f{bottom:1167.120000px;}
.y58{bottom:1182.240000px;}
.y1{bottom:1184.760000px;}
.y2e{bottom:1197.000000px;}
.h7{height:7.678125px;}
.h8{height:16.316016px;}
.h11{height:22.074609px;}
.h16{height:22.500000px;}
.h13{height:24.000000px;}
.h12{height:25.913672px;}
.h10{height:29.752734px;}
.he{height:35.291953px;}
.h9{height:36.471094px;}
.h15{height:37.500000px;}
.h3{height:37.780313px;}
.h4{height:42.967969px;}
.h14{height:43.500000px;}
.h2{height:43.765313px;}
.hc{height:46.445625px;}
.hf{height:49.194844px;}
.hd{height:49.500000px;}
.h5{height:49.907813px;}
.hb{height:54.523125px;}
.h6{height:54.660938px;}
.ha{height:67.649063px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:150.000000px;}
.w4{width:162.000000px;}
.w2{width:312.000000px;}
.w3{width:330.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x13{left:5.580000px;}
.x11{left:19.031160px;}
.x18{left:55.573200px;}
.x15{left:56.704680px;}
.x17{left:57.726720px;}
.x1b{left:58.971600px;}
.x14{left:65.510760px;}
.x16{left:66.690120px;}
.x19{left:67.719000px;}
.x1a{left:69.403440px;}
.x4{left:119.685600px;}
.x5{left:123.706800px;}
.x2{left:127.439928px;}
.x7{left:132.238764px;}
.xf{left:141.153816px;}
.x9{left:154.440000px;}
.xe{left:159.390036px;}
.x1d{left:163.439928px;}
.xa{left:181.439928px;}
.x8{left:328.855932px;}
.x6{left:367.185240px;}
.x10{left:456.000000px;}
.x3{left:463.500000px;}
.x12{left:616.500000px;}
.xb{left:693.337320px;}
.xc{left:696.188880px;}
.x1c{left:699.766200px;}
.xd{left:730.597320px;}
.x1{left:818.489880px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls22{letter-spacing:-0.530176pt;}
.ls1f{letter-spacing:-0.393984pt;}
.ls5f{letter-spacing:-0.365568pt;}
.ls66{letter-spacing:-0.360192pt;}
.ls23{letter-spacing:-0.345344pt;}
.ls21{letter-spacing:-0.335616pt;}
.ls63{letter-spacing:-0.322560pt;}
.lsb{letter-spacing:-0.295680pt;}
.ls59{letter-spacing:-0.268800pt;}
.ls20{letter-spacing:-0.267520pt;}
.ls19{letter-spacing:-0.265856pt;}
.ls6{letter-spacing:-0.263424pt;}
.ls9{letter-spacing:-0.258048pt;}
.ls16{letter-spacing:-0.257280pt;}
.ls5d{letter-spacing:-0.252672pt;}
.lsc{letter-spacing:-0.247296pt;}
.ls18{letter-spacing:-0.231552pt;}
.ls5e{letter-spacing:-0.231168pt;}
.ls5a{letter-spacing:-0.225792pt;}
.ls5{letter-spacing:-0.220416pt;}
.ls61{letter-spacing:-0.215040pt;}
.ls4e{letter-spacing:-0.211968pt;}
.ls64{letter-spacing:-0.209664pt;}
.ls32{letter-spacing:-0.205824pt;}
.ls65{letter-spacing:-0.204288pt;}
.lsa{letter-spacing:-0.198912pt;}
.ls7{letter-spacing:-0.193536pt;}
.ls38{letter-spacing:-0.182528pt;}
.ls33{letter-spacing:-0.180096pt;}
.ls43{letter-spacing:-0.176640pt;}
.ls62{letter-spacing:-0.172032pt;}
.ls40{letter-spacing:-0.170752pt;}
.ls4b{letter-spacing:-0.164864pt;}
.ls60{letter-spacing:-0.161280pt;}
.ls14{letter-spacing:-0.158976pt;}
.ls37{letter-spacing:-0.153088pt;}
.ls15{letter-spacing:-0.147200pt;}
.ls1c{letter-spacing:-0.141312pt;}
.lsd{letter-spacing:-0.135424pt;}
.ls35{letter-spacing:-0.129536pt;}
.ls1d{letter-spacing:-0.123648pt;}
.ls10{letter-spacing:-0.117760pt;}
.ls47{letter-spacing:-0.111872pt;}
.ls17{letter-spacing:-0.111488pt;}
.ls8{letter-spacing:-0.107520pt;}
.ls48{letter-spacing:-0.105984pt;}
.ls11{letter-spacing:-0.100096pt;}
.ls13{letter-spacing:-0.094208pt;}
.ls1a{letter-spacing:-0.088320pt;}
.ls12{letter-spacing:-0.082432pt;}
.lsf{letter-spacing:-0.076544pt;}
.ls4f{letter-spacing:-0.070656pt;}
.ls34{letter-spacing:-0.064768pt;}
.lse{letter-spacing:-0.058880pt;}
.ls36{letter-spacing:-0.052992pt;}
.ls41{letter-spacing:-0.047104pt;}
.ls1e{letter-spacing:-0.035328pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.067584pt;}
.ls73{letter-spacing:0.069120pt;}
.ls3b{letter-spacing:0.083200pt;}
.ls42{letter-spacing:0.083840pt;}
.ls25{letter-spacing:0.083968pt;}
.ls24{letter-spacing:0.084480pt;}
.ls27{letter-spacing:0.096768pt;}
.ls4c{letter-spacing:0.103680pt;}
.ls1{letter-spacing:0.106624pt;}
.ls29{letter-spacing:0.117504pt;}
.ls1b{letter-spacing:0.124416pt;}
.ls26{letter-spacing:0.126336pt;}
.ls30{letter-spacing:0.130944pt;}
.ls70{letter-spacing:0.138240pt;}
.ls3e{letter-spacing:0.223872pt;}
.ls39{letter-spacing:0.228096pt;}
.ls2f{letter-spacing:0.244992pt;}
.ls3f{letter-spacing:0.249216pt;}
.ls31{letter-spacing:0.278784pt;}
.ls2a{letter-spacing:0.800000pt;}
.ls74{letter-spacing:0.932608pt;}
.ls2d{letter-spacing:0.956160pt;}
.ls28{letter-spacing:1.989120pt;}
.ls53{letter-spacing:2.181120pt;}
.ls52{letter-spacing:2.181376pt;}
.ls6b{letter-spacing:3.036160pt;}
.ls67{letter-spacing:3.129600pt;}
.ls3c{letter-spacing:4.257280pt;}
.ls4d{letter-spacing:5.104640pt;}
.ls68{letter-spacing:5.144320pt;}
.ls55{letter-spacing:5.165824pt;}
.ls56{letter-spacing:5.167360pt;}
.ls50{letter-spacing:5.907200pt;}
.ls0{letter-spacing:6.301056pt;}
.ls5b{letter-spacing:7.686400pt;}
.ls2b{letter-spacing:9.975040pt;}
.ls2{letter-spacing:11.219200pt;}
.ls3d{letter-spacing:11.315456pt;}
.ls6a{letter-spacing:12.249600pt;}
.ls69{letter-spacing:12.250880pt;}
.ls2c{letter-spacing:14.610944pt;}
.ls2e{letter-spacing:20.233472pt;}
.ls6d{letter-spacing:26.321408pt;}
.ls6f{letter-spacing:26.636544pt;}
.ls71{letter-spacing:28.813568pt;}
.ls6c{letter-spacing:30.131328pt;}
.ls6e{letter-spacing:32.423040pt;}
.ls58{letter-spacing:32.769408pt;}
.ls4a{letter-spacing:33.568768pt;}
.ls57{letter-spacing:35.548032pt;}
.ls49{letter-spacing:36.347520pt;}
.ls54{letter-spacing:36.951808pt;}
.ls46{letter-spacing:37.751040pt;}
.ls72{letter-spacing:39.040128pt;}
.ls51{letter-spacing:43.540352pt;}
.ls45{letter-spacing:44.339712pt;}
.ls44{letter-spacing:52.646912pt;}
.ls5c{letter-spacing:748.784640pt;}
.ls3{letter-spacing:751.631360pt;}
.ws29{word-spacing:-15.137280pt;}
.wsa{word-spacing:-15.123456pt;}
.ws12{word-spacing:-15.116544pt;}
.ws1e{word-spacing:-15.102720pt;}
.ws11{word-spacing:-15.095808pt;}
.ws2a{word-spacing:-15.068160pt;}
.ws5{word-spacing:-12.776960pt;}
.ws2b{word-spacing:-12.729856pt;}
.ws13{word-spacing:-12.723968pt;}
.ws16{word-spacing:-12.718080pt;}
.ws14{word-spacing:-12.700416pt;}
.ws18{word-spacing:-12.694528pt;}
.ws1a{word-spacing:-12.688640pt;}
.ws8{word-spacing:-12.682752pt;}
.ws7{word-spacing:-12.676864pt;}
.ws1b{word-spacing:-12.670976pt;}
.ws1c{word-spacing:-12.665088pt;}
.ws21{word-spacing:-12.659200pt;}
.ws17{word-spacing:-12.653312pt;}
.ws22{word-spacing:-12.647424pt;}
.ws4{word-spacing:-12.641536pt;}
.ws1f{word-spacing:-12.635648pt;}
.ws9{word-spacing:-12.629760pt;}
.ws2c{word-spacing:-12.623872pt;}
.ws20{word-spacing:-12.617984pt;}
.ws15{word-spacing:-12.594432pt;}
.ws1d{word-spacing:-12.564992pt;}
.ws6{word-spacing:-12.046848pt;}
.ws25{word-spacing:-11.493888pt;}
.ws1{word-spacing:-11.472384pt;}
.ws28{word-spacing:-11.467008pt;}
.ws27{word-spacing:-11.461632pt;}
.ws24{word-spacing:-11.450880pt;}
.ws0{word-spacing:-11.445504pt;}
.ws3{word-spacing:-11.418624pt;}
.ws23{word-spacing:-11.413248pt;}
.ws2{word-spacing:-11.407872pt;}
.ws26{word-spacing:-11.343360pt;}
.wsd{word-spacing:-10.554880pt;}
.wse{word-spacing:-10.287360pt;}
.wsb{word-spacing:-10.160896pt;}
.wsc{word-spacing:-10.024704pt;}
.ws10{word-spacing:-9.297024pt;}
.ws19{word-spacing:-0.058880pt;}
.wsf{word-spacing:0.000000pt;}
._1c{margin-left:-5.120512pt;}
._d{margin-left:-3.108864pt;}
._7{margin-left:-2.060288pt;}
._2{margin-left:-0.956928pt;}
._5{width:0.913920pt;}
._9{width:2.001920pt;}
._a{width:3.061760pt;}
._3{width:4.343808pt;}
._1{width:5.429760pt;}
._4{width:6.451200pt;}
._6{width:8.066560pt;}
._e{width:9.126400pt;}
._10{width:10.142208pt;}
._b{width:11.187200pt;}
._15{width:13.607168pt;}
._f{width:14.512768pt;}
._8{width:15.987072pt;}
._16{width:16.985728pt;}
._19{width:18.135040pt;}
._18{width:19.136000pt;}
._11{width:20.530432pt;}
._14{width:21.627648pt;}
._17{width:22.727680pt;}
._1a{width:23.846400pt;}
._12{width:25.671680pt;}
._13{width:26.624256pt;}
._1b{width:27.650688pt;}
._c{width:28.558080pt;}
._25{width:31.088640pt;}
._26{width:32.207360pt;}
._20{width:43.129856pt;}
._1d{width:44.395520pt;}
._24{width:64.002560pt;}
._23{width:95.150080pt;}
._21{width:121.116160pt;}
._1f{width:143.549440pt;}
._1e{width:144.609280pt;}
._0{width:154.473728pt;}
._22{width:165.688320pt;}
.fs3{font-size:10.240000pt;}
.fs4{font-size:21.760000pt;}
.fs9{font-size:29.440000pt;}
.fsa{font-size:34.560000pt;}
.fs8{font-size:39.680000pt;}
.fs7{font-size:42.240000pt;}
.fs0{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fsb{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs5{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y141{bottom:4.160000pt;}
.y14a{bottom:4.640000pt;}
.y14c{bottom:6.986667pt;}
.y146{bottom:7.040000pt;}
.y13b{bottom:7.786667pt;}
.y2d{bottom:7.840000pt;}
.y14f{bottom:8.800000pt;}
.y13e{bottom:8.960000pt;}
.y144{bottom:9.173333pt;}
.y140{bottom:20.480000pt;}
.y149{bottom:20.640000pt;}
.y2c{bottom:24.160000pt;}
.y14e{bottom:25.120000pt;}
.y143{bottom:25.173333pt;}
.y13d{bottom:25.280000pt;}
.y30{bottom:54.720000pt;}
.y9{bottom:56.640000pt;}
.y8{bottom:83.520000pt;}
.y123{bottom:100.480000pt;}
.y7{bottom:101.440000pt;}
.ye8{bottom:104.000000pt;}
.yb5{bottom:105.600000pt;}
.y151{bottom:107.520000pt;}
.y102{bottom:108.480000pt;}
.y86{bottom:114.560000pt;}
.y111{bottom:115.200000pt;}
.y1b0{bottom:119.360000pt;}
.y150{bottom:121.333333pt;}
.yb4{bottom:123.520000pt;}
.y176{bottom:125.760000pt;}
.y6{bottom:127.360000pt;}
.y57{bottom:129.280000pt;}
.y197{bottom:130.240000pt;}
.y101{bottom:132.160000pt;}
.y85{bottom:132.480000pt;}
.y110{bottom:135.040000pt;}
.yd3{bottom:136.000000pt;}
.y1af{bottom:138.880000pt;}
.y14d{bottom:140.000000pt;}
.y1c7{bottom:142.720000pt;}
.y5{bottom:145.280000pt;}
.y56{bottom:148.800000pt;}
.yb3{bottom:149.440000pt;}
.y196{bottom:150.080000pt;}
.y84{bottom:150.400000pt;}
.ye7{bottom:151.360000pt;}
.y175{bottom:153.600000pt;}
.y10f{bottom:154.560000pt;}
.yd2{bottom:155.520000pt;}
.y1ae{bottom:158.720000pt;}
.y1c6{bottom:162.560000pt;}
.yb2{bottom:167.360000pt;}
.y83{bottom:168.320000pt;}
.y55{bottom:168.640000pt;}
.y195{bottom:169.920000pt;}
.ye6{bottom:170.880000pt;}
.y4{bottom:171.200000pt;}
.y10e{bottom:174.400000pt;}
.yd1{bottom:175.360000pt;}
.y14b{bottom:177.333333pt;}
.y174{bottom:181.120000pt;}
.yb1{bottom:185.280000pt;}
.y82{bottom:185.920000pt;}
.y1ad{bottom:186.240000pt;}
.y54{bottom:188.480000pt;}
.y1c5{bottom:190.080000pt;}
.ye5{bottom:190.720000pt;}
.y10d{bottom:193.920000pt;}
.y148{bottom:196.000000pt;}
.y3{bottom:196.480000pt;}
.y194{bottom:197.440000pt;}
.yb0{bottom:203.200000pt;}
.y81{bottom:203.840000pt;}
.y1ac{bottom:206.080000pt;}
.y53{bottom:208.000000pt;}
.y173{bottom:208.960000pt;}
.y1c4{bottom:209.920000pt;}
.ye4{bottom:210.560000pt;}
.y10c{bottom:213.760000pt;}
.y193{bottom:217.280000pt;}
.yaf{bottom:221.120000pt;}
.y80{bottom:221.760000pt;}
.yd0{bottom:222.720000pt;}
.y1ab{bottom:225.600000pt;}
.y52{bottom:227.840000pt;}
.y147{bottom:228.000000pt;}
.y172{bottom:228.480000pt;}
.y192{bottom:236.800000pt;}
.y1c3{bottom:237.440000pt;}
.ye3{bottom:238.080000pt;}
.yae{bottom:239.040000pt;}
.y7f{bottom:239.680000pt;}
.y10b{bottom:241.280000pt;}
.y145{bottom:248.000000pt;}
.ycf{bottom:248.640000pt;}
.y1aa{bottom:253.440000pt;}
.y51{bottom:256.320000pt;}
.y191{bottom:256.640000pt;}
.yad{bottom:256.960000pt;}
.y1c2{bottom:257.280000pt;}
.y7e{bottom:257.600000pt;}
.y10a{bottom:261.120000pt;}
.y1de{bottom:262.400000pt;}
.ye2{bottom:265.920000pt;}
.yce{bottom:266.560000pt;}
.y142{bottom:266.666667pt;}
.y1a9{bottom:272.960000pt;}
.yac{bottom:274.880000pt;}
.y7d{bottom:275.520000pt;}
.y171{bottom:276.160000pt;}
.y50{bottom:276.800000pt;}
.y2a{bottom:280.000000pt;}
.y109{bottom:280.640000pt;}
.y1c1{bottom:284.800000pt;}
.y1dd{bottom:287.360000pt;}
.ye1{bottom:289.280000pt;}
.ycd{bottom:292.480000pt;}
.yab{bottom:292.800000pt;}
.y7c{bottom:293.440000pt;}
.y170{bottom:295.680000pt;}
.y4f{bottom:297.600000pt;}
.y29{bottom:297.920000pt;}
.y108{bottom:300.480000pt;}
.y13f{bottom:304.000000pt;}
.ycc{bottom:310.400000pt;}
.yaa{bottom:310.720000pt;}
.y7b{bottom:311.360000pt;}
.y1c0{bottom:312.640000pt;}
.y1dc{bottom:314.880000pt;}
.y16f{bottom:315.520000pt;}
.y28{bottom:315.840000pt;}
.y4e{bottom:318.080000pt;}
.y1a8{bottom:320.640000pt;}
.y190{bottom:323.520000pt;}
.ycb{bottom:328.320000pt;}
.y7a{bottom:329.280000pt;}
.y1bf{bottom:332.160000pt;}
.y1db{bottom:334.720000pt;}
.y16e{bottom:335.040000pt;}
.y13c{bottom:336.000000pt;}
.ya9{bottom:336.320000pt;}
.y4d{bottom:338.560000pt;}
.y1a7{bottom:340.160000pt;}
.y27{bottom:341.760000pt;}
.y18f{bottom:343.360000pt;}
.yca{bottom:346.240000pt;}
.y79{bottom:347.200000pt;}
.y1be{bottom:352.000000pt;}
.ya8{bottom:354.240000pt;}
.y1da{bottom:354.560000pt;}
.y4c{bottom:359.360000pt;}
.y1a6{bottom:360.000000pt;}
.y16d{bottom:362.880000pt;}
.y78{bottom:365.120000pt;}
.y26{bottom:367.680000pt;}
.y18e{bottom:370.880000pt;}
.y1bd{bottom:371.520000pt;}
.ya7{bottom:372.160000pt;}
.y13a{bottom:373.333333pt;}
.y4b{bottom:379.840000pt;}
.y1d9{bottom:382.080000pt;}
.y16c{bottom:382.400000pt;}
.y25{bottom:385.600000pt;}
.y1a5{bottom:387.520000pt;}
.ya6{bottom:390.080000pt;}
.y18d{bottom:390.720000pt;}
.y77{bottom:391.040000pt;}
.yc9{bottom:398.080000pt;}
.y139{bottom:398.720000pt;}
.y1bc{bottom:399.360000pt;}
.y4a{bottom:400.320000pt;}
.y1d8{bottom:401.920000pt;}
.y16b{bottom:402.240000pt;}
.y24{bottom:403.520000pt;}
.y1a4{bottom:407.360000pt;}
.ya5{bottom:408.000000pt;}
.y76{bottom:408.960000pt;}
.y18c{bottom:410.560000pt;}
.y100{bottom:415.680000pt;}
.yc8{bottom:416.000000pt;}
.y138{bottom:416.640000pt;}
.y1bb{bottom:418.880000pt;}
.y23{bottom:421.120000pt;}
.y16a{bottom:421.760000pt;}
.ya4{bottom:425.920000pt;}
.y122{bottom:426.240000pt;}
.y75{bottom:426.880000pt;}
.y1d7{bottom:429.440000pt;}
.y18b{bottom:430.080000pt;}
.y137{bottom:432.640000pt;}
.yc7{bottom:433.920000pt;}
.y1ba{bottom:438.720000pt;}
.y22{bottom:439.040000pt;}
.y49{bottom:441.600000pt;}
.yff{bottom:443.520000pt;}
.ya3{bottom:443.840000pt;}
.y74{bottom:444.800000pt;}
.y1d6{bottom:449.280000pt;}
.y18a{bottom:449.920000pt;}
.yc6{bottom:451.840000pt;}
.y1a3{bottom:454.720000pt;}
.y21{bottom:456.960000pt;}
.y136{bottom:461.120000pt;}
.ya2{bottom:461.760000pt;}
.y48{bottom:462.080000pt;}
.y73{bottom:462.720000pt;}
.yfe{bottom:463.360000pt;}
.y1b9{bottom:466.560000pt;}
.y121{bottom:466.880000pt;}
.y189{bottom:469.440000pt;}
.yc5{bottom:469.760000pt;}
.y1a2{bottom:474.240000pt;}
.y20{bottom:474.880000pt;}
.y1d5{bottom:476.800000pt;}
.y135{bottom:479.040000pt;}
.y72{bottom:480.640000pt;}
.yfd{bottom:480.960000pt;}
.y47{bottom:482.880000pt;}
.y120{bottom:485.120000pt;}
.y1b8{bottom:486.080000pt;}
.yc4{bottom:487.360000pt;}
.ya1{bottom:487.680000pt;}
.y169{bottom:488.960000pt;}
.y1f{bottom:492.800000pt;}
.y134{bottom:496.960000pt;}
.y188{bottom:497.280000pt;}
.y71{bottom:498.560000pt;}
.y1a1{bottom:502.080000pt;}
.y46{bottom:503.360000pt;}
.yfc{bottom:504.320000pt;}
.y11f{bottom:504.640000pt;}
.yc3{bottom:505.280000pt;}
.ya0{bottom:505.600000pt;}
.y1b7{bottom:505.920000pt;}
.y168{bottom:508.800000pt;}
.y1e{bottom:510.720000pt;}
.y133{bottom:514.880000pt;}
.y70{bottom:516.480000pt;}
.y187{bottom:516.800000pt;}
.y1a0{bottom:521.600000pt;}
.yc2{bottom:523.200000pt;}
.y9f{bottom:523.520000pt;}
.y45{bottom:523.840000pt;}
.yfb{bottom:524.160000pt;}
.y11e{bottom:524.480000pt;}
.y167{bottom:528.320000pt;}
.y132{bottom:532.800000pt;}
.y1b6{bottom:533.440000pt;}
.y6f{bottom:534.400000pt;}
.y186{bottom:536.640000pt;}
.y1d{bottom:537.280000pt;}
.yc1{bottom:541.120000pt;}
.y9e{bottom:541.440000pt;}
.y1d4{bottom:544.000000pt;}
.y44{bottom:544.640000pt;}
.y166{bottom:548.160000pt;}
.ye0{bottom:548.480000pt;}
.y11d{bottom:549.440000pt;}
.y131{bottom:550.720000pt;}
.yfa{bottom:551.680000pt;}
.y6e{bottom:552.000000pt;}
.y1b5{bottom:553.280000pt;}
.y185{bottom:556.160000pt;}
.yc0{bottom:559.040000pt;}
.y9d{bottom:559.360000pt;}
.y1c{bottom:565.760000pt;}
.y165{bottom:567.680000pt;}
.ydf{bottom:568.320000pt;}
.y130{bottom:568.640000pt;}
.y11c{bottom:569.280000pt;}
.y6d{bottom:569.920000pt;}
.y1d3{bottom:571.520000pt;}
.y1b4{bottom:572.800000pt;}
.y43{bottom:573.120000pt;}
.y184{bottom:576.000000pt;}
.y9c{bottom:577.280000pt;}
.yf9{bottom:579.520000pt;}
.ybf{bottom:584.960000pt;}
.y164{bottom:587.520000pt;}
.y6c{bottom:587.840000pt;}
.y11b{bottom:588.800000pt;}
.y1d2{bottom:591.360000pt;}
.y1b{bottom:591.680000pt;}
.yde{bottom:593.600000pt;}
.y9b{bottom:595.200000pt;}
.y183{bottom:595.520000pt;}
.y12f{bottom:596.160000pt;}
.yf8{bottom:599.040000pt;}
.y42{bottom:599.680000pt;}
.y1b3{bottom:600.640000pt;}
.y6b{bottom:605.760000pt;}
.y163{bottom:607.040000pt;}
.y19f{bottom:608.640000pt;}
.ybe{bottom:610.880000pt;}
.y1d1{bottom:611.200000pt;}
.y9a{bottom:613.120000pt;}
.y11a{bottom:614.080000pt;}
.y1a{bottom:617.600000pt;}
.yf7{bottom:618.880000pt;}
.ydd{bottom:620.160000pt;}
.y182{bottom:622.400000pt;}
.y6a{bottom:623.680000pt;}
.y162{bottom:626.880000pt;}
.y41{bottom:627.520000pt;}
.y1d0{bottom:630.720000pt;}
.y99{bottom:631.040000pt;}
.y12e{bottom:632.000000pt;}
.y119{bottom:633.600000pt;}
.y19e{bottom:636.160000pt;}
.ybd{bottom:637.760000pt;}
.yf6{bottom:638.400000pt;}
.ydc{bottom:640.000000pt;}
.y69{bottom:641.600000pt;}
.y19{bottom:643.520000pt;}
.y98{bottom:648.960000pt;}
.y1cf{bottom:650.560000pt;}
.y181{bottom:650.880000pt;}
.y12d{bottom:651.520000pt;}
.y40{bottom:651.840000pt;}
.y118{bottom:653.440000pt;}
.y161{bottom:654.400000pt;}
.y19d{bottom:656.000000pt;}
.yf5{bottom:658.240000pt;}
.y68{bottom:659.520000pt;}
.ybc{bottom:664.320000pt;}
.y107{bottom:667.520000pt;}
.y18{bottom:668.800000pt;}
.y12c{bottom:671.360000pt;}
.y117{bottom:672.960000pt;}
.y160{bottom:674.240000pt;}
.y97{bottom:674.560000pt;}
.y180{bottom:676.480000pt;}
.y3f{bottom:676.800000pt;}
.y67{bottom:677.440000pt;}
.yf4{bottom:677.760000pt;}
.y1ce{bottom:678.080000pt;}
.ydb{bottom:679.360000pt;}
.y19c{bottom:682.560000pt;}
.y106{bottom:687.360000pt;}
.ybb{bottom:691.200000pt;}
.y96{bottom:692.480000pt;}
.y116{bottom:692.800000pt;}
.y15f{bottom:693.760000pt;}
.y17f{bottom:694.400000pt;}
.y3e{bottom:694.720000pt;}
.y17{bottom:695.360000pt;}
.y1cd{bottom:697.920000pt;}
.yda{bottom:699.200000pt;}
.yf3{bottom:705.600000pt;}
.y105{bottom:707.200000pt;}
.yba{bottom:709.120000pt;}
.y95{bottom:710.400000pt;}
.y12b{bottom:710.720000pt;}
.y19b{bottom:711.040000pt;}
.y17e{bottom:712.320000pt;}
.y15e{bottom:713.600000pt;}
.y1cc{bottom:717.440000pt;}
.y115{bottom:717.760000pt;}
.yd9{bottom:718.720000pt;}
.y3d{bottom:720.640000pt;}
.y16{bottom:721.600000pt;}
.y66{bottom:723.200000pt;}
.yf2{bottom:725.440000pt;}
.y1b2{bottom:726.720000pt;}
.yb9{bottom:727.040000pt;}
.y94{bottom:728.320000pt;}
.y17d{bottom:730.240000pt;}
.y12a{bottom:730.560000pt;}
.y15d{bottom:733.440000pt;}
.y104{bottom:734.720000pt;}
.y19a{bottom:736.960000pt;}
.y114{bottom:737.280000pt;}
.yd8{bottom:738.560000pt;}
.yf1{bottom:744.960000pt;}
.y1cb{bottom:745.280000pt;}
.y93{bottom:746.240000pt;}
.y3c{bottom:746.560000pt;}
.y15{bottom:747.520000pt;}
.y17c{bottom:748.160000pt;}
.y65{bottom:750.720000pt;}
.y15c{bottom:752.960000pt;}
.yb8{bottom:753.600000pt;}
.y103{bottom:754.560000pt;}
.y199{bottom:754.880000pt;}
.y113{bottom:762.560000pt;}
.y92{bottom:764.160000pt;}
.y3b{bottom:764.480000pt;}
.yf0{bottom:764.800000pt;}
.yd7{bottom:766.080000pt;}
.y64{bottom:770.560000pt;}
.y15b{bottom:772.800000pt;}
.y1b1{bottom:774.080000pt;}
.y14{bottom:778.880000pt;}
.y198{bottom:781.440000pt;}
.y91{bottom:782.080000pt;}
.y3a{bottom:782.400000pt;}
.yef{bottom:784.320000pt;}
.y129{bottom:785.920000pt;}
.y63{bottom:790.080000pt;}
.y15a{bottom:792.320000pt;}
.y1ca{bottom:792.640000pt;}
.y17b{bottom:793.920000pt;}
.y90{bottom:800.000000pt;}
.y39{bottom:800.320000pt;}
.y13{bottom:801.600000pt;}
.yd6{bottom:801.920000pt;}
.y128{bottom:805.440000pt;}
.yb7{bottom:808.000000pt;}
.y62{bottom:809.920000pt;}
.yee{bottom:812.160000pt;}
.y17a{bottom:813.440000pt;}
.y38{bottom:818.240000pt;}
.y159{bottom:820.160000pt;}
.yd5{bottom:821.440000pt;}
.y12{bottom:825.280000pt;}
.y8f{bottom:825.920000pt;}
.y61{bottom:829.440000pt;}
.y179{bottom:833.280000pt;}
.y37{bottom:836.160000pt;}
.yed{bottom:838.720000pt;}
.y158{bottom:839.680000pt;}
.y1c9{bottom:840.000000pt;}
.yd4{bottom:841.280000pt;}
.y8e{bottom:843.840000pt;}
.y60{bottom:849.280000pt;}
.y11{bottom:850.560000pt;}
.y178{bottom:852.800000pt;}
.y36{bottom:853.760000pt;}
.y157{bottom:859.520000pt;}
.y1c8{bottom:859.840000pt;}
.y127{bottom:860.800000pt;}
.y8d{bottom:861.760000pt;}
.y5f{bottom:868.800000pt;}
.y10{bottom:875.200000pt;}
.y112{bottom:876.800000pt;}
.y156{bottom:879.040000pt;}
.y8c{bottom:879.680000pt;}
.y35{bottom:880.640000pt;}
.y5e{bottom:888.640000pt;}
.yf{bottom:893.120000pt;}
.yec{bottom:896.640000pt;}
.y8b{bottom:897.600000pt;}
.y126{bottom:900.160000pt;}
.y155{bottom:906.880000pt;}
.y5d{bottom:908.160000pt;}
.y34{bottom:909.120000pt;}
.ye{bottom:911.040000pt;}
.y8a{bottom:915.520000pt;}
.yeb{bottom:916.160000pt;}
.y125{bottom:920.000000pt;}
.y154{bottom:926.400000pt;}
.y5c{bottom:928.000000pt;}
.yd{bottom:928.960000pt;}
.y89{bottom:933.440000pt;}
.yea{bottom:936.000000pt;}
.y33{bottom:936.640000pt;}
.y124{bottom:939.840000pt;}
.yb6{bottom:941.440000pt;}
.y153{bottom:946.240000pt;}
.y5b{bottom:947.840000pt;}
.ye9{bottom:955.840000pt;}
.y2b{bottom:956.000000pt;}
.y88{bottom:959.360000pt;}
.yc{bottom:960.320000pt;}
.y32{bottom:962.560000pt;}
.yb{bottom:966.080000pt;}
.y177{bottom:967.360000pt;}
.y5a{bottom:975.360000pt;}
.y87{bottom:977.280000pt;}
.ya{bottom:988.160000pt;}
.y31{bottom:988.800000pt;}
.y152{bottom:992.640000pt;}
.y59{bottom:995.200000pt;}
.y2{bottom:1026.880000pt;}
.y2f{bottom:1037.440000pt;}
.y58{bottom:1050.880000pt;}
.y1{bottom:1053.120000pt;}
.y2e{bottom:1064.000000pt;}
.h7{height:6.825000pt;}
.h8{height:14.503125pt;}
.h11{height:19.621875pt;}
.h16{height:20.000000pt;}
.h13{height:21.333333pt;}
.h12{height:23.034375pt;}
.h10{height:26.446875pt;}
.he{height:31.370625pt;}
.h9{height:32.418750pt;}
.h15{height:33.333333pt;}
.h3{height:33.582500pt;}
.h4{height:38.193750pt;}
.h14{height:38.666667pt;}
.h2{height:38.902500pt;}
.hc{height:41.285000pt;}
.hf{height:43.728750pt;}
.hd{height:44.000000pt;}
.h5{height:44.362500pt;}
.hb{height:48.465000pt;}
.h6{height:48.587500pt;}
.ha{height:60.132500pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:133.333333pt;}
.w4{width:144.000000pt;}
.w2{width:277.333333pt;}
.w3{width:293.333333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x13{left:4.960000pt;}
.x11{left:16.916587pt;}
.x18{left:49.398400pt;}
.x15{left:50.404160pt;}
.x17{left:51.312640pt;}
.x1b{left:52.419200pt;}
.x14{left:58.231787pt;}
.x16{left:59.280107pt;}
.x19{left:60.194667pt;}
.x1a{left:61.691947pt;}
.x4{left:106.387200pt;}
.x5{left:109.961600pt;}
.x2{left:113.279936pt;}
.x7{left:117.545568pt;}
.xf{left:125.470059pt;}
.x9{left:137.280000pt;}
.xe{left:141.680032pt;}
.x1d{left:145.279936pt;}
.xa{left:161.279936pt;}
.x8{left:292.316384pt;}
.x6{left:326.386880pt;}
.x10{left:405.333333pt;}
.x3{left:412.000000pt;}
.x12{left:548.000000pt;}
.xb{left:616.299840pt;}
.xc{left:618.834560pt;}
.x1c{left:622.014400pt;}
.xd{left:649.419840pt;}
.x1{left:727.546560pt;}
}




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