
    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_de82b27e8b13582f942cb84b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_f33e532f5a4489541ccaf4e4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_412433ad7593f32900dc45c5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_cc22e3386dfecd7626f6964d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_13ddb783e5e0258af9697c08.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_620cfc2b17ded557ec5c26ed.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_d555c3a443956736dec22dba.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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_e35db3cba11c8965c33352cc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.772949;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_17215ec0619825ccd9e7f2e0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.713867;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_746caf5c2015fa3d6a588706.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.895996;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_5060b0bc1b7e68780c518b06.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.861816;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_e3f945910d5d52bfb1b87b93.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.895996;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_6ea742bf8864060e8bcb93a8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_d93c2274e8ddf83d8db11630.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.675781;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_d11695650a278239d4c7b8b7.woff2')format("woff");}.fff{font-family:fff;line-height:0.674805;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:ff10;src:url('chunks/assets/font_5deb66c478977e59c94f7c74.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.872559;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:ff11;src:url('chunks/assets/font_9ce981b99afe96acf2c40275.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.861816;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:ff12;src:url('chunks/assets/font_1fa7f2308938033f67257122.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.904297;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:ff13;src:url('chunks/assets/font_c971f7e658c1061cce739582.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.675781;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_4395f06d056fceab354a749b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666504;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:ff15;src:url('chunks/assets/font_86a83cca3ad6f5accda9924e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;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:ff16;src:url('chunks/assets/font_4548f202a951437fb9279441.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.869629;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:ff17;src:url('chunks/assets/font_a33bbb998bfc0c8e6fcfb685.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.666504;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:ff18;src:url('chunks/assets/font_3639a610db640c0c4c739a61.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.666504;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:ff19;src:url('chunks/assets/font_6d1d318d7d92bdf2c2766d6d.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.675781;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:ff1a;src:url('chunks/assets/font_3b8c619677c484ffa0083c4e.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.895508;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:ff1b;src:url('chunks/assets/font_7cc1527ac1dc88b5263bf8e5.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.005371;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:ff1c;src:url('chunks/assets/font_95ff709912787cd84563a086.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.666504;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:ff1d;src:url('chunks/assets/font_349cdc86dda2a69ef35e0d7a.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.666504;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:ff1e;src:url('chunks/assets/font_d3f1876da061e9c0961d0f7d.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.861816;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:ff1f;src:url('chunks/assets/font_b22ffb936ed11a00bcf0bdc9.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.871094;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:ff20;src:url('chunks/assets/font_1e76b223498e1f08abcca19b.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.666504;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:ff21;src:url('chunks/assets/font_c9a00ecec86782da9753d0aa.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.666504;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:ff22;src:url('chunks/assets/font_6d4b13a62592bd9ff11fc08a.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.895996;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:ff23;src:url('chunks/assets/font_18e5f36fa2a9243feb7e2f2a.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.871094;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;}
.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);}
.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);}
.m2{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:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls29{letter-spacing:-4.650336px;}
.ls5a{letter-spacing:-3.132000px;}
.ls5c{letter-spacing:-1.310400px;}
.ls58{letter-spacing:-0.968832px;}
.ls3d{letter-spacing:-0.786240px;}
.lse{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.576000px;}
.ls8{letter-spacing:-0.547200px;}
.lsa{letter-spacing:-0.454176px;}
.ls32{letter-spacing:-0.434160px;}
.ls1f{letter-spacing:-0.417312px;}
.ls4c{letter-spacing:-0.299088px;}
.ls57{letter-spacing:-0.260496px;}
.ls1e{letter-spacing:-0.241920px;}
.ls39{letter-spacing:-0.238464px;}
.ls41{letter-spacing:-0.229824px;}
.lsd{letter-spacing:-0.216000px;}
.ls38{letter-spacing:-0.205344px;}
.ls50{letter-spacing:-0.202608px;}
.ls51{letter-spacing:-0.198720px;}
.ls52{letter-spacing:-0.185472px;}
.ls40{letter-spacing:-0.181440px;}
.ls3a{letter-spacing:-0.178848px;}
.ls1d{letter-spacing:-0.175392px;}
.ls4f{letter-spacing:-0.172224px;}
.ls2e{letter-spacing:-0.165600px;}
.ls2d{letter-spacing:-0.158976px;}
.ls46{letter-spacing:-0.152352px;}
.ls2b{letter-spacing:-0.145728px;}
.ls4e{letter-spacing:-0.139104px;}
.ls5b{letter-spacing:-0.133056px;}
.ls48{letter-spacing:-0.132480px;}
.ls4b{letter-spacing:-0.125856px;}
.ls4d{letter-spacing:-0.119232px;}
.ls14{letter-spacing:-0.112608px;}
.ls12{letter-spacing:-0.105984px;}
.ls11{letter-spacing:-0.099360px;}
.ls30{letter-spacing:-0.092736px;}
.ls13{letter-spacing:-0.086112px;}
.ls31{letter-spacing:-0.079488px;}
.ls2f{letter-spacing:-0.072864px;}
.ls35{letter-spacing:-0.066240px;}
.ls37{letter-spacing:-0.059616px;}
.ls47{letter-spacing:-0.052992px;}
.ls36{letter-spacing:-0.046368px;}
.ls45{letter-spacing:-0.036000px;}
.ls2c{letter-spacing:-0.033120px;}
.ls5f{letter-spacing:-0.028800px;}
.ls2a{letter-spacing:-0.019872px;}
.ls5d{letter-spacing:-0.014400px;}
.ls49{letter-spacing:-0.007200px;}
.ls9{letter-spacing:0.000000px;}
.ls56{letter-spacing:0.004320px;}
.ls5e{letter-spacing:0.007200px;}
.ls44{letter-spacing:0.010944px;}
.ls43{letter-spacing:0.014400px;}
.ls4a{letter-spacing:0.021600px;}
.ls55{letter-spacing:0.028800px;}
.ls15{letter-spacing:0.036000px;}
.ls42{letter-spacing:0.046656px;}
.ls33{letter-spacing:0.062208px;}
.ls34{letter-spacing:0.108864px;}
.ls22{letter-spacing:0.113760px;}
.ls3c{letter-spacing:0.132192px;}
.lsc{letter-spacing:0.144000px;}
.ls3f{letter-spacing:0.156816px;}
.ls3b{letter-spacing:0.202176px;}
.ls53{letter-spacing:0.225504px;}
.ls24{letter-spacing:0.232272px;}
.ls3{letter-spacing:0.233856px;}
.ls26{letter-spacing:0.240048px;}
.ls23{letter-spacing:0.254880px;}
.ls27{letter-spacing:0.266112px;}
.ls28{letter-spacing:0.270864px;}
.ls2{letter-spacing:0.275616px;}
.ls4{letter-spacing:0.276480px;}
.ls1{letter-spacing:0.290304px;}
.ls3e{letter-spacing:0.294624px;}
.ls0{letter-spacing:0.309024px;}
.ls59{letter-spacing:0.409248px;}
.lsb{letter-spacing:0.432000px;}
.ls25{letter-spacing:0.448704px;}
.ls21{letter-spacing:0.462240px;}
.ls10{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.576000px;}
.ls1c{letter-spacing:0.680400px;}
.ls5{letter-spacing:1.080000px;}
.ls1a{letter-spacing:1.397647px;}
.ls16{letter-spacing:1.404706px;}
.ls19{letter-spacing:1.411765px;}
.ls17{letter-spacing:1.461177px;}
.ls54{letter-spacing:54.866736px;}
.ls18{letter-spacing:59.934960px;}
.ls20{letter-spacing:63.588816px;}
.ls1b{letter-spacing:846.000000px;}
.ls7{letter-spacing:847.728000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(47,84,150),0 0.015em rgb(47,84,150),0.015em 0 rgb(47,84,150),0 -0.015em  rgb(47,84,150);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(47,84,150);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-25.088400px;}
.ws2{word-spacing:-22.024224px;}
.ws2b{word-spacing:-21.543984px;}
.ws14{word-spacing:-21.370320px;}
.ws4{word-spacing:-19.296000px;}
.ws2e{word-spacing:-19.284768px;}
.ws2d{word-spacing:-18.875520px;}
.ws0{word-spacing:-18.864000px;}
.ws5{word-spacing:-18.720000px;}
.ws1{word-spacing:-18.504000px;}
.ws3{word-spacing:-18.000000px;}
.ws2c{word-spacing:-17.906688px;}
.ws16{word-spacing:-17.705952px;}
.ws15{word-spacing:-17.635968px;}
.ws9{word-spacing:-17.414118px;}
.wsb{word-spacing:-17.350589px;}
.ws35{word-spacing:-16.300800px;}
.ws32{word-spacing:-16.293600px;}
.ws33{word-spacing:-16.286400px;}
.ws34{word-spacing:-16.279200px;}
.ws1c{word-spacing:-16.272000px;}
.ws31{word-spacing:-16.257600px;}
.ws36{word-spacing:-16.243200px;}
.ws6{word-spacing:-15.696000px;}
.wsf{word-spacing:-14.970240px;}
.ws30{word-spacing:-14.961600px;}
.wsc{word-spacing:-14.950368px;}
.ws25{word-spacing:-14.937120px;}
.ws1f{word-spacing:-14.910624px;}
.ws28{word-spacing:-14.904000px;}
.ws27{word-spacing:-14.890752px;}
.ws10{word-spacing:-14.884128px;}
.ws22{word-spacing:-14.877504px;}
.wse{word-spacing:-14.870880px;}
.ws1d{word-spacing:-14.864256px;}
.ws20{word-spacing:-14.857632px;}
.ws24{word-spacing:-14.844384px;}
.ws23{word-spacing:-14.837760px;}
.wsd{word-spacing:-14.824512px;}
.ws1e{word-spacing:-14.817888px;}
.ws21{word-spacing:-14.811264px;}
.ws13{word-spacing:-14.804640px;}
.ws29{word-spacing:-14.791392px;}
.ws2a{word-spacing:-14.784768px;}
.ws26{word-spacing:-14.764896px;}
.ws19{word-spacing:-13.668480px;}
.wsa{word-spacing:-13.493088px;}
.ws1a{word-spacing:-13.487040px;}
.ws1b{word-spacing:-13.438656px;}
.ws17{word-spacing:-12.882240px;}
.ws18{word-spacing:-12.626064px;}
.ws2f{word-spacing:-0.072000px;}
.ws12{word-spacing:-0.060480px;}
.ws11{word-spacing:-0.041760px;}
.ws7{word-spacing:0.000000px;}
._13{margin-left:-6.251519px;}
._a{margin-left:-2.280000px;}
._1{margin-left:-1.224000px;}
._0{width:1.203840px;}
._2{width:2.448000px;}
._d{width:4.438080px;}
._16{width:23.483664px;}
._f{width:69.825648px;}
._12{width:84.062545px;}
._14{width:112.200624px;}
._11{width:117.786384px;}
._15{width:132.307248px;}
._10{width:196.127136px;}
._b{width:432.919191px;}
._e{width:842.195520px;}
._8{width:1074.200235px;}
._3{width:1894.568272px;}
._5{width:2014.195248px;}
._7{width:2026.435824px;}
._6{width:2113.974576px;}
._4{width:2134.078400px;}
._9{width:2273.165465px;}
._c{width:2331.379585px;}
.fc9{color:rgb(149,79,114);}
.fc6{color:rgb(91,155,213);}
.fc5{color:rgb(47,85,151);}
.fc7{color:rgb(0,0,255);}
.fc4{color:rgb(5,102,141);}
.fc8{color:rgb(5,99,193);}
.fc2{color:rgb(47,84,150);}
.fca{color:rgb(89,89,89);}
.fc3{color:rgb(34,42,53);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(82,82,82);}
.fsc{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fsd{font-size:47.520000px;}
.fs0{font-size:54.720000px;}
.fs9{font-size:60.480000px;}
.fse{font-size:63.360000px;}
.fs6{font-size:66.240000px;}
.fs8{font-size:70.588238px;}
.fs3{font-size:72.000000px;}
.fsb{font-size:77.760000px;}
.fs5{font-size:83.520000px;}
.fs7{font-size:96.480000px;}
.fs4{font-size:108.000000px;}
.fs2{font-size:117.176472px;}
.fs1{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y6{bottom:0.000028px;}
.yf5{bottom:4.500000px;}
.ye7{bottom:4.620000px;}
.yde{bottom:4.740000px;}
.yc6{bottom:4.860000px;}
.yd4{bottom:4.980000px;}
.ydb{bottom:5.280000px;}
.yc3{bottom:5.400000px;}
.yeb{bottom:5.460000px;}
.yd1{bottom:5.520000px;}
.yf1{bottom:5.760000px;}
.ye3{bottom:5.820000px;}
.yf3{bottom:5.880000px;}
.yc0{bottom:7.440000px;}
.yc1{bottom:9.600000px;}
.yc7{bottom:14.940000px;}
.yd5{bottom:15.060000px;}
.yd8{bottom:15.360000px;}
.ye9{bottom:15.540000px;}
.yee{bottom:15.840000px;}
.ye1{bottom:15.900000px;}
.ye5{bottom:24.780000px;}
.ydd{bottom:24.900000px;}
.yc5{bottom:25.020000px;}
.yd3{bottom:25.140000px;}
.yda{bottom:25.440000px;}
.yea{bottom:25.620000px;}
.yd0{bottom:25.680000px;}
.yf0{bottom:25.920000px;}
.ye2{bottom:25.980000px;}
.yd7{bottom:35.520000px;}
.yed{bottom:36.000000px;}
.ye6{bottom:44.940000px;}
.yd9{bottom:45.600000px;}
.ycf{bottom:45.840000px;}
.yef{bottom:46.080000px;}
.yca{bottom:55.920000px;}
.y2{bottom:56.880000px;}
.yce{bottom:66.000000px;}
.y1{bottom:75.240000px;}
.yc9{bottom:76.080000px;}
.ycd{bottom:86.160000px;}
.y5b{bottom:99.000000px;}
.y87{bottom:103.320000px;}
.ycc{bottom:106.320000px;}
.y128{bottom:110.880000px;}
.y5a{bottom:111.960000px;}
.y86{bottom:123.480000px;}
.ycb{bottom:126.480000px;}
.ye4{bottom:127.500000px;}
.y59{bottom:128.160000px;}
.y127{bottom:132.840000px;}
.yb0{bottom:135.000000px;}
.y85{bottom:143.640000px;}
.y58{bottom:150.120000px;}
.y126{bottom:154.800000px;}
.yaf{bottom:155.160000px;}
.y84{bottom:163.800000px;}
.y57{bottom:168.480000px;}
.yae{bottom:175.320000px;}
.y21{bottom:176.400000px;}
.y125{bottom:176.760000px;}
.y56{bottom:181.440000px;}
.y83{bottom:183.960000px;}
.ye0{bottom:187.500000px;}
.y124{bottom:198.720000px;}
.y20{bottom:203.400000px;}
.y82{bottom:204.120000px;}
.yad{bottom:216.360000px;}
.y55{bottom:219.240000px;}
.y123{bottom:220.680000px;}
.y1f{bottom:223.560000px;}
.ydf{bottom:229.500000px;}
.yac{bottom:236.520000px;}
.y54{bottom:239.400000px;}
.y122{bottom:242.640000px;}
.y1e{bottom:243.720000px;}
.y14b{bottom:244.440000px;}
.y81{bottom:245.160000px;}
.ydc{bottom:250.500000px;}
.yab{bottom:256.680000px;}
.y53{bottom:259.560000px;}
.y1d{bottom:263.880000px;}
.y121{bottom:264.960000px;}
.y80{bottom:265.320000px;}
.y14a{bottom:266.400000px;}
.yaa{bottom:276.840000px;}
.y52{bottom:279.720000px;}
.y1c{bottom:284.040000px;}
.y7f{bottom:285.480000px;}
.y120{bottom:286.920000px;}
.y149{bottom:288.360000px;}
.yd6{bottom:291.000000px;}
.ya9{bottom:297.000000px;}
.y51{bottom:299.880000px;}
.y1b{bottom:304.200000px;}
.y7e{bottom:305.640000px;}
.y11f{bottom:308.880000px;}
.y148{bottom:310.320000px;}
.ya8{bottom:317.160000px;}
.y50{bottom:320.760000px;}
.y1a{bottom:324.360000px;}
.y11e{bottom:330.840000px;}
.y147{bottom:332.280000px;}
.y4f{bottom:344.520000px;}
.y19{bottom:344.880002px;}
.y7d{bottom:347.040000px;}
.yd2{bottom:352.500000px;}
.y11d{bottom:352.800000px;}
.y146{bottom:354.240000px;}
.ya7{bottom:358.560000px;}
.y18{bottom:366.480000px;}
.y11c{bottom:374.760000px;}
.y145{bottom:376.200000px;}
.ya6{bottom:378.720000px;}
.y4e{bottom:388.800000px;}
.y7c{bottom:389.880000px;}
.yc8{bottom:393.000000px;}
.y11b{bottom:396.720000px;}
.y144{bottom:398.160000px;}
.ya5{bottom:398.520000px;}
.y17{bottom:404.640000px;}
.y4d{bottom:408.960000px;}
.y7b{bottom:410.040000px;}
.ya4{bottom:418.680000px;}
.y143{bottom:420.120000px;}
.y4c{bottom:429.120000px;}
.y7a{bottom:429.840000px;}
.ya3{bottom:438.840000px;}
.y11a{bottom:440.640000px;}
.y142{bottom:442.080000px;}
.y16{bottom:442.800000px;}
.y4b{bottom:449.280000px;}
.y119{bottom:462.600000px;}
.y141{bottom:464.040000px;}
.y79{bottom:471.240000px;}
.ya2{bottom:480.240000px;}
.y15{bottom:480.960000px;}
.y118{bottom:484.560000px;}
.y140{bottom:486.000000px;}
.y4a{bottom:490.320000px;}
.y78{bottom:491.400000px;}
.ya1{bottom:500.400000px;}
.y117{bottom:506.520000px;}
.y13f{bottom:507.960000px;}
.y49{bottom:510.480000px;}
.y77{bottom:511.560000px;}
.ya0{bottom:520.560000px;}
.y14{bottom:523.101240px;}
.y116{bottom:528.480000px;}
.y13e{bottom:529.920000px;}
.y48{bottom:530.640000px;}
.y76{bottom:531.720000px;}
.yc4{bottom:535.500000px;}
.y9f{bottom:540.720000px;}
.y115{bottom:550.440000px;}
.y47{bottom:550.800000px;}
.y75{bottom:551.880000px;}
.y13{bottom:559.461240px;}
.y9e{bottom:560.520000px;}
.y114{bottom:572.400000px;}
.y13d{bottom:573.840000px;}
.yc2{bottom:576.000000px;}
.y9d{bottom:580.680000px;}
.y46{bottom:591.840000px;}
.y74{bottom:592.920000px;}
.y113{bottom:594.360000px;}
.y13c{bottom:595.800000px;}
.y12{bottom:596.181240px;}
.ybf{bottom:597.000000px;}
.y9c{bottom:600.840000px;}
.y45{bottom:612.000000px;}
.y73{bottom:613.080000px;}
.y112{bottom:616.320000px;}
.y13b{bottom:617.760000px;}
.y9b{bottom:621.360000px;}
.y44{bottom:632.160000px;}
.y72{bottom:633.240000px;}
.ybe{bottom:634.680000px;}
.y111{bottom:638.280000px;}
.y13a{bottom:639.720000px;}
.y11{bottom:640.079972px;}
.y43{bottom:652.320000px;}
.y71{bottom:653.400000px;}
.y110{bottom:660.240000px;}
.y139{bottom:661.680000px;}
.y9a{bottom:664.560000px;}
.y70{bottom:673.560000px;}
.y10{bottom:674.279972px;}
.y33{bottom:677.520000px;}
.y10f{bottom:681.840000px;}
.ybd{bottom:682.560000px;}
.y138{bottom:683.640000px;}
.y6f{bottom:693.720000px;}
.y42{bottom:694.440000px;}
.y10e{bottom:702.000000px;}
.y32{bottom:704.160000px;}
.y137{bottom:705.600000px;}
.yf{bottom:709.559972px;}
.y99{bottom:712.440000px;}
.y6e{bottom:713.880000px;}
.y10d{bottom:722.160000px;}
.y41{bottom:722.520000px;}
.ybc{bottom:723.600000px;}
.y31{bottom:725.400000px;}
.y30{bottom:725.664708px;}
.y136{bottom:727.560000px;}
.y98{bottom:732.600000px;}
.y10c{bottom:742.680000px;}
.ybb{bottom:743.760000px;}
.ye{bottom:745.199972px;}
.y135{bottom:749.520000px;}
.y40{bottom:751.680000px;}
.y6d{bottom:754.920000px;}
.y10b{bottom:764.640000px;}
.y134{bottom:771.480000px;}
.y97{bottom:773.640000px;}
.y2f{bottom:774.720000px;}
.y2e{bottom:774.984708px;}
.y6c{bottom:775.080000px;}
.yd{bottom:780.479972px;}
.yba{bottom:784.800000px;}
.y10a{bottom:786.600000px;}
.y133{bottom:793.440000px;}
.y96{bottom:793.800000px;}
.yfb{bottom:794.160000px;}
.y6b{bottom:795.240000px;}
.y3f{bottom:799.200000px;}
.yb9{bottom:804.960000px;}
.y109{bottom:808.560000px;}
.y6a{bottom:815.400000px;}
.yc{bottom:816.119972px;}
.yfa{bottom:821.160000px;}
.y2d{bottom:823.680000px;}
.y2c{bottom:823.944708px;}
.yb8{bottom:825.120000px;}
.y108{bottom:831.600000px;}
.y95{bottom:835.200000px;}
.y69{bottom:835.560000px;}
.y132{bottom:837.720000px;}
.yf9{bottom:841.680000px;}
.y3e{bottom:847.080000px;}
.yb{bottom:848.160000px;}
.y107{bottom:854.640000px;}
.y131{bottom:855.000000px;}
.y94{bottom:855.360000px;}
.y68{bottom:855.720000px;}
.yb7{bottom:866.160000px;}
.y2b{bottom:872.640000px;}
.y2a{bottom:872.904708px;}
.y93{bottom:875.520000px;}
.y106{bottom:876.600000px;}
.ya{bottom:882.000000px;}
.yf8{bottom:883.440000px;}
.yb6{bottom:886.320000px;}
.y3d{bottom:888.120000px;}
.y92{bottom:895.680000px;}
.y67{bottom:897.120000px;}
.y105{bottom:898.560000px;}
.yb5{bottom:906.840000px;}
.y3c{bottom:908.280000px;}
.y9{bottom:915.480000px;}
.y91{bottom:915.840000px;}
.y66{bottom:919.080000px;}
.y29{bottom:920.880000px;}
.y104{bottom:921.240000px;}
.yf7{bottom:924.840000px;}
.y3b{bottom:928.440000px;}
.y90{bottom:935.640000px;}
.y65{bottom:941.040000px;}
.y103{bottom:944.280000px;}
.y3a{bottom:948.600000px;}
.yb4{bottom:950.040000px;}
.y8f{bottom:955.800000px;}
.y28{bottom:956.880000px;}
.y8{bottom:960.839972px;}
.y64{bottom:963.000000px;}
.y102{bottom:967.320000px;}
.yf6{bottom:968.040000px;}
.y39{bottom:968.760000px;}
.y8e{bottom:976.320000px;}
.y63{bottom:984.960000px;}
.y130{bottom:985.680000px;}
.y7{bottom:987.119972px;}
.y38{bottom:988.920000px;}
.y101{bottom:989.280000px;}
.y27{bottom:993.240000px;}
.yb3{bottom:997.920000px;}
.y62{bottom:1006.920000px;}
.y12f{bottom:1007.640000px;}
.y100{bottom:1011.240000px;}
.yf4{bottom:1012.500000px;}
.y8d{bottom:1017.720000px;}
.y5{bottom:1019.520000px;}
.y61{bottom:1028.880000px;}
.y12e{bottom:1029.600000px;}
.y37{bottom:1029.960000px;}
.y26{bottom:1030.320000px;}
.y25{bottom:1030.584708px;}
.yf2{bottom:1032.000000px;}
.yff{bottom:1032.480000px;}
.yb2{bottom:1039.320000px;}
.y4{bottom:1044.381168px;}
.y36{bottom:1050.120000px;}
.y60{bottom:1050.840000px;}
.y12d{bottom:1051.560000px;}
.yfe{bottom:1052.640000px;}
.yec{bottom:1053.000000px;}
.yb1{bottom:1059.480000px;}
.y8c{bottom:1060.200000px;}
.y35{bottom:1070.280000px;}
.y5f{bottom:1072.800000px;}
.y12c{bottom:1073.520000px;}
.yfd{bottom:1078.200000px;}
.y24{bottom:1079.280000px;}
.y23{bottom:1079.544708px;}
.y8b{bottom:1080.360000px;}
.y3{bottom:1090.440000px;}
.y5e{bottom:1094.760000px;}
.y12b{bottom:1095.480000px;}
.y8a{bottom:1100.520000px;}
.yfc{bottom:1104.480000px;}
.ye8{bottom:1114.500000px;}
.y5d{bottom:1116.360000px;}
.y12a{bottom:1117.440000px;}
.y89{bottom:1120.680000px;}
.y22{bottom:1130.759972px;}
.y34{bottom:1134.000000px;}
.y5c{bottom:1138.320000px;}
.y129{bottom:1139.400000px;}
.y88{bottom:1140.840000px;}
.h1c{height:21.000000px;}
.h18{height:22.500000px;}
.h14{height:25.913672px;}
.h17{height:30.000000px;}
.h15{height:36.359297px;}
.h2{height:41.868281px;}
.h1f{height:41.904844px;}
.h19{height:42.000000px;}
.h16{height:43.410938px;}
.h20{height:45.895781px;}
.he{height:47.047337px;}
.h9{height:47.286563px;}
.ha{height:47.545313px;}
.h5{height:47.988281px;}
.h11{height:48.095156px;}
.hb{height:49.218750px;}
.hf{height:51.679688px;}
.h12{height:52.313203px;}
.h13{height:53.763750px;}
.h7{height:54.703125px;}
.h1e{height:57.093750px;}
.h1b{height:61.500000px;}
.h1d{height:63.000000px;}
.hc{height:64.304297px;}
.h10{height:65.953125px;}
.hd{height:71.982422px;}
.h4{height:78.098576px;}
.h3{height:79.660547px;}
.h8{height:82.634766px;}
.h1a{height:142.500000px;}
.h6{height:1262.879972px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:124.500000px;}
.w5{width:171.000000px;}
.w4{width:181.500000px;}
.w3{width:186.000000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:8.340072px;}
.x1{left:106.200072px;}
.x4{left:133.200000px;}
.x6{left:138.150144px;}
.xd{left:143.025156px;}
.x5{left:160.200072px;}
.x9{left:229.500000px;}
.x7{left:322.200072px;}
.xc{left:371.700000px;}
.xa{left:414.000000px;}
.xb{left:595.500000px;}
.xe{left:769.320000px;}
.x3{left:785.400120px;}
.x2{left:790.560000px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls29{letter-spacing:-4.133632pt;}
.ls5a{letter-spacing:-2.784000pt;}
.ls5c{letter-spacing:-1.164800pt;}
.ls58{letter-spacing:-0.861184pt;}
.ls3d{letter-spacing:-0.698880pt;}
.lse{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.512000pt;}
.ls8{letter-spacing:-0.486400pt;}
.lsa{letter-spacing:-0.403712pt;}
.ls32{letter-spacing:-0.385920pt;}
.ls1f{letter-spacing:-0.370944pt;}
.ls4c{letter-spacing:-0.265856pt;}
.ls57{letter-spacing:-0.231552pt;}
.ls1e{letter-spacing:-0.215040pt;}
.ls39{letter-spacing:-0.211968pt;}
.ls41{letter-spacing:-0.204288pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls38{letter-spacing:-0.182528pt;}
.ls50{letter-spacing:-0.180096pt;}
.ls51{letter-spacing:-0.176640pt;}
.ls52{letter-spacing:-0.164864pt;}
.ls40{letter-spacing:-0.161280pt;}
.ls3a{letter-spacing:-0.158976pt;}
.ls1d{letter-spacing:-0.155904pt;}
.ls4f{letter-spacing:-0.153088pt;}
.ls2e{letter-spacing:-0.147200pt;}
.ls2d{letter-spacing:-0.141312pt;}
.ls46{letter-spacing:-0.135424pt;}
.ls2b{letter-spacing:-0.129536pt;}
.ls4e{letter-spacing:-0.123648pt;}
.ls5b{letter-spacing:-0.118272pt;}
.ls48{letter-spacing:-0.117760pt;}
.ls4b{letter-spacing:-0.111872pt;}
.ls4d{letter-spacing:-0.105984pt;}
.ls14{letter-spacing:-0.100096pt;}
.ls12{letter-spacing:-0.094208pt;}
.ls11{letter-spacing:-0.088320pt;}
.ls30{letter-spacing:-0.082432pt;}
.ls13{letter-spacing:-0.076544pt;}
.ls31{letter-spacing:-0.070656pt;}
.ls2f{letter-spacing:-0.064768pt;}
.ls35{letter-spacing:-0.058880pt;}
.ls37{letter-spacing:-0.052992pt;}
.ls47{letter-spacing:-0.047104pt;}
.ls36{letter-spacing:-0.041216pt;}
.ls45{letter-spacing:-0.032000pt;}
.ls2c{letter-spacing:-0.029440pt;}
.ls5f{letter-spacing:-0.025600pt;}
.ls2a{letter-spacing:-0.017664pt;}
.ls5d{letter-spacing:-0.012800pt;}
.ls49{letter-spacing:-0.006400pt;}
.ls9{letter-spacing:0.000000pt;}
.ls56{letter-spacing:0.003840pt;}
.ls5e{letter-spacing:0.006400pt;}
.ls44{letter-spacing:0.009728pt;}
.ls43{letter-spacing:0.012800pt;}
.ls4a{letter-spacing:0.019200pt;}
.ls55{letter-spacing:0.025600pt;}
.ls15{letter-spacing:0.032000pt;}
.ls42{letter-spacing:0.041472pt;}
.ls33{letter-spacing:0.055296pt;}
.ls34{letter-spacing:0.096768pt;}
.ls22{letter-spacing:0.101120pt;}
.ls3c{letter-spacing:0.117504pt;}
.lsc{letter-spacing:0.128000pt;}
.ls3f{letter-spacing:0.139392pt;}
.ls3b{letter-spacing:0.179712pt;}
.ls53{letter-spacing:0.200448pt;}
.ls24{letter-spacing:0.206464pt;}
.ls3{letter-spacing:0.207872pt;}
.ls26{letter-spacing:0.213376pt;}
.ls23{letter-spacing:0.226560pt;}
.ls27{letter-spacing:0.236544pt;}
.ls28{letter-spacing:0.240768pt;}
.ls2{letter-spacing:0.244992pt;}
.ls4{letter-spacing:0.245760pt;}
.ls1{letter-spacing:0.258048pt;}
.ls3e{letter-spacing:0.261888pt;}
.ls0{letter-spacing:0.274688pt;}
.ls59{letter-spacing:0.363776pt;}
.lsb{letter-spacing:0.384000pt;}
.ls25{letter-spacing:0.398848pt;}
.ls21{letter-spacing:0.410880pt;}
.ls10{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.512000pt;}
.ls1c{letter-spacing:0.604800pt;}
.ls5{letter-spacing:0.960000pt;}
.ls1a{letter-spacing:1.242353pt;}
.ls16{letter-spacing:1.248628pt;}
.ls19{letter-spacing:1.254902pt;}
.ls17{letter-spacing:1.298824pt;}
.ls54{letter-spacing:48.770432pt;}
.ls18{letter-spacing:53.275520pt;}
.ls20{letter-spacing:56.523392pt;}
.ls1b{letter-spacing:752.000000pt;}
.ls7{letter-spacing:753.536000pt;}
.ws8{word-spacing:-22.300800pt;}
.ws2{word-spacing:-19.577088pt;}
.ws2b{word-spacing:-19.150208pt;}
.ws14{word-spacing:-18.995840pt;}
.ws4{word-spacing:-17.152000pt;}
.ws2e{word-spacing:-17.142016pt;}
.ws2d{word-spacing:-16.778240pt;}
.ws0{word-spacing:-16.768000pt;}
.ws5{word-spacing:-16.640000pt;}
.ws1{word-spacing:-16.448000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws2c{word-spacing:-15.917056pt;}
.ws16{word-spacing:-15.738624pt;}
.ws15{word-spacing:-15.676416pt;}
.ws9{word-spacing:-15.479216pt;}
.wsb{word-spacing:-15.422746pt;}
.ws35{word-spacing:-14.489600pt;}
.ws32{word-spacing:-14.483200pt;}
.ws33{word-spacing:-14.476800pt;}
.ws34{word-spacing:-14.470400pt;}
.ws1c{word-spacing:-14.464000pt;}
.ws31{word-spacing:-14.451200pt;}
.ws36{word-spacing:-14.438400pt;}
.ws6{word-spacing:-13.952000pt;}
.wsf{word-spacing:-13.306880pt;}
.ws30{word-spacing:-13.299200pt;}
.wsc{word-spacing:-13.289216pt;}
.ws25{word-spacing:-13.277440pt;}
.ws1f{word-spacing:-13.253888pt;}
.ws28{word-spacing:-13.248000pt;}
.ws27{word-spacing:-13.236224pt;}
.ws10{word-spacing:-13.230336pt;}
.ws22{word-spacing:-13.224448pt;}
.wse{word-spacing:-13.218560pt;}
.ws1d{word-spacing:-13.212672pt;}
.ws20{word-spacing:-13.206784pt;}
.ws24{word-spacing:-13.195008pt;}
.ws23{word-spacing:-13.189120pt;}
.wsd{word-spacing:-13.177344pt;}
.ws1e{word-spacing:-13.171456pt;}
.ws21{word-spacing:-13.165568pt;}
.ws13{word-spacing:-13.159680pt;}
.ws29{word-spacing:-13.147904pt;}
.ws2a{word-spacing:-13.142016pt;}
.ws26{word-spacing:-13.124352pt;}
.ws19{word-spacing:-12.149760pt;}
.wsa{word-spacing:-11.993856pt;}
.ws1a{word-spacing:-11.988480pt;}
.ws1b{word-spacing:-11.945472pt;}
.ws17{word-spacing:-11.450880pt;}
.ws18{word-spacing:-11.223168pt;}
.ws2f{word-spacing:-0.064000pt;}
.ws12{word-spacing:-0.053760pt;}
.ws11{word-spacing:-0.037120pt;}
.ws7{word-spacing:0.000000pt;}
._13{margin-left:-5.556906pt;}
._a{margin-left:-2.026667pt;}
._1{margin-left:-1.088000pt;}
._0{width:1.070080pt;}
._2{width:2.176000pt;}
._d{width:3.944960pt;}
._16{width:20.874368pt;}
._f{width:62.067243pt;}
._12{width:74.722262pt;}
._14{width:99.733888pt;}
._11{width:104.699008pt;}
._15{width:117.606443pt;}
._10{width:174.335232pt;}
._b{width:384.817059pt;}
._e{width:748.618240pt;}
._8{width:954.844654pt;}
._3{width:1684.060686pt;}
._5{width:1790.395776pt;}
._7{width:1801.276288pt;}
._6{width:1879.088512pt;}
._4{width:1896.958578pt;}
._9{width:2020.591524pt;}
._c{width:2072.337409pt;}
.fsc{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fsd{font-size:42.240000pt;}
.fs0{font-size:48.640000pt;}
.fs9{font-size:53.760000pt;}
.fse{font-size:56.320000pt;}
.fs6{font-size:58.880000pt;}
.fs8{font-size:62.745101pt;}
.fs3{font-size:64.000000pt;}
.fsb{font-size:69.120000pt;}
.fs5{font-size:74.240000pt;}
.fs7{font-size:85.760000pt;}
.fs4{font-size:96.000000pt;}
.fs2{font-size:104.156864pt;}
.fs1{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:0.000025pt;}
.yf5{bottom:4.000000pt;}
.ye7{bottom:4.106667pt;}
.yde{bottom:4.213333pt;}
.yc6{bottom:4.320000pt;}
.yd4{bottom:4.426667pt;}
.ydb{bottom:4.693333pt;}
.yc3{bottom:4.800000pt;}
.yeb{bottom:4.853333pt;}
.yd1{bottom:4.906667pt;}
.yf1{bottom:5.120000pt;}
.ye3{bottom:5.173333pt;}
.yf3{bottom:5.226667pt;}
.yc0{bottom:6.613333pt;}
.yc1{bottom:8.533333pt;}
.yc7{bottom:13.280000pt;}
.yd5{bottom:13.386667pt;}
.yd8{bottom:13.653333pt;}
.ye9{bottom:13.813333pt;}
.yee{bottom:14.080000pt;}
.ye1{bottom:14.133333pt;}
.ye5{bottom:22.026667pt;}
.ydd{bottom:22.133333pt;}
.yc5{bottom:22.240000pt;}
.yd3{bottom:22.346667pt;}
.yda{bottom:22.613333pt;}
.yea{bottom:22.773333pt;}
.yd0{bottom:22.826667pt;}
.yf0{bottom:23.040000pt;}
.ye2{bottom:23.093333pt;}
.yd7{bottom:31.573333pt;}
.yed{bottom:32.000000pt;}
.ye6{bottom:39.946667pt;}
.yd9{bottom:40.533333pt;}
.ycf{bottom:40.746667pt;}
.yef{bottom:40.960000pt;}
.yca{bottom:49.706667pt;}
.y2{bottom:50.560000pt;}
.yce{bottom:58.666667pt;}
.y1{bottom:66.880000pt;}
.yc9{bottom:67.626667pt;}
.ycd{bottom:76.586667pt;}
.y5b{bottom:88.000000pt;}
.y87{bottom:91.840000pt;}
.ycc{bottom:94.506667pt;}
.y128{bottom:98.560000pt;}
.y5a{bottom:99.520000pt;}
.y86{bottom:109.760000pt;}
.ycb{bottom:112.426667pt;}
.ye4{bottom:113.333333pt;}
.y59{bottom:113.920000pt;}
.y127{bottom:118.080000pt;}
.yb0{bottom:120.000000pt;}
.y85{bottom:127.680000pt;}
.y58{bottom:133.440000pt;}
.y126{bottom:137.600000pt;}
.yaf{bottom:137.920000pt;}
.y84{bottom:145.600000pt;}
.y57{bottom:149.760000pt;}
.yae{bottom:155.840000pt;}
.y21{bottom:156.800000pt;}
.y125{bottom:157.120000pt;}
.y56{bottom:161.280000pt;}
.y83{bottom:163.520000pt;}
.ye0{bottom:166.666667pt;}
.y124{bottom:176.640000pt;}
.y20{bottom:180.800000pt;}
.y82{bottom:181.440000pt;}
.yad{bottom:192.320000pt;}
.y55{bottom:194.880000pt;}
.y123{bottom:196.160000pt;}
.y1f{bottom:198.720000pt;}
.ydf{bottom:204.000000pt;}
.yac{bottom:210.240000pt;}
.y54{bottom:212.800000pt;}
.y122{bottom:215.680000pt;}
.y1e{bottom:216.640000pt;}
.y14b{bottom:217.280000pt;}
.y81{bottom:217.920000pt;}
.ydc{bottom:222.666667pt;}
.yab{bottom:228.160000pt;}
.y53{bottom:230.720000pt;}
.y1d{bottom:234.560000pt;}
.y121{bottom:235.520000pt;}
.y80{bottom:235.840000pt;}
.y14a{bottom:236.800000pt;}
.yaa{bottom:246.080000pt;}
.y52{bottom:248.640000pt;}
.y1c{bottom:252.480000pt;}
.y7f{bottom:253.760000pt;}
.y120{bottom:255.040000pt;}
.y149{bottom:256.320000pt;}
.yd6{bottom:258.666667pt;}
.ya9{bottom:264.000000pt;}
.y51{bottom:266.560000pt;}
.y1b{bottom:270.400000pt;}
.y7e{bottom:271.680000pt;}
.y11f{bottom:274.560000pt;}
.y148{bottom:275.840000pt;}
.ya8{bottom:281.920000pt;}
.y50{bottom:285.120000pt;}
.y1a{bottom:288.320000pt;}
.y11e{bottom:294.080000pt;}
.y147{bottom:295.360000pt;}
.y4f{bottom:306.240000pt;}
.y19{bottom:306.560002pt;}
.y7d{bottom:308.480000pt;}
.yd2{bottom:313.333333pt;}
.y11d{bottom:313.600000pt;}
.y146{bottom:314.880000pt;}
.ya7{bottom:318.720000pt;}
.y18{bottom:325.760000pt;}
.y11c{bottom:333.120000pt;}
.y145{bottom:334.400000pt;}
.ya6{bottom:336.640000pt;}
.y4e{bottom:345.600000pt;}
.y7c{bottom:346.560000pt;}
.yc8{bottom:349.333333pt;}
.y11b{bottom:352.640000pt;}
.y144{bottom:353.920000pt;}
.ya5{bottom:354.240000pt;}
.y17{bottom:359.680000pt;}
.y4d{bottom:363.520000pt;}
.y7b{bottom:364.480000pt;}
.ya4{bottom:372.160000pt;}
.y143{bottom:373.440000pt;}
.y4c{bottom:381.440000pt;}
.y7a{bottom:382.080000pt;}
.ya3{bottom:390.080000pt;}
.y11a{bottom:391.680000pt;}
.y142{bottom:392.960000pt;}
.y16{bottom:393.600000pt;}
.y4b{bottom:399.360000pt;}
.y119{bottom:411.200000pt;}
.y141{bottom:412.480000pt;}
.y79{bottom:418.880000pt;}
.ya2{bottom:426.880000pt;}
.y15{bottom:427.520000pt;}
.y118{bottom:430.720000pt;}
.y140{bottom:432.000000pt;}
.y4a{bottom:435.840000pt;}
.y78{bottom:436.800000pt;}
.ya1{bottom:444.800000pt;}
.y117{bottom:450.240000pt;}
.y13f{bottom:451.520000pt;}
.y49{bottom:453.760000pt;}
.y77{bottom:454.720000pt;}
.ya0{bottom:462.720000pt;}
.y14{bottom:464.978880pt;}
.y116{bottom:469.760000pt;}
.y13e{bottom:471.040000pt;}
.y48{bottom:471.680000pt;}
.y76{bottom:472.640000pt;}
.yc4{bottom:476.000000pt;}
.y9f{bottom:480.640000pt;}
.y115{bottom:489.280000pt;}
.y47{bottom:489.600000pt;}
.y75{bottom:490.560000pt;}
.y13{bottom:497.298880pt;}
.y9e{bottom:498.240000pt;}
.y114{bottom:508.800000pt;}
.y13d{bottom:510.080000pt;}
.yc2{bottom:512.000000pt;}
.y9d{bottom:516.160000pt;}
.y46{bottom:526.080000pt;}
.y74{bottom:527.040000pt;}
.y113{bottom:528.320000pt;}
.y13c{bottom:529.600000pt;}
.y12{bottom:529.938880pt;}
.ybf{bottom:530.666667pt;}
.y9c{bottom:534.080000pt;}
.y45{bottom:544.000000pt;}
.y73{bottom:544.960000pt;}
.y112{bottom:547.840000pt;}
.y13b{bottom:549.120000pt;}
.y9b{bottom:552.320000pt;}
.y44{bottom:561.920000pt;}
.y72{bottom:562.880000pt;}
.ybe{bottom:564.160000pt;}
.y111{bottom:567.360000pt;}
.y13a{bottom:568.640000pt;}
.y11{bottom:568.959975pt;}
.y43{bottom:579.840000pt;}
.y71{bottom:580.800000pt;}
.y110{bottom:586.880000pt;}
.y139{bottom:588.160000pt;}
.y9a{bottom:590.720000pt;}
.y70{bottom:598.720000pt;}
.y10{bottom:599.359975pt;}
.y33{bottom:602.240000pt;}
.y10f{bottom:606.080000pt;}
.ybd{bottom:606.720000pt;}
.y138{bottom:607.680000pt;}
.y6f{bottom:616.640000pt;}
.y42{bottom:617.280000pt;}
.y10e{bottom:624.000000pt;}
.y32{bottom:625.920000pt;}
.y137{bottom:627.200000pt;}
.yf{bottom:630.719975pt;}
.y99{bottom:633.280000pt;}
.y6e{bottom:634.560000pt;}
.y10d{bottom:641.920000pt;}
.y41{bottom:642.240000pt;}
.ybc{bottom:643.200000pt;}
.y31{bottom:644.800000pt;}
.y30{bottom:645.035296pt;}
.y136{bottom:646.720000pt;}
.y98{bottom:651.200000pt;}
.y10c{bottom:660.160000pt;}
.ybb{bottom:661.120000pt;}
.ye{bottom:662.399975pt;}
.y135{bottom:666.240000pt;}
.y40{bottom:668.160000pt;}
.y6d{bottom:671.040000pt;}
.y10b{bottom:679.680000pt;}
.y134{bottom:685.760000pt;}
.y97{bottom:687.680000pt;}
.y2f{bottom:688.640000pt;}
.y2e{bottom:688.875296pt;}
.y6c{bottom:688.960000pt;}
.yd{bottom:693.759975pt;}
.yba{bottom:697.600000pt;}
.y10a{bottom:699.200000pt;}
.y133{bottom:705.280000pt;}
.y96{bottom:705.600000pt;}
.yfb{bottom:705.920000pt;}
.y6b{bottom:706.880000pt;}
.y3f{bottom:710.400000pt;}
.yb9{bottom:715.520000pt;}
.y109{bottom:718.720000pt;}
.y6a{bottom:724.800000pt;}
.yc{bottom:725.439975pt;}
.yfa{bottom:729.920000pt;}
.y2d{bottom:732.160000pt;}
.y2c{bottom:732.395296pt;}
.yb8{bottom:733.440000pt;}
.y108{bottom:739.200000pt;}
.y95{bottom:742.400000pt;}
.y69{bottom:742.720000pt;}
.y132{bottom:744.640000pt;}
.yf9{bottom:748.160000pt;}
.y3e{bottom:752.960000pt;}
.yb{bottom:753.920000pt;}
.y107{bottom:759.680000pt;}
.y131{bottom:760.000000pt;}
.y94{bottom:760.320000pt;}
.y68{bottom:760.640000pt;}
.yb7{bottom:769.920000pt;}
.y2b{bottom:775.680000pt;}
.y2a{bottom:775.915296pt;}
.y93{bottom:778.240000pt;}
.y106{bottom:779.200000pt;}
.ya{bottom:784.000000pt;}
.yf8{bottom:785.280000pt;}
.yb6{bottom:787.840000pt;}
.y3d{bottom:789.440000pt;}
.y92{bottom:796.160000pt;}
.y67{bottom:797.440000pt;}
.y105{bottom:798.720000pt;}
.yb5{bottom:806.080000pt;}
.y3c{bottom:807.360000pt;}
.y9{bottom:813.760000pt;}
.y91{bottom:814.080000pt;}
.y66{bottom:816.960000pt;}
.y29{bottom:818.560000pt;}
.y104{bottom:818.880000pt;}
.yf7{bottom:822.080000pt;}
.y3b{bottom:825.280000pt;}
.y90{bottom:831.680000pt;}
.y65{bottom:836.480000pt;}
.y103{bottom:839.360000pt;}
.y3a{bottom:843.200000pt;}
.yb4{bottom:844.480000pt;}
.y8f{bottom:849.600000pt;}
.y28{bottom:850.560000pt;}
.y8{bottom:854.079975pt;}
.y64{bottom:856.000000pt;}
.y102{bottom:859.840000pt;}
.yf6{bottom:860.480000pt;}
.y39{bottom:861.120000pt;}
.y8e{bottom:867.840000pt;}
.y63{bottom:875.520000pt;}
.y130{bottom:876.160000pt;}
.y7{bottom:877.439975pt;}
.y38{bottom:879.040000pt;}
.y101{bottom:879.360000pt;}
.y27{bottom:882.880000pt;}
.yb3{bottom:887.040000pt;}
.y62{bottom:895.040000pt;}
.y12f{bottom:895.680000pt;}
.y100{bottom:898.880000pt;}
.yf4{bottom:900.000000pt;}
.y8d{bottom:904.640000pt;}
.y5{bottom:906.240000pt;}
.y61{bottom:914.560000pt;}
.y12e{bottom:915.200000pt;}
.y37{bottom:915.520000pt;}
.y26{bottom:915.840000pt;}
.y25{bottom:916.075296pt;}
.yf2{bottom:917.333333pt;}
.yff{bottom:917.760000pt;}
.yb2{bottom:923.840000pt;}
.y4{bottom:928.338816pt;}
.y36{bottom:933.440000pt;}
.y60{bottom:934.080000pt;}
.y12d{bottom:934.720000pt;}
.yfe{bottom:935.680000pt;}
.yec{bottom:936.000000pt;}
.yb1{bottom:941.760000pt;}
.y8c{bottom:942.400000pt;}
.y35{bottom:951.360000pt;}
.y5f{bottom:953.600000pt;}
.y12c{bottom:954.240000pt;}
.yfd{bottom:958.400000pt;}
.y24{bottom:959.360000pt;}
.y23{bottom:959.595296pt;}
.y8b{bottom:960.320000pt;}
.y3{bottom:969.280000pt;}
.y5e{bottom:973.120000pt;}
.y12b{bottom:973.760000pt;}
.y8a{bottom:978.240000pt;}
.yfc{bottom:981.760000pt;}
.ye8{bottom:990.666667pt;}
.y5d{bottom:992.320000pt;}
.y12a{bottom:993.280000pt;}
.y89{bottom:996.160000pt;}
.y22{bottom:1005.119975pt;}
.y34{bottom:1008.000000pt;}
.y5c{bottom:1011.840000pt;}
.y129{bottom:1012.800000pt;}
.y88{bottom:1014.080000pt;}
.h1c{height:18.666667pt;}
.h18{height:20.000000pt;}
.h14{height:23.034375pt;}
.h17{height:26.666667pt;}
.h15{height:32.319375pt;}
.h2{height:37.216250pt;}
.h1f{height:37.248750pt;}
.h19{height:37.333333pt;}
.h16{height:38.587500pt;}
.h20{height:40.796250pt;}
.he{height:41.819855pt;}
.h9{height:42.032500pt;}
.ha{height:42.262500pt;}
.h5{height:42.656250pt;}
.h11{height:42.751250pt;}
.hb{height:43.750000pt;}
.hf{height:45.937500pt;}
.h12{height:46.500625pt;}
.h13{height:47.790000pt;}
.h7{height:48.625000pt;}
.h1e{height:50.750000pt;}
.h1b{height:54.666667pt;}
.h1d{height:56.000000pt;}
.hc{height:57.159375pt;}
.h10{height:58.625000pt;}
.hd{height:63.984375pt;}
.h4{height:69.420957pt;}
.h3{height:70.809375pt;}
.h8{height:73.453125pt;}
.h1a{height:126.666667pt;}
.h6{height:1122.559975pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:110.666667pt;}
.w5{width:152.000000pt;}
.w4{width:161.333333pt;}
.w3{width:165.333333pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:7.413397pt;}
.x1{left:94.400064pt;}
.x4{left:118.400000pt;}
.x6{left:122.800128pt;}
.xd{left:127.133472pt;}
.x5{left:142.400064pt;}
.x9{left:204.000000pt;}
.x7{left:286.400064pt;}
.xc{left:330.400000pt;}
.xa{left:368.000000pt;}
.xb{left:529.333333pt;}
.xe{left:683.840000pt;}
.x3{left:698.133440pt;}
.x2{left:702.720000pt;}
}




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