
    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_4276b38f1f1239bff5e324b0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_d5c7bf12d0d019a2f46327a5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_1a26f34486fa5c2af1e17ad2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.196777;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_bac1c251eedfffd4bd045ccd.woff')format("woff");}.ff4{font-family:ff4;line-height:0.865723;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_67313d63ea13f0b1e2945349.woff')format("woff");}.ff5{font-family:ff5;line-height:1.082031;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_fdb4dca9e17ea19332408cee.woff')format("woff");}.ff6{font-family:ff6;line-height:0.865723;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_16b92ed61a7004397800519b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.082520;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_9bb6f674333e32152c10f889.woff')format("woff");}.ff8{font-family:ff8;line-height:0.911621;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_fc2fd83879e06e1e88ce0b05.woff')format("woff");}.ff9{font-family:ff9;line-height:1.024414;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_316ec4d6b6c4d8b2dc3f35b0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.902344;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_34d3a9c6560fb6df446f78e9.woff')format("woff");}.ffb{font-family:ffb;line-height:0.865723;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_5610153c03a23d9d001a8014.woff')format("woff");}.ffc{font-family:ffc;line-height:1.082031;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_fdb4dca9e17ea19332408cee.woff')format("woff");}.ffd{font-family:ffd;line-height:0.865723;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_f9ebef4df17d0bfdd364f6e9.woff')format("woff");}.ffe{font-family:ffe;line-height:0.887695;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_d4da9d767fbd6cb4d443730c.woff')format("woff");}.fff{font-family:fff;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.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-18.810000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.680000px;}
.v1{vertical-align:19.806000px;}
.v2{vertical-align:22.812000px;}
.v4{vertical-align:36.000000px;}
.ls3b{letter-spacing:-2.691000px;}
.ls27{letter-spacing:-2.340000px;}
.ls6e{letter-spacing:-0.945000px;}
.ls26{letter-spacing:-0.897000px;}
.ls1c{letter-spacing:-0.690000px;}
.ls71{letter-spacing:-0.630000px;}
.ls11{letter-spacing:-0.552000px;}
.ls72{letter-spacing:-0.504000px;}
.ls24{letter-spacing:-0.483000px;}
.ls73{letter-spacing:-0.441000px;}
.ls41{letter-spacing:-0.414000px;}
.ls6d{letter-spacing:-0.378000px;}
.ls31{letter-spacing:-0.345000px;}
.ls6c{letter-spacing:-0.315000px;}
.ls25{letter-spacing:-0.289800px;}
.ls3c{letter-spacing:-0.270000px;}
.ls43{letter-spacing:-0.216000px;}
.ls3a{letter-spacing:-0.207000px;}
.ls8{letter-spacing:-0.180000px;}
.ls28{letter-spacing:-0.138000px;}
.ls1d{letter-spacing:-0.108000px;}
.ls32{letter-spacing:-0.069000px;}
.ls1e{letter-spacing:-0.054000px;}
.ls7{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.003158px;}
.ls2a{letter-spacing:0.012632px;}
.ls22{letter-spacing:0.015158px;}
.ls1f{letter-spacing:0.018632px;}
.ls19{letter-spacing:0.054000px;}
.ls3d{letter-spacing:0.061895px;}
.ls2d{letter-spacing:0.069000px;}
.lsb{letter-spacing:0.120000px;}
.ls42{letter-spacing:0.138000px;}
.ls30{letter-spacing:0.162000px;}
.ls21{letter-spacing:0.167368px;}
.ls5{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.207000px;}
.ls2f{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.276000px;}
.ls45{letter-spacing:0.300000px;}
.ls6b{letter-spacing:0.315000px;}
.ls1a{letter-spacing:0.324000px;}
.lse{letter-spacing:0.345000px;}
.ls1b{letter-spacing:0.378000px;}
.ls35{letter-spacing:0.402316px;}
.ls14{letter-spacing:0.413684px;}
.ls39{letter-spacing:0.414000px;}
.ls3{letter-spacing:0.420000px;}
.ls2e{letter-spacing:0.483000px;}
.ls15{letter-spacing:0.514737px;}
.ls44{letter-spacing:0.538200px;}
.ls18{letter-spacing:0.548211px;}
.lsd{letter-spacing:0.552000px;}
.ls75{letter-spacing:0.567000px;}
.ls6{letter-spacing:0.600000px;}
.ls38{letter-spacing:0.621000px;}
.ls66{letter-spacing:0.630000px;}
.ls13{letter-spacing:0.690000px;}
.ls67{letter-spacing:0.693000px;}
.ls29{letter-spacing:0.759000px;}
.ls68{letter-spacing:0.819000px;}
.ls74{letter-spacing:0.882000px;}
.ls17{letter-spacing:0.897000px;}
.ls3e{letter-spacing:0.966000px;}
.ls6a{letter-spacing:1.008000px;}
.ls34{letter-spacing:1.104000px;}
.ls16{letter-spacing:1.173000px;}
.ls33{letter-spacing:1.242000px;}
.ls20{letter-spacing:1.518000px;}
.ls23{letter-spacing:1.784211px;}
.lsc{letter-spacing:2.025000px;}
.ls36{letter-spacing:2.070000px;}
.ls10{letter-spacing:2.730000px;}
.ls0{letter-spacing:3.900000px;}
.ls2b{letter-spacing:4.256842px;}
.ls2c{letter-spacing:4.260000px;}
.ls76{letter-spacing:5.400000px;}
.ls1{letter-spacing:6.000000px;}
.ls9{letter-spacing:6.240000px;}
.ls62{letter-spacing:6.300000px;}
.lsa{letter-spacing:7.731000px;}
.ls40{letter-spacing:7.935000px;}
.ls4{letter-spacing:8.400000px;}
.ls65{letter-spacing:8.505000px;}
.ls70{letter-spacing:8.820000px;}
.ls2{letter-spacing:9.000000px;}
.ls63{letter-spacing:9.072000px;}
.ls64{letter-spacing:9.450000px;}
.ls69{letter-spacing:9.891000px;}
.ls6f{letter-spacing:10.143000px;}
.ls3f{letter-spacing:18.850642px;}
.ls5e{letter-spacing:511.200000px;}
.ls49{letter-spacing:517.380000px;}
.ls4c{letter-spacing:517.800000px;}
.ls52{letter-spacing:521.460000px;}
.ls4f{letter-spacing:523.860000px;}
.ls5b{letter-spacing:527.100000px;}
.ls61{letter-spacing:527.760000px;}
.ls55{letter-spacing:528.540000px;}
.ls58{letter-spacing:529.320000px;}
.ls4d{letter-spacing:539.520000px;}
.ls4a{letter-spacing:540.240000px;}
.ls56{letter-spacing:540.660000px;}
.ls5f{letter-spacing:542.760000px;}
.ls46{letter-spacing:543.600000px;}
.ls47{letter-spacing:544.140000px;}
.ls53{letter-spacing:546.000000px;}
.ls5c{letter-spacing:546.540000px;}
.ls50{letter-spacing:547.800000px;}
.ls59{letter-spacing:553.320000px;}
.ls54{letter-spacing:573.420000px;}
.ls5d{letter-spacing:574.860000px;}
.ls4e{letter-spacing:575.340000px;}
.ls57{letter-spacing:575.820000px;}
.ls4b{letter-spacing:576.840000px;}
.ls48{letter-spacing:577.740000px;}
.ls60{letter-spacing:580.560000px;}
.ls5a{letter-spacing:583.320000px;}
.ls51{letter-spacing:584.520000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws16{word-spacing:-69.000000px;}
.wsa{word-spacing:-54.054000px;}
.ws8{word-spacing:-54.000000px;}
.wsb{word-spacing:-53.946000px;}
.wsc{word-spacing:-53.892000px;}
.ws9{word-spacing:-39.960000px;}
.ws1{word-spacing:-25.860000px;}
.ws21{word-spacing:-24.003000px;}
.ws0{word-spacing:-21.075000px;}
.ws7{word-spacing:-20.286000px;}
.ws15{word-spacing:-19.734000px;}
.ws10{word-spacing:-19.389000px;}
.ws14{word-spacing:-19.320000px;}
.ws17{word-spacing:-18.975000px;}
.wse{word-spacing:-18.492000px;}
.ws6{word-spacing:-17.733000px;}
.ws12{word-spacing:-17.526000px;}
.ws3{word-spacing:-17.460000px;}
.ws1a{word-spacing:-17.250000px;}
.ws1e{word-spacing:-17.160000px;}
.ws18{word-spacing:-17.112000px;}
.wsf{word-spacing:-17.043000px;}
.ws1c{word-spacing:-16.974000px;}
.ws1d{word-spacing:-16.836000px;}
.ws11{word-spacing:-16.560000px;}
.ws13{word-spacing:-13.500000px;}
.ws19{word-spacing:-13.338000px;}
.ws1b{word-spacing:-12.171600px;}
.ws5{word-spacing:-11.633400px;}
.wsd{word-spacing:-11.343600px;}
.ws2{word-spacing:-10.116000px;}
.ws4{word-spacing:0.000000px;}
.ws1f{word-spacing:263.520000px;}
.ws20{word-spacing:1529.880000px;}
._0{margin-left:-1615.752000px;}
._1d{margin-left:-18.681000px;}
._e{margin-left:-16.980000px;}
._27{margin-left:-14.991000px;}
._1b{margin-left:-12.528000px;}
._1e{margin-left:-11.346000px;}
._11{margin-left:-9.663000px;}
._a{margin-left:-8.352000px;}
._9{margin-left:-7.020000px;}
._5{margin-left:-6.000000px;}
._3{margin-left:-4.332000px;}
._d{margin-left:-3.000000px;}
._6{margin-left:-1.920000px;}
._2{width:1.140000px;}
._c{width:2.880000px;}
._1{width:4.080000px;}
._4{width:5.100000px;}
._7{width:6.840000px;}
._b{width:8.496000px;}
._8{width:10.320000px;}
._1c{width:11.505000px;}
._28{width:16.317000px;}
._12{width:18.850642px;}
._1a{width:34.500000px;}
._10{width:47.880000px;}
._15{width:59.400000px;}
._13{width:120.720000px;}
._18{width:122.760000px;}
._16{width:139.992000px;}
._17{width:154.872000px;}
._19{width:206.820000px;}
._14{width:210.540000px;}
._1f{width:239.460000px;}
._f{width:260.736000px;}
._20{width:292.920000px;}
._23{width:1311.060000px;}
._26{width:1347.060000px;}
._21{width:1391.160000px;}
._25{width:1413.060000px;}
._22{width:1477.140000px;}
._24{width:1530.180000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:34.200000px;}
.fs5{font-size:36.000000px;}
.fsb{font-size:41.400000px;}
.fs6{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fsa{font-size:69.000000px;}
.fse{font-size:72.000000px;}
.fs0{font-size:75.000000px;}
.fs9{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y67{bottom:2.341500px;}
.y8b{bottom:2.735250px;}
.y62{bottom:5.547000px;}
.y6c{bottom:5.548500px;}
.y1{bottom:56.692500px;}
.y1f{bottom:56.693250px;}
.y170{bottom:56.694000px;}
.y10b{bottom:106.302600px;}
.y72{bottom:106.305600px;}
.ycb{bottom:106.308000px;}
.y16f{bottom:108.346500px;}
.y44{bottom:109.022250px;}
.y1e{bottom:109.445250px;}
.y12c{bottom:110.301750px;}
.y8d{bottom:111.002100px;}
.y14b{bottom:114.765000px;}
.y71{bottom:122.802600px;}
.yca{bottom:122.805000px;}
.y8a{bottom:124.501500px;}
.y1d{bottom:126.695250px;}
.y10a{bottom:127.502100px;}
.y16e{bottom:127.545750px;}
.y8c{bottom:129.177600px;}
.y43{bottom:129.877500px;}
.y12b{bottom:131.157000px;}
.y89{bottom:133.880100px;}
.y14a{bottom:139.200000px;}
.yc9{bottom:139.302000px;}
.y1c{bottom:143.945250px;}
.y70{bottom:144.002100px;}
.y16d{bottom:146.745000px;}
.y42{bottom:150.732750px;}
.y12a{bottom:152.012250px;}
.yc8{bottom:160.501500px;}
.y149{bottom:163.635000px;}
.y16c{bottom:165.944250px;}
.y6f{bottom:166.879500px;}
.y41{bottom:171.588000px;}
.y129{bottom:172.867500px;}
.y109{bottom:174.089250px;}
.y88{bottom:174.226500px;}
.y6e{bottom:185.058000px;}
.y148{bottom:188.070000px;}
.yaa{bottom:189.378750px;}
.y40{bottom:192.443250px;}
.y16b{bottom:193.648500px;}
.y128{bottom:193.722750px;}
.y87{bottom:193.726500px;}
.y6b{bottom:194.326500px;}
.y108{bottom:195.082500px;}
.y1b{bottom:195.438000px;}
.y6d{bottom:201.555000px;}
.y6a{bottom:206.257500px;}
.ya9{bottom:210.675000px;}
.y147{bottom:212.505000px;}
.y16a{bottom:212.847750px;}
.y86{bottom:213.226500px;}
.y3f{bottom:213.288000px;}
.ye9{bottom:214.562250px;}
.y127{bottom:214.578000px;}
.yc7{bottom:214.635750px;}
.y1a{bottom:215.838000px;}
.y107{bottom:216.075750px;}
.y69{bottom:224.436000px;}
.ya8{bottom:231.978750px;}
.y169{bottom:232.047000px;}
.y3e{bottom:234.143250px;}
.ye8{bottom:235.417500px;}
.y126{bottom:235.433250px;}
.yc6{bottom:235.491000px;}
.y19{bottom:236.238000px;}
.y66{bottom:236.257500px;}
.y146{bottom:236.940000px;}
.y106{bottom:237.069000px;}
.y68{bottom:240.933000px;}
.y85{bottom:243.345000px;}
.y65{bottom:245.635500px;}
.ya7{bottom:253.263750px;}
.y3d{bottom:254.940750px;}
.ye7{bottom:256.272750px;}
.y125{bottom:256.288500px;}
.yc5{bottom:256.346250px;}
.y18{bottom:256.638000px;}
.y105{bottom:258.062250px;}
.y168{bottom:259.751250px;}
.y145{bottom:261.375000px;}
.y64{bottom:263.814000px;}
.y84{bottom:264.200250px;}
.y18a{bottom:272.650500px;}
.y61{bottom:273.084000px;}
.ya6{bottom:274.567500px;}
.y3c{bottom:275.796000px;}
.y17{bottom:277.038000px;}
.ye6{bottom:277.128000px;}
.y124{bottom:277.143750px;}
.yc4{bottom:277.164750px;}
.y167{bottom:278.950500px;}
.y104{bottom:279.055500px;}
.y63{bottom:280.311000px;}
.y60{bottom:285.013500px;}
.y83{bottom:285.055500px;}
.y144{bottom:285.810000px;}
.y189{bottom:292.900500px;}
.ya5{bottom:295.871250px;}
.y3b{bottom:296.651250px;}
.y16{bottom:297.438000px;}
.ye5{bottom:297.983250px;}
.y123{bottom:297.999000px;}
.yc3{bottom:298.020000px;}
.y103{bottom:300.048750px;}
.y166{bottom:306.654750px;}
.y188{bottom:313.150500px;}
.y82{bottom:316.531500px;}
.ya4{bottom:317.175000px;}
.y3a{bottom:317.506500px;}
.y143{bottom:317.625000px;}
.y15{bottom:317.838000px;}
.ye4{bottom:318.838500px;}
.y122{bottom:318.854250px;}
.yc2{bottom:318.875250px;}
.y102{bottom:321.042000px;}
.y165{bottom:325.854000px;}
.y5f{bottom:334.611000px;}
.y14{bottom:338.238000px;}
.y39{bottom:338.361750px;}
.ya3{bottom:338.478750px;}
.ye3{bottom:339.693750px;}
.y121{bottom:339.709500px;}
.yc1{bottom:339.730500px;}
.y101{bottom:342.035250px;}
.y164{bottom:345.053250px;}
.y81{bottom:346.666500px;}
.y187{bottom:351.100500px;}
.y142{bottom:351.591000px;}
.y5e{bottom:355.017750px;}
.y13{bottom:358.638000px;}
.y38{bottom:359.217000px;}
.ya2{bottom:359.767500px;}
.ye2{bottom:360.549000px;}
.y120{bottom:360.564750px;}
.yc0{bottom:360.585750px;}
.y100{bottom:363.028500px;}
.y80{bottom:366.166500px;}
.y186{bottom:371.350500px;}
.y163{bottom:372.757500px;}
.y5d{bottom:375.424500px;}
.y12{bottom:379.038000px;}
.y37{bottom:380.072250px;}
.ya1{bottom:381.071250px;}
.ye1{bottom:381.404250px;}
.y11f{bottom:381.420000px;}
.ybf{bottom:381.441000px;}
.y141{bottom:383.451000px;}
.yff{bottom:384.021750px;}
.y7f{bottom:385.666500px;}
.y185{bottom:391.600500px;}
.y162{bottom:391.956750px;}
.y5c{bottom:395.831250px;}
.y11{bottom:399.438000px;}
.y36{bottom:400.927500px;}
.y140{bottom:401.901000px;}
.ye0{bottom:402.259500px;}
.y11e{bottom:402.275250px;}
.ybe{bottom:402.296250px;}
.ya0{bottom:402.375000px;}
.yfe{bottom:405.015000px;}
.y7e{bottom:405.166500px;}
.y161{bottom:411.156000px;}
.y5b{bottom:416.238000px;}
.y10{bottom:419.838000px;}
.y35{bottom:421.782750px;}
.ydf{bottom:423.114750px;}
.ybd{bottom:423.125250px;}
.y11d{bottom:423.130500px;}
.y9f{bottom:423.678750px;}
.y7d{bottom:424.666500px;}
.yfd{bottom:426.008250px;}
.y184{bottom:426.850500px;}
.y5a{bottom:436.644750px;}
.y160{bottom:438.860250px;}
.y34{bottom:442.638000px;}
.yde{bottom:443.970000px;}
.ybc{bottom:443.980500px;}
.y11c{bottom:443.985750px;}
.y7c{bottom:444.166500px;}
.y9e{bottom:444.982500px;}
.yfc{bottom:447.055500px;}
.y13f{bottom:450.741000px;}
.yf{bottom:456.138000px;}
.y59{bottom:457.051500px;}
.y15f{bottom:458.059500px;}
.y33{bottom:463.493250px;}
.y7b{bottom:463.666500px;}
.ydd{bottom:464.825250px;}
.ybb{bottom:464.835750px;}
.y11b{bottom:464.841000px;}
.yfb{bottom:468.048750px;}
.y13e{bottom:475.431000px;}
.y9d{bottom:476.911500px;}
.y183{bottom:482.500500px;}
.y32{bottom:484.338000px;}
.ydc{bottom:485.680500px;}
.yba{bottom:485.691000px;}
.y11a{bottom:485.696250px;}
.y15e{bottom:485.763750px;}
.yfa{bottom:489.042000px;}
.y7a{bottom:493.795500px;}
.y58{bottom:494.700750px;}
.y9c{bottom:496.861500px;}
.y13d{bottom:500.121000px;}
.y182{bottom:502.000500px;}
.y15d{bottom:504.963000px;}
.y31{bottom:505.193250px;}
.y119{bottom:506.520000px;}
.ydb{bottom:506.535750px;}
.yb9{bottom:506.546250px;}
.yf9{bottom:510.035250px;}
.ye{bottom:512.235000px;}
.y57{bottom:518.251500px;}
.y181{bottom:521.500500px;}
.y13c{bottom:524.811000px;}
.y30{bottom:526.038000px;}
.yb8{bottom:527.349000px;}
.y118{bottom:527.375250px;}
.yda{bottom:527.391000px;}
.y9b{bottom:527.423250px;}
.yf8{bottom:531.028500px;}
.y15c{bottom:532.667250px;}
.yd{bottom:538.338000px;}
.y180{bottom:541.000500px;}
.y2f{bottom:546.893250px;}
.yb7{bottom:548.204250px;}
.y117{bottom:548.230500px;}
.yd9{bottom:548.246250px;}
.y9a{bottom:548.727000px;}
.y13b{bottom:549.501000px;}
.y15b{bottom:551.866500px;}
.yf7{bottom:552.021750px;}
.y17f{bottom:560.500500px;}
.y2e{bottom:567.748500px;}
.yb6{bottom:569.059500px;}
.y116{bottom:569.085750px;}
.yd8{bottom:569.091000px;}
.y99{bottom:570.030750px;}
.yf6{bottom:573.015000px;}
.y13a{bottom:574.191000px;}
.y56{bottom:576.294750px;}
.y15a{bottom:579.570750px;}
.y17e{bottom:580.000500px;}
.yc{bottom:580.356000px;}
.yb5{bottom:589.914750px;}
.y115{bottom:589.941000px;}
.yd7{bottom:589.946250px;}
.y98{bottom:591.334500px;}
.yf5{bottom:594.008250px;}
.y55{bottom:596.674500px;}
.y159{bottom:598.770000px;}
.y139{bottom:598.881000px;}
.y17d{bottom:599.500500px;}
.y2d{bottom:609.448500px;}
.yb4{bottom:610.770000px;}
.y114{bottom:610.796250px;}
.yd6{bottom:610.801500px;}
.y97{bottom:612.638250px;}
.yb{bottom:613.647000px;}
.yf4{bottom:615.001500px;}
.y54{bottom:617.081250px;}
.y17c{bottom:619.000500px;}
.y138{bottom:623.571000px;}
.y158{bottom:626.474250px;}
.yb3{bottom:631.625250px;}
.yd5{bottom:631.635750px;}
.y113{bottom:631.651500px;}
.y96{bottom:633.942000px;}
.y53{bottom:637.488000px;}
.y17b{bottom:638.500500px;}
.y157{bottom:645.673500px;}
.ya{bottom:646.938000px;}
.y137{bottom:648.261000px;}
.yb2{bottom:652.480500px;}
.yd4{bottom:652.491000px;}
.yf3{bottom:653.851500px;}
.y52{bottom:657.894750px;}
.y17a{bottom:658.000500px;}
.y95{bottom:665.871000px;}
.y2c{bottom:668.848500px;}
.y136{bottom:672.951000px;}
.yb1{bottom:673.335750px;}
.yd3{bottom:673.346250px;}
.y156{bottom:673.377750px;}
.y179{bottom:677.500500px;}
.y51{bottom:678.267750px;}
.y94{bottom:685.821000px;}
.y2b{bottom:688.348500px;}
.yb0{bottom:694.191000px;}
.yd2{bottom:694.196250px;}
.y178{bottom:697.000500px;}
.y135{bottom:697.641000px;}
.y50{bottom:698.674500px;}
.y155{bottom:701.082000px;}
.y154{bottom:701.082750px;}
.y93{bottom:705.771000px;}
.y134{bottom:706.641000px;}
.y2a{bottom:707.848500px;}
.yf2{bottom:713.708250px;}
.yaf{bottom:715.046250px;}
.y9{bottom:717.433500px;}
.y4f{bottom:719.081250px;}
.y153{bottom:720.282000px;}
.y152{bottom:720.290250px;}
.y29{bottom:727.348500px;}
.y177{bottom:731.500500px;}
.yf1{bottom:734.755500px;}
.y112{bottom:735.864750px;}
.yae{bottom:735.880500px;}
.yd1{bottom:735.896250px;}
.y92{bottom:736.347750px;}
.y4e{bottom:739.488000px;}
.y28{bottom:746.848500px;}
.y8{bottom:746.968500px;}
.y133{bottom:747.451500px;}
.y151{bottom:747.994500px;}
.yf0{bottom:755.748750px;}
.y111{bottom:756.720000px;}
.yad{bottom:756.735750px;}
.ycf{bottom:756.741000px;}
.y79{bottom:756.746250px;}
.yd0{bottom:756.751500px;}
.y91{bottom:757.651500px;}
.y4d{bottom:759.894750px;}
.y7{bottom:765.868500px;}
.y132{bottom:765.901500px;}
.y27{bottom:766.348500px;}
.y150{bottom:767.193750px;}
.yef{bottom:776.742000px;}
.y110{bottom:777.575250px;}
.y78{bottom:777.591000px;}
.yce{bottom:777.596250px;}
.y176{bottom:779.500500px;}
.y4c{bottom:780.261000px;}
.y131{bottom:784.351500px;}
.y26{bottom:785.848500px;}
.y14f{bottom:794.898000px;}
.y90{bottom:796.951500px;}
.yee{bottom:797.735250px;}
.y10f{bottom:798.430500px;}
.ycd{bottom:798.441000px;}
.y77{bottom:798.446250px;}
.y4b{bottom:800.667750px;}
.y175{bottom:804.700500px;}
.y25{bottom:805.348500px;}
.y14e{bottom:814.097250px;}
.y6{bottom:817.464000px;}
.yed{bottom:818.728500px;}
.yac{bottom:819.280500px;}
.y10e{bottom:819.285750px;}
.y76{bottom:819.296250px;}
.y130{bottom:820.522500px;}
.y4a{bottom:821.074500px;}
.y8f{bottom:821.251500px;}
.y24{bottom:824.848500px;}
.yec{bottom:839.721750px;}
.yab{bottom:840.135750px;}
.y10d{bottom:840.141000px;}
.y75{bottom:840.146250px;}
.y12f{bottom:841.067250px;}
.y49{bottom:841.481250px;}
.y14d{bottom:841.801500px;}
.y23{bottom:844.348500px;}
.y5{bottom:846.999000px;}
.yeb{bottom:860.715000px;}
.y74{bottom:860.991000px;}
.y10c{bottom:860.996250px;}
.y14c{bottom:861.000750px;}
.ycc{bottom:861.001500px;}
.y12e{bottom:861.612000px;}
.y48{bottom:861.888000px;}
.y22{bottom:863.848500px;}
.y174{bottom:865.302000px;}
.y4{bottom:865.899000px;}
.y8e{bottom:881.553000px;}
.yea{bottom:881.708250px;}
.y73{bottom:881.846250px;}
.y12d{bottom:882.156750px;}
.y47{bottom:882.294750px;}
.y173{bottom:884.501250px;}
.y3{bottom:884.799000px;}
.y46{bottom:902.701500px;}
.y2{bottom:903.699000px;}
.y172{bottom:903.700500px;}
.y21{bottom:904.198500px;}
.y20{bottom:948.408000px;}
.y171{bottom:948.409500px;}
.y45{bottom:966.408000px;}
.h15{height:13.542000px;}
.h1a{height:13.935000px;}
.h12{height:16.746000px;}
.h16{height:16.747500px;}
.h11{height:29.039941px;}
.h1e{height:32.790586px;}
.h8{height:40.757812px;}
.h14{height:45.852539px;}
.h25{height:49.054688px;}
.h2d{height:49.341797px;}
.h4{height:50.947266px;}
.h1f{height:51.600586px;}
.h2b{height:52.627266px;}
.h3{height:53.494629px;}
.h27{height:54.041016px;}
.h13{height:55.792969px;}
.h7{height:57.333984px;}
.ha{height:58.589355px;}
.h19{height:58.610355px;}
.hb{height:58.631355px;}
.h26{height:58.652355px;}
.h1c{height:58.664355px;}
.h22{height:58.694355px;}
.hf{height:58.697355px;}
.h28{height:58.715355px;}
.he{height:58.724355px;}
.hc{height:58.820355px;}
.h2c{height:60.200684px;}
.h2{height:63.684082px;}
.h10{height:65.934082px;}
.h18{height:65.955082px;}
.h1d{height:65.964082px;}
.h17{height:65.976082px;}
.h1b{height:65.994082px;}
.h24{height:65.997082px;}
.h20{height:66.018082px;}
.h23{height:66.081082px;}
.hd{height:66.096082px;}
.h21{height:66.144082px;}
.h9{height:68.778809px;}
.h6{height:71.326172px;}
.h29{height:86.947266px;}
.h5{height:91.705078px;}
.h2a{height:122.947266px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w5{width:20.191500px;}
.w3{width:25.077000px;}
.w4{width:30.448500px;}
.w2{width:31.135500px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x10{left:-99.280050px;}
.xc{left:-66.081600px;}
.xb{left:-37.521000px;}
.x0{left:0.000000px;}
.x7{left:1.597500px;}
.x4{left:85.044750px;}
.x5{left:89.100600px;}
.x24{left:93.312000px;}
.x9{left:99.922275px;}
.x3{left:106.291500px;}
.x1b{left:119.852700px;}
.x12{left:127.534762px;}
.xe{left:136.062900px;}
.xf{left:137.463000px;}
.x21{left:141.142200px;}
.x1f{left:143.863950px;}
.x20{left:144.961200px;}
.x1e{left:147.469200px;}
.x11{left:157.654500px;}
.x6{left:186.430500px;}
.xa{left:191.937000px;}
.x19{left:204.553500px;}
.x1a{left:209.869500px;}
.x8{left:217.566000px;}
.x23{left:219.638250px;}
.xd{left:221.580000px;}
.x2{left:233.857500px;}
.x1c{left:240.407700px;}
.x28{left:255.834000px;}
.x25{left:294.157500px;}
.x29{left:297.486000px;}
.x26{left:301.029000px;}
.x15{left:325.357500px;}
.x16{left:390.346500px;}
.x17{left:395.740500px;}
.x18{left:400.945500px;}
.x27{left:410.766000px;}
.x13{left:446.572500px;}
.x14{left:469.921500px;}
.x22{left:489.751500px;}
.x1d{left:520.633950px;}
.x1{left:619.045500px;}
@media print{
.v3{vertical-align:-16.720000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.493333pt;}
.v1{vertical-align:17.605333pt;}
.v2{vertical-align:20.277333pt;}
.v4{vertical-align:32.000000pt;}
.ls3b{letter-spacing:-2.392000pt;}
.ls27{letter-spacing:-2.080000pt;}
.ls6e{letter-spacing:-0.840000pt;}
.ls26{letter-spacing:-0.797333pt;}
.ls1c{letter-spacing:-0.613333pt;}
.ls71{letter-spacing:-0.560000pt;}
.ls11{letter-spacing:-0.490667pt;}
.ls72{letter-spacing:-0.448000pt;}
.ls24{letter-spacing:-0.429333pt;}
.ls73{letter-spacing:-0.392000pt;}
.ls41{letter-spacing:-0.368000pt;}
.ls6d{letter-spacing:-0.336000pt;}
.ls31{letter-spacing:-0.306667pt;}
.ls6c{letter-spacing:-0.280000pt;}
.ls25{letter-spacing:-0.257600pt;}
.ls3c{letter-spacing:-0.240000pt;}
.ls43{letter-spacing:-0.192000pt;}
.ls3a{letter-spacing:-0.184000pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls28{letter-spacing:-0.122667pt;}
.ls1d{letter-spacing:-0.096000pt;}
.ls32{letter-spacing:-0.061333pt;}
.ls1e{letter-spacing:-0.048000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.002807pt;}
.ls2a{letter-spacing:0.011228pt;}
.ls22{letter-spacing:0.013474pt;}
.ls1f{letter-spacing:0.016561pt;}
.ls19{letter-spacing:0.048000pt;}
.ls3d{letter-spacing:0.055018pt;}
.ls2d{letter-spacing:0.061333pt;}
.lsb{letter-spacing:0.106667pt;}
.ls42{letter-spacing:0.122667pt;}
.ls30{letter-spacing:0.144000pt;}
.ls21{letter-spacing:0.148772pt;}
.ls5{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.184000pt;}
.ls2f{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.245333pt;}
.ls45{letter-spacing:0.266667pt;}
.ls6b{letter-spacing:0.280000pt;}
.ls1a{letter-spacing:0.288000pt;}
.lse{letter-spacing:0.306667pt;}
.ls1b{letter-spacing:0.336000pt;}
.ls35{letter-spacing:0.357614pt;}
.ls14{letter-spacing:0.367719pt;}
.ls39{letter-spacing:0.368000pt;}
.ls3{letter-spacing:0.373333pt;}
.ls2e{letter-spacing:0.429333pt;}
.ls15{letter-spacing:0.457544pt;}
.ls44{letter-spacing:0.478400pt;}
.ls18{letter-spacing:0.487298pt;}
.lsd{letter-spacing:0.490667pt;}
.ls75{letter-spacing:0.504000pt;}
.ls6{letter-spacing:0.533333pt;}
.ls38{letter-spacing:0.552000pt;}
.ls66{letter-spacing:0.560000pt;}
.ls13{letter-spacing:0.613333pt;}
.ls67{letter-spacing:0.616000pt;}
.ls29{letter-spacing:0.674667pt;}
.ls68{letter-spacing:0.728000pt;}
.ls74{letter-spacing:0.784000pt;}
.ls17{letter-spacing:0.797333pt;}
.ls3e{letter-spacing:0.858667pt;}
.ls6a{letter-spacing:0.896000pt;}
.ls34{letter-spacing:0.981333pt;}
.ls16{letter-spacing:1.042667pt;}
.ls33{letter-spacing:1.104000pt;}
.ls20{letter-spacing:1.349333pt;}
.ls23{letter-spacing:1.585965pt;}
.lsc{letter-spacing:1.800000pt;}
.ls36{letter-spacing:1.840000pt;}
.ls10{letter-spacing:2.426667pt;}
.ls0{letter-spacing:3.466667pt;}
.ls2b{letter-spacing:3.783860pt;}
.ls2c{letter-spacing:3.786667pt;}
.ls76{letter-spacing:4.800000pt;}
.ls1{letter-spacing:5.333333pt;}
.ls9{letter-spacing:5.546667pt;}
.ls62{letter-spacing:5.600000pt;}
.lsa{letter-spacing:6.872000pt;}
.ls40{letter-spacing:7.053333pt;}
.ls4{letter-spacing:7.466667pt;}
.ls65{letter-spacing:7.560000pt;}
.ls70{letter-spacing:7.840000pt;}
.ls2{letter-spacing:8.000000pt;}
.ls63{letter-spacing:8.064000pt;}
.ls64{letter-spacing:8.400000pt;}
.ls69{letter-spacing:8.792000pt;}
.ls6f{letter-spacing:9.016000pt;}
.ls3f{letter-spacing:16.756126pt;}
.ls5e{letter-spacing:454.400000pt;}
.ls49{letter-spacing:459.893333pt;}
.ls4c{letter-spacing:460.266667pt;}
.ls52{letter-spacing:463.520000pt;}
.ls4f{letter-spacing:465.653333pt;}
.ls5b{letter-spacing:468.533333pt;}
.ls61{letter-spacing:469.120000pt;}
.ls55{letter-spacing:469.813333pt;}
.ls58{letter-spacing:470.506667pt;}
.ls4d{letter-spacing:479.573333pt;}
.ls4a{letter-spacing:480.213333pt;}
.ls56{letter-spacing:480.586667pt;}
.ls5f{letter-spacing:482.453333pt;}
.ls46{letter-spacing:483.200000pt;}
.ls47{letter-spacing:483.680000pt;}
.ls53{letter-spacing:485.333333pt;}
.ls5c{letter-spacing:485.813333pt;}
.ls50{letter-spacing:486.933333pt;}
.ls59{letter-spacing:491.840000pt;}
.ls54{letter-spacing:509.706667pt;}
.ls5d{letter-spacing:510.986667pt;}
.ls4e{letter-spacing:511.413333pt;}
.ls57{letter-spacing:511.840000pt;}
.ls4b{letter-spacing:512.746667pt;}
.ls48{letter-spacing:513.546667pt;}
.ls60{letter-spacing:516.053333pt;}
.ls5a{letter-spacing:518.506667pt;}
.ls51{letter-spacing:519.573333pt;}
.ws16{word-spacing:-61.333333pt;}
.wsa{word-spacing:-48.048000pt;}
.ws8{word-spacing:-48.000000pt;}
.wsb{word-spacing:-47.952000pt;}
.wsc{word-spacing:-47.904000pt;}
.ws9{word-spacing:-35.520000pt;}
.ws1{word-spacing:-22.986667pt;}
.ws21{word-spacing:-21.336000pt;}
.ws0{word-spacing:-18.733333pt;}
.ws7{word-spacing:-18.032000pt;}
.ws15{word-spacing:-17.541333pt;}
.ws10{word-spacing:-17.234667pt;}
.ws14{word-spacing:-17.173333pt;}
.ws17{word-spacing:-16.866667pt;}
.wse{word-spacing:-16.437333pt;}
.ws6{word-spacing:-15.762667pt;}
.ws12{word-spacing:-15.578667pt;}
.ws3{word-spacing:-15.520000pt;}
.ws1a{word-spacing:-15.333333pt;}
.ws1e{word-spacing:-15.253333pt;}
.ws18{word-spacing:-15.210667pt;}
.wsf{word-spacing:-15.149333pt;}
.ws1c{word-spacing:-15.088000pt;}
.ws1d{word-spacing:-14.965333pt;}
.ws11{word-spacing:-14.720000pt;}
.ws13{word-spacing:-12.000000pt;}
.ws19{word-spacing:-11.856000pt;}
.ws1b{word-spacing:-10.819200pt;}
.ws5{word-spacing:-10.340800pt;}
.wsd{word-spacing:-10.083200pt;}
.ws2{word-spacing:-8.992000pt;}
.ws4{word-spacing:0.000000pt;}
.ws1f{word-spacing:234.240000pt;}
.ws20{word-spacing:1359.893333pt;}
._0{margin-left:-1436.224000pt;}
._1d{margin-left:-16.605333pt;}
._e{margin-left:-15.093333pt;}
._27{margin-left:-13.325333pt;}
._1b{margin-left:-11.136000pt;}
._1e{margin-left:-10.085333pt;}
._11{margin-left:-8.589333pt;}
._a{margin-left:-7.424000pt;}
._9{margin-left:-6.240000pt;}
._5{margin-left:-5.333333pt;}
._3{margin-left:-3.850667pt;}
._d{margin-left:-2.666667pt;}
._6{margin-left:-1.706667pt;}
._2{width:1.013333pt;}
._c{width:2.560000pt;}
._1{width:3.626667pt;}
._4{width:4.533333pt;}
._7{width:6.080000pt;}
._b{width:7.552000pt;}
._8{width:9.173333pt;}
._1c{width:10.226667pt;}
._28{width:14.504000pt;}
._12{width:16.756126pt;}
._1a{width:30.666667pt;}
._10{width:42.560000pt;}
._15{width:52.800000pt;}
._13{width:107.306667pt;}
._18{width:109.120000pt;}
._16{width:124.437333pt;}
._17{width:137.664000pt;}
._19{width:183.840000pt;}
._14{width:187.146667pt;}
._1f{width:212.853333pt;}
._f{width:231.765333pt;}
._20{width:260.373333pt;}
._23{width:1165.386667pt;}
._26{width:1197.386667pt;}
._21{width:1236.586667pt;}
._25{width:1256.053333pt;}
._22{width:1313.013333pt;}
._24{width:1360.160000pt;}
.fsc{font-size:30.400000pt;}
.fs5{font-size:32.000000pt;}
.fsb{font-size:36.800000pt;}
.fs6{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fsa{font-size:61.333333pt;}
.fse{font-size:64.000000pt;}
.fs0{font-size:66.666667pt;}
.fs9{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:2.081333pt;}
.y8b{bottom:2.431333pt;}
.y62{bottom:4.930667pt;}
.y6c{bottom:4.932000pt;}
.y1{bottom:50.393333pt;}
.y1f{bottom:50.394000pt;}
.y170{bottom:50.394667pt;}
.y10b{bottom:94.491200pt;}
.y72{bottom:94.493867pt;}
.ycb{bottom:94.496000pt;}
.y16f{bottom:96.308000pt;}
.y44{bottom:96.908667pt;}
.y1e{bottom:97.284667pt;}
.y12c{bottom:98.046000pt;}
.y8d{bottom:98.668533pt;}
.y14b{bottom:102.013333pt;}
.y71{bottom:109.157867pt;}
.yca{bottom:109.160000pt;}
.y8a{bottom:110.668000pt;}
.y1d{bottom:112.618000pt;}
.y10a{bottom:113.335200pt;}
.y16e{bottom:113.374000pt;}
.y8c{bottom:114.824533pt;}
.y43{bottom:115.446667pt;}
.y12b{bottom:116.584000pt;}
.y89{bottom:119.004533pt;}
.y14a{bottom:123.733333pt;}
.yc9{bottom:123.824000pt;}
.y1c{bottom:127.951333pt;}
.y70{bottom:128.001867pt;}
.y16d{bottom:130.440000pt;}
.y42{bottom:133.984667pt;}
.y12a{bottom:135.122000pt;}
.yc8{bottom:142.668000pt;}
.y149{bottom:145.453333pt;}
.y16c{bottom:147.506000pt;}
.y6f{bottom:148.337333pt;}
.y41{bottom:152.522667pt;}
.y129{bottom:153.660000pt;}
.y109{bottom:154.746000pt;}
.y88{bottom:154.868000pt;}
.y6e{bottom:164.496000pt;}
.y148{bottom:167.173333pt;}
.yaa{bottom:168.336667pt;}
.y40{bottom:171.060667pt;}
.y16b{bottom:172.132000pt;}
.y128{bottom:172.198000pt;}
.y87{bottom:172.201333pt;}
.y6b{bottom:172.734667pt;}
.y108{bottom:173.406667pt;}
.y1b{bottom:173.722667pt;}
.y6d{bottom:179.160000pt;}
.y6a{bottom:183.340000pt;}
.ya9{bottom:187.266667pt;}
.y147{bottom:188.893333pt;}
.y16a{bottom:189.198000pt;}
.y86{bottom:189.534667pt;}
.y3f{bottom:189.589333pt;}
.ye9{bottom:190.722000pt;}
.y127{bottom:190.736000pt;}
.yc7{bottom:190.787333pt;}
.y1a{bottom:191.856000pt;}
.y107{bottom:192.067333pt;}
.y69{bottom:199.498667pt;}
.ya8{bottom:206.203333pt;}
.y169{bottom:206.264000pt;}
.y3e{bottom:208.127333pt;}
.ye8{bottom:209.260000pt;}
.y126{bottom:209.274000pt;}
.yc6{bottom:209.325333pt;}
.y19{bottom:209.989333pt;}
.y66{bottom:210.006667pt;}
.y146{bottom:210.613333pt;}
.y106{bottom:210.728000pt;}
.y68{bottom:214.162667pt;}
.y85{bottom:216.306667pt;}
.y65{bottom:218.342667pt;}
.ya7{bottom:225.123333pt;}
.y3d{bottom:226.614000pt;}
.ye7{bottom:227.798000pt;}
.y125{bottom:227.812000pt;}
.yc5{bottom:227.863333pt;}
.y18{bottom:228.122667pt;}
.y105{bottom:229.388667pt;}
.y168{bottom:230.890000pt;}
.y145{bottom:232.333333pt;}
.y64{bottom:234.501333pt;}
.y84{bottom:234.844667pt;}
.y18a{bottom:242.356000pt;}
.y61{bottom:242.741333pt;}
.ya6{bottom:244.060000pt;}
.y3c{bottom:245.152000pt;}
.y17{bottom:246.256000pt;}
.ye6{bottom:246.336000pt;}
.y124{bottom:246.350000pt;}
.yc4{bottom:246.368667pt;}
.y167{bottom:247.956000pt;}
.y104{bottom:248.049333pt;}
.y63{bottom:249.165333pt;}
.y60{bottom:253.345333pt;}
.y83{bottom:253.382667pt;}
.y144{bottom:254.053333pt;}
.y189{bottom:260.356000pt;}
.ya5{bottom:262.996667pt;}
.y3b{bottom:263.690000pt;}
.y16{bottom:264.389333pt;}
.ye5{bottom:264.874000pt;}
.y123{bottom:264.888000pt;}
.yc3{bottom:264.906667pt;}
.y103{bottom:266.710000pt;}
.y166{bottom:272.582000pt;}
.y188{bottom:278.356000pt;}
.y82{bottom:281.361333pt;}
.ya4{bottom:281.933333pt;}
.y3a{bottom:282.228000pt;}
.y143{bottom:282.333333pt;}
.y15{bottom:282.522667pt;}
.ye4{bottom:283.412000pt;}
.y122{bottom:283.426000pt;}
.yc2{bottom:283.444667pt;}
.y102{bottom:285.370667pt;}
.y165{bottom:289.648000pt;}
.y5f{bottom:297.432000pt;}
.y14{bottom:300.656000pt;}
.y39{bottom:300.766000pt;}
.ya3{bottom:300.870000pt;}
.ye3{bottom:301.950000pt;}
.y121{bottom:301.964000pt;}
.yc1{bottom:301.982667pt;}
.y101{bottom:304.031333pt;}
.y164{bottom:306.714000pt;}
.y81{bottom:308.148000pt;}
.y187{bottom:312.089333pt;}
.y142{bottom:312.525333pt;}
.y5e{bottom:315.571333pt;}
.y13{bottom:318.789333pt;}
.y38{bottom:319.304000pt;}
.ya2{bottom:319.793333pt;}
.ye2{bottom:320.488000pt;}
.y120{bottom:320.502000pt;}
.yc0{bottom:320.520667pt;}
.y100{bottom:322.692000pt;}
.y80{bottom:325.481333pt;}
.y186{bottom:330.089333pt;}
.y163{bottom:331.340000pt;}
.y5d{bottom:333.710667pt;}
.y12{bottom:336.922667pt;}
.y37{bottom:337.842000pt;}
.ya1{bottom:338.730000pt;}
.ye1{bottom:339.026000pt;}
.y11f{bottom:339.040000pt;}
.ybf{bottom:339.058667pt;}
.y141{bottom:340.845333pt;}
.yff{bottom:341.352667pt;}
.y7f{bottom:342.814667pt;}
.y185{bottom:348.089333pt;}
.y162{bottom:348.406000pt;}
.y5c{bottom:351.850000pt;}
.y11{bottom:355.056000pt;}
.y36{bottom:356.380000pt;}
.y140{bottom:357.245333pt;}
.ye0{bottom:357.564000pt;}
.y11e{bottom:357.578000pt;}
.ybe{bottom:357.596667pt;}
.ya0{bottom:357.666667pt;}
.yfe{bottom:360.013333pt;}
.y7e{bottom:360.148000pt;}
.y161{bottom:365.472000pt;}
.y5b{bottom:369.989333pt;}
.y10{bottom:373.189333pt;}
.y35{bottom:374.918000pt;}
.ydf{bottom:376.102000pt;}
.ybd{bottom:376.111333pt;}
.y11d{bottom:376.116000pt;}
.y9f{bottom:376.603333pt;}
.y7d{bottom:377.481333pt;}
.yfd{bottom:378.674000pt;}
.y184{bottom:379.422667pt;}
.y5a{bottom:388.128667pt;}
.y160{bottom:390.098000pt;}
.y34{bottom:393.456000pt;}
.yde{bottom:394.640000pt;}
.ybc{bottom:394.649333pt;}
.y11c{bottom:394.654000pt;}
.y7c{bottom:394.814667pt;}
.y9e{bottom:395.540000pt;}
.yfc{bottom:397.382667pt;}
.y13f{bottom:400.658667pt;}
.yf{bottom:405.456000pt;}
.y59{bottom:406.268000pt;}
.y15f{bottom:407.164000pt;}
.y33{bottom:411.994000pt;}
.y7b{bottom:412.148000pt;}
.ydd{bottom:413.178000pt;}
.ybb{bottom:413.187333pt;}
.y11b{bottom:413.192000pt;}
.yfb{bottom:416.043333pt;}
.y13e{bottom:422.605333pt;}
.y9d{bottom:423.921333pt;}
.y183{bottom:428.889333pt;}
.y32{bottom:430.522667pt;}
.ydc{bottom:431.716000pt;}
.yba{bottom:431.725333pt;}
.y11a{bottom:431.730000pt;}
.y15e{bottom:431.790000pt;}
.yfa{bottom:434.704000pt;}
.y7a{bottom:438.929333pt;}
.y58{bottom:439.734000pt;}
.y9c{bottom:441.654667pt;}
.y13d{bottom:444.552000pt;}
.y182{bottom:446.222667pt;}
.y15d{bottom:448.856000pt;}
.y31{bottom:449.060667pt;}
.y119{bottom:450.240000pt;}
.ydb{bottom:450.254000pt;}
.yb9{bottom:450.263333pt;}
.yf9{bottom:453.364667pt;}
.ye{bottom:455.320000pt;}
.y57{bottom:460.668000pt;}
.y181{bottom:463.556000pt;}
.y13c{bottom:466.498667pt;}
.y30{bottom:467.589333pt;}
.yb8{bottom:468.754667pt;}
.y118{bottom:468.778000pt;}
.yda{bottom:468.792000pt;}
.y9b{bottom:468.820667pt;}
.yf8{bottom:472.025333pt;}
.y15c{bottom:473.482000pt;}
.yd{bottom:478.522667pt;}
.y180{bottom:480.889333pt;}
.y2f{bottom:486.127333pt;}
.yb7{bottom:487.292667pt;}
.y117{bottom:487.316000pt;}
.yd9{bottom:487.330000pt;}
.y9a{bottom:487.757333pt;}
.y13b{bottom:488.445333pt;}
.y15b{bottom:490.548000pt;}
.yf7{bottom:490.686000pt;}
.y17f{bottom:498.222667pt;}
.y2e{bottom:504.665333pt;}
.yb6{bottom:505.830667pt;}
.y116{bottom:505.854000pt;}
.yd8{bottom:505.858667pt;}
.y99{bottom:506.694000pt;}
.yf6{bottom:509.346667pt;}
.y13a{bottom:510.392000pt;}
.y56{bottom:512.262000pt;}
.y15a{bottom:515.174000pt;}
.y17e{bottom:515.556000pt;}
.yc{bottom:515.872000pt;}
.yb5{bottom:524.368667pt;}
.y115{bottom:524.392000pt;}
.yd7{bottom:524.396667pt;}
.y98{bottom:525.630667pt;}
.yf5{bottom:528.007333pt;}
.y55{bottom:530.377333pt;}
.y159{bottom:532.240000pt;}
.y139{bottom:532.338667pt;}
.y17d{bottom:532.889333pt;}
.y2d{bottom:541.732000pt;}
.yb4{bottom:542.906667pt;}
.y114{bottom:542.930000pt;}
.yd6{bottom:542.934667pt;}
.y97{bottom:544.567333pt;}
.yb{bottom:545.464000pt;}
.yf4{bottom:546.668000pt;}
.y54{bottom:548.516667pt;}
.y17c{bottom:550.222667pt;}
.y138{bottom:554.285333pt;}
.y158{bottom:556.866000pt;}
.yb3{bottom:561.444667pt;}
.yd5{bottom:561.454000pt;}
.y113{bottom:561.468000pt;}
.y96{bottom:563.504000pt;}
.y53{bottom:566.656000pt;}
.y17b{bottom:567.556000pt;}
.y157{bottom:573.932000pt;}
.ya{bottom:575.056000pt;}
.y137{bottom:576.232000pt;}
.yb2{bottom:579.982667pt;}
.yd4{bottom:579.992000pt;}
.yf3{bottom:581.201333pt;}
.y52{bottom:584.795333pt;}
.y17a{bottom:584.889333pt;}
.y95{bottom:591.885333pt;}
.y2c{bottom:594.532000pt;}
.y136{bottom:598.178667pt;}
.yb1{bottom:598.520667pt;}
.yd3{bottom:598.530000pt;}
.y156{bottom:598.558000pt;}
.y179{bottom:602.222667pt;}
.y51{bottom:602.904667pt;}
.y94{bottom:609.618667pt;}
.y2b{bottom:611.865333pt;}
.yb0{bottom:617.058667pt;}
.yd2{bottom:617.063333pt;}
.y178{bottom:619.556000pt;}
.y135{bottom:620.125333pt;}
.y50{bottom:621.044000pt;}
.y155{bottom:623.184000pt;}
.y154{bottom:623.184667pt;}
.y93{bottom:627.352000pt;}
.y134{bottom:628.125333pt;}
.y2a{bottom:629.198667pt;}
.yf2{bottom:634.407333pt;}
.yaf{bottom:635.596667pt;}
.y9{bottom:637.718667pt;}
.y4f{bottom:639.183333pt;}
.y153{bottom:640.250667pt;}
.y152{bottom:640.258000pt;}
.y29{bottom:646.532000pt;}
.y177{bottom:650.222667pt;}
.yf1{bottom:653.116000pt;}
.y112{bottom:654.102000pt;}
.yae{bottom:654.116000pt;}
.yd1{bottom:654.130000pt;}
.y92{bottom:654.531333pt;}
.y4e{bottom:657.322667pt;}
.y28{bottom:663.865333pt;}
.y8{bottom:663.972000pt;}
.y133{bottom:664.401333pt;}
.y151{bottom:664.884000pt;}
.yf0{bottom:671.776667pt;}
.y111{bottom:672.640000pt;}
.yad{bottom:672.654000pt;}
.ycf{bottom:672.658667pt;}
.y79{bottom:672.663333pt;}
.yd0{bottom:672.668000pt;}
.y91{bottom:673.468000pt;}
.y4d{bottom:675.462000pt;}
.y7{bottom:680.772000pt;}
.y132{bottom:680.801333pt;}
.y27{bottom:681.198667pt;}
.y150{bottom:681.950000pt;}
.yef{bottom:690.437333pt;}
.y110{bottom:691.178000pt;}
.y78{bottom:691.192000pt;}
.yce{bottom:691.196667pt;}
.y176{bottom:692.889333pt;}
.y4c{bottom:693.565333pt;}
.y131{bottom:697.201333pt;}
.y26{bottom:698.532000pt;}
.y14f{bottom:706.576000pt;}
.y90{bottom:708.401333pt;}
.yee{bottom:709.098000pt;}
.y10f{bottom:709.716000pt;}
.ycd{bottom:709.725333pt;}
.y77{bottom:709.730000pt;}
.y4b{bottom:711.704667pt;}
.y175{bottom:715.289333pt;}
.y25{bottom:715.865333pt;}
.y14e{bottom:723.642000pt;}
.y6{bottom:726.634667pt;}
.yed{bottom:727.758667pt;}
.yac{bottom:728.249333pt;}
.y10e{bottom:728.254000pt;}
.y76{bottom:728.263333pt;}
.y130{bottom:729.353333pt;}
.y4a{bottom:729.844000pt;}
.y8f{bottom:730.001333pt;}
.y24{bottom:733.198667pt;}
.yec{bottom:746.419333pt;}
.yab{bottom:746.787333pt;}
.y10d{bottom:746.792000pt;}
.y75{bottom:746.796667pt;}
.y12f{bottom:747.615333pt;}
.y49{bottom:747.983333pt;}
.y14d{bottom:748.268000pt;}
.y23{bottom:750.532000pt;}
.y5{bottom:752.888000pt;}
.yeb{bottom:765.080000pt;}
.y74{bottom:765.325333pt;}
.y10c{bottom:765.330000pt;}
.y14c{bottom:765.334000pt;}
.ycc{bottom:765.334667pt;}
.y12e{bottom:765.877333pt;}
.y48{bottom:766.122667pt;}
.y22{bottom:767.865333pt;}
.y174{bottom:769.157333pt;}
.y4{bottom:769.688000pt;}
.y8e{bottom:783.602667pt;}
.yea{bottom:783.740667pt;}
.y73{bottom:783.863333pt;}
.y12d{bottom:784.139333pt;}
.y47{bottom:784.262000pt;}
.y173{bottom:786.223333pt;}
.y3{bottom:786.488000pt;}
.y46{bottom:802.401333pt;}
.y2{bottom:803.288000pt;}
.y172{bottom:803.289333pt;}
.y21{bottom:803.732000pt;}
.y20{bottom:843.029333pt;}
.y171{bottom:843.030667pt;}
.y45{bottom:859.029333pt;}
.h15{height:12.037333pt;}
.h1a{height:12.386667pt;}
.h12{height:14.885333pt;}
.h16{height:14.886667pt;}
.h11{height:25.813281pt;}
.h1e{height:29.147187pt;}
.h8{height:36.229167pt;}
.h14{height:40.757812pt;}
.h25{height:43.604167pt;}
.h2d{height:43.859375pt;}
.h4{height:45.286458pt;}
.h1f{height:45.867188pt;}
.h2b{height:46.779792pt;}
.h3{height:47.550781pt;}
.h27{height:48.036458pt;}
.h13{height:49.593750pt;}
.h7{height:50.963542pt;}
.ha{height:52.079427pt;}
.h19{height:52.098094pt;}
.hb{height:52.116760pt;}
.h26{height:52.135427pt;}
.h1c{height:52.146094pt;}
.h22{height:52.172760pt;}
.hf{height:52.175427pt;}
.h28{height:52.191427pt;}
.he{height:52.199427pt;}
.hc{height:52.284760pt;}
.h2c{height:53.511719pt;}
.h2{height:56.608073pt;}
.h10{height:58.608073pt;}
.h18{height:58.626740pt;}
.h1d{height:58.634740pt;}
.h17{height:58.645406pt;}
.h1b{height:58.661406pt;}
.h24{height:58.664073pt;}
.h20{height:58.682740pt;}
.h23{height:58.738740pt;}
.hd{height:58.752073pt;}
.h21{height:58.794740pt;}
.h9{height:61.136719pt;}
.h6{height:63.401042pt;}
.h29{height:77.286458pt;}
.h5{height:81.515625pt;}
.h2a{height:109.286458pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w5{width:17.948000pt;}
.w3{width:22.290667pt;}
.w4{width:27.065333pt;}
.w2{width:27.676000pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x10{left:-88.248933pt;}
.xc{left:-58.739200pt;}
.xb{left:-33.352000pt;}
.x0{left:0.000000pt;}
.x7{left:1.420000pt;}
.x4{left:75.595333pt;}
.x5{left:79.200533pt;}
.x24{left:82.944000pt;}
.x9{left:88.819800pt;}
.x3{left:94.481333pt;}
.x1b{left:106.535733pt;}
.x12{left:113.364233pt;}
.xe{left:120.944800pt;}
.xf{left:122.189333pt;}
.x21{left:125.459733pt;}
.x1f{left:127.879067pt;}
.x20{left:128.854400pt;}
.x1e{left:131.083733pt;}
.x11{left:140.137333pt;}
.x6{left:165.716000pt;}
.xa{left:170.610667pt;}
.x19{left:181.825333pt;}
.x1a{left:186.550667pt;}
.x8{left:193.392000pt;}
.x23{left:195.234000pt;}
.xd{left:196.960000pt;}
.x2{left:207.873333pt;}
.x1c{left:213.695733pt;}
.x28{left:227.408000pt;}
.x25{left:261.473333pt;}
.x29{left:264.432000pt;}
.x26{left:267.581333pt;}
.x15{left:289.206667pt;}
.x16{left:346.974667pt;}
.x17{left:351.769333pt;}
.x18{left:356.396000pt;}
.x27{left:365.125333pt;}
.x13{left:396.953333pt;}
.x14{left:417.708000pt;}
.x22{left:435.334667pt;}
.x1d{left:462.785733pt;}
.x1{left:550.262667pt;}
}




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