
    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_e4524afa3da63a1a8ae06572.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_14bf7ed577fad7c004e5291d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_0808296c6ef7325309350d44.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.281250;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_fc54e279bc5d9bf8fef883fa.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.592000;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_b288af9b75aaa24e116a4eda.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2e{letter-spacing:-7.920000px;}
.ls3f{letter-spacing:-6.270000px;}
.ls30{letter-spacing:-5.940000px;}
.ls45{letter-spacing:-5.808000px;}
.ls2a{letter-spacing:-3.676200px;}
.ls5c{letter-spacing:-2.442000px;}
.ls43{letter-spacing:-2.304000px;}
.ls37{letter-spacing:-2.098800px;}
.ls47{letter-spacing:-2.064000px;}
.ls26{letter-spacing:-2.046000px;}
.ls42{letter-spacing:-1.968000px;}
.ls5d{letter-spacing:-1.716000px;}
.ls5b{letter-spacing:-1.650000px;}
.ls55{letter-spacing:-1.584000px;}
.ls38{letter-spacing:-1.518000px;}
.ls27{letter-spacing:-1.452000px;}
.ls3a{letter-spacing:-1.392600px;}
.ls5a{letter-spacing:-1.386000px;}
.ls48{letter-spacing:-1.368000px;}
.ls4c{letter-spacing:-1.320000px;}
.ls56{letter-spacing:-1.254000px;}
.ls36{letter-spacing:-1.188000px;}
.ls34{letter-spacing:-1.122000px;}
.ls59{letter-spacing:-1.056000px;}
.ls2c{letter-spacing:-0.990000px;}
.ls4e{letter-spacing:-0.924000px;}
.ls25{letter-spacing:-0.858000px;}
.lsf{letter-spacing:-0.855000px;}
.ls10{letter-spacing:-0.811680px;}
.lse{letter-spacing:-0.798000px;}
.ls2f{letter-spacing:-0.792000px;}
.ls12{letter-spacing:-0.768000px;}
.ls8{letter-spacing:-0.741000px;}
.ls32{letter-spacing:-0.726000px;}
.ls3b{letter-spacing:-0.660000px;}
.ls33{letter-spacing:-0.653400px;}
.ls46{letter-spacing:-0.624000px;}
.ls3d{letter-spacing:-0.594000px;}
.ls44{letter-spacing:-0.576000px;}
.ls39{letter-spacing:-0.528000px;}
.ls29{letter-spacing:-0.462000px;}
.ls7{letter-spacing:-0.399000px;}
.ls40{letter-spacing:-0.396000px;}
.lsc{letter-spacing:-0.342000px;}
.ls4d{letter-spacing:-0.330000px;}
.lsb{letter-spacing:-0.285000px;}
.ls35{letter-spacing:-0.264000px;}
.ls28{letter-spacing:-0.250800px;}
.ls11{letter-spacing:-0.228000px;}
.ls2d{letter-spacing:-0.198000px;}
.ls2b{letter-spacing:-0.178200px;}
.ls9{letter-spacing:-0.171000px;}
.ls31{letter-spacing:-0.132000px;}
.lsa{letter-spacing:-0.128160px;}
.lsd{letter-spacing:-0.114000px;}
.ls3c{letter-spacing:-0.066000px;}
.ls41{letter-spacing:-0.048000px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.057000px;}
.ls4a{letter-spacing:0.066000px;}
.ls4{letter-spacing:0.114000px;}
.ls1b{letter-spacing:0.132000px;}
.ls23{letter-spacing:0.198000px;}
.ls0{letter-spacing:0.228000px;}
.ls3e{letter-spacing:0.264000px;}
.ls4f{letter-spacing:0.330000px;}
.ls1{letter-spacing:0.342000px;}
.ls4b{letter-spacing:0.396000px;}
.ls17{letter-spacing:0.462000px;}
.ls5{letter-spacing:0.513000px;}
.ls51{letter-spacing:0.528000px;}
.ls49{letter-spacing:0.594000px;}
.ls13{letter-spacing:0.660000px;}
.ls50{letter-spacing:0.726000px;}
.ls16{letter-spacing:0.792000px;}
.ls1c{letter-spacing:0.858000px;}
.ls22{letter-spacing:0.871200px;}
.ls1a{letter-spacing:0.877800px;}
.ls24{letter-spacing:0.924000px;}
.ls14{letter-spacing:0.990000px;}
.ls2{letter-spacing:1.026000px;}
.ls1d{letter-spacing:1.056000px;}
.ls53{letter-spacing:1.122000px;}
.ls57{letter-spacing:1.188000px;}
.ls52{letter-spacing:1.254000px;}
.ls63{letter-spacing:1.386000px;}
.ls21{letter-spacing:1.392600px;}
.ls54{letter-spacing:1.452000px;}
.ls5e{letter-spacing:1.518000px;}
.ls61{letter-spacing:1.584000px;}
.ls19{letter-spacing:1.650000px;}
.ls60{letter-spacing:1.716000px;}
.ls58{letter-spacing:1.782000px;}
.ls15{letter-spacing:1.980000px;}
.ls62{letter-spacing:2.244000px;}
.ls18{letter-spacing:2.290200px;}
.ls1f{letter-spacing:2.560800px;}
.ls1e{letter-spacing:2.633400px;}
.ls20{letter-spacing:14.784000px;}
.ls64{letter-spacing:18.216000px;}
.ls5f{letter-spacing:24.024000px;}
.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;}
}
.ws87{word-spacing:-18.216000px;}
.ws78{word-spacing:-18.150000px;}
.ws89{word-spacing:-18.084000px;}
.ws88{word-spacing:-18.018000px;}
.ws6b{word-spacing:-17.754000px;}
.ws84{word-spacing:-17.688000px;}
.ws6f{word-spacing:-17.622000px;}
.ws82{word-spacing:-17.556000px;}
.ws70{word-spacing:-17.490000px;}
.ws7e{word-spacing:-17.424000px;}
.ws75{word-spacing:-17.358000px;}
.ws86{word-spacing:-17.292000px;}
.ws77{word-spacing:-17.226000px;}
.ws76{word-spacing:-17.160000px;}
.ws57{word-spacing:-17.094000px;}
.ws6c{word-spacing:-17.028000px;}
.ws71{word-spacing:-16.962000px;}
.ws67{word-spacing:-16.896000px;}
.ws1a{word-spacing:-16.830000px;}
.ws65{word-spacing:-16.764000px;}
.ws56{word-spacing:-16.698000px;}
.ws66{word-spacing:-16.632000px;}
.ws73{word-spacing:-16.566000px;}
.ws2d{word-spacing:-16.500000px;}
.ws6a{word-spacing:-16.434000px;}
.ws30{word-spacing:-16.368000px;}
.ws1f{word-spacing:-16.321800px;}
.ws20{word-spacing:-16.302000px;}
.ws1c{word-spacing:-16.249200px;}
.ws59{word-spacing:-16.236000px;}
.ws7d{word-spacing:-16.170000px;}
.ws74{word-spacing:-16.104000px;}
.ws31{word-spacing:-16.038000px;}
.ws19{word-spacing:-15.972000px;}
.ws2e{word-spacing:-15.906000px;}
.ws25{word-spacing:-15.846600px;}
.ws2c{word-spacing:-15.840000px;}
.ws24{word-spacing:-15.774000px;}
.ws22{word-spacing:-15.708000px;}
.ws27{word-spacing:-15.642000px;}
.ws8b{word-spacing:-15.576000px;}
.ws7f{word-spacing:-15.510000px;}
.ws26{word-spacing:-15.378000px;}
.ws28{word-spacing:-15.312000px;}
.ws85{word-spacing:-15.246000px;}
.ws79{word-spacing:-15.180000px;}
.ws7c{word-spacing:-15.114000px;}
.ws2b{word-spacing:-15.107400px;}
.ws1d{word-spacing:-15.048000px;}
.ws2a{word-spacing:-14.982000px;}
.ws0{word-spacing:-14.535000px;}
.ws1b{word-spacing:-14.454000px;}
.ws29{word-spacing:-14.401200px;}
.ws3{word-spacing:-14.250000px;}
.ws3a{word-spacing:-13.167000px;}
.ws1e{word-spacing:-12.823800px;}
.ws32{word-spacing:-12.192000px;}
.ws37{word-spacing:-11.952000px;}
.ws35{word-spacing:-11.424000px;}
.ws38{word-spacing:-11.376000px;}
.ws23{word-spacing:-10.560000px;}
.ws1{word-spacing:-10.551840px;}
.ws2f{word-spacing:-10.230000px;}
.ws33{word-spacing:-10.032000px;}
.ws39{word-spacing:-9.936000px;}
.ws34{word-spacing:-9.696000px;}
.ws21{word-spacing:-8.580000px;}
.ws18{word-spacing:-7.872000px;}
.ws36{word-spacing:-6.192000px;}
.ws72{word-spacing:-0.858000px;}
.ws51{word-spacing:-0.792000px;}
.ws45{word-spacing:-0.726000px;}
.ws4{word-spacing:-0.684000px;}
.ws4a{word-spacing:-0.660000px;}
.ws10{word-spacing:-0.627000px;}
.ws4c{word-spacing:-0.594000px;}
.wsd{word-spacing:-0.570000px;}
.ws60{word-spacing:-0.528000px;}
.wsf{word-spacing:-0.513000px;}
.ws4b{word-spacing:-0.462000px;}
.ws11{word-spacing:-0.456000px;}
.ws12{word-spacing:-0.399000px;}
.ws5c{word-spacing:-0.396000px;}
.ws6{word-spacing:-0.342000px;}
.ws3e{word-spacing:-0.330000px;}
.ws17{word-spacing:-0.285000px;}
.ws63{word-spacing:-0.264000px;}
.ws5a{word-spacing:-0.198000px;}
.ws41{word-spacing:-0.132000px;}
.ws9{word-spacing:-0.114000px;}
.ws4f{word-spacing:-0.066000px;}
.wsc{word-spacing:0.000000px;}
.ws15{word-spacing:0.057000px;}
.ws64{word-spacing:0.066000px;}
.ws40{word-spacing:0.132000px;}
.wsb{word-spacing:0.171000px;}
.ws44{word-spacing:0.198000px;}
.ws47{word-spacing:0.264000px;}
.ws4d{word-spacing:0.330000px;}
.ws6d{word-spacing:0.396000px;}
.wsa{word-spacing:0.399000px;}
.ws5f{word-spacing:0.462000px;}
.ws4e{word-spacing:0.528000px;}
.ws3d{word-spacing:0.594000px;}
.ws8{word-spacing:0.627000px;}
.ws49{word-spacing:0.660000px;}
.ws48{word-spacing:0.726000px;}
.ws5b{word-spacing:0.792000px;}
.ws3f{word-spacing:0.858000px;}
.ws16{word-spacing:0.912000px;}
.ws50{word-spacing:0.924000px;}
.ws62{word-spacing:0.990000px;}
.ws5e{word-spacing:1.056000px;}
.ws7{word-spacing:1.083000px;}
.ws42{word-spacing:1.122000px;}
.wse{word-spacing:1.140000px;}
.ws69{word-spacing:1.188000px;}
.ws5{word-spacing:1.197000px;}
.ws14{word-spacing:1.254000px;}
.ws13{word-spacing:1.311000px;}
.ws53{word-spacing:1.320000px;}
.ws52{word-spacing:1.386000px;}
.ws5d{word-spacing:1.452000px;}
.ws46{word-spacing:1.518000px;}
.ws61{word-spacing:1.584000px;}
.ws3b{word-spacing:1.650000px;}
.ws3c{word-spacing:1.716000px;}
.ws6e{word-spacing:2.244000px;}
.ws2{word-spacing:3.284640px;}
.ws81{word-spacing:3.366000px;}
.ws8a{word-spacing:3.432000px;}
.ws7b{word-spacing:4.158000px;}
.ws7a{word-spacing:4.224000px;}
.ws83{word-spacing:7.524000px;}
.ws43{word-spacing:8.646000px;}
.ws80{word-spacing:9.240000px;}
.ws58{word-spacing:19.404000px;}
.ws54{word-spacing:35.856000px;}
.ws68{word-spacing:35.904000px;}
.ws55{word-spacing:375.792000px;}
._7{margin-left:-8.640000px;}
._9{margin-left:-7.458000px;}
._3{margin-left:-5.643000px;}
._8{margin-left:-4.539000px;}
._1{margin-left:-3.477000px;}
._0{margin-left:-1.995000px;}
._5{width:1.026000px;}
._2{width:2.052000px;}
._e{width:4.092000px;}
._4{width:12.369000px;}
._f{width:14.553000px;}
._d{width:15.642000px;}
._c{width:17.358000px;}
._6{width:47.979000px;}
._b{width:387.867000px;}
._a{width:674.544000px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:42.720000px;}
.fs2{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs6{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y53{bottom:0.646500px;}
.y56{bottom:1.396500px;}
.y51{bottom:2.146500px;}
.y58{bottom:2.896500px;}
.y4e{bottom:55.052700px;}
.y110{bottom:55.132500px;}
.yf9{bottom:55.149000px;}
.y98{bottom:55.165500px;}
.yb5{bottom:55.182000px;}
.y86{bottom:55.198500px;}
.ydb{bottom:55.215000px;}
.y17d{bottom:56.931000px;}
.y20{bottom:66.330000px;}
.y4d{bottom:72.295200px;}
.y10f{bottom:72.375000px;}
.yf8{bottom:72.391500px;}
.y97{bottom:72.408000px;}
.yb4{bottom:72.424500px;}
.y85{bottom:72.441000px;}
.yda{bottom:72.457500px;}
.y17c{bottom:74.173500px;}
.y1f{bottom:81.320250px;}
.y4c{bottom:89.537700px;}
.y10e{bottom:89.617500px;}
.yf7{bottom:89.634000px;}
.y96{bottom:89.650500px;}
.yb3{bottom:89.667000px;}
.y84{bottom:89.683500px;}
.yd9{bottom:89.700000px;}
.y17b{bottom:91.416000px;}
.y11b{bottom:98.296500px;}
.y1e{bottom:102.324750px;}
.y4b{bottom:106.780200px;}
.y10d{bottom:106.860000px;}
.yf6{bottom:106.876500px;}
.y95{bottom:106.893000px;}
.yb2{bottom:106.909500px;}
.y83{bottom:106.926000px;}
.yd8{bottom:106.942500px;}
.y17a{bottom:108.658500px;}
.y135{bottom:115.539000px;}
.y1d{bottom:117.281250px;}
.y156{bottom:118.410000px;}
.y4a{bottom:124.022700px;}
.y10c{bottom:124.102500px;}
.yf5{bottom:124.119000px;}
.y94{bottom:124.135500px;}
.yb1{bottom:124.152000px;}
.y82{bottom:124.168500px;}
.yd7{bottom:124.185000px;}
.y179{bottom:125.901000px;}
.y1c{bottom:132.286500px;}
.y134{bottom:132.781500px;}
.y155{bottom:135.652500px;}
.y49{bottom:141.265200px;}
.y10b{bottom:141.345000px;}
.yf4{bottom:141.361500px;}
.y93{bottom:141.378000px;}
.yb0{bottom:141.394500px;}
.y81{bottom:141.411000px;}
.yd6{bottom:141.427500px;}
.y178{bottom:143.143500px;}
.y1b{bottom:147.291750px;}
.y133{bottom:150.024000px;}
.y154{bottom:152.895000px;}
.y48{bottom:158.507700px;}
.y10a{bottom:158.587500px;}
.y11a{bottom:158.604000px;}
.y92{bottom:158.620500px;}
.yaf{bottom:158.637000px;}
.y80{bottom:158.653500px;}
.yd5{bottom:158.670000px;}
.y177{bottom:160.386000px;}
.y1a{bottom:162.297000px;}
.y132{bottom:167.266500px;}
.y153{bottom:170.137500px;}
.yf3{bottom:171.556500px;}
.y47{bottom:175.750200px;}
.y119{bottom:175.846500px;}
.y91{bottom:175.863000px;}
.yae{bottom:175.879500px;}
.y7f{bottom:175.896000px;}
.yd4{bottom:175.912500px;}
.y19{bottom:177.302250px;}
.y176{bottom:177.628500px;}
.y131{bottom:184.509000px;}
.y152{bottom:187.380000px;}
.yf2{bottom:188.799000px;}
.y18{bottom:192.307500px;}
.y46{bottom:192.992700px;}
.y109{bottom:193.089000px;}
.yfc{bottom:193.105500px;}
.yad{bottom:193.122000px;}
.y7e{bottom:193.138500px;}
.yd3{bottom:193.155000px;}
.y175{bottom:194.871000px;}
.y130{bottom:201.751500px;}
.y151{bottom:204.622500px;}
.yf1{bottom:206.041500px;}
.y17{bottom:207.312750px;}
.y45{bottom:210.235200px;}
.y108{bottom:210.331500px;}
.yfb{bottom:210.348000px;}
.y90{bottom:210.364500px;}
.y7d{bottom:210.381000px;}
.yd2{bottom:210.397500px;}
.y174{bottom:212.113500px;}
.y184{bottom:218.977500px;}
.y12f{bottom:218.994000px;}
.y150{bottom:221.865000px;}
.y16{bottom:222.318000px;}
.yf0{bottom:223.284000px;}
.y44{bottom:227.477700px;}
.y107{bottom:227.574000px;}
.yfa{bottom:227.590500px;}
.y8f{bottom:227.607000px;}
.y7c{bottom:227.623500px;}
.yd1{bottom:227.640000px;}
.y173{bottom:229.356000px;}
.y12e{bottom:236.236500px;}
.y15{bottom:237.323250px;}
.y14f{bottom:239.107500px;}
.yef{bottom:240.526500px;}
.y43{bottom:244.720200px;}
.y106{bottom:244.816500px;}
.y183{bottom:244.833000px;}
.y8e{bottom:244.849500px;}
.y7b{bottom:244.866000px;}
.yd0{bottom:244.882500px;}
.y172{bottom:246.598500px;}
.y14{bottom:252.328500px;}
.y11e{bottom:253.462500px;}
.y12d{bottom:253.479000px;}
.y14e{bottom:256.350000px;}
.yee{bottom:257.769000px;}
.y42{bottom:261.962700px;}
.y105{bottom:262.059000px;}
.y182{bottom:262.075500px;}
.y8d{bottom:262.092000px;}
.y7a{bottom:262.108500px;}
.ycf{bottom:262.125000px;}
.y171{bottom:263.841000px;}
.y13{bottom:267.333750px;}
.y11d{bottom:270.705000px;}
.y12c{bottom:270.721500px;}
.y14d{bottom:273.592500px;}
.yed{bottom:275.011500px;}
.y41{bottom:279.205200px;}
.y118{bottom:279.301500px;}
.y181{bottom:279.318000px;}
.y8c{bottom:279.334500px;}
.y79{bottom:279.351000px;}
.yce{bottom:279.367500px;}
.y170{bottom:281.083500px;}
.y11c{bottom:287.947500px;}
.y12b{bottom:287.964000px;}
.y14c{bottom:290.835000px;}
.y40{bottom:296.447700px;}
.y117{bottom:296.544000px;}
.y104{bottom:296.560500px;}
.y8b{bottom:296.577000px;}
.y78{bottom:296.593500px;}
.ycd{bottom:296.610000px;}
.y12{bottom:297.330000px;}
.y16f{bottom:298.326000px;}
.yec{bottom:305.190000px;}
.y12a{bottom:305.206500px;}
.y14b{bottom:308.077500px;}
.y3f{bottom:313.690200px;}
.y116{bottom:313.786500px;}
.y103{bottom:313.803000px;}
.y8a{bottom:313.819500px;}
.y77{bottom:313.836000px;}
.ycc{bottom:313.852500px;}
.y16e{bottom:315.568500px;}
.yeb{bottom:322.432500px;}
.y129{bottom:322.449000px;}
.y3e{bottom:330.932700px;}
.y115{bottom:331.029000px;}
.y102{bottom:331.045500px;}
.y89{bottom:331.062000px;}
.y76{bottom:331.078500px;}
.ycb{bottom:331.095000px;}
.y16d{bottom:332.811000px;}
.y11{bottom:333.315000px;}
.y14a{bottom:336.820500px;}
.yea{bottom:339.675000px;}
.y17f{bottom:339.691500px;}
.y3d{bottom:348.175200px;}
.y114{bottom:348.271500px;}
.y101{bottom:348.288000px;}
.yac{bottom:348.304500px;}
.y10{bottom:348.320250px;}
.y75{bottom:348.321000px;}
.yca{bottom:348.337500px;}
.y16c{bottom:350.053500px;}
.y149{bottom:354.063000px;}
.ye9{bottom:356.917500px;}
.y17e{bottom:356.934000px;}
.y3c{bottom:365.417700px;}
.y100{bottom:365.530500px;}
.yab{bottom:365.547000px;}
.y74{bottom:365.563500px;}
.yc9{bottom:365.580000px;}
.y16b{bottom:367.296000px;}
.yf{bottom:369.324750px;}
.y148{bottom:371.305500px;}
.ye8{bottom:374.160000px;}
.y3b{bottom:382.660200px;}
.yff{bottom:382.773000px;}
.yaa{bottom:382.789500px;}
.y88{bottom:382.806000px;}
.yc8{bottom:382.822500px;}
.ye{bottom:384.267000px;}
.y16a{bottom:384.538500px;}
.y147{bottom:388.548000px;}
.ye7{bottom:391.402500px;}
.yd{bottom:399.272250px;}
.y3a{bottom:399.902700px;}
.y113{bottom:400.015500px;}
.ya9{bottom:400.032000px;}
.y87{bottom:400.048500px;}
.y73{bottom:400.065000px;}
.y169{bottom:401.781000px;}
.y146{bottom:405.790500px;}
.y139{bottom:408.678000px;}
.yc{bottom:414.277500px;}
.y39{bottom:417.145200px;}
.y112{bottom:417.258000px;}
.ya8{bottom:417.274500px;}
.yc7{bottom:417.291000px;}
.y72{bottom:417.307500px;}
.y168{bottom:419.023500px;}
.ye6{bottom:421.597500px;}
.y145{bottom:423.033000px;}
.y138{bottom:425.920500px;}
.yb{bottom:429.282750px;}
.y38{bottom:434.387700px;}
.y111{bottom:434.500500px;}
.ya7{bottom:434.517000px;}
.yc6{bottom:434.533500px;}
.y71{bottom:434.550000px;}
.y167{bottom:436.266000px;}
.ye5{bottom:438.840000px;}
.y144{bottom:440.275500px;}
.y137{bottom:443.163000px;}
.ya{bottom:444.288000px;}
.y37{bottom:451.630200px;}
.y18c{bottom:451.743000px;}
.ya6{bottom:451.759500px;}
.yc5{bottom:451.776000px;}
.y70{bottom:451.792500px;}
.y166{bottom:453.508500px;}
.ye4{bottom:456.082500px;}
.y143{bottom:457.518000px;}
.y9{bottom:459.293250px;}
.y136{bottom:460.405500px;}
.y36{bottom:468.872700px;}
.y18b{bottom:468.985500px;}
.ya5{bottom:469.002000px;}
.yc4{bottom:469.018500px;}
.y6f{bottom:469.035000px;}
.y165{bottom:470.751000px;}
.ye3{bottom:473.325000px;}
.y8{bottom:474.298500px;}
.y142{bottom:474.760500px;}
.y128{bottom:477.648000px;}
.y35{bottom:486.115200px;}
.y18a{bottom:486.228000px;}
.ya4{bottom:486.244500px;}
.yc3{bottom:486.261000px;}
.y6e{bottom:486.277500px;}
.y164{bottom:487.993500px;}
.y7{bottom:489.303750px;}
.ye2{bottom:490.567500px;}
.y141{bottom:492.003000px;}
.y127{bottom:494.890500px;}
.y34{bottom:503.357700px;}
.y189{bottom:503.470500px;}
.ya3{bottom:503.487000px;}
.yc2{bottom:503.503500px;}
.y6d{bottom:503.520000px;}
.y6{bottom:504.309000px;}
.y163{bottom:505.236000px;}
.ye1{bottom:507.810000px;}
.y140{bottom:509.245500px;}
.y126{bottom:512.133000px;}
.y5{bottom:519.314250px;}
.y33{bottom:520.600200px;}
.y188{bottom:520.713000px;}
.ya2{bottom:520.729500px;}
.yc1{bottom:520.746000px;}
.y6c{bottom:520.762500px;}
.y162{bottom:522.478500px;}
.ye0{bottom:525.052500px;}
.y13f{bottom:526.488000px;}
.y125{bottom:529.375500px;}
.y4{bottom:534.319500px;}
.y32{bottom:537.842700px;}
.y187{bottom:537.955500px;}
.ya1{bottom:537.972000px;}
.yc0{bottom:537.988500px;}
.y6b{bottom:538.005000px;}
.y161{bottom:539.721000px;}
.y124{bottom:546.618000px;}
.y3{bottom:549.324750px;}
.y31{bottom:555.085200px;}
.ya0{bottom:555.214500px;}
.ybf{bottom:555.231000px;}
.y6a{bottom:555.247500px;}
.y160{bottom:556.963500px;}
.y186{bottom:563.827500px;}
.yfe{bottom:563.844000px;}
.y123{bottom:563.860500px;}
.y2{bottom:564.330000px;}
.y30{bottom:572.327700px;}
.y9f{bottom:572.457000px;}
.ybe{bottom:572.473500px;}
.y69{bottom:572.490000px;}
.y15f{bottom:574.206000px;}
.yfd{bottom:581.086500px;}
.y122{bottom:581.103000px;}
.y2f{bottom:589.570200px;}
.y9e{bottom:589.699500px;}
.ybd{bottom:589.716000px;}
.y68{bottom:589.732500px;}
.y1{bottom:594.330000px;}
.y185{bottom:598.329000px;}
.y121{bottom:598.345500px;}
.y2e{bottom:606.812700px;}
.y9d{bottom:606.942000px;}
.ybc{bottom:606.958500px;}
.y67{bottom:606.975000px;}
.y15e{bottom:612.733500px;}
.y120{bottom:615.588000px;}
.y2d{bottom:624.055200px;}
.y9c{bottom:624.184500px;}
.ybb{bottom:624.201000px;}
.y66{bottom:624.217500px;}
.y15d{bottom:629.976000px;}
.y11f{bottom:632.830500px;}
.y2c{bottom:641.297700px;}
.y9b{bottom:641.427000px;}
.yba{bottom:641.443500px;}
.y65{bottom:641.460000px;}
.y15c{bottom:647.218500px;}
.y180{bottom:650.056500px;}
.y194{bottom:650.073000px;}
.y9a{bottom:658.669500px;}
.yb9{bottom:658.686000px;}
.y64{bottom:658.702500px;}
.y15b{bottom:664.461000px;}
.y2b{bottom:667.169700px;}
.y193{bottom:667.315500px;}
.y13e{bottom:675.912000px;}
.yb8{bottom:675.928500px;}
.y63{bottom:675.945000px;}
.y28{bottom:678.849000px;}
.y15a{bottom:681.703500px;}
.y99{bottom:684.541500px;}
.y192{bottom:684.558000px;}
.y2a{bottom:693.045000px;}
.y27{bottom:693.105000px;}
.y13d{bottom:693.154500px;}
.yb7{bottom:693.171000px;}
.y62{bottom:693.187500px;}
.y159{bottom:698.946000px;}
.y191{bottom:701.800500px;}
.y13c{bottom:710.397000px;}
.yb6{bottom:710.413500px;}
.y61{bottom:710.430000px;}
.y26{bottom:711.105000px;}
.y158{bottom:716.188500px;}
.y190{bottom:719.043000px;}
.y13b{bottom:727.639500px;}
.ydf{bottom:727.656000px;}
.y60{bottom:727.672500px;}
.y25{bottom:729.105000px;}
.y157{bottom:733.431000px;}
.y18f{bottom:736.285500px;}
.y5a{bottom:742.500000px;}
.yde{bottom:744.898500px;}
.y5f{bottom:744.915000px;}
.y24{bottom:747.105000px;}
.y13a{bottom:753.511500px;}
.y18e{bottom:753.528000px;}
.y59{bottom:757.500000px;}
.y54{bottom:759.000000px;}
.ydd{bottom:762.141000px;}
.y5e{bottom:762.157500px;}
.y23{bottom:765.105000px;}
.y18d{bottom:770.770500px;}
.y52{bottom:775.500000px;}
.y57{bottom:778.500000px;}
.y5d{bottom:779.400000px;}
.ydc{bottom:788.013000px;}
.y50{bottom:792.000000px;}
.y55{bottom:796.500000px;}
.y5c{bottom:796.642500px;}
.y22{bottom:810.105000px;}
.y5b{bottom:813.885000px;}
.y4f{bottom:821.250000px;}
.y21{bottom:861.105000px;}
.y29{bottom:924.000000px;}
.hd{height:10.500000px;}
.he{height:12.000000px;}
.hb{height:13.500000px;}
.hf{height:15.000000px;}
.h8{height:47.085938px;}
.h4{height:51.216000px;}
.hc{height:52.998047px;}
.h7{height:57.618000px;}
.h1{height:60.819000px;}
.h3{height:61.014000px;}
.h2{height:61.071000px;}
.h9{height:70.422000px;}
.ha{height:71.544000px;}
.h6{height:76.824000px;}
.h5{height:102.432000px;}
.h0{height:894.000000px;}
.w1{width:186.000000px;}
.w6{width:189.000000px;}
.w3{width:192.000000px;}
.w4{width:198.000000px;}
.w2{width:208.500000px;}
.w5{width:210.000000px;}
.w0{width:637.500000px;}
.x0{left:0.000000px;}
.xe{left:1.500000px;}
.xa{left:4.920150px;}
.x4{left:6.000000px;}
.xc{left:41.313000px;}
.x1{left:76.200000px;}
.x5{left:77.415000px;}
.x11{left:93.442500px;}
.x6{left:94.655850px;}
.x2{left:98.700750px;}
.x12{left:99.915000px;}
.x9{left:102.015150px;}
.x13{left:105.471000px;}
.xb{left:111.000000px;}
.x8{left:118.500000px;}
.x7{left:296.745000px;}
.xd{left:333.000000px;}
.xf{left:334.500000px;}
.x10{left:337.500000px;}
.x3{left:430.770000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2e{letter-spacing:-7.040000pt;}
.ls3f{letter-spacing:-5.573333pt;}
.ls30{letter-spacing:-5.280000pt;}
.ls45{letter-spacing:-5.162667pt;}
.ls2a{letter-spacing:-3.267733pt;}
.ls5c{letter-spacing:-2.170667pt;}
.ls43{letter-spacing:-2.048000pt;}
.ls37{letter-spacing:-1.865600pt;}
.ls47{letter-spacing:-1.834667pt;}
.ls26{letter-spacing:-1.818667pt;}
.ls42{letter-spacing:-1.749333pt;}
.ls5d{letter-spacing:-1.525333pt;}
.ls5b{letter-spacing:-1.466667pt;}
.ls55{letter-spacing:-1.408000pt;}
.ls38{letter-spacing:-1.349333pt;}
.ls27{letter-spacing:-1.290667pt;}
.ls3a{letter-spacing:-1.237867pt;}
.ls5a{letter-spacing:-1.232000pt;}
.ls48{letter-spacing:-1.216000pt;}
.ls4c{letter-spacing:-1.173333pt;}
.ls56{letter-spacing:-1.114667pt;}
.ls36{letter-spacing:-1.056000pt;}
.ls34{letter-spacing:-0.997333pt;}
.ls59{letter-spacing:-0.938667pt;}
.ls2c{letter-spacing:-0.880000pt;}
.ls4e{letter-spacing:-0.821333pt;}
.ls25{letter-spacing:-0.762667pt;}
.lsf{letter-spacing:-0.760000pt;}
.ls10{letter-spacing:-0.721493pt;}
.lse{letter-spacing:-0.709333pt;}
.ls2f{letter-spacing:-0.704000pt;}
.ls12{letter-spacing:-0.682667pt;}
.ls8{letter-spacing:-0.658667pt;}
.ls32{letter-spacing:-0.645333pt;}
.ls3b{letter-spacing:-0.586667pt;}
.ls33{letter-spacing:-0.580800pt;}
.ls46{letter-spacing:-0.554667pt;}
.ls3d{letter-spacing:-0.528000pt;}
.ls44{letter-spacing:-0.512000pt;}
.ls39{letter-spacing:-0.469333pt;}
.ls29{letter-spacing:-0.410667pt;}
.ls7{letter-spacing:-0.354667pt;}
.ls40{letter-spacing:-0.352000pt;}
.lsc{letter-spacing:-0.304000pt;}
.ls4d{letter-spacing:-0.293333pt;}
.lsb{letter-spacing:-0.253333pt;}
.ls35{letter-spacing:-0.234667pt;}
.ls28{letter-spacing:-0.222933pt;}
.ls11{letter-spacing:-0.202667pt;}
.ls2d{letter-spacing:-0.176000pt;}
.ls2b{letter-spacing:-0.158400pt;}
.ls9{letter-spacing:-0.152000pt;}
.ls31{letter-spacing:-0.117333pt;}
.lsa{letter-spacing:-0.113920pt;}
.lsd{letter-spacing:-0.101333pt;}
.ls3c{letter-spacing:-0.058667pt;}
.ls41{letter-spacing:-0.042667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.050667pt;}
.ls4a{letter-spacing:0.058667pt;}
.ls4{letter-spacing:0.101333pt;}
.ls1b{letter-spacing:0.117333pt;}
.ls23{letter-spacing:0.176000pt;}
.ls0{letter-spacing:0.202667pt;}
.ls3e{letter-spacing:0.234667pt;}
.ls4f{letter-spacing:0.293333pt;}
.ls1{letter-spacing:0.304000pt;}
.ls4b{letter-spacing:0.352000pt;}
.ls17{letter-spacing:0.410667pt;}
.ls5{letter-spacing:0.456000pt;}
.ls51{letter-spacing:0.469333pt;}
.ls49{letter-spacing:0.528000pt;}
.ls13{letter-spacing:0.586667pt;}
.ls50{letter-spacing:0.645333pt;}
.ls16{letter-spacing:0.704000pt;}
.ls1c{letter-spacing:0.762667pt;}
.ls22{letter-spacing:0.774400pt;}
.ls1a{letter-spacing:0.780267pt;}
.ls24{letter-spacing:0.821333pt;}
.ls14{letter-spacing:0.880000pt;}
.ls2{letter-spacing:0.912000pt;}
.ls1d{letter-spacing:0.938667pt;}
.ls53{letter-spacing:0.997333pt;}
.ls57{letter-spacing:1.056000pt;}
.ls52{letter-spacing:1.114667pt;}
.ls63{letter-spacing:1.232000pt;}
.ls21{letter-spacing:1.237867pt;}
.ls54{letter-spacing:1.290667pt;}
.ls5e{letter-spacing:1.349333pt;}
.ls61{letter-spacing:1.408000pt;}
.ls19{letter-spacing:1.466667pt;}
.ls60{letter-spacing:1.525333pt;}
.ls58{letter-spacing:1.584000pt;}
.ls15{letter-spacing:1.760000pt;}
.ls62{letter-spacing:1.994667pt;}
.ls18{letter-spacing:2.035733pt;}
.ls1f{letter-spacing:2.276267pt;}
.ls1e{letter-spacing:2.340800pt;}
.ls20{letter-spacing:13.141333pt;}
.ls64{letter-spacing:16.192000pt;}
.ls5f{letter-spacing:21.354667pt;}
.ws87{word-spacing:-16.192000pt;}
.ws78{word-spacing:-16.133333pt;}
.ws89{word-spacing:-16.074667pt;}
.ws88{word-spacing:-16.016000pt;}
.ws6b{word-spacing:-15.781333pt;}
.ws84{word-spacing:-15.722667pt;}
.ws6f{word-spacing:-15.664000pt;}
.ws82{word-spacing:-15.605333pt;}
.ws70{word-spacing:-15.546667pt;}
.ws7e{word-spacing:-15.488000pt;}
.ws75{word-spacing:-15.429333pt;}
.ws86{word-spacing:-15.370667pt;}
.ws77{word-spacing:-15.312000pt;}
.ws76{word-spacing:-15.253333pt;}
.ws57{word-spacing:-15.194667pt;}
.ws6c{word-spacing:-15.136000pt;}
.ws71{word-spacing:-15.077333pt;}
.ws67{word-spacing:-15.018667pt;}
.ws1a{word-spacing:-14.960000pt;}
.ws65{word-spacing:-14.901333pt;}
.ws56{word-spacing:-14.842667pt;}
.ws66{word-spacing:-14.784000pt;}
.ws73{word-spacing:-14.725333pt;}
.ws2d{word-spacing:-14.666667pt;}
.ws6a{word-spacing:-14.608000pt;}
.ws30{word-spacing:-14.549333pt;}
.ws1f{word-spacing:-14.508267pt;}
.ws20{word-spacing:-14.490667pt;}
.ws1c{word-spacing:-14.443733pt;}
.ws59{word-spacing:-14.432000pt;}
.ws7d{word-spacing:-14.373333pt;}
.ws74{word-spacing:-14.314667pt;}
.ws31{word-spacing:-14.256000pt;}
.ws19{word-spacing:-14.197333pt;}
.ws2e{word-spacing:-14.138667pt;}
.ws25{word-spacing:-14.085867pt;}
.ws2c{word-spacing:-14.080000pt;}
.ws24{word-spacing:-14.021333pt;}
.ws22{word-spacing:-13.962667pt;}
.ws27{word-spacing:-13.904000pt;}
.ws8b{word-spacing:-13.845333pt;}
.ws7f{word-spacing:-13.786667pt;}
.ws26{word-spacing:-13.669333pt;}
.ws28{word-spacing:-13.610667pt;}
.ws85{word-spacing:-13.552000pt;}
.ws79{word-spacing:-13.493333pt;}
.ws7c{word-spacing:-13.434667pt;}
.ws2b{word-spacing:-13.428800pt;}
.ws1d{word-spacing:-13.376000pt;}
.ws2a{word-spacing:-13.317333pt;}
.ws0{word-spacing:-12.920000pt;}
.ws1b{word-spacing:-12.848000pt;}
.ws29{word-spacing:-12.801067pt;}
.ws3{word-spacing:-12.666667pt;}
.ws3a{word-spacing:-11.704000pt;}
.ws1e{word-spacing:-11.398933pt;}
.ws32{word-spacing:-10.837333pt;}
.ws37{word-spacing:-10.624000pt;}
.ws35{word-spacing:-10.154667pt;}
.ws38{word-spacing:-10.112000pt;}
.ws23{word-spacing:-9.386667pt;}
.ws1{word-spacing:-9.379413pt;}
.ws2f{word-spacing:-9.093333pt;}
.ws33{word-spacing:-8.917333pt;}
.ws39{word-spacing:-8.832000pt;}
.ws34{word-spacing:-8.618667pt;}
.ws21{word-spacing:-7.626667pt;}
.ws18{word-spacing:-6.997333pt;}
.ws36{word-spacing:-5.504000pt;}
.ws72{word-spacing:-0.762667pt;}
.ws51{word-spacing:-0.704000pt;}
.ws45{word-spacing:-0.645333pt;}
.ws4{word-spacing:-0.608000pt;}
.ws4a{word-spacing:-0.586667pt;}
.ws10{word-spacing:-0.557333pt;}
.ws4c{word-spacing:-0.528000pt;}
.wsd{word-spacing:-0.506667pt;}
.ws60{word-spacing:-0.469333pt;}
.wsf{word-spacing:-0.456000pt;}
.ws4b{word-spacing:-0.410667pt;}
.ws11{word-spacing:-0.405333pt;}
.ws12{word-spacing:-0.354667pt;}
.ws5c{word-spacing:-0.352000pt;}
.ws6{word-spacing:-0.304000pt;}
.ws3e{word-spacing:-0.293333pt;}
.ws17{word-spacing:-0.253333pt;}
.ws63{word-spacing:-0.234667pt;}
.ws5a{word-spacing:-0.176000pt;}
.ws41{word-spacing:-0.117333pt;}
.ws9{word-spacing:-0.101333pt;}
.ws4f{word-spacing:-0.058667pt;}
.wsc{word-spacing:0.000000pt;}
.ws15{word-spacing:0.050667pt;}
.ws64{word-spacing:0.058667pt;}
.ws40{word-spacing:0.117333pt;}
.wsb{word-spacing:0.152000pt;}
.ws44{word-spacing:0.176000pt;}
.ws47{word-spacing:0.234667pt;}
.ws4d{word-spacing:0.293333pt;}
.ws6d{word-spacing:0.352000pt;}
.wsa{word-spacing:0.354667pt;}
.ws5f{word-spacing:0.410667pt;}
.ws4e{word-spacing:0.469333pt;}
.ws3d{word-spacing:0.528000pt;}
.ws8{word-spacing:0.557333pt;}
.ws49{word-spacing:0.586667pt;}
.ws48{word-spacing:0.645333pt;}
.ws5b{word-spacing:0.704000pt;}
.ws3f{word-spacing:0.762667pt;}
.ws16{word-spacing:0.810667pt;}
.ws50{word-spacing:0.821333pt;}
.ws62{word-spacing:0.880000pt;}
.ws5e{word-spacing:0.938667pt;}
.ws7{word-spacing:0.962667pt;}
.ws42{word-spacing:0.997333pt;}
.wse{word-spacing:1.013333pt;}
.ws69{word-spacing:1.056000pt;}
.ws5{word-spacing:1.064000pt;}
.ws14{word-spacing:1.114667pt;}
.ws13{word-spacing:1.165333pt;}
.ws53{word-spacing:1.173333pt;}
.ws52{word-spacing:1.232000pt;}
.ws5d{word-spacing:1.290667pt;}
.ws46{word-spacing:1.349333pt;}
.ws61{word-spacing:1.408000pt;}
.ws3b{word-spacing:1.466667pt;}
.ws3c{word-spacing:1.525333pt;}
.ws6e{word-spacing:1.994667pt;}
.ws2{word-spacing:2.919680pt;}
.ws81{word-spacing:2.992000pt;}
.ws8a{word-spacing:3.050667pt;}
.ws7b{word-spacing:3.696000pt;}
.ws7a{word-spacing:3.754667pt;}
.ws83{word-spacing:6.688000pt;}
.ws43{word-spacing:7.685333pt;}
.ws80{word-spacing:8.213333pt;}
.ws58{word-spacing:17.248000pt;}
.ws54{word-spacing:31.872000pt;}
.ws68{word-spacing:31.914667pt;}
.ws55{word-spacing:334.037333pt;}
._7{margin-left:-7.680000pt;}
._9{margin-left:-6.629333pt;}
._3{margin-left:-5.016000pt;}
._8{margin-left:-4.034667pt;}
._1{margin-left:-3.090667pt;}
._0{margin-left:-1.773333pt;}
._5{width:0.912000pt;}
._2{width:1.824000pt;}
._e{width:3.637333pt;}
._4{width:10.994667pt;}
._f{width:12.936000pt;}
._d{width:13.904000pt;}
._c{width:15.429333pt;}
._6{width:42.648000pt;}
._b{width:344.770667pt;}
._a{width:599.594667pt;}
.fs1{font-size:37.973333pt;}
.fs2{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs6{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:0.574667pt;}
.y56{bottom:1.241333pt;}
.y51{bottom:1.908000pt;}
.y58{bottom:2.574667pt;}
.y4e{bottom:48.935733pt;}
.y110{bottom:49.006667pt;}
.yf9{bottom:49.021333pt;}
.y98{bottom:49.036000pt;}
.yb5{bottom:49.050667pt;}
.y86{bottom:49.065333pt;}
.ydb{bottom:49.080000pt;}
.y17d{bottom:50.605333pt;}
.y20{bottom:58.960000pt;}
.y4d{bottom:64.262400pt;}
.y10f{bottom:64.333333pt;}
.yf8{bottom:64.348000pt;}
.y97{bottom:64.362667pt;}
.yb4{bottom:64.377333pt;}
.y85{bottom:64.392000pt;}
.yda{bottom:64.406667pt;}
.y17c{bottom:65.932000pt;}
.y1f{bottom:72.284667pt;}
.y4c{bottom:79.589067pt;}
.y10e{bottom:79.660000pt;}
.yf7{bottom:79.674667pt;}
.y96{bottom:79.689333pt;}
.yb3{bottom:79.704000pt;}
.y84{bottom:79.718667pt;}
.yd9{bottom:79.733333pt;}
.y17b{bottom:81.258667pt;}
.y11b{bottom:87.374667pt;}
.y1e{bottom:90.955333pt;}
.y4b{bottom:94.915733pt;}
.y10d{bottom:94.986667pt;}
.yf6{bottom:95.001333pt;}
.y95{bottom:95.016000pt;}
.yb2{bottom:95.030667pt;}
.y83{bottom:95.045333pt;}
.yd8{bottom:95.060000pt;}
.y17a{bottom:96.585333pt;}
.y135{bottom:102.701333pt;}
.y1d{bottom:104.250000pt;}
.y156{bottom:105.253333pt;}
.y4a{bottom:110.242400pt;}
.y10c{bottom:110.313333pt;}
.yf5{bottom:110.328000pt;}
.y94{bottom:110.342667pt;}
.yb1{bottom:110.357333pt;}
.y82{bottom:110.372000pt;}
.yd7{bottom:110.386667pt;}
.y179{bottom:111.912000pt;}
.y1c{bottom:117.588000pt;}
.y134{bottom:118.028000pt;}
.y155{bottom:120.580000pt;}
.y49{bottom:125.569067pt;}
.y10b{bottom:125.640000pt;}
.yf4{bottom:125.654667pt;}
.y93{bottom:125.669333pt;}
.yb0{bottom:125.684000pt;}
.y81{bottom:125.698667pt;}
.yd6{bottom:125.713333pt;}
.y178{bottom:127.238667pt;}
.y1b{bottom:130.926000pt;}
.y133{bottom:133.354667pt;}
.y154{bottom:135.906667pt;}
.y48{bottom:140.895733pt;}
.y10a{bottom:140.966667pt;}
.y11a{bottom:140.981333pt;}
.y92{bottom:140.996000pt;}
.yaf{bottom:141.010667pt;}
.y80{bottom:141.025333pt;}
.yd5{bottom:141.040000pt;}
.y177{bottom:142.565333pt;}
.y1a{bottom:144.264000pt;}
.y132{bottom:148.681333pt;}
.y153{bottom:151.233333pt;}
.yf3{bottom:152.494667pt;}
.y47{bottom:156.222400pt;}
.y119{bottom:156.308000pt;}
.y91{bottom:156.322667pt;}
.yae{bottom:156.337333pt;}
.y7f{bottom:156.352000pt;}
.yd4{bottom:156.366667pt;}
.y19{bottom:157.602000pt;}
.y176{bottom:157.892000pt;}
.y131{bottom:164.008000pt;}
.y152{bottom:166.560000pt;}
.yf2{bottom:167.821333pt;}
.y18{bottom:170.940000pt;}
.y46{bottom:171.549067pt;}
.y109{bottom:171.634667pt;}
.yfc{bottom:171.649333pt;}
.yad{bottom:171.664000pt;}
.y7e{bottom:171.678667pt;}
.yd3{bottom:171.693333pt;}
.y175{bottom:173.218667pt;}
.y130{bottom:179.334667pt;}
.y151{bottom:181.886667pt;}
.yf1{bottom:183.148000pt;}
.y17{bottom:184.278000pt;}
.y45{bottom:186.875733pt;}
.y108{bottom:186.961333pt;}
.yfb{bottom:186.976000pt;}
.y90{bottom:186.990667pt;}
.y7d{bottom:187.005333pt;}
.yd2{bottom:187.020000pt;}
.y174{bottom:188.545333pt;}
.y184{bottom:194.646667pt;}
.y12f{bottom:194.661333pt;}
.y150{bottom:197.213333pt;}
.y16{bottom:197.616000pt;}
.yf0{bottom:198.474667pt;}
.y44{bottom:202.202400pt;}
.y107{bottom:202.288000pt;}
.yfa{bottom:202.302667pt;}
.y8f{bottom:202.317333pt;}
.y7c{bottom:202.332000pt;}
.yd1{bottom:202.346667pt;}
.y173{bottom:203.872000pt;}
.y12e{bottom:209.988000pt;}
.y15{bottom:210.954000pt;}
.y14f{bottom:212.540000pt;}
.yef{bottom:213.801333pt;}
.y43{bottom:217.529067pt;}
.y106{bottom:217.614667pt;}
.y183{bottom:217.629333pt;}
.y8e{bottom:217.644000pt;}
.y7b{bottom:217.658667pt;}
.yd0{bottom:217.673333pt;}
.y172{bottom:219.198667pt;}
.y14{bottom:224.292000pt;}
.y11e{bottom:225.300000pt;}
.y12d{bottom:225.314667pt;}
.y14e{bottom:227.866667pt;}
.yee{bottom:229.128000pt;}
.y42{bottom:232.855733pt;}
.y105{bottom:232.941333pt;}
.y182{bottom:232.956000pt;}
.y8d{bottom:232.970667pt;}
.y7a{bottom:232.985333pt;}
.ycf{bottom:233.000000pt;}
.y171{bottom:234.525333pt;}
.y13{bottom:237.630000pt;}
.y11d{bottom:240.626667pt;}
.y12c{bottom:240.641333pt;}
.y14d{bottom:243.193333pt;}
.yed{bottom:244.454667pt;}
.y41{bottom:248.182400pt;}
.y118{bottom:248.268000pt;}
.y181{bottom:248.282667pt;}
.y8c{bottom:248.297333pt;}
.y79{bottom:248.312000pt;}
.yce{bottom:248.326667pt;}
.y170{bottom:249.852000pt;}
.y11c{bottom:255.953333pt;}
.y12b{bottom:255.968000pt;}
.y14c{bottom:258.520000pt;}
.y40{bottom:263.509067pt;}
.y117{bottom:263.594667pt;}
.y104{bottom:263.609333pt;}
.y8b{bottom:263.624000pt;}
.y78{bottom:263.638667pt;}
.ycd{bottom:263.653333pt;}
.y12{bottom:264.293333pt;}
.y16f{bottom:265.178667pt;}
.yec{bottom:271.280000pt;}
.y12a{bottom:271.294667pt;}
.y14b{bottom:273.846667pt;}
.y3f{bottom:278.835733pt;}
.y116{bottom:278.921333pt;}
.y103{bottom:278.936000pt;}
.y8a{bottom:278.950667pt;}
.y77{bottom:278.965333pt;}
.ycc{bottom:278.980000pt;}
.y16e{bottom:280.505333pt;}
.yeb{bottom:286.606667pt;}
.y129{bottom:286.621333pt;}
.y3e{bottom:294.162400pt;}
.y115{bottom:294.248000pt;}
.y102{bottom:294.262667pt;}
.y89{bottom:294.277333pt;}
.y76{bottom:294.292000pt;}
.ycb{bottom:294.306667pt;}
.y16d{bottom:295.832000pt;}
.y11{bottom:296.280000pt;}
.y14a{bottom:299.396000pt;}
.yea{bottom:301.933333pt;}
.y17f{bottom:301.948000pt;}
.y3d{bottom:309.489067pt;}
.y114{bottom:309.574667pt;}
.y101{bottom:309.589333pt;}
.yac{bottom:309.604000pt;}
.y10{bottom:309.618000pt;}
.y75{bottom:309.618667pt;}
.yca{bottom:309.633333pt;}
.y16c{bottom:311.158667pt;}
.y149{bottom:314.722667pt;}
.ye9{bottom:317.260000pt;}
.y17e{bottom:317.274667pt;}
.y3c{bottom:324.815733pt;}
.y100{bottom:324.916000pt;}
.yab{bottom:324.930667pt;}
.y74{bottom:324.945333pt;}
.yc9{bottom:324.960000pt;}
.y16b{bottom:326.485333pt;}
.yf{bottom:328.288667pt;}
.y148{bottom:330.049333pt;}
.ye8{bottom:332.586667pt;}
.y3b{bottom:340.142400pt;}
.yff{bottom:340.242667pt;}
.yaa{bottom:340.257333pt;}
.y88{bottom:340.272000pt;}
.yc8{bottom:340.286667pt;}
.ye{bottom:341.570667pt;}
.y16a{bottom:341.812000pt;}
.y147{bottom:345.376000pt;}
.ye7{bottom:347.913333pt;}
.yd{bottom:354.908667pt;}
.y3a{bottom:355.469067pt;}
.y113{bottom:355.569333pt;}
.ya9{bottom:355.584000pt;}
.y87{bottom:355.598667pt;}
.y73{bottom:355.613333pt;}
.y169{bottom:357.138667pt;}
.y146{bottom:360.702667pt;}
.y139{bottom:363.269333pt;}
.yc{bottom:368.246667pt;}
.y39{bottom:370.795733pt;}
.y112{bottom:370.896000pt;}
.ya8{bottom:370.910667pt;}
.yc7{bottom:370.925333pt;}
.y72{bottom:370.940000pt;}
.y168{bottom:372.465333pt;}
.ye6{bottom:374.753333pt;}
.y145{bottom:376.029333pt;}
.y138{bottom:378.596000pt;}
.yb{bottom:381.584667pt;}
.y38{bottom:386.122400pt;}
.y111{bottom:386.222667pt;}
.ya7{bottom:386.237333pt;}
.yc6{bottom:386.252000pt;}
.y71{bottom:386.266667pt;}
.y167{bottom:387.792000pt;}
.ye5{bottom:390.080000pt;}
.y144{bottom:391.356000pt;}
.y137{bottom:393.922667pt;}
.ya{bottom:394.922667pt;}
.y37{bottom:401.449067pt;}
.y18c{bottom:401.549333pt;}
.ya6{bottom:401.564000pt;}
.yc5{bottom:401.578667pt;}
.y70{bottom:401.593333pt;}
.y166{bottom:403.118667pt;}
.ye4{bottom:405.406667pt;}
.y143{bottom:406.682667pt;}
.y9{bottom:408.260667pt;}
.y136{bottom:409.249333pt;}
.y36{bottom:416.775733pt;}
.y18b{bottom:416.876000pt;}
.ya5{bottom:416.890667pt;}
.yc4{bottom:416.905333pt;}
.y6f{bottom:416.920000pt;}
.y165{bottom:418.445333pt;}
.ye3{bottom:420.733333pt;}
.y8{bottom:421.598667pt;}
.y142{bottom:422.009333pt;}
.y128{bottom:424.576000pt;}
.y35{bottom:432.102400pt;}
.y18a{bottom:432.202667pt;}
.ya4{bottom:432.217333pt;}
.yc3{bottom:432.232000pt;}
.y6e{bottom:432.246667pt;}
.y164{bottom:433.772000pt;}
.y7{bottom:434.936667pt;}
.ye2{bottom:436.060000pt;}
.y141{bottom:437.336000pt;}
.y127{bottom:439.902667pt;}
.y34{bottom:447.429067pt;}
.y189{bottom:447.529333pt;}
.ya3{bottom:447.544000pt;}
.yc2{bottom:447.558667pt;}
.y6d{bottom:447.573333pt;}
.y6{bottom:448.274667pt;}
.y163{bottom:449.098667pt;}
.ye1{bottom:451.386667pt;}
.y140{bottom:452.662667pt;}
.y126{bottom:455.229333pt;}
.y5{bottom:461.612667pt;}
.y33{bottom:462.755733pt;}
.y188{bottom:462.856000pt;}
.ya2{bottom:462.870667pt;}
.yc1{bottom:462.885333pt;}
.y6c{bottom:462.900000pt;}
.y162{bottom:464.425333pt;}
.ye0{bottom:466.713333pt;}
.y13f{bottom:467.989333pt;}
.y125{bottom:470.556000pt;}
.y4{bottom:474.950667pt;}
.y32{bottom:478.082400pt;}
.y187{bottom:478.182667pt;}
.ya1{bottom:478.197333pt;}
.yc0{bottom:478.212000pt;}
.y6b{bottom:478.226667pt;}
.y161{bottom:479.752000pt;}
.y124{bottom:485.882667pt;}
.y3{bottom:488.288667pt;}
.y31{bottom:493.409067pt;}
.ya0{bottom:493.524000pt;}
.ybf{bottom:493.538667pt;}
.y6a{bottom:493.553333pt;}
.y160{bottom:495.078667pt;}
.y186{bottom:501.180000pt;}
.yfe{bottom:501.194667pt;}
.y123{bottom:501.209333pt;}
.y2{bottom:501.626667pt;}
.y30{bottom:508.735733pt;}
.y9f{bottom:508.850667pt;}
.ybe{bottom:508.865333pt;}
.y69{bottom:508.880000pt;}
.y15f{bottom:510.405333pt;}
.yfd{bottom:516.521333pt;}
.y122{bottom:516.536000pt;}
.y2f{bottom:524.062400pt;}
.y9e{bottom:524.177333pt;}
.ybd{bottom:524.192000pt;}
.y68{bottom:524.206667pt;}
.y1{bottom:528.293333pt;}
.y185{bottom:531.848000pt;}
.y121{bottom:531.862667pt;}
.y2e{bottom:539.389067pt;}
.y9d{bottom:539.504000pt;}
.ybc{bottom:539.518667pt;}
.y67{bottom:539.533333pt;}
.y15e{bottom:544.652000pt;}
.y120{bottom:547.189333pt;}
.y2d{bottom:554.715733pt;}
.y9c{bottom:554.830667pt;}
.ybb{bottom:554.845333pt;}
.y66{bottom:554.860000pt;}
.y15d{bottom:559.978667pt;}
.y11f{bottom:562.516000pt;}
.y2c{bottom:570.042400pt;}
.y9b{bottom:570.157333pt;}
.yba{bottom:570.172000pt;}
.y65{bottom:570.186667pt;}
.y15c{bottom:575.305333pt;}
.y180{bottom:577.828000pt;}
.y194{bottom:577.842667pt;}
.y9a{bottom:585.484000pt;}
.yb9{bottom:585.498667pt;}
.y64{bottom:585.513333pt;}
.y15b{bottom:590.632000pt;}
.y2b{bottom:593.039733pt;}
.y193{bottom:593.169333pt;}
.y13e{bottom:600.810667pt;}
.yb8{bottom:600.825333pt;}
.y63{bottom:600.840000pt;}
.y28{bottom:603.421333pt;}
.y15a{bottom:605.958667pt;}
.y99{bottom:608.481333pt;}
.y192{bottom:608.496000pt;}
.y2a{bottom:616.040000pt;}
.y27{bottom:616.093333pt;}
.y13d{bottom:616.137333pt;}
.yb7{bottom:616.152000pt;}
.y62{bottom:616.166667pt;}
.y159{bottom:621.285333pt;}
.y191{bottom:623.822667pt;}
.y13c{bottom:631.464000pt;}
.yb6{bottom:631.478667pt;}
.y61{bottom:631.493333pt;}
.y26{bottom:632.093333pt;}
.y158{bottom:636.612000pt;}
.y190{bottom:639.149333pt;}
.y13b{bottom:646.790667pt;}
.ydf{bottom:646.805333pt;}
.y60{bottom:646.820000pt;}
.y25{bottom:648.093333pt;}
.y157{bottom:651.938667pt;}
.y18f{bottom:654.476000pt;}
.y5a{bottom:660.000000pt;}
.yde{bottom:662.132000pt;}
.y5f{bottom:662.146667pt;}
.y24{bottom:664.093333pt;}
.y13a{bottom:669.788000pt;}
.y18e{bottom:669.802667pt;}
.y59{bottom:673.333333pt;}
.y54{bottom:674.666667pt;}
.ydd{bottom:677.458667pt;}
.y5e{bottom:677.473333pt;}
.y23{bottom:680.093333pt;}
.y18d{bottom:685.129333pt;}
.y52{bottom:689.333333pt;}
.y57{bottom:692.000000pt;}
.y5d{bottom:692.800000pt;}
.ydc{bottom:700.456000pt;}
.y50{bottom:704.000000pt;}
.y55{bottom:708.000000pt;}
.y5c{bottom:708.126667pt;}
.y22{bottom:720.093333pt;}
.y5b{bottom:723.453333pt;}
.y4f{bottom:730.000000pt;}
.y21{bottom:765.426667pt;}
.y29{bottom:821.333333pt;}
.hd{height:9.333333pt;}
.he{height:10.666667pt;}
.hb{height:12.000000pt;}
.hf{height:13.333333pt;}
.h8{height:41.854167pt;}
.h4{height:45.525333pt;}
.hc{height:47.109375pt;}
.h7{height:51.216000pt;}
.h1{height:54.061333pt;}
.h3{height:54.234667pt;}
.h2{height:54.285333pt;}
.h9{height:62.597333pt;}
.ha{height:63.594667pt;}
.h6{height:68.288000pt;}
.h5{height:91.050667pt;}
.h0{height:794.666667pt;}
.w1{width:165.333333pt;}
.w6{width:168.000000pt;}
.w3{width:170.666667pt;}
.w4{width:176.000000pt;}
.w2{width:185.333333pt;}
.w5{width:186.666667pt;}
.w0{width:566.666667pt;}
.x0{left:0.000000pt;}
.xe{left:1.333333pt;}
.xa{left:4.373467pt;}
.x4{left:5.333333pt;}
.xc{left:36.722667pt;}
.x1{left:67.733333pt;}
.x5{left:68.813333pt;}
.x11{left:83.060000pt;}
.x6{left:84.138533pt;}
.x2{left:87.734000pt;}
.x12{left:88.813333pt;}
.x9{left:90.680133pt;}
.x13{left:93.752000pt;}
.xb{left:98.666667pt;}
.x8{left:105.333333pt;}
.x7{left:263.773333pt;}
.xd{left:296.000000pt;}
.xf{left:297.333333pt;}
.x10{left:300.000000pt;}
.x3{left:382.906667pt;}
}




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