
    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_e1e705a738fe2a77044d0f5e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_eb4bfbb8a61b755832605972.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_7a49350752f89abbff4f3428.woff')format("woff");}.ff3{font-family:ff3;line-height:0.859000;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_80c94f1b148fea0a91f3dfa3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.684000;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_8d26e46c4d122750ceedb8f5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_6736309c4a1040a16380e0c3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.898000;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_fa2785e228b83a06b050fa84.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_a40c042d3a25063df69137bb.woff')format("woff");}.ff8{font-family:ff8;line-height:0.389000;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_4d70239c8faa7fc1a07fe347.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910000;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_a2fb0521e2e8597a1245795a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.866000;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_3fd3431ec4831aba0c574204.woff')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.v7{vertical-align:-62.766000px;}
.v9{vertical-align:-56.070000px;}
.v8{vertical-align:-46.248000px;}
.v2{vertical-align:-21.696000px;}
.va{vertical-align:-15.714000px;}
.v4{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.696000px;}
.v1{vertical-align:23.748000px;}
.v6{vertical-align:34.458000px;}
.v5{vertical-align:44.280000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.002696px;}
.ls9{letter-spacing:0.002706px;}
.lsc{letter-spacing:0.003791px;}
.ls10{letter-spacing:0.004344px;}
.ls0{letter-spacing:2.984525px;}
.ls8{letter-spacing:2.989289px;}
.ls1{letter-spacing:2.990525px;}
.ls11{letter-spacing:7.166706px;}
.lsd{letter-spacing:13.897289px;}
.lsf{letter-spacing:16.651488px;}
.lse{letter-spacing:16.657488px;}
.lsb{letter-spacing:18.179412px;}
.ls5{letter-spacing:21.820344px;}
.ls6{letter-spacing:21.820890px;}
.lsa{letter-spacing:23.314864px;}
.ls12{letter-spacing:24.800915px;}
.ls13{letter-spacing:30.365973px;}
.ls4{letter-spacing:32.723973px;}
.ls2{letter-spacing:32.727300px;}
.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;}
}
.ws1f{word-spacing:-26.899125px;}
.wsaf{word-spacing:-22.416000px;}
.ws27{word-spacing:-19.477824px;}
.ws3e{word-spacing:-18.183288px;}
.ws5{word-spacing:-16.605662px;}
.ws29{word-spacing:-14.589000px;}
.ws28{word-spacing:-3.361277px;}
.wsaa{word-spacing:-1.819638px;}
.ws63{word-spacing:-1.165092px;}
.ws93{word-spacing:-0.510546px;}
.ws3d{word-spacing:-0.065455px;}
.ws41{word-spacing:-0.059776px;}
.ws3f{word-spacing:-0.017549px;}
.ws25{word-spacing:0.000000px;}
.ws40{word-spacing:0.013091px;}
.ws90{word-spacing:0.131506px;}
.ws8f{word-spacing:0.155417px;}
.ws58{word-spacing:0.209455px;}
.ws5a{word-spacing:0.274909px;}
.ws12{word-spacing:0.490160px;}
.ws11{word-spacing:0.609711px;}
.ws73{word-spacing:0.992275px;}
.ws6c{word-spacing:1.052051px;}
.ws5d{word-spacing:1.152001px;}
.ws76{word-spacing:1.256728px;}
.ws54{word-spacing:1.446570px;}
.wsb2{word-spacing:1.453092px;}
.ws9{word-spacing:1.506345px;}
.ws61{word-spacing:1.518547px;}
.ws91{word-spacing:1.649456px;}
.ws53{word-spacing:1.649807px;}
.ws57{word-spacing:1.714911px;}
.ws5c{word-spacing:1.741092px;}
.ws4d{word-spacing:1.780365px;}
.ws8b{word-spacing:1.911274px;}
.ws8{word-spacing:1.924774px;}
.ws4b{word-spacing:1.976729px;}
.ws45{word-spacing:2.042184px;}
.wsb{word-spacing:2.163877px;}
.ws99{word-spacing:2.173093px;}
.wsa6{word-spacing:2.343204px;}
.ws3b{word-spacing:2.500366px;}
.ws59{word-spacing:2.631275px;}
.wsa5{word-spacing:2.665992px;}
.ws31{word-spacing:2.696730px;}
.ws6e{word-spacing:2.701857px;}
.ws18{word-spacing:2.761633px;}
.ws51{word-spacing:2.762184px;}
.ws95{word-spacing:2.940960px;}
.ws7{word-spacing:3.000735px;}
.ws35{word-spacing:3.024003px;}
.ws17{word-spacing:3.060511px;}
.ws5b{word-spacing:3.089457px;}
.ws55{word-spacing:3.120286px;}
.ws64{word-spacing:3.154912px;}
.ws80{word-spacing:3.180062px;}
.ws50{word-spacing:3.220366px;}
.ws6d{word-spacing:3.239838px;}
.ws8d{word-spacing:3.263748px;}
.ws2d{word-spacing:3.285821px;}
.ws4{word-spacing:3.299613px;}
.ws32{word-spacing:3.351276px;}
.ws16{word-spacing:3.359389px;}
.ws7e{word-spacing:3.383299px;}
.ws33{word-spacing:3.416730px;}
.ws19{word-spacing:3.478940px;}
.ws2c{word-spacing:3.482185px;}
.ws1d{word-spacing:3.538716px;}
.ws44{word-spacing:3.547639px;}
.ws77{word-spacing:3.562626px;}
.wsc{word-spacing:3.598491px;}
.ws2f{word-spacing:3.613094px;}
.ws6a{word-spacing:3.622401px;}
.ws87{word-spacing:3.639276px;}
.ws1e{word-spacing:3.658267px;}
.ws3c{word-spacing:3.678549px;}
.ws9b{word-spacing:3.682177px;}
.ws88{word-spacing:3.704730px;}
.wsa{word-spacing:3.718042px;}
.wsa0{word-spacing:3.741953px;}
.ws4a{word-spacing:3.744003px;}
.ws9e{word-spacing:3.770185px;}
.ws43{word-spacing:3.801728px;}
.ws36{word-spacing:3.809458px;}
.ws5f{word-spacing:3.835640px;}
.ws6b{word-spacing:3.861504px;}
.ws34{word-spacing:3.874912px;}
.ws9c{word-spacing:3.901094px;}
.ws2e{word-spacing:3.940367px;}
.ws37{word-spacing:4.005822px;}
.ws7d{word-spacing:4.040831px;}
.ws30{word-spacing:4.071276px;}
.ws84{word-spacing:4.097458px;}
.ws6f{word-spacing:4.100606px;}
.ws8c{word-spacing:4.136731px;}
.ws8e{word-spacing:4.160382px;}
.ws3{word-spacing:4.162913px;}
.ws69{word-spacing:4.220157px;}
.ws62{word-spacing:4.267640px;}
.ws74{word-spacing:4.279933px;}
.ws1{word-spacing:4.293822px;}
.ws2{word-spacing:4.359276px;}
.ws86{word-spacing:4.424731px;}
.ws8a{word-spacing:4.464004px;}
.ws2b{word-spacing:4.483200px;}
.wsac{word-spacing:4.554901px;}
.ws60{word-spacing:4.555640px;}
.wsb0{word-spacing:4.594913px;}
.ws5e{word-spacing:4.621095px;}
.ws48{word-spacing:4.660368px;}
.wsa8{word-spacing:4.725822px;}
.ws89{word-spacing:4.752004px;}
.ws79{word-spacing:4.794003px;}
.ws68{word-spacing:4.987641px;}
.wsb1{word-spacing:5.053095px;}
.ws71{word-spacing:5.118550px;}
.wsae{word-spacing:5.184004px;}
.wsab{word-spacing:5.236343px;}
.wsad{word-spacing:5.249459px;}
.ws2a{word-spacing:5.379825px;}
.ws7f{word-spacing:5.511310px;}
.ws66{word-spacing:5.576732px;}
.ws15{word-spacing:5.630862px;}
.ws1a{word-spacing:5.989515px;}
.ws4c{word-spacing:6.100369px;}
.wsa1{word-spacing:6.192752px;}
.ws7b{word-spacing:6.231278px;}
.ws9f{word-spacing:6.257460px;}
.ws98{word-spacing:6.296733px;}
.ws38{word-spacing:6.362187px;}
.ws67{word-spacing:6.427642px;}
.ws0{word-spacing:6.455775px;}
.wsa3{word-spacing:6.467720px;}
.ws97{word-spacing:6.493096px;}
.ws83{word-spacing:6.647047px;}
.wsa9{word-spacing:6.689460px;}
.wsa4{word-spacing:6.706822px;}
.wsa7{word-spacing:6.885824px;}
.ws52{word-spacing:6.910059px;}
.ws49{word-spacing:6.951279px;}
.ws72{word-spacing:7.016733px;}
.ws4e{word-spacing:7.082188px;}
.ws4f{word-spacing:7.147642px;}
.ws78{word-spacing:7.328489px;}
.ws82{word-spacing:7.687142px;}
.ws1c{word-spacing:7.790303px;}
.ws92{word-spacing:7.802188px;}
.ws46{word-spacing:8.064007px;}
.ws81{word-spacing:8.225123px;}
.ws96{word-spacing:8.260371px;}
.ws7c{word-spacing:8.653098px;}
.wsf{word-spacing:8.739193px;}
.ws65{word-spacing:8.784007px;}
.ws94{word-spacing:8.822879px;}
.ws3a{word-spacing:8.849462px;}
.ws75{word-spacing:9.176735px;}
.ws10{word-spacing:9.336949px;}
.ws7a{word-spacing:9.438553px;}
.ws85{word-spacing:10.053827px;}
.ws1b{word-spacing:10.329048px;}
.ws56{word-spacing:11.009464px;}
.ws9a{word-spacing:11.074918px;}
.ws9d{word-spacing:11.428373px;}
.ws42{word-spacing:12.110537px;}
.ws14{word-spacing:12.325685px;}
.ws20{word-spacing:12.621561px;}
.ws39{word-spacing:12.907647px;}
.ws26{word-spacing:13.276107px;}
.ws24{word-spacing:14.544012px;}
.ws21{word-spacing:17.404176px;}
.ws13{word-spacing:17.496223px;}
.ws22{word-spacing:17.542528px;}
.wsa2{word-spacing:17.594170px;}
.wse{word-spacing:18.643717px;}
.ws23{word-spacing:19.295939px;}
.wsd{word-spacing:21.638767px;}
.ws6{word-spacing:23.312640px;}
.ws70{word-spacing:23.367292px;}
.ws47{word-spacing:27.360023px;}
._23{margin-left:-8.248804px;}
._5{margin-left:-6.283642px;}
._6{margin-left:-4.961375px;}
._1{margin-left:-3.202064px;}
._3{margin-left:-2.094547px;}
._9{margin-left:-1.019463px;}
._7{width:1.020988px;}
._4{width:2.160002px;}
._2{width:3.202064px;}
._1f{width:4.320004px;}
._0{width:6.404129px;}
._b{width:8.543108px;}
._24{width:16.756495px;}
._20{width:18.654561px;}
._17{width:19.701835px;}
._12{width:20.814563px;}
._e{width:22.058200px;}
._d{width:23.728512px;}
._a{width:25.642856px;}
._8{width:27.109027px;}
._16{width:28.663904px;}
._18{width:29.842087px;}
._1d{width:30.894571px;}
._1c{width:32.214246px;}
._19{width:33.512755px;}
._10{width:35.960861px;}
._1e{width:37.500275px;}
._27{width:38.628350px;}
._13{width:39.796397px;}
._26{width:40.974580px;}
._25{width:42.609420px;}
._22{width:44.592598px;}
._c{width:45.670960px;}
._21{width:47.965339px;}
._1b{width:56.248840px;}
._11{width:72.981879px;}
._14{width:74.280149px;}
._15{width:78.534698px;}
._1a{width:81.515352px;}
._f{width:107.989268px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs6{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y29{bottom:93.952500px;}
.y28{bottom:147.918000px;}
.y56{bottom:151.461000px;}
.ycc{bottom:152.995500px;}
.yd8{bottom:154.318500px;}
.y6e{bottom:154.480500px;}
.y151{bottom:159.618000px;}
.y11a{bottom:163.543500px;}
.y7c{bottom:165.069000px;}
.y27{bottom:168.241500px;}
.y55{bottom:171.784500px;}
.yd7{bottom:172.251000px;}
.ycb{bottom:173.319000px;}
.y6d{bottom:174.805500px;}
.y150{bottom:177.550500px;}
.y119{bottom:181.476000px;}
.y7b{bottom:183.001500px;}
.y26{bottom:188.565000px;}
.yd6{bottom:190.185000px;}
.y54{bottom:192.109500px;}
.yca{bottom:193.642500px;}
.y6c{bottom:195.129000px;}
.y14f{bottom:195.483000px;}
.yaf{bottom:197.100000px;}
.y118{bottom:199.408500px;}
.y7a{bottom:200.934000px;}
.yd5{bottom:208.117500px;}
.y25{bottom:208.890000px;}
.y53{bottom:212.433000px;}
.y14e{bottom:213.417000px;}
.yc9{bottom:213.966000px;}
.yae{bottom:215.032500px;}
.y6b{bottom:215.452500px;}
.y117{bottom:217.342500px;}
.y79{bottom:218.866500px;}
.yfa{bottom:219.190500px;}
.yd4{bottom:226.050000px;}
.y14d{bottom:231.349500px;}
.y52{bottom:232.756500px;}
.yad{bottom:232.965000px;}
.yc8{bottom:234.291000px;}
.y116{bottom:235.275000px;}
.yf9{bottom:237.123000px;}
.yd3{bottom:243.982500px;}
.y24{bottom:245.577000px;}
.y6a{bottom:245.938500px;}
.y14c{bottom:249.282000px;}
.yac{bottom:250.899000px;}
.y51{bottom:253.080000px;}
.y115{bottom:253.207500px;}
.yc7{bottom:254.614500px;}
.yf8{bottom:255.055500px;}
.yed{bottom:256.912500px;}
.y110{bottom:263.857500px;}
.y69{bottom:266.262000px;}
.yab{bottom:268.831500px;}
.yec{bottom:274.845000px;}
.yc6{bottom:274.938000px;}
.y132{bottom:278.557500px;}
.y23{bottom:282.264000px;}
.y50{bottom:283.972500px;}
.y10f{bottom:284.181000px;}
.y68{bottom:286.585500px;}
.yeb{bottom:292.777500px;}
.yc5{bottom:295.261500px;}
.y131{bottom:296.490000px;}
.y10e{bottom:304.506000px;}
.y67{bottom:306.909000px;}
.yea{bottom:310.711500px;}
.y130{bottom:314.422500px;}
.yc4{bottom:315.585000px;}
.y10d{bottom:324.829500px;}
.y4f{bottom:327.193500px;}
.y66{bottom:327.234000px;}
.ye9{bottom:328.644000px;}
.y12f{bottom:332.356500px;}
.yc3{bottom:335.910000px;}
.y22{bottom:336.213000px;}
.y10c{bottom:345.153000px;}
.y65{bottom:347.557500px;}
.y145{bottom:348.022500px;}
.y12e{bottom:350.289000px;}
.y21{bottom:354.147000px;}
.ya4{bottom:354.423000px;}
.yc2{bottom:356.233500px;}
.y4e{bottom:357.679500px;}
.ya1{bottom:358.086000px;}
.y127{bottom:359.181000px;}
.y10b{bottom:365.476500px;}
.y64{bottom:367.881000px;}
.y144{bottom:368.346000px;}
.y20{bottom:372.079500px;}
.ya3{bottom:372.355500px;}
.y126{bottom:377.113500px;}
.ya0{bottom:378.409500px;}
.y10a{bottom:385.800000px;}
.y4d{bottom:388.165500px;}
.y63{bottom:388.204500px;}
.y143{bottom:388.669500px;}
.ye2{bottom:389.734500px;}
.y1f{bottom:390.012000px;}
.ya2{bottom:390.288000px;}
.y125{bottom:395.047500px;}
.yc1{bottom:396.687000px;}
.y9f{bottom:398.733000px;}
.ybb{bottom:404.229000px;}
.y120{bottom:405.112500px;}
.ye1{bottom:407.667000px;}
.y1e{bottom:407.944500px;}
.y142{bottom:408.993000px;}
.yc0{bottom:414.621000px;}
.y109{bottom:416.286000px;}
.y4c{bottom:418.650000px;}
.y9e{bottom:419.056500px;}
.y62{bottom:419.097000px;}
.y11f{bottom:423.045000px;}
.yba{bottom:424.552500px;}
.ye0{bottom:425.599500px;}
.y1d{bottom:425.877000px;}
.y141{bottom:429.318000px;}
.ybf{bottom:432.553500px;}
.y108{bottom:436.609500px;}
.y9d{bottom:439.380000px;}
.y11e{bottom:440.977500px;}
.y1c{bottom:443.809500px;}
.yb9{bottom:444.876000px;}
.y4b{bottom:449.136000px;}
.y140{bottom:449.641500px;}
.y137{bottom:450.214500px;}
.ybe{bottom:450.486000px;}
.y107{bottom:456.934500px;}
.y11d{bottom:458.911500px;}
.y9c{bottom:459.705000px;}
.y1b{bottom:461.743500px;}
.y61{bottom:462.318000px;}
.yb8{bottom:465.201000px;}
.y136{bottom:468.147000px;}
.y13f{bottom:469.965000px;}
.y11c{bottom:476.844000px;}
.y106{bottom:477.258000px;}
.y4a{bottom:479.622000px;}
.y1a{bottom:479.676000px;}
.y9b{bottom:480.028500px;}
.y60{bottom:482.641500px;}
.yb7{bottom:485.524500px;}
.y160{bottom:488.428500px;}
.y13e{bottom:490.288500px;}
.y11b{bottom:494.776500px;}
.y105{bottom:497.581500px;}
.y19{bottom:497.608500px;}
.y5f{bottom:502.966500px;}
.yb6{bottom:505.848000px;}
.y15f{bottom:508.752000px;}
.y49{bottom:510.108000px;}
.y9a{bottom:510.514500px;}
.y18{bottom:515.541000px;}
.y104{bottom:517.905000px;}
.y5e{bottom:523.290000px;}
.y15e{bottom:529.077000px;}
.y48{bottom:530.431500px;}
.y99{bottom:530.838000px;}
.y17{bottom:533.473500px;}
.y103{bottom:538.228500px;}
.y5d{bottom:543.613500px;}
.y13d{bottom:544.087500px;}
.y98{bottom:551.161500px;}
.y16{bottom:551.406000px;}
.y102{bottom:558.553500px;}
.y15d{bottom:559.561500px;}
.yb5{bottom:559.645500px;}
.y47{bottom:560.917500px;}
.y13c{bottom:562.020000px;}
.y5c{bottom:563.937000px;}
.y15{bottom:569.340000px;}
.y97{bottom:571.485000px;}
.yb4{bottom:577.579500px;}
.y101{bottom:578.877000px;}
.y15c{bottom:579.886500px;}
.y13b{bottom:579.952500px;}
.y46{bottom:581.241000px;}
.y14{bottom:587.272500px;}
.y96{bottom:591.808500px;}
.y13a{bottom:597.885000px;}
.y100{bottom:599.200500px;}
.y15b{bottom:600.210000px;}
.y45{bottom:601.564500px;}
.y13{bottom:605.205000px;}
.y95{bottom:612.133500px;}
.y5b{bottom:617.736000px;}
.yff{bottom:619.524000px;}
.y44{bottom:621.888000px;}
.y12{bottom:623.137500px;}
.y15a{bottom:630.696000px;}
.yf7{bottom:631.509000px;}
.y94{bottom:632.457000px;}
.y5a{bottom:635.668500px;}
.yd2{bottom:639.789000px;}
.yfe{bottom:639.847500px;}
.y11{bottom:641.070000px;}
.y43{bottom:642.213000px;}
.ydf{bottom:642.618000px;}
.y14b{bottom:645.111000px;}
.y114{bottom:646.590000px;}
.y159{bottom:651.019500px;}
.yf6{bottom:651.832500px;}
.y93{bottom:652.780500px;}
.yd1{bottom:657.721500px;}
.yaa{bottom:658.251000px;}
.y10{bottom:659.002500px;}
.yde{bottom:662.943000px;}
.y14a{bottom:663.043500px;}
.y113{bottom:664.522500px;}
.yfd{bottom:670.740000px;}
.yf5{bottom:672.156000px;}
.y42{bottom:672.697500px;}
.y92{bottom:673.104000px;}
.yd0{bottom:675.654000px;}
.ya9{bottom:676.183500px;}
.yf{bottom:676.936500px;}
.y149{bottom:680.976000px;}
.y158{bottom:681.505500px;}
.y112{bottom:682.455000px;}
.ydd{bottom:683.266500px;}
.y12d{bottom:690.039000px;}
.ye8{bottom:692.104500px;}
.yf4{bottom:692.481000px;}
.y41{bottom:693.022500px;}
.y91{bottom:693.427500px;}
.ycf{bottom:693.586500px;}
.ya8{bottom:694.116000px;}
.ye{bottom:694.869000px;}
.y148{bottom:698.910000px;}
.y111{bottom:700.387500px;}
.y157{bottom:701.829000px;}
.ydc{bottom:703.590000px;}
.y12c{bottom:707.973000px;}
.ye7{bottom:710.037000px;}
.yce{bottom:711.519000px;}
.ya7{bottom:712.048500px;}
.yd{bottom:712.801500px;}
.yf3{bottom:712.804500px;}
.y40{bottom:713.346000px;}
.y90{bottom:713.752500px;}
.y147{bottom:716.842500px;}
.ybd{bottom:718.228500px;}
.y139{bottom:718.893000px;}
.yfc{bottom:722.446500px;}
.ydb{bottom:723.913500px;}
.y12b{bottom:725.905500px;}
.ye6{bottom:727.969500px;}
.ycd{bottom:729.451500px;}
.ya6{bottom:729.981000px;}
.yc{bottom:730.734000px;}
.y156{bottom:732.315000px;}
.yf2{bottom:733.128000px;}
.y3f{bottom:733.669500px;}
.y146{bottom:734.775000px;}
.ybc{bottom:736.161000px;}
.y138{bottom:736.825500px;}
.yfb{bottom:740.379000px;}
.y12a{bottom:743.838000px;}
.y8f{bottom:744.237000px;}
.ye5{bottom:745.903500px;}
.ya5{bottom:747.915000px;}
.yb{bottom:748.666500px;}
.y155{bottom:752.638500px;}
.yf1{bottom:753.451500px;}
.y3e{bottom:753.993000px;}
.y124{bottom:754.399500px;}
.y129{bottom:761.770500px;}
.y81{bottom:763.614000px;}
.ye4{bottom:763.836000px;}
.y8e{bottom:764.562000px;}
.ya{bottom:766.599000px;}
.y3d{bottom:774.316500px;}
.y128{bottom:779.703000px;}
.ye3{bottom:781.768500px;}
.y154{bottom:783.124500px;}
.y80{bottom:783.937500px;}
.y8d{bottom:784.885500px;}
.y3c{bottom:794.641500px;}
.y9{bottom:795.067500px;}
.y153{bottom:803.448000px;}
.y7f{bottom:804.261000px;}
.y8c{bottom:805.209000px;}
.yf0{bottom:814.423500px;}
.y3b{bottom:814.965000px;}
.y123{bottom:815.371500px;}
.y7e{bottom:824.584500px;}
.y8b{bottom:825.532500px;}
.y3a{bottom:835.288500px;}
.y8{bottom:837.546000px;}
.y152{bottom:839.976000px;}
.y7d{bottom:844.909500px;}
.y8a{bottom:845.856000px;}
.y135{bottom:855.070500px;}
.y39{bottom:855.612000px;}
.yda{bottom:856.425000px;}
.y78{bottom:865.233000px;}
.y122{bottom:866.181000px;}
.yef{bottom:875.394000px;}
.y89{bottom:876.748500px;}
.y7{bottom:884.395500px;}
.y77{bottom:885.556500px;}
.y38{bottom:886.504500px;}
.y134{bottom:895.719000px;}
.yd9{bottom:900.244500px;}
.y76{bottom:905.880000px;}
.y6{bottom:907.752000px;}
.y133{bottom:916.042500px;}
.y121{bottom:917.395500px;}
.y31{bottom:920.409000px;}
.y88{bottom:920.568000px;}
.y75{bottom:926.203500px;}
.y37{bottom:929.725500px;}
.yee{bottom:936.366000px;}
.y5{bottom:936.625500px;}
.y30{bottom:940.732500px;}
.y87{bottom:940.891500px;}
.y74{bottom:946.528500px;}
.y36{bottom:950.049000px;}
.yb3{bottom:956.689500px;}
.y3{bottom:956.949000px;}
.y2f{bottom:961.056000px;}
.y86{bottom:961.215000px;}
.y4{bottom:962.887500px;}
.y59{bottom:966.375000px;}
.y73{bottom:966.852000px;}
.y35{bottom:970.372500px;}
.yb2{bottom:977.013000px;}
.y2e{bottom:981.379500px;}
.y85{bottom:981.538500px;}
.y72{bottom:987.175500px;}
.y34{bottom:990.697500px;}
.yb1{bottom:997.338000px;}
.y2{bottom:1001.818500px;}
.y84{bottom:1001.863500px;}
.y71{bottom:1007.499000px;}
.y33{bottom:1011.021000px;}
.y57{bottom:1013.349000px;}
.y58{bottom:1013.686500px;}
.yb0{bottom:1017.661500px;}
.y2d{bottom:1018.068000px;}
.y83{bottom:1022.187000px;}
.y70{bottom:1027.822500px;}
.y1{bottom:1034.694000px;}
.y2c{bottom:1038.391500px;}
.y32{bottom:1041.912000px;}
.y82{bottom:1042.510500px;}
.y6f{bottom:1048.147500px;}
.y2b{bottom:1058.715000px;}
.y2a{bottom:1079.038500px;}
.h5{height:27.783619px;}
.h3{height:31.800699px;}
.hd{height:44.795493px;}
.h8{height:44.831700px;}
.hb{height:46.145493px;}
.h2{height:49.090950px;}
.h6{height:49.473619px;}
.h7{height:50.498765px;}
.ha{height:53.798400px;}
.h4{height:55.548699px;}
.h9{height:64.557900px;}
.h1{height:77.469300px;}
.hc{height:93.370950px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:95.668500px;}
.x3{left:97.582500px;}
.xe{left:106.959000px;}
.x1{left:111.027000px;}
.x23{left:113.946000px;}
.x16{left:122.175000px;}
.x24{left:134.856000px;}
.x12{left:138.492000px;}
.xf{left:150.763500px;}
.x13{left:163.038000px;}
.x2{left:210.949500px;}
.x4{left:237.355500px;}
.x5{left:244.453500px;}
.x19{left:328.522500px;}
.x1b{left:346.704000px;}
.xd{left:376.932000px;}
.x6{left:380.868000px;}
.x10{left:384.106500px;}
.x7{left:387.966000px;}
.x11{left:426.354000px;}
.x1f{left:437.124000px;}
.x1e{left:450.817500px;}
.x14{left:454.909500px;}
.x20{left:470.587500px;}
.x8{left:478.041000px;}
.x1a{left:479.581500px;}
.x9{left:485.139000px;}
.x17{left:505.833000px;}
.x18{left:521.119500px;}
.x1c{left:528.912000px;}
.x1d{left:563.571000px;}
.x21{left:614.923500px;}
.xa{left:649.036500px;}
.xb{left:656.134500px;}
.x22{left:792.499500px;}
.xc{left:813.636000px;}
@media print{
.v7{vertical-align:-55.792000pt;}
.v9{vertical-align:-49.840000pt;}
.v8{vertical-align:-41.109333pt;}
.v2{vertical-align:-19.285333pt;}
.va{vertical-align:-13.968000pt;}
.v4{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.285333pt;}
.v1{vertical-align:21.109333pt;}
.v6{vertical-align:30.629333pt;}
.v5{vertical-align:39.360000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.002397pt;}
.ls9{letter-spacing:0.002405pt;}
.lsc{letter-spacing:0.003370pt;}
.ls10{letter-spacing:0.003861pt;}
.ls0{letter-spacing:2.652911pt;}
.ls8{letter-spacing:2.657146pt;}
.ls1{letter-spacing:2.658245pt;}
.ls11{letter-spacing:6.370405pt;}
.lsd{letter-spacing:12.353146pt;}
.lsf{letter-spacing:14.801323pt;}
.lse{letter-spacing:14.806656pt;}
.lsb{letter-spacing:16.159477pt;}
.ls5{letter-spacing:19.395861pt;}
.ls6{letter-spacing:19.396347pt;}
.lsa{letter-spacing:20.724323pt;}
.ls12{letter-spacing:22.045258pt;}
.ls13{letter-spacing:26.991976pt;}
.ls4{letter-spacing:29.087976pt;}
.ls2{letter-spacing:29.090933pt;}
.ws1f{word-spacing:-23.910333pt;}
.wsaf{word-spacing:-19.925333pt;}
.ws27{word-spacing:-17.313622pt;}
.ws3e{word-spacing:-16.162923pt;}
.ws5{word-spacing:-14.760588pt;}
.ws29{word-spacing:-12.968000pt;}
.ws28{word-spacing:-2.987802pt;}
.wsaa{word-spacing:-1.617456pt;}
.ws63{word-spacing:-1.035637pt;}
.ws93{word-spacing:-0.453819pt;}
.ws3d{word-spacing:-0.058182pt;}
.ws41{word-spacing:-0.053134pt;}
.ws3f{word-spacing:-0.015599pt;}
.ws25{word-spacing:0.000000pt;}
.ws40{word-spacing:0.011636pt;}
.ws90{word-spacing:0.116895pt;}
.ws8f{word-spacing:0.138148pt;}
.ws58{word-spacing:0.186182pt;}
.ws5a{word-spacing:0.244364pt;}
.ws12{word-spacing:0.435698pt;}
.ws11{word-spacing:0.541965pt;}
.ws73{word-spacing:0.882022pt;}
.ws6c{word-spacing:0.935156pt;}
.ws5d{word-spacing:1.024001pt;}
.ws76{word-spacing:1.117092pt;}
.ws54{word-spacing:1.285840pt;}
.wsb2{word-spacing:1.291637pt;}
.ws9{word-spacing:1.338973pt;}
.ws61{word-spacing:1.349819pt;}
.ws91{word-spacing:1.466183pt;}
.ws53{word-spacing:1.466495pt;}
.ws57{word-spacing:1.524365pt;}
.ws5c{word-spacing:1.547638pt;}
.ws4d{word-spacing:1.582547pt;}
.ws8b{word-spacing:1.698911pt;}
.ws8{word-spacing:1.710911pt;}
.ws4b{word-spacing:1.757092pt;}
.ws45{word-spacing:1.815274pt;}
.wsb{word-spacing:1.923446pt;}
.ws99{word-spacing:1.931638pt;}
.wsa6{word-spacing:2.082848pt;}
.ws3b{word-spacing:2.222547pt;}
.ws59{word-spacing:2.338911pt;}
.wsa5{word-spacing:2.369770pt;}
.ws31{word-spacing:2.397093pt;}
.ws6e{word-spacing:2.401651pt;}
.ws18{word-spacing:2.454785pt;}
.ws51{word-spacing:2.455275pt;}
.ws95{word-spacing:2.614186pt;}
.ws7{word-spacing:2.667320pt;}
.ws35{word-spacing:2.688002pt;}
.ws17{word-spacing:2.720454pt;}
.ws5b{word-spacing:2.746184pt;}
.ws55{word-spacing:2.773588pt;}
.ws64{word-spacing:2.804366pt;}
.ws80{word-spacing:2.826722pt;}
.ws50{word-spacing:2.862548pt;}
.ws6d{word-spacing:2.879856pt;}
.ws8d{word-spacing:2.901109pt;}
.ws2d{word-spacing:2.920730pt;}
.ws4{word-spacing:2.932989pt;}
.ws32{word-spacing:2.978912pt;}
.ws16{word-spacing:2.986123pt;}
.ws7e{word-spacing:3.007377pt;}
.ws33{word-spacing:3.037093pt;}
.ws19{word-spacing:3.092391pt;}
.ws2c{word-spacing:3.095275pt;}
.ws1d{word-spacing:3.145525pt;}
.ws44{word-spacing:3.153457pt;}
.ws77{word-spacing:3.166778pt;}
.wsc{word-spacing:3.198659pt;}
.ws2f{word-spacing:3.211639pt;}
.ws6a{word-spacing:3.219912pt;}
.ws87{word-spacing:3.234912pt;}
.ws1e{word-spacing:3.251793pt;}
.ws3c{word-spacing:3.269821pt;}
.ws9b{word-spacing:3.273046pt;}
.ws88{word-spacing:3.293094pt;}
.wsa{word-spacing:3.304927pt;}
.wsa0{word-spacing:3.326180pt;}
.ws4a{word-spacing:3.328003pt;}
.ws9e{word-spacing:3.351276pt;}
.ws43{word-spacing:3.379314pt;}
.ws36{word-spacing:3.386185pt;}
.ws5f{word-spacing:3.409457pt;}
.ws6b{word-spacing:3.432448pt;}
.ws34{word-spacing:3.444367pt;}
.ws9c{word-spacing:3.467639pt;}
.ws2e{word-spacing:3.502548pt;}
.ws37{word-spacing:3.560730pt;}
.ws7d{word-spacing:3.591849pt;}
.ws30{word-spacing:3.618912pt;}
.ws84{word-spacing:3.642185pt;}
.ws6f{word-spacing:3.644983pt;}
.ws8c{word-spacing:3.677094pt;}
.ws8e{word-spacing:3.698117pt;}
.ws3{word-spacing:3.700367pt;}
.ws69{word-spacing:3.751251pt;}
.ws62{word-spacing:3.793458pt;}
.ws74{word-spacing:3.804385pt;}
.ws1{word-spacing:3.816730pt;}
.ws2{word-spacing:3.874912pt;}
.ws86{word-spacing:3.933094pt;}
.ws8a{word-spacing:3.968003pt;}
.ws2b{word-spacing:3.985067pt;}
.wsac{word-spacing:4.048801pt;}
.ws60{word-spacing:4.049458pt;}
.wsb0{word-spacing:4.084367pt;}
.ws5e{word-spacing:4.107640pt;}
.ws48{word-spacing:4.142549pt;}
.wsa8{word-spacing:4.200731pt;}
.ws89{word-spacing:4.224004pt;}
.ws79{word-spacing:4.261336pt;}
.ws68{word-spacing:4.433458pt;}
.wsb1{word-spacing:4.491640pt;}
.ws71{word-spacing:4.549822pt;}
.wsae{word-spacing:4.608004pt;}
.wsab{word-spacing:4.654527pt;}
.wsad{word-spacing:4.666186pt;}
.ws2a{word-spacing:4.782067pt;}
.ws7f{word-spacing:4.898943pt;}
.ws66{word-spacing:4.957095pt;}
.ws15{word-spacing:5.005210pt;}
.ws1a{word-spacing:5.324013pt;}
.ws4c{word-spacing:5.422550pt;}
.wsa1{word-spacing:5.504669pt;}
.ws7b{word-spacing:5.538914pt;}
.ws9f{word-spacing:5.562186pt;}
.ws98{word-spacing:5.597096pt;}
.ws38{word-spacing:5.655277pt;}
.ws67{word-spacing:5.713459pt;}
.ws0{word-spacing:5.738467pt;}
.wsa3{word-spacing:5.749084pt;}
.ws97{word-spacing:5.771641pt;}
.ws83{word-spacing:5.908486pt;}
.wsa9{word-spacing:5.946187pt;}
.wsa4{word-spacing:5.961620pt;}
.wsa7{word-spacing:6.120732pt;}
.ws52{word-spacing:6.142275pt;}
.ws49{word-spacing:6.178914pt;}
.ws72{word-spacing:6.237096pt;}
.ws4e{word-spacing:6.295278pt;}
.ws4f{word-spacing:6.353460pt;}
.ws78{word-spacing:6.514212pt;}
.ws82{word-spacing:6.833015pt;}
.ws1c{word-spacing:6.924714pt;}
.ws92{word-spacing:6.935279pt;}
.ws46{word-spacing:7.168006pt;}
.ws81{word-spacing:7.311220pt;}
.ws96{word-spacing:7.342552pt;}
.ws7c{word-spacing:7.691643pt;}
.wsf{word-spacing:7.768171pt;}
.ws65{word-spacing:7.808007pt;}
.ws94{word-spacing:7.842559pt;}
.ws3a{word-spacing:7.866188pt;}
.ws75{word-spacing:8.157098pt;}
.ws10{word-spacing:8.299510pt;}
.ws7a{word-spacing:8.389825pt;}
.ws85{word-spacing:8.936735pt;}
.ws1b{word-spacing:9.181376pt;}
.ws56{word-spacing:9.786190pt;}
.ws9a{word-spacing:9.844372pt;}
.ws9d{word-spacing:10.158554pt;}
.ws42{word-spacing:10.764921pt;}
.ws14{word-spacing:10.956165pt;}
.ws20{word-spacing:11.219165pt;}
.ws39{word-spacing:11.473464pt;}
.ws26{word-spacing:11.800984pt;}
.ws24{word-spacing:12.928011pt;}
.ws21{word-spacing:15.470378pt;}
.ws13{word-spacing:15.552198pt;}
.ws22{word-spacing:15.593358pt;}
.wsa2{word-spacing:15.639262pt;}
.wse{word-spacing:16.572193pt;}
.ws23{word-spacing:17.151946pt;}
.wsd{word-spacing:19.234460pt;}
.ws6{word-spacing:20.722347pt;}
.ws70{word-spacing:20.770926pt;}
.ws47{word-spacing:24.320020pt;}
._23{margin-left:-7.332270pt;}
._5{margin-left:-5.585459pt;}
._6{margin-left:-4.410111pt;}
._1{margin-left:-2.846279pt;}
._3{margin-left:-1.861820pt;}
._9{margin-left:-0.906189pt;}
._7{width:0.907545pt;}
._4{width:1.920002pt;}
._2{width:2.846279pt;}
._1f{width:3.840003pt;}
._0{width:5.692559pt;}
._b{width:7.593874pt;}
._24{width:14.894662pt;}
._20{width:16.581832pt;}
._17{width:17.512742pt;}
._12{width:18.501834pt;}
._e{width:19.607289pt;}
._d{width:21.092011pt;}
._a{width:22.793650pt;}
._8{width:24.096913pt;}
._16{width:25.479026pt;}
._18{width:26.526299pt;}
._1d{width:27.461841pt;}
._1c{width:28.634885pt;}
._19{width:29.789116pt;}
._10{width:31.965210pt;}
._1e{width:33.333578pt;}
._27{width:34.336311pt;}
._13{width:35.374575pt;}
._26{width:36.421849pt;}
._25{width:37.875040pt;}
._22{width:39.637865pt;}
._c{width:40.596409pt;}
._21{width:42.635857pt;}
._1b{width:49.998969pt;}
._11{width:64.872781pt;}
._14{width:66.026799pt;}
._15{width:69.808620pt;}
._1a{width:72.458090pt;}
._f{width:95.990460pt;}
.fs3{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs6{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:83.513333pt;}
.y28{bottom:131.482667pt;}
.y56{bottom:134.632000pt;}
.ycc{bottom:135.996000pt;}
.yd8{bottom:137.172000pt;}
.y6e{bottom:137.316000pt;}
.y151{bottom:141.882667pt;}
.y11a{bottom:145.372000pt;}
.y7c{bottom:146.728000pt;}
.y27{bottom:149.548000pt;}
.y55{bottom:152.697333pt;}
.yd7{bottom:153.112000pt;}
.ycb{bottom:154.061333pt;}
.y6d{bottom:155.382667pt;}
.y150{bottom:157.822667pt;}
.y119{bottom:161.312000pt;}
.y7b{bottom:162.668000pt;}
.y26{bottom:167.613333pt;}
.yd6{bottom:169.053333pt;}
.y54{bottom:170.764000pt;}
.yca{bottom:172.126667pt;}
.y6c{bottom:173.448000pt;}
.y14f{bottom:173.762667pt;}
.yaf{bottom:175.200000pt;}
.y118{bottom:177.252000pt;}
.y7a{bottom:178.608000pt;}
.yd5{bottom:184.993333pt;}
.y25{bottom:185.680000pt;}
.y53{bottom:188.829333pt;}
.y14e{bottom:189.704000pt;}
.yc9{bottom:190.192000pt;}
.yae{bottom:191.140000pt;}
.y6b{bottom:191.513333pt;}
.y117{bottom:193.193333pt;}
.y79{bottom:194.548000pt;}
.yfa{bottom:194.836000pt;}
.yd4{bottom:200.933333pt;}
.y14d{bottom:205.644000pt;}
.y52{bottom:206.894667pt;}
.yad{bottom:207.080000pt;}
.yc8{bottom:208.258667pt;}
.y116{bottom:209.133333pt;}
.yf9{bottom:210.776000pt;}
.yd3{bottom:216.873333pt;}
.y24{bottom:218.290667pt;}
.y6a{bottom:218.612000pt;}
.y14c{bottom:221.584000pt;}
.yac{bottom:223.021333pt;}
.y51{bottom:224.960000pt;}
.y115{bottom:225.073333pt;}
.yc7{bottom:226.324000pt;}
.yf8{bottom:226.716000pt;}
.yed{bottom:228.366667pt;}
.y110{bottom:234.540000pt;}
.y69{bottom:236.677333pt;}
.yab{bottom:238.961333pt;}
.yec{bottom:244.306667pt;}
.yc6{bottom:244.389333pt;}
.y132{bottom:247.606667pt;}
.y23{bottom:250.901333pt;}
.y50{bottom:252.420000pt;}
.y10f{bottom:252.605333pt;}
.y68{bottom:254.742667pt;}
.yeb{bottom:260.246667pt;}
.yc5{bottom:262.454667pt;}
.y131{bottom:263.546667pt;}
.y10e{bottom:270.672000pt;}
.y67{bottom:272.808000pt;}
.yea{bottom:276.188000pt;}
.y130{bottom:279.486667pt;}
.yc4{bottom:280.520000pt;}
.y10d{bottom:288.737333pt;}
.y4f{bottom:290.838667pt;}
.y66{bottom:290.874667pt;}
.ye9{bottom:292.128000pt;}
.y12f{bottom:295.428000pt;}
.yc3{bottom:298.586667pt;}
.y22{bottom:298.856000pt;}
.y10c{bottom:306.802667pt;}
.y65{bottom:308.940000pt;}
.y145{bottom:309.353333pt;}
.y12e{bottom:311.368000pt;}
.y21{bottom:314.797333pt;}
.ya4{bottom:315.042667pt;}
.yc2{bottom:316.652000pt;}
.y4e{bottom:317.937333pt;}
.ya1{bottom:318.298667pt;}
.y127{bottom:319.272000pt;}
.y10b{bottom:324.868000pt;}
.y64{bottom:327.005333pt;}
.y144{bottom:327.418667pt;}
.y20{bottom:330.737333pt;}
.ya3{bottom:330.982667pt;}
.y126{bottom:335.212000pt;}
.ya0{bottom:336.364000pt;}
.y10a{bottom:342.933333pt;}
.y4d{bottom:345.036000pt;}
.y63{bottom:345.070667pt;}
.y143{bottom:345.484000pt;}
.ye2{bottom:346.430667pt;}
.y1f{bottom:346.677333pt;}
.ya2{bottom:346.922667pt;}
.y125{bottom:351.153333pt;}
.yc1{bottom:352.610667pt;}
.y9f{bottom:354.429333pt;}
.ybb{bottom:359.314667pt;}
.y120{bottom:360.100000pt;}
.ye1{bottom:362.370667pt;}
.y1e{bottom:362.617333pt;}
.y142{bottom:363.549333pt;}
.yc0{bottom:368.552000pt;}
.y109{bottom:370.032000pt;}
.y4c{bottom:372.133333pt;}
.y9e{bottom:372.494667pt;}
.y62{bottom:372.530667pt;}
.y11f{bottom:376.040000pt;}
.yba{bottom:377.380000pt;}
.ye0{bottom:378.310667pt;}
.y1d{bottom:378.557333pt;}
.y141{bottom:381.616000pt;}
.ybf{bottom:384.492000pt;}
.y108{bottom:388.097333pt;}
.y9d{bottom:390.560000pt;}
.y11e{bottom:391.980000pt;}
.y1c{bottom:394.497333pt;}
.yb9{bottom:395.445333pt;}
.y4b{bottom:399.232000pt;}
.y140{bottom:399.681333pt;}
.y137{bottom:400.190667pt;}
.ybe{bottom:400.432000pt;}
.y107{bottom:406.164000pt;}
.y11d{bottom:407.921333pt;}
.y9c{bottom:408.626667pt;}
.y1b{bottom:410.438667pt;}
.y61{bottom:410.949333pt;}
.yb8{bottom:413.512000pt;}
.y136{bottom:416.130667pt;}
.y13f{bottom:417.746667pt;}
.y11c{bottom:423.861333pt;}
.y106{bottom:424.229333pt;}
.y4a{bottom:426.330667pt;}
.y1a{bottom:426.378667pt;}
.y9b{bottom:426.692000pt;}
.y60{bottom:429.014667pt;}
.yb7{bottom:431.577333pt;}
.y160{bottom:434.158667pt;}
.y13e{bottom:435.812000pt;}
.y11b{bottom:439.801333pt;}
.y105{bottom:442.294667pt;}
.y19{bottom:442.318667pt;}
.y5f{bottom:447.081333pt;}
.yb6{bottom:449.642667pt;}
.y15f{bottom:452.224000pt;}
.y49{bottom:453.429333pt;}
.y9a{bottom:453.790667pt;}
.y18{bottom:458.258667pt;}
.y104{bottom:460.360000pt;}
.y5e{bottom:465.146667pt;}
.y15e{bottom:470.290667pt;}
.y48{bottom:471.494667pt;}
.y99{bottom:471.856000pt;}
.y17{bottom:474.198667pt;}
.y103{bottom:478.425333pt;}
.y5d{bottom:483.212000pt;}
.y13d{bottom:483.633333pt;}
.y98{bottom:489.921333pt;}
.y16{bottom:490.138667pt;}
.y102{bottom:496.492000pt;}
.y15d{bottom:497.388000pt;}
.yb5{bottom:497.462667pt;}
.y47{bottom:498.593333pt;}
.y13c{bottom:499.573333pt;}
.y5c{bottom:501.277333pt;}
.y15{bottom:506.080000pt;}
.y97{bottom:507.986667pt;}
.yb4{bottom:513.404000pt;}
.y101{bottom:514.557333pt;}
.y15c{bottom:515.454667pt;}
.y13b{bottom:515.513333pt;}
.y46{bottom:516.658667pt;}
.y14{bottom:522.020000pt;}
.y96{bottom:526.052000pt;}
.y13a{bottom:531.453333pt;}
.y100{bottom:532.622667pt;}
.y15b{bottom:533.520000pt;}
.y45{bottom:534.724000pt;}
.y13{bottom:537.960000pt;}
.y95{bottom:544.118667pt;}
.y5b{bottom:549.098667pt;}
.yff{bottom:550.688000pt;}
.y44{bottom:552.789333pt;}
.y12{bottom:553.900000pt;}
.y15a{bottom:560.618667pt;}
.yf7{bottom:561.341333pt;}
.y94{bottom:562.184000pt;}
.y5a{bottom:565.038667pt;}
.yd2{bottom:568.701333pt;}
.yfe{bottom:568.753333pt;}
.y11{bottom:569.840000pt;}
.y43{bottom:570.856000pt;}
.ydf{bottom:571.216000pt;}
.y14b{bottom:573.432000pt;}
.y114{bottom:574.746667pt;}
.y159{bottom:578.684000pt;}
.yf6{bottom:579.406667pt;}
.y93{bottom:580.249333pt;}
.yd1{bottom:584.641333pt;}
.yaa{bottom:585.112000pt;}
.y10{bottom:585.780000pt;}
.yde{bottom:589.282667pt;}
.y14a{bottom:589.372000pt;}
.y113{bottom:590.686667pt;}
.yfd{bottom:596.213333pt;}
.yf5{bottom:597.472000pt;}
.y42{bottom:597.953333pt;}
.y92{bottom:598.314667pt;}
.yd0{bottom:600.581333pt;}
.ya9{bottom:601.052000pt;}
.yf{bottom:601.721333pt;}
.y149{bottom:605.312000pt;}
.y158{bottom:605.782667pt;}
.y112{bottom:606.626667pt;}
.ydd{bottom:607.348000pt;}
.y12d{bottom:613.368000pt;}
.ye8{bottom:615.204000pt;}
.yf4{bottom:615.538667pt;}
.y41{bottom:616.020000pt;}
.y91{bottom:616.380000pt;}
.ycf{bottom:616.521333pt;}
.ya8{bottom:616.992000pt;}
.ye{bottom:617.661333pt;}
.y148{bottom:621.253333pt;}
.y111{bottom:622.566667pt;}
.y157{bottom:623.848000pt;}
.ydc{bottom:625.413333pt;}
.y12c{bottom:629.309333pt;}
.ye7{bottom:631.144000pt;}
.yce{bottom:632.461333pt;}
.ya7{bottom:632.932000pt;}
.yd{bottom:633.601333pt;}
.yf3{bottom:633.604000pt;}
.y40{bottom:634.085333pt;}
.y90{bottom:634.446667pt;}
.y147{bottom:637.193333pt;}
.ybd{bottom:638.425333pt;}
.y139{bottom:639.016000pt;}
.yfc{bottom:642.174667pt;}
.ydb{bottom:643.478667pt;}
.y12b{bottom:645.249333pt;}
.ye6{bottom:647.084000pt;}
.ycd{bottom:648.401333pt;}
.ya6{bottom:648.872000pt;}
.yc{bottom:649.541333pt;}
.y156{bottom:650.946667pt;}
.yf2{bottom:651.669333pt;}
.y3f{bottom:652.150667pt;}
.y146{bottom:653.133333pt;}
.ybc{bottom:654.365333pt;}
.y138{bottom:654.956000pt;}
.yfb{bottom:658.114667pt;}
.y12a{bottom:661.189333pt;}
.y8f{bottom:661.544000pt;}
.ye5{bottom:663.025333pt;}
.ya5{bottom:664.813333pt;}
.yb{bottom:665.481333pt;}
.y155{bottom:669.012000pt;}
.yf1{bottom:669.734667pt;}
.y3e{bottom:670.216000pt;}
.y124{bottom:670.577333pt;}
.y129{bottom:677.129333pt;}
.y81{bottom:678.768000pt;}
.ye4{bottom:678.965333pt;}
.y8e{bottom:679.610667pt;}
.ya{bottom:681.421333pt;}
.y3d{bottom:688.281333pt;}
.y128{bottom:693.069333pt;}
.ye3{bottom:694.905333pt;}
.y154{bottom:696.110667pt;}
.y80{bottom:696.833333pt;}
.y8d{bottom:697.676000pt;}
.y3c{bottom:706.348000pt;}
.y9{bottom:706.726667pt;}
.y153{bottom:714.176000pt;}
.y7f{bottom:714.898667pt;}
.y8c{bottom:715.741333pt;}
.yf0{bottom:723.932000pt;}
.y3b{bottom:724.413333pt;}
.y123{bottom:724.774667pt;}
.y7e{bottom:732.964000pt;}
.y8b{bottom:733.806667pt;}
.y3a{bottom:742.478667pt;}
.y8{bottom:744.485333pt;}
.y152{bottom:746.645333pt;}
.y7d{bottom:751.030667pt;}
.y8a{bottom:751.872000pt;}
.y135{bottom:760.062667pt;}
.y39{bottom:760.544000pt;}
.yda{bottom:761.266667pt;}
.y78{bottom:769.096000pt;}
.y122{bottom:769.938667pt;}
.yef{bottom:778.128000pt;}
.y89{bottom:779.332000pt;}
.y7{bottom:786.129333pt;}
.y77{bottom:787.161333pt;}
.y38{bottom:788.004000pt;}
.y134{bottom:796.194667pt;}
.yd9{bottom:800.217333pt;}
.y76{bottom:805.226667pt;}
.y6{bottom:806.890667pt;}
.y133{bottom:814.260000pt;}
.y121{bottom:815.462667pt;}
.y31{bottom:818.141333pt;}
.y88{bottom:818.282667pt;}
.y75{bottom:823.292000pt;}
.y37{bottom:826.422667pt;}
.yee{bottom:832.325333pt;}
.y5{bottom:832.556000pt;}
.y30{bottom:836.206667pt;}
.y87{bottom:836.348000pt;}
.y74{bottom:841.358667pt;}
.y36{bottom:844.488000pt;}
.yb3{bottom:850.390667pt;}
.y3{bottom:850.621333pt;}
.y2f{bottom:854.272000pt;}
.y86{bottom:854.413333pt;}
.y4{bottom:855.900000pt;}
.y59{bottom:859.000000pt;}
.y73{bottom:859.424000pt;}
.y35{bottom:862.553333pt;}
.yb2{bottom:868.456000pt;}
.y2e{bottom:872.337333pt;}
.y85{bottom:872.478667pt;}
.y72{bottom:877.489333pt;}
.y34{bottom:880.620000pt;}
.yb1{bottom:886.522667pt;}
.y2{bottom:890.505333pt;}
.y84{bottom:890.545333pt;}
.y71{bottom:895.554667pt;}
.y33{bottom:898.685333pt;}
.y57{bottom:900.754667pt;}
.y58{bottom:901.054667pt;}
.yb0{bottom:904.588000pt;}
.y2d{bottom:904.949333pt;}
.y83{bottom:908.610667pt;}
.y70{bottom:913.620000pt;}
.y1{bottom:919.728000pt;}
.y2c{bottom:923.014667pt;}
.y32{bottom:926.144000pt;}
.y82{bottom:926.676000pt;}
.y6f{bottom:931.686667pt;}
.y2b{bottom:941.080000pt;}
.y2a{bottom:959.145333pt;}
.h5{height:24.696550pt;}
.h3{height:28.267288pt;}
.hd{height:39.818216pt;}
.h8{height:39.850400pt;}
.hb{height:41.018216pt;}
.h2{height:43.636400pt;}
.h6{height:43.976550pt;}
.h7{height:44.887791pt;}
.ha{height:47.820800pt;}
.h4{height:49.376621pt;}
.h9{height:57.384800pt;}
.h1{height:68.861600pt;}
.hc{height:82.996400pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:85.038667pt;}
.x3{left:86.740000pt;}
.xe{left:95.074667pt;}
.x1{left:98.690667pt;}
.x23{left:101.285333pt;}
.x16{left:108.600000pt;}
.x24{left:119.872000pt;}
.x12{left:123.104000pt;}
.xf{left:134.012000pt;}
.x13{left:144.922667pt;}
.x2{left:187.510667pt;}
.x4{left:210.982667pt;}
.x5{left:217.292000pt;}
.x19{left:292.020000pt;}
.x1b{left:308.181333pt;}
.xd{left:335.050667pt;}
.x6{left:338.549333pt;}
.x10{left:341.428000pt;}
.x7{left:344.858667pt;}
.x11{left:378.981333pt;}
.x1f{left:388.554667pt;}
.x1e{left:400.726667pt;}
.x14{left:404.364000pt;}
.x20{left:418.300000pt;}
.x8{left:424.925333pt;}
.x1a{left:426.294667pt;}
.x9{left:431.234667pt;}
.x17{left:449.629333pt;}
.x18{left:463.217333pt;}
.x1c{left:470.144000pt;}
.x1d{left:500.952000pt;}
.x21{left:546.598667pt;}
.xa{left:576.921333pt;}
.xb{left:583.230667pt;}
.x22{left:704.444000pt;}
.xc{left:723.232000pt;}
}




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