
    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_826a344becd0f970dfcc24be.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.711000;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_e4a2a87b68f7492036e6fb2c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_80533e8eec34d7557f9fee10.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_7910bec36f663e450527024b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.890000;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_cc84f40cb64b1ff35ab10739.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.890000;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_eab3500281174e7f6e31f49e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.889000;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_a0c76337711d43326591d864.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.690000;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_07ada7d7a2d31750d22ab76f.woff2')format("woff");}.ff8{font-family:ff8;line-height:2.441000;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_690471082ebf562d613ea2b7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.618000;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_7f0aaf3c911281aa55356b8d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_b31fdf8647ebe66efa019f30.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.906000;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_ebf46f6af5f1da03af85e0b0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.858000;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;}
.m1a{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{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);}
.m1f{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);}
.m1b{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);}
.m2{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);}
.m22{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);}
.m10{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);}
.m11{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);}
.m12{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);}
.m19{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);}
.m20{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);}
.m5{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);}
.mb{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);}
.mc{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);}
.mf{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);}
.m6{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m13{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);}
.m1d{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);}
.m8{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);}
.m25{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);}
.m23{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);}
.me{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m18{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);}
.m17{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);}
.m3{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);}
.m14{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);}
.m24{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);}
.md{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);}
.m1c{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);}
.m1e{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);}
.m16{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);}
.m7{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);}
.m21{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);}
.m9{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);}
.m4{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);}
.v9{vertical-align:-68.544000px;}
.va{vertical-align:-47.454000px;}
.v11{vertical-align:-43.890000px;}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-8.964000px;}
.ve{vertical-align:-3.030000px;}
.v0{vertical-align:0.000000px;}
.v13{vertical-align:19.787884px;}
.v5{vertical-align:21.696000px;}
.v1{vertical-align:26.034000px;}
.v4{vertical-align:40.470000px;}
.vf{vertical-align:64.476000px;}
.vb{vertical-align:67.350000px;}
.v8{vertical-align:76.830000px;}
.v12{vertical-align:81.474000px;}
.vd{vertical-align:84.354000px;}
.v7{vertical-align:85.800000px;}
.vc{vertical-align:106.116000px;}
.v6{vertical-align:125.364000px;}
.v10{vertical-align:137.136000px;}
.ls2f{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.003876px;}
.lsd{letter-spacing:0.599995px;}
.ls30{letter-spacing:1.196937px;}
.ls29{letter-spacing:1.197420px;}
.ls10{letter-spacing:1.253995px;}
.ls1{letter-spacing:1.312718px;}
.ls9{letter-spacing:1.761634px;}
.ls19{letter-spacing:1.791292px;}
.ls1e{letter-spacing:1.797292px;}
.ls6{letter-spacing:2.230932px;}
.ls1c{letter-spacing:2.390880px;}
.ls13{letter-spacing:2.826017px;}
.ls7{letter-spacing:2.832017px;}
.ls1d{letter-spacing:2.987675px;}
.ls33{letter-spacing:3.612558px;}
.ls3{letter-spacing:3.617108px;}
.ls18{letter-spacing:3.824725px;}
.ls2e{letter-spacing:3.830725px;}
.ls16{letter-spacing:3.839108px;}
.ls31{letter-spacing:3.920100px;}
.ls2c{letter-spacing:4.064880px;}
.ls2a{letter-spacing:4.185900px;}
.ls8{letter-spacing:4.539902px;}
.ls0{letter-spacing:5.116175px;}
.ls14{letter-spacing:5.177995px;}
.lsf{letter-spacing:5.183995px;}
.ls2b{letter-spacing:5.377213px;}
.ls23{letter-spacing:5.979900px;}
.lse{letter-spacing:6.273900px;}
.ls27{letter-spacing:6.274804px;}
.ls17{letter-spacing:7.965891px;}
.ls2d{letter-spacing:8.009108px;}
.lsa{letter-spacing:8.368804px;}
.ls1f{letter-spacing:11.155213px;}
.ls26{letter-spacing:11.360725px;}
.lsb{letter-spacing:13.282200px;}
.ls11{letter-spacing:13.282718px;}
.ls28{letter-spacing:14.772562px;}
.lsc{letter-spacing:16.570718px;}
.ls2{letter-spacing:18.412363px;}
.ls1b{letter-spacing:18.996845px;}
.ls1a{letter-spacing:19.592725px;}
.ls15{letter-spacing:19.900718px;}
.ls4{letter-spacing:22.477185px;}
.ls24{letter-spacing:23.444725px;}
.ls20{letter-spacing:35.221128px;}
.ls5{letter-spacing:40.528718px;}
.ls21{letter-spacing:55.527900px;}
.ls22{letter-spacing:68.458804px;}
.ls25{letter-spacing:98.644718px;}
.ls12{letter-spacing:147.850804px;}
.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;}
}
.ws30{word-spacing:-61.210214px;}
.ws2c{word-spacing:-48.860413px;}
.ws22{word-spacing:-39.870325px;}
.ws24{word-spacing:-32.770786px;}
.ws19{word-spacing:-29.887800px;}
.ws2e{word-spacing:-25.896771px;}
.ws2f{word-spacing:-24.792062px;}
.ws25{word-spacing:-22.834279px;}
.ws5c{word-spacing:-19.919400px;}
.ws64{word-spacing:-19.128192px;}
.ws27{word-spacing:-18.889088px;}
.ws49{word-spacing:-18.590210px;}
.ws1e{word-spacing:-18.530435px;}
.ws18{word-spacing:-18.470659px;}
.wsa{word-spacing:-18.351109px;}
.ws43{word-spacing:-18.291332px;}
.ws34{word-spacing:-18.231558px;}
.ws45{word-spacing:-18.052230px;}
.ws1{word-spacing:-17.932798px;}
.ws33{word-spacing:-17.813126px;}
.ws21{word-spacing:-17.693576px;}
.ws3c{word-spacing:-17.633801px;}
.ws53{word-spacing:-17.454475px;}
.ws63{word-spacing:-17.275147px;}
.ws6b{word-spacing:-17.215487px;}
.ws42{word-spacing:-17.215373px;}
.wsf{word-spacing:-16.677391px;}
.ws20{word-spacing:-16.617616px;}
.ws44{word-spacing:-16.498066px;}
.ws23{word-spacing:-16.160408px;}
.ws3a{word-spacing:-16.079636px;}
.ws29{word-spacing:-16.019859px;}
.ws3f{word-spacing:-15.840533px;}
.ws57{word-spacing:-15.780757px;}
.ws4b{word-spacing:-15.720981px;}
.ws9{word-spacing:-15.601432px;}
.ws40{word-spacing:-15.541654px;}
.ws48{word-spacing:-15.481879px;}
.wsb{word-spacing:-15.422104px;}
.ws4a{word-spacing:-15.302554px;}
.wsc{word-spacing:-15.242777px;}
.ws14{word-spacing:-15.183001px;}
.ws17{word-spacing:-15.123226px;}
.ws77{word-spacing:-15.063551px;}
.ws5{word-spacing:-15.063449px;}
.wsd{word-spacing:-15.003676px;}
.ws3{word-spacing:-14.943900px;}
.ws8{word-spacing:-14.884123px;}
.ws7{word-spacing:-14.824349px;}
.ws1f{word-spacing:-14.764572px;}
.ws4{word-spacing:-14.704796px;}
.ws81{word-spacing:-14.686962px;}
.ws38{word-spacing:-14.645022px;}
.ws46{word-spacing:-14.585246px;}
.ws70{word-spacing:-14.579365px;}
.ws6e{word-spacing:-14.525568px;}
.ws3d{word-spacing:-14.465693px;}
.ws83{word-spacing:-14.364173px;}
.ws16{word-spacing:-14.346142px;}
.ws3b{word-spacing:-14.047264px;}
.ws3e{word-spacing:-13.987490px;}
.ws11{word-spacing:-13.867937px;}
.ws5f{word-spacing:-13.792622px;}
.ws15{word-spacing:-13.688612px;}
.ws71{word-spacing:-13.664794px;}
.ws55{word-spacing:-13.628837px;}
.ws4e{word-spacing:-13.625848px;}
.ws87{word-spacing:-13.611375px;}
.ws89{word-spacing:-13.610994px;}
.ws35{word-spacing:-13.569059px;}
.ws7c{word-spacing:-13.566456px;}
.ws7e{word-spacing:-13.557196px;}
.ws6a{word-spacing:-13.503398px;}
.ws80{word-spacing:-13.467443px;}
.ws68{word-spacing:-13.450353px;}
.ws6d{word-spacing:-13.449600px;}
.ws73{word-spacing:-13.449598px;}
.ws39{word-spacing:-13.449510px;}
.ws54{word-spacing:-13.389732px;}
.ws36{word-spacing:-13.329959px;}
.ws8a{word-spacing:-13.288204px;}
.ws58{word-spacing:-13.270181px;}
.ws85{word-spacing:-13.234405px;}
.ws59{word-spacing:-13.031081px;}
.ws7a{word-spacing:-12.965412px;}
.ws31{word-spacing:-12.732203px;}
.wse{word-spacing:-12.612649px;}
.ws47{word-spacing:-12.493100px;}
.ws2a{word-spacing:-12.276771px;}
.ws78{word-spacing:-12.158436px;}
.ws41{word-spacing:-12.014893px;}
.ws1d{word-spacing:-11.955149px;}
.ws7f{word-spacing:-11.943245px;}
.ws12{word-spacing:-11.716015px;}
.ws67{word-spacing:-11.297586px;}
.ws6{word-spacing:-10.879157px;}
.ws26{word-spacing:-10.400952px;}
.ws32{word-spacing:-10.226408px;}
.ws2b{word-spacing:-10.161850px;}
.ws4c{word-spacing:-9.922747px;}
.ws65{word-spacing:-9.803196px;}
.ws13{word-spacing:-9.085891px;}
.ws79{word-spacing:-8.769139px;}
.ws5b{word-spacing:-8.607686px;}
.ws56{word-spacing:-8.129479px;}
.ws5a{word-spacing:-7.950155px;}
.ws74{word-spacing:-7.800766px;}
.ws66{word-spacing:-6.993743px;}
.ws10{word-spacing:-6.933970px;}
.ws76{word-spacing:-6.294409px;}
.ws1c{word-spacing:-5.738458px;}
.ws2{word-spacing:-0.071731px;}
.ws5d{word-spacing:-0.059776px;}
.ws72{word-spacing:-0.053798px;}
.ws37{word-spacing:0.000000px;}
.ws6c{word-spacing:9.629915px;}
.ws82{word-spacing:12.158439px;}
.ws6f{word-spacing:12.266037px;}
.ws84{word-spacing:12.481229px;}
.ws7d{word-spacing:13.234407px;}
.ws88{word-spacing:13.288206px;}
.ws8c{word-spacing:13.342003px;}
.ws69{word-spacing:13.395803px;}
.ws8b{word-spacing:13.557198px;}
.ws4d{word-spacing:13.571345px;}
.ws86{word-spacing:13.610996px;}
.ws5e{word-spacing:13.737451px;}
.ws7b{word-spacing:13.879989px;}
.ws2d{word-spacing:15.287350px;}
.ws1b{word-spacing:17.861071px;}
.ws28{word-spacing:17.932801px;}
.ws1a{word-spacing:18.147995px;}
.ws75{word-spacing:19.044636px;}
.ws0{word-spacing:21.433225px;}
.ws62{word-spacing:88.438308px;}
.ws60{word-spacing:96.989734px;}
.ws50{word-spacing:99.087167px;}
.ws51{word-spacing:121.708272px;}
.ws61{word-spacing:138.367600px;}
.ws52{word-spacing:142.962414px;}
.ws4f{word-spacing:147.789216px;}
._2{margin-left:-7.316563px;}
._1{margin-left:-5.164632px;}
._6{margin-left:-3.981037px;}
._0{margin-left:-2.151930px;}
._3{margin-left:-1.148242px;}
._4{width:1.434624px;}
._e{width:2.737562px;}
._f{width:3.864530px;}
._d{width:5.320028px;}
._c{width:7.830605px;}
._3a{width:10.739294px;}
._8{width:13.126704px;}
._17{width:14.501568px;}
._b{width:16.918627px;}
._a{width:18.291335px;}
._7{width:20.097116px;}
._5{width:21.220357px;}
._15{width:23.551592px;}
._16{width:24.986203px;}
._9{width:26.600144px;}
._3b{width:29.911910px;}
._2b{width:31.800619px;}
._2a{width:35.841453px;}
._19{width:66.003613px;}
._1a{width:77.285815px;}
._35{width:96.989723px;}
._34{width:111.555288px;}
._20{width:120.593686px;}
._1d{width:122.193891px;}
._2d{width:130.037137px;}
._29{width:138.384112px;}
._2e{width:152.143693px;}
._23{width:155.825214px;}
._28{width:161.875074px;}
._21{width:164.638974px;}
._32{width:165.969373px;}
._30{width:172.832626px;}
._1e{width:175.119399px;}
._38{width:180.626878px;}
._25{width:186.980987px;}
._22{width:188.745247px;}
._39{width:193.538104px;}
._24{width:196.924052px;}
._1c{width:201.456930px;}
._37{width:211.192908px;}
._27{width:215.996959px;}
._36{width:230.500392px;}
._1b{width:296.120561px;}
._2f{width:329.367851px;}
._31{width:369.090883px;}
._18{width:377.221686px;}
._1f{width:394.441103px;}
._33{width:424.133188px;}
._26{width:448.641864px;}
._2c{width:462.373520px;}
._12{width:481.263180px;}
._10{width:500.015880px;}
._11{width:801.009000px;}
._14{width:1898.706000px;}
._13{width:2288.424000px;}
.fc1{color:rgb(26,26,26);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:37.060800px;}
.fs9{font-size:39.787487px;}
.fs7{font-size:42.000000px;}
.fs6{font-size:43.636200px;}
.fs5{font-size:47.820600px;}
.fs2{font-size:52.602600px;}
.fsb{font-size:53.798400px;}
.fs8{font-size:54.503392px;}
.fsa{font-size:55.170488px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y61{bottom:6.600001px;}
.y63{bottom:22.500000px;}
.y64{bottom:42.000000px;}
.y5f{bottom:89.232000px;}
.y30{bottom:93.571500px;}
.ybe{bottom:94.612500px;}
.y5e{bottom:107.164500px;}
.ybd{bottom:112.545000px;}
.y2f{bottom:122.739000px;}
.y89{bottom:125.098500px;}
.y5d{bottom:130.477500px;}
.y65{bottom:130.500000px;}
.y2e{bottom:140.671500px;}
.y88{bottom:143.031000px;}
.y95{bottom:143.647500px;}
.yde{bottom:154.980000px;}
.y2d{bottom:158.604000px;}
.y5c{bottom:160.098000px;}
.y87{bottom:160.963500px;}
.y94{bottom:161.580000px;}
.y5b{bottom:178.030500px;}
.y86{bottom:178.896000px;}
.y93{bottom:179.512500px;}
.y2c{bottom:186.522000px;}
.y5a{bottom:195.963000px;}
.y85{bottom:196.828500px;}
.y92{bottom:197.445000px;}
.ydd{bottom:201.997500px;}
.y2b{bottom:207.442500px;}
.y59{bottom:213.895500px;}
.y84{bottom:214.762500px;}
.y91{bottom:215.377500px;}
.ydc{bottom:219.930000px;}
.y58{bottom:231.829500px;}
.y83{bottom:232.695000px;}
.y90{bottom:233.311500px;}
.ydb{bottom:237.864000px;}
.y2a{bottom:249.705000px;}
.y57{bottom:249.762000px;}
.y82{bottom:250.627500px;}
.y8f{bottom:251.244000px;}
.yda{bottom:255.796500px;}
.y29{bottom:267.637500px;}
.y56{bottom:267.694500px;}
.y81{bottom:268.560000px;}
.y8e{bottom:269.176500px;}
.yd9{bottom:273.729000px;}
.y28{bottom:285.570000px;}
.y55{bottom:285.627000px;}
.y80{bottom:286.492500px;}
.y8d{bottom:287.109000px;}
.ybc{bottom:288.624000px;}
.yd8{bottom:291.661500px;}
.y27{bottom:303.502500px;}
.y54{bottom:303.559500px;}
.y7f{bottom:304.425000px;}
.y8c{bottom:305.041500px;}
.ybb{bottom:306.556500px;}
.yd7{bottom:309.594000px;}
.y26{bottom:321.435000px;}
.y53{bottom:321.492000px;}
.y7e{bottom:322.359000px;}
.yba{bottom:324.489000px;}
.yd6{bottom:327.526500px;}
.y25{bottom:339.369000px;}
.y52{bottom:339.426000px;}
.y7d{bottom:340.291500px;}
.yb9{bottom:342.423000px;}
.yd5{bottom:345.460500px;}
.y50{bottom:352.507500px;}
.y51{bottom:355.450500px;}
.y8b{bottom:356.485500px;}
.y24{bottom:357.301500px;}
.yb8{bottom:360.355500px;}
.yd4{bottom:363.393000px;}
.y7c{bottom:364.948500px;}
.y4f{bottom:365.703000px;}
.y8a{bottom:374.419500px;}
.y23{bottom:375.234000px;}
.yb7{bottom:378.288000px;}
.yd3{bottom:381.325500px;}
.y7b{bottom:385.870500px;}
.y22{bottom:393.166500px;}
.yb6{bottom:396.220500px;}
.yd2{bottom:399.258000px;}
.y4e{bottom:401.718000px;}
.y21{bottom:411.099000px;}
.yb5{bottom:414.153000px;}
.yd1{bottom:417.190500px;}
.y4d{bottom:419.650500px;}
.y20{bottom:429.031500px;}
.yb4{bottom:432.085500px;}
.yd0{bottom:435.123000px;}
.y7a{bottom:437.538000px;}
.y4c{bottom:437.583000px;}
.y1f{bottom:446.965500px;}
.yb3{bottom:450.019500px;}
.y79{bottom:455.470500px;}
.y4b{bottom:455.515500px;}
.y1e{bottom:464.898000px;}
.ycf{bottom:465.004500px;}
.yb2{bottom:467.952000px;}
.y4a{bottom:473.449500px;}
.y1d{bottom:482.830500px;}
.yb1{bottom:485.884500px;}
.y49{bottom:496.761000px;}
.y1c{bottom:500.763000px;}
.yb0{bottom:503.817000px;}
.y48{bottom:517.683000px;}
.y1b{bottom:518.695500px;}
.yaf{bottom:521.749500px;}
.yce{bottom:525.273828px;}
.y1a{bottom:536.628000px;}
.yae{bottom:539.683500px;}
.ycd{bottom:541.824809px;}
.y47{bottom:547.303500px;}
.yad{bottom:557.616000px;}
.ycc{bottom:558.377173px;}
.y19{bottom:564.546000px;}
.y46{bottom:565.236000px;}
.ycb{bottom:574.928154px;}
.yac{bottom:575.548500px;}
.y45{bottom:583.168500px;}
.yca{bottom:591.479134px;}
.yab{bottom:593.481000px;}
.y44{bottom:601.101000px;}
.y18{bottom:606.807000px;}
.yc9{bottom:608.030114px;}
.yaa{bottom:611.413500px;}
.y43{bottom:619.033500px;}
.yc8{bottom:624.581094px;}
.y17{bottom:624.739500px;}
.ya9{bottom:629.346000px;}
.y42{bottom:636.967500px;}
.yc7{bottom:641.133459px;}
.y16{bottom:642.672000px;}
.ya8{bottom:647.280000px;}
.y41{bottom:654.900000px;}
.yc6{bottom:657.684439px;}
.y15{bottom:660.606000px;}
.ya7{bottom:665.212500px;}
.y40{bottom:672.832500px;}
.y14{bottom:678.538500px;}
.yc5{bottom:681.160388px;}
.ya6{bottom:683.145000px;}
.y3f{bottom:690.765000px;}
.y13{bottom:696.471000px;}
.ya5{bottom:701.077500px;}
.yc4{bottom:710.560500px;}
.y12{bottom:714.403500px;}
.y3d{bottom:716.232000px;}
.ya4{bottom:719.010000px;}
.yc3{bottom:728.494500px;}
.y3a{bottom:729.318000px;}
.y11{bottom:732.336000px;}
.y3e{bottom:734.130000px;}
.y3c{bottom:738.807000px;}
.y39{bottom:739.569000px;}
.ya3{bottom:743.668500px;}
.yc2{bottom:746.427000px;}
.y3b{bottom:749.686500px;}
.y10{bottom:750.268500px;}
.yc1{bottom:764.359500px;}
.ya2{bottom:764.589000px;}
.yf{bottom:768.202500px;}
.y78{bottom:770.677500px;}
.yf1{bottom:775.534500px;}
.y38{bottom:777.475500px;}
.yc0{bottom:782.292000px;}
.ye{bottom:786.135000px;}
.y77{bottom:788.610000px;}
.yf0{bottom:791.971500px;}
.yef{bottom:791.973000px;}
.y37{bottom:795.408000px;}
.yd{bottom:804.067500px;}
.y76{bottom:806.542500px;}
.yee{bottom:811.474500px;}
.y36{bottom:813.340500px;}
.yc{bottom:822.000000px;}
.ya1{bottom:822.188659px;}
.yfd{bottom:822.981000px;}
.ybf{bottom:823.656000px;}
.y75{bottom:824.475000px;}
.yed{bottom:827.913000px;}
.y35{bottom:831.273000px;}
.ya0{bottom:838.539513px;}
.yfc{bottom:839.419500px;}
.yb{bottom:839.932500px;}
.y74{bottom:842.407500px;}
.yec{bottom:844.351500px;}
.y34{bottom:849.205500px;}
.y9f{bottom:854.890366px;}
.yfb{bottom:855.858000px;}
.ya{bottom:857.865000px;}
.y73{bottom:860.341500px;}
.yeb{bottom:860.788500px;}
.y33{bottom:867.138000px;}
.y9e{bottom:871.242588px;}
.y9{bottom:875.799000px;}
.y72{bottom:878.274000px;}
.yea{bottom:880.291500px;}
.y9d{bottom:887.593441px;}
.y32{bottom:890.451000px;}
.y8{bottom:893.731500px;}
.yfa{bottom:894.712500px;}
.y71{bottom:896.206500px;}
.ye9{bottom:896.730000px;}
.y9c{bottom:903.944295px;}
.yf9{bottom:911.151000px;}
.y7{bottom:911.664000px;}
.ye8{bottom:913.168500px;}
.y70{bottom:914.139000px;}
.y31{bottom:920.071500px;}
.y9b{bottom:920.295148px;}
.yf8{bottom:927.588000px;}
.y6f{bottom:932.071500px;}
.ye7{bottom:932.670000px;}
.y9a{bottom:936.646002px;}
.y6{bottom:938.004000px;}
.ye6{bottom:949.108500px;}
.y6e{bottom:950.004000px;}
.y99{bottom:959.838091px;}
.yf7{bottom:966.442500px;}
.y6d{bottom:967.938000px;}
.ye5{bottom:968.610000px;}
.y5{bottom:974.164500px;}
.yf6{bottom:982.881000px;}
.ye4{bottom:985.048500px;}
.y6c{bottom:985.870500px;}
.y98{bottom:989.040000px;}
.y4{bottom:995.086500px;}
.yf5{bottom:999.319500px;}
.ye3{bottom:1001.487000px;}
.y6b{bottom:1003.803000px;}
.y97{bottom:1006.972500px;}
.y3{bottom:1016.008500px;}
.ye2{bottom:1017.925500px;}
.y6a{bottom:1021.735500px;}
.ye1{bottom:1037.427000px;}
.yf4{bottom:1038.174000px;}
.y69{bottom:1039.668000px;}
.y2{bottom:1051.870500px;}
.ye0{bottom:1053.865500px;}
.yf3{bottom:1054.612500px;}
.y68{bottom:1057.600500px;}
.ydf{bottom:1070.304000px;}
.yf2{bottom:1071.051000px;}
.y67{bottom:1075.534500px;}
.y1{bottom:1078.768500px;}
.y66{bottom:1093.467000px;}
.y96{bottom:1098.891000px;}
.y62{bottom:1131.000000px;}
.y60{bottom:1150.500000px;}
.hc{height:3.347434px;}
.h14{height:15.000000px;}
.h7{height:26.572594px;}
.hd{height:29.498071px;}
.h18{height:31.287155px;}
.h20{height:36.636710px;}
.h1f{height:37.013299px;}
.h1a{height:37.498334px;}
.h19{height:37.716347px;}
.h1d{height:37.957296px;}
.h1c{height:38.177978px;}
.h1e{height:39.557240px;}
.h17{height:40.408306px;}
.h9{height:40.826735px;}
.h5{height:41.125613px;}
.h13{height:42.859105px;}
.h15{height:43.804688px;}
.h1b{height:48.315512px;}
.h4{height:48.992410px;}
.h3{height:49.351066px;}
.h6{height:49.637990px;}
.ha{height:51.194071px;}
.h1{height:59.565422px;}
.h2{height:63.750064px;}
.he{height:70.697434px;}
.h8{height:81.296735px;}
.h10{height:94.279525px;}
.hf{height:109.463434px;}
.h12{height:122.300735px;}
.hb{height:128.711434px;}
.h11{height:140.483434px;}
.h16{height:951.000000px;}
.h0{height:1188.000000px;}
.w2{width:13.500000px;}
.w1{width:721.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2e{left:8.399999px;}
.x35{left:44.250000px;}
.x1{left:84.298500px;}
.x2b{left:85.500000px;}
.x43{left:91.764000px;}
.x3a{left:96.621181px;}
.x6{left:99.984000px;}
.x44{left:114.918000px;}
.x31{left:118.459500px;}
.x4{left:123.595500px;}
.x2{left:127.240500px;}
.x3b{left:146.569500px;}
.x3{left:149.860500px;}
.x32{left:152.656500px;}
.x36{left:167.104500px;}
.x37{left:173.274000px;}
.x2f{left:176.272500px;}
.x8{left:181.762500px;}
.x30{left:186.793500px;}
.x7{left:188.971500px;}
.x42{left:200.331000px;}
.x2c{left:211.944030px;}
.x45{left:246.592500px;}
.x5{left:330.763500px;}
.x38{left:392.058000px;}
.x39{left:404.506500px;}
.x9{left:457.086000px;}
.x46{left:463.812000px;}
.x20{left:465.936000px;}
.x3e{left:468.810846px;}
.xa{left:472.030500px;}
.x47{left:486.966000px;}
.x25{left:496.584000px;}
.x12{left:498.981000px;}
.xb{left:509.695500px;}
.x13{left:511.093500px;}
.x3c{left:521.938500px;}
.x28{left:528.085500px;}
.x16{left:534.757500px;}
.x14{left:538.177500px;}
.x17{left:545.566500px;}
.xc{left:547.324500px;}
.x15{left:561.189000px;}
.x3d{left:562.218000px;}
.xd{left:566.715000px;}
.x3f{left:567.921000px;}
.x40{left:572.637000px;}
.x41{left:590.778000px;}
.x21{left:597.769500px;}
.xe{left:614.463000px;}
.x22{left:624.876000px;}
.xf{left:658.957500px;}
.x18{left:669.459000px;}
.x10{left:676.105500px;}
.x23{left:685.278000px;}
.x33{left:687.168000px;}
.x19{left:688.891500px;}
.x1a{left:697.777500px;}
.x34{left:699.616500px;}
.x29{left:707.019000px;}
.x1e{left:716.746500px;}
.x26{left:718.396500px;}
.x1b{left:724.506000px;}
.x27{left:732.681000px;}
.x11{left:734.569500px;}
.x1c{left:750.385500px;}
.x2a{left:763.647000px;}
.x1d{left:768.066000px;}
.x1f{left:772.315500px;}
.x24{left:791.406000px;}
.x2d{left:836.250000px;}
@media print{
.v9{vertical-align:-60.928000pt;}
.va{vertical-align:-42.181333pt;}
.v11{vertical-align:-39.013333pt;}
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-7.968000pt;}
.ve{vertical-align:-2.693333pt;}
.v0{vertical-align:0.000000pt;}
.v13{vertical-align:17.589230pt;}
.v5{vertical-align:19.285333pt;}
.v1{vertical-align:23.141333pt;}
.v4{vertical-align:35.973333pt;}
.vf{vertical-align:57.312000pt;}
.vb{vertical-align:59.866667pt;}
.v8{vertical-align:68.293333pt;}
.v12{vertical-align:72.421333pt;}
.vd{vertical-align:74.981333pt;}
.v7{vertical-align:76.266667pt;}
.vc{vertical-align:94.325333pt;}
.v6{vertical-align:111.434667pt;}
.v10{vertical-align:121.898667pt;}
.ls2f{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.003446pt;}
.lsd{letter-spacing:0.533329pt;}
.ls30{letter-spacing:1.063944pt;}
.ls29{letter-spacing:1.064373pt;}
.ls10{letter-spacing:1.114662pt;}
.ls1{letter-spacing:1.166861pt;}
.ls9{letter-spacing:1.565897pt;}
.ls19{letter-spacing:1.592259pt;}
.ls1e{letter-spacing:1.597593pt;}
.ls6{letter-spacing:1.983051pt;}
.ls1c{letter-spacing:2.125227pt;}
.ls13{letter-spacing:2.512015pt;}
.ls7{letter-spacing:2.517348pt;}
.ls1d{letter-spacing:2.655711pt;}
.ls33{letter-spacing:3.211162pt;}
.ls3{letter-spacing:3.215207pt;}
.ls18{letter-spacing:3.399756pt;}
.ls2e{letter-spacing:3.405089pt;}
.ls16{letter-spacing:3.412541pt;}
.ls31{letter-spacing:3.484533pt;}
.ls2c{letter-spacing:3.613227pt;}
.ls2a{letter-spacing:3.720800pt;}
.ls8{letter-spacing:4.035468pt;}
.ls0{letter-spacing:4.547711pt;}
.ls14{letter-spacing:4.602662pt;}
.lsf{letter-spacing:4.607996pt;}
.ls2b{letter-spacing:4.779745pt;}
.ls23{letter-spacing:5.315467pt;}
.lse{letter-spacing:5.576800pt;}
.ls27{letter-spacing:5.577603pt;}
.ls17{letter-spacing:7.080792pt;}
.ls2d{letter-spacing:7.119207pt;}
.lsa{letter-spacing:7.438937pt;}
.ls1f{letter-spacing:9.915745pt;}
.ls26{letter-spacing:10.098422pt;}
.lsb{letter-spacing:11.806400pt;}
.ls11{letter-spacing:11.806861pt;}
.ls28{letter-spacing:13.131166pt;}
.lsc{letter-spacing:14.729527pt;}
.ls2{letter-spacing:16.366545pt;}
.ls1b{letter-spacing:16.886084pt;}
.ls1a{letter-spacing:17.415756pt;}
.ls15{letter-spacing:17.689527pt;}
.ls4{letter-spacing:19.979720pt;}
.ls24{letter-spacing:20.839756pt;}
.ls20{letter-spacing:31.307669pt;}
.ls5{letter-spacing:36.025527pt;}
.ls21{letter-spacing:49.358133pt;}
.ls22{letter-spacing:60.852270pt;}
.ls25{letter-spacing:87.684194pt;}
.ls12{letter-spacing:131.422937pt;}
.ws30{word-spacing:-54.409079pt;}
.ws2c{word-spacing:-43.431478pt;}
.ws22{word-spacing:-35.440289pt;}
.ws24{word-spacing:-29.129588pt;}
.ws19{word-spacing:-26.566933pt;}
.ws2e{word-spacing:-23.019352pt;}
.ws2f{word-spacing:-22.037389pt;}
.ws25{word-spacing:-20.297137pt;}
.ws5c{word-spacing:-17.706133pt;}
.ws64{word-spacing:-17.002837pt;}
.ws27{word-spacing:-16.790301pt;}
.ws49{word-spacing:-16.524631pt;}
.ws1e{word-spacing:-16.471498pt;}
.ws18{word-spacing:-16.418364pt;}
.wsa{word-spacing:-16.312097pt;}
.ws43{word-spacing:-16.258962pt;}
.ws34{word-spacing:-16.205829pt;}
.ws45{word-spacing:-16.046427pt;}
.ws1{word-spacing:-15.940265pt;}
.ws33{word-spacing:-15.833890pt;}
.ws21{word-spacing:-15.727623pt;}
.ws3c{word-spacing:-15.674490pt;}
.ws53{word-spacing:-15.515089pt;}
.ws63{word-spacing:-15.355686pt;}
.ws6b{word-spacing:-15.302655pt;}
.ws42{word-spacing:-15.302554pt;}
.wsf{word-spacing:-14.824347pt;}
.ws20{word-spacing:-14.771214pt;}
.ws44{word-spacing:-14.664947pt;}
.ws23{word-spacing:-14.364807pt;}
.ws3a{word-spacing:-14.293010pt;}
.ws29{word-spacing:-14.239875pt;}
.ws3f{word-spacing:-14.080474pt;}
.ws57{word-spacing:-14.027340pt;}
.ws4b{word-spacing:-13.974205pt;}
.ws9{word-spacing:-13.867939pt;}
.ws40{word-spacing:-13.814804pt;}
.ws48{word-spacing:-13.761670pt;}
.wsb{word-spacing:-13.708537pt;}
.ws4a{word-spacing:-13.602270pt;}
.wsc{word-spacing:-13.549135pt;}
.ws14{word-spacing:-13.496001pt;}
.ws17{word-spacing:-13.442867pt;}
.ws77{word-spacing:-13.389823pt;}
.ws5{word-spacing:-13.389733pt;}
.wsd{word-spacing:-13.336601pt;}
.ws3{word-spacing:-13.283467pt;}
.ws8{word-spacing:-13.230332pt;}
.ws7{word-spacing:-13.177199pt;}
.ws1f{word-spacing:-13.124064pt;}
.ws4{word-spacing:-13.070930pt;}
.ws81{word-spacing:-13.055077pt;}
.ws38{word-spacing:-13.017797pt;}
.ws46{word-spacing:-12.964663pt;}
.ws70{word-spacing:-12.959435pt;}
.ws6e{word-spacing:-12.911616pt;}
.ws3d{word-spacing:-12.858394pt;}
.ws83{word-spacing:-12.768154pt;}
.ws16{word-spacing:-12.752126pt;}
.ws3b{word-spacing:-12.486457pt;}
.ws3e{word-spacing:-12.433325pt;}
.ws11{word-spacing:-12.327055pt;}
.ws5f{word-spacing:-12.260108pt;}
.ws15{word-spacing:-12.167655pt;}
.ws71{word-spacing:-12.146483pt;}
.ws55{word-spacing:-12.114522pt;}
.ws4e{word-spacing:-12.111865pt;}
.ws87{word-spacing:-12.099000pt;}
.ws89{word-spacing:-12.098661pt;}
.ws35{word-spacing:-12.061386pt;}
.ws7c{word-spacing:-12.059072pt;}
.ws7e{word-spacing:-12.050841pt;}
.ws6a{word-spacing:-12.003021pt;}
.ws80{word-spacing:-11.971061pt;}
.ws68{word-spacing:-11.955869pt;}
.ws6d{word-spacing:-11.955200pt;}
.ws73{word-spacing:-11.955199pt;}
.ws39{word-spacing:-11.955120pt;}
.ws54{word-spacing:-11.901984pt;}
.ws36{word-spacing:-11.848852pt;}
.ws8a{word-spacing:-11.811737pt;}
.ws58{word-spacing:-11.795716pt;}
.ws85{word-spacing:-11.763916pt;}
.ws59{word-spacing:-11.583183pt;}
.ws7a{word-spacing:-11.524811pt;}
.ws31{word-spacing:-11.317514pt;}
.wse{word-spacing:-11.211244pt;}
.ws47{word-spacing:-11.104978pt;}
.ws2a{word-spacing:-10.912686pt;}
.ws78{word-spacing:-10.807499pt;}
.ws41{word-spacing:-10.679905pt;}
.ws1d{word-spacing:-10.626799pt;}
.ws7f{word-spacing:-10.616218pt;}
.ws12{word-spacing:-10.414236pt;}
.ws67{word-spacing:-10.042299pt;}
.ws6{word-spacing:-9.670362pt;}
.ws26{word-spacing:-9.245291pt;}
.ws32{word-spacing:-9.090140pt;}
.ws2b{word-spacing:-9.032755pt;}
.ws4c{word-spacing:-8.820220pt;}
.ws65{word-spacing:-8.713952pt;}
.ws13{word-spacing:-8.076348pt;}
.ws79{word-spacing:-7.794790pt;}
.ws5b{word-spacing:-7.651277pt;}
.ws56{word-spacing:-7.226204pt;}
.ws5a{word-spacing:-7.066804pt;}
.ws74{word-spacing:-6.934014pt;}
.ws66{word-spacing:-6.216660pt;}
.ws10{word-spacing:-6.163529pt;}
.ws76{word-spacing:-5.595030pt;}
.ws1c{word-spacing:-5.100851pt;}
.ws2{word-spacing:-0.063761pt;}
.ws5d{word-spacing:-0.053134pt;}
.ws72{word-spacing:-0.047821pt;}
.ws37{word-spacing:0.000000pt;}
.ws6c{word-spacing:8.559924pt;}
.ws82{word-spacing:10.807502pt;}
.ws6f{word-spacing:10.903144pt;}
.ws84{word-spacing:11.094426pt;}
.ws7d{word-spacing:11.763918pt;}
.ws88{word-spacing:11.811739pt;}
.ws8c{word-spacing:11.859558pt;}
.ws69{word-spacing:11.907381pt;}
.ws8b{word-spacing:12.050843pt;}
.ws4d{word-spacing:12.063417pt;}
.ws86{word-spacing:12.098663pt;}
.ws5e{word-spacing:12.211068pt;}
.ws7b{word-spacing:12.337768pt;}
.ws2d{word-spacing:13.588755pt;}
.ws1b{word-spacing:15.876508pt;}
.ws28{word-spacing:15.940268pt;}
.ws1a{word-spacing:16.131551pt;}
.ws75{word-spacing:16.928565pt;}
.ws0{word-spacing:19.051756pt;}
.ws62{word-spacing:78.611830pt;}
.ws60{word-spacing:86.213097pt;}
.ws50{word-spacing:88.077482pt;}
.ws51{word-spacing:108.185130pt;}
.ws61{word-spacing:122.993422pt;}
.ws52{word-spacing:127.077701pt;}
.ws4f{word-spacing:131.368192pt;}
._2{margin-left:-6.503611pt;}
._1{margin-left:-4.590784pt;}
._6{margin-left:-3.538699pt;}
._0{margin-left:-1.912827pt;}
._3{margin-left:-1.020660pt;}
._4{width:1.275221pt;}
._e{width:2.433388pt;}
._f{width:3.435138pt;}
._d{width:4.728914pt;}
._c{width:6.960538pt;}
._3a{width:9.546039pt;}
._8{width:11.668182pt;}
._17{width:12.890282pt;}
._b{width:15.038780pt;}
._a{width:16.258965pt;}
._7{width:17.864103pt;}
._5{width:18.862540pt;}
._15{width:20.934749pt;}
._16{width:22.209958pt;}
._9{width:23.644573pt;}
._3b{width:26.588365pt;}
._2b{width:28.267217pt;}
._2a{width:31.859069pt;}
._19{width:58.669878pt;}
._1a{width:68.698503pt;}
._35{width:86.213087pt;}
._34{width:99.160256pt;}
._20{width:107.194388pt;}
._1d{width:108.616792pt;}
._2d{width:115.588566pt;}
._29{width:123.008100pt;}
._2e{width:135.238838pt;}
._23{width:138.511302pt;}
._28{width:143.888955pt;}
._21{width:146.345755pt;}
._32{width:147.528331pt;}
._30{width:153.629001pt;}
._1e{width:155.661688pt;}
._38{width:160.557225pt;}
._25{width:166.205322pt;}
._22{width:167.773553pt;}
._39{width:172.033870pt;}
._24{width:175.043602pt;}
._1c{width:179.072827pt;}
._37{width:187.727029pt;}
._27{width:191.997297pt;}
._36{width:204.889237pt;}
._1b{width:263.218276pt;}
._2f{width:292.771423pt;}
._31{width:328.080785pt;}
._18{width:335.308165pt;}
._1f{width:350.614314pt;}
._33{width:377.007278pt;}
._26{width:398.792768pt;}
._2c{width:410.998684pt;}
._12{width:427.789493pt;}
._10{width:444.458560pt;}
._11{width:712.008000pt;}
._14{width:1687.738667pt;}
._13{width:2034.154667pt;}
.fs4{font-size:32.942933pt;}
.fs9{font-size:35.366655pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:38.787733pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:46.757867pt;}
.fsb{font-size:47.820800pt;}
.fs8{font-size:48.447460pt;}
.fsa{font-size:49.040434pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:5.866668pt;}
.y63{bottom:20.000000pt;}
.y64{bottom:37.333333pt;}
.y5f{bottom:79.317333pt;}
.y30{bottom:83.174667pt;}
.ybe{bottom:84.100000pt;}
.y5e{bottom:95.257333pt;}
.ybd{bottom:100.040000pt;}
.y2f{bottom:109.101333pt;}
.y89{bottom:111.198667pt;}
.y5d{bottom:115.980000pt;}
.y65{bottom:116.000000pt;}
.y2e{bottom:125.041333pt;}
.y88{bottom:127.138667pt;}
.y95{bottom:127.686667pt;}
.yde{bottom:137.760000pt;}
.y2d{bottom:140.981333pt;}
.y5c{bottom:142.309333pt;}
.y87{bottom:143.078667pt;}
.y94{bottom:143.626667pt;}
.y5b{bottom:158.249333pt;}
.y86{bottom:159.018667pt;}
.y93{bottom:159.566667pt;}
.y2c{bottom:165.797333pt;}
.y5a{bottom:174.189333pt;}
.y85{bottom:174.958667pt;}
.y92{bottom:175.506667pt;}
.ydd{bottom:179.553333pt;}
.y2b{bottom:184.393333pt;}
.y59{bottom:190.129333pt;}
.y84{bottom:190.900000pt;}
.y91{bottom:191.446667pt;}
.ydc{bottom:195.493333pt;}
.y58{bottom:206.070667pt;}
.y83{bottom:206.840000pt;}
.y90{bottom:207.388000pt;}
.ydb{bottom:211.434667pt;}
.y2a{bottom:221.960000pt;}
.y57{bottom:222.010667pt;}
.y82{bottom:222.780000pt;}
.y8f{bottom:223.328000pt;}
.yda{bottom:227.374667pt;}
.y29{bottom:237.900000pt;}
.y56{bottom:237.950667pt;}
.y81{bottom:238.720000pt;}
.y8e{bottom:239.268000pt;}
.yd9{bottom:243.314667pt;}
.y28{bottom:253.840000pt;}
.y55{bottom:253.890667pt;}
.y80{bottom:254.660000pt;}
.y8d{bottom:255.208000pt;}
.ybc{bottom:256.554667pt;}
.yd8{bottom:259.254667pt;}
.y27{bottom:269.780000pt;}
.y54{bottom:269.830667pt;}
.y7f{bottom:270.600000pt;}
.y8c{bottom:271.148000pt;}
.ybb{bottom:272.494667pt;}
.yd7{bottom:275.194667pt;}
.y26{bottom:285.720000pt;}
.y53{bottom:285.770667pt;}
.y7e{bottom:286.541333pt;}
.yba{bottom:288.434667pt;}
.yd6{bottom:291.134667pt;}
.y25{bottom:301.661333pt;}
.y52{bottom:301.712000pt;}
.y7d{bottom:302.481333pt;}
.yb9{bottom:304.376000pt;}
.yd5{bottom:307.076000pt;}
.y50{bottom:313.340000pt;}
.y51{bottom:315.956000pt;}
.y8b{bottom:316.876000pt;}
.y24{bottom:317.601333pt;}
.yb8{bottom:320.316000pt;}
.yd4{bottom:323.016000pt;}
.y7c{bottom:324.398667pt;}
.y4f{bottom:325.069333pt;}
.y8a{bottom:332.817333pt;}
.y23{bottom:333.541333pt;}
.yb7{bottom:336.256000pt;}
.yd3{bottom:338.956000pt;}
.y7b{bottom:342.996000pt;}
.y22{bottom:349.481333pt;}
.yb6{bottom:352.196000pt;}
.yd2{bottom:354.896000pt;}
.y4e{bottom:357.082667pt;}
.y21{bottom:365.421333pt;}
.yb5{bottom:368.136000pt;}
.yd1{bottom:370.836000pt;}
.y4d{bottom:373.022667pt;}
.y20{bottom:381.361333pt;}
.yb4{bottom:384.076000pt;}
.yd0{bottom:386.776000pt;}
.y7a{bottom:388.922667pt;}
.y4c{bottom:388.962667pt;}
.y1f{bottom:397.302667pt;}
.yb3{bottom:400.017333pt;}
.y79{bottom:404.862667pt;}
.y4b{bottom:404.902667pt;}
.y1e{bottom:413.242667pt;}
.ycf{bottom:413.337333pt;}
.yb2{bottom:415.957333pt;}
.y4a{bottom:420.844000pt;}
.y1d{bottom:429.182667pt;}
.yb1{bottom:431.897333pt;}
.y49{bottom:441.565333pt;}
.y1c{bottom:445.122667pt;}
.yb0{bottom:447.837333pt;}
.y48{bottom:460.162667pt;}
.y1b{bottom:461.062667pt;}
.yaf{bottom:463.777333pt;}
.yce{bottom:466.910070pt;}
.y1a{bottom:477.002667pt;}
.yae{bottom:479.718667pt;}
.ycd{bottom:481.622052pt;}
.y47{bottom:486.492000pt;}
.yad{bottom:495.658667pt;}
.ycc{bottom:496.335265pt;}
.y19{bottom:501.818667pt;}
.y46{bottom:502.432000pt;}
.ycb{bottom:511.047248pt;}
.yac{bottom:511.598667pt;}
.y45{bottom:518.372000pt;}
.yca{bottom:525.759230pt;}
.yab{bottom:527.538667pt;}
.y44{bottom:534.312000pt;}
.y18{bottom:539.384000pt;}
.yc9{bottom:540.471212pt;}
.yaa{bottom:543.478667pt;}
.y43{bottom:550.252000pt;}
.yc8{bottom:555.183195pt;}
.y17{bottom:555.324000pt;}
.ya9{bottom:559.418667pt;}
.y42{bottom:566.193333pt;}
.yc7{bottom:569.896408pt;}
.y16{bottom:571.264000pt;}
.ya8{bottom:575.360000pt;}
.y41{bottom:582.133333pt;}
.yc6{bottom:584.608390pt;}
.y15{bottom:587.205333pt;}
.ya7{bottom:591.300000pt;}
.y40{bottom:598.073333pt;}
.y14{bottom:603.145333pt;}
.yc5{bottom:605.475900pt;}
.ya6{bottom:607.240000pt;}
.y3f{bottom:614.013333pt;}
.y13{bottom:619.085333pt;}
.ya5{bottom:623.180000pt;}
.yc4{bottom:631.609333pt;}
.y12{bottom:635.025333pt;}
.y3d{bottom:636.650667pt;}
.ya4{bottom:639.120000pt;}
.yc3{bottom:647.550667pt;}
.y3a{bottom:648.282667pt;}
.y11{bottom:650.965333pt;}
.y3e{bottom:652.560000pt;}
.y3c{bottom:656.717333pt;}
.y39{bottom:657.394667pt;}
.ya3{bottom:661.038667pt;}
.yc2{bottom:663.490667pt;}
.y3b{bottom:666.388000pt;}
.y10{bottom:666.905333pt;}
.yc1{bottom:679.430667pt;}
.ya2{bottom:679.634667pt;}
.yf{bottom:682.846667pt;}
.y78{bottom:685.046667pt;}
.yf1{bottom:689.364000pt;}
.y38{bottom:691.089333pt;}
.yc0{bottom:695.370667pt;}
.ye{bottom:698.786667pt;}
.y77{bottom:700.986667pt;}
.yf0{bottom:703.974667pt;}
.yef{bottom:703.976000pt;}
.y37{bottom:707.029333pt;}
.yd{bottom:714.726667pt;}
.y76{bottom:716.926667pt;}
.yee{bottom:721.310667pt;}
.y36{bottom:722.969333pt;}
.yc{bottom:730.666667pt;}
.ya1{bottom:730.834364pt;}
.yfd{bottom:731.538667pt;}
.ybf{bottom:732.138667pt;}
.y75{bottom:732.866667pt;}
.yed{bottom:735.922667pt;}
.y35{bottom:738.909333pt;}
.ya0{bottom:745.368456pt;}
.yfc{bottom:746.150667pt;}
.yb{bottom:746.606667pt;}
.y74{bottom:748.806667pt;}
.yec{bottom:750.534667pt;}
.y34{bottom:754.849333pt;}
.y9f{bottom:759.902548pt;}
.yfb{bottom:760.762667pt;}
.ya{bottom:762.546667pt;}
.y73{bottom:764.748000pt;}
.yeb{bottom:765.145333pt;}
.y33{bottom:770.789333pt;}
.y9e{bottom:774.437856pt;}
.y9{bottom:778.488000pt;}
.y72{bottom:780.688000pt;}
.yea{bottom:782.481333pt;}
.y9d{bottom:788.971948pt;}
.y32{bottom:791.512000pt;}
.y8{bottom:794.428000pt;}
.yfa{bottom:795.300000pt;}
.y71{bottom:796.628000pt;}
.ye9{bottom:797.093333pt;}
.y9c{bottom:803.506040pt;}
.yf9{bottom:809.912000pt;}
.y7{bottom:810.368000pt;}
.ye8{bottom:811.705333pt;}
.y70{bottom:812.568000pt;}
.y31{bottom:817.841333pt;}
.y9b{bottom:818.040132pt;}
.yf8{bottom:824.522667pt;}
.y6f{bottom:828.508000pt;}
.ye7{bottom:829.040000pt;}
.y9a{bottom:832.574224pt;}
.y6{bottom:833.781333pt;}
.ye6{bottom:843.652000pt;}
.y6e{bottom:844.448000pt;}
.y99{bottom:853.189414pt;}
.yf7{bottom:859.060000pt;}
.y6d{bottom:860.389333pt;}
.ye5{bottom:860.986667pt;}
.y5{bottom:865.924000pt;}
.yf6{bottom:873.672000pt;}
.ye4{bottom:875.598667pt;}
.y6c{bottom:876.329333pt;}
.y98{bottom:879.146667pt;}
.y4{bottom:884.521333pt;}
.yf5{bottom:888.284000pt;}
.ye3{bottom:890.210667pt;}
.y6b{bottom:892.269333pt;}
.y97{bottom:895.086667pt;}
.y3{bottom:903.118667pt;}
.ye2{bottom:904.822667pt;}
.y6a{bottom:908.209333pt;}
.ye1{bottom:922.157333pt;}
.yf4{bottom:922.821333pt;}
.y69{bottom:924.149333pt;}
.y2{bottom:934.996000pt;}
.ye0{bottom:936.769333pt;}
.yf3{bottom:937.433333pt;}
.y68{bottom:940.089333pt;}
.ydf{bottom:951.381333pt;}
.yf2{bottom:952.045333pt;}
.y67{bottom:956.030667pt;}
.y1{bottom:958.905333pt;}
.y66{bottom:971.970667pt;}
.y96{bottom:976.792000pt;}
.y62{bottom:1005.333333pt;}
.y60{bottom:1022.666667pt;}
.hc{height:2.975497pt;}
.h14{height:13.333333pt;}
.h7{height:23.620083pt;}
.hd{height:26.220508pt;}
.h18{height:27.810805pt;}
.h20{height:32.565965pt;}
.h1f{height:32.900710pt;}
.h1a{height:33.331852pt;}
.h19{height:33.525642pt;}
.h1d{height:33.739818pt;}
.h1c{height:33.935980pt;}
.h1e{height:35.161991pt;}
.h17{height:35.918494pt;}
.h9{height:36.290431pt;}
.h5{height:36.556100pt;}
.h13{height:38.096982pt;}
.h15{height:38.937500pt;}
.h1b{height:42.947122pt;}
.h4{height:43.548809pt;}
.h3{height:43.867614pt;}
.h6{height:44.122658pt;}
.ha{height:45.505841pt;}
.h1{height:52.947042pt;}
.h2{height:56.666724pt;}
.he{height:62.842163pt;}
.h8{height:72.263764pt;}
.h10{height:83.804022pt;}
.hf{height:97.300830pt;}
.h12{height:108.711764pt;}
.hb{height:114.410163pt;}
.h11{height:124.874163pt;}
.h16{height:845.333333pt;}
.h0{height:1056.000000pt;}
.w2{width:12.000000pt;}
.w1{width:641.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2e{left:7.466666pt;}
.x35{left:39.333333pt;}
.x1{left:74.932000pt;}
.x2b{left:76.000000pt;}
.x43{left:81.568000pt;}
.x3a{left:85.885494pt;}
.x6{left:88.874667pt;}
.x44{left:102.149333pt;}
.x31{left:105.297333pt;}
.x4{left:109.862667pt;}
.x2{left:113.102667pt;}
.x3b{left:130.284000pt;}
.x3{left:133.209333pt;}
.x32{left:135.694667pt;}
.x36{left:148.537333pt;}
.x37{left:154.021333pt;}
.x2f{left:156.686667pt;}
.x8{left:161.566667pt;}
.x30{left:166.038667pt;}
.x7{left:167.974667pt;}
.x42{left:178.072000pt;}
.x2c{left:188.394693pt;}
.x45{left:219.193333pt;}
.x5{left:294.012000pt;}
.x38{left:348.496000pt;}
.x39{left:359.561333pt;}
.x9{left:406.298667pt;}
.x46{left:412.277333pt;}
.x20{left:414.165333pt;}
.x3e{left:416.720752pt;}
.xa{left:419.582667pt;}
.x47{left:432.858667pt;}
.x25{left:441.408000pt;}
.x12{left:443.538667pt;}
.xb{left:453.062667pt;}
.x13{left:454.305333pt;}
.x3c{left:463.945333pt;}
.x28{left:469.409333pt;}
.x16{left:475.340000pt;}
.x14{left:478.380000pt;}
.x17{left:484.948000pt;}
.xc{left:486.510667pt;}
.x15{left:498.834667pt;}
.x3d{left:499.749333pt;}
.xd{left:503.746667pt;}
.x3f{left:504.818667pt;}
.x40{left:509.010667pt;}
.x41{left:525.136000pt;}
.x21{left:531.350667pt;}
.xe{left:546.189333pt;}
.x22{left:555.445333pt;}
.xf{left:585.740000pt;}
.x18{left:595.074667pt;}
.x10{left:600.982667pt;}
.x23{left:609.136000pt;}
.x33{left:610.816000pt;}
.x19{left:612.348000pt;}
.x1a{left:620.246667pt;}
.x34{left:621.881333pt;}
.x29{left:628.461333pt;}
.x1e{left:637.108000pt;}
.x26{left:638.574667pt;}
.x1b{left:644.005333pt;}
.x27{left:651.272000pt;}
.x11{left:652.950667pt;}
.x1c{left:667.009333pt;}
.x2a{left:678.797333pt;}
.x1d{left:682.725333pt;}
.x1f{left:686.502667pt;}
.x24{left:703.472000pt;}
.x2d{left:743.333333pt;}
}




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