
    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_d4cd54505d210dae2bd3263e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.056641;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_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.850586;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_edfe90f348c118d126fcf89e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_6cf36755159bbef18dfb86df.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_56d921495178db0d1b386dab.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_c5beb456d23984055fedb881.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.793457;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_8a6bc672cbae6e1402915d1f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941895;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_9157b0ccda15137053099c4c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.951172;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_a634e0f6b50f424edd5f007d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947754;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_b9388eeb9fab0c41d416e5d8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.962402;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_459f558b2d5621f833885bb3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.128906;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_a901ae1630b76132612f9a60.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.128906;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_51126a92b3b24fc14b4a76a5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.760254;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_a01632a65b2b2c90c72e1f8b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.972656;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_519df587ec77bde9dc04d4f7.woff2')format("woff");}.fff{font-family:fff;line-height:0.976074;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_23ec1cd63aa8dcba2197e9e2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.761230;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_b97c058f8a4bb85fbf7eedc3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.901855;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_ad9a634dadfb252121d25202.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.927734;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_31ccd53d393700e4467dfa8a.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.954102;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_8f8e936d9862503ca2914d0b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.758789;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_e39e034ce01985535ba8689e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.922363;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_a0bb25339c18d8df1e0d7138.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.401855;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_64ea70f776217ff642e0b0ce.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.128906;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_84a926ab1e008e7239085f83.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.402354;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_b7123e222583376e7ccb873c.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.128906;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.003906;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(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);}
.v3{vertical-align:-20.880000px;}
.v2{vertical-align:-18.180000px;}
.v5{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.120000px;}
.v1{vertical-align:18.180000px;}
.ls35{letter-spacing:-1.044000px;}
.lsf{letter-spacing:-0.918000px;}
.lse{letter-spacing:-0.900000px;}
.ls2d{letter-spacing:-0.774000px;}
.lsa{letter-spacing:-0.720000px;}
.ls34{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.342000px;}
.ls19{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.137400px;}
.ls13{letter-spacing:-0.126000px;}
.lsd{letter-spacing:-0.097800px;}
.ls16{letter-spacing:-0.054000px;}
.ls1a{letter-spacing:-0.018000px;}
.ls9{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.015120px;}
.ls4{letter-spacing:0.031680px;}
.ls2{letter-spacing:0.036000px;}
.ls6{letter-spacing:0.052560px;}
.ls12{letter-spacing:0.054000px;}
.ls7{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.302400px;}
.ls5{letter-spacing:0.311040px;}
.ls17{letter-spacing:0.342000px;}
.lsc{letter-spacing:0.385800px;}
.ls3{letter-spacing:0.468000px;}
.ls1b{letter-spacing:0.504000px;}
.ls37{letter-spacing:0.558000px;}
.ls32{letter-spacing:0.666000px;}
.ls1{letter-spacing:0.670320px;}
.ls1c{letter-spacing:0.792000px;}
.ls2b{letter-spacing:0.810000px;}
.ls15{letter-spacing:0.972000px;}
.ls36{letter-spacing:0.990000px;}
.ls29{letter-spacing:1.008000px;}
.ls30{letter-spacing:1.116000px;}
.ls38{letter-spacing:1.152000px;}
.ls33{letter-spacing:1.170000px;}
.ls1f{letter-spacing:1.224000px;}
.ls2c{letter-spacing:1.260000px;}
.ls20{letter-spacing:1.278000px;}
.ls24{letter-spacing:1.350000px;}
.ls21{letter-spacing:1.404000px;}
.ls31{letter-spacing:1.422000px;}
.ls39{letter-spacing:1.476000px;}
.ls27{letter-spacing:1.548000px;}
.ls2e{letter-spacing:1.566000px;}
.ls14{letter-spacing:1.692000px;}
.ls2a{letter-spacing:1.728000px;}
.ls28{letter-spacing:1.746000px;}
.ls10{letter-spacing:3.708000px;}
.ls23{letter-spacing:7.884000px;}
.ls26{letter-spacing:9.324000px;}
.ls1e{letter-spacing:13.644000px;}
.ls2f{letter-spacing:20.844000px;}
.ls25{letter-spacing:25.164000px;}
.ls1d{letter-spacing:30.204000px;}
.ls22{letter-spacing:38.124000px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(0,128,0),0 0.015em rgb(0,128,0),0.015em 0 rgb(0,128,0),0 -0.015em  rgb(0,128,0);}
.sc3{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,128,128),0 0.015em rgb(0,128,128),0.015em 0 rgb(0,128,128),0 -0.015em  rgb(0,128,128);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(0,128,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,128,128);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-54.000000px;}
.ws4{word-spacing:-20.437920px;}
.ws2{word-spacing:-16.560000px;}
.wsf{word-spacing:-15.966720px;}
.ws3{word-spacing:-15.840000px;}
.ws1a{word-spacing:-15.462000px;}
.ws1d{word-spacing:-15.444000px;}
.ws19{word-spacing:-15.264000px;}
.ws23{word-spacing:-15.192000px;}
.wsa{word-spacing:-14.992560px;}
.wsc{word-spacing:-14.958600px;}
.ws9{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.802600px;}
.ws13{word-spacing:-14.706000px;}
.ws1f{word-spacing:-14.580000px;}
.ws1c{word-spacing:-14.526000px;}
.ws24{word-spacing:-14.184000px;}
.ws22{word-spacing:-14.166000px;}
.ws18{word-spacing:-13.806000px;}
.ws5{word-spacing:-13.716000px;}
.ws15{word-spacing:-13.356000px;}
.ws20{word-spacing:-13.176000px;}
.ws0{word-spacing:-13.147200px;}
.ws12{word-spacing:-13.068000px;}
.wse{word-spacing:-13.049400px;}
.ws7{word-spacing:-13.014000px;}
.ws17{word-spacing:-12.996000px;}
.ws14{word-spacing:-12.960000px;}
.ws1e{word-spacing:-12.942000px;}
.ws11{word-spacing:-12.834000px;}
.ws16{word-spacing:-12.726000px;}
.ws10{word-spacing:-12.096000px;}
.ws21{word-spacing:-11.970000px;}
.ws8{word-spacing:-9.720000px;}
.ws1{word-spacing:-9.576000px;}
.ws1b{word-spacing:-8.676000px;}
.wsd{word-spacing:0.000000px;}
._22{margin-left:-3.726000px;}
._5{margin-left:-2.580000px;}
._1{margin-left:-1.296000px;}
._0{width:1.169040px;}
._1b{width:2.178000px;}
._4{width:3.188640px;}
._3{width:4.210560px;}
._b{width:5.376000px;}
._6{width:6.534000px;}
._7{width:7.668000px;}
._a{width:9.588960px;}
._10{width:10.620000px;}
._f{width:11.832000px;}
._2d{width:12.837360px;}
._8{width:14.904000px;}
._9{width:16.610880px;}
._24{width:17.628240px;}
._e{width:18.810000px;}
._1a{width:20.184000px;}
._d{width:21.474000px;}
._c{width:22.884000px;}
._19{width:24.288480px;}
._16{width:26.021520px;}
._2{width:27.326160px;}
._14{width:28.897680px;}
._23{width:30.240000px;}
._21{width:32.076000px;}
._20{width:33.696000px;}
._15{width:35.094000px;}
._11{width:36.156000px;}
._12{width:37.398000px;}
._13{width:38.616000px;}
._25{width:39.986880px;}
._28{width:41.088000px;}
._1e{width:42.924000px;}
._1f{width:44.664000px;}
._2c{width:46.912800px;}
._1c{width:52.248000px;}
._1d{width:53.478000px;}
._2b{width:54.505920px;}
._17{width:58.782000px;}
._18{width:59.820000px;}
._27{width:62.112960px;}
._2e{width:65.793840px;}
._30{width:115.440000px;}
._31{width:116.616000px;}
._26{width:121.572000px;}
._2a{width:130.962000px;}
._29{width:132.579600px;}
._33{width:140.532720px;}
._2f{width:143.502720px;}
._32{width:384.384000px;}
.fc8{color:transparent;}
.fc6{color:rgb(79,129,189);}
.fc7{color:rgb(0,112,192);}
.fc5{color:rgb(31,73,125);}
.fc2{color:rgb(0,128,0);}
.fca{color:rgb(127,127,127);}
.fc9{color:rgb(38,38,38);}
.fc4{color:rgb(0,176,80);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,128,128);}
.fsc{font-size:2.880000px;}
.fs4{font-size:18.000000px;}
.fsa{font-size:23.760000px;}
.fs7{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fse{font-size:41.760000px;}
.fsf{font-size:45.360000px;}
.fs9{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fsd{font-size:74.880000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y4c{bottom:-18.390000px;}
.y0{bottom:0.000000px;}
.yf{bottom:1.440000px;}
.y36{bottom:1.605000px;}
.y13{bottom:1.620000px;}
.y1a{bottom:1.980000px;}
.y25{bottom:2.340000px;}
.y4b{bottom:2.850000px;}
.ya7{bottom:3.045000px;}
.y1c{bottom:3.060000px;}
.yb7{bottom:3.225000px;}
.y92{bottom:3.240000px;}
.y4e{bottom:3.420000px;}
.y22{bottom:3.600000px;}
.y20{bottom:4.320000px;}
.y1e{bottom:4.680000px;}
.y90{bottom:5.400000px;}
.y3e{bottom:6.465000px;}
.y3a{bottom:6.645000px;}
.y41{bottom:6.690000px;}
.y83{bottom:7.740000px;}
.y2{bottom:9.720000px;}
.y38{bottom:10.425000px;}
.y34{bottom:10.965000px;}
.y86{bottom:10.980000px;}
.y51{bottom:11.700000px;}
.y52{bottom:13.680000px;}
.y11{bottom:13.860000px;}
.y18{bottom:14.040000px;}
.y9{bottom:14.400000px;}
.y53{bottom:16.560000px;}
.yd{bottom:17.640000px;}
.ya6{bottom:18.390000px;}
.yb3{bottom:18.525000px;}
.ya9{bottom:19.425000px;}
.yb9{bottom:19.620000px;}
.yb5{bottom:19.650000px;}
.y8f{bottom:20.700000px;}
.y4a{bottom:27.330000px;}
.y33{bottom:33.825000px;}
.y85{bottom:34.020000px;}
.y8{bottom:45.540000px;}
.y17{bottom:47.340000px;}
.y54{bottom:47.520000px;}
.y49{bottom:50.550000px;}
.yc{bottom:53.280000px;}
.y32{bottom:56.865000px;}
.y3{bottom:58.320000px;}
.y50{bottom:63.720000px;}
.y16{bottom:70.200000px;}
.y48{bottom:73.590000px;}
.y1{bottom:74.520000px;}
.y7{bottom:76.680000px;}
.y31{bottom:80.085000px;}
.y47{bottom:97.350000px;}
.y30{bottom:103.350000px;}
.y15{bottom:103.500000px;}
.y5{bottom:107.640000px;}
.y6{bottom:107.820000px;}
.y84{bottom:118.440000px;}
.ybd{bottom:122.040000px;}
.y14e{bottom:124.020000px;}
.y45{bottom:124.560000px;}
.y125{bottom:124.920000px;}
.y2f{bottom:126.390000px;}
.yfb{bottom:128.160000px;}
.ye4{bottom:129.240000px;}
.y81{bottom:130.320000px;}
.ybb{bottom:136.260000px;}
.y44{bottom:147.600000px;}
.y14d{bottom:148.320000px;}
.y124{bottom:149.580000px;}
.y2e{bottom:149.610000px;}
.ye3{bottom:152.280000px;}
.ybc{bottom:152.820000px;}
.y80{bottom:153.180000px;}
.y82{bottom:164.520000px;}
.yb8{bottom:169.200000px;}
.y43{bottom:170.640000px;}
.y14c{bottom:172.620000px;}
.y2d{bottom:172.650000px;}
.y123{bottom:174.060000px;}
.ye2{bottom:175.320000px;}
.yfa{bottom:176.040000px;}
.y7f{bottom:176.220000px;}
.yba{bottom:185.760000px;}
.y42{bottom:193.680000px;}
.y2c{bottom:195.690000px;}
.y14b{bottom:196.740000px;}
.ye1{bottom:198.360000px;}
.y122{bottom:198.540000px;}
.yf9{bottom:198.900000px;}
.y7e{bottom:199.260000px;}
.yb4{bottom:202.140000px;}
.y40{bottom:205.740000px;}
.yb6{bottom:218.565000px;}
.y2b{bottom:218.730000px;}
.y14a{bottom:221.070000px;}
.ye0{bottom:221.430000px;}
.yf8{bottom:221.970000px;}
.y7d{bottom:222.330000px;}
.y121{bottom:223.230000px;}
.y3f{bottom:225.225000px;}
.yb2{bottom:236.205000px;}
.y2a{bottom:241.590000px;}
.ydf{bottom:244.470000px;}
.y3d{bottom:244.665000px;}
.yf7{bottom:245.010000px;}
.y149{bottom:245.190000px;}
.y7c{bottom:245.370000px;}
.y3c{bottom:263.925000px;}
.y29{bottom:264.630000px;}
.y120{bottom:267.150000px;}
.yde{bottom:267.330000px;}
.yf6{bottom:268.050000px;}
.y7b{bottom:268.410000px;}
.y148{bottom:269.490000px;}
.yb1{bottom:280.110000px;}
.y3b{bottom:283.365000px;}
.y28{bottom:287.670000px;}
.ydd{bottom:290.370000px;}
.yf5{bottom:291.090000px;}
.y7a{bottom:291.270000px;}
.y11f{bottom:291.630000px;}
.y147{bottom:293.970000px;}
.yb0{bottom:300.450000px;}
.y39{bottom:302.805000px;}
.y27{bottom:310.710000px;}
.ydc{bottom:313.410000px;}
.yf4{bottom:314.130000px;}
.y79{bottom:314.310000px;}
.y11e{bottom:316.290000px;}
.y146{bottom:318.270000px;}
.yaf{bottom:320.970000px;}
.y37{bottom:322.245000px;}
.yad{bottom:335.385000px;}
.ydb{bottom:336.450000px;}
.yf3{bottom:336.990000px;}
.y78{bottom:337.350000px;}
.y11d{bottom:340.770000px;}
.y35{bottom:342.225000px;}
.y145{bottom:342.750000px;}
.y26{bottom:348.885000px;}
.yae{bottom:351.765000px;}
.yda{bottom:359.490000px;}
.yf2{bottom:360.030000px;}
.y77{bottom:360.390000px;}
.y11c{bottom:362.550000px;}
.y144{bottom:367.410000px;}
.yab{bottom:368.325000px;}
.yd9{bottom:382.350000px;}
.yf1{bottom:383.070000px;}
.y76{bottom:383.430000px;}
.y11b{bottom:384.330000px;}
.yac{bottom:384.705000px;}
.y143{bottom:391.530000px;}
.ya8{bottom:401.265000px;}
.yd8{bottom:405.390000px;}
.yf0{bottom:406.110000px;}
.y75{bottom:406.470000px;}
.y11a{bottom:408.990000px;}
.y142{bottom:415.830000px;}
.yaa{bottom:417.645000px;}
.yd7{bottom:428.430000px;}
.yef{bottom:429.150000px;}
.y74{bottom:429.330000px;}
.y119{bottom:433.470000px;}
.ya5{bottom:435.285000px;}
.y141{bottom:439.950000px;}
.yd6{bottom:451.515000px;}
.yee{bottom:452.055000px;}
.y73{bottom:452.415000px;}
.y118{bottom:457.995000px;}
.y140{bottom:464.295000px;}
.yd5{bottom:474.555000px;}
.yed{bottom:475.095000px;}
.y72{bottom:475.455000px;}
.ya4{bottom:479.055000px;}
.y117{bottom:481.215000px;}
.y13f{bottom:488.595000px;}
.yd4{bottom:497.595000px;}
.yec{bottom:498.135000px;}
.y71{bottom:498.495000px;}
.ya3{bottom:499.575000px;}
.y116{bottom:504.435000px;}
.y13e{bottom:512.715000px;}
.ya2{bottom:520.095000px;}
.yd3{bottom:520.455000px;}
.yeb{bottom:521.175000px;}
.y70{bottom:521.535000px;}
.y115{bottom:528.915000px;}
.ya1{bottom:534.315000px;}
.y13d{bottom:537.015000px;}
.yd2{bottom:543.495000px;}
.yea{bottom:544.215000px;}
.y6f{bottom:544.575000px;}
.ya0{bottom:550.875000px;}
.y114{bottom:553.575000px;}
.y13c{bottom:561.135000px;}
.yd1{bottom:566.535000px;}
.y9f{bottom:567.255000px;}
.y6e{bottom:567.435000px;}
.y113{bottom:578.055000px;}
.y9e{bottom:583.815000px;}
.y13b{bottom:585.435000px;}
.yd0{bottom:589.755000px;}
.ye9{bottom:590.115000px;}
.y6d{bottom:590.475000px;}
.y9d{bottom:600.195000px;}
.y112{bottom:602.535000px;}
.y13a{bottom:609.555000px;}
.ycf{bottom:612.795000px;}
.ye8{bottom:613.155000px;}
.y6c{bottom:613.515000px;}
.y9b{bottom:617.835000px;}
.y111{bottom:627.195000px;}
.y139{bottom:633.855000px;}
.y9c{bottom:635.475000px;}
.yce{bottom:635.835000px;}
.ye7{bottom:636.195000px;}
.y6b{bottom:636.555000px;}
.y110{bottom:651.675000px;}
.y138{bottom:658.155000px;}
.ycd{bottom:658.875000px;}
.ye6{bottom:659.235000px;}
.y6a{bottom:659.595000px;}
.y9a{bottom:663.915000px;}
.y24{bottom:671.655000px;}
.y10f{bottom:676.185000px;}
.y23{bottom:681.945000px;}
.ye5{bottom:682.305000px;}
.y69{bottom:682.485000px;}
.y99{bottom:684.285000px;}
.y21{bottom:697.245000px;}
.y10e{bottom:700.845000px;}
.y98{bottom:704.805000px;}
.ycc{bottom:704.985000px;}
.y68{bottom:705.525000px;}
.y137{bottom:706.605000px;}
.y1f{bottom:714.345000px;}
.y97{bottom:719.205000px;}
.y10d{bottom:725.325000px;}
.ycb{bottom:728.025000px;}
.y67{bottom:728.565000px;}
.y136{bottom:730.725000px;}
.y1d{bottom:732.525000px;}
.y96{bottom:735.585000px;}
.y1b{bottom:749.625000px;}
.y10c{bottom:749.805000px;}
.yca{bottom:751.245000px;}
.y66{bottom:751.605000px;}
.y95{bottom:752.145000px;}
.y135{bottom:755.025000px;}
.y19{bottom:764.925000px;}
.y94{bottom:768.525000px;}
.y14{bottom:773.205000px;}
.yc9{bottom:774.285000px;}
.y10b{bottom:774.465000px;}
.y65{bottom:774.645000px;}
.y134{bottom:779.145000px;}
.y93{bottom:785.085000px;}
.yc8{bottom:797.325000px;}
.y64{bottom:797.685000px;}
.y10a{bottom:798.945000px;}
.y8e{bottom:802.545000px;}
.y133{bottom:803.445000px;}
.y91{bottom:820.185000px;}
.yc7{bottom:820.365000px;}
.y63{bottom:820.545000px;}
.y109{bottom:823.425000px;}
.y132{bottom:827.745000px;}
.yc6{bottom:843.405000px;}
.y62{bottom:843.585000px;}
.y108{bottom:848.085000px;}
.y8d{bottom:848.805000px;}
.y131{bottom:851.865000px;}
.yc5{bottom:866.265000px;}
.y61{bottom:866.625000px;}
.y8c{bottom:869.145000px;}
.y107{bottom:872.565000px;}
.y130{bottom:876.165000px;}
.y12{bottom:885.525000px;}
.yc4{bottom:889.305000px;}
.y60{bottom:889.665000px;}
.y8b{bottom:892.725000px;}
.y10{bottom:894.705000px;}
.y106{bottom:897.225000px;}
.y12f{bottom:900.285000px;}
.yc3{bottom:912.390000px;}
.y5f{bottom:912.750000px;}
.y8a{bottom:915.810000px;}
.y105{bottom:921.750000px;}
.ye{bottom:922.650000px;}
.y12e{bottom:924.630000px;}
.yb{bottom:927.870000px;}
.yc2{bottom:935.430000px;}
.y5e{bottom:935.790000px;}
.y89{bottom:938.850000px;}
.y104{bottom:946.230000px;}
.y12d{bottom:948.750000px;}
.y88{bottom:950.910000px;}
.yc1{bottom:958.470000px;}
.y5d{bottom:958.650000px;}
.y103{bottom:970.890000px;}
.y12c{bottom:973.050000px;}
.y87{bottom:973.950000px;}
.yc0{bottom:981.330000px;}
.y5c{bottom:981.690000px;}
.y102{bottom:995.370000px;}
.y12b{bottom:997.350000px;}
.ybf{bottom:1004.370000px;}
.y5b{bottom:1004.730000px;}
.ya{bottom:1013.550000px;}
.y101{bottom:1019.850000px;}
.y12a{bottom:1021.470000px;}
.ybe{bottom:1027.590000px;}
.y5a{bottom:1027.770000px;}
.y4{bottom:1030.290000px;}
.y46{bottom:1043.280000px;}
.y100{bottom:1044.510000px;}
.y129{bottom:1045.770000px;}
.y59{bottom:1050.810000px;}
.yff{bottom:1068.990000px;}
.y128{bottom:1069.890000px;}
.y58{bottom:1073.850000px;}
.yfe{bottom:1093.470000px;}
.y127{bottom:1094.190000px;}
.y57{bottom:1096.710000px;}
.yfd{bottom:1118.130000px;}
.y126{bottom:1118.310000px;}
.y56{bottom:1119.750000px;}
.yfc{bottom:1142.610000px;}
.y55{bottom:1142.790000px;}
.y4f{bottom:1161.000000px;}
.y4d{bottom:1185.840000px;}
.h2a{height:2.005313px;}
.ha{height:5.205000px;}
.h1f{height:6.645000px;}
.h12{height:8.280000px;}
.he{height:9.180000px;}
.h1c{height:10.290000px;}
.hb{height:12.190430px;}
.h3d{height:15.285000px;}
.h46{height:15.298500px;}
.h14{height:15.300000px;}
.h43{height:15.336000px;}
.h42{height:15.465000px;}
.h3b{height:15.480000px;}
.h20{height:16.543828px;}
.h16{height:17.100000px;}
.h30{height:17.640000px;}
.h18{height:18.180000px;}
.h27{height:19.245000px;}
.h23{height:19.425000px;}
.h28{height:19.476000px;}
.h21{height:19.965000px;}
.h13{height:21.055781px;}
.hf{height:22.975313px;}
.h38{height:23.025000px;}
.h2{height:23.938500px;}
.h11{height:23.980781px;}
.h24{height:27.071719px;}
.h31{height:27.898500px;}
.hc{height:27.922500px;}
.h22{height:29.145586px;}
.h3e{height:30.621000px;}
.h40{height:30.765000px;}
.h3f{height:31.665000px;}
.h45{height:31.858500px;}
.h44{height:31.860000px;}
.h41{height:31.896000px;}
.h1d{height:32.835938px;}
.h3c{height:32.925000px;}
.h3a{height:32.940000px;}
.h33{height:34.684453px;}
.h39{height:38.089687px;}
.h26{height:40.472227px;}
.h25{height:41.610234px;}
.h47{height:44.000156px;}
.h17{height:44.820000px;}
.hd{height:44.860781px;}
.h1a{height:45.695391px;}
.h36{height:46.078500px;}
.h15{height:49.253906px;}
.h19{height:50.068125px;}
.h3{height:50.597578px;}
.h2d{height:54.000000px;}
.h6{height:54.457031px;}
.h1b{height:54.507656px;}
.h34{height:55.503491px;}
.h2f{height:56.084062px;}
.h2e{height:56.160000px;}
.h8{height:57.051211px;}
.h2c{height:63.180000px;}
.h9{height:64.853086px;}
.h48{height:65.884219px;}
.h4{height:70.664062px;}
.h7{height:71.265000px;}
.h32{height:72.562500px;}
.h10{height:112.320000px;}
.h2b{height:114.660000px;}
.h29{height:116.496000px;}
.h5{height:124.590000px;}
.h37{height:180.930000px;}
.h35{height:207.930000px;}
.h1e{height:322.755000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2b{width:42.649500px;}
.w1d{width:45.165000px;}
.w32{width:45.885000px;}
.w2a{width:46.965000px;}
.w26{width:48.600000px;}
.w1f{width:49.161000px;}
.w10{width:52.189500px;}
.w1b{width:56.880000px;}
.w28{width:57.225000px;}
.w2c{width:58.665000px;}
.w31{width:74.361000px;}
.w33{width:82.245000px;}
.w25{width:87.141000px;}
.w27{width:87.156000px;}
.w1c{width:89.496000px;}
.w2d{width:90.561000px;}
.w2e{width:91.620000px;}
.w30{width:94.485000px;}
.w2f{width:94.536000px;}
.w1e{width:95.025000px;}
.w1a{width:95.061000px;}
.w29{width:95.961000px;}
.w4{width:101.329500px;}
.w19{width:118.785000px;}
.w24{width:119.325000px;}
.w15{width:125.449500px;}
.w20{width:132.649500px;}
.w17{width:134.676000px;}
.w21{width:135.741000px;}
.w23{width:142.941000px;}
.w18{width:144.201000px;}
.w22{width:144.396000px;}
.w16{width:151.935000px;}
.w9{width:154.429500px;}
.w3{width:265.155000px;}
.w11{width:280.320000px;}
.w8{width:297.915000px;}
.w13{width:324.015000px;}
.w14{width:324.019500px;}
.wc{width:325.815000px;}
.wf{width:333.555000px;}
.we{width:338.284500px;}
.w12{width:339.315000px;}
.wb{width:349.264500px;}
.w7{width:377.164500px;}
.w2{width:414.424500px;}
.wa{width:520.650000px;}
.wd{width:573.660000px;}
.w5{width:575.730000px;}
.w6{width:675.090000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:3.769500px;}
.x16{left:6.465000px;}
.x29{left:8.625000px;}
.x2a{left:10.470000px;}
.x1e{left:11.700000px;}
.x26{left:14.385000px;}
.x20{left:16.365000px;}
.x14{left:17.809500px;}
.x1c{left:20.145000px;}
.x3a{left:22.125000px;}
.x23{left:23.385000px;}
.x39{left:25.200000px;}
.x32{left:26.310000px;}
.x2f{left:27.750000px;}
.x28{left:29.340000px;}
.x3f{left:30.420000px;}
.x3b{left:31.500000px;}
.x18{left:32.565000px;}
.x3d{left:34.185000px;}
.x3c{left:35.460000px;}
.x8{left:36.525000px;}
.xc{left:38.370000px;}
.x3e{left:41.040000px;}
.x2b{left:50.400000px;}
.x30{left:53.280000px;}
.x31{left:56.520000px;}
.x22{left:59.400000px;}
.x1{left:106.786500px;}
.x5{left:108.036000px;}
.x13{left:122.025000px;}
.x19{left:143.445000px;}
.x33{left:150.705000px;}
.x15{left:164.385000px;}
.x4{left:187.590000px;}
.x6{left:209.385000px;}
.xd{left:221.115000px;}
.x1b{left:233.505000px;}
.x2c{left:240.705000px;}
.x9{left:263.385000px;}
.xe{left:273.705000px;}
.x34{left:299.955000px;}
.xf{left:303.405000px;}
.x1a{left:324.030000px;}
.x24{left:328.575000px;}
.x10{left:341.025000px;}
.x2d{left:376.455000px;}
.x1d{left:385.455000px;}
.x35{left:391.575000px;}
.x17{left:444.720000px;}
.x12{left:450.480000px;}
.xa{left:458.220000px;}
.xb{left:462.705000px;}
.x25{left:474.960000px;}
.x7{left:486.120000px;}
.x1f{left:520.140000px;}
.x3{left:521.220000px;}
.x11{left:573.990000px;}
.x36{left:580.620000px;}
.x27{left:615.180000px;}
.x2e{left:616.830000px;}
.x37{left:654.990000px;}
.x21{left:664.350000px;}
.x38{left:700.890000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v2{vertical-align:-16.160000pt;}
.v5{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.440000pt;}
.v1{vertical-align:16.160000pt;}
.ls35{letter-spacing:-0.928000pt;}
.lsf{letter-spacing:-0.816000pt;}
.lse{letter-spacing:-0.800000pt;}
.ls2d{letter-spacing:-0.688000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls34{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.304000pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.122133pt;}
.ls13{letter-spacing:-0.112000pt;}
.lsd{letter-spacing:-0.086933pt;}
.ls16{letter-spacing:-0.048000pt;}
.ls1a{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.013440pt;}
.ls4{letter-spacing:0.028160pt;}
.ls2{letter-spacing:0.032000pt;}
.ls6{letter-spacing:0.046720pt;}
.ls12{letter-spacing:0.048000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.268800pt;}
.ls5{letter-spacing:0.276480pt;}
.ls17{letter-spacing:0.304000pt;}
.lsc{letter-spacing:0.342933pt;}
.ls3{letter-spacing:0.416000pt;}
.ls1b{letter-spacing:0.448000pt;}
.ls37{letter-spacing:0.496000pt;}
.ls32{letter-spacing:0.592000pt;}
.ls1{letter-spacing:0.595840pt;}
.ls1c{letter-spacing:0.704000pt;}
.ls2b{letter-spacing:0.720000pt;}
.ls15{letter-spacing:0.864000pt;}
.ls36{letter-spacing:0.880000pt;}
.ls29{letter-spacing:0.896000pt;}
.ls30{letter-spacing:0.992000pt;}
.ls38{letter-spacing:1.024000pt;}
.ls33{letter-spacing:1.040000pt;}
.ls1f{letter-spacing:1.088000pt;}
.ls2c{letter-spacing:1.120000pt;}
.ls20{letter-spacing:1.136000pt;}
.ls24{letter-spacing:1.200000pt;}
.ls21{letter-spacing:1.248000pt;}
.ls31{letter-spacing:1.264000pt;}
.ls39{letter-spacing:1.312000pt;}
.ls27{letter-spacing:1.376000pt;}
.ls2e{letter-spacing:1.392000pt;}
.ls14{letter-spacing:1.504000pt;}
.ls2a{letter-spacing:1.536000pt;}
.ls28{letter-spacing:1.552000pt;}
.ls10{letter-spacing:3.296000pt;}
.ls23{letter-spacing:7.008000pt;}
.ls26{letter-spacing:8.288000pt;}
.ls1e{letter-spacing:12.128000pt;}
.ls2f{letter-spacing:18.528000pt;}
.ls25{letter-spacing:22.368000pt;}
.ls1d{letter-spacing:26.848000pt;}
.ls22{letter-spacing:33.888000pt;}
.ws6{word-spacing:-48.000000pt;}
.ws4{word-spacing:-18.167040pt;}
.ws2{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.192640pt;}
.ws3{word-spacing:-14.080000pt;}
.ws1a{word-spacing:-13.744000pt;}
.ws1d{word-spacing:-13.728000pt;}
.ws19{word-spacing:-13.568000pt;}
.ws23{word-spacing:-13.504000pt;}
.wsa{word-spacing:-13.326720pt;}
.wsc{word-spacing:-13.296533pt;}
.ws9{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.157867pt;}
.ws13{word-spacing:-13.072000pt;}
.ws1f{word-spacing:-12.960000pt;}
.ws1c{word-spacing:-12.912000pt;}
.ws24{word-spacing:-12.608000pt;}
.ws22{word-spacing:-12.592000pt;}
.ws18{word-spacing:-12.272000pt;}
.ws5{word-spacing:-12.192000pt;}
.ws15{word-spacing:-11.872000pt;}
.ws20{word-spacing:-11.712000pt;}
.ws0{word-spacing:-11.686400pt;}
.ws12{word-spacing:-11.616000pt;}
.wse{word-spacing:-11.599467pt;}
.ws7{word-spacing:-11.568000pt;}
.ws17{word-spacing:-11.552000pt;}
.ws14{word-spacing:-11.520000pt;}
.ws1e{word-spacing:-11.504000pt;}
.ws11{word-spacing:-11.408000pt;}
.ws16{word-spacing:-11.312000pt;}
.ws10{word-spacing:-10.752000pt;}
.ws21{word-spacing:-10.640000pt;}
.ws8{word-spacing:-8.640000pt;}
.ws1{word-spacing:-8.512000pt;}
.ws1b{word-spacing:-7.712000pt;}
.wsd{word-spacing:0.000000pt;}
._22{margin-left:-3.312000pt;}
._5{margin-left:-2.293333pt;}
._1{margin-left:-1.152000pt;}
._0{width:1.039147pt;}
._1b{width:1.936000pt;}
._4{width:2.834347pt;}
._3{width:3.742720pt;}
._b{width:4.778667pt;}
._6{width:5.808000pt;}
._7{width:6.816000pt;}
._a{width:8.523520pt;}
._10{width:9.440000pt;}
._f{width:10.517333pt;}
._2d{width:11.410987pt;}
._8{width:13.248000pt;}
._9{width:14.765227pt;}
._24{width:15.669547pt;}
._e{width:16.720000pt;}
._1a{width:17.941333pt;}
._d{width:19.088000pt;}
._c{width:20.341333pt;}
._19{width:21.589760pt;}
._16{width:23.130240pt;}
._2{width:24.289920pt;}
._14{width:25.686827pt;}
._23{width:26.880000pt;}
._21{width:28.512000pt;}
._20{width:29.952000pt;}
._15{width:31.194667pt;}
._11{width:32.138667pt;}
._12{width:33.242667pt;}
._13{width:34.325333pt;}
._25{width:35.543893pt;}
._28{width:36.522667pt;}
._1e{width:38.154667pt;}
._1f{width:39.701333pt;}
._2c{width:41.700267pt;}
._1c{width:46.442667pt;}
._1d{width:47.536000pt;}
._2b{width:48.449707pt;}
._17{width:52.250667pt;}
._18{width:53.173333pt;}
._27{width:55.211520pt;}
._2e{width:58.483413pt;}
._30{width:102.613333pt;}
._31{width:103.658667pt;}
._26{width:108.064000pt;}
._2a{width:116.410667pt;}
._29{width:117.848533pt;}
._33{width:124.917973pt;}
._2f{width:127.557973pt;}
._32{width:341.674667pt;}
.fsc{font-size:2.560000pt;}
.fs4{font-size:16.000000pt;}
.fsa{font-size:21.120000pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fse{font-size:37.120000pt;}
.fsf{font-size:40.320000pt;}
.fs9{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fsd{font-size:66.560000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y4c{bottom:-16.346667pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:1.280000pt;}
.y36{bottom:1.426667pt;}
.y13{bottom:1.440000pt;}
.y1a{bottom:1.760000pt;}
.y25{bottom:2.080000pt;}
.y4b{bottom:2.533333pt;}
.ya7{bottom:2.706667pt;}
.y1c{bottom:2.720000pt;}
.yb7{bottom:2.866667pt;}
.y92{bottom:2.880000pt;}
.y4e{bottom:3.040000pt;}
.y22{bottom:3.200000pt;}
.y20{bottom:3.840000pt;}
.y1e{bottom:4.160000pt;}
.y90{bottom:4.800000pt;}
.y3e{bottom:5.746667pt;}
.y3a{bottom:5.906667pt;}
.y41{bottom:5.946667pt;}
.y83{bottom:6.880000pt;}
.y2{bottom:8.640000pt;}
.y38{bottom:9.266667pt;}
.y34{bottom:9.746667pt;}
.y86{bottom:9.760000pt;}
.y51{bottom:10.400000pt;}
.y52{bottom:12.160000pt;}
.y11{bottom:12.320000pt;}
.y18{bottom:12.480000pt;}
.y9{bottom:12.800000pt;}
.y53{bottom:14.720000pt;}
.yd{bottom:15.680000pt;}
.ya6{bottom:16.346667pt;}
.yb3{bottom:16.466667pt;}
.ya9{bottom:17.266667pt;}
.yb9{bottom:17.440000pt;}
.yb5{bottom:17.466667pt;}
.y8f{bottom:18.400000pt;}
.y4a{bottom:24.293333pt;}
.y33{bottom:30.066667pt;}
.y85{bottom:30.240000pt;}
.y8{bottom:40.480000pt;}
.y17{bottom:42.080000pt;}
.y54{bottom:42.240000pt;}
.y49{bottom:44.933333pt;}
.yc{bottom:47.360000pt;}
.y32{bottom:50.546667pt;}
.y3{bottom:51.840000pt;}
.y50{bottom:56.640000pt;}
.y16{bottom:62.400000pt;}
.y48{bottom:65.413333pt;}
.y1{bottom:66.240000pt;}
.y7{bottom:68.160000pt;}
.y31{bottom:71.186667pt;}
.y47{bottom:86.533333pt;}
.y30{bottom:91.866667pt;}
.y15{bottom:92.000000pt;}
.y5{bottom:95.680000pt;}
.y6{bottom:95.840000pt;}
.y84{bottom:105.280000pt;}
.ybd{bottom:108.480000pt;}
.y14e{bottom:110.240000pt;}
.y45{bottom:110.720000pt;}
.y125{bottom:111.040000pt;}
.y2f{bottom:112.346667pt;}
.yfb{bottom:113.920000pt;}
.ye4{bottom:114.880000pt;}
.y81{bottom:115.840000pt;}
.ybb{bottom:121.120000pt;}
.y44{bottom:131.200000pt;}
.y14d{bottom:131.840000pt;}
.y124{bottom:132.960000pt;}
.y2e{bottom:132.986667pt;}
.ye3{bottom:135.360000pt;}
.ybc{bottom:135.840000pt;}
.y80{bottom:136.160000pt;}
.y82{bottom:146.240000pt;}
.yb8{bottom:150.400000pt;}
.y43{bottom:151.680000pt;}
.y14c{bottom:153.440000pt;}
.y2d{bottom:153.466667pt;}
.y123{bottom:154.720000pt;}
.ye2{bottom:155.840000pt;}
.yfa{bottom:156.480000pt;}
.y7f{bottom:156.640000pt;}
.yba{bottom:165.120000pt;}
.y42{bottom:172.160000pt;}
.y2c{bottom:173.946667pt;}
.y14b{bottom:174.880000pt;}
.ye1{bottom:176.320000pt;}
.y122{bottom:176.480000pt;}
.yf9{bottom:176.800000pt;}
.y7e{bottom:177.120000pt;}
.yb4{bottom:179.680000pt;}
.y40{bottom:182.880000pt;}
.yb6{bottom:194.280000pt;}
.y2b{bottom:194.426667pt;}
.y14a{bottom:196.506667pt;}
.ye0{bottom:196.826667pt;}
.yf8{bottom:197.306667pt;}
.y7d{bottom:197.626667pt;}
.y121{bottom:198.426667pt;}
.y3f{bottom:200.200000pt;}
.yb2{bottom:209.960000pt;}
.y2a{bottom:214.746667pt;}
.ydf{bottom:217.306667pt;}
.y3d{bottom:217.480000pt;}
.yf7{bottom:217.786667pt;}
.y149{bottom:217.946667pt;}
.y7c{bottom:218.106667pt;}
.y3c{bottom:234.600000pt;}
.y29{bottom:235.226667pt;}
.y120{bottom:237.466667pt;}
.yde{bottom:237.626667pt;}
.yf6{bottom:238.266667pt;}
.y7b{bottom:238.586667pt;}
.y148{bottom:239.546667pt;}
.yb1{bottom:248.986667pt;}
.y3b{bottom:251.880000pt;}
.y28{bottom:255.706667pt;}
.ydd{bottom:258.106667pt;}
.yf5{bottom:258.746667pt;}
.y7a{bottom:258.906667pt;}
.y11f{bottom:259.226667pt;}
.y147{bottom:261.306667pt;}
.yb0{bottom:267.066667pt;}
.y39{bottom:269.160000pt;}
.y27{bottom:276.186667pt;}
.ydc{bottom:278.586667pt;}
.yf4{bottom:279.226667pt;}
.y79{bottom:279.386667pt;}
.y11e{bottom:281.146667pt;}
.y146{bottom:282.906667pt;}
.yaf{bottom:285.306667pt;}
.y37{bottom:286.440000pt;}
.yad{bottom:298.120000pt;}
.ydb{bottom:299.066667pt;}
.yf3{bottom:299.546667pt;}
.y78{bottom:299.866667pt;}
.y11d{bottom:302.906667pt;}
.y35{bottom:304.200000pt;}
.y145{bottom:304.666667pt;}
.y26{bottom:310.120000pt;}
.yae{bottom:312.680000pt;}
.yda{bottom:319.546667pt;}
.yf2{bottom:320.026667pt;}
.y77{bottom:320.346667pt;}
.y11c{bottom:322.266667pt;}
.y144{bottom:326.586667pt;}
.yab{bottom:327.400000pt;}
.yd9{bottom:339.866667pt;}
.yf1{bottom:340.506667pt;}
.y76{bottom:340.826667pt;}
.y11b{bottom:341.626667pt;}
.yac{bottom:341.960000pt;}
.y143{bottom:348.026667pt;}
.ya8{bottom:356.680000pt;}
.yd8{bottom:360.346667pt;}
.yf0{bottom:360.986667pt;}
.y75{bottom:361.306667pt;}
.y11a{bottom:363.546667pt;}
.y142{bottom:369.626667pt;}
.yaa{bottom:371.240000pt;}
.yd7{bottom:380.826667pt;}
.yef{bottom:381.466667pt;}
.y74{bottom:381.626667pt;}
.y119{bottom:385.306667pt;}
.ya5{bottom:386.920000pt;}
.y141{bottom:391.066667pt;}
.yd6{bottom:401.346667pt;}
.yee{bottom:401.826667pt;}
.y73{bottom:402.146667pt;}
.y118{bottom:407.106667pt;}
.y140{bottom:412.706667pt;}
.yd5{bottom:421.826667pt;}
.yed{bottom:422.306667pt;}
.y72{bottom:422.626667pt;}
.ya4{bottom:425.826667pt;}
.y117{bottom:427.746667pt;}
.y13f{bottom:434.306667pt;}
.yd4{bottom:442.306667pt;}
.yec{bottom:442.786667pt;}
.y71{bottom:443.106667pt;}
.ya3{bottom:444.066667pt;}
.y116{bottom:448.386667pt;}
.y13e{bottom:455.746667pt;}
.ya2{bottom:462.306667pt;}
.yd3{bottom:462.626667pt;}
.yeb{bottom:463.266667pt;}
.y70{bottom:463.586667pt;}
.y115{bottom:470.146667pt;}
.ya1{bottom:474.946667pt;}
.y13d{bottom:477.346667pt;}
.yd2{bottom:483.106667pt;}
.yea{bottom:483.746667pt;}
.y6f{bottom:484.066667pt;}
.ya0{bottom:489.666667pt;}
.y114{bottom:492.066667pt;}
.y13c{bottom:498.786667pt;}
.yd1{bottom:503.586667pt;}
.y9f{bottom:504.226667pt;}
.y6e{bottom:504.386667pt;}
.y113{bottom:513.826667pt;}
.y9e{bottom:518.946667pt;}
.y13b{bottom:520.386667pt;}
.yd0{bottom:524.226667pt;}
.ye9{bottom:524.546667pt;}
.y6d{bottom:524.866667pt;}
.y9d{bottom:533.506667pt;}
.y112{bottom:535.586667pt;}
.y13a{bottom:541.826667pt;}
.ycf{bottom:544.706667pt;}
.ye8{bottom:545.026667pt;}
.y6c{bottom:545.346667pt;}
.y9b{bottom:549.186667pt;}
.y111{bottom:557.506667pt;}
.y139{bottom:563.426667pt;}
.y9c{bottom:564.866667pt;}
.yce{bottom:565.186667pt;}
.ye7{bottom:565.506667pt;}
.y6b{bottom:565.826667pt;}
.y110{bottom:579.266667pt;}
.y138{bottom:585.026667pt;}
.ycd{bottom:585.666667pt;}
.ye6{bottom:585.986667pt;}
.y6a{bottom:586.306667pt;}
.y9a{bottom:590.146667pt;}
.y24{bottom:597.026667pt;}
.y10f{bottom:601.053333pt;}
.y23{bottom:606.173333pt;}
.ye5{bottom:606.493333pt;}
.y69{bottom:606.653333pt;}
.y99{bottom:608.253333pt;}
.y21{bottom:619.773333pt;}
.y10e{bottom:622.973333pt;}
.y98{bottom:626.493333pt;}
.ycc{bottom:626.653333pt;}
.y68{bottom:627.133333pt;}
.y137{bottom:628.093333pt;}
.y1f{bottom:634.973333pt;}
.y97{bottom:639.293333pt;}
.y10d{bottom:644.733333pt;}
.ycb{bottom:647.133333pt;}
.y67{bottom:647.613333pt;}
.y136{bottom:649.533333pt;}
.y1d{bottom:651.133333pt;}
.y96{bottom:653.853333pt;}
.y1b{bottom:666.333333pt;}
.y10c{bottom:666.493333pt;}
.yca{bottom:667.773333pt;}
.y66{bottom:668.093333pt;}
.y95{bottom:668.573333pt;}
.y135{bottom:671.133333pt;}
.y19{bottom:679.933333pt;}
.y94{bottom:683.133333pt;}
.y14{bottom:687.293333pt;}
.yc9{bottom:688.253333pt;}
.y10b{bottom:688.413333pt;}
.y65{bottom:688.573333pt;}
.y134{bottom:692.573333pt;}
.y93{bottom:697.853333pt;}
.yc8{bottom:708.733333pt;}
.y64{bottom:709.053333pt;}
.y10a{bottom:710.173333pt;}
.y8e{bottom:713.373333pt;}
.y133{bottom:714.173333pt;}
.y91{bottom:729.053333pt;}
.yc7{bottom:729.213333pt;}
.y63{bottom:729.373333pt;}
.y109{bottom:731.933333pt;}
.y132{bottom:735.773333pt;}
.yc6{bottom:749.693333pt;}
.y62{bottom:749.853333pt;}
.y108{bottom:753.853333pt;}
.y8d{bottom:754.493333pt;}
.y131{bottom:757.213333pt;}
.yc5{bottom:770.013333pt;}
.y61{bottom:770.333333pt;}
.y8c{bottom:772.573333pt;}
.y107{bottom:775.613333pt;}
.y130{bottom:778.813333pt;}
.y12{bottom:787.133333pt;}
.yc4{bottom:790.493333pt;}
.y60{bottom:790.813333pt;}
.y8b{bottom:793.533333pt;}
.y10{bottom:795.293333pt;}
.y106{bottom:797.533333pt;}
.y12f{bottom:800.253333pt;}
.yc3{bottom:811.013333pt;}
.y5f{bottom:811.333333pt;}
.y8a{bottom:814.053333pt;}
.y105{bottom:819.333333pt;}
.ye{bottom:820.133333pt;}
.y12e{bottom:821.893333pt;}
.yb{bottom:824.773333pt;}
.yc2{bottom:831.493333pt;}
.y5e{bottom:831.813333pt;}
.y89{bottom:834.533333pt;}
.y104{bottom:841.093333pt;}
.y12d{bottom:843.333333pt;}
.y88{bottom:845.253333pt;}
.yc1{bottom:851.973333pt;}
.y5d{bottom:852.133333pt;}
.y103{bottom:863.013333pt;}
.y12c{bottom:864.933333pt;}
.y87{bottom:865.733333pt;}
.yc0{bottom:872.293333pt;}
.y5c{bottom:872.613333pt;}
.y102{bottom:884.773333pt;}
.y12b{bottom:886.533333pt;}
.ybf{bottom:892.773333pt;}
.y5b{bottom:893.093333pt;}
.ya{bottom:900.933333pt;}
.y101{bottom:906.533333pt;}
.y12a{bottom:907.973333pt;}
.ybe{bottom:913.413333pt;}
.y5a{bottom:913.573333pt;}
.y4{bottom:915.813333pt;}
.y46{bottom:927.360000pt;}
.y100{bottom:928.453333pt;}
.y129{bottom:929.573333pt;}
.y59{bottom:934.053333pt;}
.yff{bottom:950.213333pt;}
.y128{bottom:951.013333pt;}
.y58{bottom:954.533333pt;}
.yfe{bottom:971.973333pt;}
.y127{bottom:972.613333pt;}
.y57{bottom:974.853333pt;}
.yfd{bottom:993.893333pt;}
.y126{bottom:994.053333pt;}
.y56{bottom:995.333333pt;}
.yfc{bottom:1015.653333pt;}
.y55{bottom:1015.813333pt;}
.y4f{bottom:1032.000000pt;}
.y4d{bottom:1054.080000pt;}
.h2a{height:1.782500pt;}
.ha{height:4.626667pt;}
.h1f{height:5.906667pt;}
.h12{height:7.360000pt;}
.he{height:8.160000pt;}
.h1c{height:9.146667pt;}
.hb{height:10.835938pt;}
.h3d{height:13.586667pt;}
.h46{height:13.598667pt;}
.h14{height:13.600000pt;}
.h43{height:13.632000pt;}
.h42{height:13.746667pt;}
.h3b{height:13.760000pt;}
.h20{height:14.705625pt;}
.h16{height:15.200000pt;}
.h30{height:15.680000pt;}
.h18{height:16.160000pt;}
.h27{height:17.106667pt;}
.h23{height:17.266667pt;}
.h28{height:17.312000pt;}
.h21{height:17.746667pt;}
.h13{height:18.716250pt;}
.hf{height:20.422500pt;}
.h38{height:20.466667pt;}
.h2{height:21.278667pt;}
.h11{height:21.316250pt;}
.h24{height:24.063750pt;}
.h31{height:24.798667pt;}
.hc{height:24.820000pt;}
.h22{height:25.907187pt;}
.h3e{height:27.218667pt;}
.h40{height:27.346667pt;}
.h3f{height:28.146667pt;}
.h45{height:28.318667pt;}
.h44{height:28.320000pt;}
.h41{height:28.352000pt;}
.h1d{height:29.187500pt;}
.h3c{height:29.266667pt;}
.h3a{height:29.280000pt;}
.h33{height:30.830625pt;}
.h39{height:33.857500pt;}
.h26{height:35.975313pt;}
.h25{height:36.986875pt;}
.h47{height:39.111250pt;}
.h17{height:39.840000pt;}
.hd{height:39.876250pt;}
.h1a{height:40.618125pt;}
.h36{height:40.958667pt;}
.h15{height:43.781250pt;}
.h19{height:44.505000pt;}
.h3{height:44.975625pt;}
.h2d{height:48.000000pt;}
.h6{height:48.406250pt;}
.h1b{height:48.451250pt;}
.h34{height:49.336436pt;}
.h2f{height:49.852500pt;}
.h2e{height:49.920000pt;}
.h8{height:50.712187pt;}
.h2c{height:56.160000pt;}
.h9{height:57.647187pt;}
.h48{height:58.563750pt;}
.h4{height:62.812500pt;}
.h7{height:63.346667pt;}
.h32{height:64.500000pt;}
.h10{height:99.840000pt;}
.h2b{height:101.920000pt;}
.h29{height:103.552000pt;}
.h5{height:110.746667pt;}
.h37{height:160.826667pt;}
.h35{height:184.826667pt;}
.h1e{height:286.893333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2b{width:37.910667pt;}
.w1d{width:40.146667pt;}
.w32{width:40.786667pt;}
.w2a{width:41.746667pt;}
.w26{width:43.200000pt;}
.w1f{width:43.698667pt;}
.w10{width:46.390667pt;}
.w1b{width:50.560000pt;}
.w28{width:50.866667pt;}
.w2c{width:52.146667pt;}
.w31{width:66.098667pt;}
.w33{width:73.106667pt;}
.w25{width:77.458667pt;}
.w27{width:77.472000pt;}
.w1c{width:79.552000pt;}
.w2d{width:80.498667pt;}
.w2e{width:81.440000pt;}
.w30{width:83.986667pt;}
.w2f{width:84.032000pt;}
.w1e{width:84.466667pt;}
.w1a{width:84.498667pt;}
.w29{width:85.298667pt;}
.w4{width:90.070667pt;}
.w19{width:105.586667pt;}
.w24{width:106.066667pt;}
.w15{width:111.510667pt;}
.w20{width:117.910667pt;}
.w17{width:119.712000pt;}
.w21{width:120.658667pt;}
.w23{width:127.058667pt;}
.w18{width:128.178667pt;}
.w22{width:128.352000pt;}
.w16{width:135.053333pt;}
.w9{width:137.270667pt;}
.w3{width:235.693333pt;}
.w11{width:249.173333pt;}
.w8{width:264.813333pt;}
.w13{width:288.013333pt;}
.w14{width:288.017333pt;}
.wc{width:289.613333pt;}
.wf{width:296.493333pt;}
.we{width:300.697333pt;}
.w12{width:301.613333pt;}
.wb{width:310.457333pt;}
.w7{width:335.257333pt;}
.w2{width:368.377333pt;}
.wa{width:462.800000pt;}
.wd{width:509.920000pt;}
.w5{width:511.760000pt;}
.w6{width:600.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:3.350667pt;}
.x16{left:5.746667pt;}
.x29{left:7.666667pt;}
.x2a{left:9.306667pt;}
.x1e{left:10.400000pt;}
.x26{left:12.786667pt;}
.x20{left:14.546667pt;}
.x14{left:15.830667pt;}
.x1c{left:17.906667pt;}
.x3a{left:19.666667pt;}
.x23{left:20.786667pt;}
.x39{left:22.400000pt;}
.x32{left:23.386667pt;}
.x2f{left:24.666667pt;}
.x28{left:26.080000pt;}
.x3f{left:27.040000pt;}
.x3b{left:28.000000pt;}
.x18{left:28.946667pt;}
.x3d{left:30.386667pt;}
.x3c{left:31.520000pt;}
.x8{left:32.466667pt;}
.xc{left:34.106667pt;}
.x3e{left:36.480000pt;}
.x2b{left:44.800000pt;}
.x30{left:47.360000pt;}
.x31{left:50.240000pt;}
.x22{left:52.800000pt;}
.x1{left:94.921333pt;}
.x5{left:96.032000pt;}
.x13{left:108.466667pt;}
.x19{left:127.506667pt;}
.x33{left:133.960000pt;}
.x15{left:146.120000pt;}
.x4{left:166.746667pt;}
.x6{left:186.120000pt;}
.xd{left:196.546667pt;}
.x1b{left:207.560000pt;}
.x2c{left:213.960000pt;}
.x9{left:234.120000pt;}
.xe{left:243.293333pt;}
.x34{left:266.626667pt;}
.xf{left:269.693333pt;}
.x1a{left:288.026667pt;}
.x24{left:292.066667pt;}
.x10{left:303.133333pt;}
.x2d{left:334.626667pt;}
.x1d{left:342.626667pt;}
.x35{left:348.066667pt;}
.x17{left:395.306667pt;}
.x12{left:400.426667pt;}
.xa{left:407.306667pt;}
.xb{left:411.293333pt;}
.x25{left:422.186667pt;}
.x7{left:432.106667pt;}
.x1f{left:462.346667pt;}
.x3{left:463.306667pt;}
.x11{left:510.213333pt;}
.x36{left:516.106667pt;}
.x27{left:546.826667pt;}
.x2e{left:548.293333pt;}
.x37{left:582.213333pt;}
.x21{left:590.533333pt;}
.x38{left:623.013333pt;}
}




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