
    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_b7bcd2ecee11df816f0954ca.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.010254;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_8b741df64f6afc4a36fd5b10.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.994141;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_4993da7242ea729fca4750cf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.994141;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_689f0dcc571f2b5c898e9e30.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.009766;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_08267052ec48fc935c73641a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.329102;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_a371f56873c7e006d87be6f0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.305176;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_b2a183705a0cea1202cd6dcf.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ba451066ce4c91a854b0c8ca.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.010254;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_eaff4a8e62d2e0c5bdf5c1a5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.385742;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_868604ca7ce2a2a1888f413a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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_c664886795baa287d010ebdd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_2e367222abaf8f17c255ccdc.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_f00bf61325d9ca187199f17e.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;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_9b8d8b0679f0b71942fba427.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-12.240000px;}
.v2{vertical-align:-5.760000px;}
.v4{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:3.600000px;}
.v3{vertical-align:5.760000px;}
.v6{vertical-align:12.240000px;}
.v1{vertical-align:15.120000px;}
.ls22{letter-spacing:-19.800000px;}
.ls4b{letter-spacing:-14.166862px;}
.ls2e{letter-spacing:-13.440000px;}
.ls4d{letter-spacing:-3.636000px;}
.ls2a{letter-spacing:-2.952000px;}
.ls5e{letter-spacing:-1.296000px;}
.ls2c{letter-spacing:-1.260000px;}
.ls5d{letter-spacing:-1.062000px;}
.ls5c{letter-spacing:-0.918000px;}
.ls3f{letter-spacing:-0.792000px;}
.ls2b{letter-spacing:-0.720000px;}
.ls4a{letter-spacing:-0.702000px;}
.ls21{letter-spacing:-0.648000px;}
.ls5f{letter-spacing:-0.630000px;}
.ls29{letter-spacing:-0.612000px;}
.ls27{letter-spacing:-0.540000px;}
.ls5b{letter-spacing:-0.486000px;}
.ls28{letter-spacing:-0.468000px;}
.ls1c{letter-spacing:-0.433200px;}
.ls1e{letter-spacing:-0.360000px;}
.ls30{letter-spacing:-0.342000px;}
.ls24{letter-spacing:-0.295200px;}
.ls64{letter-spacing:-0.288000px;}
.ls74{letter-spacing:-0.270000px;}
.ls4c{letter-spacing:-0.198000px;}
.ls25{letter-spacing:-0.180000px;}
.ls32{letter-spacing:-0.162000px;}
.ls2f{letter-spacing:-0.126000px;}
.ls2d{letter-spacing:-0.072000px;}
.ls1d{letter-spacing:-0.045360px;}
.ls3d{letter-spacing:-0.036000px;}
.ls1a{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.018000px;}
.ls31{letter-spacing:0.072000px;}
.ls67{letter-spacing:0.084000px;}
.lsb{letter-spacing:0.090000px;}
.ls0{letter-spacing:0.108000px;}
.ls42{letter-spacing:0.126000px;}
.ls3e{letter-spacing:0.144000px;}
.ls73{letter-spacing:0.150000px;}
.ls52{letter-spacing:0.156000px;}
.ls1{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.192000px;}
.ls4e{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.228000px;}
.ls16{letter-spacing:0.234000px;}
.ls2{letter-spacing:0.252000px;}
.ls20{letter-spacing:0.259800px;}
.ls47{letter-spacing:0.270000px;}
.ls1b{letter-spacing:0.286800px;}
.ls19{letter-spacing:0.288000px;}
.ls60{letter-spacing:0.300000px;}
.ls68{letter-spacing:0.342000px;}
.ls37{letter-spacing:0.354000px;}
.ls1f{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.364200px;}
.ls35{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.804000px;}
.ls9{letter-spacing:0.828000px;}
.lsa{letter-spacing:0.900000px;}
.ls43{letter-spacing:0.972000px;}
.ls7{letter-spacing:1.548000px;}
.lsf{letter-spacing:1.620000px;}
.ls8{letter-spacing:1.668000px;}
.ls46{letter-spacing:1.728000px;}
.ls10{letter-spacing:1.800000px;}
.ls5{letter-spacing:2.268000px;}
.lsd{letter-spacing:2.340000px;}
.ls51{letter-spacing:2.388000px;}
.ls6{letter-spacing:2.448000px;}
.ls40{letter-spacing:2.844000px;}
.ls36{letter-spacing:2.880000px;}
.ls4{letter-spacing:2.988000px;}
.lsc{letter-spacing:3.060000px;}
.ls59{letter-spacing:3.180000px;}
.lse{letter-spacing:3.240000px;}
.ls3{letter-spacing:3.600000px;}
.ls33{letter-spacing:3.708000px;}
.ls3a{letter-spacing:4.428000px;}
.ls58{letter-spacing:4.500000px;}
.ls4f{letter-spacing:4.548000px;}
.ls38{letter-spacing:5.148000px;}
.ls57{letter-spacing:5.220000px;}
.ls63{letter-spacing:5.268000px;}
.ls39{letter-spacing:5.328000px;}
.ls3c{letter-spacing:5.868000px;}
.ls55{letter-spacing:5.940000px;}
.ls56{letter-spacing:6.060000px;}
.ls3b{letter-spacing:6.588000px;}
.ls61{letter-spacing:7.308000px;}
.ls5a{letter-spacing:7.380000px;}
.ls62{letter-spacing:7.428000px;}
.ls49{letter-spacing:8.028000px;}
.ls48{letter-spacing:8.748000px;}
.ls66{letter-spacing:10.188000px;}
.ls12{letter-spacing:10.260000px;}
.ls65{letter-spacing:10.908000px;}
.ls11{letter-spacing:10.980000px;}
.ls13{letter-spacing:11.100000px;}
.ls14{letter-spacing:11.160000px;}
.ls45{letter-spacing:11.628000px;}
.ls50{letter-spacing:11.748000px;}
.ls44{letter-spacing:12.348000px;}
.ls6e{letter-spacing:17.388000px;}
.ls71{letter-spacing:20.268000px;}
.ls72{letter-spacing:20.988000px;}
.ls53{letter-spacing:21.060000px;}
.ls54{letter-spacing:21.780000px;}
.ls6b{letter-spacing:32.508000px;}
.ls6c{letter-spacing:33.204000px;}
.ls6f{letter-spacing:36.084000px;}
.ls6a{letter-spacing:48.324000px;}
.ls6d{letter-spacing:49.044000px;}
.ls70{letter-spacing:51.924000px;}
.ls69{letter-spacing:63.444000px;}
.ls34{letter-spacing:64.002720px;}
.ls41{letter-spacing:68.484000px;}
.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;}
}
.ws27{word-spacing:-59.760000px;}
.ws30{word-spacing:-54.000000px;}
.ws7{word-spacing:-22.350840px;}
.ws9{word-spacing:-22.178640px;}
.ws5{word-spacing:-21.986640px;}
.ws8{word-spacing:-21.691440px;}
.wsa{word-spacing:-15.597360px;}
.ws31{word-spacing:-14.856232px;}
.ws44{word-spacing:-14.814000px;}
.ws47{word-spacing:-14.436000px;}
.wsf{word-spacing:-14.346000px;}
.ws11{word-spacing:-14.328000px;}
.ws13{word-spacing:-14.274000px;}
.ws40{word-spacing:-14.238000px;}
.ws14{word-spacing:-14.202000px;}
.ws29{word-spacing:-14.184000px;}
.ws20{word-spacing:-14.166000px;}
.ws33{word-spacing:-14.112000px;}
.wsc{word-spacing:-14.094000px;}
.ws28{word-spacing:-14.058000px;}
.ws16{word-spacing:-14.022000px;}
.ws22{word-spacing:-13.932000px;}
.ws32{word-spacing:-13.896000px;}
.ws4a{word-spacing:-13.860000px;}
.ws1a{word-spacing:-13.752000px;}
.ws3b{word-spacing:-13.716000px;}
.wse{word-spacing:-13.626000px;}
.ws39{word-spacing:-13.608000px;}
.wsd{word-spacing:-13.554000px;}
.ws38{word-spacing:-13.518000px;}
.ws4{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.482000px;}
.ws42{word-spacing:-13.464000px;}
.ws1b{word-spacing:-13.446000px;}
.ws15{word-spacing:-13.374000px;}
.ws2c{word-spacing:-13.302000px;}
.ws49{word-spacing:-13.230000px;}
.ws43{word-spacing:-13.212000px;}
.ws3d{word-spacing:-13.176000px;}
.ws26{word-spacing:-13.140000px;}
.ws3e{word-spacing:-13.032000px;}
.ws3{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws0{word-spacing:-12.014640px;}
.ws1{word-spacing:-11.700000px;}
.ws12{word-spacing:-11.142000px;}
.ws34{word-spacing:-10.458000px;}
.wsb{word-spacing:-9.720000px;}
.ws3c{word-spacing:-9.000000px;}
.ws41{word-spacing:-2.340000px;}
.ws37{word-spacing:-1.890000px;}
.ws3f{word-spacing:-1.872000px;}
.ws3a{word-spacing:-1.188000px;}
.ws2b{word-spacing:-1.152000px;}
.ws1c{word-spacing:-1.116000px;}
.ws17{word-spacing:-0.486000px;}
.ws36{word-spacing:-0.432000px;}
.ws21{word-spacing:-0.396000px;}
.ws48{word-spacing:-0.342000px;}
.ws2d{word-spacing:-0.324000px;}
.ws45{word-spacing:-0.312000px;}
.ws19{word-spacing:-0.306000px;}
.ws2f{word-spacing:-0.276000px;}
.ws23{word-spacing:-0.252000px;}
.ws1d{word-spacing:-0.180000px;}
.ws24{word-spacing:0.000000px;}
.ws46{word-spacing:0.270000px;}
.ws1e{word-spacing:25.758000px;}
.ws1f{word-spacing:26.454000px;}
.ws18{word-spacing:26.478000px;}
.ws2a{word-spacing:26.598000px;}
.ws2e{word-spacing:26.658000px;}
.ws25{word-spacing:27.198000px;}
.ws35{word-spacing:27.318000px;}
.ws6{word-spacing:37.777680px;}
._b{margin-left:-14.858535px;}
._f{margin-left:-13.470000px;}
._5{margin-left:-11.916000px;}
._12{margin-left:-10.674000px;}
._14{margin-left:-7.575586px;}
._7{margin-left:-5.904000px;}
._d{margin-left:-4.146000px;}
._9{margin-left:-2.808074px;}
._0{margin-left:-1.296000px;}
._2{width:1.080000px;}
._a{width:2.997809px;}
._10{width:4.194000px;}
._e{width:5.718000px;}
._8{width:7.164000px;}
._15{width:8.204400px;}
._17{width:9.518400px;}
._13{width:10.944000px;}
._6{width:12.204000px;}
._c{width:14.342400px;}
._16{width:20.774265px;}
._19{width:45.000000px;}
._18{width:63.000000px;}
._1{width:101.712000px;}
._11{width:211.476000px;}
._3{width:231.542880px;}
._4{width:1036.440000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:18.000000px;}
.fs4{font-size:23.760000px;}
.fsa{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs6{font-size:37.946952px;}
.fs9{font-size:38.880000px;}
.fsb{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fsc{font-size:56.920429px;}
.fs3{font-size:59.760000px;}
.fsd{font-size:66.240000px;}
.fs8{font-size:77.760000px;}
.fs7{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ya3{bottom:6.840000px;}
.yd{bottom:10.620000px;}
.yb7{bottom:10.800000px;}
.y9b{bottom:12.240000px;}
.ya7{bottom:18.180000px;}
.yc{bottom:22.680000px;}
.yb0{bottom:26.460000px;}
.yc0{bottom:29.514000px;}
.yaa{bottom:29.520000px;}
.ya2{bottom:29.550000px;}
.yb6{bottom:33.480000px;}
.yb{bottom:34.740000px;}
.yc2{bottom:40.680000px;}
.ya6{bottom:40.860000px;}
.yaf{bottom:42.840000px;}
.y9e{bottom:43.770000px;}
.ybc{bottom:43.914000px;}
.yb2{bottom:45.720000px;}
.ybd{bottom:52.194000px;}
.ya9{bottom:52.200000px;}
.y9f{bottom:52.230000px;}
.yb5{bottom:56.160000px;}
.y9d{bottom:60.510000px;}
.ybb{bottom:60.654000px;}
.yb1{bottom:62.460000px;}
.yae{bottom:62.640000px;}
.ya5{bottom:63.540000px;}
.y9{bottom:68.616000px;}
.ybf{bottom:74.874000px;}
.ya8{bottom:74.880000px;}
.ya1{bottom:74.910000px;}
.y8{bottom:78.336000px;}
.yb4{bottom:78.840000px;}
.yad{bottom:85.320000px;}
.y7{bottom:96.336000px;}
.ybe{bottom:97.554000px;}
.ya0{bottom:97.590000px;}
.yb9{bottom:97.605000px;}
.yb3{bottom:101.520000px;}
.yac{bottom:104.760000px;}
.yba{bottom:135.576000px;}
.y102{bottom:138.456000px;}
.y3c{bottom:140.436000px;}
.yee{bottom:143.856000px;}
.y3b{bottom:153.030000px;}
.y96{bottom:153.930000px;}
.y6a{bottom:155.190000px;}
.y101{bottom:161.130000px;}
.yed{bottom:166.530000px;}
.y3a{bottom:175.710000px;}
.y95{bottom:176.610000px;}
.y69{bottom:177.870000px;}
.y100{bottom:183.810000px;}
.yec{bottom:189.210000px;}
.y39{bottom:198.390000px;}
.y94{bottom:199.290000px;}
.y67{bottom:200.550000px;}
.y68{bottom:203.610000px;}
.yff{bottom:206.490000px;}
.yeb{bottom:211.890000px;}
.y38{bottom:221.070000px;}
.y93{bottom:221.790000px;}
.y66{bottom:223.230000px;}
.yfe{bottom:229.170000px;}
.yea{bottom:234.570000px;}
.y140{bottom:238.890000px;}
.y37{bottom:243.750000px;}
.y92{bottom:244.470000px;}
.y65{bottom:245.910000px;}
.yb8{bottom:249.690000px;}
.yfd{bottom:251.850000px;}
.y13f{bottom:257.070000px;}
.ye9{bottom:257.250000px;}
.y36{bottom:266.430000px;}
.y91{bottom:267.150000px;}
.y64{bottom:268.590000px;}
.y13e{bottom:273.990000px;}
.yfc{bottom:274.530000px;}
.ye8{bottom:279.930000px;}
.y35{bottom:289.110000px;}
.y90{bottom:289.830000px;}
.y13d{bottom:290.730000px;}
.y63{bottom:291.270000px;}
.y13c{bottom:293.790000px;}
.yfb{bottom:297.210000px;}
.ye7{bottom:302.610000px;}
.y13b{bottom:307.470000px;}
.y13a{bottom:310.530000px;}
.y34{bottom:311.790000px;}
.y8f{bottom:312.510000px;}
.y62{bottom:313.950000px;}
.yfa{bottom:319.890000px;}
.y139{bottom:324.210000px;}
.ye6{bottom:325.290000px;}
.y138{bottom:327.270000px;}
.y33{bottom:334.515000px;}
.y8e{bottom:335.235000px;}
.y61{bottom:336.675000px;}
.y137{bottom:340.995000px;}
.yf9{bottom:342.615000px;}
.y136{bottom:344.055000px;}
.ye5{bottom:348.015000px;}
.y32{bottom:357.195000px;}
.y8d{bottom:357.915000px;}
.y60{bottom:359.355000px;}
.y135{bottom:360.975000px;}
.yab{bottom:363.855000px;}
.yf8{bottom:365.295000px;}
.ye4{bottom:370.695000px;}
.y31{bottom:374.655000px;}
.y134{bottom:377.715000px;}
.y8c{bottom:380.595000px;}
.y5f{bottom:382.035000px;}
.y30{bottom:387.255000px;}
.yf7{bottom:387.975000px;}
.y133{bottom:391.395000px;}
.ye3{bottom:393.375000px;}
.y132{bottom:394.455000px;}
.y8b{bottom:403.275000px;}
.y5e{bottom:404.715000px;}
.y131{bottom:408.135000px;}
.y2f{bottom:409.935000px;}
.yf6{bottom:410.475000px;}
.y130{bottom:411.195000px;}
.ye2{bottom:415.875000px;}
.y12f{bottom:424.875000px;}
.y8a{bottom:425.955000px;}
.y5d{bottom:427.395000px;}
.y12e{bottom:427.935000px;}
.y2e{bottom:432.615000px;}
.yf5{bottom:433.155000px;}
.ye1{bottom:438.555000px;}
.y12d{bottom:441.795000px;}
.y12c{bottom:444.855000px;}
.y89{bottom:448.635000px;}
.y5c{bottom:450.075000px;}
.y2d{bottom:455.295000px;}
.yf4{bottom:455.835000px;}
.y12b{bottom:458.535000px;}
.ye0{bottom:461.235000px;}
.y12a{bottom:461.595000px;}
.y88{bottom:471.315000px;}
.y5a{bottom:472.755000px;}
.y129{bottom:475.275000px;}
.y5b{bottom:475.815000px;}
.y2c{bottom:477.975000px;}
.y128{bottom:478.335000px;}
.yf3{bottom:478.515000px;}
.ya4{bottom:481.935000px;}
.ydf{bottom:483.915000px;}
.y127{bottom:492.015000px;}
.y87{bottom:493.995000px;}
.y2b{bottom:495.075000px;}
.y59{bottom:495.435000px;}
.yf2{bottom:501.195000px;}
.y2a{bottom:502.635000px;}
.yde{bottom:506.595000px;}
.y126{bottom:508.755000px;}
.y29{bottom:514.155000px;}
.y86{bottom:516.675000px;}
.y58{bottom:518.115000px;}
.yf1{bottom:523.875000px;}
.y125{bottom:525.675000px;}
.y28{bottom:526.755000px;}
.ydd{bottom:529.275000px;}
.y85{bottom:539.355000px;}
.y57{bottom:540.795000px;}
.y124{bottom:542.415000px;}
.y27{bottom:544.575000px;}
.y123{bottom:545.475000px;}
.yf0{bottom:546.555000px;}
.ydc{bottom:551.955000px;}
.y26{bottom:558.435000px;}
.y122{bottom:559.155000px;}
.y84{bottom:562.035000px;}
.y56{bottom:563.475000px;}
.yef{bottom:566.355000px;}
.y9c{bottom:573.375000px;}
.yda{bottom:574.635000px;}
.y121{bottom:575.895000px;}
.ydb{bottom:577.695000px;}
.y83{bottom:579.315000px;}
.y25{bottom:581.115000px;}
.y55{bottom:586.155000px;}
.y82{bottom:591.915000px;}
.y120{bottom:592.635000px;}
.yd9{bottom:594.255000px;}
.y11f{bottom:595.725000px;}
.y24{bottom:603.825000px;}
.y54{bottom:608.685000px;}
.y11e{bottom:612.465000px;}
.yd8{bottom:613.725000px;}
.y81{bottom:614.625000px;}
.y11d{bottom:615.525000px;}
.y23{bottom:626.505000px;}
.y53{bottom:631.365000px;}
.y11c{bottom:635.145000px;}
.yd7{bottom:636.405000px;}
.y80{bottom:637.305000px;}
.y11b{bottom:638.205000px;}
.y22{bottom:649.185000px;}
.y52{bottom:654.045000px;}
.y11a{bottom:657.825000px;}
.yd6{bottom:659.085000px;}
.y7e{bottom:659.985000px;}
.y119{bottom:660.885000px;}
.y7f{bottom:663.045000px;}
.y21{bottom:671.865000px;}
.y51{bottom:676.725000px;}
.y118{bottom:680.505000px;}
.yd4{bottom:681.765000px;}
.y7d{bottom:682.665000px;}
.y117{bottom:683.565000px;}
.yd5{bottom:684.825000px;}
.y9a{bottom:687.525000px;}
.y20{bottom:694.545000px;}
.y50{bottom:699.405000px;}
.y141{bottom:701.025000px;}
.yd3{bottom:704.445000px;}
.y7c{bottom:705.345000px;}
.y1f{bottom:717.225000px;}
.y116{bottom:720.285000px;}
.y4e{bottom:722.085000px;}
.y4f{bottom:725.145000px;}
.yd2{bottom:727.125000px;}
.y7b{bottom:728.025000px;}
.y99{bottom:728.565000px;}
.y115{bottom:737.205000px;}
.y1e{bottom:739.905000px;}
.y4d{bottom:744.765000px;}
.yd1{bottom:749.805000px;}
.y7a{bottom:750.705000px;}
.y98{bottom:751.245000px;}
.y114{bottom:757.005000px;}
.y1d{bottom:762.585000px;}
.y4c{bottom:767.445000px;}
.y97{bottom:770.685000px;}
.ycf{bottom:772.485000px;}
.y78{bottom:773.385000px;}
.yd0{bottom:775.545000px;}
.y79{bottom:776.445000px;}
.y113{bottom:779.505000px;}
.y1c{bottom:785.265000px;}
.y4b{bottom:790.125000px;}
.yce{bottom:795.165000px;}
.y77{bottom:796.065000px;}
.y112{bottom:799.305000px;}
.y1b{bottom:802.725000px;}
.y1a{bottom:812.625000px;}
.y4a{bottom:812.805000px;}
.y111{bottom:816.045000px;}
.ycd{bottom:817.845000px;}
.y76{bottom:818.745000px;}
.y19{bottom:830.265000px;}
.y110{bottom:832.785000px;}
.y49{bottom:835.485000px;}
.ycc{bottom:840.345000px;}
.y75{bottom:841.425000px;}
.y18{bottom:845.205000px;}
.y10f{bottom:849.525000px;}
.y48{bottom:858.165000px;}
.y17{bottom:860.685000px;}
.yca{bottom:863.070000px;}
.y74{bottom:864.150000px;}
.ycb{bottom:866.130000px;}
.y10e{bottom:866.310000px;}
.y47{bottom:880.890000px;}
.y16{bottom:881.970000px;}
.y10d{bottom:883.230000px;}
.yc9{bottom:885.750000px;}
.y73{bottom:886.830000px;}
.y10c{bottom:899.970000px;}
.y46{bottom:903.570000px;}
.y15{bottom:904.650000px;}
.yc8{bottom:908.430000px;}
.y72{bottom:909.510000px;}
.y10b{bottom:916.710000px;}
.y45{bottom:926.250000px;}
.y14{bottom:928.050000px;}
.yc7{bottom:931.110000px;}
.y71{bottom:932.190000px;}
.y10a{bottom:933.450000px;}
.y44{bottom:948.930000px;}
.y13{bottom:949.830000px;}
.y109{bottom:950.190000px;}
.yc5{bottom:953.790000px;}
.y70{bottom:954.870000px;}
.yc6{bottom:956.850000px;}
.y108{bottom:967.110000px;}
.y42{bottom:971.610000px;}
.y12{bottom:974.490000px;}
.y43{bottom:974.670000px;}
.yc4{bottom:976.470000px;}
.y6f{bottom:977.550000px;}
.y107{bottom:986.910000px;}
.y41{bottom:994.290000px;}
.yc3{bottom:996.090000px;}
.y6d{bottom:1000.230000px;}
.y6e{bottom:1003.290000px;}
.yc1{bottom:1009.410000px;}
.y11{bottom:1009.590000px;}
.y40{bottom:1016.970000px;}
.y6c{bottom:1022.910000px;}
.y106{bottom:1032.270000px;}
.y3f{bottom:1039.650000px;}
.y6b{bottom:1042.530000px;}
.y10{bottom:1044.870000px;}
.y105{bottom:1054.950000px;}
.y3e{bottom:1062.330000px;}
.yf{bottom:1072.950000px;}
.y104{bottom:1077.630000px;}
.y3d{bottom:1085.010000px;}
.ye{bottom:1087.890000px;}
.y103{bottom:1095.090000px;}
.y6{bottom:1112.910000px;}
.y5{bottom:1125.330000px;}
.y4{bottom:1133.640000px;}
.ya{bottom:1146.240000px;}
.y3{bottom:1150.380000px;}
.y2{bottom:1163.520000px;}
.y1{bottom:1195.920000px;}
.h3{height:13.104492px;}
.h11{height:17.297930px;}
.h14{height:17.321133px;}
.h12{height:22.045078px;}
.h7{height:23.632383px;}
.hb{height:26.121094px;}
.h1f{height:26.208984px;}
.h15{height:26.244141px;}
.h13{height:30.402422px;}
.h1a{height:33.480000px;}
.h10{height:35.120039px;}
.h4{height:35.167148px;}
.h9{height:38.847656px;}
.h2{height:39.313477px;}
.h18{height:39.366211px;}
.ha{height:39.836889px;}
.h6{height:43.506914px;}
.hd{height:43.565273px;}
.h8{height:44.280000px;}
.h5{height:47.980898px;}
.hf{height:55.081055px;}
.h17{height:55.503491px;}
.h19{height:58.059949px;}
.he{height:60.956367px;}
.h16{height:61.423863px;}
.h20{height:65.884219px;}
.hc{height:85.926445px;}
.h1c{height:90.720000px;}
.h1e{height:113.400000px;}
.h1b{height:113.436000px;}
.h1d{height:117.360000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:69.840000px;}
.w5{width:153.570000px;}
.w3{width:309.135000px;}
.w7{width:448.845000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x32{left:7.560000px;}
.x2f{left:10.080000px;}
.x33{left:14.760000px;}
.x31{left:21.420000px;}
.x2d{left:26.820000px;}
.x34{left:34.920000px;}
.x2b{left:39.780000px;}
.x30{left:51.294000px;}
.x8{left:92.925000px;}
.x1{left:108.035987px;}
.x4a{left:112.535987px;}
.x4b{left:117.035987px;}
.x18{left:135.035987px;}
.x13{left:136.655987px;}
.x15{left:154.829987px;}
.x4{left:160.049987px;}
.x19{left:162.029987px;}
.x9{left:164.745000px;}
.x2e{left:167.430000px;}
.x1b{left:170.669973px;}
.x16{left:174.089973px;}
.x1c{left:175.169987px;}
.x17{left:178.589987px;}
.x3d{left:180.569973px;}
.x1a{left:189.929973px;}
.xa{left:194.625000px;}
.x5{left:200.549987px;}
.x10{left:224.129987px;}
.x1f{left:240.869987px;}
.xb{left:243.225000px;}
.xc{left:252.435000px;}
.x2c{left:263.235000px;}
.x20{left:286.454987px;}
.x14{left:288.614987px;}
.x21{left:293.294987px;}
.xd{left:298.335000px;}
.xe{left:313.634987px;}
.x3b{left:320.654973px;}
.x4d{left:324.074987px;}
.x3c{left:329.654987px;}
.x29{left:334.334973px;}
.x22{left:336.134987px;}
.x2a{left:338.834987px;}
.x23{left:342.794987px;}
.x2{left:353.234987px;}
.x12{left:359.894987px;}
.xf{left:364.034987px;}
.x1d{left:380.594973px;}
.x1e{left:385.094987px;}
.x24{left:408.344987px;}
.x3e{left:409.604987px;}
.x25{left:415.184987px;}
.x6{left:424.724987px;}
.x4c{left:427.244987px;}
.x26{left:429.584987px;}
.x11{left:432.104987px;}
.x27{left:436.424987px;}
.x3{left:446.504987px;}
.x3f{left:456.764987px;}
.x7{left:476.385000px;}
.x28{left:481.064987px;}
.x40{left:485.024987px;}
.x35{left:493.664973px;}
.x36{left:502.664987px;}
.x41{left:530.744987px;}
.x42{left:534.524987px;}
.x43{left:577.589987px;}
.x44{left:581.189987px;}
.x45{left:591.809987px;}
.x46{left:595.589987px;}
.x47{left:640.229987px;}
.x48{left:644.009987px;}
.x37{left:675.329973px;}
.x38{left:684.329987px;}
.x49{left:700.529987px;}
.x39{left:708.989973px;}
.x3a{left:717.989987px;}
@media print{
.v7{vertical-align:-10.880000pt;}
.v2{vertical-align:-5.120000pt;}
.v4{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:3.200000pt;}
.v3{vertical-align:5.120000pt;}
.v6{vertical-align:10.880000pt;}
.v1{vertical-align:13.440000pt;}
.ls22{letter-spacing:-17.600000pt;}
.ls4b{letter-spacing:-12.592766pt;}
.ls2e{letter-spacing:-11.946667pt;}
.ls4d{letter-spacing:-3.232000pt;}
.ls2a{letter-spacing:-2.624000pt;}
.ls5e{letter-spacing:-1.152000pt;}
.ls2c{letter-spacing:-1.120000pt;}
.ls5d{letter-spacing:-0.944000pt;}
.ls5c{letter-spacing:-0.816000pt;}
.ls3f{letter-spacing:-0.704000pt;}
.ls2b{letter-spacing:-0.640000pt;}
.ls4a{letter-spacing:-0.624000pt;}
.ls21{letter-spacing:-0.576000pt;}
.ls5f{letter-spacing:-0.560000pt;}
.ls29{letter-spacing:-0.544000pt;}
.ls27{letter-spacing:-0.480000pt;}
.ls5b{letter-spacing:-0.432000pt;}
.ls28{letter-spacing:-0.416000pt;}
.ls1c{letter-spacing:-0.385067pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls30{letter-spacing:-0.304000pt;}
.ls24{letter-spacing:-0.262400pt;}
.ls64{letter-spacing:-0.256000pt;}
.ls74{letter-spacing:-0.240000pt;}
.ls4c{letter-spacing:-0.176000pt;}
.ls25{letter-spacing:-0.160000pt;}
.ls32{letter-spacing:-0.144000pt;}
.ls2f{letter-spacing:-0.112000pt;}
.ls2d{letter-spacing:-0.064000pt;}
.ls1d{letter-spacing:-0.040320pt;}
.ls3d{letter-spacing:-0.032000pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.016000pt;}
.ls31{letter-spacing:0.064000pt;}
.ls67{letter-spacing:0.074667pt;}
.lsb{letter-spacing:0.080000pt;}
.ls0{letter-spacing:0.096000pt;}
.ls42{letter-spacing:0.112000pt;}
.ls3e{letter-spacing:0.128000pt;}
.ls73{letter-spacing:0.133333pt;}
.ls52{letter-spacing:0.138667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.170667pt;}
.ls4e{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.202667pt;}
.ls16{letter-spacing:0.208000pt;}
.ls2{letter-spacing:0.224000pt;}
.ls20{letter-spacing:0.230933pt;}
.ls47{letter-spacing:0.240000pt;}
.ls1b{letter-spacing:0.254933pt;}
.ls19{letter-spacing:0.256000pt;}
.ls60{letter-spacing:0.266667pt;}
.ls68{letter-spacing:0.304000pt;}
.ls37{letter-spacing:0.314667pt;}
.ls1f{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.323733pt;}
.ls35{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.714667pt;}
.ls9{letter-spacing:0.736000pt;}
.lsa{letter-spacing:0.800000pt;}
.ls43{letter-spacing:0.864000pt;}
.ls7{letter-spacing:1.376000pt;}
.lsf{letter-spacing:1.440000pt;}
.ls8{letter-spacing:1.482667pt;}
.ls46{letter-spacing:1.536000pt;}
.ls10{letter-spacing:1.600000pt;}
.ls5{letter-spacing:2.016000pt;}
.lsd{letter-spacing:2.080000pt;}
.ls51{letter-spacing:2.122667pt;}
.ls6{letter-spacing:2.176000pt;}
.ls40{letter-spacing:2.528000pt;}
.ls36{letter-spacing:2.560000pt;}
.ls4{letter-spacing:2.656000pt;}
.lsc{letter-spacing:2.720000pt;}
.ls59{letter-spacing:2.826667pt;}
.lse{letter-spacing:2.880000pt;}
.ls3{letter-spacing:3.200000pt;}
.ls33{letter-spacing:3.296000pt;}
.ls3a{letter-spacing:3.936000pt;}
.ls58{letter-spacing:4.000000pt;}
.ls4f{letter-spacing:4.042667pt;}
.ls38{letter-spacing:4.576000pt;}
.ls57{letter-spacing:4.640000pt;}
.ls63{letter-spacing:4.682667pt;}
.ls39{letter-spacing:4.736000pt;}
.ls3c{letter-spacing:5.216000pt;}
.ls55{letter-spacing:5.280000pt;}
.ls56{letter-spacing:5.386667pt;}
.ls3b{letter-spacing:5.856000pt;}
.ls61{letter-spacing:6.496000pt;}
.ls5a{letter-spacing:6.560000pt;}
.ls62{letter-spacing:6.602667pt;}
.ls49{letter-spacing:7.136000pt;}
.ls48{letter-spacing:7.776000pt;}
.ls66{letter-spacing:9.056000pt;}
.ls12{letter-spacing:9.120000pt;}
.ls65{letter-spacing:9.696000pt;}
.ls11{letter-spacing:9.760000pt;}
.ls13{letter-spacing:9.866667pt;}
.ls14{letter-spacing:9.920000pt;}
.ls45{letter-spacing:10.336000pt;}
.ls50{letter-spacing:10.442667pt;}
.ls44{letter-spacing:10.976000pt;}
.ls6e{letter-spacing:15.456000pt;}
.ls71{letter-spacing:18.016000pt;}
.ls72{letter-spacing:18.656000pt;}
.ls53{letter-spacing:18.720000pt;}
.ls54{letter-spacing:19.360000pt;}
.ls6b{letter-spacing:28.896000pt;}
.ls6c{letter-spacing:29.514667pt;}
.ls6f{letter-spacing:32.074667pt;}
.ls6a{letter-spacing:42.954667pt;}
.ls6d{letter-spacing:43.594667pt;}
.ls70{letter-spacing:46.154667pt;}
.ls69{letter-spacing:56.394667pt;}
.ls34{letter-spacing:56.891307pt;}
.ls41{letter-spacing:60.874667pt;}
.ws27{word-spacing:-53.120000pt;}
.ws30{word-spacing:-48.000000pt;}
.ws7{word-spacing:-19.867413pt;}
.ws9{word-spacing:-19.714347pt;}
.ws5{word-spacing:-19.543680pt;}
.ws8{word-spacing:-19.281280pt;}
.wsa{word-spacing:-13.864320pt;}
.ws31{word-spacing:-13.205539pt;}
.ws44{word-spacing:-13.168000pt;}
.ws47{word-spacing:-12.832000pt;}
.wsf{word-spacing:-12.752000pt;}
.ws11{word-spacing:-12.736000pt;}
.ws13{word-spacing:-12.688000pt;}
.ws40{word-spacing:-12.656000pt;}
.ws14{word-spacing:-12.624000pt;}
.ws29{word-spacing:-12.608000pt;}
.ws20{word-spacing:-12.592000pt;}
.ws33{word-spacing:-12.544000pt;}
.wsc{word-spacing:-12.528000pt;}
.ws28{word-spacing:-12.496000pt;}
.ws16{word-spacing:-12.464000pt;}
.ws22{word-spacing:-12.384000pt;}
.ws32{word-spacing:-12.352000pt;}
.ws4a{word-spacing:-12.320000pt;}
.ws1a{word-spacing:-12.224000pt;}
.ws3b{word-spacing:-12.192000pt;}
.wse{word-spacing:-12.112000pt;}
.ws39{word-spacing:-12.096000pt;}
.wsd{word-spacing:-12.048000pt;}
.ws38{word-spacing:-12.016000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.984000pt;}
.ws42{word-spacing:-11.968000pt;}
.ws1b{word-spacing:-11.952000pt;}
.ws15{word-spacing:-11.888000pt;}
.ws2c{word-spacing:-11.824000pt;}
.ws49{word-spacing:-11.760000pt;}
.ws43{word-spacing:-11.744000pt;}
.ws3d{word-spacing:-11.712000pt;}
.ws26{word-spacing:-11.680000pt;}
.ws3e{word-spacing:-11.584000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.679680pt;}
.ws1{word-spacing:-10.400000pt;}
.ws12{word-spacing:-9.904000pt;}
.ws34{word-spacing:-9.296000pt;}
.wsb{word-spacing:-8.640000pt;}
.ws3c{word-spacing:-8.000000pt;}
.ws41{word-spacing:-2.080000pt;}
.ws37{word-spacing:-1.680000pt;}
.ws3f{word-spacing:-1.664000pt;}
.ws3a{word-spacing:-1.056000pt;}
.ws2b{word-spacing:-1.024000pt;}
.ws1c{word-spacing:-0.992000pt;}
.ws17{word-spacing:-0.432000pt;}
.ws36{word-spacing:-0.384000pt;}
.ws21{word-spacing:-0.352000pt;}
.ws48{word-spacing:-0.304000pt;}
.ws2d{word-spacing:-0.288000pt;}
.ws45{word-spacing:-0.277333pt;}
.ws19{word-spacing:-0.272000pt;}
.ws2f{word-spacing:-0.245333pt;}
.ws23{word-spacing:-0.224000pt;}
.ws1d{word-spacing:-0.160000pt;}
.ws24{word-spacing:0.000000pt;}
.ws46{word-spacing:0.240000pt;}
.ws1e{word-spacing:22.896000pt;}
.ws1f{word-spacing:23.514667pt;}
.ws18{word-spacing:23.536000pt;}
.ws2a{word-spacing:23.642667pt;}
.ws2e{word-spacing:23.696000pt;}
.ws25{word-spacing:24.176000pt;}
.ws35{word-spacing:24.282667pt;}
.ws6{word-spacing:33.580160pt;}
._b{margin-left:-13.207586pt;}
._f{margin-left:-11.973333pt;}
._5{margin-left:-10.592000pt;}
._12{margin-left:-9.488000pt;}
._14{margin-left:-6.733854pt;}
._7{margin-left:-5.248000pt;}
._d{margin-left:-3.685333pt;}
._9{margin-left:-2.496066pt;}
._0{margin-left:-1.152000pt;}
._2{width:0.960000pt;}
._a{width:2.664719pt;}
._10{width:3.728000pt;}
._e{width:5.082667pt;}
._8{width:6.368000pt;}
._15{width:7.292800pt;}
._17{width:8.460800pt;}
._13{width:9.728000pt;}
._6{width:10.848000pt;}
._c{width:12.748800pt;}
._16{width:18.466014pt;}
._19{width:40.000000pt;}
._18{width:56.000000pt;}
._1{width:90.410667pt;}
._11{width:187.978667pt;}
._3{width:205.815893pt;}
._4{width:921.280000pt;}
.fs1{font-size:16.000000pt;}
.fs4{font-size:21.120000pt;}
.fsa{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:33.730624pt;}
.fs9{font-size:34.560000pt;}
.fsb{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fsc{font-size:50.595937pt;}
.fs3{font-size:53.120000pt;}
.fsd{font-size:58.880000pt;}
.fs8{font-size:69.120000pt;}
.fs7{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:6.080000pt;}
.yd{bottom:9.440000pt;}
.yb7{bottom:9.600000pt;}
.y9b{bottom:10.880000pt;}
.ya7{bottom:16.160000pt;}
.yc{bottom:20.160000pt;}
.yb0{bottom:23.520000pt;}
.yc0{bottom:26.234667pt;}
.yaa{bottom:26.240000pt;}
.ya2{bottom:26.266667pt;}
.yb6{bottom:29.760000pt;}
.yb{bottom:30.880000pt;}
.yc2{bottom:36.160000pt;}
.ya6{bottom:36.320000pt;}
.yaf{bottom:38.080000pt;}
.y9e{bottom:38.906667pt;}
.ybc{bottom:39.034667pt;}
.yb2{bottom:40.640000pt;}
.ybd{bottom:46.394667pt;}
.ya9{bottom:46.400000pt;}
.y9f{bottom:46.426667pt;}
.yb5{bottom:49.920000pt;}
.y9d{bottom:53.786667pt;}
.ybb{bottom:53.914667pt;}
.yb1{bottom:55.520000pt;}
.yae{bottom:55.680000pt;}
.ya5{bottom:56.480000pt;}
.y9{bottom:60.992000pt;}
.ybf{bottom:66.554667pt;}
.ya8{bottom:66.560000pt;}
.ya1{bottom:66.586667pt;}
.y8{bottom:69.632000pt;}
.yb4{bottom:70.080000pt;}
.yad{bottom:75.840000pt;}
.y7{bottom:85.632000pt;}
.ybe{bottom:86.714667pt;}
.ya0{bottom:86.746667pt;}
.yb9{bottom:86.760000pt;}
.yb3{bottom:90.240000pt;}
.yac{bottom:93.120000pt;}
.yba{bottom:120.512000pt;}
.y102{bottom:123.072000pt;}
.y3c{bottom:124.832000pt;}
.yee{bottom:127.872000pt;}
.y3b{bottom:136.026667pt;}
.y96{bottom:136.826667pt;}
.y6a{bottom:137.946667pt;}
.y101{bottom:143.226667pt;}
.yed{bottom:148.026667pt;}
.y3a{bottom:156.186667pt;}
.y95{bottom:156.986667pt;}
.y69{bottom:158.106667pt;}
.y100{bottom:163.386667pt;}
.yec{bottom:168.186667pt;}
.y39{bottom:176.346667pt;}
.y94{bottom:177.146667pt;}
.y67{bottom:178.266667pt;}
.y68{bottom:180.986667pt;}
.yff{bottom:183.546667pt;}
.yeb{bottom:188.346667pt;}
.y38{bottom:196.506667pt;}
.y93{bottom:197.146667pt;}
.y66{bottom:198.426667pt;}
.yfe{bottom:203.706667pt;}
.yea{bottom:208.506667pt;}
.y140{bottom:212.346667pt;}
.y37{bottom:216.666667pt;}
.y92{bottom:217.306667pt;}
.y65{bottom:218.586667pt;}
.yb8{bottom:221.946667pt;}
.yfd{bottom:223.866667pt;}
.y13f{bottom:228.506667pt;}
.ye9{bottom:228.666667pt;}
.y36{bottom:236.826667pt;}
.y91{bottom:237.466667pt;}
.y64{bottom:238.746667pt;}
.y13e{bottom:243.546667pt;}
.yfc{bottom:244.026667pt;}
.ye8{bottom:248.826667pt;}
.y35{bottom:256.986667pt;}
.y90{bottom:257.626667pt;}
.y13d{bottom:258.426667pt;}
.y63{bottom:258.906667pt;}
.y13c{bottom:261.146667pt;}
.yfb{bottom:264.186667pt;}
.ye7{bottom:268.986667pt;}
.y13b{bottom:273.306667pt;}
.y13a{bottom:276.026667pt;}
.y34{bottom:277.146667pt;}
.y8f{bottom:277.786667pt;}
.y62{bottom:279.066667pt;}
.yfa{bottom:284.346667pt;}
.y139{bottom:288.186667pt;}
.ye6{bottom:289.146667pt;}
.y138{bottom:290.906667pt;}
.y33{bottom:297.346667pt;}
.y8e{bottom:297.986667pt;}
.y61{bottom:299.266667pt;}
.y137{bottom:303.106667pt;}
.yf9{bottom:304.546667pt;}
.y136{bottom:305.826667pt;}
.ye5{bottom:309.346667pt;}
.y32{bottom:317.506667pt;}
.y8d{bottom:318.146667pt;}
.y60{bottom:319.426667pt;}
.y135{bottom:320.866667pt;}
.yab{bottom:323.426667pt;}
.yf8{bottom:324.706667pt;}
.ye4{bottom:329.506667pt;}
.y31{bottom:333.026667pt;}
.y134{bottom:335.746667pt;}
.y8c{bottom:338.306667pt;}
.y5f{bottom:339.586667pt;}
.y30{bottom:344.226667pt;}
.yf7{bottom:344.866667pt;}
.y133{bottom:347.906667pt;}
.ye3{bottom:349.666667pt;}
.y132{bottom:350.626667pt;}
.y8b{bottom:358.466667pt;}
.y5e{bottom:359.746667pt;}
.y131{bottom:362.786667pt;}
.y2f{bottom:364.386667pt;}
.yf6{bottom:364.866667pt;}
.y130{bottom:365.506667pt;}
.ye2{bottom:369.666667pt;}
.y12f{bottom:377.666667pt;}
.y8a{bottom:378.626667pt;}
.y5d{bottom:379.906667pt;}
.y12e{bottom:380.386667pt;}
.y2e{bottom:384.546667pt;}
.yf5{bottom:385.026667pt;}
.ye1{bottom:389.826667pt;}
.y12d{bottom:392.706667pt;}
.y12c{bottom:395.426667pt;}
.y89{bottom:398.786667pt;}
.y5c{bottom:400.066667pt;}
.y2d{bottom:404.706667pt;}
.yf4{bottom:405.186667pt;}
.y12b{bottom:407.586667pt;}
.ye0{bottom:409.986667pt;}
.y12a{bottom:410.306667pt;}
.y88{bottom:418.946667pt;}
.y5a{bottom:420.226667pt;}
.y129{bottom:422.466667pt;}
.y5b{bottom:422.946667pt;}
.y2c{bottom:424.866667pt;}
.y128{bottom:425.186667pt;}
.yf3{bottom:425.346667pt;}
.ya4{bottom:428.386667pt;}
.ydf{bottom:430.146667pt;}
.y127{bottom:437.346667pt;}
.y87{bottom:439.106667pt;}
.y2b{bottom:440.066667pt;}
.y59{bottom:440.386667pt;}
.yf2{bottom:445.506667pt;}
.y2a{bottom:446.786667pt;}
.yde{bottom:450.306667pt;}
.y126{bottom:452.226667pt;}
.y29{bottom:457.026667pt;}
.y86{bottom:459.266667pt;}
.y58{bottom:460.546667pt;}
.yf1{bottom:465.666667pt;}
.y125{bottom:467.266667pt;}
.y28{bottom:468.226667pt;}
.ydd{bottom:470.466667pt;}
.y85{bottom:479.426667pt;}
.y57{bottom:480.706667pt;}
.y124{bottom:482.146667pt;}
.y27{bottom:484.066667pt;}
.y123{bottom:484.866667pt;}
.yf0{bottom:485.826667pt;}
.ydc{bottom:490.626667pt;}
.y26{bottom:496.386667pt;}
.y122{bottom:497.026667pt;}
.y84{bottom:499.586667pt;}
.y56{bottom:500.866667pt;}
.yef{bottom:503.426667pt;}
.y9c{bottom:509.666667pt;}
.yda{bottom:510.786667pt;}
.y121{bottom:511.906667pt;}
.ydb{bottom:513.506667pt;}
.y83{bottom:514.946667pt;}
.y25{bottom:516.546667pt;}
.y55{bottom:521.026667pt;}
.y82{bottom:526.146667pt;}
.y120{bottom:526.786667pt;}
.yd9{bottom:528.226667pt;}
.y11f{bottom:529.533333pt;}
.y24{bottom:536.733333pt;}
.y54{bottom:541.053333pt;}
.y11e{bottom:544.413333pt;}
.yd8{bottom:545.533333pt;}
.y81{bottom:546.333333pt;}
.y11d{bottom:547.133333pt;}
.y23{bottom:556.893333pt;}
.y53{bottom:561.213333pt;}
.y11c{bottom:564.573333pt;}
.yd7{bottom:565.693333pt;}
.y80{bottom:566.493333pt;}
.y11b{bottom:567.293333pt;}
.y22{bottom:577.053333pt;}
.y52{bottom:581.373333pt;}
.y11a{bottom:584.733333pt;}
.yd6{bottom:585.853333pt;}
.y7e{bottom:586.653333pt;}
.y119{bottom:587.453333pt;}
.y7f{bottom:589.373333pt;}
.y21{bottom:597.213333pt;}
.y51{bottom:601.533333pt;}
.y118{bottom:604.893333pt;}
.yd4{bottom:606.013333pt;}
.y7d{bottom:606.813333pt;}
.y117{bottom:607.613333pt;}
.yd5{bottom:608.733333pt;}
.y9a{bottom:611.133333pt;}
.y20{bottom:617.373333pt;}
.y50{bottom:621.693333pt;}
.y141{bottom:623.133333pt;}
.yd3{bottom:626.173333pt;}
.y7c{bottom:626.973333pt;}
.y1f{bottom:637.533333pt;}
.y116{bottom:640.253333pt;}
.y4e{bottom:641.853333pt;}
.y4f{bottom:644.573333pt;}
.yd2{bottom:646.333333pt;}
.y7b{bottom:647.133333pt;}
.y99{bottom:647.613333pt;}
.y115{bottom:655.293333pt;}
.y1e{bottom:657.693333pt;}
.y4d{bottom:662.013333pt;}
.yd1{bottom:666.493333pt;}
.y7a{bottom:667.293333pt;}
.y98{bottom:667.773333pt;}
.y114{bottom:672.893333pt;}
.y1d{bottom:677.853333pt;}
.y4c{bottom:682.173333pt;}
.y97{bottom:685.053333pt;}
.ycf{bottom:686.653333pt;}
.y78{bottom:687.453333pt;}
.yd0{bottom:689.373333pt;}
.y79{bottom:690.173333pt;}
.y113{bottom:692.893333pt;}
.y1c{bottom:698.013333pt;}
.y4b{bottom:702.333333pt;}
.yce{bottom:706.813333pt;}
.y77{bottom:707.613333pt;}
.y112{bottom:710.493333pt;}
.y1b{bottom:713.533333pt;}
.y1a{bottom:722.333333pt;}
.y4a{bottom:722.493333pt;}
.y111{bottom:725.373333pt;}
.ycd{bottom:726.973333pt;}
.y76{bottom:727.773333pt;}
.y19{bottom:738.013333pt;}
.y110{bottom:740.253333pt;}
.y49{bottom:742.653333pt;}
.ycc{bottom:746.973333pt;}
.y75{bottom:747.933333pt;}
.y18{bottom:751.293333pt;}
.y10f{bottom:755.133333pt;}
.y48{bottom:762.813333pt;}
.y17{bottom:765.053333pt;}
.yca{bottom:767.173333pt;}
.y74{bottom:768.133333pt;}
.ycb{bottom:769.893333pt;}
.y10e{bottom:770.053333pt;}
.y47{bottom:783.013333pt;}
.y16{bottom:783.973333pt;}
.y10d{bottom:785.093333pt;}
.yc9{bottom:787.333333pt;}
.y73{bottom:788.293333pt;}
.y10c{bottom:799.973333pt;}
.y46{bottom:803.173333pt;}
.y15{bottom:804.133333pt;}
.yc8{bottom:807.493333pt;}
.y72{bottom:808.453333pt;}
.y10b{bottom:814.853333pt;}
.y45{bottom:823.333333pt;}
.y14{bottom:824.933333pt;}
.yc7{bottom:827.653333pt;}
.y71{bottom:828.613333pt;}
.y10a{bottom:829.733333pt;}
.y44{bottom:843.493333pt;}
.y13{bottom:844.293333pt;}
.y109{bottom:844.613333pt;}
.yc5{bottom:847.813333pt;}
.y70{bottom:848.773333pt;}
.yc6{bottom:850.533333pt;}
.y108{bottom:859.653333pt;}
.y42{bottom:863.653333pt;}
.y12{bottom:866.213333pt;}
.y43{bottom:866.373333pt;}
.yc4{bottom:867.973333pt;}
.y6f{bottom:868.933333pt;}
.y107{bottom:877.253333pt;}
.y41{bottom:883.813333pt;}
.yc3{bottom:885.413333pt;}
.y6d{bottom:889.093333pt;}
.y6e{bottom:891.813333pt;}
.yc1{bottom:897.253333pt;}
.y11{bottom:897.413333pt;}
.y40{bottom:903.973333pt;}
.y6c{bottom:909.253333pt;}
.y106{bottom:917.573333pt;}
.y3f{bottom:924.133333pt;}
.y6b{bottom:926.693333pt;}
.y10{bottom:928.773333pt;}
.y105{bottom:937.733333pt;}
.y3e{bottom:944.293333pt;}
.yf{bottom:953.733333pt;}
.y104{bottom:957.893333pt;}
.y3d{bottom:964.453333pt;}
.ye{bottom:967.013333pt;}
.y103{bottom:973.413333pt;}
.y6{bottom:989.253333pt;}
.y5{bottom:1000.293333pt;}
.y4{bottom:1007.680000pt;}
.ya{bottom:1018.880000pt;}
.y3{bottom:1022.560000pt;}
.y2{bottom:1034.240000pt;}
.y1{bottom:1063.040000pt;}
.h3{height:11.648438pt;}
.h11{height:15.375937pt;}
.h14{height:15.396562pt;}
.h12{height:19.595625pt;}
.h7{height:21.006562pt;}
.hb{height:23.218750pt;}
.h1f{height:23.296875pt;}
.h15{height:23.328125pt;}
.h13{height:27.024375pt;}
.h1a{height:29.760000pt;}
.h10{height:31.217812pt;}
.h4{height:31.259687pt;}
.h9{height:34.531250pt;}
.h2{height:34.945312pt;}
.h18{height:34.992188pt;}
.ha{height:35.410568pt;}
.h6{height:38.672812pt;}
.hd{height:38.724688pt;}
.h8{height:39.360000pt;}
.h5{height:42.649687pt;}
.hf{height:48.960938pt;}
.h17{height:49.336436pt;}
.h19{height:51.608844pt;}
.he{height:54.183438pt;}
.h16{height:54.598989pt;}
.h20{height:58.563750pt;}
.hc{height:76.379062pt;}
.h1c{height:80.640000pt;}
.h1e{height:100.800000pt;}
.h1b{height:100.832000pt;}
.h1d{height:104.320000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:62.080000pt;}
.w5{width:136.506667pt;}
.w3{width:274.786667pt;}
.w7{width:398.973333pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x32{left:6.720000pt;}
.x2f{left:8.960000pt;}
.x33{left:13.120000pt;}
.x31{left:19.040000pt;}
.x2d{left:23.840000pt;}
.x34{left:31.040000pt;}
.x2b{left:35.360000pt;}
.x30{left:45.594667pt;}
.x8{left:82.600000pt;}
.x1{left:96.031988pt;}
.x4a{left:100.031988pt;}
.x4b{left:104.031988pt;}
.x18{left:120.031988pt;}
.x13{left:121.471988pt;}
.x15{left:137.626655pt;}
.x4{left:142.266655pt;}
.x19{left:144.026655pt;}
.x9{left:146.440000pt;}
.x2e{left:148.826667pt;}
.x1b{left:151.706643pt;}
.x16{left:154.746643pt;}
.x1c{left:155.706655pt;}
.x17{left:158.746655pt;}
.x3d{left:160.506643pt;}
.x1a{left:168.826643pt;}
.xa{left:173.000000pt;}
.x5{left:178.266655pt;}
.x10{left:199.226655pt;}
.x1f{left:214.106655pt;}
.xb{left:216.200000pt;}
.xc{left:224.386667pt;}
.x2c{left:233.986667pt;}
.x20{left:254.626655pt;}
.x14{left:256.546655pt;}
.x21{left:260.706655pt;}
.xd{left:265.186667pt;}
.xe{left:278.786655pt;}
.x3b{left:285.026643pt;}
.x4d{left:288.066655pt;}
.x3c{left:293.026655pt;}
.x29{left:297.186643pt;}
.x22{left:298.786655pt;}
.x2a{left:301.186655pt;}
.x23{left:304.706655pt;}
.x2{left:313.986655pt;}
.x12{left:319.906655pt;}
.xf{left:323.586655pt;}
.x1d{left:338.306643pt;}
.x1e{left:342.306655pt;}
.x24{left:362.973322pt;}
.x3e{left:364.093322pt;}
.x25{left:369.053322pt;}
.x6{left:377.533322pt;}
.x4c{left:379.773322pt;}
.x26{left:381.853322pt;}
.x11{left:384.093322pt;}
.x27{left:387.933322pt;}
.x3{left:396.893322pt;}
.x3f{left:406.013322pt;}
.x7{left:423.453333pt;}
.x28{left:427.613322pt;}
.x40{left:431.133322pt;}
.x35{left:438.813310pt;}
.x36{left:446.813322pt;}
.x41{left:471.773322pt;}
.x42{left:475.133322pt;}
.x43{left:513.413322pt;}
.x44{left:516.613322pt;}
.x45{left:526.053322pt;}
.x46{left:529.413322pt;}
.x47{left:569.093322pt;}
.x48{left:572.453322pt;}
.x37{left:600.293310pt;}
.x38{left:608.293322pt;}
.x49{left:622.693322pt;}
.x39{left:630.213310pt;}
.x3a{left:638.213322pt;}
}




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