
    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_7f2a4af2a45673c9ecc80275.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_cb1d2301ffa606fff040d01f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.431000;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_a82502313740021797c816c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.810000;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_b1429137014788104b60188e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.713000;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_bb32d2aee4e14f8c967b99af.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900000;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_51a70e8b0cb12a7dec639a48.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_885f062056a3c6732c01ed5b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.960000;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_476013dc0a0d928a88ff0235.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.727000;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_a61bf78617c1a219a308986f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_eaf3d3121d0c2190e0df7826.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.970000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.m20{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);}
.m0{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);}
.m5{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);}
.m1a{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);}
.m12{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);}
.m21{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);}
.m1c{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);}
.m1d{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);}
.m9{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);}
.md{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);}
.m13{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);}
.m3{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);}
.m7{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);}
.m10{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);}
.m6{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);}
.m4{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.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);}
.m1f{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);}
.m11{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);}
.m1{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);}
.ma{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);}
.m1b{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);}
.m18{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);}
.m17{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);}
.m14{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);}
.m1e{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);}
.mb{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);}
.m16{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);}
.mf{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);}
.m19{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);}
.me{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);}
.m15{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);}
.m8{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);}
.m2{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);}
.v2{vertical-align:-21.113028px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:8.485326px;}
.v1{vertical-align:23.115730px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.596693px;}
.ls2{letter-spacing:2.885211px;}
.ls0{letter-spacing:2.904711px;}
.ls6{letter-spacing:2.907396px;}
.ls4{letter-spacing:2.908471px;}
.ls5{letter-spacing:54.971548px;}
.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;}
}
.ws78{word-spacing:-14.542357px;}
.ws13{word-spacing:-14.519126px;}
.ws95{word-spacing:-11.633915px;}
.ws32{word-spacing:-9.045178px;}
.ws5f{word-spacing:-7.010576px;}
.ws51{word-spacing:-4.828063px;}
.ws88{word-spacing:-0.814372px;}
.ws19{word-spacing:-0.698033px;}
.ws18{word-spacing:-0.639864px;}
.ws30{word-spacing:-0.407186px;}
.ws1d{word-spacing:-0.349017px;}
.ws96{word-spacing:-0.232678px;}
.ws6f{word-spacing:-0.058169px;}
.ws5{word-spacing:-0.052353px;}
.ws9a{word-spacing:-0.046536px;}
.ws46{word-spacing:0.000000px;}
.ws39{word-spacing:0.232678px;}
.ws52{word-spacing:0.349017px;}
.ws50{word-spacing:0.407186px;}
.ws4f{word-spacing:0.523525px;}
.ws94{word-spacing:0.581694px;}
.ws81{word-spacing:0.698033px;}
.ws1c{word-spacing:0.872541px;}
.ws53{word-spacing:1.279727px;}
.ws56{word-spacing:1.447267px;}
.ws2f{word-spacing:1.512405px;}
.ws1a{word-spacing:2.094099px;}
.ws7a{word-spacing:2.326777px;}
.ws68{word-spacing:2.443116px;}
.ws57{word-spacing:2.908471px;}
.ws76{word-spacing:3.024810px;}
.ws86{word-spacing:3.199319px;}
.ws71{word-spacing:3.484882px;}
.ws7d{word-spacing:3.490166px;}
.wsa0{word-spacing:3.583246px;}
.ws31{word-spacing:3.664674px;}
.ws5c{word-spacing:4.013691px;}
.ws5b{word-spacing:4.071860px;}
.ws8a{word-spacing:4.188199px;}
.ws87{word-spacing:4.246368px;}
.wsae{word-spacing:4.351886px;}
.ws59{word-spacing:4.362707px;}
.wsaf{word-spacing:4.374352px;}
.ws55{word-spacing:4.402252px;}
.ws37{word-spacing:4.420877px;}
.ws9d{word-spacing:4.420888px;}
.ws6c{word-spacing:4.515365px;}
.ws2e{word-spacing:4.537216px;}
.ws73{word-spacing:4.550680px;}
.wsa4{word-spacing:4.560495px;}
.wsa1{word-spacing:4.607030px;}
.ws27{word-spacing:4.653554px;}
.ws33{word-spacing:4.653566px;}
.ws3a{word-spacing:4.711724px;}
.ws77{word-spacing:4.739772px;}
.wsac{word-spacing:4.746637px;}
.wsa9{word-spacing:4.886244px;}
.ws70{word-spacing:4.944402px;}
.ws6e{word-spacing:4.956341px;}
.ws9c{word-spacing:4.979316px;}
.ws65{word-spacing:5.002571px;}
.ws42{word-spacing:5.060740px;}
.ws91{word-spacing:5.177079px;}
.ws93{word-spacing:5.235249px;}
.ws67{word-spacing:5.293418px;}
.ws16{word-spacing:5.351588px;}
.ws17{word-spacing:5.409757px;}
.ws66{word-spacing:5.467926px;}
.ws2c{word-spacing:5.526096px;}
.ws1e{word-spacing:5.584265px;}
.ws40{word-spacing:5.642435px;}
.ws41{word-spacing:5.700604px;}
.ws3c{word-spacing:5.758774px;}
.ws3{word-spacing:5.816943px;}
.ws34{word-spacing:5.816958px;}
.ws1b{word-spacing:5.875112px;}
.ws15{word-spacing:5.933282px;}
.ws36{word-spacing:5.991451px;}
.ws14{word-spacing:6.049621px;}
.ws4b{word-spacing:6.107790px;}
.ws58{word-spacing:6.165960px;}
.ws38{word-spacing:6.224129px;}
.ws85{word-spacing:6.340468px;}
.ws3e{word-spacing:6.398637px;}
.ws2{word-spacing:6.398661px;}
.ws28{word-spacing:6.631315px;}
.wsa5{word-spacing:6.701135px;}
.ws54{word-spacing:6.863993px;}
.ws84{word-spacing:7.271179px;}
.ws25{word-spacing:7.329348px;}
.ws6b{word-spacing:7.433395px;}
.ws8f{word-spacing:7.445687px;}
.ws92{word-spacing:7.503856px;}
.ws8b{word-spacing:7.620195px;}
.ws4c{word-spacing:7.794704px;}
.ws1f{word-spacing:7.852873px;}
.ws20{word-spacing:8.027381px;}
.wsab{word-spacing:8.143741px;}
.ws3d{word-spacing:8.376398px;}
.ws4d{word-spacing:8.492737px;}
.wsa8{word-spacing:8.562562px;}
.wsa7{word-spacing:8.609097px;}
.ws75{word-spacing:8.667245px;}
.ws4a{word-spacing:8.725414px;}
.ws8e{word-spacing:8.754620px;}
.ws69{word-spacing:8.783584px;}
.ws80{word-spacing:9.074431px;}
.ws21{word-spacing:9.190770px;}
.ws61{word-spacing:9.597956px;}
.ws23{word-spacing:9.676231px;}
.ws3b{word-spacing:9.714295px;}
.ws64{word-spacing:9.946972px;}
.ws9b{word-spacing:10.051703px;}
.ws8d{word-spacing:10.179650px;}
.ws74{word-spacing:10.237820px;}
.ws7e{word-spacing:10.586836px;}
.ws2a{word-spacing:10.615016px;}
.ws35{word-spacing:10.935853px;}
.ws24{word-spacing:11.110361px;}
.ws7f{word-spacing:11.401208px;}
.ws89{word-spacing:11.575716px;}
.ws4e{word-spacing:11.633886px;}
.ws47{word-spacing:11.718169px;}
.ws49{word-spacing:11.750225px;}
.ws44{word-spacing:11.966640px;}
.ws29{word-spacing:11.982903px;}
.ws2b{word-spacing:12.041072px;}
.ws43{word-spacing:12.098625px;}
.ws45{word-spacing:12.186615px;}
.ws22{word-spacing:12.517396px;}
.ws26{word-spacing:12.680936px;}
.ws6a{word-spacing:13.029952px;}
.wsa{word-spacing:13.507032px;}
.ws5d{word-spacing:13.960663px;}
.ws1{word-spacing:13.960698px;}
.ws3f{word-spacing:14.018833px;}
.ws0{word-spacing:14.100305px;}
.ws90{word-spacing:14.251510px;}
.ws5e{word-spacing:14.600527px;}
.ws97{word-spacing:14.612197px;}
.ws2d{word-spacing:14.949543px;}
.wsa6{word-spacing:15.031018px;}
.ws98{word-spacing:15.263697px;}
.wsc{word-spacing:15.799625px;}
.wsf{word-spacing:15.810557px;}
.ws9e{word-spacing:16.008267px;}
.wsa3{word-spacing:16.147874px;}
.ws83{word-spacing:16.171101px;}
.wsa2{word-spacing:16.194410px;}
.ws9f{word-spacing:16.240946px;}
.wsad{word-spacing:16.334017px;}
.ws79{word-spacing:16.345610px;}
.ws8c{word-spacing:16.403779px;}
.wsaa{word-spacing:16.473624px;}
.ws63{word-spacing:16.752796px;}
.ws62{word-spacing:16.927304px;}
.ws12{word-spacing:17.450829px;}
.ws60{word-spacing:19.079573px;}
.ws9{word-spacing:19.370550px;}
.ws6d{word-spacing:19.433931px;}
.wsd{word-spacing:19.684667px;}
.ws11{word-spacing:19.737020px;}
.ws8{word-spacing:19.894078px;}
.ws72{word-spacing:20.126623px;}
.ws5a{word-spacing:20.301131px;}
.wsb{word-spacing:21.020721px;}
.ws10{word-spacing:23.035248px;}
.ws48{word-spacing:26.234413px;}
.ws99{word-spacing:26.851076px;}
.ws7{word-spacing:27.171122px;}
.wse{word-spacing:27.642298px;}
.ws82{word-spacing:29.026545px;}
.ws4{word-spacing:31.359349px;}
.ws6{word-spacing:37.118161px;}
.ws7b{word-spacing:74.040702px;}
.ws7c{word-spacing:107.419643px;}
._f{margin-left:-795.979594px;}
._2{margin-left:-5.125896px;}
._0{margin-left:-3.490175px;}
._1{margin-left:-2.094105px;}
._3{margin-left:-1.047057px;}
._d{width:1.069182px;}
._4{width:2.617427px;}
._8{width:3.634134px;}
._13{width:7.771455px;}
._c{width:13.180845px;}
._b{width:14.282292px;}
._9{width:18.032523px;}
._5{width:19.370420px;}
._7{width:20.412456px;}
._10{width:22.731683px;}
._15{width:26.131695px;}
._6{width:27.344672px;}
._e{width:29.084715px;}
._a{width:32.574962px;}
._12{width:82.790855px;}
._11{width:91.539287px;}
._14{width:116.169795px;}
.fc2{color:transparent;}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:27.513499px;}
.fs8{font-size:28.850109px;}
.fs6{font-size:32.556281px;}
.fs5{font-size:41.882153px;}
.fs7{font-size:43.995000px;}
.fs2{font-size:46.535660px;}
.fs4{font-size:52.352837px;}
.fs3{font-size:58.169430px;}
.fs1{font-size:63.986606px;}
.fs0{font-size:139.606981px;}
.y0{bottom:0.000000px;}
.yca{bottom:0.673221px;}
.yc9{bottom:8.706948px;}
.ydd{bottom:18.120468px;}
.ycb{bottom:18.322943px;}
.yd5{bottom:18.502171px;}
.y3c{bottom:22.746981px;}
.y93{bottom:27.611215px;}
.ya8{bottom:28.884014px;}
.yde{bottom:31.767513px;}
.yd6{bottom:32.388821px;}
.y3b{bottom:32.513865px;}
.y9a{bottom:36.096541px;}
.y90{bottom:39.490671px;}
.ycc{bottom:40.116033px;}
.ydf{bottom:45.414558px;}
.y41{bottom:45.536377px;}
.yd7{bottom:46.275470px;}
.y1{bottom:53.380500px;}
.ye0{bottom:59.061604px;}
.yd1{bottom:59.558450px;}
.yd8{bottom:60.162120px;}
.ya5{bottom:60.703986px;}
.ycd{bottom:61.909123px;}
.y92{bottom:61.976785px;}
.yd3{bottom:66.595350px;}
.y99{bottom:67.492247px;}
.yac{bottom:69.189312px;}
.y91{bottom:70.886377px;}
.y66{bottom:72.283500px;}
.ye1{bottom:72.708649px;}
.yd9{bottom:74.048770px;}
.yd2{bottom:76.692589px;}
.y40{bottom:79.177868px;}
.y43{bottom:82.976101px;}
.y36{bottom:83.518705px;}
.yce{bottom:83.702214px;}
.ye2{bottom:86.355695px;}
.yda{bottom:87.935419px;}
.y3f{bottom:88.944752px;}
.ya4{bottom:90.826894px;}
.ya7{bottom:91.675426px;}
.y65{bottom:91.923000px;}
.ye3{bottom:100.002740px;}
.ydb{bottom:101.822069px;}
.y38{bottom:104.137683px;}
.ycf{bottom:105.495304px;}
.y64{bottom:106.119000px;}
.y3e{bottom:107.393311px;}
.y34{bottom:110.287256px;}
.ye4{bottom:113.649786px;}
.y37{bottom:113.904568px;}
.ydc{bottom:115.708719px;}
.yaa{bottom:116.282872px;}
.y3d{bottom:117.160196px;}
.y63{bottom:120.316500px;}
.yd0{bottom:127.288395px;}
.ye5{bottom:127.296831px;}
.y33{bottom:127.739369px;}
.y42{bottom:131.267917px;}
.y3a{bottom:134.523546px;}
.y132{bottom:134.878737px;}
.y39{bottom:144.290430px;}
.y32{bottom:145.190023px;}
.y62{bottom:145.648367px;}
.y131{bottom:147.966363px;}
.ya9{bottom:151.496975px;}
.yab{bottom:152.345507px;}
.y130{bottom:161.055448px;}
.y31{bottom:162.640677px;}
.y8b{bottom:162.699064px;}
.y61{bottom:163.099021px;}
.y12f{bottom:174.143073px;}
.y94{bottom:175.680154px;}
.yad{bottom:176.952953px;}
.y30{bottom:180.091330px;}
.y8a{bottom:180.149718px;}
.y60{bottom:180.551134px;}
.y12e{bottom:187.232158px;}
.ya3{bottom:196.044936px;}
.y98{bottom:196.469203px;}
.y2f{bottom:197.541984px;}
.y89{bottom:197.600372px;}
.y5f{bottom:198.001788px;}
.y12d{bottom:200.319784px;}
.y12c{bottom:213.407409px;}
.y2e{bottom:214.992638px;}
.y88{bottom:215.051026px;}
.yc7{bottom:215.290416px;}
.y5e{bottom:215.452442px;}
.y97{bottom:224.046512px;}
.ya1{bottom:225.319311px;}
.y12b{bottom:226.496494px;}
.y2d{bottom:232.444751px;}
.y87{bottom:232.503139px;}
.yc6{bottom:232.742529px;}
.y5d{bottom:233.361440px;}
.y12a{bottom:239.584119px;}
.ya2{bottom:245.684094px;}
.y9b{bottom:246.956893px;}
.y2c{bottom:249.895405px;}
.yc5{bottom:250.193183px;}
.y5c{bottom:250.813553px;}
.y129{bottom:252.671745px;}
.y8f{bottom:254.169420px;}
.y86{bottom:254.738673px;}
.y8e{bottom:263.079012px;}
.y128{bottom:265.760830px;}
.y2b{bottom:267.346059px;}
.yc4{bottom:267.643836px;}
.y5b{bottom:268.264207px;}
.y105{bottom:270.541331px;}
.y96{bottom:274.534202px;}
.ya0{bottom:277.079800px;}
.y127{bottom:278.848455px;}
.y85{bottom:282.502072px;}
.y2a{bottom:284.796712px;}
.yc3{bottom:285.094490px;}
.y5a{bottom:285.714861px;}
.y104{bottom:287.991985px;}
.y126{bottom:291.937540px;}
.y9f{bottom:298.293115px;}
.y95{bottom:298.717381px;}
.y84{bottom:299.952726px;}
.y29{bottom:301.940830px;}
.yc2{bottom:302.545144px;}
.y59{bottom:303.165514px;}
.y125{bottom:305.025166px;}
.y103{bottom:305.442638px;}
.y83{bottom:317.403379px;}
.y124{bottom:318.112791px;}
.y28{bottom:319.391484px;}
.yc1{bottom:319.995798px;}
.y58{bottom:320.616168px;}
.y102{bottom:322.894752px;}
.y9e{bottom:325.870425px;}
.ya6{bottom:327.991756px;}
.y123{bottom:331.201876px;}
.y9d{bottom:334.780017px;}
.y82{bottom:334.854033px;}
.y27{bottom:336.842138px;}
.yc0{bottom:337.744229px;}
.y57{bottom:338.066822px;}
.y101{bottom:340.345406px;}
.y122{bottom:344.289501px;}
.y81{bottom:352.304687px;}
.y26{bottom:354.292791px;}
.ybf{bottom:355.196343px;}
.y56{bottom:355.518935px;}
.y121{bottom:357.377127px;}
.y100{bottom:357.796059px;}
.y9c{bottom:358.963196px;}
.y8d{bottom:359.387463px;}
.y80{bottom:369.756800px;}
.y120{bottom:370.466212px;}
.y25{bottom:371.744905px;}
.ybe{bottom:372.646996px;}
.y55{bottom:372.969589px;}
.yff{bottom:375.246713px;}
.y11f{bottom:383.553837px;}
.y7f{bottom:387.207454px;}
.y24{bottom:389.195558px;}
.ybd{bottom:390.097650px;}
.y54{bottom:390.878587px;}
.yfe{bottom:392.697367px;}
.y11e{bottom:396.642922px;}
.y7e{bottom:404.658108px;}
.y23{bottom:406.646212px;}
.ybc{bottom:407.548304px;}
.y53{bottom:408.330700px;}
.y11d{bottom:409.730548px;}
.yfd{bottom:410.148020px;}
.y7d{bottom:422.167149px;}
.y11c{bottom:422.818173px;}
.y22{bottom:424.096866px;}
.ybb{bottom:424.998957px;}
.y52{bottom:425.781354px;}
.yfc{bottom:430.795406px;}
.y7c{bottom:439.617803px;}
.y11b{bottom:440.487781px;}
.y21{bottom:441.547520px;}
.yba{bottom:442.449611px;}
.y51{bottom:443.232008px;}
.yfb{bottom:448.246060px;}
.y7b{bottom:457.068457px;}
.y20{bottom:458.998173px;}
.yb9{bottom:460.199502px;}
.y50{bottom:460.682661px;}
.yfa{bottom:465.696714px;}
.y11a{bottom:467.754884px;}
.y7a{bottom:474.520570px;}
.y1f{bottom:476.450287px;}
.yb8{bottom:477.650156px;}
.y4f{bottom:478.593119px;}
.yf9{bottom:483.147367px;}
.y119{bottom:485.205537px;}
.y79{bottom:491.971224px;}
.y1e{bottom:493.900941px;}
.yb7{bottom:495.100810px;}
.y4e{bottom:496.043773px;}
.yf8{bottom:500.598021px;}
.y118{bottom:502.656191px;}
.y78{bottom:509.421877px;}
.y1d{bottom:511.351594px;}
.yb6{bottom:512.551464px;}
.y4d{bottom:513.494426px;}
.yf7{bottom:518.048675px;}
.y117{bottom:524.687368px;}
.y77{bottom:526.872531px;}
.y1c{bottom:528.802248px;}
.yb5{bottom:530.002117px;}
.y4c{bottom:530.945080px;}
.yf6{bottom:538.696061px;}
.y76{bottom:544.323185px;}
.y1b{bottom:546.252902px;}
.yb4{bottom:547.452771px;}
.y4b{bottom:548.395734px;}
.y116{bottom:551.954470px;}
.yf5{bottom:556.146714px;}
.y75{bottom:561.773839px;}
.y1a{bottom:563.397019px;}
.yb3{bottom:564.904884px;}
.y4a{bottom:565.846388px;}
.y115{bottom:569.406584px;}
.yf4{bottom:573.597368px;}
.y19{bottom:580.847673px;}
.yb2{bottom:582.355538px;}
.y49{bottom:583.298501px;}
.y74{bottom:584.156802px;}
.y114{bottom:586.857237px;}
.yf3{bottom:591.048022px;}
.y18{bottom:598.298327px;}
.yb1{bottom:599.806192px;}
.y113{bottom:604.307891px;}
.y48{bottom:608.084122px;}
.yf2{bottom:608.498676px;}
.y73{bottom:611.918741px;}
.y17{bottom:615.750440px;}
.yb0{bottom:617.256846px;}
.y112{bottom:621.758545px;}
.yf1{bottom:625.950789px;}
.y72{bottom:629.370854px;}
.y16{bottom:633.201094px;}
.yaf{bottom:634.707499px;}
.y111{bottom:639.209199px;}
.y47{bottom:639.251530px;}
.yf0{bottom:643.401443px;}
.y71{bottom:646.821508px;}
.y15{bottom:650.651748px;}
.y110{bottom:656.659852px;}
.y46{bottom:656.702184px;}
.y70{bottom:664.272162px;}
.yae{bottom:665.969787px;}
.y14{bottom:668.102401px;}
.y10f{bottom:674.111966px;}
.y45{bottom:674.152837px;}
.yef{bottom:676.616802px;}
.y6f{bottom:681.722816px;}
.y13{bottom:685.553055px;}
.y10e{bottom:691.562620px;}
.y6e{bottom:699.173469px;}
.y44{bottom:705.845735px;}
.y12{bottom:707.277696px;}
.y10d{bottom:709.013273px;}
.y6d{bottom:716.682511px;}
.y10c{bottom:726.463927px;}
.yee{bottom:731.044450px;}
.y11{bottom:732.702663px;}
.y6c{bottom:734.134624px;}
.y10b{bottom:743.914581px;}
.y10{bottom:747.245605px;}
.yed{bottom:748.495104px;}
.y8c{bottom:748.708106px;}
.y6b{bottom:751.585278px;}
.y10a{bottom:761.365234px;}
.yf{bottom:761.788546px;}
.yec{bottom:765.947217px;}
.y6a{bottom:769.035932px;}
.ye{bottom:776.330028px;}
.y109{bottom:778.817348px;}
.y35{bottom:781.148321px;}
.yeb{bottom:783.397871px;}
.y69{bottom:786.486585px;}
.yd{bottom:790.872969px;}
.y108{bottom:796.268002px;}
.yea{bottom:800.848524px;}
.y68{bottom:803.937239px;}
.yc{bottom:805.415910px;}
.y107{bottom:813.718655px;}
.ye9{bottom:818.299178px;}
.yb{bottom:819.957392px;}
.y106{bottom:831.169309px;}
.ya{bottom:834.500333px;}
.y67{bottom:834.561640px;}
.ye8{bottom:835.749832px;}
.y9{bottom:849.043274px;}
.ye7{bottom:853.200486px;}
.y8{bottom:863.584756px;}
.y7{bottom:878.127697px;}
.ye6{bottom:883.668699px;}
.yd4{bottom:904.208068px;}
.y6{bottom:930.765759px;}
.y5{bottom:952.779419px;}
.y4{bottom:965.713776px;}
.yc8{bottom:972.567958px;}
.y3{bottom:1011.521925px;}
.y2{bottom:1052.241576px;}
.h5{height:21.639082px;}
.h11{height:21.781832px;}
.hb{height:23.717759px;}
.h14{height:25.560041px;}
.h12{height:30.267158px;}
.hc{height:32.016534px;}
.h15{height:32.483637px;}
.hd{height:32.644290px;}
.h6{height:32.668170px;}
.h8{height:36.332869px;}
.h7{height:36.594633px;}
.hf{height:39.729720px;}
.h9{height:40.020568px;}
.he{height:41.009448px;}
.h4{height:44.754812px;}
.h3{height:96.049603px;}
.h13{height:148.572895px;}
.ha{height:154.413712px;}
.h10{height:371.111236px;}
.h2{height:1156.078440px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:247.621492px;}
.w3{width:287.466993px;}
.w2{width:298.156558px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3a{left:9.166824px;}
.x50{left:12.617519px;}
.xc{left:15.182017px;}
.x4f{left:19.796822px;}
.xb{left:21.294798px;}
.x4e{left:24.171039px;}
.xa{left:26.508890px;}
.x4d{left:32.036714px;}
.x55{left:33.928188px;}
.x3f{left:39.912873px;}
.x40{left:41.198930px;}
.x41{left:42.895995px;}
.x42{left:45.441593px;}
.x34{left:50.917280px;}
.x36{left:52.143675px;}
.x35{left:53.164566px;}
.x31{left:55.159943px;}
.x32{left:57.407229px;}
.x1a{left:68.712000px;}
.x1{left:70.007209px;}
.x7{left:71.264006px;}
.x6{left:85.806947px;}
.x65{left:90.714442px;}
.x15{left:92.138625px;}
.x67{left:100.068167px;}
.x2{left:111.525313px;}
.x13{left:117.200179px;}
.x5{left:118.272024px;}
.x5b{left:123.802808px;}
.x14{left:129.213783px;}
.x12{left:134.656786px;}
.x5c{left:138.344290px;}
.x30{left:141.113644px;}
.x5d{left:145.470521px;}
.x52{left:157.276534px;}
.x37{left:158.720696px;}
.x39{left:162.539092px;}
.x38{left:163.811891px;}
.x3b{left:166.828162px;}
.x3{left:168.035946px;}
.x3e{left:170.772510px;}
.x3d{left:173.324739px;}
.x33{left:177.567402px;}
.x3c{left:181.120633px;}
.x2b{left:184.339279px;}
.x66{left:186.372634px;}
.x2c{left:195.105989px;}
.x8{left:197.753876px;}
.x51{left:203.916944px;}
.xd{left:224.169602px;}
.xf{left:231.494766px;}
.x4{left:233.849214px;}
.xe{left:236.615597px;}
.x11{left:240.269703px;}
.x10{left:241.677084px;}
.x1f{left:270.602875px;}
.x60{left:276.302984px;}
.x20{left:277.873615px;}
.x59{left:283.887559px;}
.x21{left:287.342657px;}
.x22{left:294.613398px;}
.x61{left:296.978104px;}
.x5a{left:299.240631px;}
.x23{left:304.082439px;}
.x1b{left:307.674748px;}
.x24{left:311.353180px;}
.x25{left:320.822221px;}
.x53{left:322.643921px;}
.x1c{left:326.042091px;}
.x26{left:328.092962px;}
.x2d{left:332.946448px;}
.x27{left:337.562004px;}
.x62{left:339.960282px;}
.x28{left:344.834204px;}
.x29{left:354.303246px;}
.x63{left:355.311895px;}
.x57{left:366.334052px;}
.x1d{left:367.637559px;}
.x68{left:376.716862px;}
.x5e{left:378.361939px;}
.x58{left:381.687124px;}
.x1e{left:385.962570px;}
.x2e{left:398.810806px;}
.x64{left:405.410087px;}
.x54{left:408.329477px;}
.x2a{left:415.908213px;}
.x5f{left:426.645730px;}
.x69{left:435.841808px;}
.x17{left:455.184227px;}
.x19{left:469.725708px;}
.x43{left:471.286122px;}
.x4b{left:474.693050px;}
.x16{left:475.998018px;}
.x6c{left:477.473769px;}
.x6f{left:484.694881px;}
.x9{left:486.655980px;}
.x70{left:488.568911px;}
.x2f{left:492.140967px;}
.x4a{left:496.770937px;}
.x6d{left:506.314423px;}
.x44{left:559.867713px;}
.x45{left:573.137801px;}
.x18{left:576.184184px;}
.x6a{left:583.456385px;}
.x6b{left:597.700088px;}
.x48{left:607.499021px;}
.x6e{left:611.739435px;}
.x49{left:626.041526px;}
.x56{left:657.127191px;}
.x46{left:770.450613px;}
.x47{left:785.305929px;}
.x4c{left:808.382247px;}
@media print{
.v2{vertical-align:-18.767136pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:7.542512pt;}
.v1{vertical-align:20.547316pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.308172pt;}
.ls2{letter-spacing:2.564632pt;}
.ls0{letter-spacing:2.581965pt;}
.ls6{letter-spacing:2.584352pt;}
.ls4{letter-spacing:2.585308pt;}
.ls5{letter-spacing:48.863599pt;}
.ws78{word-spacing:-12.926540pt;}
.ws13{word-spacing:-12.905890pt;}
.ws95{word-spacing:-10.341258pt;}
.ws32{word-spacing:-8.040158pt;}
.ws5f{word-spacing:-6.231623pt;}
.ws51{word-spacing:-4.291611pt;}
.ws88{word-spacing:-0.723886pt;}
.ws19{word-spacing:-0.620474pt;}
.ws18{word-spacing:-0.568768pt;}
.ws30{word-spacing:-0.361943pt;}
.ws1d{word-spacing:-0.310237pt;}
.ws96{word-spacing:-0.206825pt;}
.ws6f{word-spacing:-0.051706pt;}
.ws5{word-spacing:-0.046536pt;}
.ws9a{word-spacing:-0.041365pt;}
.ws46{word-spacing:0.000000pt;}
.ws39{word-spacing:0.206825pt;}
.ws52{word-spacing:0.310237pt;}
.ws50{word-spacing:0.361943pt;}
.ws4f{word-spacing:0.465355pt;}
.ws94{word-spacing:0.517062pt;}
.ws81{word-spacing:0.620474pt;}
.ws1c{word-spacing:0.775592pt;}
.ws53{word-spacing:1.137536pt;}
.ws56{word-spacing:1.286459pt;}
.ws2f{word-spacing:1.344360pt;}
.ws1a{word-spacing:1.861422pt;}
.ws7a{word-spacing:2.068246pt;}
.ws68{word-spacing:2.171659pt;}
.ws57{word-spacing:2.585308pt;}
.ws76{word-spacing:2.688720pt;}
.ws86{word-spacing:2.843839pt;}
.ws71{word-spacing:3.097673pt;}
.ws7d{word-spacing:3.102370pt;}
.wsa0{word-spacing:3.185107pt;}
.ws31{word-spacing:3.257488pt;}
.ws5c{word-spacing:3.567725pt;}
.ws5b{word-spacing:3.619431pt;}
.ws8a{word-spacing:3.722843pt;}
.ws87{word-spacing:3.774550pt;}
.wsae{word-spacing:3.868343pt;}
.ws59{word-spacing:3.877962pt;}
.wsaf{word-spacing:3.888313pt;}
.ws55{word-spacing:3.913113pt;}
.ws37{word-spacing:3.929668pt;}
.ws9d{word-spacing:3.929678pt;}
.ws6c{word-spacing:4.013658pt;}
.ws2e{word-spacing:4.033080pt;}
.ws73{word-spacing:4.045049pt;}
.wsa4{word-spacing:4.053773pt;}
.wsa1{word-spacing:4.095138pt;}
.ws27{word-spacing:4.136493pt;}
.ws33{word-spacing:4.136503pt;}
.ws3a{word-spacing:4.188199pt;}
.ws77{word-spacing:4.213130pt;}
.wsac{word-spacing:4.219233pt;}
.wsa9{word-spacing:4.343328pt;}
.ws70{word-spacing:4.395024pt;}
.ws6e{word-spacing:4.405636pt;}
.ws9c{word-spacing:4.426058pt;}
.ws65{word-spacing:4.446730pt;}
.ws42{word-spacing:4.498436pt;}
.ws91{word-spacing:4.601848pt;}
.ws93{word-spacing:4.653554pt;}
.ws67{word-spacing:4.705261pt;}
.ws16{word-spacing:4.756967pt;}
.ws17{word-spacing:4.808673pt;}
.ws66{word-spacing:4.860379pt;}
.ws2c{word-spacing:4.912085pt;}
.ws1e{word-spacing:4.963791pt;}
.ws40{word-spacing:5.015497pt;}
.ws41{word-spacing:5.067204pt;}
.ws3c{word-spacing:5.118910pt;}
.ws3{word-spacing:5.170616pt;}
.ws34{word-spacing:5.170629pt;}
.ws1b{word-spacing:5.222322pt;}
.ws15{word-spacing:5.274028pt;}
.ws36{word-spacing:5.325734pt;}
.ws14{word-spacing:5.377441pt;}
.ws4b{word-spacing:5.429147pt;}
.ws58{word-spacing:5.480853pt;}
.ws38{word-spacing:5.532559pt;}
.ws85{word-spacing:5.635971pt;}
.ws3e{word-spacing:5.687678pt;}
.ws2{word-spacing:5.687698pt;}
.ws28{word-spacing:5.894502pt;}
.wsa5{word-spacing:5.956565pt;}
.ws54{word-spacing:6.101327pt;}
.ws84{word-spacing:6.463270pt;}
.ws25{word-spacing:6.514976pt;}
.ws6b{word-spacing:6.607463pt;}
.ws8f{word-spacing:6.618388pt;}
.ws92{word-spacing:6.670095pt;}
.ws8b{word-spacing:6.773507pt;}
.ws4c{word-spacing:6.928625pt;}
.ws1f{word-spacing:6.980332pt;}
.ws20{word-spacing:7.135450pt;}
.wsab{word-spacing:7.238881pt;}
.ws3d{word-spacing:7.445687pt;}
.ws4d{word-spacing:7.549099pt;}
.wsa8{word-spacing:7.611166pt;}
.wsa7{word-spacing:7.652531pt;}
.ws75{word-spacing:7.704218pt;}
.ws4a{word-spacing:7.755924pt;}
.ws8e{word-spacing:7.781884pt;}
.ws69{word-spacing:7.807630pt;}
.ws80{word-spacing:8.066161pt;}
.ws21{word-spacing:8.169573pt;}
.ws61{word-spacing:8.531516pt;}
.ws23{word-spacing:8.601095pt;}
.ws3b{word-spacing:8.634929pt;}
.ws64{word-spacing:8.841753pt;}
.ws9b{word-spacing:8.934847pt;}
.ws8d{word-spacing:9.048578pt;}
.ws74{word-spacing:9.100284pt;}
.ws7e{word-spacing:9.410521pt;}
.ws2a{word-spacing:9.435569pt;}
.ws35{word-spacing:9.720758pt;}
.ws24{word-spacing:9.875876pt;}
.ws7f{word-spacing:10.134407pt;}
.ws89{word-spacing:10.289526pt;}
.ws4e{word-spacing:10.341232pt;}
.ws47{word-spacing:10.416150pt;}
.ws49{word-spacing:10.444644pt;}
.ws44{word-spacing:10.637013pt;}
.ws29{word-spacing:10.651469pt;}
.ws2b{word-spacing:10.703175pt;}
.ws43{word-spacing:10.754333pt;}
.ws45{word-spacing:10.832547pt;}
.ws22{word-spacing:11.126574pt;}
.ws26{word-spacing:11.271943pt;}
.ws6a{word-spacing:11.582180pt;}
.wsa{word-spacing:12.006251pt;}
.ws5d{word-spacing:12.409478pt;}
.ws1{word-spacing:12.409509pt;}
.ws3f{word-spacing:12.461184pt;}
.ws0{word-spacing:12.533605pt;}
.ws90{word-spacing:12.668009pt;}
.ws5e{word-spacing:12.978246pt;}
.ws97{word-spacing:12.988620pt;}
.ws2d{word-spacing:13.288483pt;}
.wsa6{word-spacing:13.360905pt;}
.ws98{word-spacing:13.567730pt;}
.wsc{word-spacing:14.044111pt;}
.wsf{word-spacing:14.053828pt;}
.ws9e{word-spacing:14.229571pt;}
.wsa3{word-spacing:14.353666pt;}
.ws83{word-spacing:14.374312pt;}
.wsa2{word-spacing:14.395031pt;}
.ws9f{word-spacing:14.436396pt;}
.wsad{word-spacing:14.519126pt;}
.ws79{word-spacing:14.529431pt;}
.ws8c{word-spacing:14.581137pt;}
.wsaa{word-spacing:14.643221pt;}
.ws63{word-spacing:14.891374pt;}
.ws62{word-spacing:15.046492pt;}
.ws12{word-spacing:15.511848pt;}
.ws60{word-spacing:16.959620pt;}
.ws9{word-spacing:17.218266pt;}
.ws6d{word-spacing:17.274605pt;}
.wsd{word-spacing:17.497482pt;}
.ws11{word-spacing:17.544017pt;}
.ws8{word-spacing:17.683625pt;}
.ws72{word-spacing:17.890331pt;}
.ws5a{word-spacing:18.045450pt;}
.wsb{word-spacing:18.685085pt;}
.ws10{word-spacing:20.475776pt;}
.ws48{word-spacing:23.319478pt;}
.ws99{word-spacing:23.867623pt;}
.ws7{word-spacing:24.152109pt;}
.wse{word-spacing:24.570931pt;}
.ws82{word-spacing:25.801374pt;}
.ws4{word-spacing:27.874977pt;}
.ws6{word-spacing:32.993921pt;}
.ws7b{word-spacing:65.813957pt;}
.ws7c{word-spacing:95.484127pt;}
._f{margin-left:-707.537417pt;}
._2{margin-left:-4.556352pt;}
._0{margin-left:-3.102377pt;}
._1{margin-left:-1.861426pt;}
._3{margin-left:-0.930717pt;}
._d{width:0.950384pt;}
._4{width:2.326602pt;}
._8{width:3.230341pt;}
._13{width:6.907960pt;}
._c{width:11.716306pt;}
._b{width:12.695371pt;}
._9{width:16.028909pt;}
._5{width:17.218151pt;}
._7{width:18.144405pt;}
._10{width:20.205940pt;}
._15{width:23.228173pt;}
._6{width:24.306375pt;}
._e{width:25.853080pt;}
._a{width:28.955522pt;}
._12{width:73.591871pt;}
._11{width:81.368256pt;}
._14{width:103.262040pt;}
.fs9{font-size:24.456444pt;}
.fs8{font-size:25.644541pt;}
.fs6{font-size:28.938916pt;}
.fs5{font-size:37.228580pt;}
.fs7{font-size:39.106667pt;}
.fs2{font-size:41.365032pt;}
.fs4{font-size:46.535855pt;}
.fs3{font-size:51.706160pt;}
.fs1{font-size:56.876983pt;}
.fs0{font-size:124.095095pt;}
.y0{bottom:0.000000pt;}
.yca{bottom:0.598419pt;}
.yc9{bottom:7.739509pt;}
.ydd{bottom:16.107082pt;}
.ycb{bottom:16.287060pt;}
.yd5{bottom:16.446374pt;}
.y3c{bottom:20.219538pt;}
.y93{bottom:24.543302pt;}
.ya8{bottom:25.674679pt;}
.yde{bottom:28.237789pt;}
.yd6{bottom:28.790063pt;}
.y3b{bottom:28.901213pt;}
.y9a{bottom:32.085814pt;}
.y90{bottom:35.102819pt;}
.ycc{bottom:35.658696pt;}
.ydf{bottom:40.368496pt;}
.y41{bottom:40.476780pt;}
.yd7{bottom:41.133751pt;}
.y1{bottom:47.449333pt;}
.ye0{bottom:52.499203pt;}
.yd1{bottom:52.940844pt;}
.yd8{bottom:53.477440pt;}
.ya5{bottom:53.959099pt;}
.ycd{bottom:55.030332pt;}
.y92{bottom:55.090476pt;}
.yd3{bottom:59.195867pt;}
.y99{bottom:59.993108pt;}
.yac{bottom:61.501611pt;}
.y91{bottom:63.010113pt;}
.y66{bottom:64.252000pt;}
.ye1{bottom:64.629911pt;}
.yd9{bottom:65.821129pt;}
.yd2{bottom:68.171190pt;}
.y40{bottom:70.380327pt;}
.y43{bottom:73.756534pt;}
.y36{bottom:74.238849pt;}
.yce{bottom:74.401968pt;}
.ye2{bottom:76.760618pt;}
.yda{bottom:78.164817pt;}
.y3f{bottom:79.062002pt;}
.ya4{bottom:80.735017pt;}
.ya7{bottom:81.489268pt;}
.y65{bottom:81.709333pt;}
.ye3{bottom:88.891325pt;}
.ydb{bottom:90.508506pt;}
.y38{bottom:92.566830pt;}
.ycf{bottom:93.773604pt;}
.y64{bottom:94.328000pt;}
.y3e{bottom:95.460721pt;}
.y34{bottom:98.033116pt;}
.ye4{bottom:101.022032pt;}
.y37{bottom:101.248505pt;}
.ydc{bottom:102.852195pt;}
.yaa{bottom:103.362553pt;}
.y3d{bottom:104.142396pt;}
.y63{bottom:106.948000pt;}
.yd0{bottom:113.145240pt;}
.ye5{bottom:113.152739pt;}
.y33{bottom:113.546106pt;}
.y42{bottom:116.682593pt;}
.y3a{bottom:119.576485pt;}
.y132{bottom:119.892211pt;}
.y39{bottom:128.258160pt;}
.y32{bottom:129.057798pt;}
.y62{bottom:129.465215pt;}
.y131{bottom:131.525656pt;}
.ya9{bottom:134.663978pt;}
.yab{bottom:135.418229pt;}
.y130{bottom:143.160398pt;}
.y31{bottom:144.569490pt;}
.y8b{bottom:144.621391pt;}
.y61{bottom:144.976907pt;}
.y12f{bottom:154.793843pt;}
.y94{bottom:156.160137pt;}
.yad{bottom:157.291514pt;}
.y30{bottom:160.081183pt;}
.y8a{bottom:160.133083pt;}
.y60{bottom:160.489897pt;}
.y12e{bottom:166.428585pt;}
.ya3{bottom:174.262166pt;}
.y98{bottom:174.639291pt;}
.y2f{bottom:175.592875pt;}
.y89{bottom:175.644775pt;}
.y5f{bottom:176.001589pt;}
.y12d{bottom:178.062030pt;}
.y12c{bottom:189.695475pt;}
.y2e{bottom:191.104567pt;}
.y88{bottom:191.156467pt;}
.yc7{bottom:191.369258pt;}
.y5e{bottom:191.513282pt;}
.y97{bottom:199.152455pt;}
.ya1{bottom:200.283832pt;}
.y12b{bottom:201.330217pt;}
.y2d{bottom:206.617557pt;}
.y87{bottom:206.669457pt;}
.yc6{bottom:206.882248pt;}
.y5d{bottom:207.432391pt;}
.y12a{bottom:212.963662pt;}
.ya2{bottom:218.385861pt;}
.y9b{bottom:219.517238pt;}
.y2c{bottom:222.129249pt;}
.yc5{bottom:222.393940pt;}
.y5c{bottom:222.945381pt;}
.y129{bottom:224.597106pt;}
.y8f{bottom:225.928373pt;}
.y86{bottom:226.434376pt;}
.y8e{bottom:233.848011pt;}
.y128{bottom:236.231849pt;}
.y2b{bottom:237.640941pt;}
.yc4{bottom:237.905632pt;}
.y5b{bottom:238.457073pt;}
.y105{bottom:240.481183pt;}
.y96{bottom:244.030402pt;}
.ya0{bottom:246.293156pt;}
.y127{bottom:247.865294pt;}
.y85{bottom:251.112953pt;}
.y2a{bottom:253.152633pt;}
.yc3{bottom:253.417325pt;}
.y5a{bottom:253.968765pt;}
.y104{bottom:255.992875pt;}
.y126{bottom:259.500036pt;}
.y9f{bottom:265.149436pt;}
.y95{bottom:265.526561pt;}
.y84{bottom:266.624645pt;}
.y29{bottom:268.391849pt;}
.yc2{bottom:268.929017pt;}
.y59{bottom:269.480457pt;}
.y125{bottom:271.133481pt;}
.y103{bottom:271.504568pt;}
.y83{bottom:282.136337pt;}
.y124{bottom:282.766925pt;}
.y28{bottom:283.903541pt;}
.yc1{bottom:284.440709pt;}
.y58{bottom:284.992149pt;}
.y102{bottom:287.017557pt;}
.y9e{bottom:289.662600pt;}
.ya6{bottom:291.548228pt;}
.y123{bottom:294.401668pt;}
.y9d{bottom:297.582237pt;}
.y82{bottom:297.648029pt;}
.y27{bottom:299.415233pt;}
.yc0{bottom:300.217093pt;}
.y57{bottom:300.503842pt;}
.y101{bottom:302.529249pt;}
.y122{bottom:306.035112pt;}
.y81{bottom:313.159722pt;}
.y26{bottom:314.926926pt;}
.ybf{bottom:315.730082pt;}
.y56{bottom:316.016831pt;}
.y121{bottom:317.668557pt;}
.y100{bottom:318.040942pt;}
.y9c{bottom:319.078397pt;}
.y8d{bottom:319.455522pt;}
.y80{bottom:328.672711pt;}
.y120{bottom:329.303299pt;}
.y25{bottom:330.439915pt;}
.ybe{bottom:331.241774pt;}
.y55{bottom:331.528523pt;}
.yff{bottom:333.552634pt;}
.y11f{bottom:340.936744pt;}
.y7f{bottom:344.184403pt;}
.y24{bottom:345.951608pt;}
.ybd{bottom:346.753467pt;}
.y54{bottom:347.447633pt;}
.yfe{bottom:349.064326pt;}
.y11e{bottom:352.571487pt;}
.y7e{bottom:359.696096pt;}
.y23{bottom:361.463300pt;}
.ybc{bottom:362.265159pt;}
.y53{bottom:362.960622pt;}
.y11d{bottom:364.204931pt;}
.yfd{bottom:364.576018pt;}
.y7d{bottom:375.259688pt;}
.y11c{bottom:375.838376pt;}
.y22{bottom:376.974992pt;}
.ybb{bottom:377.776851pt;}
.y52{bottom:378.472315pt;}
.yfc{bottom:382.929250pt;}
.y7c{bottom:390.771380pt;}
.y11b{bottom:391.544694pt;}
.y21{bottom:392.486684pt;}
.yba{bottom:393.288543pt;}
.y51{bottom:393.984007pt;}
.yfb{bottom:398.440942pt;}
.y7b{bottom:406.283073pt;}
.y20{bottom:407.998376pt;}
.yb9{bottom:409.066224pt;}
.y50{bottom:409.495699pt;}
.yfa{bottom:413.952634pt;}
.y11a{bottom:415.782119pt;}
.y7a{bottom:421.796062pt;}
.y1f{bottom:423.511366pt;}
.yb8{bottom:424.577917pt;}
.y4f{bottom:425.416106pt;}
.yf9{bottom:429.464327pt;}
.y119{bottom:431.293811pt;}
.y79{bottom:437.307754pt;}
.y1e{bottom:439.023058pt;}
.yb7{bottom:440.089609pt;}
.y4e{bottom:440.927798pt;}
.yf8{bottom:444.976019pt;}
.y118{bottom:446.805503pt;}
.y78{bottom:452.819447pt;}
.y1d{bottom:454.534750pt;}
.yb6{bottom:455.601301pt;}
.y4d{bottom:456.439490pt;}
.yf7{bottom:460.487711pt;}
.y117{bottom:466.388771pt;}
.y77{bottom:468.331139pt;}
.y1c{bottom:470.046443pt;}
.yb5{bottom:471.112993pt;}
.y4c{bottom:471.951182pt;}
.yf6{bottom:478.840943pt;}
.y76{bottom:483.842831pt;}
.y1b{bottom:485.558135pt;}
.yb4{bottom:486.624685pt;}
.y4b{bottom:487.462875pt;}
.y116{bottom:490.626196pt;}
.yf5{bottom:494.352635pt;}
.y75{bottom:499.354523pt;}
.y1a{bottom:500.797351pt;}
.yb3{bottom:502.137675pt;}
.y4a{bottom:502.974567pt;}
.y115{bottom:506.139186pt;}
.yf4{bottom:509.864327pt;}
.y19{bottom:516.309043pt;}
.yb2{bottom:517.649367pt;}
.y49{bottom:518.487557pt;}
.y74{bottom:519.250490pt;}
.y114{bottom:521.650878pt;}
.yf3{bottom:525.376019pt;}
.y18{bottom:531.820735pt;}
.yb1{bottom:533.161059pt;}
.y113{bottom:537.162570pt;}
.y48{bottom:540.519220pt;}
.yf2{bottom:540.887712pt;}
.y73{bottom:543.927770pt;}
.y17{bottom:547.333725pt;}
.yb0{bottom:548.672752pt;}
.y112{bottom:552.674262pt;}
.yf1{bottom:556.400701pt;}
.y72{bottom:559.440759pt;}
.y16{bottom:562.845417pt;}
.yaf{bottom:564.184444pt;}
.y111{bottom:568.185954pt;}
.y47{bottom:568.223582pt;}
.yf0{bottom:571.912394pt;}
.y71{bottom:574.952452pt;}
.y15{bottom:578.357109pt;}
.y110{bottom:583.697647pt;}
.y46{bottom:583.735274pt;}
.y70{bottom:590.464144pt;}
.yae{bottom:591.973144pt;}
.y14{bottom:593.868801pt;}
.y10f{bottom:599.210636pt;}
.y45{bottom:599.246966pt;}
.yef{bottom:601.437158pt;}
.y6f{bottom:605.975836pt;}
.y13{bottom:609.380494pt;}
.y10e{bottom:614.722328pt;}
.y6e{bottom:621.487528pt;}
.y44{bottom:627.418431pt;}
.y12{bottom:628.691285pt;}
.y10d{bottom:630.234021pt;}
.y6d{bottom:637.051121pt;}
.y10c{bottom:645.745713pt;}
.yee{bottom:649.817289pt;}
.y11{bottom:651.291256pt;}
.y6c{bottom:652.564110pt;}
.y10b{bottom:661.257405pt;}
.y10{bottom:664.218315pt;}
.yed{bottom:665.328981pt;}
.y8c{bottom:665.518316pt;}
.y6b{bottom:668.075803pt;}
.y10a{bottom:676.769097pt;}
.yf{bottom:677.145374pt;}
.yec{bottom:680.841971pt;}
.y6a{bottom:683.587495pt;}
.ye{bottom:690.071136pt;}
.y109{bottom:692.282087pt;}
.y35{bottom:694.354063pt;}
.yeb{bottom:696.353663pt;}
.y69{bottom:699.099187pt;}
.yd{bottom:702.998195pt;}
.y108{bottom:707.793779pt;}
.yea{bottom:711.865355pt;}
.y68{bottom:714.610879pt;}
.yc{bottom:715.925253pt;}
.y107{bottom:723.305471pt;}
.ye9{bottom:727.377047pt;}
.yb{bottom:728.851015pt;}
.y106{bottom:738.817164pt;}
.ya{bottom:741.778074pt;}
.y67{bottom:741.832569pt;}
.ye8{bottom:742.888740pt;}
.y9{bottom:754.705133pt;}
.ye7{bottom:758.400432pt;}
.y8{bottom:767.630894pt;}
.y7{bottom:780.557953pt;}
.ye6{bottom:785.483288pt;}
.yd4{bottom:803.740505pt;}
.y6{bottom:827.347341pt;}
.y5{bottom:846.915039pt;}
.y4{bottom:858.412246pt;}
.yc8{bottom:864.504851pt;}
.y3{bottom:899.130600pt;}
.y2{bottom:935.325846pt;}
.h5{height:19.234740pt;}
.h11{height:19.361628pt;}
.hb{height:21.082453pt;}
.h14{height:22.720036pt;}
.h12{height:26.904140pt;}
.hc{height:28.459142pt;}
.h15{height:28.874344pt;}
.hd{height:29.017147pt;}
.h6{height:29.038374pt;}
.h8{height:32.295883pt;}
.h7{height:32.528563pt;}
.hf{height:35.315307pt;}
.h9{height:35.573838pt;}
.he{height:36.452843pt;}
.h4{height:39.782055pt;}
.h3{height:85.377425pt;}
.h13{height:132.064796pt;}
.ha{height:137.256633pt;}
.h10{height:329.876654pt;}
.h2{height:1027.625280pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:220.107993pt;}
.w3{width:255.526216pt;}
.w2{width:265.028052pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3a{left:8.148288pt;}
.x50{left:11.215572pt;}
.xc{left:13.495126pt;}
.x4f{left:17.597175pt;}
.xb{left:18.928709pt;}
.x4e{left:21.485368pt;}
.xa{left:23.563458pt;}
.x4d{left:28.477080pt;}
.x55{left:30.158389pt;}
.x3f{left:35.478109pt;}
.x40{left:36.621271pt;}
.x41{left:38.129774pt;}
.x42{left:40.392527pt;}
.x34{left:45.259804pt;}
.x36{left:46.349933pt;}
.x35{left:47.257392pt;}
.x31{left:49.031060pt;}
.x32{left:51.028648pt;}
.x1a{left:61.077333pt;}
.x1{left:62.228630pt;}
.x7{left:63.345783pt;}
.x6{left:76.272842pt;}
.x65{left:80.635059pt;}
.x15{left:81.901000pt;}
.x67{left:88.949482pt;}
.x2{left:99.133612pt;}
.x13{left:104.177937pt;}
.x5{left:105.130688pt;}
.x5b{left:110.046941pt;}
.x14{left:114.856696pt;}
.x12{left:119.694921pt;}
.x5c{left:122.972702pt;}
.x30{left:125.434350pt;}
.x5d{left:129.307130pt;}
.x52{left:139.801363pt;}
.x37{left:141.085063pt;}
.x39{left:144.479193pt;}
.x38{left:145.610570pt;}
.x3b{left:148.291699pt;}
.x3{left:149.365285pt;}
.x3e{left:151.797787pt;}
.x3d{left:154.066435pt;}
.x33{left:157.837691pt;}
.x3c{left:160.996118pt;}
.x2b{left:163.857137pt;}
.x66{left:165.664564pt;}
.x2c{left:173.427546pt;}
.x8{left:175.781223pt;}
.x51{left:181.259505pt;}
.xd{left:199.261869pt;}
.xf{left:205.773125pt;}
.x4{left:207.865968pt;}
.xe{left:210.324975pt;}
.x11{left:213.573070pt;}
.x10{left:214.824075pt;}
.x1f{left:240.535889pt;}
.x60{left:245.602652pt;}
.x20{left:246.998769pt;}
.x59{left:252.344497pt;}
.x21{left:255.415695pt;}
.x22{left:261.878576pt;}
.x61{left:263.980536pt;}
.x5a{left:265.991672pt;}
.x23{left:270.295501pt;}
.x1b{left:273.488665pt;}
.x24{left:276.758382pt;}
.x25{left:285.175308pt;}
.x53{left:286.794596pt;}
.x1c{left:289.815192pt;}
.x26{left:291.638189pt;}
.x2d{left:295.952398pt;}
.x27{left:300.055114pt;}
.x62{left:302.186918pt;}
.x28{left:306.519293pt;}
.x29{left:314.936218pt;}
.x63{left:315.832795pt;}
.x57{left:325.630268pt;}
.x1d{left:326.788942pt;}
.x68{left:334.859433pt;}
.x5e{left:336.321723pt;}
.x58{left:339.277443pt;}
.x1e{left:343.077840pt;}
.x2e{left:354.498494pt;}
.x64{left:360.364522pt;}
.x54{left:362.959535pt;}
.x2a{left:369.696190pt;}
.x5f{left:379.240649pt;}
.x69{left:387.414941pt;}
.x17{left:404.608202pt;}
.x19{left:417.533963pt;}
.x43{left:418.920998pt;}
.x4b{left:421.949378pt;}
.x16{left:423.109349pt;}
.x6c{left:424.421128pt;}
.x6f{left:430.839894pt;}
.x9{left:432.583093pt;}
.x70{left:434.283476pt;}
.x2f{left:437.458637pt;}
.x4a{left:441.574166pt;}
.x6d{left:450.057265pt;}
.x44{left:497.660190pt;}
.x45{left:509.455823pt;}
.x18{left:512.163719pt;}
.x6a{left:518.627897pt;}
.x6b{left:531.288967pt;}
.x48{left:539.999130pt;}
.x6e{left:543.768387pt;}
.x49{left:556.481357pt;}
.x56{left:584.113059pt;}
.x46{left:684.844989pt;}
.x47{left:698.049714pt;}
.x4c{left:718.561997pt;}
}




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