
    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_d05e45887f4c2594a4209267.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_bbf63b533c0f57026fdbc25b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c1367a767a05798df6feffb2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_beff3d630886c27f9116520c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_33096ca7b11e35cd797a20b3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_d3c78fe86887831ab9a5a5cb.woff')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.835000;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_9182835f719e5f9e9dc2beaa.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_c4653a922c8b5015de9903a8.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_b71c17b6c9606dfb562e05a1.woff')format("woff");}.ffc{font-family:ffc;line-height:0.970703;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_96555fb05176b4dcb94a5e50.woff')format("woff");}.ffd{font-family:ffd;line-height:0.694336;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_9973c73ec69353615df8c263.woff')format("woff");}.ffe{font-family:ffe;line-height:0.886719;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_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.fff{font-family:fff;line-height:1.035156;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_8260af30d65c52eae74e4849.woff')format("woff");}.ff10{font-family:ff10;line-height:0.978027;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_01714a9432ecb563c162e167.woff')format("woff");}.ff11{font-family:ff11;line-height:0.914062;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_e5078517ae41292e913a346c.woff')format("woff");}.ff12{font-family:ff12;line-height:1.063477;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff13{font-family:ff13;line-height:0.910156;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_f42cfa223ae352ef64e632e9.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_8d87a1ebfaf4b54e6f4558ff.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_fb860a61360a8266e533afef.woff')format("woff");}.ff16{font-family:ff16;line-height:1.063477;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_123cac8dc7e3acfb1a0f5601.woff')format("woff");}.ff17{font-family:ff17;line-height:1.053711;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.160000px;}
.v2{vertical-align:44.640000px;}
.v1{vertical-align:50.400000px;}
.ls26{letter-spacing:-0.720000px;}
.ls23{letter-spacing:-0.457800px;}
.ls1b{letter-spacing:-0.414600px;}
.ls1a{letter-spacing:-0.305400px;}
.ls1c{letter-spacing:-0.262200px;}
.ls18{letter-spacing:-0.253200px;}
.ls9{letter-spacing:-0.190200px;}
.ls27{letter-spacing:-0.152400px;}
.lsb{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.114000px;}
.ls8{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.008640px;}
.ls4{letter-spacing:0.017280px;}
.ls1d{letter-spacing:0.034560px;}
.ls2{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.078000px;}
.ls28{letter-spacing:0.109200px;}
.ls14{letter-spacing:0.120960px;}
.ls6{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.ls19{letter-spacing:0.262200px;}
.lsd{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.576000px;}
.ls17{letter-spacing:2.200320px;}
.ls16{letter-spacing:8.510400px;}
.ls22{letter-spacing:10.800000px;}
.lsf{letter-spacing:14.624640px;}
.ls11{letter-spacing:20.880000px;}
.ls20{letter-spacing:21.600000px;}
.ls13{letter-spacing:23.904000px;}
.ls25{letter-spacing:28.080000px;}
.ls1f{letter-spacing:37.440000px;}
.ls1e{letter-spacing:39.600000px;}
.ls21{letter-spacing:41.040000px;}
.ls12{letter-spacing:45.360000px;}
.ls24{letter-spacing:48.240000px;}
.ls29{letter-spacing:58.320000px;}
.ls10{letter-spacing:59.321280px;}
.ls15{letter-spacing:59.345280px;}
.lse{letter-spacing:130.518720px;}
.ls7{letter-spacing:199.416000px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-72.000000px;}
.wsd{word-spacing:-66.240000px;}
.ws11{word-spacing:-49.613760px;}
.ws8{word-spacing:-29.410560px;}
.wsb{word-spacing:-24.062880px;}
.ws7{word-spacing:-19.448640px;}
.ws6{word-spacing:-19.440000px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.wsc{word-spacing:-16.865400px;}
.wsf{word-spacing:-16.822200px;}
.ws15{word-spacing:-16.669200px;}
.ws9{word-spacing:-16.560000px;}
.ws14{word-spacing:-16.407600px;}
.ws13{word-spacing:-16.297800px;}
.ws10{word-spacing:-16.254600px;}
.ws12{word-spacing:-16.145400px;}
.ws4{word-spacing:-15.912000px;}
.ws5{word-spacing:-15.696000px;}
.ws3{word-spacing:-14.650800px;}
.wsa{word-spacing:0.000000px;}
._4a{margin-left:-3.515040px;}
._2{margin-left:-2.129040px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._4{width:2.424960px;}
._3{width:3.905280px;}
._d{width:4.955760px;}
._5{width:6.091200px;}
._b{width:7.106400px;}
._19{width:8.809920px;}
._59{width:9.819360px;}
._a{width:10.882080px;}
._7{width:12.273120px;}
._10{width:13.311840px;}
._c{width:15.102000px;}
._6{width:18.168480px;}
._16{width:19.708560px;}
._2a{width:21.088560px;}
._24{width:22.322880px;}
._25{width:23.345280px;}
._8{width:24.461280px;}
._9{width:25.872960px;}
._44{width:27.023760px;}
._34{width:28.187280px;}
._33{width:29.874240px;}
._32{width:31.804560px;}
._e{width:33.562080px;}
._f{width:34.634400px;}
._2d{width:35.902080px;}
._23{width:36.920640px;}
._41{width:38.652480px;}
._17{width:39.810240px;}
._18{width:41.078160px;}
._48{width:42.459840px;}
._49{width:43.886160px;}
._39{width:45.639360px;}
._50{width:46.646640px;}
._42{width:47.745360px;}
._28{width:48.752640px;}
._3d{width:49.802640px;}
._21{width:50.826000px;}
._20{width:52.064640px;}
._22{width:53.736480px;}
._36{width:55.744560px;}
._35{width:56.878560px;}
._26{width:58.092480px;}
._27{width:59.095440px;}
._13{width:60.145920px;}
._14{width:61.323120px;}
._29{width:62.331840px;}
._30{width:63.864720px;}
._2f{width:65.047680px;}
._1e{width:66.968640px;}
._1f{width:68.227200px;}
._3c{width:69.338160px;}
._3e{width:71.416080px;}
._51{width:73.526400px;}
._12{width:74.621520px;}
._1d{width:75.942000px;}
._43{width:77.187360px;}
._4b{width:78.387120px;}
._31{width:80.093520px;}
._5a{width:81.210960px;}
._3b{width:82.213200px;}
._52{width:83.594880px;}
._53{width:85.052160px;}
._37{width:86.906880px;}
._38{width:88.572240px;}
._3a{width:90.796320px;}
._2e{width:91.966320px;}
._56{width:95.915520px;}
._4c{width:97.306560px;}
._15{width:100.751040px;}
._2c{width:102.009600px;}
._2b{width:103.807440px;}
._11{width:105.785280px;}
._4d{width:107.971200px;}
._3f{width:115.787520px;}
._4f{width:117.840960px;}
._54{width:120.623040px;}
._55{width:122.354640px;}
._40{width:128.077200px;}
._57{width:129.168000px;}
._61{width:133.076160px;}
._60{width:134.997120px;}
._47{width:136.454400px;}
._46{width:137.483280px;}
._5f{width:147.781440px;}
._1c{width:152.893440px;}
._5c{width:154.138320px;}
._5b{width:158.003280px;}
._45{width:173.548800px;}
._1a{width:189.617520px;}
._1b{width:197.647200px;}
._5d{width:201.170880px;}
._5e{width:202.173840px;}
._58{width:264.032640px;}
._4e{width:847.596000px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc3{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs8{font-size:92.880000px;}
.fsa{font-size:176.832798px;}
.fsb{font-size:180.000000px;}
.yc9{bottom:-68.400000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y18{bottom:1.260000px;}
.y11{bottom:1.800000px;}
.y3{bottom:3.420000px;}
.yfc{bottom:5.940000px;}
.y8{bottom:6.660000px;}
.y103{bottom:6.840000px;}
.ya{bottom:7.380000px;}
.yf{bottom:7.560000px;}
.y6{bottom:8.460000px;}
.yeb{bottom:9.345000px;}
.yfd{bottom:9.360000px;}
.yef{bottom:9.705000px;}
.yf6{bottom:9.720000px;}
.yc7{bottom:9.900000px;}
.yff{bottom:10.260000px;}
.y107{bottom:11.520000px;}
.yc6{bottom:13.890000px;}
.yfa{bottom:15.300000px;}
.yca{bottom:16.380000px;}
.y101{bottom:17.280000px;}
.ye9{bottom:21.585000px;}
.yed{bottom:21.945000px;}
.y104{bottom:21.960000px;}
.yf1{bottom:22.125000px;}
.yf4{bottom:22.140000px;}
.yfb{bottom:24.840000px;}
.yc4{bottom:26.280000px;}
.y15{bottom:26.460000px;}
.y5{bottom:33.120000px;}
.ye{bottom:33.300000px;}
.yea{bottom:34.005000px;}
.y106{bottom:40.500000px;}
.y14{bottom:47.880000px;}
.y1{bottom:51.480000px;}
.y13{bottom:70.380000px;}
.y40{bottom:75.240000px;}
.y3c{bottom:112.680000px;}
.y119{bottom:116.640000px;}
.yc2{bottom:129.240000px;}
.yf8{bottom:129.600000px;}
.y14d{bottom:130.500000px;}
.y7f{bottom:133.740000px;}
.y6b{bottom:134.100000px;}
.y3b{bottom:137.340000px;}
.y118{bottom:141.300000px;}
.yc1{bottom:153.900000px;}
.yf7{bottom:154.260000px;}
.y12c{bottom:155.160000px;}
.y7e{bottom:158.400000px;}
.y6a{bottom:158.760000px;}
.y3a{bottom:162.000000px;}
.y117{bottom:165.960000px;}
.yf3{bottom:169.920000px;}
.yc0{bottom:178.560000px;}
.y163{bottom:179.460000px;}
.y12b{bottom:179.820000px;}
.y69{bottom:183.060000px;}
.y6d{bottom:183.420000px;}
.y39{bottom:186.660000px;}
.y116{bottom:190.620000px;}
.yf5{bottom:195.300000px;}
.ybf{bottom:203.220000px;}
.y12a{bottom:204.480000px;}
.y73{bottom:207.750000px;}
.y68{bottom:208.110000px;}
.y38{bottom:211.350000px;}
.y115{bottom:215.310000px;}
.yf0{bottom:220.725000px;}
.ybe{bottom:227.910000px;}
.y129{bottom:229.170000px;}
.y67{bottom:232.410000px;}
.y74{bottom:232.770000px;}
.y37{bottom:236.010000px;}
.y114{bottom:239.970000px;}
.yf2{bottom:246.285000px;}
.yb0{bottom:252.930000px;}
.y128{bottom:254.010000px;}
.y72{bottom:257.070000px;}
.y66{bottom:257.430000px;}
.y36{bottom:260.670000px;}
.y113{bottom:264.630000px;}
.yec{bottom:271.665000px;}
.yaf{bottom:277.590000px;}
.y127{bottom:278.670000px;}
.y71{bottom:281.730000px;}
.y65{bottom:282.090000px;}
.y35{bottom:285.330000px;}
.y112{bottom:289.290000px;}
.yee{bottom:297.045000px;}
.yae{bottom:302.250000px;}
.y126{bottom:303.330000px;}
.y70{bottom:306.390000px;}
.y64{bottom:306.750000px;}
.y34{bottom:309.990000px;}
.y111{bottom:313.590000px;}
.y11b{bottom:313.950000px;}
.ye8{bottom:324.045000px;}
.yad{bottom:326.550000px;}
.y125{bottom:327.990000px;}
.ybd{bottom:330.150000px;}
.y63{bottom:331.410000px;}
.y33{bottom:334.650000px;}
.y110{bottom:338.250000px;}
.y11a{bottom:338.610000px;}
.y158{bottom:352.290000px;}
.yac{bottom:352.650000px;}
.ybc{bottom:354.810000px;}
.y62{bottom:356.070000px;}
.y32{bottom:359.310000px;}
.y10f{bottom:363.270000px;}
.y14c{bottom:376.950000px;}
.yab{bottom:377.310000px;}
.ybb{bottom:379.470000px;}
.y61{bottom:380.730000px;}
.y31{bottom:383.610000px;}
.y3d{bottom:383.970000px;}
.ye7{bottom:385.230000px;}
.y10e{bottom:387.930000px;}
.y14b{bottom:401.610000px;}
.yaa{bottom:401.970000px;}
.y30{bottom:403.050000px;}
.yba{bottom:404.130000px;}
.y60{bottom:405.390000px;}
.ye6{bottom:409.890000px;}
.y10d{bottom:412.590000px;}
.ya9{bottom:426.450000px;}
.y2f{bottom:426.630000px;}
.y124{bottom:427.710000px;}
.yb9{bottom:428.790000px;}
.y5f{bottom:430.050000px;}
.ye5{bottom:434.550000px;}
.y10c{bottom:437.250000px;}
.y2e{bottom:448.635000px;}
.y162{bottom:450.975000px;}
.y14a{bottom:451.335000px;}
.ya8{bottom:452.235000px;}
.y123{bottom:452.415000px;}
.yb8{bottom:453.495000px;}
.y5e{bottom:454.755000px;}
.ye4{bottom:459.255000px;}
.y10b{bottom:461.955000px;}
.y2d{bottom:472.935000px;}
.y161{bottom:475.635000px;}
.y149{bottom:475.995000px;}
.ya7{bottom:476.895000px;}
.y122{bottom:477.255000px;}
.yb7{bottom:478.335000px;}
.y5d{bottom:479.595000px;}
.ye0{bottom:483.915000px;}
.y10a{bottom:486.615000px;}
.y2c{bottom:494.895000px;}
.y148{bottom:500.655000px;}
.ya6{bottom:501.915000px;}
.yb6{bottom:502.635000px;}
.y121{bottom:502.995000px;}
.y7d{bottom:503.895000px;}
.y5c{bottom:504.255000px;}
.ydf{bottom:508.575000px;}
.y109{bottom:511.455000px;}
.y168{bottom:512.715000px;}
.y2b{bottom:516.675000px;}
.y147{bottom:525.315000px;}
.ya5{bottom:526.575000px;}
.yb5{bottom:527.295000px;}
.y120{bottom:527.655000px;}
.y7c{bottom:528.555000px;}
.y5b{bottom:528.915000px;}
.y167{bottom:532.515000px;}
.yde{bottom:533.235000px;}
.y108{bottom:536.115000px;}
.y2a{bottom:538.455000px;}
.y146{bottom:549.975000px;}
.y105{bottom:551.055000px;}
.ya4{bottom:551.235000px;}
.yb4{bottom:552.315000px;}
.y166{bottom:552.855000px;}
.y7b{bottom:553.215000px;}
.y5a{bottom:553.575000px;}
.ye3{bottom:557.535000px;}
.ydd{bottom:557.895000px;}
.y29{bottom:560.235000px;}
.y145{bottom:574.635000px;}
.ya3{bottom:575.895000px;}
.y11f{bottom:576.795000px;}
.yb3{bottom:576.975000px;}
.y59{bottom:578.235000px;}
.y28{bottom:582.015000px;}
.ydc{bottom:582.555000px;}
.y144{bottom:599.295000px;}
.ya2{bottom:600.735000px;}
.yb2{bottom:601.635000px;}
.y7a{bottom:602.535000px;}
.y58{bottom:602.895000px;}
.y27{bottom:603.975000px;}
.ye2{bottom:606.855000px;}
.ydb{bottom:607.215000px;}
.y102{bottom:609.195000px;}
.y157{bottom:623.595000px;}
.y143{bottom:623.955000px;}
.y26{bottom:625.755000px;}
.ya1{bottom:625.935000px;}
.yb1{bottom:626.295000px;}
.y57{bottom:627.555000px;}
.ye1{bottom:631.515000px;}
.yda{bottom:631.875000px;}
.yc3{bottom:645.375000px;}
.yc8{bottom:645.555000px;}
.y25{bottom:647.535000px;}
.y142{bottom:648.615000px;}
.ya0{bottom:650.955000px;}
.y165{bottom:651.855000px;}
.y56{bottom:652.215000px;}
.yd9{bottom:656.535000px;}
.y24{bottom:669.315000px;}
.yc5{bottom:670.575000px;}
.y141{bottom:673.275000px;}
.y9f{bottom:675.615000px;}
.y6c{bottom:676.545000px;}
.y55{bottom:676.905000px;}
.yd8{bottom:681.225000px;}
.y23{bottom:691.305000px;}
.y140{bottom:697.965000px;}
.y9e{bottom:700.305000px;}
.y54{bottom:701.565000px;}
.yd7{bottom:705.705000px;}
.y22{bottom:713.085000px;}
.y13f{bottom:722.265000px;}
.y156{bottom:722.625000px;}
.y9d{bottom:725.145000px;}
.y53{bottom:726.225000px;}
.yd6{bottom:730.725000px;}
.y21{bottom:734.865000px;}
.y13e{bottom:747.285000px;}
.y9c{bottom:750.165000px;}
.y52{bottom:750.885000px;}
.yd5{bottom:755.385000px;}
.y20{bottom:756.645000px;}
.y155{bottom:771.585000px;}
.y13d{bottom:771.945000px;}
.y8d{bottom:773.565000px;}
.y9b{bottom:774.825000px;}
.y6f{bottom:775.185000px;}
.y51{bottom:775.545000px;}
.y1f{bottom:778.425000px;}
.yd4{bottom:780.045000px;}
.y154{bottom:796.245000px;}
.y13c{bottom:796.605000px;}
.y160{bottom:796.785000px;}
.y8c{bottom:798.225000px;}
.y9a{bottom:799.485000px;}
.y6e{bottom:799.845000px;}
.y50{bottom:800.205000px;}
.y1e{bottom:800.385000px;}
.yd3{bottom:804.705000px;}
.y13b{bottom:821.265000px;}
.y1d{bottom:822.165000px;}
.y15f{bottom:822.525000px;}
.y8b{bottom:823.065000px;}
.y99{bottom:824.145000px;}
.y4f{bottom:824.865000px;}
.yd2{bottom:829.365000px;}
.y1c{bottom:843.945000px;}
.y13a{bottom:845.925000px;}
.y15e{bottom:847.185000px;}
.y8a{bottom:848.805000px;}
.y164{bottom:849.165000px;}
.y4e{bottom:849.525000px;}
.yd1{bottom:854.025000px;}
.y1b{bottom:865.725000px;}
.y139{bottom:870.585000px;}
.y15d{bottom:871.845000px;}
.y89{bottom:873.465000px;}
.y11e{bottom:873.825000px;}
.y4d{bottom:874.185000px;}
.yd0{bottom:878.685000px;}
.y100{bottom:881.745000px;}
.y1a{bottom:887.325000px;}
.y138{bottom:895.245000px;}
.y15c{bottom:897.585000px;}
.y98{bottom:897.765000px;}
.y88{bottom:898.305000px;}
.y77{bottom:898.485000px;}
.y4c{bottom:898.845000px;}
.ycf{bottom:903.345000px;}
.y19{bottom:906.585000px;}
.y17{bottom:915.270000px;}
.y153{bottom:919.950000px;}
.y137{bottom:920.130000px;}
.y15b{bottom:922.290000px;}
.y12{bottom:922.470000px;}
.y97{bottom:922.830000px;}
.y76{bottom:923.190000px;}
.y4b{bottom:923.550000px;}
.y87{bottom:924.090000px;}
.y16{bottom:926.396347px;}
.yce{bottom:928.050000px;}
.y152{bottom:944.610000px;}
.y136{bottom:945.870000px;}
.y15a{bottom:947.130000px;}
.y96{bottom:947.490000px;}
.y4a{bottom:948.210000px;}
.y86{bottom:948.750000px;}
.ycd{bottom:952.710000px;}
.y151{bottom:969.270000px;}
.y135{bottom:970.530000px;}
.y95{bottom:972.150000px;}
.y49{bottom:972.870000px;}
.y85{bottom:974.490000px;}
.ycc{bottom:977.370000px;}
.y150{bottom:994.110000px;}
.y134{bottom:995.190000px;}
.y94{bottom:996.810000px;}
.y48{bottom:997.530000px;}
.y84{bottom:999.150000px;}
.ycb{bottom:1002.030000px;}
.yfe{bottom:1017.690000px;}
.y10{bottom:1018.590000px;}
.y133{bottom:1019.850000px;}
.y93{bottom:1021.470000px;}
.y11d{bottom:1021.830000px;}
.y47{bottom:1022.190000px;}
.y83{bottom:1023.990000px;}
.yd{bottom:1025.070000px;}
.y14f{bottom:1044.510000px;}
.y132{bottom:1044.690000px;}
.y92{bottom:1046.130000px;}
.y11c{bottom:1046.490000px;}
.y46{bottom:1046.850000px;}
.y82{bottom:1049.730000px;}
.y14e{bottom:1069.350000px;}
.y131{bottom:1070.430000px;}
.y91{bottom:1070.790000px;}
.y45{bottom:1071.510000px;}
.y81{bottom:1074.030000px;}
.yb{bottom:1076.550000px;}
.yf9{bottom:1081.590000px;}
.y9{bottom:1081.950000px;}
.y80{bottom:1085.190000px;}
.y130{bottom:1095.090000px;}
.y90{bottom:1095.450000px;}
.y159{bottom:1095.810000px;}
.y44{bottom:1096.170000px;}
.y2{bottom:1106.250000px;}
.y12f{bottom:1119.750000px;}
.y8f{bottom:1120.110000px;}
.y79{bottom:1120.470000px;}
.y43{bottom:1120.830000px;}
.y7{bottom:1128.570000px;}
.y12e{bottom:1144.410000px;}
.y8e{bottom:1144.770000px;}
.y78{bottom:1145.130000px;}
.y42{bottom:1145.520000px;}
.y4{bottom:1156.860000px;}
.y12d{bottom:1169.100000px;}
.y75{bottom:1169.820000px;}
.y41{bottom:1170.180000px;}
.y3f{bottom:1187.280000px;}
.y3e{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h16{height:7.185000px;}
.hd{height:13.324219px;}
.h17{height:17.587969px;}
.h11{height:19.008000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h2a{height:24.645000px;}
.h2e{height:24.660000px;}
.h2d{height:24.696000px;}
.h24{height:25.200000px;}
.h7{height:28.290000px;}
.h30{height:29.700000px;}
.h1c{height:30.480469px;}
.h31{height:31.320000px;}
.h23{height:33.330000px;}
.h18{height:36.861328px;}
.h2f{height:42.300000px;}
.h28{height:49.305000px;}
.h29{height:50.025000px;}
.h2c{height:50.076000px;}
.h2b{height:50.205000px;}
.he{height:51.465000px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.h34{height:58.125000px;}
.h22{height:58.530000px;}
.h1d{height:58.621992px;}
.h25{height:59.070000px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h15{height:63.492188px;}
.h19{height:64.978594px;}
.h1a{height:65.010937px;}
.h1b{height:66.757500px;}
.h14{height:67.803750px;}
.h35{height:67.837500px;}
.h20{height:68.084282px;}
.h6{height:71.324297px;}
.h13{height:72.562500px;}
.h21{height:74.004654px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h12{height:96.105000px;}
.h1e{height:100.888594px;}
.h3{height:103.530000px;}
.h1f{height:109.618594px;}
.h26{height:149.029985px;}
.h27{height:151.699219px;}
.h33{height:272.550000px;}
.h32{height:303.375000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:27.000000px;}
.w11{width:72.720000px;}
.wf{width:88.545000px;}
.w12{width:94.896000px;}
.w13{width:98.640000px;}
.wd{width:104.565000px;}
.we{width:104.601000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.wc{width:108.756000px;}
.w14{width:113.796000px;}
.w15{width:124.200000px;}
.w10{width:166.350000px;}
.w8{width:191.190000px;}
.wb{width:197.299500px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w16{width:344.764500px;}
.w17{width:348.540000px;}
.w9{width:372.135000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w18{width:693.315000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:8.089500px;}
.x5{left:10.965000px;}
.x3e{left:12.240000px;}
.x29{left:13.500000px;}
.x3a{left:15.660000px;}
.x39{left:18.000000px;}
.x3c{left:19.620000px;}
.x10{left:20.685000px;}
.x2e{left:22.303500px;}
.x3f{left:23.400000px;}
.x34{left:26.280000px;}
.x41{left:27.540000px;}
.xb{left:34.185000px;}
.x13{left:35.989500px;}
.x26{left:38.340000px;}
.x33{left:41.743500px;}
.x35{left:44.443500px;}
.x40{left:46.620000px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x36{left:57.954000px;}
.x2{left:60.841500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.xd{left:95.925000px;}
.x42{left:99.946500px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x20{left:123.876000px;}
.x16{left:130.663500px;}
.x23{left:135.036000px;}
.x2b{left:137.196000px;}
.x46{left:140.076000px;}
.x2d{left:143.506500px;}
.x1e{left:146.376000px;}
.x2c{left:154.470000px;}
.x1a{left:162.030000px;}
.x25{left:164.910000px;}
.x4{left:168.885000px;}
.x21{left:178.050000px;}
.x17{left:201.628500px;}
.x1d{left:204.870000px;}
.x6{left:209.010000px;}
.x2a{left:225.210000px;}
.x22{left:230.430000px;}
.x15{left:265.168500px;}
.x37{left:278.715000px;}
.x14{left:291.088500px;}
.x18{left:324.965515px;}
.x28{left:331.275000px;}
.x12{left:335.578500px;}
.x2f{left:343.155000px;}
.x43{left:346.350000px;}
.x44{left:347.790000px;}
.x38{left:351.435000px;}
.x27{left:356.115000px;}
.x1f{left:407.595000px;}
.xa{left:445.620000px;}
.x30{left:451.920000px;}
.x1b{left:473.505000px;}
.x24{left:500.505000px;}
.x45{left:505.545000px;}
.x1c{left:527.505000px;}
.x3b{left:544.965000px;}
.x31{left:556.500000px;}
.x3d{left:658.770000px;}
.x32{left:661.110000px;}
.x7{left:722.490000px;}
.x1{left:748.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.920000pt;}
.v2{vertical-align:39.680000pt;}
.v1{vertical-align:44.800000pt;}
.ls26{letter-spacing:-0.640000pt;}
.ls23{letter-spacing:-0.406933pt;}
.ls1b{letter-spacing:-0.368533pt;}
.ls1a{letter-spacing:-0.271467pt;}
.ls1c{letter-spacing:-0.233067pt;}
.ls18{letter-spacing:-0.225067pt;}
.ls9{letter-spacing:-0.169067pt;}
.ls27{letter-spacing:-0.135467pt;}
.lsb{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.101333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.007680pt;}
.ls4{letter-spacing:0.015360pt;}
.ls1d{letter-spacing:0.030720pt;}
.ls2{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.069333pt;}
.ls28{letter-spacing:0.097067pt;}
.ls14{letter-spacing:0.107520pt;}
.ls6{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.ls19{letter-spacing:0.233067pt;}
.lsd{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.512000pt;}
.ls17{letter-spacing:1.955840pt;}
.ls16{letter-spacing:7.564800pt;}
.ls22{letter-spacing:9.600000pt;}
.lsf{letter-spacing:12.999680pt;}
.ls11{letter-spacing:18.560000pt;}
.ls20{letter-spacing:19.200000pt;}
.ls13{letter-spacing:21.248000pt;}
.ls25{letter-spacing:24.960000pt;}
.ls1f{letter-spacing:33.280000pt;}
.ls1e{letter-spacing:35.200000pt;}
.ls21{letter-spacing:36.480000pt;}
.ls12{letter-spacing:40.320000pt;}
.ls24{letter-spacing:42.880000pt;}
.ls29{letter-spacing:51.840000pt;}
.ls10{letter-spacing:52.730027pt;}
.ls15{letter-spacing:52.751360pt;}
.lse{letter-spacing:116.016640pt;}
.ls7{letter-spacing:177.258667pt;}
.wse{word-spacing:-64.000000pt;}
.wsd{word-spacing:-58.880000pt;}
.ws11{word-spacing:-44.101120pt;}
.ws8{word-spacing:-26.142720pt;}
.wsb{word-spacing:-21.389227pt;}
.ws7{word-spacing:-17.287680pt;}
.ws6{word-spacing:-17.280000pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.wsc{word-spacing:-14.991467pt;}
.wsf{word-spacing:-14.953067pt;}
.ws15{word-spacing:-14.817067pt;}
.ws9{word-spacing:-14.720000pt;}
.ws14{word-spacing:-14.584533pt;}
.ws13{word-spacing:-14.486933pt;}
.ws10{word-spacing:-14.448533pt;}
.ws12{word-spacing:-14.351467pt;}
.ws4{word-spacing:-14.144000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws3{word-spacing:-13.022933pt;}
.wsa{word-spacing:0.000000pt;}
._4a{margin-left:-3.124480pt;}
._2{margin-left:-1.892480pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._4{width:2.155520pt;}
._3{width:3.471360pt;}
._d{width:4.405120pt;}
._5{width:5.414400pt;}
._b{width:6.316800pt;}
._19{width:7.831040pt;}
._59{width:8.728320pt;}
._a{width:9.672960pt;}
._7{width:10.909440pt;}
._10{width:11.832747pt;}
._c{width:13.424000pt;}
._6{width:16.149760pt;}
._16{width:17.518720pt;}
._2a{width:18.745387pt;}
._24{width:19.842560pt;}
._25{width:20.751360pt;}
._8{width:21.743360pt;}
._9{width:22.998187pt;}
._44{width:24.021120pt;}
._34{width:25.055360pt;}
._33{width:26.554880pt;}
._32{width:28.270720pt;}
._e{width:29.832960pt;}
._f{width:30.786133pt;}
._2d{width:31.912960pt;}
._23{width:32.818347pt;}
._41{width:34.357760pt;}
._17{width:35.386880pt;}
._18{width:36.513920pt;}
._48{width:37.742080pt;}
._49{width:39.009920pt;}
._39{width:40.568320pt;}
._50{width:41.463680pt;}
._42{width:42.440320pt;}
._28{width:43.335680pt;}
._3d{width:44.269013pt;}
._21{width:45.178667pt;}
._20{width:46.279680pt;}
._22{width:47.765760pt;}
._36{width:49.550720pt;}
._35{width:50.558720pt;}
._26{width:51.637760pt;}
._27{width:52.529280pt;}
._13{width:53.463040pt;}
._14{width:54.509440pt;}
._29{width:55.406080pt;}
._30{width:56.768640pt;}
._2f{width:57.820160pt;}
._1e{width:59.527680pt;}
._1f{width:60.646400pt;}
._3c{width:61.633920pt;}
._3e{width:63.480960pt;}
._51{width:65.356800pt;}
._12{width:66.330240pt;}
._1d{width:67.504000pt;}
._43{width:68.610987pt;}
._4b{width:69.677440pt;}
._31{width:71.194240pt;}
._5a{width:72.187520pt;}
._3b{width:73.078400pt;}
._52{width:74.306560pt;}
._53{width:75.601920pt;}
._37{width:77.250560pt;}
._38{width:78.730880pt;}
._3a{width:80.707840pt;}
._2e{width:81.747840pt;}
._56{width:85.258240pt;}
._4c{width:86.494720pt;}
._15{width:89.556480pt;}
._2c{width:90.675200pt;}
._2b{width:92.273280pt;}
._11{width:94.031360pt;}
._4d{width:95.974400pt;}
._3f{width:102.922240pt;}
._4f{width:104.747520pt;}
._54{width:107.220480pt;}
._55{width:108.759680pt;}
._40{width:113.846400pt;}
._57{width:114.816000pt;}
._61{width:118.289920pt;}
._60{width:119.997440pt;}
._47{width:121.292800pt;}
._46{width:122.207360pt;}
._5f{width:131.361280pt;}
._1c{width:135.905280pt;}
._5c{width:137.011840pt;}
._5b{width:140.447360pt;}
._45{width:154.265600pt;}
._1a{width:168.548907pt;}
._1b{width:175.686400pt;}
._5d{width:178.818560pt;}
._5e{width:179.710080pt;}
._58{width:234.695680pt;}
._4e{width:753.418667pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs8{font-size:82.560000pt;}
.fsa{font-size:157.184710pt;}
.fsb{font-size:160.000000pt;}
.yc9{bottom:-60.800000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y18{bottom:1.120000pt;}
.y11{bottom:1.600000pt;}
.y3{bottom:3.040000pt;}
.yfc{bottom:5.280000pt;}
.y8{bottom:5.920000pt;}
.y103{bottom:6.080000pt;}
.ya{bottom:6.560000pt;}
.yf{bottom:6.720000pt;}
.y6{bottom:7.520000pt;}
.yeb{bottom:8.306667pt;}
.yfd{bottom:8.320000pt;}
.yef{bottom:8.626667pt;}
.yf6{bottom:8.640000pt;}
.yc7{bottom:8.800000pt;}
.yff{bottom:9.120000pt;}
.y107{bottom:10.240000pt;}
.yc6{bottom:12.346667pt;}
.yfa{bottom:13.600000pt;}
.yca{bottom:14.560000pt;}
.y101{bottom:15.360000pt;}
.ye9{bottom:19.186667pt;}
.yed{bottom:19.506667pt;}
.y104{bottom:19.520000pt;}
.yf1{bottom:19.666667pt;}
.yf4{bottom:19.680000pt;}
.yfb{bottom:22.080000pt;}
.yc4{bottom:23.360000pt;}
.y15{bottom:23.520000pt;}
.y5{bottom:29.440000pt;}
.ye{bottom:29.600000pt;}
.yea{bottom:30.226667pt;}
.y106{bottom:36.000000pt;}
.y14{bottom:42.560000pt;}
.y1{bottom:45.760000pt;}
.y13{bottom:62.560000pt;}
.y40{bottom:66.880000pt;}
.y3c{bottom:100.160000pt;}
.y119{bottom:103.680000pt;}
.yc2{bottom:114.880000pt;}
.yf8{bottom:115.200000pt;}
.y14d{bottom:116.000000pt;}
.y7f{bottom:118.880000pt;}
.y6b{bottom:119.200000pt;}
.y3b{bottom:122.080000pt;}
.y118{bottom:125.600000pt;}
.yc1{bottom:136.800000pt;}
.yf7{bottom:137.120000pt;}
.y12c{bottom:137.920000pt;}
.y7e{bottom:140.800000pt;}
.y6a{bottom:141.120000pt;}
.y3a{bottom:144.000000pt;}
.y117{bottom:147.520000pt;}
.yf3{bottom:151.040000pt;}
.yc0{bottom:158.720000pt;}
.y163{bottom:159.520000pt;}
.y12b{bottom:159.840000pt;}
.y69{bottom:162.720000pt;}
.y6d{bottom:163.040000pt;}
.y39{bottom:165.920000pt;}
.y116{bottom:169.440000pt;}
.yf5{bottom:173.600000pt;}
.ybf{bottom:180.640000pt;}
.y12a{bottom:181.760000pt;}
.y73{bottom:184.666667pt;}
.y68{bottom:184.986667pt;}
.y38{bottom:187.866667pt;}
.y115{bottom:191.386667pt;}
.yf0{bottom:196.200000pt;}
.ybe{bottom:202.586667pt;}
.y129{bottom:203.706667pt;}
.y67{bottom:206.586667pt;}
.y74{bottom:206.906667pt;}
.y37{bottom:209.786667pt;}
.y114{bottom:213.306667pt;}
.yf2{bottom:218.920000pt;}
.yb0{bottom:224.826667pt;}
.y128{bottom:225.786667pt;}
.y72{bottom:228.506667pt;}
.y66{bottom:228.826667pt;}
.y36{bottom:231.706667pt;}
.y113{bottom:235.226667pt;}
.yec{bottom:241.480000pt;}
.yaf{bottom:246.746667pt;}
.y127{bottom:247.706667pt;}
.y71{bottom:250.426667pt;}
.y65{bottom:250.746667pt;}
.y35{bottom:253.626667pt;}
.y112{bottom:257.146667pt;}
.yee{bottom:264.040000pt;}
.yae{bottom:268.666667pt;}
.y126{bottom:269.626667pt;}
.y70{bottom:272.346667pt;}
.y64{bottom:272.666667pt;}
.y34{bottom:275.546667pt;}
.y111{bottom:278.746667pt;}
.y11b{bottom:279.066667pt;}
.ye8{bottom:288.040000pt;}
.yad{bottom:290.266667pt;}
.y125{bottom:291.546667pt;}
.ybd{bottom:293.466667pt;}
.y63{bottom:294.586667pt;}
.y33{bottom:297.466667pt;}
.y110{bottom:300.666667pt;}
.y11a{bottom:300.986667pt;}
.y158{bottom:313.146667pt;}
.yac{bottom:313.466667pt;}
.ybc{bottom:315.386667pt;}
.y62{bottom:316.506667pt;}
.y32{bottom:319.386667pt;}
.y10f{bottom:322.906667pt;}
.y14c{bottom:335.066667pt;}
.yab{bottom:335.386667pt;}
.ybb{bottom:337.306667pt;}
.y61{bottom:338.426667pt;}
.y31{bottom:340.986667pt;}
.y3d{bottom:341.306667pt;}
.ye7{bottom:342.426667pt;}
.y10e{bottom:344.826667pt;}
.y14b{bottom:356.986667pt;}
.yaa{bottom:357.306667pt;}
.y30{bottom:358.266667pt;}
.yba{bottom:359.226667pt;}
.y60{bottom:360.346667pt;}
.ye6{bottom:364.346667pt;}
.y10d{bottom:366.746667pt;}
.ya9{bottom:379.066667pt;}
.y2f{bottom:379.226667pt;}
.y124{bottom:380.186667pt;}
.yb9{bottom:381.146667pt;}
.y5f{bottom:382.266667pt;}
.ye5{bottom:386.266667pt;}
.y10c{bottom:388.666667pt;}
.y2e{bottom:398.786667pt;}
.y162{bottom:400.866667pt;}
.y14a{bottom:401.186667pt;}
.ya8{bottom:401.986667pt;}
.y123{bottom:402.146667pt;}
.yb8{bottom:403.106667pt;}
.y5e{bottom:404.226667pt;}
.ye4{bottom:408.226667pt;}
.y10b{bottom:410.626667pt;}
.y2d{bottom:420.386667pt;}
.y161{bottom:422.786667pt;}
.y149{bottom:423.106667pt;}
.ya7{bottom:423.906667pt;}
.y122{bottom:424.226667pt;}
.yb7{bottom:425.186667pt;}
.y5d{bottom:426.306667pt;}
.ye0{bottom:430.146667pt;}
.y10a{bottom:432.546667pt;}
.y2c{bottom:439.906667pt;}
.y148{bottom:445.026667pt;}
.ya6{bottom:446.146667pt;}
.yb6{bottom:446.786667pt;}
.y121{bottom:447.106667pt;}
.y7d{bottom:447.906667pt;}
.y5c{bottom:448.226667pt;}
.ydf{bottom:452.066667pt;}
.y109{bottom:454.626667pt;}
.y168{bottom:455.746667pt;}
.y2b{bottom:459.266667pt;}
.y147{bottom:466.946667pt;}
.ya5{bottom:468.066667pt;}
.yb5{bottom:468.706667pt;}
.y120{bottom:469.026667pt;}
.y7c{bottom:469.826667pt;}
.y5b{bottom:470.146667pt;}
.y167{bottom:473.346667pt;}
.yde{bottom:473.986667pt;}
.y108{bottom:476.546667pt;}
.y2a{bottom:478.626667pt;}
.y146{bottom:488.866667pt;}
.y105{bottom:489.826667pt;}
.ya4{bottom:489.986667pt;}
.yb4{bottom:490.946667pt;}
.y166{bottom:491.426667pt;}
.y7b{bottom:491.746667pt;}
.y5a{bottom:492.066667pt;}
.ye3{bottom:495.586667pt;}
.ydd{bottom:495.906667pt;}
.y29{bottom:497.986667pt;}
.y145{bottom:510.786667pt;}
.ya3{bottom:511.906667pt;}
.y11f{bottom:512.706667pt;}
.yb3{bottom:512.866667pt;}
.y59{bottom:513.986667pt;}
.y28{bottom:517.346667pt;}
.ydc{bottom:517.826667pt;}
.y144{bottom:532.706667pt;}
.ya2{bottom:533.986667pt;}
.yb2{bottom:534.786667pt;}
.y7a{bottom:535.586667pt;}
.y58{bottom:535.906667pt;}
.y27{bottom:536.866667pt;}
.ye2{bottom:539.426667pt;}
.ydb{bottom:539.746667pt;}
.y102{bottom:541.506667pt;}
.y157{bottom:554.306667pt;}
.y143{bottom:554.626667pt;}
.y26{bottom:556.226667pt;}
.ya1{bottom:556.386667pt;}
.yb1{bottom:556.706667pt;}
.y57{bottom:557.826667pt;}
.ye1{bottom:561.346667pt;}
.yda{bottom:561.666667pt;}
.yc3{bottom:573.666667pt;}
.yc8{bottom:573.826667pt;}
.y25{bottom:575.586667pt;}
.y142{bottom:576.546667pt;}
.ya0{bottom:578.626667pt;}
.y165{bottom:579.426667pt;}
.y56{bottom:579.746667pt;}
.yd9{bottom:583.586667pt;}
.y24{bottom:594.946667pt;}
.yc5{bottom:596.066667pt;}
.y141{bottom:598.466667pt;}
.y9f{bottom:600.546667pt;}
.y6c{bottom:601.373333pt;}
.y55{bottom:601.693333pt;}
.yd8{bottom:605.533333pt;}
.y23{bottom:614.493333pt;}
.y140{bottom:620.413333pt;}
.y9e{bottom:622.493333pt;}
.y54{bottom:623.613333pt;}
.yd7{bottom:627.293333pt;}
.y22{bottom:633.853333pt;}
.y13f{bottom:642.013333pt;}
.y156{bottom:642.333333pt;}
.y9d{bottom:644.573333pt;}
.y53{bottom:645.533333pt;}
.yd6{bottom:649.533333pt;}
.y21{bottom:653.213333pt;}
.y13e{bottom:664.253333pt;}
.y9c{bottom:666.813333pt;}
.y52{bottom:667.453333pt;}
.yd5{bottom:671.453333pt;}
.y20{bottom:672.573333pt;}
.y155{bottom:685.853333pt;}
.y13d{bottom:686.173333pt;}
.y8d{bottom:687.613333pt;}
.y9b{bottom:688.733333pt;}
.y6f{bottom:689.053333pt;}
.y51{bottom:689.373333pt;}
.y1f{bottom:691.933333pt;}
.yd4{bottom:693.373333pt;}
.y154{bottom:707.773333pt;}
.y13c{bottom:708.093333pt;}
.y160{bottom:708.253333pt;}
.y8c{bottom:709.533333pt;}
.y9a{bottom:710.653333pt;}
.y6e{bottom:710.973333pt;}
.y50{bottom:711.293333pt;}
.y1e{bottom:711.453333pt;}
.yd3{bottom:715.293333pt;}
.y13b{bottom:730.013333pt;}
.y1d{bottom:730.813333pt;}
.y15f{bottom:731.133333pt;}
.y8b{bottom:731.613333pt;}
.y99{bottom:732.573333pt;}
.y4f{bottom:733.213333pt;}
.yd2{bottom:737.213333pt;}
.y1c{bottom:750.173333pt;}
.y13a{bottom:751.933333pt;}
.y15e{bottom:753.053333pt;}
.y8a{bottom:754.493333pt;}
.y164{bottom:754.813333pt;}
.y4e{bottom:755.133333pt;}
.yd1{bottom:759.133333pt;}
.y1b{bottom:769.533333pt;}
.y139{bottom:773.853333pt;}
.y15d{bottom:774.973333pt;}
.y89{bottom:776.413333pt;}
.y11e{bottom:776.733333pt;}
.y4d{bottom:777.053333pt;}
.yd0{bottom:781.053333pt;}
.y100{bottom:783.773333pt;}
.y1a{bottom:788.733333pt;}
.y138{bottom:795.773333pt;}
.y15c{bottom:797.853333pt;}
.y98{bottom:798.013333pt;}
.y88{bottom:798.493333pt;}
.y77{bottom:798.653333pt;}
.y4c{bottom:798.973333pt;}
.ycf{bottom:802.973333pt;}
.y19{bottom:805.853333pt;}
.y17{bottom:813.573333pt;}
.y153{bottom:817.733333pt;}
.y137{bottom:817.893333pt;}
.y15b{bottom:819.813333pt;}
.y12{bottom:819.973333pt;}
.y97{bottom:820.293333pt;}
.y76{bottom:820.613333pt;}
.y4b{bottom:820.933333pt;}
.y87{bottom:821.413333pt;}
.y16{bottom:823.463420pt;}
.yce{bottom:824.933333pt;}
.y152{bottom:839.653333pt;}
.y136{bottom:840.773333pt;}
.y15a{bottom:841.893333pt;}
.y96{bottom:842.213333pt;}
.y4a{bottom:842.853333pt;}
.y86{bottom:843.333333pt;}
.ycd{bottom:846.853333pt;}
.y151{bottom:861.573333pt;}
.y135{bottom:862.693333pt;}
.y95{bottom:864.133333pt;}
.y49{bottom:864.773333pt;}
.y85{bottom:866.213333pt;}
.ycc{bottom:868.773333pt;}
.y150{bottom:883.653333pt;}
.y134{bottom:884.613333pt;}
.y94{bottom:886.053333pt;}
.y48{bottom:886.693333pt;}
.y84{bottom:888.133333pt;}
.ycb{bottom:890.693333pt;}
.yfe{bottom:904.613333pt;}
.y10{bottom:905.413333pt;}
.y133{bottom:906.533333pt;}
.y93{bottom:907.973333pt;}
.y11d{bottom:908.293333pt;}
.y47{bottom:908.613333pt;}
.y83{bottom:910.213333pt;}
.yd{bottom:911.173333pt;}
.y14f{bottom:928.453333pt;}
.y132{bottom:928.613333pt;}
.y92{bottom:929.893333pt;}
.y11c{bottom:930.213333pt;}
.y46{bottom:930.533333pt;}
.y82{bottom:933.093333pt;}
.y14e{bottom:950.533333pt;}
.y131{bottom:951.493333pt;}
.y91{bottom:951.813333pt;}
.y45{bottom:952.453333pt;}
.y81{bottom:954.693333pt;}
.yb{bottom:956.933333pt;}
.yf9{bottom:961.413333pt;}
.y9{bottom:961.733333pt;}
.y80{bottom:964.613333pt;}
.y130{bottom:973.413333pt;}
.y90{bottom:973.733333pt;}
.y159{bottom:974.053333pt;}
.y44{bottom:974.373333pt;}
.y2{bottom:983.333333pt;}
.y12f{bottom:995.333333pt;}
.y8f{bottom:995.653333pt;}
.y79{bottom:995.973333pt;}
.y43{bottom:996.293333pt;}
.y7{bottom:1003.173333pt;}
.y12e{bottom:1017.253333pt;}
.y8e{bottom:1017.573333pt;}
.y78{bottom:1017.893333pt;}
.y42{bottom:1018.240000pt;}
.y4{bottom:1028.320000pt;}
.y12d{bottom:1039.200000pt;}
.y75{bottom:1039.840000pt;}
.y41{bottom:1040.160000pt;}
.y3f{bottom:1055.360000pt;}
.y3e{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h16{height:6.386667pt;}
.hd{height:11.843750pt;}
.h17{height:15.633750pt;}
.h11{height:16.896000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h2a{height:21.906667pt;}
.h2e{height:21.920000pt;}
.h2d{height:21.952000pt;}
.h24{height:22.400000pt;}
.h7{height:25.146667pt;}
.h30{height:26.400000pt;}
.h1c{height:27.093750pt;}
.h31{height:27.840000pt;}
.h23{height:29.626667pt;}
.h18{height:32.765625pt;}
.h2f{height:37.600000pt;}
.h28{height:43.826667pt;}
.h29{height:44.466667pt;}
.h2c{height:44.512000pt;}
.h2b{height:44.626667pt;}
.he{height:45.746667pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.h34{height:51.666667pt;}
.h22{height:52.026667pt;}
.h1d{height:52.108438pt;}
.h25{height:52.506667pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h15{height:56.437500pt;}
.h19{height:57.758750pt;}
.h1a{height:57.787500pt;}
.h1b{height:59.340000pt;}
.h14{height:60.270000pt;}
.h35{height:60.300000pt;}
.h20{height:60.519362pt;}
.h6{height:63.399375pt;}
.h13{height:64.500000pt;}
.h21{height:65.781915pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h12{height:85.426667pt;}
.h1e{height:89.678750pt;}
.h3{height:92.026667pt;}
.h1f{height:97.438750pt;}
.h26{height:132.471098pt;}
.h27{height:134.843750pt;}
.h33{height:242.266667pt;}
.h32{height:269.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:24.000000pt;}
.w11{width:64.640000pt;}
.wf{width:78.706667pt;}
.w12{width:84.352000pt;}
.w13{width:87.680000pt;}
.wd{width:92.946667pt;}
.we{width:92.978667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.wc{width:96.672000pt;}
.w14{width:101.152000pt;}
.w15{width:110.400000pt;}
.w10{width:147.866667pt;}
.w8{width:169.946667pt;}
.wb{width:175.377333pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w16{width:306.457333pt;}
.w17{width:309.813333pt;}
.w9{width:330.786667pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w18{width:616.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:7.190667pt;}
.x5{left:9.746667pt;}
.x3e{left:10.880000pt;}
.x29{left:12.000000pt;}
.x3a{left:13.920000pt;}
.x39{left:16.000000pt;}
.x3c{left:17.440000pt;}
.x10{left:18.386667pt;}
.x2e{left:19.825333pt;}
.x3f{left:20.800000pt;}
.x34{left:23.360000pt;}
.x41{left:24.480000pt;}
.xb{left:30.386667pt;}
.x13{left:31.990667pt;}
.x26{left:34.080000pt;}
.x33{left:37.105333pt;}
.x35{left:39.505333pt;}
.x40{left:41.440000pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x36{left:51.514667pt;}
.x2{left:54.081333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.xd{left:85.266667pt;}
.x42{left:88.841333pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x20{left:110.112000pt;}
.x16{left:116.145333pt;}
.x23{left:120.032000pt;}
.x2b{left:121.952000pt;}
.x46{left:124.512000pt;}
.x2d{left:127.561333pt;}
.x1e{left:130.112000pt;}
.x2c{left:137.306667pt;}
.x1a{left:144.026667pt;}
.x25{left:146.586667pt;}
.x4{left:150.120000pt;}
.x21{left:158.266667pt;}
.x17{left:179.225333pt;}
.x1d{left:182.106667pt;}
.x6{left:185.786667pt;}
.x2a{left:200.186667pt;}
.x22{left:204.826667pt;}
.x15{left:235.705333pt;}
.x37{left:247.746667pt;}
.x14{left:258.745333pt;}
.x18{left:288.858236pt;}
.x28{left:294.466667pt;}
.x12{left:298.292000pt;}
.x2f{left:305.026667pt;}
.x43{left:307.866667pt;}
.x44{left:309.146667pt;}
.x38{left:312.386667pt;}
.x27{left:316.546667pt;}
.x1f{left:362.306667pt;}
.xa{left:396.106667pt;}
.x30{left:401.706667pt;}
.x1b{left:420.893333pt;}
.x24{left:444.893333pt;}
.x45{left:449.373333pt;}
.x1c{left:468.893333pt;}
.x3b{left:484.413333pt;}
.x31{left:494.666667pt;}
.x3d{left:585.573333pt;}
.x32{left:587.653333pt;}
.x7{left:642.213333pt;}
.x1{left:665.733333pt;}
}




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