
    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_d97f4326a114d2b879829516.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_0817691f0c61e4d66c70b67a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_4a2bc667451180ca5ac5ac20.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d53a8cd6c553d2e4c60a6f24.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;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_febeac64e2f93fafe30dbced.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_dbd04c2739ba84ff182bb838.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.820000px;}
.v1{vertical-align:19.800000px;}
.ls53{letter-spacing:-3.996000px;}
.ls4c{letter-spacing:-0.702000px;}
.ls39{letter-spacing:-0.648000px;}
.ls32{letter-spacing:-0.594000px;}
.lsd{letter-spacing:-0.540000px;}
.ls38{letter-spacing:-0.486000px;}
.lsc{letter-spacing:-0.480000px;}
.ls48{letter-spacing:-0.432000px;}
.ls37{letter-spacing:-0.378000px;}
.lsa{letter-spacing:-0.360000px;}
.ls47{letter-spacing:-0.324000px;}
.lsf{letter-spacing:-0.300000px;}
.ls20{letter-spacing:-0.270000px;}
.ls33{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.180000px;}
.ls34{letter-spacing:-0.162000px;}
.ls35{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.060000px;}
.ls36{letter-spacing:-0.054000px;}
.ls8{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.054000px;}
.ls30{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.120000px;}
.ls45{letter-spacing:0.162000px;}
.ls2d{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.219000px;}
.ls13{letter-spacing:0.240000px;}
.ls18{letter-spacing:0.270000px;}
.ls57{letter-spacing:0.378000px;}
.ls31{letter-spacing:0.432000px;}
.ls0{letter-spacing:0.480000px;}
.ls62{letter-spacing:0.485400px;}
.ls40{letter-spacing:0.486000px;}
.ls22{letter-spacing:0.540000px;}
.ls23{letter-spacing:0.594000px;}
.ls1f{letter-spacing:0.600000px;}
.ls4d{letter-spacing:0.648000px;}
.ls4{letter-spacing:0.660000px;}
.ls19{letter-spacing:0.702000px;}
.ls58{letter-spacing:0.756000px;}
.ls3b{letter-spacing:0.810000px;}
.ls6{letter-spacing:0.840000px;}
.ls21{letter-spacing:0.864000px;}
.ls1c{letter-spacing:0.918000px;}
.ls2{letter-spacing:0.960000px;}
.ls2b{letter-spacing:0.972000px;}
.ls59{letter-spacing:1.026000px;}
.ls5{letter-spacing:1.080000px;}
.ls2e{letter-spacing:1.134000px;}
.ls3d{letter-spacing:1.188000px;}
.ls61{letter-spacing:1.242000px;}
.ls3{letter-spacing:1.260000px;}
.ls3f{letter-spacing:1.296000px;}
.ls3a{letter-spacing:1.350000px;}
.ls17{letter-spacing:1.380000px;}
.ls1a{letter-spacing:1.404000px;}
.ls4a{letter-spacing:1.458000px;}
.ls29{letter-spacing:1.512000px;}
.ls50{letter-spacing:1.524000px;}
.ls3e{letter-spacing:1.566000px;}
.ls64{letter-spacing:1.592400px;}
.ls25{letter-spacing:1.620000px;}
.ls5b{letter-spacing:1.674000px;}
.ls4f{letter-spacing:1.728000px;}
.ls1d{letter-spacing:1.782000px;}
.ls3c{letter-spacing:1.836000px;}
.ls15{letter-spacing:1.860000px;}
.ls26{letter-spacing:1.890000px;}
.ls1b{letter-spacing:1.944000px;}
.ls2a{letter-spacing:1.998000px;}
.ls16{letter-spacing:2.040000px;}
.ls2f{letter-spacing:2.052000px;}
.ls56{letter-spacing:2.106000px;}
.ls43{letter-spacing:2.160000px;}
.ls52{letter-spacing:2.214000px;}
.ls2c{letter-spacing:2.268000px;}
.ls1e{letter-spacing:2.322000px;}
.ls44{letter-spacing:2.430000px;}
.ls9{letter-spacing:2.520000px;}
.ls10{letter-spacing:2.580000px;}
.ls54{letter-spacing:2.592000px;}
.ls7{letter-spacing:2.643600px;}
.ls63{letter-spacing:2.754000px;}
.ls5d{letter-spacing:2.916000px;}
.ls55{letter-spacing:3.078000px;}
.ls5a{letter-spacing:3.132000px;}
.ls11{letter-spacing:3.180000px;}
.ls49{letter-spacing:3.402000px;}
.ls4b{letter-spacing:3.672000px;}
.ls27{letter-spacing:3.780000px;}
.ls5f{letter-spacing:3.942000px;}
.ls60{letter-spacing:4.968000px;}
.ls5c{letter-spacing:5.076000px;}
.ls41{letter-spacing:6.192600px;}
.ls42{letter-spacing:6.193200px;}
.ls51{letter-spacing:6.767400px;}
.ls14{letter-spacing:6.823200px;}
.ls46{letter-spacing:7.281600px;}
.ls5e{letter-spacing:7.830000px;}
.ls4e{letter-spacing:8.292600px;}
.ls28{letter-spacing:11.337600px;}
.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;}
}
.ws8b{word-spacing:-16.578000px;}
.ws55{word-spacing:-15.336000px;}
.ws7e{word-spacing:-15.066000px;}
.ws7d{word-spacing:-15.012000px;}
.ws0{word-spacing:-15.000000px;}
.ws99{word-spacing:-14.958000px;}
.ws53{word-spacing:-14.850000px;}
.ws2e{word-spacing:-14.418000px;}
.ws54{word-spacing:-14.364000px;}
.ws6c{word-spacing:-14.094000px;}
.ws56{word-spacing:-14.040000px;}
.ws19{word-spacing:-13.770000px;}
.ws4{word-spacing:-13.620000px;}
.ws1b{word-spacing:-13.500000px;}
.ws9a{word-spacing:-13.284000px;}
.ws52{word-spacing:-13.176000px;}
.ws8c{word-spacing:-13.122000px;}
.ws1a{word-spacing:-12.960000px;}
.ws1{word-spacing:-8.700000px;}
.ws9b{word-spacing:-7.830000px;}
.ws96{word-spacing:-4.320000px;}
.ws2a{word-spacing:-3.888000px;}
.ws12{word-spacing:-3.780000px;}
.ws11{word-spacing:-3.720000px;}
.ws71{word-spacing:-3.672000px;}
.ws37{word-spacing:-3.402000px;}
.ws29{word-spacing:-3.348000px;}
.wsa6{word-spacing:-3.078000px;}
.ws9f{word-spacing:-2.916000px;}
.ws76{word-spacing:-2.808000px;}
.wsa5{word-spacing:-2.754000px;}
.ws81{word-spacing:-2.700000px;}
.ws8d{word-spacing:-2.592000px;}
.ws1f{word-spacing:-2.580000px;}
.wse{word-spacing:-2.520000px;}
.ws57{word-spacing:-2.484000px;}
.ws80{word-spacing:-2.376000px;}
.ws20{word-spacing:-2.280000px;}
.ws43{word-spacing:-2.268000px;}
.ws88{word-spacing:-2.214000px;}
.ws46{word-spacing:-2.052000px;}
.ws22{word-spacing:-2.040000px;}
.ws42{word-spacing:-1.998000px;}
.ws2b{word-spacing:-1.944000px;}
.ws39{word-spacing:-1.890000px;}
.ws5f{word-spacing:-1.836000px;}
.wsb{word-spacing:-1.800000px;}
.ws33{word-spacing:-1.782000px;}
.ws85{word-spacing:-1.728000px;}
.ws4f{word-spacing:-1.674000px;}
.ws36{word-spacing:-1.620000px;}
.ws84{word-spacing:-1.566000px;}
.wsa{word-spacing:-1.560000px;}
.ws67{word-spacing:-1.512000px;}
.ws4e{word-spacing:-1.458000px;}
.ws6e{word-spacing:-1.404000px;}
.ws62{word-spacing:-1.350000px;}
.ws64{word-spacing:-1.296000px;}
.wsd{word-spacing:-1.260000px;}
.ws94{word-spacing:-1.242000px;}
.ws63{word-spacing:-1.188000px;}
.ws79{word-spacing:-1.134000px;}
.wsf{word-spacing:-1.080000px;}
.ws74{word-spacing:-1.026000px;}
.ws3e{word-spacing:-0.972000px;}
.ws1c{word-spacing:-0.960000px;}
.ws2d{word-spacing:-0.918000px;}
.ws30{word-spacing:-0.864000px;}
.ws15{word-spacing:-0.840000px;}
.ws3d{word-spacing:-0.810000px;}
.ws93{word-spacing:-0.756000px;}
.ws5{word-spacing:-0.720000px;}
.ws82{word-spacing:-0.702000px;}
.ws1e{word-spacing:-0.660000px;}
.ws9{word-spacing:-0.600000px;}
.ws72{word-spacing:-0.594000px;}
.ws6b{word-spacing:-0.540000px;}
.ws65{word-spacing:-0.486000px;}
.ws51{word-spacing:-0.432000px;}
.ws24{word-spacing:-0.270000px;}
.ws60{word-spacing:-0.216000px;}
.ws6a{word-spacing:-0.162000px;}
.ws73{word-spacing:-0.108000px;}
.ws31{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.ws38{word-spacing:0.054000px;}
.ws16{word-spacing:0.060000px;}
.ws45{word-spacing:0.108000px;}
.ws58{word-spacing:0.162000px;}
.ws3c{word-spacing:0.216000px;}
.ws3b{word-spacing:0.270000px;}
.ws17{word-spacing:0.300000px;}
.ws69{word-spacing:0.324000px;}
.ws10{word-spacing:0.360000px;}
.ws6f{word-spacing:0.378000px;}
.ws59{word-spacing:0.432000px;}
.ws13{word-spacing:0.480000px;}
.ws47{word-spacing:0.486000px;}
.ws14{word-spacing:0.540000px;}
.ws35{word-spacing:0.594000px;}
.ws48{word-spacing:0.648000px;}
.ws70{word-spacing:0.702000px;}
.ws44{word-spacing:0.810000px;}
.ws5d{word-spacing:0.918000px;}
.ws1d{word-spacing:0.960000px;}
.ws3f{word-spacing:1.080000px;}
.ws75{word-spacing:1.134000px;}
.ws3{word-spacing:1.200000px;}
.ws5c{word-spacing:1.296000px;}
.ws95{word-spacing:1.404000px;}
.ws87{word-spacing:1.512000px;}
.ws61{word-spacing:1.566000px;}
.ws92{word-spacing:1.836000px;}
.ws34{word-spacing:1.944000px;}
.ws66{word-spacing:2.160000px;}
.ws5a{word-spacing:2.214000px;}
.ws8a{word-spacing:2.268000px;}
.ws97{word-spacing:2.376000px;}
.ws8e{word-spacing:2.538000px;}
.ws18{word-spacing:2.640000px;}
.ws41{word-spacing:2.646000px;}
.ws7f{word-spacing:2.700000px;}
.ws4a{word-spacing:2.754000px;}
.ws32{word-spacing:2.808000px;}
.ws90{word-spacing:3.348000px;}
.ws40{word-spacing:3.456000px;}
.ws27{word-spacing:3.564000px;}
.ws50{word-spacing:3.618000px;}
.ws49{word-spacing:3.726000px;}
.ws5b{word-spacing:3.780000px;}
.ws89{word-spacing:3.996000px;}
.ws78{word-spacing:4.104000px;}
.ws4d{word-spacing:4.266000px;}
.wsa2{word-spacing:4.320000px;}
.wsc{word-spacing:4.440000px;}
.ws2c{word-spacing:4.590000px;}
.ws21{word-spacing:4.620000px;}
.ws9e{word-spacing:4.698000px;}
.ws5e{word-spacing:4.752000px;}
.ws9c{word-spacing:4.806000px;}
.ws4b{word-spacing:4.860000px;}
.ws98{word-spacing:4.914000px;}
.ws4c{word-spacing:5.022000px;}
.ws83{word-spacing:5.292000px;}
.ws28{word-spacing:5.616000px;}
.ws7a{word-spacing:5.670000px;}
.wsa3{word-spacing:5.778000px;}
.ws91{word-spacing:5.832000px;}
.ws77{word-spacing:5.994000px;}
.ws68{word-spacing:6.210000px;}
.ws26{word-spacing:6.264000px;}
.ws6{word-spacing:6.300000px;}
.ws7c{word-spacing:6.318000px;}
.ws7b{word-spacing:6.534000px;}
.ws8{word-spacing:6.600000px;}
.ws86{word-spacing:6.642000px;}
.ws2f{word-spacing:6.696000px;}
.ws25{word-spacing:6.750000px;}
.ws8f{word-spacing:6.804000px;}
.ws6d{word-spacing:6.858000px;}
.ws7{word-spacing:7.500000px;}
.ws3a{word-spacing:7.560000px;}
.ws23{word-spacing:7.632000px;}
.wsa1{word-spacing:7.830000px;}
.wsa4{word-spacing:9.936000px;}
.ws9d{word-spacing:10.152000px;}
.wsa0{word-spacing:12.636000px;}
._f{margin-left:-94.500000px;}
._12{margin-left:-19.566000px;}
._4{margin-left:-10.836000px;}
._7{margin-left:-8.028000px;}
._5{margin-left:-6.216000px;}
._2{margin-left:-4.536000px;}
._6{margin-left:-3.300000px;}
._3{margin-left:-1.764000px;}
._8{width:1.500000px;}
._c{width:3.240000px;}
._e{width:5.160000px;}
._9{width:6.180000px;}
._d{width:7.680000px;}
._a{width:8.760000px;}
._b{width:9.900000px;}
._11{width:10.920000px;}
._1{width:1111.340400px;}
._0{width:1399.268400px;}
._10{width:1480.293600px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,51,0);}
.fc1{color:rgb(255,0,0);}
.fc7{color:rgb(51,51,51);}
.fc6{color:rgb(41,37,38);}
.fc5{color:rgb(28,28,28);}
.fc4{color:rgb(17,17,17);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:31.320000px;}
.fs3{font-size:34.800000px;}
.fs4{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yf1{bottom:89.701500px;}
.yc1{bottom:89.714700px;}
.y91{bottom:89.932200px;}
.y171{bottom:90.164550px;}
.y122{bottom:91.501500px;}
.y167{bottom:93.764700px;}
.y14d{bottom:93.914550px;}
.y2d{bottom:95.875950px;}
.y1e{bottom:95.890500px;}
.y5d{bottom:96.705900px;}
.y49{bottom:98.014200px;}
.y170{bottom:103.664550px;}
.yf0{bottom:105.901500px;}
.yc0{bottom:105.914550px;}
.y90{bottom:106.132200px;}
.y121{bottom:108.001500px;}
.y166{bottom:109.964700px;}
.y14c{bottom:110.714700px;}
.y5c{bottom:112.905900px;}
.y2c{bottom:113.875950px;}
.y1d{bottom:113.890500px;}
.y48{bottom:114.214200px;}
.y16f{bottom:117.164550px;}
.yef{bottom:122.101500px;}
.ybf{bottom:122.114700px;}
.y8f{bottom:122.332200px;}
.y120{bottom:124.501500px;}
.y165{bottom:126.164700px;}
.y14b{bottom:127.514700px;}
.y5b{bottom:129.105900px;}
.y16e{bottom:130.664700px;}
.y2b{bottom:131.875950px;}
.y1c{bottom:131.890500px;}
.yf3{bottom:138.301500px;}
.ybe{bottom:138.314700px;}
.y8e{bottom:138.532200px;}
.y11f{bottom:141.001500px;}
.y164{bottom:142.364700px;}
.y16d{bottom:144.164700px;}
.y14a{bottom:144.314700px;}
.y5a{bottom:145.305900px;}
.y47{bottom:146.614200px;}
.y2a{bottom:149.875950px;}
.y1b{bottom:149.890500px;}
.yee{bottom:154.501500px;}
.ybd{bottom:154.514700px;}
.y8d{bottom:154.732200px;}
.y11e{bottom:157.501500px;}
.y16c{bottom:157.664700px;}
.y163{bottom:158.564700px;}
.y149{bottom:161.114700px;}
.y59{bottom:161.505900px;}
.y46{bottom:162.814200px;}
.y29{bottom:167.875950px;}
.y1a{bottom:167.890500px;}
.yed{bottom:170.701500px;}
.ybc{bottom:170.714700px;}
.y8c{bottom:170.932200px;}
.y16b{bottom:171.164700px;}
.y11d{bottom:174.001500px;}
.y162{bottom:174.764700px;}
.y58{bottom:177.705900px;}
.y148{bottom:177.914700px;}
.y45{bottom:179.014200px;}
.y16a{bottom:184.664700px;}
.y28{bottom:185.875950px;}
.y19{bottom:185.890500px;}
.yec{bottom:186.901500px;}
.ybb{bottom:186.914700px;}
.y8b{bottom:187.132200px;}
.y11c{bottom:190.501500px;}
.y161{bottom:190.964700px;}
.y57{bottom:193.905900px;}
.y147{bottom:194.714700px;}
.y44{bottom:195.214200px;}
.y169{bottom:198.164700px;}
.yeb{bottom:203.101500px;}
.yba{bottom:203.114700px;}
.y8a{bottom:203.332200px;}
.y27{bottom:203.875950px;}
.y18{bottom:203.890500px;}
.y11b{bottom:207.001500px;}
.y160{bottom:207.164700px;}
.y56{bottom:210.105900px;}
.y43{bottom:211.414200px;}
.y146{bottom:211.514700px;}
.y168{bottom:211.664700px;}
.yea{bottom:219.301500px;}
.yb9{bottom:219.314700px;}
.y89{bottom:219.532200px;}
.y17{bottom:221.890500px;}
.y15f{bottom:223.364700px;}
.y11a{bottom:223.501500px;}
.y55{bottom:226.305900px;}
.y42{bottom:227.614200px;}
.y145{bottom:228.314700px;}
.ye9{bottom:235.501500px;}
.yb8{bottom:235.514700px;}
.y15e{bottom:239.564700px;}
.y26{bottom:239.875950px;}
.y16{bottom:239.890500px;}
.y119{bottom:240.001500px;}
.y54{bottom:242.505900px;}
.y41{bottom:243.814200px;}
.y144{bottom:245.114700px;}
.ye8{bottom:251.701500px;}
.yb7{bottom:251.714700px;}
.y88{bottom:251.932200px;}
.y15d{bottom:255.764700px;}
.y118{bottom:256.501500px;}
.y25{bottom:257.875950px;}
.y15{bottom:257.890500px;}
.y53{bottom:258.705900px;}
.y40{bottom:260.014200px;}
.y143{bottom:261.914700px;}
.ye7{bottom:267.901500px;}
.yb6{bottom:267.914700px;}
.y87{bottom:268.132200px;}
.y15c{bottom:271.964700px;}
.y117{bottom:273.001500px;}
.y24{bottom:275.875950px;}
.y14{bottom:275.890500px;}
.y3f{bottom:276.214200px;}
.y142{bottom:278.714700px;}
.ye6{bottom:284.101500px;}
.yb5{bottom:284.114700px;}
.y86{bottom:284.332200px;}
.y15b{bottom:288.164700px;}
.y116{bottom:289.501500px;}
.y52{bottom:291.105900px;}
.y3e{bottom:292.414200px;}
.y23{bottom:293.875950px;}
.y13{bottom:293.890500px;}
.ye5{bottom:300.301500px;}
.yb4{bottom:300.314700px;}
.y85{bottom:300.532200px;}
.y15a{bottom:304.364700px;}
.y115{bottom:306.001500px;}
.y51{bottom:307.305900px;}
.y22{bottom:311.875950px;}
.y12{bottom:311.890500px;}
.y141{bottom:312.314700px;}
.ye4{bottom:316.501500px;}
.yb3{bottom:316.514700px;}
.y84{bottom:316.732200px;}
.y159{bottom:320.564700px;}
.y114{bottom:322.501500px;}
.y50{bottom:323.505900px;}
.y3d{bottom:326.614200px;}
.y140{bottom:329.114700px;}
.y21{bottom:329.875950px;}
.y11{bottom:329.890500px;}
.ye3{bottom:332.701500px;}
.yb2{bottom:332.714700px;}
.y83{bottom:332.932200px;}
.y158{bottom:336.764700px;}
.y113{bottom:339.001500px;}
.y4f{bottom:339.705900px;}
.y3c{bottom:344.614200px;}
.y13f{bottom:345.914700px;}
.y20{bottom:347.875950px;}
.y10{bottom:347.890500px;}
.ye2{bottom:348.901500px;}
.yb1{bottom:348.914700px;}
.y82{bottom:349.132200px;}
.y157{bottom:352.964700px;}
.y112{bottom:355.501500px;}
.y4e{bottom:355.905900px;}
.y3b{bottom:362.614200px;}
.y13e{bottom:362.714700px;}
.ye1{bottom:365.101500px;}
.yf5{bottom:365.114700px;}
.y81{bottom:365.332200px;}
.y1f{bottom:365.875950px;}
.yf{bottom:365.890500px;}
.y156{bottom:369.164700px;}
.y4d{bottom:372.105900px;}
.y13d{bottom:379.514700px;}
.y3a{bottom:380.614200px;}
.ye0{bottom:381.301500px;}
.yb0{bottom:381.314700px;}
.y80{bottom:381.532200px;}
.y155{bottom:385.364700px;}
.y4c{bottom:388.305900px;}
.y111{bottom:388.501500px;}
.y13c{bottom:396.314700px;}
.ydf{bottom:397.501500px;}
.yaf{bottom:397.514700px;}
.y7f{bottom:397.732200px;}
.y39{bottom:398.614200px;}
.y154{bottom:401.564700px;}
.y4b{bottom:404.505900px;}
.y110{bottom:405.001500px;}
.y13b{bottom:413.114700px;}
.yde{bottom:413.701500px;}
.yae{bottom:413.714700px;}
.y7e{bottom:413.932200px;}
.y38{bottom:416.614200px;}
.y153{bottom:417.764700px;}
.ye{bottom:420.528900px;}
.y4a{bottom:420.705900px;}
.y10f{bottom:421.501500px;}
.ydd{bottom:429.901500px;}
.yad{bottom:429.914700px;}
.y7d{bottom:430.132200px;}
.y152{bottom:433.964700px;}
.y37{bottom:434.614200px;}
.y10e{bottom:438.001500px;}
.ydc{bottom:446.101500px;}
.yac{bottom:446.114700px;}
.y13a{bottom:446.714700px;}
.yd{bottom:449.028900px;}
.y36{bottom:452.614200px;}
.y10d{bottom:454.501500px;}
.ydb{bottom:462.301500px;}
.yab{bottom:462.314700px;}
.y7c{bottom:462.532200px;}
.y139{bottom:463.514700px;}
.y151{bottom:468.164700px;}
.y35{bottom:470.614200px;}
.y10c{bottom:471.001500px;}
.yc{bottom:477.528900px;}
.y62{bottom:477.775050px;}
.yda{bottom:478.501500px;}
.yaa{bottom:478.514700px;}
.y7b{bottom:478.732200px;}
.y10b{bottom:487.501500px;}
.y34{bottom:488.614200px;}
.y61{bottom:491.275050px;}
.yf2{bottom:494.701500px;}
.ya9{bottom:494.714700px;}
.y7a{bottom:494.932200px;}
.y138{bottom:497.114700px;}
.y10a{bottom:504.001500px;}
.y33{bottom:506.614200px;}
.yd9{bottom:510.901500px;}
.ya8{bottom:510.914700px;}
.y79{bottom:511.132200px;}
.yb{bottom:513.199650px;}
.y137{bottom:513.914700px;}
.y109{bottom:520.501500px;}
.y32{bottom:524.614200px;}
.yd8{bottom:527.101500px;}
.ya7{bottom:527.114700px;}
.y78{bottom:527.332200px;}
.ya{bottom:527.449650px;}
.y150{bottom:529.364700px;}
.y136{bottom:530.714700px;}
.y108{bottom:537.001500px;}
.yd7{bottom:543.301500px;}
.ya6{bottom:543.314700px;}
.y77{bottom:543.532200px;}
.y14f{bottom:543.614700px;}
.y135{bottom:547.514700px;}
.y107{bottom:553.501500px;}
.y14e{bottom:557.864700px;}
.yd6{bottom:559.501500px;}
.ya5{bottom:559.514700px;}
.y76{bottom:559.732200px;}
.y31{bottom:560.614200px;}
.y134{bottom:564.314700px;}
.y106{bottom:570.001500px;}
.yd5{bottom:575.701500px;}
.ya4{bottom:575.714700px;}
.y75{bottom:575.932200px;}
.y30{bottom:578.614200px;}
.y9{bottom:578.772450px;}
.y133{bottom:581.114700px;}
.yd4{bottom:591.901500px;}
.ya3{bottom:591.914700px;}
.y74{bottom:592.132200px;}
.y2f{bottom:596.614200px;}
.y8{bottom:596.772450px;}
.y132{bottom:597.914700px;}
.y105{bottom:603.001500px;}
.yd3{bottom:608.101500px;}
.ya2{bottom:608.114700px;}
.y73{bottom:608.332200px;}
.y2e{bottom:614.614200px;}
.y131{bottom:614.714700px;}
.y104{bottom:619.501500px;}
.yd2{bottom:624.301500px;}
.ya1{bottom:624.314700px;}
.y72{bottom:624.532200px;}
.y130{bottom:631.514700px;}
.y7{bottom:632.772450px;}
.y103{bottom:636.001500px;}
.yd1{bottom:640.501500px;}
.ya0{bottom:640.514700px;}
.y71{bottom:640.732200px;}
.y12f{bottom:648.314700px;}
.y6{bottom:650.772450px;}
.y102{bottom:652.501500px;}
.yd0{bottom:656.701500px;}
.y9f{bottom:656.714700px;}
.y70{bottom:656.932200px;}
.y60{bottom:657.197250px;}
.y101{bottom:669.001500px;}
.y5f{bottom:670.697250px;}
.ycf{bottom:672.901500px;}
.y9e{bottom:672.914700px;}
.y6f{bottom:673.132200px;}
.y12e{bottom:681.914700px;}
.y5e{bottom:684.197250px;}
.y100{bottom:685.501500px;}
.yce{bottom:689.101500px;}
.y9d{bottom:689.114700px;}
.y6e{bottom:689.332200px;}
.y12d{bottom:698.714700px;}
.yff{bottom:702.001500px;}
.ycd{bottom:705.301500px;}
.y9c{bottom:705.314700px;}
.y6d{bottom:705.532200px;}
.y12c{bottom:715.514700px;}
.yfe{bottom:718.501500px;}
.ycc{bottom:721.501500px;}
.y9b{bottom:721.514700px;}
.y6c{bottom:721.732200px;}
.y12b{bottom:732.314700px;}
.yfd{bottom:735.001500px;}
.ycb{bottom:737.701500px;}
.y9a{bottom:737.714700px;}
.y6b{bottom:737.932200px;}
.y5{bottom:743.213400px;}
.y12a{bottom:749.114700px;}
.yfc{bottom:751.501500px;}
.yca{bottom:753.901500px;}
.y99{bottom:753.914700px;}
.y129{bottom:765.914700px;}
.y4{bottom:768.413400px;}
.yc9{bottom:770.101500px;}
.y98{bottom:770.114700px;}
.y6a{bottom:770.332200px;}
.y128{bottom:782.714700px;}
.yfb{bottom:784.501500px;}
.yc8{bottom:786.301500px;}
.y97{bottom:786.314700px;}
.y69{bottom:786.532200px;}
.y3{bottom:793.613400px;}
.y127{bottom:799.514700px;}
.yfa{bottom:801.001500px;}
.yc7{bottom:802.501500px;}
.y96{bottom:802.514700px;}
.y68{bottom:802.732200px;}
.y126{bottom:816.314700px;}
.yf9{bottom:817.501500px;}
.yc6{bottom:818.701500px;}
.y95{bottom:818.714700px;}
.y67{bottom:818.932200px;}
.y125{bottom:833.114700px;}
.yf8{bottom:834.001500px;}
.yc5{bottom:834.901500px;}
.y94{bottom:834.914550px;}
.y66{bottom:835.132200px;}
.y124{bottom:849.914550px;}
.yf7{bottom:850.501500px;}
.yc4{bottom:851.101500px;}
.y93{bottom:851.114700px;}
.y65{bottom:851.332200px;}
.y123{bottom:866.714700px;}
.yf6{bottom:867.001500px;}
.yc3{bottom:867.301500px;}
.yf4{bottom:867.314700px;}
.y64{bottom:867.532200px;}
.yc2{bottom:883.501500px;}
.y92{bottom:883.514700px;}
.y63{bottom:883.732200px;}
.y2{bottom:933.687900px;}
.y1{bottom:937.589700px;}
.hb{height:37.494141px;}
.h6{height:42.117188px;}
.h8{height:47.381836px;}
.h7{height:47.513672px;}
.h2{height:47.961914px;}
.ha{height:48.462872px;}
.h5{height:52.646484px;}
.h9{height:52.792969px;}
.h4{height:53.291016px;}
.h3{height:74.607422px;}
.h0{height:1007.700000px;}
.h1{height:1008.000000px;}
.w0{width:722.850000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:63.750000px;}
.xc{left:85.050000px;}
.xd{left:86.481600px;}
.x9{left:87.750000px;}
.x12{left:93.525000px;}
.x16{left:106.275000px;}
.xe{left:110.481600px;}
.x2{left:112.287600px;}
.x14{left:114.750000px;}
.xf{left:116.181600px;}
.x7{left:200.214900px;}
.x3{left:235.816350px;}
.x6{left:274.612500px;}
.x4{left:308.260200px;}
.xa{left:361.425000px;}
.x5{left:376.389900px;}
.x11{left:382.725000px;}
.xb{left:385.425000px;}
.x13{left:391.125000px;}
.x17{left:403.950000px;}
.x10{left:412.425000px;}
.x15{left:443.351550px;}
.x8{left:630.750000px;}
@media print{
.v3{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.840000pt;}
.v1{vertical-align:17.600000pt;}
.ls53{letter-spacing:-3.552000pt;}
.ls4c{letter-spacing:-0.624000pt;}
.ls39{letter-spacing:-0.576000pt;}
.ls32{letter-spacing:-0.528000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls38{letter-spacing:-0.432000pt;}
.lsc{letter-spacing:-0.426667pt;}
.ls48{letter-spacing:-0.384000pt;}
.ls37{letter-spacing:-0.336000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls47{letter-spacing:-0.288000pt;}
.lsf{letter-spacing:-0.266667pt;}
.ls20{letter-spacing:-0.240000pt;}
.ls33{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls34{letter-spacing:-0.144000pt;}
.ls35{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.053333pt;}
.ls36{letter-spacing:-0.048000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.048000pt;}
.ls30{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.106667pt;}
.ls45{letter-spacing:0.144000pt;}
.ls2d{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.194667pt;}
.ls13{letter-spacing:0.213333pt;}
.ls18{letter-spacing:0.240000pt;}
.ls57{letter-spacing:0.336000pt;}
.ls31{letter-spacing:0.384000pt;}
.ls0{letter-spacing:0.426667pt;}
.ls62{letter-spacing:0.431467pt;}
.ls40{letter-spacing:0.432000pt;}
.ls22{letter-spacing:0.480000pt;}
.ls23{letter-spacing:0.528000pt;}
.ls1f{letter-spacing:0.533333pt;}
.ls4d{letter-spacing:0.576000pt;}
.ls4{letter-spacing:0.586667pt;}
.ls19{letter-spacing:0.624000pt;}
.ls58{letter-spacing:0.672000pt;}
.ls3b{letter-spacing:0.720000pt;}
.ls6{letter-spacing:0.746667pt;}
.ls21{letter-spacing:0.768000pt;}
.ls1c{letter-spacing:0.816000pt;}
.ls2{letter-spacing:0.853333pt;}
.ls2b{letter-spacing:0.864000pt;}
.ls59{letter-spacing:0.912000pt;}
.ls5{letter-spacing:0.960000pt;}
.ls2e{letter-spacing:1.008000pt;}
.ls3d{letter-spacing:1.056000pt;}
.ls61{letter-spacing:1.104000pt;}
.ls3{letter-spacing:1.120000pt;}
.ls3f{letter-spacing:1.152000pt;}
.ls3a{letter-spacing:1.200000pt;}
.ls17{letter-spacing:1.226667pt;}
.ls1a{letter-spacing:1.248000pt;}
.ls4a{letter-spacing:1.296000pt;}
.ls29{letter-spacing:1.344000pt;}
.ls50{letter-spacing:1.354667pt;}
.ls3e{letter-spacing:1.392000pt;}
.ls64{letter-spacing:1.415467pt;}
.ls25{letter-spacing:1.440000pt;}
.ls5b{letter-spacing:1.488000pt;}
.ls4f{letter-spacing:1.536000pt;}
.ls1d{letter-spacing:1.584000pt;}
.ls3c{letter-spacing:1.632000pt;}
.ls15{letter-spacing:1.653333pt;}
.ls26{letter-spacing:1.680000pt;}
.ls1b{letter-spacing:1.728000pt;}
.ls2a{letter-spacing:1.776000pt;}
.ls16{letter-spacing:1.813333pt;}
.ls2f{letter-spacing:1.824000pt;}
.ls56{letter-spacing:1.872000pt;}
.ls43{letter-spacing:1.920000pt;}
.ls52{letter-spacing:1.968000pt;}
.ls2c{letter-spacing:2.016000pt;}
.ls1e{letter-spacing:2.064000pt;}
.ls44{letter-spacing:2.160000pt;}
.ls9{letter-spacing:2.240000pt;}
.ls10{letter-spacing:2.293333pt;}
.ls54{letter-spacing:2.304000pt;}
.ls7{letter-spacing:2.349867pt;}
.ls63{letter-spacing:2.448000pt;}
.ls5d{letter-spacing:2.592000pt;}
.ls55{letter-spacing:2.736000pt;}
.ls5a{letter-spacing:2.784000pt;}
.ls11{letter-spacing:2.826667pt;}
.ls49{letter-spacing:3.024000pt;}
.ls4b{letter-spacing:3.264000pt;}
.ls27{letter-spacing:3.360000pt;}
.ls5f{letter-spacing:3.504000pt;}
.ls60{letter-spacing:4.416000pt;}
.ls5c{letter-spacing:4.512000pt;}
.ls41{letter-spacing:5.504533pt;}
.ls42{letter-spacing:5.505067pt;}
.ls51{letter-spacing:6.015467pt;}
.ls14{letter-spacing:6.065067pt;}
.ls46{letter-spacing:6.472533pt;}
.ls5e{letter-spacing:6.960000pt;}
.ls4e{letter-spacing:7.371200pt;}
.ls28{letter-spacing:10.077867pt;}
.ws8b{word-spacing:-14.736000pt;}
.ws55{word-spacing:-13.632000pt;}
.ws7e{word-spacing:-13.392000pt;}
.ws7d{word-spacing:-13.344000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws99{word-spacing:-13.296000pt;}
.ws53{word-spacing:-13.200000pt;}
.ws2e{word-spacing:-12.816000pt;}
.ws54{word-spacing:-12.768000pt;}
.ws6c{word-spacing:-12.528000pt;}
.ws56{word-spacing:-12.480000pt;}
.ws19{word-spacing:-12.240000pt;}
.ws4{word-spacing:-12.106667pt;}
.ws1b{word-spacing:-12.000000pt;}
.ws9a{word-spacing:-11.808000pt;}
.ws52{word-spacing:-11.712000pt;}
.ws8c{word-spacing:-11.664000pt;}
.ws1a{word-spacing:-11.520000pt;}
.ws1{word-spacing:-7.733333pt;}
.ws9b{word-spacing:-6.960000pt;}
.ws96{word-spacing:-3.840000pt;}
.ws2a{word-spacing:-3.456000pt;}
.ws12{word-spacing:-3.360000pt;}
.ws11{word-spacing:-3.306667pt;}
.ws71{word-spacing:-3.264000pt;}
.ws37{word-spacing:-3.024000pt;}
.ws29{word-spacing:-2.976000pt;}
.wsa6{word-spacing:-2.736000pt;}
.ws9f{word-spacing:-2.592000pt;}
.ws76{word-spacing:-2.496000pt;}
.wsa5{word-spacing:-2.448000pt;}
.ws81{word-spacing:-2.400000pt;}
.ws8d{word-spacing:-2.304000pt;}
.ws1f{word-spacing:-2.293333pt;}
.wse{word-spacing:-2.240000pt;}
.ws57{word-spacing:-2.208000pt;}
.ws80{word-spacing:-2.112000pt;}
.ws20{word-spacing:-2.026667pt;}
.ws43{word-spacing:-2.016000pt;}
.ws88{word-spacing:-1.968000pt;}
.ws46{word-spacing:-1.824000pt;}
.ws22{word-spacing:-1.813333pt;}
.ws42{word-spacing:-1.776000pt;}
.ws2b{word-spacing:-1.728000pt;}
.ws39{word-spacing:-1.680000pt;}
.ws5f{word-spacing:-1.632000pt;}
.wsb{word-spacing:-1.600000pt;}
.ws33{word-spacing:-1.584000pt;}
.ws85{word-spacing:-1.536000pt;}
.ws4f{word-spacing:-1.488000pt;}
.ws36{word-spacing:-1.440000pt;}
.ws84{word-spacing:-1.392000pt;}
.wsa{word-spacing:-1.386667pt;}
.ws67{word-spacing:-1.344000pt;}
.ws4e{word-spacing:-1.296000pt;}
.ws6e{word-spacing:-1.248000pt;}
.ws62{word-spacing:-1.200000pt;}
.ws64{word-spacing:-1.152000pt;}
.wsd{word-spacing:-1.120000pt;}
.ws94{word-spacing:-1.104000pt;}
.ws63{word-spacing:-1.056000pt;}
.ws79{word-spacing:-1.008000pt;}
.wsf{word-spacing:-0.960000pt;}
.ws74{word-spacing:-0.912000pt;}
.ws3e{word-spacing:-0.864000pt;}
.ws1c{word-spacing:-0.853333pt;}
.ws2d{word-spacing:-0.816000pt;}
.ws30{word-spacing:-0.768000pt;}
.ws15{word-spacing:-0.746667pt;}
.ws3d{word-spacing:-0.720000pt;}
.ws93{word-spacing:-0.672000pt;}
.ws5{word-spacing:-0.640000pt;}
.ws82{word-spacing:-0.624000pt;}
.ws1e{word-spacing:-0.586667pt;}
.ws9{word-spacing:-0.533333pt;}
.ws72{word-spacing:-0.528000pt;}
.ws6b{word-spacing:-0.480000pt;}
.ws65{word-spacing:-0.432000pt;}
.ws51{word-spacing:-0.384000pt;}
.ws24{word-spacing:-0.240000pt;}
.ws60{word-spacing:-0.192000pt;}
.ws6a{word-spacing:-0.144000pt;}
.ws73{word-spacing:-0.096000pt;}
.ws31{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.ws38{word-spacing:0.048000pt;}
.ws16{word-spacing:0.053333pt;}
.ws45{word-spacing:0.096000pt;}
.ws58{word-spacing:0.144000pt;}
.ws3c{word-spacing:0.192000pt;}
.ws3b{word-spacing:0.240000pt;}
.ws17{word-spacing:0.266667pt;}
.ws69{word-spacing:0.288000pt;}
.ws10{word-spacing:0.320000pt;}
.ws6f{word-spacing:0.336000pt;}
.ws59{word-spacing:0.384000pt;}
.ws13{word-spacing:0.426667pt;}
.ws47{word-spacing:0.432000pt;}
.ws14{word-spacing:0.480000pt;}
.ws35{word-spacing:0.528000pt;}
.ws48{word-spacing:0.576000pt;}
.ws70{word-spacing:0.624000pt;}
.ws44{word-spacing:0.720000pt;}
.ws5d{word-spacing:0.816000pt;}
.ws1d{word-spacing:0.853333pt;}
.ws3f{word-spacing:0.960000pt;}
.ws75{word-spacing:1.008000pt;}
.ws3{word-spacing:1.066667pt;}
.ws5c{word-spacing:1.152000pt;}
.ws95{word-spacing:1.248000pt;}
.ws87{word-spacing:1.344000pt;}
.ws61{word-spacing:1.392000pt;}
.ws92{word-spacing:1.632000pt;}
.ws34{word-spacing:1.728000pt;}
.ws66{word-spacing:1.920000pt;}
.ws5a{word-spacing:1.968000pt;}
.ws8a{word-spacing:2.016000pt;}
.ws97{word-spacing:2.112000pt;}
.ws8e{word-spacing:2.256000pt;}
.ws18{word-spacing:2.346667pt;}
.ws41{word-spacing:2.352000pt;}
.ws7f{word-spacing:2.400000pt;}
.ws4a{word-spacing:2.448000pt;}
.ws32{word-spacing:2.496000pt;}
.ws90{word-spacing:2.976000pt;}
.ws40{word-spacing:3.072000pt;}
.ws27{word-spacing:3.168000pt;}
.ws50{word-spacing:3.216000pt;}
.ws49{word-spacing:3.312000pt;}
.ws5b{word-spacing:3.360000pt;}
.ws89{word-spacing:3.552000pt;}
.ws78{word-spacing:3.648000pt;}
.ws4d{word-spacing:3.792000pt;}
.wsa2{word-spacing:3.840000pt;}
.wsc{word-spacing:3.946667pt;}
.ws2c{word-spacing:4.080000pt;}
.ws21{word-spacing:4.106667pt;}
.ws9e{word-spacing:4.176000pt;}
.ws5e{word-spacing:4.224000pt;}
.ws9c{word-spacing:4.272000pt;}
.ws4b{word-spacing:4.320000pt;}
.ws98{word-spacing:4.368000pt;}
.ws4c{word-spacing:4.464000pt;}
.ws83{word-spacing:4.704000pt;}
.ws28{word-spacing:4.992000pt;}
.ws7a{word-spacing:5.040000pt;}
.wsa3{word-spacing:5.136000pt;}
.ws91{word-spacing:5.184000pt;}
.ws77{word-spacing:5.328000pt;}
.ws68{word-spacing:5.520000pt;}
.ws26{word-spacing:5.568000pt;}
.ws6{word-spacing:5.600000pt;}
.ws7c{word-spacing:5.616000pt;}
.ws7b{word-spacing:5.808000pt;}
.ws8{word-spacing:5.866667pt;}
.ws86{word-spacing:5.904000pt;}
.ws2f{word-spacing:5.952000pt;}
.ws25{word-spacing:6.000000pt;}
.ws8f{word-spacing:6.048000pt;}
.ws6d{word-spacing:6.096000pt;}
.ws7{word-spacing:6.666667pt;}
.ws3a{word-spacing:6.720000pt;}
.ws23{word-spacing:6.784000pt;}
.wsa1{word-spacing:6.960000pt;}
.wsa4{word-spacing:8.832000pt;}
.ws9d{word-spacing:9.024000pt;}
.wsa0{word-spacing:11.232000pt;}
._f{margin-left:-84.000000pt;}
._12{margin-left:-17.392000pt;}
._4{margin-left:-9.632000pt;}
._7{margin-left:-7.136000pt;}
._5{margin-left:-5.525333pt;}
._2{margin-left:-4.032000pt;}
._6{margin-left:-2.933333pt;}
._3{margin-left:-1.568000pt;}
._8{width:1.333333pt;}
._c{width:2.880000pt;}
._e{width:4.586667pt;}
._9{width:5.493333pt;}
._d{width:6.826667pt;}
._a{width:7.786667pt;}
._b{width:8.800000pt;}
._11{width:9.706667pt;}
._1{width:987.858133pt;}
._0{width:1243.794133pt;}
._10{width:1315.816533pt;}
.fs5{font-size:27.840000pt;}
.fs3{font-size:30.933333pt;}
.fs4{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yf1{bottom:79.734667pt;}
.yc1{bottom:79.746400pt;}
.y91{bottom:79.939733pt;}
.y171{bottom:80.146267pt;}
.y122{bottom:81.334667pt;}
.y167{bottom:83.346400pt;}
.y14d{bottom:83.479600pt;}
.y2d{bottom:85.223067pt;}
.y1e{bottom:85.236000pt;}
.y5d{bottom:85.960800pt;}
.y49{bottom:87.123733pt;}
.y170{bottom:92.146267pt;}
.yf0{bottom:94.134667pt;}
.yc0{bottom:94.146267pt;}
.y90{bottom:94.339733pt;}
.y121{bottom:96.001333pt;}
.y166{bottom:97.746400pt;}
.y14c{bottom:98.413067pt;}
.y5c{bottom:100.360800pt;}
.y2c{bottom:101.223067pt;}
.y1d{bottom:101.236000pt;}
.y48{bottom:101.523733pt;}
.y16f{bottom:104.146267pt;}
.yef{bottom:108.534667pt;}
.ybf{bottom:108.546400pt;}
.y8f{bottom:108.739733pt;}
.y120{bottom:110.668000pt;}
.y165{bottom:112.146400pt;}
.y14b{bottom:113.346400pt;}
.y5b{bottom:114.760800pt;}
.y16e{bottom:116.146400pt;}
.y2b{bottom:117.223067pt;}
.y1c{bottom:117.236000pt;}
.yf3{bottom:122.934667pt;}
.ybe{bottom:122.946400pt;}
.y8e{bottom:123.139733pt;}
.y11f{bottom:125.334667pt;}
.y164{bottom:126.546400pt;}
.y16d{bottom:128.146400pt;}
.y14a{bottom:128.279733pt;}
.y5a{bottom:129.160800pt;}
.y47{bottom:130.323733pt;}
.y2a{bottom:133.223067pt;}
.y1b{bottom:133.236000pt;}
.yee{bottom:137.334667pt;}
.ybd{bottom:137.346400pt;}
.y8d{bottom:137.539733pt;}
.y11e{bottom:140.001333pt;}
.y16c{bottom:140.146400pt;}
.y163{bottom:140.946400pt;}
.y149{bottom:143.213067pt;}
.y59{bottom:143.560800pt;}
.y46{bottom:144.723733pt;}
.y29{bottom:149.223067pt;}
.y1a{bottom:149.236000pt;}
.yed{bottom:151.734667pt;}
.ybc{bottom:151.746400pt;}
.y8c{bottom:151.939733pt;}
.y16b{bottom:152.146400pt;}
.y11d{bottom:154.668000pt;}
.y162{bottom:155.346400pt;}
.y58{bottom:157.960800pt;}
.y148{bottom:158.146400pt;}
.y45{bottom:159.123733pt;}
.y16a{bottom:164.146400pt;}
.y28{bottom:165.223067pt;}
.y19{bottom:165.236000pt;}
.yec{bottom:166.134667pt;}
.ybb{bottom:166.146400pt;}
.y8b{bottom:166.339733pt;}
.y11c{bottom:169.334667pt;}
.y161{bottom:169.746400pt;}
.y57{bottom:172.360800pt;}
.y147{bottom:173.079733pt;}
.y44{bottom:173.523733pt;}
.y169{bottom:176.146400pt;}
.yeb{bottom:180.534667pt;}
.yba{bottom:180.546400pt;}
.y8a{bottom:180.739733pt;}
.y27{bottom:181.223067pt;}
.y18{bottom:181.236000pt;}
.y11b{bottom:184.001333pt;}
.y160{bottom:184.146400pt;}
.y56{bottom:186.760800pt;}
.y43{bottom:187.923733pt;}
.y146{bottom:188.013067pt;}
.y168{bottom:188.146400pt;}
.yea{bottom:194.934667pt;}
.yb9{bottom:194.946400pt;}
.y89{bottom:195.139733pt;}
.y17{bottom:197.236000pt;}
.y15f{bottom:198.546400pt;}
.y11a{bottom:198.668000pt;}
.y55{bottom:201.160800pt;}
.y42{bottom:202.323733pt;}
.y145{bottom:202.946400pt;}
.ye9{bottom:209.334667pt;}
.yb8{bottom:209.346400pt;}
.y15e{bottom:212.946400pt;}
.y26{bottom:213.223067pt;}
.y16{bottom:213.236000pt;}
.y119{bottom:213.334667pt;}
.y54{bottom:215.560800pt;}
.y41{bottom:216.723733pt;}
.y144{bottom:217.879733pt;}
.ye8{bottom:223.734667pt;}
.yb7{bottom:223.746400pt;}
.y88{bottom:223.939733pt;}
.y15d{bottom:227.346400pt;}
.y118{bottom:228.001333pt;}
.y25{bottom:229.223067pt;}
.y15{bottom:229.236000pt;}
.y53{bottom:229.960800pt;}
.y40{bottom:231.123733pt;}
.y143{bottom:232.813067pt;}
.ye7{bottom:238.134667pt;}
.yb6{bottom:238.146400pt;}
.y87{bottom:238.339733pt;}
.y15c{bottom:241.746400pt;}
.y117{bottom:242.668000pt;}
.y24{bottom:245.223067pt;}
.y14{bottom:245.236000pt;}
.y3f{bottom:245.523733pt;}
.y142{bottom:247.746400pt;}
.ye6{bottom:252.534667pt;}
.yb5{bottom:252.546400pt;}
.y86{bottom:252.739733pt;}
.y15b{bottom:256.146400pt;}
.y116{bottom:257.334667pt;}
.y52{bottom:258.760800pt;}
.y3e{bottom:259.923733pt;}
.y23{bottom:261.223067pt;}
.y13{bottom:261.236000pt;}
.ye5{bottom:266.934667pt;}
.yb4{bottom:266.946400pt;}
.y85{bottom:267.139733pt;}
.y15a{bottom:270.546400pt;}
.y115{bottom:272.001333pt;}
.y51{bottom:273.160800pt;}
.y22{bottom:277.223067pt;}
.y12{bottom:277.236000pt;}
.y141{bottom:277.613067pt;}
.ye4{bottom:281.334667pt;}
.yb3{bottom:281.346400pt;}
.y84{bottom:281.539733pt;}
.y159{bottom:284.946400pt;}
.y114{bottom:286.668000pt;}
.y50{bottom:287.560800pt;}
.y3d{bottom:290.323733pt;}
.y140{bottom:292.546400pt;}
.y21{bottom:293.223067pt;}
.y11{bottom:293.236000pt;}
.ye3{bottom:295.734667pt;}
.yb2{bottom:295.746400pt;}
.y83{bottom:295.939733pt;}
.y158{bottom:299.346400pt;}
.y113{bottom:301.334667pt;}
.y4f{bottom:301.960800pt;}
.y3c{bottom:306.323733pt;}
.y13f{bottom:307.479733pt;}
.y20{bottom:309.223067pt;}
.y10{bottom:309.236000pt;}
.ye2{bottom:310.134667pt;}
.yb1{bottom:310.146400pt;}
.y82{bottom:310.339733pt;}
.y157{bottom:313.746400pt;}
.y112{bottom:316.001333pt;}
.y4e{bottom:316.360800pt;}
.y3b{bottom:322.323733pt;}
.y13e{bottom:322.413067pt;}
.ye1{bottom:324.534667pt;}
.yf5{bottom:324.546400pt;}
.y81{bottom:324.739733pt;}
.y1f{bottom:325.223067pt;}
.yf{bottom:325.236000pt;}
.y156{bottom:328.146400pt;}
.y4d{bottom:330.760800pt;}
.y13d{bottom:337.346400pt;}
.y3a{bottom:338.323733pt;}
.ye0{bottom:338.934667pt;}
.yb0{bottom:338.946400pt;}
.y80{bottom:339.139733pt;}
.y155{bottom:342.546400pt;}
.y4c{bottom:345.160800pt;}
.y111{bottom:345.334667pt;}
.y13c{bottom:352.279733pt;}
.ydf{bottom:353.334667pt;}
.yaf{bottom:353.346400pt;}
.y7f{bottom:353.539733pt;}
.y39{bottom:354.323733pt;}
.y154{bottom:356.946400pt;}
.y4b{bottom:359.560800pt;}
.y110{bottom:360.001333pt;}
.y13b{bottom:367.213067pt;}
.yde{bottom:367.734667pt;}
.yae{bottom:367.746400pt;}
.y7e{bottom:367.939733pt;}
.y38{bottom:370.323733pt;}
.y153{bottom:371.346400pt;}
.ye{bottom:373.803467pt;}
.y4a{bottom:373.960800pt;}
.y10f{bottom:374.668000pt;}
.ydd{bottom:382.134667pt;}
.yad{bottom:382.146400pt;}
.y7d{bottom:382.339733pt;}
.y152{bottom:385.746400pt;}
.y37{bottom:386.323733pt;}
.y10e{bottom:389.334667pt;}
.ydc{bottom:396.534667pt;}
.yac{bottom:396.546400pt;}
.y13a{bottom:397.079733pt;}
.yd{bottom:399.136800pt;}
.y36{bottom:402.323733pt;}
.y10d{bottom:404.001333pt;}
.ydb{bottom:410.934667pt;}
.yab{bottom:410.946400pt;}
.y7c{bottom:411.139733pt;}
.y139{bottom:412.013067pt;}
.y151{bottom:416.146400pt;}
.y35{bottom:418.323733pt;}
.y10c{bottom:418.668000pt;}
.yc{bottom:424.470133pt;}
.y62{bottom:424.688933pt;}
.yda{bottom:425.334667pt;}
.yaa{bottom:425.346400pt;}
.y7b{bottom:425.539733pt;}
.y10b{bottom:433.334667pt;}
.y34{bottom:434.323733pt;}
.y61{bottom:436.688933pt;}
.yf2{bottom:439.734667pt;}
.ya9{bottom:439.746400pt;}
.y7a{bottom:439.939733pt;}
.y138{bottom:441.879733pt;}
.y10a{bottom:448.001333pt;}
.y33{bottom:450.323733pt;}
.yd9{bottom:454.134667pt;}
.ya8{bottom:454.146400pt;}
.y79{bottom:454.339733pt;}
.yb{bottom:456.177467pt;}
.y137{bottom:456.813067pt;}
.y109{bottom:462.668000pt;}
.y32{bottom:466.323733pt;}
.yd8{bottom:468.534667pt;}
.ya7{bottom:468.546400pt;}
.y78{bottom:468.739733pt;}
.ya{bottom:468.844133pt;}
.y150{bottom:470.546400pt;}
.y136{bottom:471.746400pt;}
.y108{bottom:477.334667pt;}
.yd7{bottom:482.934667pt;}
.ya6{bottom:482.946400pt;}
.y77{bottom:483.139733pt;}
.y14f{bottom:483.213067pt;}
.y135{bottom:486.679733pt;}
.y107{bottom:492.001333pt;}
.y14e{bottom:495.879733pt;}
.yd6{bottom:497.334667pt;}
.ya5{bottom:497.346400pt;}
.y76{bottom:497.539733pt;}
.y31{bottom:498.323733pt;}
.y134{bottom:501.613067pt;}
.y106{bottom:506.668000pt;}
.yd5{bottom:511.734667pt;}
.ya4{bottom:511.746400pt;}
.y75{bottom:511.939733pt;}
.y30{bottom:514.323733pt;}
.y9{bottom:514.464400pt;}
.y133{bottom:516.546400pt;}
.yd4{bottom:526.134667pt;}
.ya3{bottom:526.146400pt;}
.y74{bottom:526.339733pt;}
.y2f{bottom:530.323733pt;}
.y8{bottom:530.464400pt;}
.y132{bottom:531.479733pt;}
.y105{bottom:536.001333pt;}
.yd3{bottom:540.534667pt;}
.ya2{bottom:540.546400pt;}
.y73{bottom:540.739733pt;}
.y2e{bottom:546.323733pt;}
.y131{bottom:546.413067pt;}
.y104{bottom:550.668000pt;}
.yd2{bottom:554.934667pt;}
.ya1{bottom:554.946400pt;}
.y72{bottom:555.139733pt;}
.y130{bottom:561.346400pt;}
.y7{bottom:562.464400pt;}
.y103{bottom:565.334667pt;}
.yd1{bottom:569.334667pt;}
.ya0{bottom:569.346400pt;}
.y71{bottom:569.539733pt;}
.y12f{bottom:576.279733pt;}
.y6{bottom:578.464400pt;}
.y102{bottom:580.001333pt;}
.yd0{bottom:583.734667pt;}
.y9f{bottom:583.746400pt;}
.y70{bottom:583.939733pt;}
.y60{bottom:584.175333pt;}
.y101{bottom:594.668000pt;}
.y5f{bottom:596.175333pt;}
.ycf{bottom:598.134667pt;}
.y9e{bottom:598.146400pt;}
.y6f{bottom:598.339733pt;}
.y12e{bottom:606.146400pt;}
.y5e{bottom:608.175333pt;}
.y100{bottom:609.334667pt;}
.yce{bottom:612.534667pt;}
.y9d{bottom:612.546400pt;}
.y6e{bottom:612.739733pt;}
.y12d{bottom:621.079733pt;}
.yff{bottom:624.001333pt;}
.ycd{bottom:626.934667pt;}
.y9c{bottom:626.946400pt;}
.y6d{bottom:627.139733pt;}
.y12c{bottom:636.013067pt;}
.yfe{bottom:638.668000pt;}
.ycc{bottom:641.334667pt;}
.y9b{bottom:641.346400pt;}
.y6c{bottom:641.539733pt;}
.y12b{bottom:650.946400pt;}
.yfd{bottom:653.334667pt;}
.ycb{bottom:655.734667pt;}
.y9a{bottom:655.746400pt;}
.y6b{bottom:655.939733pt;}
.y5{bottom:660.634133pt;}
.y12a{bottom:665.879733pt;}
.yfc{bottom:668.001333pt;}
.yca{bottom:670.134667pt;}
.y99{bottom:670.146400pt;}
.y129{bottom:680.813067pt;}
.y4{bottom:683.034133pt;}
.yc9{bottom:684.534667pt;}
.y98{bottom:684.546400pt;}
.y6a{bottom:684.739733pt;}
.y128{bottom:695.746400pt;}
.yfb{bottom:697.334667pt;}
.yc8{bottom:698.934667pt;}
.y97{bottom:698.946400pt;}
.y69{bottom:699.139733pt;}
.y3{bottom:705.434133pt;}
.y127{bottom:710.679733pt;}
.yfa{bottom:712.001333pt;}
.yc7{bottom:713.334667pt;}
.y96{bottom:713.346400pt;}
.y68{bottom:713.539733pt;}
.y126{bottom:725.613067pt;}
.yf9{bottom:726.668000pt;}
.yc6{bottom:727.734667pt;}
.y95{bottom:727.746400pt;}
.y67{bottom:727.939733pt;}
.y125{bottom:740.546400pt;}
.yf8{bottom:741.334667pt;}
.yc5{bottom:742.134667pt;}
.y94{bottom:742.146267pt;}
.y66{bottom:742.339733pt;}
.y124{bottom:755.479600pt;}
.yf7{bottom:756.001333pt;}
.yc4{bottom:756.534667pt;}
.y93{bottom:756.546400pt;}
.y65{bottom:756.739733pt;}
.y123{bottom:770.413067pt;}
.yf6{bottom:770.668000pt;}
.yc3{bottom:770.934667pt;}
.yf4{bottom:770.946400pt;}
.y64{bottom:771.139733pt;}
.yc2{bottom:785.334667pt;}
.y92{bottom:785.346400pt;}
.y63{bottom:785.539733pt;}
.y2{bottom:829.944800pt;}
.y1{bottom:833.413067pt;}
.hb{height:33.328125pt;}
.h6{height:37.437500pt;}
.h8{height:42.117188pt;}
.h7{height:42.234375pt;}
.h2{height:42.632812pt;}
.ha{height:43.078108pt;}
.h5{height:46.796875pt;}
.h9{height:46.927083pt;}
.h4{height:47.369792pt;}
.h3{height:66.317708pt;}
.h0{height:895.733333pt;}
.h1{height:896.000000pt;}
.w0{width:642.533333pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:56.666667pt;}
.xc{left:75.600000pt;}
.xd{left:76.872533pt;}
.x9{left:78.000000pt;}
.x12{left:83.133333pt;}
.x16{left:94.466667pt;}
.xe{left:98.205867pt;}
.x2{left:99.811200pt;}
.x14{left:102.000000pt;}
.xf{left:103.272533pt;}
.x7{left:177.968800pt;}
.x3{left:209.614533pt;}
.x6{left:244.100000pt;}
.x4{left:274.009067pt;}
.xa{left:321.266667pt;}
.x5{left:334.568800pt;}
.x11{left:340.200000pt;}
.xb{left:342.600000pt;}
.x13{left:347.666667pt;}
.x17{left:359.066667pt;}
.x10{left:366.600000pt;}
.x15{left:394.090267pt;}
.x8{left:560.666667pt;}
}




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