
    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_5504d7d381173c79ad751cd2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191000;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_923a450f5ff3251333b1bd75.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_093d2295599356e77ecb2177.woff')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_16f45ded8bfd20087fdee053.woff')format("woff");}.ff4{font-family:ff4;line-height:0.665000;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_3e768e50ebf61889b5d7e93c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.514000;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_4763f5b1013892850751b1c9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.695000;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_50e97496fada8bb12200ba64.woff')format("woff");}.ff7{font-family:ff7;line-height:1.014160;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_7385bf07c11c30edcf29e83b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.006836;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_1f71d9dc290673d9bd512195.woff')format("woff");}.ff9{font-family:ff9;line-height:1.206055;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_5071fdab3d7ecb329cad6de7.woff')format("woff");}.ffa{font-family:ffa;line-height:1.206055;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_789788f79c9b887f959606e9.woff')format("woff");}.ffb{font-family:ffb;line-height:1.014160;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_c8a92f6a875c1ff805826370.woff')format("woff");}.ffc{font-family:ffc;line-height:1.006836;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;}
.mb{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);}
.m1c{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);}
.m1f{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);}
.m25{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);}
.m18{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);}
.m21{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);}
.m13{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);}
.m28{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);}
.me{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);}
.m7{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);}
.mc{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);}
.m24{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);}
.m12{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);}
.m14{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);}
.m9{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);}
.m23{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);}
.m1b{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m1a{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);}
.m22{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);}
.m2{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);}
.md{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);}
.m19{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);}
.m1e{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);}
.m5{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m4{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);}
.m27{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);}
.m3{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);}
.m11{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);}
.m1d{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);}
.m8{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);}
.m17{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);}
.m16{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);}
.m15{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);}
.m20{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);}
.mf{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);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:35.868000px;}
.ls17{letter-spacing:-1.432200px;}
.ls15{letter-spacing:-1.386000px;}
.ls16{letter-spacing:-1.300200px;}
.ls14{letter-spacing:-0.535260px;}
.ls13{letter-spacing:-0.198000px;}
.ls18{letter-spacing:-0.039600px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.154044px;}
.ls10{letter-spacing:0.198000px;}
.lse{letter-spacing:0.568200px;}
.ls1{letter-spacing:2.989200px;}
.lsf{letter-spacing:3.572160px;}
.ls0{letter-spacing:10.461300px;}
.ls5{letter-spacing:11.954850px;}
.ls2a{letter-spacing:12.436114px;}
.ls2d{letter-spacing:13.267492px;}
.ls23{letter-spacing:13.448400px;}
.ls24{letter-spacing:13.454400px;}
.ls25{letter-spacing:13.468993px;}
.ls2c{letter-spacing:13.556448px;}
.ls29{letter-spacing:13.579812px;}
.ls28{letter-spacing:13.672600px;}
.ls26{letter-spacing:13.702630px;}
.ls1a{letter-spacing:14.824349px;}
.ls1c{letter-spacing:14.858495px;}
.ls20{letter-spacing:14.876817px;}
.lsc{letter-spacing:14.918100px;}
.lsa{letter-spacing:14.942100px;}
.lsd{letter-spacing:14.943900px;}
.ls9{letter-spacing:14.948100px;}
.ls1d{letter-spacing:14.989768px;}
.ls1e{letter-spacing:14.995798px;}
.ls1b{letter-spacing:15.098610px;}
.ls22{letter-spacing:15.177190px;}
.ls8{letter-spacing:15.182861px;}
.ls21{letter-spacing:15.183244px;}
.ls2e{letter-spacing:16.073929px;}
.lsb{letter-spacing:16.097276px;}
.ls12{letter-spacing:16.335000px;}
.ls27{letter-spacing:16.682400px;}
.ls7{letter-spacing:19.809041px;}
.ls19{letter-spacing:20.503159px;}
.ls2b{letter-spacing:20.815106px;}
.ls1f{letter-spacing:21.100787px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls2{letter-spacing:72.355200px;}
.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;}
}
.ws55{word-spacing:-16.731000px;}
.ws53{word-spacing:-16.533000px;}
.ws54{word-spacing:-16.335000px;}
.ws56{word-spacing:-15.997740px;}
.ws57{word-spacing:-15.147000px;}
.ws58{word-spacing:-15.100800px;}
.ws14{word-spacing:-14.943900px;}
.ws59{word-spacing:-14.810400px;}
.ws8a{word-spacing:-13.449600px;}
.ws51{word-spacing:-13.365000px;}
.ws52{word-spacing:-13.167000px;}
.ws23{word-spacing:-11.955150px;}
.ws5{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws6d{word-spacing:-3.048556px;}
.ws38{word-spacing:-2.869229px;}
.wsaa{word-spacing:-2.749647px;}
.wsa9{word-spacing:-2.743718px;}
.ws6f{word-spacing:-1.912819px;}
.ws29{word-spacing:-1.554166px;}
.wsb6{word-spacing:-1.506355px;}
.ws98{word-spacing:-1.452557px;}
.wsb2{word-spacing:-1.344960px;}
.ws7d{word-spacing:-1.329365px;}
.ws7e{word-spacing:-1.315063px;}
.ws6e{word-spacing:-1.255288px;}
.wsb4{word-spacing:-1.022170px;}
.ws4b{word-spacing:-0.956410px;}
.ws1a{word-spacing:-0.896634px;}
.ws8c{word-spacing:-0.591782px;}
.ws4a{word-spacing:-0.537980px;}
.ws28{word-spacing:-0.358654px;}
.wsc0{word-spacing:-0.330635px;}
.wsbf{word-spacing:-0.322790px;}
.ws70{word-spacing:-0.308788px;}
.ws13{word-spacing:-0.302001px;}
.ws15{word-spacing:-0.298878px;}
.ws95{word-spacing:-0.268992px;}
.ws74{word-spacing:-0.266295px;}
.wsbe{word-spacing:-0.244878px;}
.wsc{word-spacing:-0.239102px;}
.ws8e{word-spacing:-0.215194px;}
.ws79{word-spacing:-0.192630px;}
.wsa2{word-spacing:-0.183687px;}
.wsd{word-spacing:-0.179327px;}
.ws7b{word-spacing:-0.172222px;}
.ws90{word-spacing:-0.161395px;}
.wsac{word-spacing:-0.137481px;}
.wsa{word-spacing:-0.119551px;}
.ws5b{word-spacing:-0.107597px;}
.ws81{word-spacing:-0.077593px;}
.ws35{word-spacing:-0.059776px;}
.ws3e{word-spacing:-0.053798px;}
.ws85{word-spacing:-0.049376px;}
.ws86{word-spacing:-0.042194px;}
.wsa6{word-spacing:-0.026304px;}
.wsad{word-spacing:-0.010070px;}
.wsc3{word-spacing:-0.009302px;}
.ws9e{word-spacing:-0.007778px;}
.wsb0{word-spacing:-0.006269px;}
.ws2d{word-spacing:-0.006139px;}
.ws67{word-spacing:-0.005214px;}
.wsab{word-spacing:-0.004291px;}
.wsb1{word-spacing:-0.003514px;}
.ws97{word-spacing:-0.003149px;}
.ws9c{word-spacing:-0.002794px;}
.ws2{word-spacing:-0.001805px;}
.ws0{word-spacing:0.000000px;}
.ws22{word-spacing:0.000230px;}
.ws72{word-spacing:0.037077px;}
.ws44{word-spacing:0.037827px;}
.ws71{word-spacing:0.043107px;}
.ws3d{word-spacing:0.053798px;}
.wsf{word-spacing:0.059776px;}
.wsa0{word-spacing:0.070917px;}
.wsbc{word-spacing:0.100752px;}
.wsa1{word-spacing:0.107597px;}
.ws87{word-spacing:0.118856px;}
.ws11{word-spacing:0.119551px;}
.ws6a{word-spacing:0.120866px;}
.ws12{word-spacing:0.127246px;}
.ws8d{word-spacing:0.161395px;}
.ws16{word-spacing:0.179327px;}
.ws7f{word-spacing:0.200985px;}
.wsae{word-spacing:0.205974px;}
.ws93{word-spacing:0.215194px;}
.wsa4{word-spacing:0.230989px;}
.ws80{word-spacing:0.231767px;}
.ws21{word-spacing:0.239102px;}
.wsa7{word-spacing:0.251314px;}
.ws77{word-spacing:0.253387px;}
.ws8b{word-spacing:0.268992px;}
.ws64{word-spacing:0.284125px;}
.ws61{word-spacing:0.284986px;}
.ws66{word-spacing:0.285598px;}
.ws62{word-spacing:0.286687px;}
.ws63{word-spacing:0.288157px;}
.ws65{word-spacing:0.298128px;}
.ws34{word-spacing:0.298878px;}
.ws17{word-spacing:0.358654px;}
.ws2a{word-spacing:0.418429px;}
.wse{word-spacing:0.478205px;}
.ws88{word-spacing:0.537980px;}
.ws30{word-spacing:0.836858px;}
.ws84{word-spacing:0.861892px;}
.ws31{word-spacing:0.877842px;}
.ws76{word-spacing:0.896634px;}
.ws4d{word-spacing:0.956410px;}
.ws91{word-spacing:1.022170px;}
.ws27{word-spacing:1.075961px;}
.ws75{word-spacing:1.195512px;}
.ws3c{word-spacing:1.315063px;}
.ws73{word-spacing:1.317252px;}
.ws5a{word-spacing:1.506355px;}
.ws47{word-spacing:1.554166px;}
.ws50{word-spacing:1.673717px;}
.ws37{word-spacing:1.733492px;}
.ws5e{word-spacing:1.793268px;}
.ws48{word-spacing:2.032370px;}
.ws8f{word-spacing:2.044339px;}
.ws2b{word-spacing:2.092146px;}
.ws39{word-spacing:2.151922px;}
.ws20{word-spacing:2.211697px;}
.ws1c{word-spacing:2.450800px;}
.ws9d{word-spacing:2.474726px;}
.ws4{word-spacing:2.510252px;}
.ws45{word-spacing:2.510575px;}
.wsbd{word-spacing:2.528525px;}
.ws6{word-spacing:2.869236px;}
.ws94{word-spacing:2.884811px;}
.ws9f{word-spacing:2.958912px;}
.ws32{word-spacing:2.988780px;}
.wsb3{word-spacing:3.003153px;}
.ws99{word-spacing:3.012710px;}
.wsc1{word-spacing:3.066509px;}
.wsb5{word-spacing:3.120307px;}
.ws4c{word-spacing:3.168107px;}
.wsb7{word-spacing:3.219120px;}
.ws9a{word-spacing:3.221098px;}
.wsc2{word-spacing:3.221107px;}
.wsa8{word-spacing:3.224477px;}
.wsc4{word-spacing:3.224602px;}
.wsb9{word-spacing:3.224918px;}
.ws9b{word-spacing:3.227904px;}
.wsa3{word-spacing:3.281702px;}
.ws5c{word-spacing:3.347434px;}
.ws96{word-spacing:3.496896px;}
.ws1b{word-spacing:3.526760px;}
.ws92{word-spacing:3.530199px;}
.wsa5{word-spacing:3.550694px;}
.ws18{word-spacing:3.583475px;}
.ws40{word-spacing:3.586536px;}
.wsaf{word-spacing:3.712090px;}
.ws2e{word-spacing:3.744244px;}
.ws2f{word-spacing:3.765863px;}
.ws24{word-spacing:3.825638px;}
.ws25{word-spacing:3.861680px;}
.ws26{word-spacing:3.885414px;}
.ws2c{word-spacing:3.935492px;}
.wsb{word-spacing:4.004965px;}
.ws4e{word-spacing:4.244068px;}
.ws9{word-spacing:4.303843px;}
.ws19{word-spacing:4.303872px;}
.ws36{word-spacing:4.363619px;}
.ws60{word-spacing:4.391431px;}
.ws5f{word-spacing:4.423394px;}
.wsb8{word-spacing:4.519066px;}
.ws1d{word-spacing:4.722272px;}
.ws7c{word-spacing:4.782048px;}
.ws3a{word-spacing:4.841824px;}
.ws69{word-spacing:5.140702px;}
.ws4f{word-spacing:5.379804px;}
.ws68{word-spacing:5.439580px;}
.ws10{word-spacing:5.499355px;}
.ws7a{word-spacing:5.738458px;}
.ws49{word-spacing:5.798233px;}
.wsbb{word-spacing:5.833839px;}
.wsba{word-spacing:5.864026px;}
.ws33{word-spacing:5.917784px;}
.ws83{word-spacing:5.977560px;}
.ws89{word-spacing:6.025421px;}
.ws78{word-spacing:6.156887px;}
.ws5d{word-spacing:6.336214px;}
.ws6c{word-spacing:6.455765px;}
.ws6b{word-spacing:6.515540px;}
.ws43{word-spacing:6.635092px;}
.ws46{word-spacing:7.352399px;}
.ws8{word-spacing:7.591501px;}
.ws82{word-spacing:7.651277px;}
.ws1f{word-spacing:7.711052px;}
.wsc5{word-spacing:9.816665px;}
.ws1e{word-spacing:10.460730px;}
.ws3b{word-spacing:18.649987px;}
.ws7{word-spacing:19.022689px;}
.ws1{word-spacing:28.455541px;}
.ws3f{word-spacing:564.042562px;}
.ws41{word-spacing:601.880516px;}
.ws42{word-spacing:621.367362px;}
._40{margin-left:-30.073360px;}
._7{margin-left:-7.471950px;}
._5{margin-left:-6.168857px;}
._1{margin-left:-4.602708px;}
._9{margin-left:-3.224759px;}
._37{margin-left:-2.193053px;}
._3{margin-left:-1.046070px;}
._33{width:1.337820px;}
._4{width:3.003748px;}
._32{width:4.303837px;}
._38{width:5.687352px;}
._39{width:6.947447px;}
._36{width:8.411406px;}
._35{width:9.589140px;}
._3a{width:11.138234px;}
._0{width:12.971268px;}
._3e{width:14.453093px;}
._13{width:15.762931px;}
._3b{width:16.874739px;}
._6{width:18.261443px;}
._a{width:20.263928px;}
._e{width:21.641218px;}
._12{width:23.372260px;}
._2{width:25.402180px;}
._3c{width:27.089588px;}
._d{width:28.094532px;}
._b{width:29.290044px;}
._11{width:31.202863px;}
._c{width:33.295009px;}
._8{width:35.357264px;}
._31{width:38.047166px;}
._3f{width:61.868160px;}
._3d{width:88.767360px;}
._1d{width:152.519168px;}
._2c{width:205.355948px;}
._16{width:228.761502px;}
._26{width:240.506710px;}
._21{width:260.977560px;}
._1f{width:265.191476px;}
._1c{width:269.049976px;}
._28{width:281.424412px;}
._19{width:282.977690px;}
._1e{width:305.513092px;}
._29{width:326.491204px;}
._25{width:330.379741px;}
._17{width:343.620034px;}
._22{width:352.616264px;}
._15{width:354.887737px;}
._27{width:362.954320px;}
._2b{width:365.763773px;}
._20{width:380.292367px;}
._23{width:386.655457px;}
._1a{width:399.390883px;}
._2a{width:438.334907px;}
._14{width:464.575963px;}
._24{width:474.319386px;}
._2d{width:482.412262px;}
._1b{width:484.242136px;}
._18{width:532.533751px;}
._2e{width:1254.087836px;}
._2f{width:1291.659766px;}
._30{width:1304.392171px;}
._f{width:1714.347000px;}
._34{width:2331.417000px;}
._10{width:2554.887000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fs8{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fs9{font-size:52.668000px;}
.fs7{font-size:53.798400px;}
.fsb{font-size:59.400000px;}
.fs1{font-size:59.775600px;}
.fsa{font-size:66.132000px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.ybc{bottom:-134.310000px;}
.yd8{bottom:-76.989000px;}
.yd7{bottom:-53.922000px;}
.yd6{bottom:-30.756000px;}
.yd5{bottom:-2.244000px;}
.y0{bottom:0.000000px;}
.y41{bottom:45.921000px;}
.y40{bottom:99.720000px;}
.y16{bottom:100.260000px;}
.ya6{bottom:103.816500px;}
.y73{bottom:111.342000px;}
.y139{bottom:111.924000px;}
.y15{bottom:118.147500px;}
.y179{bottom:119.581500px;}
.y3f{bottom:120.610500px;}
.ya4{bottom:124.707000px;}
.ya5{bottom:130.132500px;}
.y72{bottom:132.234000px;}
.ydd{bottom:132.388500px;}
.y138{bottom:132.816000px;}
.y14{bottom:136.035000px;}
.y178{bottom:138.732000px;}
.y3e{bottom:141.502500px;}
.y148{bottom:144.826500px;}
.ya2{bottom:145.599000px;}
.ya3{bottom:151.023000px;}
.ydc{bottom:151.621500px;}
.y71{bottom:153.126000px;}
.y137{bottom:153.706500px;}
.y13{bottom:153.922500px;}
.y177{bottom:157.882500px;}
.y3d{bottom:162.394500px;}
.y147{bottom:164.847000px;}
.ya0{bottom:166.491000px;}
.ydb{bottom:170.854500px;}
.y12{bottom:171.811500px;}
.ya1{bottom:171.915000px;}
.y136{bottom:174.598500px;}
.y176{bottom:177.033000px;}
.y70{bottom:178.500000px;}
.y3c{bottom:183.285000px;}
.y146{bottom:184.869000px;}
.y9e{bottom:187.381500px;}
.y11{bottom:189.699000px;}
.yda{bottom:190.087500px;}
.y9f{bottom:192.807000px;}
.y135{bottom:195.490500px;}
.y108{bottom:195.865500px;}
.y175{bottom:196.183500px;}
.y6f{bottom:202.932000px;}
.y3b{bottom:204.177000px;}
.y145{bottom:204.889500px;}
.y10{bottom:207.586500px;}
.y9d{bottom:208.273500px;}
.yd9{bottom:209.320500px;}
.y174{bottom:215.334000px;}
.y134{bottom:216.381000px;}
.y107{bottom:216.756000px;}
.y144{bottom:224.910000px;}
.y3a{bottom:225.069000px;}
.yf{bottom:225.475500px;}
.y9c{bottom:229.165500px;}
.y173{bottom:234.484500px;}
.yb9{bottom:234.738000px;}
.y133{bottom:237.273000px;}
.y106{bottom:237.648000px;}
.y6e{bottom:241.756500px;}
.y143{bottom:244.932000px;}
.y39{bottom:245.961000px;}
.y9b{bottom:250.056000px;}
.ye{bottom:252.330000px;}
.y172{bottom:253.635000px;}
.y132{bottom:258.165000px;}
.y105{bottom:258.540000px;}
.y6d{bottom:262.647000px;}
.y142{bottom:264.952500px;}
.y38{bottom:266.851500px;}
.yd{bottom:270.217500px;}
.y9a{bottom:270.948000px;}
.y171{bottom:272.785500px;}
.y131{bottom:279.055500px;}
.y104{bottom:279.430500px;}
.y6c{bottom:283.539000px;}
.y37{bottom:287.743500px;}
.yc{bottom:288.105000px;}
.y99{bottom:291.840000px;}
.y170{bottom:291.936000px;}
.y130{bottom:299.947500px;}
.y103{bottom:300.322500px;}
.y141{bottom:302.907000px;}
.y6b{bottom:304.431000px;}
.yb{bottom:305.994000px;}
.y36{bottom:308.635500px;}
.y16f{bottom:311.086500px;}
.y1a0{bottom:311.887500px;}
.y97{bottom:312.730500px;}
.y98{bottom:318.156000px;}
.y12f{bottom:320.839500px;}
.y102{bottom:321.214500px;}
.y140{bottom:323.797500px;}
.ya{bottom:323.881500px;}
.y6a{bottom:325.323000px;}
.y35{bottom:329.526000px;}
.y16e{bottom:330.237000px;}
.y19f{bottom:331.038000px;}
.y96{bottom:338.106000px;}
.y12e{bottom:341.730000px;}
.y9{bottom:341.769000px;}
.y101{bottom:342.105000px;}
.y13f{bottom:344.689500px;}
.y69{bottom:346.213500px;}
.y16d{bottom:349.387500px;}
.y19e{bottom:350.188500px;}
.y34{bottom:350.418000px;}
.y8{bottom:359.658000px;}
.y12d{bottom:362.622000px;}
.y100{bottom:362.997000px;}
.y13e{bottom:365.581500px;}
.y68{bottom:367.105500px;}
.y16c{bottom:368.538000px;}
.y33{bottom:371.310000px;}
.y95{bottom:373.449000px;}
.y12c{bottom:383.514000px;}
.y7{bottom:383.523000px;}
.yff{bottom:383.889000px;}
.y13d{bottom:386.472000px;}
.y16b{bottom:387.688500px;}
.y67{bottom:387.997500px;}
.y32{bottom:392.200500px;}
.y19d{bottom:393.220500px;}
.y94{bottom:394.339500px;}
.y6{bottom:401.410500px;}
.y12b{bottom:404.406000px;}
.yfe{bottom:404.779500px;}
.y16a{bottom:406.839000px;}
.y13c{bottom:407.364000px;}
.y66{bottom:408.888000px;}
.y19c{bottom:412.371000px;}
.y93{bottom:415.231500px;}
.y31{bottom:417.576000px;}
.y5{bottom:419.299500px;}
.y12a{bottom:425.296500px;}
.yfd{bottom:425.671500px;}
.y169{bottom:425.989500px;}
.y13b{bottom:428.256000px;}
.y65{bottom:429.780000px;}
.y19b{bottom:431.521500px;}
.y92{bottom:436.123500px;}
.y4{bottom:437.187000px;}
.y168{bottom:445.140000px;}
.y129{bottom:446.188500px;}
.yfc{bottom:446.563500px;}
.y64{bottom:450.672000px;}
.y13a{bottom:453.630000px;}
.y3{bottom:461.052000px;}
.y91{bottom:461.497500px;}
.y167{bottom:464.290500px;}
.y128{bottom:467.080500px;}
.yfb{bottom:467.454000px;}
.y19a{bottom:469.822500px;}
.y63{bottom:471.562500px;}
.y2{bottom:478.941000px;}
.y166{bottom:483.442500px;}
.y127{bottom:487.971000px;}
.yfa{bottom:488.346000px;}
.y199{bottom:488.973000px;}
.y62{bottom:492.454500px;}
.y30{bottom:496.788000px;}
.y1{bottom:496.828500px;}
.y90{bottom:496.840500px;}
.yd4{bottom:497.739000px;}
.y165{bottom:502.593000px;}
.y198{bottom:508.123500px;}
.y126{bottom:508.863000px;}
.yf9{bottom:509.238000px;}
.y61{bottom:513.346500px;}
.y8f{bottom:517.731000px;}
.yd3{bottom:520.839000px;}
.y164{bottom:521.743500px;}
.y197{bottom:527.274000px;}
.y125{bottom:529.755000px;}
.yf8{bottom:530.130000px;}
.y60{bottom:534.237000px;}
.y2f{bottom:535.612500px;}
.y8e{bottom:538.623000px;}
.y163{bottom:540.894000px;}
.yd2{bottom:544.005000px;}
.y196{bottom:546.424500px;}
.y124{bottom:550.645500px;}
.yf7{bottom:551.020500px;}
.y5f{bottom:555.129000px;}
.y2e{bottom:556.503000px;}
.y8d{bottom:559.515000px;}
.y162{bottom:560.044500px;}
.y195{bottom:565.575000px;}
.yd1{bottom:567.072000px;}
.y123{bottom:571.537500px;}
.yf6{bottom:571.912500px;}
.y5e{bottom:576.021000px;}
.y2d{bottom:577.395000px;}
.y161{bottom:579.195000px;}
.y8c{bottom:580.405500px;}
.y194{bottom:584.725500px;}
.yd0{bottom:590.139000px;}
.y122{bottom:592.429500px;}
.yf5{bottom:592.804500px;}
.y5d{bottom:596.913000px;}
.y2c{bottom:598.287000px;}
.y160{bottom:598.345500px;}
.y8b{bottom:601.297500px;}
.y193{bottom:603.876000px;}
.ycf{bottom:613.305000px;}
.y121{bottom:613.320000px;}
.y15f{bottom:617.496000px;}
.y5c{bottom:617.803500px;}
.yf4{bottom:618.178500px;}
.y2b{bottom:619.177500px;}
.y8a{bottom:622.189500px;}
.y192{bottom:623.026500px;}
.y120{bottom:634.212000px;}
.yce{bottom:636.372000px;}
.y15e{bottom:636.646500px;}
.y5b{bottom:638.695500px;}
.y2a{bottom:640.069500px;}
.y191{bottom:642.177000px;}
.y89{bottom:643.080000px;}
.yf3{bottom:653.521500px;}
.y11f{bottom:655.104000px;}
.y15d{bottom:655.797000px;}
.ycd{bottom:659.439000px;}
.y5a{bottom:659.587500px;}
.y29{bottom:660.961500px;}
.y190{bottom:661.327500px;}
.y88{bottom:663.972000px;}
.yf2{bottom:674.412000px;}
.y15c{bottom:674.947500px;}
.y11e{bottom:675.996000px;}
.y59{bottom:680.478000px;}
.y28{bottom:681.852000px;}
.ycc{bottom:682.605000px;}
.y15b{bottom:694.098000px;}
.yf1{bottom:695.304000px;}
.y11d{bottom:696.886500px;}
.y18f{bottom:699.628500px;}
.y58{bottom:701.370000px;}
.y27{bottom:702.744000px;}
.ycb{bottom:705.672000px;}
.y15a{bottom:713.248500px;}
.y87{bottom:714.933000px;}
.yf0{bottom:716.196000px;}
.y11c{bottom:717.778500px;}
.y18e{bottom:718.779000px;}
.y57{bottom:722.262000px;}
.y26{bottom:723.636000px;}
.yb8{bottom:724.219500px;}
.yca{bottom:728.739000px;}
.y159{bottom:732.399000px;}
.y86{bottom:732.865500px;}
.yef{bottom:737.086500px;}
.y18d{bottom:737.929500px;}
.y11b{bottom:738.670500px;}
.y56{bottom:743.152500px;}
.y25{bottom:744.526500px;}
.yb7{bottom:745.110000px;}
.y85{bottom:750.799500px;}
.y158{bottom:751.549500px;}
.yc9{bottom:751.905000px;}
.y18c{bottom:757.081500px;}
.yee{bottom:757.978500px;}
.y11a{bottom:759.561000px;}
.y55{bottom:764.044500px;}
.y24{bottom:765.418500px;}
.yb6{bottom:766.002000px;}
.y84{bottom:768.732000px;}
.y157{bottom:770.700000px;}
.yc8{bottom:774.972000px;}
.y18b{bottom:776.232000px;}
.yed{bottom:778.870500px;}
.y119{bottom:780.453000px;}
.y54{bottom:784.936500px;}
.y23{bottom:786.310500px;}
.y83{bottom:786.664500px;}
.yb5{bottom:786.894000px;}
.y156{bottom:789.850500px;}
.y18a{bottom:795.382500px;}
.yc7{bottom:798.039000px;}
.yec{bottom:799.762500px;}
.y118{bottom:801.345000px;}
.y82{bottom:804.597000px;}
.y53{bottom:805.827000px;}
.y22{bottom:807.202500px;}
.yb4{bottom:807.784500px;}
.y155{bottom:813.484500px;}
.y189{bottom:814.533000px;}
.yeb{bottom:820.653000px;}
.yc6{bottom:821.205000px;}
.y117{bottom:822.235500px;}
.y81{bottom:822.529500px;}
.y52{bottom:826.719000px;}
.y21{bottom:828.093000px;}
.yb3{bottom:828.676500px;}
.y188{bottom:833.683500px;}
.y80{bottom:840.462000px;}
.yea{bottom:841.545000px;}
.y116{bottom:843.127500px;}
.yc5{bottom:844.272000px;}
.y51{bottom:847.611000px;}
.y20{bottom:848.985000px;}
.yb2{bottom:849.568500px;}
.y154{bottom:852.309000px;}
.y187{bottom:852.834000px;}
.y7f{bottom:858.396000px;}
.ye9{bottom:862.437000px;}
.y115{bottom:864.019500px;}
.yc4{bottom:867.339000px;}
.y50{bottom:868.503000px;}
.yb1{bottom:870.460500px;}
.y186{bottom:871.984500px;}
.y7e{bottom:876.328500px;}
.y153{bottom:880.774500px;}
.ye8{bottom:883.327500px;}
.y114{bottom:884.910000px;}
.y1f{bottom:888.406500px;}
.y4f{bottom:889.393500px;}
.y185{bottom:891.135000px;}
.yb0{bottom:891.351000px;}
.y7d{bottom:894.261000px;}
.yc3{bottom:895.455000px;}
.y152{bottom:900.273000px;}
.ye7{bottom:904.219500px;}
.y1e{bottom:904.545000px;}
.y113{bottom:905.802000px;}
.y4e{bottom:910.285500px;}
.y7c{bottom:912.193500px;}
.yaf{bottom:912.243000px;}
.y151{bottom:919.771500px;}
.y1d{bottom:925.024500px;}
.ye6{bottom:925.111500px;}
.y112{bottom:926.694000px;}
.y184{bottom:929.436000px;}
.y7b{bottom:930.126000px;}
.y4d{bottom:931.177500px;}
.yae{bottom:933.135000px;}
.y1c{bottom:936.825000px;}
.yc2{bottom:938.322000px;}
.ye5{bottom:946.002000px;}
.y111{bottom:947.584500px;}
.y7a{bottom:948.060000px;}
.y150{bottom:948.237000px;}
.y183{bottom:948.586500px;}
.y4c{bottom:952.068000px;}
.yad{bottom:954.025500px;}
.y1b{bottom:957.304500px;}
.yc1{bottom:961.389000px;}
.y79{bottom:965.992500px;}
.ye4{bottom:966.894000px;}
.y14f{bottom:967.735500px;}
.y182{bottom:967.737000px;}
.y110{bottom:968.476500px;}
.y4b{bottom:972.960000px;}
.yac{bottom:974.917500px;}
.yc0{bottom:984.588000px;}
.y181{bottom:986.887500px;}
.ye3{bottom:987.786000px;}
.y10f{bottom:989.368500px;}
.y78{bottom:991.126500px;}
.y4a{bottom:993.852000px;}
.yab{bottom:995.809500px;}
.y14e{bottom:996.201000px;}
.y77{bottom:1000.093500px;}
.y1a{bottom:1001.382000px;}
.y180{bottom:1006.038000px;}
.ybf{bottom:1007.655000px;}
.y10e{bottom:1010.260500px;}
.ye2{bottom:1013.160000px;}
.y49{bottom:1014.742500px;}
.yaa{bottom:1016.700000px;}
.y14d{bottom:1024.665000px;}
.y17f{bottom:1025.188500px;}
.ybe{bottom:1030.722000px;}
.y10d{bottom:1031.151000px;}
.y48{bottom:1035.634500px;}
.ya9{bottom:1037.592000px;}
.y19{bottom:1040.206500px;}
.y17e{bottom:1044.339000px;}
.y76{bottom:1044.714000px;}
.ye1{bottom:1048.503000px;}
.y10c{bottom:1052.043000px;}
.y14c{bottom:1053.130500px;}
.ybd{bottom:1053.888000px;}
.y47{bottom:1056.526500px;}
.ya8{bottom:1058.484000px;}
.y17d{bottom:1063.489500px;}
.y75{bottom:1063.947000px;}
.ye0{bottom:1069.393500px;}
.y18{bottom:1071.543000px;}
.y14b{bottom:1072.629000px;}
.y10b{bottom:1072.935000px;}
.y46{bottom:1077.417000px;}
.y17c{bottom:1082.640000px;}
.y74{bottom:1083.180000px;}
.ya7{bottom:1083.858000px;}
.ydf{bottom:1090.285500px;}
.y10a{bottom:1093.825500px;}
.y45{bottom:1098.309000px;}
.y14a{bottom:1101.094500px;}
.y17b{bottom:1101.790500px;}
.y17{bottom:1102.881000px;}
.y109{bottom:1114.717500px;}
.yde{bottom:1115.661000px;}
.ybb{bottom:1115.664000px;}
.y44{bottom:1119.201000px;}
.y149{bottom:1120.593000px;}
.y17a{bottom:1120.941000px;}
.yba{bottom:1126.257000px;}
.y43{bottom:1140.091500px;}
.y42{bottom:1200.196500px;}
.hf{height:26.461718px;}
.he{height:27.855430px;}
.h6{height:32.565965px;}
.h2{height:37.993262px;}
.hd{height:41.250077px;}
.h10{height:41.364715px;}
.hc{height:43.038432px;}
.h7{height:43.421105px;}
.h3{height:43.815515px;}
.h14{height:48.468814px;}
.h12{height:48.707613px;}
.ha{height:48.848947px;}
.h9{height:51.646464px;}
.h8{height:54.276245px;}
.h5{height:54.405312px;}
.h15{height:54.933398px;}
.h13{height:61.159184px;}
.h4{height:77.469696px;}
.hb{height:78.906432px;}
.h11{height:465.837900px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:667.438695px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x50{left:-96.839655px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x2e{left:62.541000px;}
.x2d{left:69.826500px;}
.x30{left:75.244500px;}
.x27{left:80.220000px;}
.x29{left:84.099000px;}
.x26{left:86.019000px;}
.x2b{left:87.124500px;}
.x2c{left:89.194500px;}
.x28{left:93.774000px;}
.x2a{left:98.340000px;}
.x24{left:107.910000px;}
.x4f{left:112.523505px;}
.x51{left:118.320345px;}
.x52{left:153.366345px;}
.x5{left:247.348500px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x3{left:269.914500px;}
.x6{left:281.479500px;}
.x39{left:284.823000px;}
.x2f{left:290.974500px;}
.xf{left:306.166500px;}
.x10{left:313.639500px;}
.x11{left:317.449500px;}
.x56{left:319.882500px;}
.x12{left:324.921000px;}
.x13{left:332.542500px;}
.x57{left:334.827000px;}
.x58{left:338.607000px;}
.x3c{left:339.991500px;}
.x14{left:347.487000px;}
.x59{left:353.551500px;}
.x3d{left:354.936000px;}
.x35{left:360.976500px;}
.x36{left:367.783500px;}
.x1a{left:389.308500px;}
.x15{left:399.022500px;}
.x1b{left:404.253000px;}
.x1c{left:408.063000px;}
.x16{left:413.965500px;}
.x1d{left:423.007500px;}
.xd{left:435.529500px;}
.x3e{left:440.115000px;}
.xe{left:443.001000px;}
.x3f{left:444.264000px;}
.x9{left:457.317000px;}
.x5e{left:462.774000px;}
.xa{left:464.788500px;}
.xb{left:472.410000px;}
.x5f{left:477.718500px;}
.xc{left:479.881500px;}
.x62{left:513.321000px;}
.x1e{left:516.063000px;}
.x41{left:517.579500px;}
.x63{left:520.794000px;}
.x1f{left:531.006000px;}
.x42{left:532.522500px;}
.x20{left:534.667500px;}
.x43{left:536.248500px;}
.x3a{left:545.955000px;}
.x21{left:549.612000px;}
.x44{left:551.191500px;}
.x3b{left:552.760500px;}
.x47{left:577.560000px;}
.x48{left:592.503000px;}
.x18{left:606.199500px;}
.x19{left:621.144000px;}
.x31{left:637.002000px;}
.x32{left:649.824000px;}
.x45{left:663.279000px;}
.x53{left:666.648345px;}
.x54{left:674.883000px;}
.x37{left:676.119000px;}
.x46{left:678.223500px;}
.x38{left:682.926000px;}
.x55{left:689.827500px;}
.x25{left:711.733500px;}
.x4b{left:719.967000px;}
.x5a{left:722.313000px;}
.x33{left:733.029000px;}
.x4c{left:734.910000px;}
.x5b{left:737.257500px;}
.x34{left:742.258500px;}
.x40{left:747.864000px;}
.x22{left:755.838000px;}
.x23{left:770.781000px;}
.x5c{left:772.653000px;}
.x5d{left:787.596000px;}
.x49{left:799.018500px;}
.x4d{left:806.263500px;}
.x4a{left:813.961500px;}
.x17{left:817.933500px;}
.x4e{left:819.649500px;}
.x7{left:825.519000px;}
.x60{left:826.524000px;}
.x8{left:832.990500px;}
.x61{left:833.997000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:31.882667pt;}
.ls17{letter-spacing:-1.273067pt;}
.ls15{letter-spacing:-1.232000pt;}
.ls16{letter-spacing:-1.155733pt;}
.ls14{letter-spacing:-0.475787pt;}
.ls13{letter-spacing:-0.176000pt;}
.ls18{letter-spacing:-0.035200pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.136928pt;}
.ls10{letter-spacing:0.176000pt;}
.lse{letter-spacing:0.505067pt;}
.ls1{letter-spacing:2.657067pt;}
.lsf{letter-spacing:3.175253pt;}
.ls0{letter-spacing:9.298933pt;}
.ls5{letter-spacing:10.626533pt;}
.ls2a{letter-spacing:11.054324pt;}
.ls2d{letter-spacing:11.793327pt;}
.ls23{letter-spacing:11.954133pt;}
.ls24{letter-spacing:11.959467pt;}
.ls25{letter-spacing:11.972438pt;}
.ls2c{letter-spacing:12.050176pt;}
.ls29{letter-spacing:12.070944pt;}
.ls28{letter-spacing:12.153422pt;}
.ls26{letter-spacing:12.180116pt;}
.ls1a{letter-spacing:13.177199pt;}
.ls1c{letter-spacing:13.207551pt;}
.ls20{letter-spacing:13.223837pt;}
.lsc{letter-spacing:13.260533pt;}
.lsa{letter-spacing:13.281867pt;}
.lsd{letter-spacing:13.283467pt;}
.ls9{letter-spacing:13.287200pt;}
.ls1d{letter-spacing:13.324239pt;}
.ls1e{letter-spacing:13.329599pt;}
.ls1b{letter-spacing:13.420987pt;}
.ls22{letter-spacing:13.490835pt;}
.ls8{letter-spacing:13.495876pt;}
.ls21{letter-spacing:13.496217pt;}
.ls2e{letter-spacing:14.287937pt;}
.lsb{letter-spacing:14.308690pt;}
.ls12{letter-spacing:14.520000pt;}
.ls27{letter-spacing:14.828800pt;}
.ls7{letter-spacing:17.608037pt;}
.ls19{letter-spacing:18.225030pt;}
.ls2b{letter-spacing:18.502316pt;}
.ls1f{letter-spacing:18.756255pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls2{letter-spacing:64.315733pt;}
.ws55{word-spacing:-14.872000pt;}
.ws53{word-spacing:-14.696000pt;}
.ws54{word-spacing:-14.520000pt;}
.ws56{word-spacing:-14.220213pt;}
.ws57{word-spacing:-13.464000pt;}
.ws58{word-spacing:-13.422933pt;}
.ws14{word-spacing:-13.283467pt;}
.ws59{word-spacing:-13.164800pt;}
.ws8a{word-spacing:-11.955200pt;}
.ws51{word-spacing:-11.880000pt;}
.ws52{word-spacing:-11.704000pt;}
.ws23{word-spacing:-10.626800pt;}
.ws5{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws6d{word-spacing:-2.709827pt;}
.ws38{word-spacing:-2.550426pt;}
.wsaa{word-spacing:-2.444131pt;}
.wsa9{word-spacing:-2.438861pt;}
.ws6f{word-spacing:-1.700284pt;}
.ws29{word-spacing:-1.381481pt;}
.wsb6{word-spacing:-1.338982pt;}
.ws98{word-spacing:-1.291162pt;}
.wsb2{word-spacing:-1.195520pt;}
.ws7d{word-spacing:-1.181658pt;}
.ws7e{word-spacing:-1.168945pt;}
.ws6e{word-spacing:-1.115811pt;}
.wsb4{word-spacing:-0.908595pt;}
.ws4b{word-spacing:-0.850142pt;}
.ws1a{word-spacing:-0.797008pt;}
.ws8c{word-spacing:-0.526029pt;}
.ws4a{word-spacing:-0.478205pt;}
.ws28{word-spacing:-0.318803pt;}
.wsc0{word-spacing:-0.293898pt;}
.wsbf{word-spacing:-0.286925pt;}
.ws70{word-spacing:-0.274478pt;}
.ws13{word-spacing:-0.268445pt;}
.ws15{word-spacing:-0.265669pt;}
.ws95{word-spacing:-0.239104pt;}
.ws74{word-spacing:-0.236707pt;}
.wsbe{word-spacing:-0.217669pt;}
.wsc{word-spacing:-0.212535pt;}
.ws8e{word-spacing:-0.191283pt;}
.ws79{word-spacing:-0.171227pt;}
.wsa2{word-spacing:-0.163277pt;}
.wsd{word-spacing:-0.159402pt;}
.ws7b{word-spacing:-0.153086pt;}
.ws90{word-spacing:-0.143462pt;}
.wsac{word-spacing:-0.122205pt;}
.wsa{word-spacing:-0.106268pt;}
.ws5b{word-spacing:-0.095642pt;}
.ws81{word-spacing:-0.068971pt;}
.ws35{word-spacing:-0.053134pt;}
.ws3e{word-spacing:-0.047821pt;}
.ws85{word-spacing:-0.043890pt;}
.ws86{word-spacing:-0.037506pt;}
.wsa6{word-spacing:-0.023381pt;}
.wsad{word-spacing:-0.008951pt;}
.wsc3{word-spacing:-0.008269pt;}
.ws9e{word-spacing:-0.006914pt;}
.wsb0{word-spacing:-0.005572pt;}
.ws2d{word-spacing:-0.005457pt;}
.ws67{word-spacing:-0.004635pt;}
.wsab{word-spacing:-0.003814pt;}
.wsb1{word-spacing:-0.003123pt;}
.ws97{word-spacing:-0.002799pt;}
.ws9c{word-spacing:-0.002483pt;}
.ws2{word-spacing:-0.001604pt;}
.ws0{word-spacing:0.000000pt;}
.ws22{word-spacing:0.000205pt;}
.ws72{word-spacing:0.032957pt;}
.ws44{word-spacing:0.033624pt;}
.ws71{word-spacing:0.038317pt;}
.ws3d{word-spacing:0.047821pt;}
.wsf{word-spacing:0.053134pt;}
.wsa0{word-spacing:0.063037pt;}
.wsbc{word-spacing:0.089557pt;}
.wsa1{word-spacing:0.095642pt;}
.ws87{word-spacing:0.105650pt;}
.ws11{word-spacing:0.106268pt;}
.ws6a{word-spacing:0.107437pt;}
.ws12{word-spacing:0.113107pt;}
.ws8d{word-spacing:0.143462pt;}
.ws16{word-spacing:0.159402pt;}
.ws7f{word-spacing:0.178653pt;}
.wsae{word-spacing:0.183088pt;}
.ws93{word-spacing:0.191283pt;}
.wsa4{word-spacing:0.205324pt;}
.ws80{word-spacing:0.206015pt;}
.ws21{word-spacing:0.212535pt;}
.wsa7{word-spacing:0.223390pt;}
.ws77{word-spacing:0.225233pt;}
.ws8b{word-spacing:0.239104pt;}
.ws64{word-spacing:0.252555pt;}
.ws61{word-spacing:0.253321pt;}
.ws66{word-spacing:0.253865pt;}
.ws62{word-spacing:0.254833pt;}
.ws63{word-spacing:0.256140pt;}
.ws65{word-spacing:0.265003pt;}
.ws34{word-spacing:0.265669pt;}
.ws17{word-spacing:0.318803pt;}
.ws2a{word-spacing:0.371937pt;}
.wse{word-spacing:0.425071pt;}
.ws88{word-spacing:0.478205pt;}
.ws30{word-spacing:0.743874pt;}
.ws84{word-spacing:0.766126pt;}
.ws31{word-spacing:0.780304pt;}
.ws76{word-spacing:0.797008pt;}
.ws4d{word-spacing:0.850142pt;}
.ws91{word-spacing:0.908595pt;}
.ws27{word-spacing:0.956410pt;}
.ws75{word-spacing:1.062677pt;}
.ws3c{word-spacing:1.168945pt;}
.ws73{word-spacing:1.170891pt;}
.ws5a{word-spacing:1.338982pt;}
.ws47{word-spacing:1.381481pt;}
.ws50{word-spacing:1.487748pt;}
.ws37{word-spacing:1.540882pt;}
.ws5e{word-spacing:1.594016pt;}
.ws48{word-spacing:1.806551pt;}
.ws8f{word-spacing:1.817190pt;}
.ws2b{word-spacing:1.859685pt;}
.ws39{word-spacing:1.912819pt;}
.ws20{word-spacing:1.965953pt;}
.ws1c{word-spacing:2.178489pt;}
.ws9d{word-spacing:2.199757pt;}
.ws4{word-spacing:2.231335pt;}
.ws45{word-spacing:2.231622pt;}
.wsbd{word-spacing:2.247578pt;}
.ws6{word-spacing:2.550432pt;}
.ws94{word-spacing:2.564277pt;}
.ws9f{word-spacing:2.630144pt;}
.ws32{word-spacing:2.656693pt;}
.wsb3{word-spacing:2.669469pt;}
.ws99{word-spacing:2.677965pt;}
.wsc1{word-spacing:2.725786pt;}
.wsb5{word-spacing:2.773606pt;}
.ws4c{word-spacing:2.816095pt;}
.wsb7{word-spacing:2.861440pt;}
.ws9a{word-spacing:2.863198pt;}
.wsc2{word-spacing:2.863206pt;}
.wsa8{word-spacing:2.866202pt;}
.wsc4{word-spacing:2.866313pt;}
.wsb9{word-spacing:2.866594pt;}
.ws9b{word-spacing:2.869248pt;}
.wsa3{word-spacing:2.917069pt;}
.ws5c{word-spacing:2.975497pt;}
.ws96{word-spacing:3.108352pt;}
.ws1b{word-spacing:3.134898pt;}
.ws92{word-spacing:3.137954pt;}
.wsa5{word-spacing:3.156173pt;}
.ws18{word-spacing:3.185311pt;}
.ws40{word-spacing:3.188032pt;}
.wsaf{word-spacing:3.299635pt;}
.ws2e{word-spacing:3.328217pt;}
.ws2f{word-spacing:3.347434pt;}
.ws24{word-spacing:3.400567pt;}
.ws25{word-spacing:3.432604pt;}
.ws26{word-spacing:3.453701pt;}
.ws2c{word-spacing:3.498216pt;}
.wsb{word-spacing:3.559969pt;}
.ws4e{word-spacing:3.772505pt;}
.ws9{word-spacing:3.825638pt;}
.ws19{word-spacing:3.825664pt;}
.ws36{word-spacing:3.878772pt;}
.ws60{word-spacing:3.903495pt;}
.ws5f{word-spacing:3.931906pt;}
.wsb8{word-spacing:4.016947pt;}
.ws1d{word-spacing:4.197575pt;}
.ws7c{word-spacing:4.250709pt;}
.ws3a{word-spacing:4.303843pt;}
.ws69{word-spacing:4.569513pt;}
.ws4f{word-spacing:4.782048pt;}
.ws68{word-spacing:4.835182pt;}
.ws10{word-spacing:4.888316pt;}
.ws7a{word-spacing:5.100851pt;}
.ws49{word-spacing:5.153985pt;}
.wsbb{word-spacing:5.185635pt;}
.wsba{word-spacing:5.212467pt;}
.ws33{word-spacing:5.260253pt;}
.ws83{word-spacing:5.313387pt;}
.ws89{word-spacing:5.355930pt;}
.ws78{word-spacing:5.472788pt;}
.ws5d{word-spacing:5.632190pt;}
.ws6c{word-spacing:5.738458pt;}
.ws6b{word-spacing:5.791591pt;}
.ws43{word-spacing:5.897859pt;}
.ws46{word-spacing:6.535466pt;}
.ws8{word-spacing:6.748001pt;}
.ws82{word-spacing:6.801135pt;}
.ws1f{word-spacing:6.854269pt;}
.wsc5{word-spacing:8.725925pt;}
.ws1e{word-spacing:9.298427pt;}
.ws3b{word-spacing:16.577766pt;}
.ws7{word-spacing:16.909057pt;}
.ws1{word-spacing:25.293814pt;}
.ws3f{word-spacing:501.371166pt;}
.ws41{word-spacing:535.004903pt;}
.ws42{word-spacing:552.326544pt;}
._40{margin-left:-26.731875pt;}
._7{margin-left:-6.641733pt;}
._5{margin-left:-5.483429pt;}
._1{margin-left:-4.091296pt;}
._9{margin-left:-2.866453pt;}
._37{margin-left:-1.949381pt;}
._3{margin-left:-0.929840pt;}
._33{width:1.189173pt;}
._4{width:2.669998pt;}
._32{width:3.825633pt;}
._38{width:5.055424pt;}
._39{width:6.175508pt;}
._36{width:7.476805pt;}
._35{width:8.523680pt;}
._3a{width:9.900653pt;}
._0{width:11.530016pt;}
._3e{width:12.847194pt;}
._13{width:14.011494pt;}
._3b{width:14.999768pt;}
._6{width:16.232394pt;}
._a{width:18.012381pt;}
._e{width:19.236638pt;}
._12{width:20.775342pt;}
._2{width:22.579715pt;}
._3c{width:24.079634pt;}
._d{width:24.972917pt;}
._b{width:26.035595pt;}
._11{width:27.735878pt;}
._c{width:29.595564pt;}
._8{width:31.428679pt;}
._31{width:33.819703pt;}
._3f{width:54.993920pt;}
._3d{width:78.904320pt;}
._1d{width:135.572594pt;}
._2c{width:182.538620pt;}
._16{width:203.343557pt;}
._26{width:213.783742pt;}
._21{width:231.980053pt;}
._1f{width:235.725757pt;}
._1c{width:239.155534pt;}
._28{width:250.155033pt;}
._19{width:251.535725pt;}
._1e{width:271.567193pt;}
._29{width:290.214404pt;}
._25{width:293.670881pt;}
._17{width:305.440030pt;}
._22{width:313.436679pt;}
._15{width:315.455766pt;}
._27{width:322.626062pt;}
._2b{width:325.123354pt;}
._20{width:338.037660pt;}
._23{width:343.693740pt;}
._1a{width:355.014118pt;}
._2a{width:389.631028pt;}
._14{width:412.956412pt;}
._24{width:421.617232pt;}
._2d{width:428.810899pt;}
._1b{width:430.437454pt;}
._18{width:473.363334pt;}
._2e{width:1114.744743pt;}
._2f{width:1148.142014pt;}
._30{width:1159.459708pt;}
._f{width:1523.864000pt;}
._34{width:2072.370667pt;}
._10{width:2271.010667pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fs8{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fs9{font-size:46.816000pt;}
.fs7{font-size:47.820800pt;}
.fsb{font-size:52.800000pt;}
.fs1{font-size:53.133867pt;}
.fsa{font-size:58.784000pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.ybc{bottom:-119.386667pt;}
.yd8{bottom:-68.434667pt;}
.yd7{bottom:-47.930667pt;}
.yd6{bottom:-27.338667pt;}
.yd5{bottom:-1.994667pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:40.818667pt;}
.y40{bottom:88.640000pt;}
.y16{bottom:89.120000pt;}
.ya6{bottom:92.281333pt;}
.y73{bottom:98.970667pt;}
.y139{bottom:99.488000pt;}
.y15{bottom:105.020000pt;}
.y179{bottom:106.294667pt;}
.y3f{bottom:107.209333pt;}
.ya4{bottom:110.850667pt;}
.ya5{bottom:115.673333pt;}
.y72{bottom:117.541333pt;}
.ydd{bottom:117.678667pt;}
.y138{bottom:118.058667pt;}
.y14{bottom:120.920000pt;}
.y178{bottom:123.317333pt;}
.y3e{bottom:125.780000pt;}
.y148{bottom:128.734667pt;}
.ya2{bottom:129.421333pt;}
.ya3{bottom:134.242667pt;}
.ydc{bottom:134.774667pt;}
.y71{bottom:136.112000pt;}
.y137{bottom:136.628000pt;}
.y13{bottom:136.820000pt;}
.y177{bottom:140.340000pt;}
.y3d{bottom:144.350667pt;}
.y147{bottom:146.530667pt;}
.ya0{bottom:147.992000pt;}
.ydb{bottom:151.870667pt;}
.y12{bottom:152.721333pt;}
.ya1{bottom:152.813333pt;}
.y136{bottom:155.198667pt;}
.y176{bottom:157.362667pt;}
.y70{bottom:158.666667pt;}
.y3c{bottom:162.920000pt;}
.y146{bottom:164.328000pt;}
.y9e{bottom:166.561333pt;}
.y11{bottom:168.621333pt;}
.yda{bottom:168.966667pt;}
.y9f{bottom:171.384000pt;}
.y135{bottom:173.769333pt;}
.y108{bottom:174.102667pt;}
.y175{bottom:174.385333pt;}
.y6f{bottom:180.384000pt;}
.y3b{bottom:181.490667pt;}
.y145{bottom:182.124000pt;}
.y10{bottom:184.521333pt;}
.y9d{bottom:185.132000pt;}
.yd9{bottom:186.062667pt;}
.y174{bottom:191.408000pt;}
.y134{bottom:192.338667pt;}
.y107{bottom:192.672000pt;}
.y144{bottom:199.920000pt;}
.y3a{bottom:200.061333pt;}
.yf{bottom:200.422667pt;}
.y9c{bottom:203.702667pt;}
.y173{bottom:208.430667pt;}
.yb9{bottom:208.656000pt;}
.y133{bottom:210.909333pt;}
.y106{bottom:211.242667pt;}
.y6e{bottom:214.894667pt;}
.y143{bottom:217.717333pt;}
.y39{bottom:218.632000pt;}
.y9b{bottom:222.272000pt;}
.ye{bottom:224.293333pt;}
.y172{bottom:225.453333pt;}
.y132{bottom:229.480000pt;}
.y105{bottom:229.813333pt;}
.y6d{bottom:233.464000pt;}
.y142{bottom:235.513333pt;}
.y38{bottom:237.201333pt;}
.yd{bottom:240.193333pt;}
.y9a{bottom:240.842667pt;}
.y171{bottom:242.476000pt;}
.y131{bottom:248.049333pt;}
.y104{bottom:248.382667pt;}
.y6c{bottom:252.034667pt;}
.y37{bottom:255.772000pt;}
.yc{bottom:256.093333pt;}
.y99{bottom:259.413333pt;}
.y170{bottom:259.498667pt;}
.y130{bottom:266.620000pt;}
.y103{bottom:266.953333pt;}
.y141{bottom:269.250667pt;}
.y6b{bottom:270.605333pt;}
.yb{bottom:271.994667pt;}
.y36{bottom:274.342667pt;}
.y16f{bottom:276.521333pt;}
.y1a0{bottom:277.233333pt;}
.y97{bottom:277.982667pt;}
.y98{bottom:282.805333pt;}
.y12f{bottom:285.190667pt;}
.y102{bottom:285.524000pt;}
.y140{bottom:287.820000pt;}
.ya{bottom:287.894667pt;}
.y6a{bottom:289.176000pt;}
.y35{bottom:292.912000pt;}
.y16e{bottom:293.544000pt;}
.y19f{bottom:294.256000pt;}
.y96{bottom:300.538667pt;}
.y12e{bottom:303.760000pt;}
.y9{bottom:303.794667pt;}
.y101{bottom:304.093333pt;}
.y13f{bottom:306.390667pt;}
.y69{bottom:307.745333pt;}
.y16d{bottom:310.566667pt;}
.y19e{bottom:311.278667pt;}
.y34{bottom:311.482667pt;}
.y8{bottom:319.696000pt;}
.y12d{bottom:322.330667pt;}
.y100{bottom:322.664000pt;}
.y13e{bottom:324.961333pt;}
.y68{bottom:326.316000pt;}
.y16c{bottom:327.589333pt;}
.y33{bottom:330.053333pt;}
.y95{bottom:331.954667pt;}
.y12c{bottom:340.901333pt;}
.y7{bottom:340.909333pt;}
.yff{bottom:341.234667pt;}
.y13d{bottom:343.530667pt;}
.y16b{bottom:344.612000pt;}
.y67{bottom:344.886667pt;}
.y32{bottom:348.622667pt;}
.y19d{bottom:349.529333pt;}
.y94{bottom:350.524000pt;}
.y6{bottom:356.809333pt;}
.y12b{bottom:359.472000pt;}
.yfe{bottom:359.804000pt;}
.y16a{bottom:361.634667pt;}
.y13c{bottom:362.101333pt;}
.y66{bottom:363.456000pt;}
.y19c{bottom:366.552000pt;}
.y93{bottom:369.094667pt;}
.y31{bottom:371.178667pt;}
.y5{bottom:372.710667pt;}
.y12a{bottom:378.041333pt;}
.yfd{bottom:378.374667pt;}
.y169{bottom:378.657333pt;}
.y13b{bottom:380.672000pt;}
.y65{bottom:382.026667pt;}
.y19b{bottom:383.574667pt;}
.y92{bottom:387.665333pt;}
.y4{bottom:388.610667pt;}
.y168{bottom:395.680000pt;}
.y129{bottom:396.612000pt;}
.yfc{bottom:396.945333pt;}
.y64{bottom:400.597333pt;}
.y13a{bottom:403.226667pt;}
.y3{bottom:409.824000pt;}
.y91{bottom:410.220000pt;}
.y167{bottom:412.702667pt;}
.y128{bottom:415.182667pt;}
.yfb{bottom:415.514667pt;}
.y19a{bottom:417.620000pt;}
.y63{bottom:419.166667pt;}
.y2{bottom:425.725333pt;}
.y166{bottom:429.726667pt;}
.y127{bottom:433.752000pt;}
.yfa{bottom:434.085333pt;}
.y199{bottom:434.642667pt;}
.y62{bottom:437.737333pt;}
.y30{bottom:441.589333pt;}
.y1{bottom:441.625333pt;}
.y90{bottom:441.636000pt;}
.yd4{bottom:442.434667pt;}
.y165{bottom:446.749333pt;}
.y198{bottom:451.665333pt;}
.y126{bottom:452.322667pt;}
.yf9{bottom:452.656000pt;}
.y61{bottom:456.308000pt;}
.y8f{bottom:460.205333pt;}
.yd3{bottom:462.968000pt;}
.y164{bottom:463.772000pt;}
.y197{bottom:468.688000pt;}
.y125{bottom:470.893333pt;}
.yf8{bottom:471.226667pt;}
.y60{bottom:474.877333pt;}
.y2f{bottom:476.100000pt;}
.y8e{bottom:478.776000pt;}
.y163{bottom:480.794667pt;}
.yd2{bottom:483.560000pt;}
.y196{bottom:485.710667pt;}
.y124{bottom:489.462667pt;}
.yf7{bottom:489.796000pt;}
.y5f{bottom:493.448000pt;}
.y2e{bottom:494.669333pt;}
.y8d{bottom:497.346667pt;}
.y162{bottom:497.817333pt;}
.y195{bottom:502.733333pt;}
.yd1{bottom:504.064000pt;}
.y123{bottom:508.033333pt;}
.yf6{bottom:508.366667pt;}
.y5e{bottom:512.018667pt;}
.y2d{bottom:513.240000pt;}
.y161{bottom:514.840000pt;}
.y8c{bottom:515.916000pt;}
.y194{bottom:519.756000pt;}
.yd0{bottom:524.568000pt;}
.y122{bottom:526.604000pt;}
.yf5{bottom:526.937333pt;}
.y5d{bottom:530.589333pt;}
.y2c{bottom:531.810667pt;}
.y160{bottom:531.862667pt;}
.y8b{bottom:534.486667pt;}
.y193{bottom:536.778667pt;}
.ycf{bottom:545.160000pt;}
.y121{bottom:545.173333pt;}
.y15f{bottom:548.885333pt;}
.y5c{bottom:549.158667pt;}
.yf4{bottom:549.492000pt;}
.y2b{bottom:550.380000pt;}
.y8a{bottom:553.057333pt;}
.y192{bottom:553.801333pt;}
.y120{bottom:563.744000pt;}
.yce{bottom:565.664000pt;}
.y15e{bottom:565.908000pt;}
.y5b{bottom:567.729333pt;}
.y2a{bottom:568.950667pt;}
.y191{bottom:570.824000pt;}
.y89{bottom:571.626667pt;}
.yf3{bottom:580.908000pt;}
.y11f{bottom:582.314667pt;}
.y15d{bottom:582.930667pt;}
.ycd{bottom:586.168000pt;}
.y5a{bottom:586.300000pt;}
.y29{bottom:587.521333pt;}
.y190{bottom:587.846667pt;}
.y88{bottom:590.197333pt;}
.yf2{bottom:599.477333pt;}
.y15c{bottom:599.953333pt;}
.y11e{bottom:600.885333pt;}
.y59{bottom:604.869333pt;}
.y28{bottom:606.090667pt;}
.ycc{bottom:606.760000pt;}
.y15b{bottom:616.976000pt;}
.yf1{bottom:618.048000pt;}
.y11d{bottom:619.454667pt;}
.y18f{bottom:621.892000pt;}
.y58{bottom:623.440000pt;}
.y27{bottom:624.661333pt;}
.ycb{bottom:627.264000pt;}
.y15a{bottom:633.998667pt;}
.y87{bottom:635.496000pt;}
.yf0{bottom:636.618667pt;}
.y11c{bottom:638.025333pt;}
.y18e{bottom:638.914667pt;}
.y57{bottom:642.010667pt;}
.y26{bottom:643.232000pt;}
.yb8{bottom:643.750667pt;}
.yca{bottom:647.768000pt;}
.y159{bottom:651.021333pt;}
.y86{bottom:651.436000pt;}
.yef{bottom:655.188000pt;}
.y18d{bottom:655.937333pt;}
.y11b{bottom:656.596000pt;}
.y56{bottom:660.580000pt;}
.y25{bottom:661.801333pt;}
.yb7{bottom:662.320000pt;}
.y85{bottom:667.377333pt;}
.y158{bottom:668.044000pt;}
.yc9{bottom:668.360000pt;}
.y18c{bottom:672.961333pt;}
.yee{bottom:673.758667pt;}
.y11a{bottom:675.165333pt;}
.y55{bottom:679.150667pt;}
.y24{bottom:680.372000pt;}
.yb6{bottom:680.890667pt;}
.y84{bottom:683.317333pt;}
.y157{bottom:685.066667pt;}
.yc8{bottom:688.864000pt;}
.y18b{bottom:689.984000pt;}
.yed{bottom:692.329333pt;}
.y119{bottom:693.736000pt;}
.y54{bottom:697.721333pt;}
.y23{bottom:698.942667pt;}
.y83{bottom:699.257333pt;}
.yb5{bottom:699.461333pt;}
.y156{bottom:702.089333pt;}
.y18a{bottom:707.006667pt;}
.yc7{bottom:709.368000pt;}
.yec{bottom:710.900000pt;}
.y118{bottom:712.306667pt;}
.y82{bottom:715.197333pt;}
.y53{bottom:716.290667pt;}
.y22{bottom:717.513333pt;}
.yb4{bottom:718.030667pt;}
.y155{bottom:723.097333pt;}
.y189{bottom:724.029333pt;}
.yeb{bottom:729.469333pt;}
.yc6{bottom:729.960000pt;}
.y117{bottom:730.876000pt;}
.y81{bottom:731.137333pt;}
.y52{bottom:734.861333pt;}
.y21{bottom:736.082667pt;}
.yb3{bottom:736.601333pt;}
.y188{bottom:741.052000pt;}
.y80{bottom:747.077333pt;}
.yea{bottom:748.040000pt;}
.y116{bottom:749.446667pt;}
.yc5{bottom:750.464000pt;}
.y51{bottom:753.432000pt;}
.y20{bottom:754.653333pt;}
.yb2{bottom:755.172000pt;}
.y154{bottom:757.608000pt;}
.y187{bottom:758.074667pt;}
.y7f{bottom:763.018667pt;}
.ye9{bottom:766.610667pt;}
.y115{bottom:768.017333pt;}
.yc4{bottom:770.968000pt;}
.y50{bottom:772.002667pt;}
.yb1{bottom:773.742667pt;}
.y186{bottom:775.097333pt;}
.y7e{bottom:778.958667pt;}
.y153{bottom:782.910667pt;}
.ye8{bottom:785.180000pt;}
.y114{bottom:786.586667pt;}
.y1f{bottom:789.694667pt;}
.y4f{bottom:790.572000pt;}
.y185{bottom:792.120000pt;}
.yb0{bottom:792.312000pt;}
.y7d{bottom:794.898667pt;}
.yc3{bottom:795.960000pt;}
.y152{bottom:800.242667pt;}
.ye7{bottom:803.750667pt;}
.y1e{bottom:804.040000pt;}
.y113{bottom:805.157333pt;}
.y4e{bottom:809.142667pt;}
.y7c{bottom:810.838667pt;}
.yaf{bottom:810.882667pt;}
.y151{bottom:817.574667pt;}
.y1d{bottom:822.244000pt;}
.ye6{bottom:822.321333pt;}
.y112{bottom:823.728000pt;}
.y184{bottom:826.165333pt;}
.y7b{bottom:826.778667pt;}
.y4d{bottom:827.713333pt;}
.yae{bottom:829.453333pt;}
.y1c{bottom:832.733333pt;}
.yc2{bottom:834.064000pt;}
.ye5{bottom:840.890667pt;}
.y111{bottom:842.297333pt;}
.y7a{bottom:842.720000pt;}
.y150{bottom:842.877333pt;}
.y183{bottom:843.188000pt;}
.y4c{bottom:846.282667pt;}
.yad{bottom:848.022667pt;}
.y1b{bottom:850.937333pt;}
.yc1{bottom:854.568000pt;}
.y79{bottom:858.660000pt;}
.ye4{bottom:859.461333pt;}
.y14f{bottom:860.209333pt;}
.y182{bottom:860.210667pt;}
.y110{bottom:860.868000pt;}
.y4b{bottom:864.853333pt;}
.yac{bottom:866.593333pt;}
.yc0{bottom:875.189333pt;}
.y181{bottom:877.233333pt;}
.ye3{bottom:878.032000pt;}
.y10f{bottom:879.438667pt;}
.y78{bottom:881.001333pt;}
.y4a{bottom:883.424000pt;}
.yab{bottom:885.164000pt;}
.y14e{bottom:885.512000pt;}
.y77{bottom:888.972000pt;}
.y1a{bottom:890.117333pt;}
.y180{bottom:894.256000pt;}
.ybf{bottom:895.693333pt;}
.y10e{bottom:898.009333pt;}
.ye2{bottom:900.586667pt;}
.y49{bottom:901.993333pt;}
.yaa{bottom:903.733333pt;}
.y14d{bottom:910.813333pt;}
.y17f{bottom:911.278667pt;}
.ybe{bottom:916.197333pt;}
.y10d{bottom:916.578667pt;}
.y48{bottom:920.564000pt;}
.ya9{bottom:922.304000pt;}
.y19{bottom:924.628000pt;}
.y17e{bottom:928.301333pt;}
.y76{bottom:928.634667pt;}
.ye1{bottom:932.002667pt;}
.y10c{bottom:935.149333pt;}
.y14c{bottom:936.116000pt;}
.ybd{bottom:936.789333pt;}
.y47{bottom:939.134667pt;}
.ya8{bottom:940.874667pt;}
.y17d{bottom:945.324000pt;}
.y75{bottom:945.730667pt;}
.ye0{bottom:950.572000pt;}
.y18{bottom:952.482667pt;}
.y14b{bottom:953.448000pt;}
.y10b{bottom:953.720000pt;}
.y46{bottom:957.704000pt;}
.y17c{bottom:962.346667pt;}
.y74{bottom:962.826667pt;}
.ya7{bottom:963.429333pt;}
.ydf{bottom:969.142667pt;}
.y10a{bottom:972.289333pt;}
.y45{bottom:976.274667pt;}
.y14a{bottom:978.750667pt;}
.y17b{bottom:979.369333pt;}
.y17{bottom:980.338667pt;}
.y109{bottom:990.860000pt;}
.yde{bottom:991.698667pt;}
.ybb{bottom:991.701333pt;}
.y44{bottom:994.845333pt;}
.y149{bottom:996.082667pt;}
.y17a{bottom:996.392000pt;}
.yba{bottom:1001.117333pt;}
.y43{bottom:1013.414667pt;}
.y42{bottom:1066.841333pt;}
.hf{height:23.521527pt;}
.he{height:24.760382pt;}
.h6{height:28.947524pt;}
.h2{height:33.771789pt;}
.hd{height:36.666735pt;}
.h10{height:36.768636pt;}
.hc{height:38.256384pt;}
.h7{height:38.596538pt;}
.h3{height:38.947124pt;}
.h14{height:43.083391pt;}
.h12{height:43.295656pt;}
.ha{height:43.421286pt;}
.h9{height:45.907968pt;}
.h8{height:48.245551pt;}
.h5{height:48.360277pt;}
.h15{height:48.829687pt;}
.h13{height:54.363719pt;}
.h4{height:68.861952pt;}
.hb{height:70.139051pt;}
.h11{height:414.078133pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:593.278840pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x50{left:-86.079693pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x2e{left:55.592000pt;}
.x2d{left:62.068000pt;}
.x30{left:66.884000pt;}
.x27{left:71.306667pt;}
.x29{left:74.754667pt;}
.x26{left:76.461333pt;}
.x2b{left:77.444000pt;}
.x2c{left:79.284000pt;}
.x28{left:83.354667pt;}
.x2a{left:87.413333pt;}
.x24{left:95.920000pt;}
.x4f{left:100.020893pt;}
.x51{left:105.173640pt;}
.x52{left:136.325640pt;}
.x5{left:219.865333pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x3{left:239.924000pt;}
.x6{left:250.204000pt;}
.x39{left:253.176000pt;}
.x2f{left:258.644000pt;}
.xf{left:272.148000pt;}
.x10{left:278.790667pt;}
.x11{left:282.177333pt;}
.x56{left:284.340000pt;}
.x12{left:288.818667pt;}
.x13{left:295.593333pt;}
.x57{left:297.624000pt;}
.x58{left:300.984000pt;}
.x3c{left:302.214667pt;}
.x14{left:308.877333pt;}
.x59{left:314.268000pt;}
.x3d{left:315.498667pt;}
.x35{left:320.868000pt;}
.x36{left:326.918667pt;}
.x1a{left:346.052000pt;}
.x15{left:354.686667pt;}
.x1b{left:359.336000pt;}
.x1c{left:362.722667pt;}
.x16{left:367.969333pt;}
.x1d{left:376.006667pt;}
.xd{left:387.137333pt;}
.x3e{left:391.213333pt;}
.xe{left:393.778667pt;}
.x3f{left:394.901333pt;}
.x9{left:406.504000pt;}
.x5e{left:411.354667pt;}
.xa{left:413.145333pt;}
.xb{left:419.920000pt;}
.x5f{left:424.638667pt;}
.xc{left:426.561333pt;}
.x62{left:456.285333pt;}
.x1e{left:458.722667pt;}
.x41{left:460.070667pt;}
.x63{left:462.928000pt;}
.x1f{left:472.005333pt;}
.x42{left:473.353333pt;}
.x20{left:475.260000pt;}
.x43{left:476.665333pt;}
.x3a{left:485.293333pt;}
.x21{left:488.544000pt;}
.x44{left:489.948000pt;}
.x3b{left:491.342667pt;}
.x47{left:513.386667pt;}
.x48{left:526.669333pt;}
.x18{left:538.844000pt;}
.x19{left:552.128000pt;}
.x31{left:566.224000pt;}
.x32{left:577.621333pt;}
.x45{left:589.581333pt;}
.x53{left:592.576307pt;}
.x54{left:599.896000pt;}
.x37{left:600.994667pt;}
.x46{left:602.865333pt;}
.x38{left:607.045333pt;}
.x55{left:613.180000pt;}
.x25{left:632.652000pt;}
.x4b{left:639.970667pt;}
.x5a{left:642.056000pt;}
.x33{left:651.581333pt;}
.x4c{left:653.253333pt;}
.x5b{left:655.340000pt;}
.x34{left:659.785333pt;}
.x40{left:664.768000pt;}
.x22{left:671.856000pt;}
.x23{left:685.138667pt;}
.x5c{left:686.802667pt;}
.x5d{left:700.085333pt;}
.x49{left:710.238667pt;}
.x4d{left:716.678667pt;}
.x4a{left:723.521333pt;}
.x17{left:727.052000pt;}
.x4e{left:728.577333pt;}
.x7{left:733.794667pt;}
.x60{left:734.688000pt;}
.x8{left:740.436000pt;}
.x61{left:741.330667pt;}
}




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