
    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_d29b21d66d72706057248330.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_af02eeb789bf85463f49d593.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.854000;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_b817bd73d57d13acc68a97dd.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a7b117f0ab00fcc94b32aeed.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f6919d681091b30190177dd8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7a53f3c150034d120c8f2bce.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.049000;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_f891736bb036bfbc8d73e4b5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6b8efda565923dabea9156e6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.683000;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_192d469094010a3b2f818fdc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_71ebb077f7513d735c3cdb64.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893000;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_e46dc8ed97cc44a65d825957.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.685000;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_26405e08bd70b8b9b58ffb07.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.703450;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_caaa6793ffff0684122638cf.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_1e971f745b30e79ff21456db.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_accde63291cb962d0a64a08b.woff2')format("woff");}.fff{font-family:fff;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;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff13;src:url('chunks/assets/font_97786eacd20fd3d4f8484974.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_068d1eba0e19e44ed787777b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.244000;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;}
.m17{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);}
.m5{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);}
.m16{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);}
.m7{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);}
.m4{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);}
.m1b{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);}
.m13{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);}
.m15{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);}
.m9{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);}
.m2{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);}
.m1a{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);}
.mc{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);}
.mf{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);}
.m6{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);}
.m10{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);}
.m19{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);}
.m18{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);}
.ma{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);}
.m14{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);}
.m12{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m8{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);}
.m1c{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);}
.md{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);}
.me{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);}
.m1{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);}
.mb{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-22.854000px;}
.v8{vertical-align:-14.778000px;}
.v3{vertical-align:-8.964000px;}
.v2{vertical-align:-6.006000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:15.774000px;}
.ve{vertical-align:16.884000px;}
.v9{vertical-align:17.934000px;}
.v1{vertical-align:21.690000px;}
.v4{vertical-align:24.684000px;}
.vd{vertical-align:31.050000px;}
.vf{vertical-align:38.574000px;}
.v7{vertical-align:40.440000px;}
.vb{vertical-align:46.992000px;}
.va{vertical-align:48.984000px;}
.vc{vertical-align:55.854000px;}
.lsf{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000921px;}
.ls2b{letter-spacing:0.001469px;}
.ls9{letter-spacing:0.002798px;}
.ls1c{letter-spacing:0.002886px;}
.ls26{letter-spacing:0.006921px;}
.ls3a{letter-spacing:0.014056px;}
.ls13{letter-spacing:1.613941px;}
.ls1{letter-spacing:1.654313px;}
.ls2f{letter-spacing:1.654398px;}
.ls33{letter-spacing:1.659558px;}
.ls27{letter-spacing:1.673717px;}
.ls8{letter-spacing:1.687588px;}
.ls22{letter-spacing:2.988411px;}
.ls2a{letter-spacing:2.989140px;}
.ls21{letter-spacing:2.992307px;}
.ls23{letter-spacing:2.993543px;}
.ls35{letter-spacing:3.153453px;}
.ls3d{letter-spacing:4.270641px;}
.ls3c{letter-spacing:4.276641px;}
.ls29{letter-spacing:4.281333px;}
.ls14{letter-spacing:6.486694px;}
.ls17{letter-spacing:13.270183px;}
.ls3e{letter-spacing:13.449600px;}
.ls7{letter-spacing:14.943900px;}
.ls6{letter-spacing:16.557841px;}
.ls5{letter-spacing:16.617617px;}
.lsc{letter-spacing:16.677392px;}
.ls42{letter-spacing:17.454475px;}
.ls41{letter-spacing:17.514251px;}
.ls16{letter-spacing:17.554641px;}
.ls2d{letter-spacing:18.530436px;}
.ls12{letter-spacing:19.216641px;}
.ls28{letter-spacing:19.221333px;}
.ls11{letter-spacing:20.861684px;}
.ls15{letter-spacing:20.878641px;}
.lsb{letter-spacing:20.932641px;}
.ls1a{letter-spacing:26.062162px;}
.ls19{letter-spacing:26.121937px;}
.ls0{letter-spacing:26.540366px;}
.ls10{letter-spacing:27.317449px;}
.ls25{letter-spacing:27.915205px;}
.ls4{letter-spacing:28.094532px;}
.ls40{letter-spacing:29.290044px;}
.ls3f{letter-spacing:29.349820px;}
.ls24{letter-spacing:29.887800px;}
.lse{letter-spacing:31.681068px;}
.ls3{letter-spacing:32.386641px;}
.ls30{letter-spacing:35.090525px;}
.ls31{letter-spacing:35.096525px;}
.lsd{letter-spacing:35.932641px;}
.ls38{letter-spacing:45.796641px;}
.ls34{letter-spacing:50.036525px;}
.ls36{letter-spacing:62.656641px;}
.lsa{letter-spacing:66.787531px;}
.ls3b{letter-spacing:75.879372px;}
.ls37{letter-spacing:99.016641px;}
.ls1b{letter-spacing:108.754641px;}
.ls1d{letter-spacing:112.642641px;}
.ls39{letter-spacing:118.150641px;}
.ls1e{letter-spacing:180.632017px;}
.ls1f{letter-spacing:214.634177px;}
.ls20{letter-spacing:229.403251px;}
.ls2e{letter-spacing:235.913722px;}
.ls18{letter-spacing:971.233949px;}
.ls32{letter-spacing:1043.469269px;}
.ls2c{letter-spacing:1540.058558px;}
.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;}
}
.ws24{word-spacing:-38.937826px;}
.ws1f{word-spacing:-38.913916px;}
.ws2{word-spacing:-31.633157px;}
.ws3c{word-spacing:-28.955301px;}
.ws38{word-spacing:-28.383644px;}
.ws3e{word-spacing:-22.320209px;}
.ws52{word-spacing:-21.519300px;}
.ws17{word-spacing:-14.943900px;}
.ws3f{word-spacing:-10.460700px;}
.ws53{word-spacing:-1.972595px;}
.ws34{word-spacing:-1.315063px;}
.ws33{word-spacing:-1.255288px;}
.wsa{word-spacing:-0.896634px;}
.ws9{word-spacing:-0.836858px;}
.ws45{word-spacing:-0.777083px;}
.ws57{word-spacing:-0.478205px;}
.ws1a{word-spacing:-0.298878px;}
.ws11{word-spacing:-0.239102px;}
.wse{word-spacing:-0.179327px;}
.ws7{word-spacing:-0.119551px;}
.ws18{word-spacing:-0.059776px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:0.059776px;}
.ws6{word-spacing:0.119551px;}
.ws41{word-spacing:0.179327px;}
.wsc{word-spacing:0.239102px;}
.wsd{word-spacing:0.298878px;}
.ws8{word-spacing:0.358654px;}
.ws1b{word-spacing:0.418429px;}
.ws12{word-spacing:0.777083px;}
.ws3{word-spacing:1.016185px;}
.ws48{word-spacing:1.673717px;}
.ws1c{word-spacing:1.912819px;}
.ws1e{word-spacing:1.972595px;}
.ws56{word-spacing:3.048556px;}
.ws3d{word-spacing:3.586536px;}
.ws22{word-spacing:3.706087px;}
.ws16{word-spacing:3.765863px;}
.ws23{word-spacing:3.825638px;}
.ws3a{word-spacing:4.004965px;}
.ws46{word-spacing:4.483170px;}
.wsf{word-spacing:4.542946px;}
.ws10{word-spacing:4.602721px;}
.ws4c{word-spacing:4.662497px;}
.ws27{word-spacing:4.722272px;}
.ws54{word-spacing:4.841824px;}
.ws1{word-spacing:4.961375px;}
.ws50{word-spacing:5.379804px;}
.ws4{word-spacing:5.798233px;}
.ws47{word-spacing:6.097111px;}
.ws20{word-spacing:6.216662px;}
.ws4e{word-spacing:6.395989px;}
.ws4f{word-spacing:6.455765px;}
.ws55{word-spacing:6.575316px;}
.ws15{word-spacing:7.651277px;}
.ws14{word-spacing:7.711052px;}
.ws40{word-spacing:7.770828px;}
.ws1d{word-spacing:9.982525px;}
.ws4d{word-spacing:12.791978px;}
.ws3b{word-spacing:12.903687px;}
.ws26{word-spacing:13.210408px;}
.ws30{word-spacing:14.884124px;}
.ws19{word-spacing:14.943900px;}
.ws28{word-spacing:16.498066px;}
.ws25{word-spacing:16.557841px;}
.ws35{word-spacing:17.932650px;}
.ws39{word-spacing:23.465627px;}
.ws37{word-spacing:26.458423px;}
.ws36{word-spacing:28.510423px;}
.ws51{word-spacing:35.805584px;}
.ws13{word-spacing:53.798400px;}
.ws31{word-spacing:63.421912px;}
.wsb{word-spacing:64.557900px;}
.ws4b{word-spacing:124.059110px;}
.ws4a{word-spacing:137.508710px;}
.ws44{word-spacing:159.619853px;}
.ws2f{word-spacing:186.858526px;}
.ws43{word-spacing:200.937024px;}
.ws42{word-spacing:249.301786px;}
.ws2b{word-spacing:292.780889px;}
.ws2e{word-spacing:301.747229px;}
.ws2c{word-spacing:312.626388px;}
.ws2a{word-spacing:316.691129px;}
.ws49{word-spacing:324.108417px;}
.ws32{word-spacing:326.613878px;}
.ws2d{word-spacing:326.793205px;}
.ws29{word-spacing:543.539531px;}
.ws21{word-spacing:1174.263265px;}
._d{margin-left:-6.455790px;}
._e{margin-left:-5.384584px;}
._1{margin-left:-4.131696px;}
._9{margin-left:-2.682722px;}
._0{margin-left:-1.549386px;}
._17{width:1.659449px;}
._18{width:3.141842px;}
._5{width:14.047266px;}
._16{width:15.710750px;}
._6{width:17.629022px;}
._4{width:18.709763px;}
._2{width:21.220338px;}
._11{width:22.236672px;}
._b{width:24.993380px;}
._f{width:26.683932px;}
._22{width:28.034756px;}
._3{width:30.421001px;}
._8{width:31.975166px;}
._2b{width:33.115682px;}
._a{width:34.131868px;}
._12{width:38.251604px;}
._19{width:43.031252px;}
._10{width:71.731200px;}
._1a{width:77.684890px;}
._c{width:86.077200px;}
._1b{width:99.903629px;}
._2a{width:152.410867px;}
._20{width:165.860467px;}
._15{width:186.559648px;}
._27{width:207.478880px;}
._29{width:218.152512px;}
._26{width:245.051712px;}
._25{width:255.542400px;}
._28{width:261.180451px;}
._21{width:263.665958px;}
._1f{width:267.109056px;}
._1d{width:277.115558px;}
._1c{width:280.558656px;}
._1e{width:281.839037px;}
._14{width:288.677911px;}
._13{width:322.429586px;}
._23{width:335.821015px;}
._7{width:1008.474148px;}
._24{width:1255.375851px;}
.fc4{color:transparent;}
.fc3{color:rgb(30,136,229);}
.fc1{color:rgb(229,57,53);}
.fc2{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:29.887800px;}
.fsb{font-size:35.406504px;}
.fs6{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs9{font-size:42.150600px;}
.fs8{font-size:47.820600px;}
.fsa{font-size:50.580720px;}
.fs7{font-size:53.798400px;}
.fsc{font-size:59.010840px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y9d{bottom:10.254451px;}
.y9c{bottom:25.764554px;}
.ya7{bottom:36.911412px;}
.y9e{bottom:62.416038px;}
.y27{bottom:63.168000px;}
.yac{bottom:97.817053px;}
.ya8{bottom:104.923747px;}
.y26{bottom:108.000000px;}
.y4d{bottom:118.068000px;}
.ya3{bottom:125.231408px;}
.y25{bottom:125.932500px;}
.y9f{bottom:126.177602px;}
.yc5{bottom:136.300500px;}
.y4c{bottom:147.955500px;}
.y24{bottom:154.350000px;}
.y76{bottom:155.485500px;}
.yc4{bottom:164.599500px;}
.y4b{bottom:165.888000px;}
.yad{bottom:167.025951px;}
.y23{bottom:172.282500px;}
.ya9{bottom:172.936082px;}
.yae{bottom:174.187643px;}
.y9a{bottom:184.551000px;}
.y75{bottom:185.037000px;}
.ya0{bottom:189.939165px;}
.yc3{bottom:192.619500px;}
.y22{bottom:200.698500px;}
.y99{bottom:202.483500px;}
.y4a{bottom:207.144000px;}
.y74{bottom:214.254000px;}
.y21{bottom:218.631000px;}
.y98{bottom:220.416000px;}
.y73{bottom:227.965500px;}
.y49{bottom:228.382500px;}
.y72{bottom:232.186500px;}
.yc2{bottom:234.682500px;}
.y97{bottom:238.350000px;}
.yaa{bottom:240.948417px;}
.y48{bottom:246.315000px;}
.y20{bottom:246.651000px;}
.y71{bottom:250.119000px;}
.yc1{bottom:252.615000px;}
.ya1{bottom:253.700729px;}
.y47{bottom:264.247500px;}
.y96{bottom:266.370000px;}
.ye4{bottom:272.353500px;}
.y70{bottom:278.139000px;}
.yc0{bottom:280.915500px;}
.y46{bottom:282.315000px;}
.y1f{bottom:288.766500px;}
.ybf{bottom:298.848000px;}
.ye3{bottom:302.242500px;}
.y1e{bottom:306.699000px;}
.y45{bottom:308.055000px;}
.yab{bottom:308.960751px;}
.y95{bottom:309.147000px;}
.y6f{bottom:314.527500px;}
.ya6{bottom:314.811635px;}
.ya2{bottom:317.462293px;}
.ye2{bottom:320.175000px;}
.ya5{bottom:321.776969px;}
.y1d{bottom:324.631500px;}
.y94{bottom:327.079500px;}
.ybe{bottom:327.148500px;}
.y44{bottom:330.904500px;}
.ya4{bottom:333.075306px;}
.y1c{bottom:342.564000px;}
.y93{bottom:345.012000px;}
.ybd{bottom:345.081000px;}
.ye1{bottom:350.062500px;}
.yaf{bottom:353.060012px;}
.y1b{bottom:360.496500px;}
.y92{bottom:362.944500px;}
.y6e{bottom:364.812000px;}
.ye0{bottom:367.995000px;}
.ybc{bottom:373.101000px;}
.y43{bottom:377.148000px;}
.y1a{bottom:378.430500px;}
.y6d{bottom:378.760500px;}
.y6c{bottom:382.744500px;}
.y91{bottom:390.964500px;}
.y19{bottom:396.363000px;}
.ydf{bottom:397.882500px;}
.y42{bottom:405.168000px;}
.y6a{bottom:413.952000px;}
.y18{bottom:414.295500px;}
.y6b{bottom:414.450000px;}
.ybb{bottom:415.162500px;}
.y90{bottom:427.353000px;}
.yde{bottom:427.771500px;}
.y69{bottom:429.643500px;}
.y68{bottom:432.399000px;}
.yba{bottom:433.095000px;}
.y67{bottom:436.342500px;}
.y17{bottom:438.987000px;}
.y41{bottom:447.945000px;}
.y16{bottom:456.919500px;}
.ydd{bottom:457.659000px;}
.yb9{bottom:462.318000px;}
.y40{bottom:465.879000px;}
.y66{bottom:470.994000px;}
.y15{bottom:474.853500px;}
.ydc{bottom:475.591500px;}
.y8f{bottom:477.789000px;}
.yb8{bottom:478.756500px;}
.y3f{bottom:483.811500px;}
.yb7{bottom:495.195000px;}
.y8e{bottom:495.721500px;}
.y65{bottom:499.014000px;}
.ydb{bottom:505.479000px;}
.y14{bottom:508.252500px;}
.yb6{bottom:511.633500px;}
.y8d{bottom:513.654000px;}
.y3e{bottom:516.687000px;}
.y8c{bottom:531.586500px;}
.yda{bottom:535.368000px;}
.yb5{bottom:535.879500px;}
.y64{bottom:541.639500px;}
.y8b{bottom:549.519000px;}
.y3d{bottom:549.564000px;}
.y13{bottom:558.027000px;}
.y63{bottom:559.573500px;}
.yd9{bottom:565.255500px;}
.yb4{bottom:566.461500px;}
.y3c{bottom:567.496500px;}
.y62{bottom:577.506000px;}
.y8a{bottom:579.408000px;}
.y12{bottom:581.200500px;}
.yd8{bottom:583.188000px;}
.y3b{bottom:585.430500px;}
.yb3{bottom:594.481500px;}
.y61{bottom:595.438500px;}
.y11{bottom:599.134500px;}
.y3a{bottom:603.363000px;}
.y89{bottom:609.295500px;}
.yd7{bottom:613.075500px;}
.y60{bottom:613.371000px;}
.y10{bottom:622.308000px;}
.yd6{bottom:631.009500px;}
.y39{bottom:636.240000px;}
.y88{bottom:639.183000px;}
.yb2{bottom:639.874500px;}
.yf{bottom:640.240500px;}
.y5f{bottom:654.741000px;}
.yb1{bottom:657.807000px;}
.ye{bottom:663.415500px;}
.yd5{bottom:664.408500px;}
.y87{bottom:669.072000px;}
.y38{bottom:669.115500px;}
.y5e{bottom:674.293500px;}
.yb0{bottom:675.739500px;}
.yd{bottom:681.348000px;}
.y37{bottom:687.049500px;}
.y5d{bottom:692.226000px;}
.y86{bottom:698.959500px;}
.yc{bottom:699.282000px;}
.y36{bottom:704.982000px;}
.y9b{bottom:708.616500px;}
.y5c{bottom:710.158500px;}
.yd4{bottom:714.844500px;}
.y85{bottom:716.892000px;}
.yb{bottom:717.214500px;}
.y35{bottom:722.914500px;}
.y5b{bottom:728.091000px;}
.yd3{bottom:732.777000px;}
.ya{bottom:735.147000px;}
.y5a{bottom:742.134000px;}
.y84{bottom:744.912000px;}
.y59{bottom:746.025000px;}
.yd2{bottom:750.709500px;}
.y34{bottom:750.934500px;}
.y9{bottom:758.322000px;}
.y58{bottom:763.957500px;}
.yd1{bottom:768.642000px;}
.y8{bottom:776.254500px;}
.y57{bottom:781.890000px;}
.yd0{bottom:786.576000px;}
.y33{bottom:787.323000px;}
.y83{bottom:787.689000px;}
.y7{bottom:794.187000px;}
.y56{bottom:799.822500px;}
.ycf{bottom:804.508500px;}
.y82{bottom:805.621500px;}
.y55{bottom:817.755000px;}
.yce{bottom:822.441000px;}
.y81{bottom:823.554000px;}
.y6{bottom:826.747500px;}
.y32{bottom:837.759000px;}
.y54{bottom:837.943500px;}
.ycd{bottom:855.318000px;}
.y31{bottom:855.691500px;}
.y80{bottom:856.117500px;}
.y7f{bottom:872.556000px;}
.y30{bottom:873.624000px;}
.y53{bottom:883.749000px;}
.y5{bottom:884.233500px;}
.ycc{bottom:885.205500px;}
.y7e{bottom:888.994500px;}
.y2f{bottom:891.556500px;}
.y4{bottom:905.155500px;}
.y7d{bottom:905.433000px;}
.y2e{bottom:909.489000px;}
.ycb{bottom:915.093000px;}
.y52{bottom:920.137500px;}
.y3{bottom:926.077500px;}
.y2d{bottom:927.423000px;}
.y7c{bottom:929.679000px;}
.yca{bottom:933.025500px;}
.y2c{bottom:945.355500px;}
.yc9{bottom:962.914500px;}
.y2b{bottom:963.288000px;}
.y7b{bottom:963.436500px;}
.y2{bottom:969.414000px;}
.y51{bottom:970.422000px;}
.yc8{bottom:980.847000px;}
.y2a{bottom:981.220500px;}
.y7a{bottom:981.370500px;}
.y50{bottom:988.354500px;}
.y79{bottom:999.303000px;}
.y1{bottom:1002.291000px;}
.y4f{bottom:1006.287000px;}
.yc7{bottom:1013.724000px;}
.y29{bottom:1014.621000px;}
.y78{bottom:1017.235500px;}
.yc6{bottom:1031.656500px;}
.y77{bottom:1035.168000px;}
.y4e{bottom:1035.504000px;}
.y28{bottom:1065.055500px;}
.h10{height:16.604100px;}
.hb{height:24.871000px;}
.he{height:31.382100px;}
.h1f{height:32.892642px;}
.h1c{height:38.188444px;}
.h1a{height:39.111437px;}
.h21{height:39.930101px;}
.hd{height:41.484266px;}
.h5{height:43.456861px;}
.h7{height:44.831700px;}
.h1d{height:45.826132px;}
.h3{height:47.916442px;}
.h4{height:49.781453px;}
.h17{height:52.109716px;}
.h2{height:52.148582px;}
.h6{height:53.072100px;}
.h20{height:53.463821px;}
.ha{height:56.060100px;}
.h9{height:56.066100px;}
.h8{height:59.737577px;}
.h19{height:60.340861px;}
.hc{height:60.605700px;}
.h16{height:60.767700px;}
.h14{height:62.432100px;}
.h18{height:68.993716px;}
.h1e{height:69.930691px;}
.h1{height:75.093575px;}
.h15{height:78.368100px;}
.h12{height:78.374100px;}
.h11{height:80.366100px;}
.hf{height:85.271700px;}
.h13{height:115.252861px;}
.h1b{height:371.382351px;}
.h0{height:1188.000000px;}
.w1{width:596.713531px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x63{left:16.791087px;}
.x62{left:23.673489px;}
.x64{left:52.974927px;}
.x60{left:63.028439px;}
.x14{left:108.000000px;}
.x57{left:112.522500px;}
.x40{left:116.631000px;}
.x78{left:122.481000px;}
.x1e{left:126.679500px;}
.x16{left:130.416000px;}
.x3b{left:132.657000px;}
.x38{left:143.101500px;}
.x7{left:145.360500px;}
.x49{left:154.447500px;}
.x58{left:158.554500px;}
.x59{left:166.086000px;}
.x1{left:182.011500px;}
.x4a{left:183.685500px;}
.x5a{left:185.182500px;}
.x53{left:188.001000px;}
.x42{left:190.420500px;}
.x36{left:199.150500px;}
.x67{left:206.020500px;}
.x37{left:207.885000px;}
.x68{left:213.492000px;}
.x6f{left:225.637500px;}
.x4b{left:233.349000px;}
.x54{left:237.805500px;}
.x2{left:242.178000px;}
.x76{left:245.313000px;}
.x61{left:251.101991px;}
.x6b{left:265.570500px;}
.x1f{left:274.215000px;}
.x70{left:287.031000px;}
.x4c{left:292.102500px;}
.x10{left:300.609000px;}
.x6a{left:301.648500px;}
.x6c{left:310.336500px;}
.x41{left:322.060500px;}
.x6d{left:325.692000px;}
.x3f{left:330.394500px;}
.x4d{left:337.549500px;}
.x71{left:344.875500px;}
.x5{left:346.023000px;}
.x20{left:348.984000px;}
.x11{left:350.361000px;}
.x33{left:367.242000px;}
.x4{left:372.610500px;}
.x15{left:376.545000px;}
.x44{left:383.499000px;}
.x43{left:386.142000px;}
.x21{left:389.001000px;}
.x2b{left:391.083000px;}
.x5b{left:395.356500px;}
.x34{left:397.600500px;}
.x22{left:399.721500px;}
.x6e{left:401.086500px;}
.x2c{left:402.609000px;}
.x3{left:406.458000px;}
.x3c{left:409.441500px;}
.x45{left:412.995000px;}
.x55{left:418.192500px;}
.x6{left:425.637000px;}
.x46{left:428.769000px;}
.x56{left:429.816000px;}
.x1a{left:439.252500px;}
.xa{left:455.256000px;}
.x1b{left:458.199000px;}
.x5c{left:465.331500px;}
.x27{left:469.324500px;}
.x28{left:477.102000px;}
.x47{left:483.222000px;}
.x35{left:485.536500px;}
.x5d{left:488.088000px;}
.x23{left:491.929500px;}
.x4e{left:493.431000px;}
.x17{left:497.353500px;}
.x4f{left:508.911000px;}
.x48{left:512.166000px;}
.x24{left:514.968000px;}
.x51{left:518.568000px;}
.x69{left:526.008000px;}
.xb{left:527.770500px;}
.x52{left:530.191500px;}
.x3d{left:532.309500px;}
.x8{left:536.631000px;}
.x19{left:543.600000px;}
.x3e{left:550.813500px;}
.x39{left:553.872000px;}
.x65{left:556.558498px;}
.x3a{left:565.495500px;}
.x18{left:566.908500px;}
.xc{left:570.297000px;}
.x12{left:574.084500px;}
.xd{left:583.365000px;}
.x2d{left:585.256500px;}
.x66{left:587.183544px;}
.x13{left:596.820000px;}
.x2e{left:604.549500px;}
.x9{left:610.644000px;}
.x50{left:612.258000px;}
.x74{left:632.557500px;}
.x29{left:655.044000px;}
.x2a{left:662.049000px;}
.x25{left:663.273000px;}
.x75{left:666.597000px;}
.x5e{left:669.708000px;}
.x26{left:671.050500px;}
.x5f{left:688.114500px;}
.x77{left:716.800500px;}
.x72{left:734.038500px;}
.xe{left:750.180000px;}
.xf{left:762.474000px;}
.x31{left:766.306500px;}
.x2f{left:770.167500px;}
.x30{left:777.172500px;}
.x73{left:780.505500px;}
.x1c{left:783.133500px;}
.x1d{left:794.757000px;}
.x32{left:808.954500px;}
@media print{
.v5{vertical-align:-20.314667pt;}
.v8{vertical-align:-13.136000pt;}
.v3{vertical-align:-7.968000pt;}
.v2{vertical-align:-5.338667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:14.021333pt;}
.ve{vertical-align:15.008000pt;}
.v9{vertical-align:15.941333pt;}
.v1{vertical-align:19.280000pt;}
.v4{vertical-align:21.941333pt;}
.vd{vertical-align:27.600000pt;}
.vf{vertical-align:34.288000pt;}
.v7{vertical-align:35.946667pt;}
.vb{vertical-align:41.770667pt;}
.va{vertical-align:43.541333pt;}
.vc{vertical-align:49.648000pt;}
.lsf{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000818pt;}
.ls2b{letter-spacing:0.001306pt;}
.ls9{letter-spacing:0.002487pt;}
.ls1c{letter-spacing:0.002566pt;}
.ls26{letter-spacing:0.006152pt;}
.ls3a{letter-spacing:0.012495pt;}
.ls13{letter-spacing:1.434614pt;}
.ls1{letter-spacing:1.470500pt;}
.ls2f{letter-spacing:1.470576pt;}
.ls33{letter-spacing:1.475163pt;}
.ls27{letter-spacing:1.487748pt;}
.ls8{letter-spacing:1.500078pt;}
.ls22{letter-spacing:2.656365pt;}
.ls2a{letter-spacing:2.657014pt;}
.ls21{letter-spacing:2.659828pt;}
.ls23{letter-spacing:2.660927pt;}
.ls35{letter-spacing:2.803069pt;}
.ls3d{letter-spacing:3.796125pt;}
.ls3c{letter-spacing:3.801458pt;}
.ls29{letter-spacing:3.805629pt;}
.ls14{letter-spacing:5.765950pt;}
.ls17{letter-spacing:11.795718pt;}
.ls3e{letter-spacing:11.955200pt;}
.ls7{letter-spacing:13.283467pt;}
.ls6{letter-spacing:14.718081pt;}
.ls5{letter-spacing:14.771215pt;}
.lsc{letter-spacing:14.824349pt;}
.ls42{letter-spacing:15.515089pt;}
.ls41{letter-spacing:15.568223pt;}
.ls16{letter-spacing:15.604125pt;}
.ls2d{letter-spacing:16.471499pt;}
.ls12{letter-spacing:17.081458pt;}
.ls28{letter-spacing:17.085629pt;}
.ls11{letter-spacing:18.543719pt;}
.ls15{letter-spacing:18.558792pt;}
.lsb{letter-spacing:18.606792pt;}
.ls1a{letter-spacing:23.166366pt;}
.ls19{letter-spacing:23.219500pt;}
.ls0{letter-spacing:23.591437pt;}
.ls10{letter-spacing:24.282177pt;}
.ls25{letter-spacing:24.813516pt;}
.ls4{letter-spacing:24.972917pt;}
.ls40{letter-spacing:26.035595pt;}
.ls3f{letter-spacing:26.088729pt;}
.ls24{letter-spacing:26.566933pt;}
.lse{letter-spacing:28.160949pt;}
.ls3{letter-spacing:28.788125pt;}
.ls30{letter-spacing:31.191578pt;}
.ls31{letter-spacing:31.196911pt;}
.lsd{letter-spacing:31.940125pt;}
.ls38{letter-spacing:40.708125pt;}
.ls34{letter-spacing:44.476911pt;}
.ls36{letter-spacing:55.694792pt;}
.lsa{letter-spacing:59.366694pt;}
.ls3b{letter-spacing:67.448330pt;}
.ls37{letter-spacing:88.014792pt;}
.ls1b{letter-spacing:96.670792pt;}
.ls1d{letter-spacing:100.126792pt;}
.ls39{letter-spacing:105.022792pt;}
.ls1e{letter-spacing:160.561793pt;}
.ls1f{letter-spacing:190.785935pt;}
.ls20{letter-spacing:203.914001pt;}
.ls2e{letter-spacing:209.701086pt;}
.ls18{letter-spacing:863.319066pt;}
.ls32{letter-spacing:927.528239pt;}
.ls2c{letter-spacing:1368.940941pt;}
.ws24{word-spacing:-34.611401pt;}
.ws1f{word-spacing:-34.590147pt;}
.ws2{word-spacing:-28.118362pt;}
.ws3c{word-spacing:-25.738045pt;}
.ws38{word-spacing:-25.229906pt;}
.ws3e{word-spacing:-19.840186pt;}
.ws52{word-spacing:-19.128267pt;}
.ws17{word-spacing:-13.283467pt;}
.ws3f{word-spacing:-9.298400pt;}
.ws53{word-spacing:-1.753418pt;}
.ws34{word-spacing:-1.168945pt;}
.ws33{word-spacing:-1.115811pt;}
.wsa{word-spacing:-0.797008pt;}
.ws9{word-spacing:-0.743874pt;}
.ws45{word-spacing:-0.690740pt;}
.ws57{word-spacing:-0.425071pt;}
.ws1a{word-spacing:-0.265669pt;}
.ws11{word-spacing:-0.212535pt;}
.wse{word-spacing:-0.159402pt;}
.ws7{word-spacing:-0.106268pt;}
.ws18{word-spacing:-0.053134pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:0.053134pt;}
.ws6{word-spacing:0.106268pt;}
.ws41{word-spacing:0.159402pt;}
.wsc{word-spacing:0.212535pt;}
.wsd{word-spacing:0.265669pt;}
.ws8{word-spacing:0.318803pt;}
.ws1b{word-spacing:0.371937pt;}
.ws12{word-spacing:0.690740pt;}
.ws3{word-spacing:0.903276pt;}
.ws48{word-spacing:1.487748pt;}
.ws1c{word-spacing:1.700284pt;}
.ws1e{word-spacing:1.753418pt;}
.ws56{word-spacing:2.709827pt;}
.ws3d{word-spacing:3.188032pt;}
.ws22{word-spacing:3.294300pt;}
.ws16{word-spacing:3.347434pt;}
.ws23{word-spacing:3.400567pt;}
.ws3a{word-spacing:3.559969pt;}
.ws46{word-spacing:3.985040pt;}
.wsf{word-spacing:4.038174pt;}
.ws10{word-spacing:4.091308pt;}
.ws4c{word-spacing:4.144442pt;}
.ws27{word-spacing:4.197575pt;}
.ws54{word-spacing:4.303843pt;}
.ws1{word-spacing:4.410111pt;}
.ws50{word-spacing:4.782048pt;}
.ws4{word-spacing:5.153985pt;}
.ws47{word-spacing:5.419654pt;}
.ws20{word-spacing:5.525922pt;}
.ws4e{word-spacing:5.685324pt;}
.ws4f{word-spacing:5.738458pt;}
.ws55{word-spacing:5.844725pt;}
.ws15{word-spacing:6.801135pt;}
.ws14{word-spacing:6.854269pt;}
.ws40{word-spacing:6.907403pt;}
.ws1d{word-spacing:8.873356pt;}
.ws4d{word-spacing:11.370647pt;}
.ws3b{word-spacing:11.469944pt;}
.ws26{word-spacing:11.742585pt;}
.ws30{word-spacing:13.230333pt;}
.ws19{word-spacing:13.283467pt;}
.ws28{word-spacing:14.664947pt;}
.ws25{word-spacing:14.718081pt;}
.ws35{word-spacing:15.940133pt;}
.ws39{word-spacing:20.858335pt;}
.ws37{word-spacing:23.518598pt;}
.ws36{word-spacing:25.342598pt;}
.ws51{word-spacing:31.827186pt;}
.ws13{word-spacing:47.820800pt;}
.ws31{word-spacing:56.375033pt;}
.wsb{word-spacing:57.384800pt;}
.ws4b{word-spacing:110.274765pt;}
.ws4a{word-spacing:122.229965pt;}
.ws44{word-spacing:141.884314pt;}
.ws2f{word-spacing:166.096467pt;}
.ws43{word-spacing:178.610688pt;}
.ws42{word-spacing:221.601587pt;}
.ws2b{word-spacing:260.249679pt;}
.ws2e{word-spacing:268.219759pt;}
.ws2c{word-spacing:277.890123pt;}
.ws2a{word-spacing:281.503226pt;}
.ws49{word-spacing:288.096371pt;}
.ws32{word-spacing:290.323447pt;}
.ws2d{word-spacing:290.482849pt;}
.ws29{word-spacing:483.146250pt;}
.ws21{word-spacing:1043.789569pt;}
._d{margin-left:-5.738480pt;}
._e{margin-left:-4.786297pt;}
._1{margin-left:-3.672619pt;}
._9{margin-left:-2.384642pt;}
._0{margin-left:-1.377232pt;}
._17{width:1.475066pt;}
._18{width:2.792749pt;}
._5{width:12.486459pt;}
._16{width:13.965111pt;}
._6{width:15.670242pt;}
._4{width:16.630900pt;}
._2{width:18.862523pt;}
._11{width:19.765931pt;}
._b{width:22.216338pt;}
._f{width:23.719051pt;}
._22{width:24.919783pt;}
._3{width:27.040890pt;}
._8{width:28.422370pt;}
._2b{width:29.436162pt;}
._a{width:30.339438pt;}
._12{width:34.001426pt;}
._19{width:38.250002pt;}
._10{width:63.761067pt;}
._1a{width:69.053235pt;}
._c{width:76.513067pt;}
._1b{width:88.803226pt;}
._2a{width:135.476326pt;}
._20{width:147.431526pt;}
._15{width:165.830798pt;}
._27{width:184.425671pt;}
._29{width:193.913344pt;}
._26{width:217.823744pt;}
._25{width:227.148800pt;}
._28{width:232.160401pt;}
._21{width:234.369741pt;}
._1f{width:237.430272pt;}
._1d{width:246.324941pt;}
._1c{width:249.385472pt;}
._1e{width:250.523588pt;}
._14{width:256.602588pt;}
._13{width:286.604077pt;}
._23{width:298.507569pt;}
._7{width:896.421465pt;}
._24{width:1115.889645pt;}
.fs4{font-size:26.566933pt;}
.fsb{font-size:31.472448pt;}
.fs6{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs9{font-size:37.467200pt;}
.fs8{font-size:42.507200pt;}
.fsa{font-size:44.960640pt;}
.fs7{font-size:47.820800pt;}
.fsc{font-size:52.454080pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:9.115067pt;}
.y9c{bottom:22.901826pt;}
.ya7{bottom:32.810144pt;}
.y9e{bottom:55.480922pt;}
.y27{bottom:56.149333pt;}
.yac{bottom:86.948492pt;}
.ya8{bottom:93.265553pt;}
.y26{bottom:96.000000pt;}
.y4d{bottom:104.949333pt;}
.ya3{bottom:111.316807pt;}
.y25{bottom:111.940000pt;}
.y9f{bottom:112.157868pt;}
.yc5{bottom:121.156000pt;}
.y4c{bottom:131.516000pt;}
.y24{bottom:137.200000pt;}
.y76{bottom:138.209333pt;}
.yc4{bottom:146.310667pt;}
.y4b{bottom:147.456000pt;}
.yad{bottom:148.467512pt;}
.y23{bottom:153.140000pt;}
.ya9{bottom:153.720962pt;}
.yae{bottom:154.833460pt;}
.y9a{bottom:164.045333pt;}
.y75{bottom:164.477333pt;}
.ya0{bottom:168.834814pt;}
.yc3{bottom:171.217333pt;}
.y22{bottom:178.398667pt;}
.y99{bottom:179.985333pt;}
.y4a{bottom:184.128000pt;}
.y74{bottom:190.448000pt;}
.y21{bottom:194.338667pt;}
.y98{bottom:195.925333pt;}
.y73{bottom:202.636000pt;}
.y49{bottom:203.006667pt;}
.y72{bottom:206.388000pt;}
.yc2{bottom:208.606667pt;}
.y97{bottom:211.866667pt;}
.yaa{bottom:214.176370pt;}
.y48{bottom:218.946667pt;}
.y20{bottom:219.245333pt;}
.y71{bottom:222.328000pt;}
.yc1{bottom:224.546667pt;}
.ya1{bottom:225.511759pt;}
.y47{bottom:234.886667pt;}
.y96{bottom:236.773333pt;}
.ye4{bottom:242.092000pt;}
.y70{bottom:247.234667pt;}
.yc0{bottom:249.702667pt;}
.y46{bottom:250.946667pt;}
.y1f{bottom:256.681333pt;}
.ybf{bottom:265.642667pt;}
.ye3{bottom:268.660000pt;}
.y1e{bottom:272.621333pt;}
.y45{bottom:273.826667pt;}
.yab{bottom:274.631779pt;}
.y95{bottom:274.797333pt;}
.y6f{bottom:279.580000pt;}
.ya6{bottom:279.832565pt;}
.ya2{bottom:282.188705pt;}
.ye2{bottom:284.600000pt;}
.ya5{bottom:286.023973pt;}
.y1d{bottom:288.561333pt;}
.y94{bottom:290.737333pt;}
.ybe{bottom:290.798667pt;}
.y44{bottom:294.137333pt;}
.ya4{bottom:296.066938pt;}
.y1c{bottom:304.501333pt;}
.y93{bottom:306.677333pt;}
.ybd{bottom:306.738667pt;}
.ye1{bottom:311.166667pt;}
.yaf{bottom:313.831121pt;}
.y1b{bottom:320.441333pt;}
.y92{bottom:322.617333pt;}
.y6e{bottom:324.277333pt;}
.ye0{bottom:327.106667pt;}
.ybc{bottom:331.645333pt;}
.y43{bottom:335.242667pt;}
.y1a{bottom:336.382667pt;}
.y6d{bottom:336.676000pt;}
.y6c{bottom:340.217333pt;}
.y91{bottom:347.524000pt;}
.y19{bottom:352.322667pt;}
.ydf{bottom:353.673333pt;}
.y42{bottom:360.149333pt;}
.y6a{bottom:367.957333pt;}
.y18{bottom:368.262667pt;}
.y6b{bottom:368.400000pt;}
.ybb{bottom:369.033333pt;}
.y90{bottom:379.869333pt;}
.yde{bottom:380.241333pt;}
.y69{bottom:381.905333pt;}
.y68{bottom:384.354667pt;}
.yba{bottom:384.973333pt;}
.y67{bottom:387.860000pt;}
.y17{bottom:390.210667pt;}
.y41{bottom:398.173333pt;}
.y16{bottom:406.150667pt;}
.ydd{bottom:406.808000pt;}
.yb9{bottom:410.949333pt;}
.y40{bottom:414.114667pt;}
.y66{bottom:418.661333pt;}
.y15{bottom:422.092000pt;}
.ydc{bottom:422.748000pt;}
.y8f{bottom:424.701333pt;}
.yb8{bottom:425.561333pt;}
.y3f{bottom:430.054667pt;}
.yb7{bottom:440.173333pt;}
.y8e{bottom:440.641333pt;}
.y65{bottom:443.568000pt;}
.ydb{bottom:449.314667pt;}
.y14{bottom:451.780000pt;}
.yb6{bottom:454.785333pt;}
.y8d{bottom:456.581333pt;}
.y3e{bottom:459.277333pt;}
.y8c{bottom:472.521333pt;}
.yda{bottom:475.882667pt;}
.yb5{bottom:476.337333pt;}
.y64{bottom:481.457333pt;}
.y8b{bottom:488.461333pt;}
.y3d{bottom:488.501333pt;}
.y13{bottom:496.024000pt;}
.y63{bottom:497.398667pt;}
.yd9{bottom:502.449333pt;}
.yb4{bottom:503.521333pt;}
.y3c{bottom:504.441333pt;}
.y62{bottom:513.338667pt;}
.y8a{bottom:515.029333pt;}
.y12{bottom:516.622667pt;}
.yd8{bottom:518.389333pt;}
.y3b{bottom:520.382667pt;}
.yb3{bottom:528.428000pt;}
.y61{bottom:529.278667pt;}
.y11{bottom:532.564000pt;}
.y3a{bottom:536.322667pt;}
.y89{bottom:541.596000pt;}
.yd7{bottom:544.956000pt;}
.y60{bottom:545.218667pt;}
.y10{bottom:553.162667pt;}
.yd6{bottom:560.897333pt;}
.y39{bottom:565.546667pt;}
.y88{bottom:568.162667pt;}
.yb2{bottom:568.777333pt;}
.yf{bottom:569.102667pt;}
.y5f{bottom:581.992000pt;}
.yb1{bottom:584.717333pt;}
.ye{bottom:589.702667pt;}
.yd5{bottom:590.585333pt;}
.y87{bottom:594.730667pt;}
.y38{bottom:594.769333pt;}
.y5e{bottom:599.372000pt;}
.yb0{bottom:600.657333pt;}
.yd{bottom:605.642667pt;}
.y37{bottom:610.710667pt;}
.y5d{bottom:615.312000pt;}
.y86{bottom:621.297333pt;}
.yc{bottom:621.584000pt;}
.y36{bottom:626.650667pt;}
.y9b{bottom:629.881333pt;}
.y5c{bottom:631.252000pt;}
.yd4{bottom:635.417333pt;}
.y85{bottom:637.237333pt;}
.yb{bottom:637.524000pt;}
.y35{bottom:642.590667pt;}
.y5b{bottom:647.192000pt;}
.yd3{bottom:651.357333pt;}
.ya{bottom:653.464000pt;}
.y5a{bottom:659.674667pt;}
.y84{bottom:662.144000pt;}
.y59{bottom:663.133333pt;}
.yd2{bottom:667.297333pt;}
.y34{bottom:667.497333pt;}
.y9{bottom:674.064000pt;}
.y58{bottom:679.073333pt;}
.yd1{bottom:683.237333pt;}
.y8{bottom:690.004000pt;}
.y57{bottom:695.013333pt;}
.yd0{bottom:699.178667pt;}
.y33{bottom:699.842667pt;}
.y83{bottom:700.168000pt;}
.y7{bottom:705.944000pt;}
.y56{bottom:710.953333pt;}
.ycf{bottom:715.118667pt;}
.y82{bottom:716.108000pt;}
.y55{bottom:726.893333pt;}
.yce{bottom:731.058667pt;}
.y81{bottom:732.048000pt;}
.y6{bottom:734.886667pt;}
.y32{bottom:744.674667pt;}
.y54{bottom:744.838667pt;}
.ycd{bottom:760.282667pt;}
.y31{bottom:760.614667pt;}
.y80{bottom:760.993333pt;}
.y7f{bottom:775.605333pt;}
.y30{bottom:776.554667pt;}
.y53{bottom:785.554667pt;}
.y5{bottom:785.985333pt;}
.ycc{bottom:786.849333pt;}
.y7e{bottom:790.217333pt;}
.y2f{bottom:792.494667pt;}
.y4{bottom:804.582667pt;}
.y7d{bottom:804.829333pt;}
.y2e{bottom:808.434667pt;}
.ycb{bottom:813.416000pt;}
.y52{bottom:817.900000pt;}
.y3{bottom:823.180000pt;}
.y2d{bottom:824.376000pt;}
.y7c{bottom:826.381333pt;}
.yca{bottom:829.356000pt;}
.y2c{bottom:840.316000pt;}
.yc9{bottom:855.924000pt;}
.y2b{bottom:856.256000pt;}
.y7b{bottom:856.388000pt;}
.y2{bottom:861.701333pt;}
.y51{bottom:862.597333pt;}
.yc8{bottom:871.864000pt;}
.y2a{bottom:872.196000pt;}
.y7a{bottom:872.329333pt;}
.y50{bottom:878.537333pt;}
.y79{bottom:888.269333pt;}
.y1{bottom:890.925333pt;}
.y4f{bottom:894.477333pt;}
.yc7{bottom:901.088000pt;}
.y29{bottom:901.885333pt;}
.y78{bottom:904.209333pt;}
.yc6{bottom:917.028000pt;}
.y77{bottom:920.149333pt;}
.y4e{bottom:920.448000pt;}
.y28{bottom:946.716000pt;}
.h10{height:14.759200pt;}
.hb{height:22.107556pt;}
.he{height:27.895200pt;}
.h1f{height:29.237904pt;}
.h1c{height:33.945283pt;}
.h1a{height:34.765722pt;}
.h21{height:35.493423pt;}
.hd{height:36.874903pt;}
.h5{height:38.628321pt;}
.h7{height:39.850400pt;}
.h1d{height:40.734340pt;}
.h3{height:42.592393pt;}
.h4{height:44.250180pt;}
.h17{height:46.319747pt;}
.h2{height:46.354295pt;}
.h6{height:47.175200pt;}
.h20{height:47.523396pt;}
.ha{height:49.831200pt;}
.h9{height:49.836533pt;}
.h8{height:53.100068pt;}
.h19{height:53.636321pt;}
.hc{height:53.871733pt;}
.h16{height:54.015733pt;}
.h14{height:55.495200pt;}
.h18{height:61.327747pt;}
.h1e{height:62.160614pt;}
.h1{height:66.749844pt;}
.h15{height:69.660533pt;}
.h12{height:69.665867pt;}
.h11{height:71.436533pt;}
.hf{height:75.797067pt;}
.h13{height:102.446988pt;}
.h1b{height:330.117645pt;}
.h0{height:1056.000000pt;}
.w1{width:530.412027pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x63{left:14.925410pt;}
.x62{left:21.043102pt;}
.x64{left:47.088824pt;}
.x60{left:56.025279pt;}
.x14{left:96.000000pt;}
.x57{left:100.020000pt;}
.x40{left:103.672000pt;}
.x78{left:108.872000pt;}
.x1e{left:112.604000pt;}
.x16{left:115.925333pt;}
.x3b{left:117.917333pt;}
.x38{left:127.201333pt;}
.x7{left:129.209333pt;}
.x49{left:137.286667pt;}
.x58{left:140.937333pt;}
.x59{left:147.632000pt;}
.x1{left:161.788000pt;}
.x4a{left:163.276000pt;}
.x5a{left:164.606667pt;}
.x53{left:167.112000pt;}
.x42{left:169.262667pt;}
.x36{left:177.022667pt;}
.x67{left:183.129333pt;}
.x37{left:184.786667pt;}
.x68{left:189.770667pt;}
.x6f{left:200.566667pt;}
.x4b{left:207.421333pt;}
.x54{left:211.382667pt;}
.x2{left:215.269333pt;}
.x76{left:218.056000pt;}
.x61{left:223.201770pt;}
.x6b{left:236.062667pt;}
.x1f{left:243.746667pt;}
.x70{left:255.138667pt;}
.x4c{left:259.646667pt;}
.x10{left:267.208000pt;}
.x6a{left:268.132000pt;}
.x6c{left:275.854667pt;}
.x41{left:286.276000pt;}
.x6d{left:289.504000pt;}
.x3f{left:293.684000pt;}
.x4d{left:300.044000pt;}
.x71{left:306.556000pt;}
.x5{left:307.576000pt;}
.x20{left:310.208000pt;}
.x11{left:311.432000pt;}
.x33{left:326.437333pt;}
.x4{left:331.209333pt;}
.x15{left:334.706667pt;}
.x44{left:340.888000pt;}
.x43{left:343.237333pt;}
.x21{left:345.778667pt;}
.x2b{left:347.629333pt;}
.x5b{left:351.428000pt;}
.x34{left:353.422667pt;}
.x22{left:355.308000pt;}
.x6e{left:356.521333pt;}
.x2c{left:357.874667pt;}
.x3{left:361.296000pt;}
.x3c{left:363.948000pt;}
.x45{left:367.106667pt;}
.x55{left:371.726667pt;}
.x6{left:378.344000pt;}
.x46{left:381.128000pt;}
.x56{left:382.058667pt;}
.x1a{left:390.446667pt;}
.xa{left:404.672000pt;}
.x1b{left:407.288000pt;}
.x5c{left:413.628000pt;}
.x27{left:417.177333pt;}
.x28{left:424.090667pt;}
.x47{left:429.530667pt;}
.x35{left:431.588000pt;}
.x5d{left:433.856000pt;}
.x23{left:437.270667pt;}
.x4e{left:438.605333pt;}
.x17{left:442.092000pt;}
.x4f{left:452.365333pt;}
.x48{left:455.258667pt;}
.x24{left:457.749333pt;}
.x51{left:460.949333pt;}
.x69{left:467.562667pt;}
.xb{left:469.129333pt;}
.x52{left:471.281333pt;}
.x3d{left:473.164000pt;}
.x8{left:477.005333pt;}
.x19{left:483.200000pt;}
.x3e{left:489.612000pt;}
.x39{left:492.330667pt;}
.x65{left:494.718665pt;}
.x3a{left:502.662667pt;}
.x18{left:503.918667pt;}
.xc{left:506.930667pt;}
.x12{left:510.297333pt;}
.xd{left:518.546667pt;}
.x2d{left:520.228000pt;}
.x66{left:521.940928pt;}
.x13{left:530.506667pt;}
.x2e{left:537.377333pt;}
.x9{left:542.794667pt;}
.x50{left:544.229333pt;}
.x74{left:562.273333pt;}
.x29{left:582.261333pt;}
.x2a{left:588.488000pt;}
.x25{left:589.576000pt;}
.x75{left:592.530667pt;}
.x5e{left:595.296000pt;}
.x26{left:596.489333pt;}
.x5f{left:611.657333pt;}
.x77{left:637.156000pt;}
.x72{left:652.478667pt;}
.xe{left:666.826667pt;}
.xf{left:677.754667pt;}
.x31{left:681.161333pt;}
.x2f{left:684.593333pt;}
.x30{left:690.820000pt;}
.x73{left:693.782667pt;}
.x1c{left:696.118667pt;}
.x1d{left:706.450667pt;}
.x32{left:719.070667pt;}
}




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