
    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_37c275ba485a12923b7d23bc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.310547;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_76aa961849037e78390d61b2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_06c0dd9d6ef9aa8fb6b183d8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.310547;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_3c874b8140ce66cb4e79a7cb.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d7e08967c5e06409d34e375e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f5db730501321145fbba4bca.woff')format("woff");}.ff7{font-family:ff7;line-height:1.096680;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a48d3661ba5bc88c0ed66fe7.woff')format("woff");}.ff8{font-family:ff8;line-height:1.537109;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b166f91423c003178ad08787.woff')format("woff");}.ff9{font-family:ff9;line-height:1.537109;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;}
.v1{vertical-align:30.240000px;}
.ls3c{letter-spacing:-1.008000px;}
.ls60{letter-spacing:-0.936000px;}
.ls55{letter-spacing:-0.864000px;}
.ls32{letter-spacing:-0.720000px;}
.ls42{letter-spacing:-0.648000px;}
.ls49{letter-spacing:-0.576000px;}
.ls4f{letter-spacing:-0.504000px;}
.ls6f{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.325200px;}
.ls1c{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.207600px;}
.ls19{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.126000px;}
.ls18{letter-spacing:-0.072000px;}
.ls1d{letter-spacing:-0.000003px;}
.ls5{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.000001px;}
.ls1{letter-spacing:0.015840px;}
.ls3d{letter-spacing:0.028080px;}
.ls1f{letter-spacing:0.036000px;}
.ls4{letter-spacing:0.063360px;}
.ls6{letter-spacing:0.063600px;}
.ls13{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.088560px;}
.ls20{letter-spacing:0.108000px;}
.ls64{letter-spacing:0.120000px;}
.ls16{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.154800px;}
.ls63{letter-spacing:0.180000px;}
.ls44{letter-spacing:0.192000px;}
.ls11{letter-spacing:0.216000px;}
.ls65{letter-spacing:0.252000px;}
.ls53{letter-spacing:0.264000px;}
.ls33{letter-spacing:0.265200px;}
.ls1a{letter-spacing:0.288000px;}
.ls2b{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.ls4d{letter-spacing:0.396000px;}
.ls61{letter-spacing:0.408000px;}
.ls24{letter-spacing:0.432000px;}
.ls28{letter-spacing:0.468000px;}
.ls38{letter-spacing:0.480000px;}
.ls34{letter-spacing:0.504000px;}
.ls23{letter-spacing:0.576000px;}
.ls26{letter-spacing:0.648000px;}
.ls31{letter-spacing:0.720000px;}
.ls48{letter-spacing:0.792000px;}
.lse{letter-spacing:0.846000px;}
.ls3a{letter-spacing:0.864000px;}
.lsd{letter-spacing:0.874800px;}
.ls47{letter-spacing:0.936000px;}
.ls5a{letter-spacing:1.008000px;}
.ls57{letter-spacing:1.128000px;}
.ls22{letter-spacing:1.368000px;}
.ls5e{letter-spacing:1.584000px;}
.ls2a{letter-spacing:1.656000px;}
.ls3b{letter-spacing:2.088000px;}
.ls5f{letter-spacing:2.304000px;}
.ls29{letter-spacing:2.376000px;}
.ls25{letter-spacing:2.808000px;}
.ls52{letter-spacing:3.096000px;}
.ls43{letter-spacing:3.528000px;}
.ls45{letter-spacing:4.248000px;}
.ls2c{letter-spacing:4.968000px;}
.ls59{letter-spacing:5.148000px;}
.ls5b{letter-spacing:5.256000px;}
.ls15{letter-spacing:5.688000px;}
.ls75{letter-spacing:5.904000px;}
.ls74{letter-spacing:6.048000px;}
.ls4e{letter-spacing:6.408000px;}
.ls27{letter-spacing:7.128000px;}
.ls71{letter-spacing:7.416000px;}
.ls40{letter-spacing:7.824000px;}
.ls21{letter-spacing:7.848000px;}
.ls2{letter-spacing:8.407440px;}
.ls10{letter-spacing:8.568000px;}
.lsb{letter-spacing:9.127440px;}
.ls1b{letter-spacing:9.288000px;}
.ls39{letter-spacing:10.008000px;}
.ls4b{letter-spacing:10.188000px;}
.ls70{letter-spacing:10.296000px;}
.ls78{letter-spacing:10.476000px;}
.ls77{letter-spacing:10.728000px;}
.ls76{letter-spacing:11.016000px;}
.ls2f{letter-spacing:11.448000px;}
.ls69{letter-spacing:11.736000px;}
.ls2e{letter-spacing:12.168000px;}
.ls50{letter-spacing:12.348000px;}
.ls5c{letter-spacing:12.888000px;}
.ls5d{letter-spacing:13.068000px;}
.lsc{letter-spacing:13.447440px;}
.ls51{letter-spacing:14.328000px;}
.ls6b{letter-spacing:14.616000px;}
.ls73{letter-spacing:15.048000px;}
.lsf{letter-spacing:15.607440px;}
.ls54{letter-spacing:15.768000px;}
.ls4c{letter-spacing:16.488000px;}
.ls3e{letter-spacing:17.208000px;}
.ls3f{letter-spacing:17.388000px;}
.ls2d{letter-spacing:17.928000px;}
.ls6c{letter-spacing:18.216000px;}
.ls4a{letter-spacing:19.368000px;}
.ls14{letter-spacing:20.088000px;}
.ls72{letter-spacing:21.096000px;}
.ls62{letter-spacing:21.528000px;}
.ls35{letter-spacing:22.248000px;}
.ls41{letter-spacing:22.968000px;}
.ls36{letter-spacing:23.148000px;}
.ls56{letter-spacing:25.848000px;}
.ls67{letter-spacing:26.568000px;}
.ls37{letter-spacing:27.264000px;}
.ls30{letter-spacing:27.288000px;}
.ls66{letter-spacing:28.008000px;}
.ls46{letter-spacing:28.728000px;}
.ls68{letter-spacing:32.328000px;}
.ls6a{letter-spacing:34.488000px;}
.ls58{letter-spacing:35.640000px;}
.ls6e{letter-spacing:42.408000px;}
.ls6d{letter-spacing:48.888000px;}
.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;}
}
.ws2b{word-spacing:-23.699520px;}
.ws42{word-spacing:-23.688000px;}
.ws3f{word-spacing:-21.168000px;}
.ws31{word-spacing:-21.024000px;}
.ws23{word-spacing:-20.952000px;}
.ws2d{word-spacing:-20.880000px;}
.ws35{word-spacing:-20.808000px;}
.ws27{word-spacing:-20.736000px;}
.ws26{word-spacing:-20.664000px;}
.ws1c{word-spacing:-20.592000px;}
.ws13{word-spacing:-20.520000px;}
.ws17{word-spacing:-20.448000px;}
.ws40{word-spacing:-20.376000px;}
.ws19{word-spacing:-20.304000px;}
.ws16{word-spacing:-20.232001px;}
.ws7{word-spacing:-20.232000px;}
.ws38{word-spacing:-20.231997px;}
.ws12{word-spacing:-20.160000px;}
.wsf{word-spacing:-20.088000px;}
.ws18{word-spacing:-20.016000px;}
.ws1d{word-spacing:-19.944000px;}
.ws3d{word-spacing:-19.728000px;}
.wsb{word-spacing:-19.584000px;}
.ws24{word-spacing:-19.512000px;}
.ws14{word-spacing:-19.440000px;}
.ws1b{word-spacing:-19.368000px;}
.wsc{word-spacing:-19.224000px;}
.ws15{word-spacing:-19.152000px;}
.ws3e{word-spacing:-18.864000px;}
.ws39{word-spacing:-18.792000px;}
.ws5{word-spacing:-18.613440px;}
.ws6{word-spacing:-18.288240px;}
.ws3b{word-spacing:-18.216000px;}
.ws30{word-spacing:-18.144000px;}
.ws2f{word-spacing:-18.072000px;}
.wse{word-spacing:-18.000000px;}
.ws1a{word-spacing:-17.928000px;}
.ws28{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.784000px;}
.ws1f{word-spacing:-17.783997px;}
.ws20{word-spacing:-17.712000px;}
.ws1e{word-spacing:-17.640000px;}
.ws22{word-spacing:-17.568000px;}
.ws2a{word-spacing:-17.496000px;}
.ws41{word-spacing:-17.352000px;}
.ws33{word-spacing:-17.280000px;}
.ws32{word-spacing:-17.208000px;}
.ws1{word-spacing:-17.152560px;}
.ws34{word-spacing:-17.064000px;}
.ws8{word-spacing:-16.947360px;}
.ws0{word-spacing:-16.792560px;}
.ws2{word-spacing:-16.432560px;}
.ws9{word-spacing:-16.135200px;}
.ws2c{word-spacing:-14.328000px;}
.ws25{word-spacing:-11.999760px;}
.ws21{word-spacing:-11.734560px;}
.ws36{word-spacing:-10.314720px;}
.ws3{word-spacing:-0.084240px;}
.ws4{word-spacing:-0.072000px;}
.wsa{word-spacing:0.000000px;}
.ws10{word-spacing:0.288000px;}
.ws11{word-spacing:1.152009px;}
.ws29{word-spacing:15.768000px;}
.ws37{word-spacing:15.888000px;}
.ws3a{word-spacing:16.344000px;}
.ws3c{word-spacing:17.856000px;}
.ws2e{word-spacing:18.144000px;}
._18{margin-left:-7.945440px;}
._19{margin-left:-5.349600px;}
._16{margin-left:-4.345200px;}
._d{margin-left:-3.286800px;}
._9{margin-left:-2.211120px;}
._5{margin-left:-1.015920px;}
._0{width:1.314720px;}
._1{width:2.569680px;}
._a{width:4.097520px;}
._4{width:6.095520px;}
._c{width:7.267200px;}
._8{width:8.270400px;}
._6{width:9.740880px;}
._7{width:11.095680px;}
._b{width:12.370320px;}
._2{width:13.983840px;}
._3{width:15.641760px;}
._e{width:16.794720px;}
._10{width:18.125280px;}
._f{width:19.161600px;}
._2b{width:20.544480px;}
._1d{width:21.703920px;}
._1b{width:23.520000px;}
._1a{width:24.552000px;}
._13{width:26.352000px;}
._14{width:27.432000px;}
._1c{width:28.560000px;}
._15{width:29.959920px;}
._11{width:31.032000px;}
._12{width:32.249280px;}
._17{width:34.193280px;}
._2d{width:35.229840px;}
._1e{width:36.324000px;}
._23{width:37.397280px;}
._22{width:38.808000px;}
._24{width:39.942720px;}
._29{width:41.081280px;}
._28{width:42.168000px;}
._26{width:46.325280px;}
._27{width:47.449200px;}
._25{width:48.528000px;}
._1f{width:51.048000px;}
._20{width:52.416000px;}
._2a{width:53.784000px;}
._2f{width:57.953280px;}
._2e{width:59.112000px;}
._21{width:75.600000px;}
._2c{width:527.472000px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.990000px;}
.y2{bottom:4.350000px;}
.y5{bottom:25.410000px;}
.y4{bottom:47.010000px;}
.y3{bottom:68.430000px;}
.y11{bottom:76.176000px;}
.y10{bottom:95.256000px;}
.yf{bottom:116.136000px;}
.y9d{bottom:118.116000px;}
.y120{bottom:121.356000px;}
.yfc{bottom:123.156000px;}
.ya6{bottom:123.876000px;}
.y155{bottom:125.856000px;}
.y95{bottom:128.196000px;}
.ybf{bottom:129.996000px;}
.y140{bottom:130.356000px;}
.y5e{bottom:131.796000px;}
.y83{bottom:131.976000px;}
.ye{bottom:137.736000px;}
.ye0{bottom:142.056000px;}
.y9c{bottom:143.856000px;}
.y11f{bottom:147.276000px;}
.yfb{bottom:149.076000px;}
.ya5{bottom:149.796000px;}
.y154{bottom:151.770000px;}
.y94{bottom:154.110000px;}
.ybe{bottom:155.910000px;}
.y13f{bottom:156.270000px;}
.y5d{bottom:157.710000px;}
.yd{bottom:159.150000px;}
.ydf{bottom:167.970000px;}
.y9b{bottom:169.770000px;}
.y11e{bottom:173.010000px;}
.yfa{bottom:174.810000px;}
.ya4{bottom:175.530000px;}
.y153{bottom:177.510000px;}
.y93{bottom:179.850000px;}
.yc{bottom:180.750000px;}
.ybd{bottom:181.650000px;}
.y13e{bottom:182.010000px;}
.y5c{bottom:183.450000px;}
.yde{bottom:193.710000px;}
.y82{bottom:195.510000px;}
.y11d{bottom:198.930000px;}
.ya3{bottom:201.450000px;}
.yb{bottom:202.350000px;}
.yf9{bottom:205.230000px;}
.y92{bottom:205.770000px;}
.ybc{bottom:207.570000px;}
.y148{bottom:207.930000px;}
.y5b{bottom:209.370000px;}
.y13d{bottom:212.430000px;}
.ydd{bottom:219.630000px;}
.y9a{bottom:221.430000px;}
.ya{bottom:223.770000px;}
.y11c{bottom:224.670000px;}
.ya2{bottom:227.190000px;}
.y128{bottom:229.170000px;}
.yf8{bottom:230.970000px;}
.y91{bottom:231.510000px;}
.y81{bottom:233.310000px;}
.y152{bottom:233.670000px;}
.y5a{bottom:235.110000px;}
.y13c{bottom:238.170000px;}
.y9{bottom:245.370000px;}
.y99{bottom:247.170000px;}
.ya1{bottom:253.110000px;}
.y11b{bottom:255.090000px;}
.y90{bottom:257.430000px;}
.y80{bottom:259.230000px;}
.y151{bottom:259.590000px;}
.y59{bottom:261.030000px;}
.yf7{bottom:261.390000px;}
.y13b{bottom:264.090000px;}
.ydc{bottom:271.110000px;}
.y98{bottom:273.090000px;}
.ya0{bottom:278.850000px;}
.y11a{bottom:280.830000px;}
.y8f{bottom:283.170000px;}
.y8{bottom:284.070000px;}
.y7f{bottom:284.970000px;}
.y58{bottom:286.770000px;}
.yf6{bottom:287.130000px;}
.y13a{bottom:289.830000px;}
.ydb{bottom:297.030000px;}
.y97{bottom:298.830000px;}
.y9f{bottom:304.770000px;}
.y35{bottom:305.490000px;}
.y127{bottom:306.570000px;}
.y8e{bottom:309.090000px;}
.y7e{bottom:310.890000px;}
.y119{bottom:311.070000px;}
.y57{bottom:312.690000px;}
.y147{bottom:315.570000px;}
.yf5{bottom:317.550000px;}
.y139{bottom:320.070000px;}
.yda{bottom:322.770000px;}
.y34{bottom:327.090000px;}
.y9e{bottom:331.230000px;}
.y8d{bottom:334.830000px;}
.y7d{bottom:336.675000px;}
.y118{bottom:337.035000px;}
.y56{bottom:338.475000px;}
.y146{bottom:341.535000px;}
.yf4{bottom:343.335000px;}
.y16c{bottom:343.515000px;}
.y138{bottom:346.035000px;}
.y33{bottom:348.555000px;}
.yd9{bottom:348.735000px;}
.y8c{bottom:360.615000px;}
.y7c{bottom:362.595000px;}
.y117{bottom:362.775000px;}
.y55{bottom:364.395000px;}
.y145{bottom:367.275000px;}
.y16b{bottom:369.435000px;}
.y32{bottom:370.155000px;}
.y150{bottom:371.775000px;}
.yf3{bottom:373.575000px;}
.y96{bottom:374.475000px;}
.y137{bottom:376.275000px;}
.y8b{bottom:386.535000px;}
.y7b{bottom:388.335000px;}
.y54{bottom:390.135000px;}
.y31{bottom:391.575000px;}
.y116{bottom:393.195000px;}
.y16a{bottom:395.175000px;}
.y144{bottom:397.695000px;}
.yf2{bottom:399.495000px;}
.yd8{bottom:400.395000px;}
.y136{bottom:402.195000px;}
.y8a{bottom:412.275000px;}
.y30{bottom:413.175000px;}
.y7a{bottom:414.075000px;}
.y53{bottom:415.875000px;}
.y115{bottom:418.935000px;}
.y169{bottom:420.915000px;}
.y143{bottom:423.435000px;}
.yd7{bottom:426.135000px;}
.y135{bottom:427.935000px;}
.yf1{bottom:429.735000px;}
.y2f{bottom:434.595000px;}
.y89{bottom:438.195000px;}
.y79{bottom:439.995000px;}
.y52{bottom:441.795000px;}
.y114{bottom:444.855000px;}
.y168{bottom:446.835000px;}
.y126{bottom:449.355000px;}
.yd6{bottom:452.055000px;}
.y134{bottom:453.855000px;}
.yf0{bottom:455.655000px;}
.y2e{bottom:456.195000px;}
.y88{bottom:463.935000px;}
.y78{bottom:465.735000px;}
.y51{bottom:467.535000px;}
.y167{bottom:472.575000px;}
.y113{bottom:475.095000px;}
.y2d{bottom:477.795000px;}
.y133{bottom:479.595000px;}
.yef{bottom:485.895000px;}
.y87{bottom:489.855000px;}
.y77{bottom:491.655000px;}
.y50{bottom:493.455000px;}
.y166{bottom:498.495000px;}
.y2c{bottom:499.215000px;}
.y112{bottom:501.015000px;}
.yd5{bottom:503.715000px;}
.y14a{bottom:505.515000px;}
.y132{bottom:510.015000px;}
.yee{bottom:511.815000px;}
.y86{bottom:515.595000px;}
.y76{bottom:517.395000px;}
.y4f{bottom:519.195000px;}
.y2b{bottom:520.815000px;}
.y165{bottom:524.235000px;}
.yd4{bottom:529.455000px;}
.y111{bottom:531.255000px;}
.y131{bottom:535.755000px;}
.y85{bottom:541.515000px;}
.yed{bottom:542.055000px;}
.y2a{bottom:542.235000px;}
.ybb{bottom:543.315000px;}
.y4e{bottom:545.115000px;}
.y164{bottom:550.155000px;}
.y75{bottom:555.195000px;}
.y110{bottom:557.175000px;}
.y130{bottom:561.675000px;}
.y29{bottom:563.835000px;}
.y84{bottom:567.255000px;}
.yec{bottom:567.975000px;}
.yba{bottom:569.055000px;}
.y4d{bottom:570.855000px;}
.y163{bottom:575.895000px;}
.yd3{bottom:581.115000px;}
.y125{bottom:582.915000px;}
.y28{bottom:585.255000px;}
.y10f{bottom:587.415000px;}
.y142{bottom:591.915000px;}
.y74{bottom:593.175000px;}
.yb9{bottom:594.975000px;}
.y4c{bottom:596.775000px;}
.yeb{bottom:598.215000px;}
.y162{bottom:601.815000px;}
.y27{bottom:606.885000px;}
.y149{bottom:608.685000px;}
.y10e{bottom:613.185000px;}
.y12f{bottom:617.685000px;}
.y73{bottom:618.945000px;}
.yb8{bottom:620.745000px;}
.y4b{bottom:622.545000px;}
.yea{bottom:624.165000px;}
.y161{bottom:627.585000px;}
.y26{bottom:628.305000px;}
.yd2{bottom:632.805000px;}
.y10d{bottom:639.105000px;}
.y12e{bottom:643.605000px;}
.y72{bottom:644.685000px;}
.yb7{bottom:646.665000px;}
.y4a{bottom:648.465000px;}
.y25{bottom:649.905000px;}
.y160{bottom:653.505000px;}
.ye9{bottom:654.405000px;}
.yd1{bottom:658.545000px;}
.y10c{bottom:664.845000px;}
.y124{bottom:669.345000px;}
.y71{bottom:670.605000px;}
.y24{bottom:671.325000px;}
.yb6{bottom:672.405000px;}
.y12d{bottom:673.845000px;}
.y49{bottom:674.205000px;}
.y15f{bottom:679.245000px;}
.ye8{bottom:680.325000px;}
.yd0{bottom:684.465000px;}
.y23{bottom:692.925000px;}
.y10b{bottom:695.265000px;}
.y70{bottom:696.345000px;}
.yb5{bottom:698.325000px;}
.y12c{bottom:699.765000px;}
.y48{bottom:699.945000px;}
.y15e{bottom:705.165000px;}
.ycf{bottom:710.205000px;}
.ye7{bottom:710.565000px;}
.y22{bottom:714.525000px;}
.y10a{bottom:721.005000px;}
.y6f{bottom:722.265000px;}
.yb4{bottom:724.065000px;}
.y123{bottom:725.505000px;}
.y47{bottom:725.865000px;}
.y15d{bottom:730.905000px;}
.y21{bottom:735.945000px;}
.yce{bottom:736.125000px;}
.ye6{bottom:736.305000px;}
.y6e{bottom:748.005000px;}
.yb3{bottom:749.805000px;}
.y109{bottom:751.425000px;}
.y46{bottom:751.605000px;}
.y12b{bottom:755.925000px;}
.y15c{bottom:756.645000px;}
.y20{bottom:757.545000px;}
.ycd{bottom:761.865000px;}
.ye5{bottom:766.725000px;}
.y6d{bottom:773.925000px;}
.yb2{bottom:775.725000px;}
.y108{bottom:777.165000px;}
.y1f{bottom:778.965000px;}
.y12a{bottom:781.665000px;}
.y15b{bottom:782.565000px;}
.ycc{bottom:787.785000px;}
.y45{bottom:789.585000px;}
.ye4{bottom:792.465000px;}
.y6c{bottom:799.665000px;}
.y1e{bottom:800.565000px;}
.yb1{bottom:801.465000px;}
.y141{bottom:803.085000px;}
.y107{bottom:807.585000px;}
.y15a{bottom:808.305000px;}
.ycb{bottom:813.525000px;}
.y44{bottom:815.325000px;}
.y1d{bottom:822.885000px;}
.y6b{bottom:825.585000px;}
.yb0{bottom:827.385000px;}
.y106{bottom:833.325000px;}
.y14f{bottom:837.825000px;}
.yca{bottom:839.265000px;}
.y159{bottom:846.105000px;}
.y1c{bottom:848.265000px;}
.ye3{bottom:848.625000px;}
.y6a{bottom:851.325000px;}
.yaf{bottom:853.125000px;}
.y43{bottom:855.645000px;}
.y105{bottom:859.245000px;}
.y14e{bottom:863.745000px;}
.yc9{bottom:865.185000px;}
.y1b{bottom:871.890000px;}
.ye2{bottom:874.590000px;}
.y69{bottom:877.290000px;}
.yae{bottom:879.090000px;}
.y42{bottom:880.710000px;}
.y158{bottom:884.130000px;}
.y104{bottom:885.030000px;}
.y129{bottom:889.530000px;}
.yc8{bottom:890.970000px;}
.y1a{bottom:895.650000px;}
.y41{bottom:902.310000px;}
.y68{bottom:903.030000px;}
.yad{bottom:904.830000px;}
.y103{bottom:915.450000px;}
.yc7{bottom:916.890000px;}
.y19{bottom:919.230000px;}
.y14d{bottom:919.950000px;}
.y157{bottom:921.930000px;}
.y40{bottom:923.730000px;}
.y67{bottom:928.950000px;}
.yac{bottom:930.750000px;}
.y102{bottom:941.190000px;}
.yc6{bottom:942.630000px;}
.y18{bottom:942.990000px;}
.y3f{bottom:945.330000px;}
.y14c{bottom:945.690000px;}
.y66{bottom:954.690000px;}
.yab{bottom:956.490000px;}
.y156{bottom:960.270000px;}
.y17{bottom:966.570000px;}
.y3e{bottom:966.750000px;}
.y122{bottom:966.930000px;}
.ye1{bottom:968.370000px;}
.yc5{bottom:968.550000px;}
.y101{bottom:971.430000px;}
.y65{bottom:980.430000px;}
.yaa{bottom:982.410000px;}
.y3d{bottom:988.350000px;}
.y16{bottom:990.330000px;}
.yc4{bottom:994.290000px;}
.y100{bottom:997.350000px;}
.y14b{bottom:1001.850000px;}
.y64{bottom:1006.350000px;}
.ya9{bottom:1008.150000px;}
.y3c{bottom:1009.770000px;}
.y15{bottom:1013.550000px;}
.yc3{bottom:1020.210000px;}
.y121{bottom:1023.090000px;}
.yff{bottom:1027.590000px;}
.y3b{bottom:1031.370000px;}
.y63{bottom:1032.090000px;}
.ya8{bottom:1033.890000px;}
.y14{bottom:1035.870000px;}
.yc2{bottom:1045.950000px;}
.y3a{bottom:1052.790000px;}
.yfe{bottom:1053.510000px;}
.y62{bottom:1058.010000px;}
.y13{bottom:1062.510000px;}
.ya7{bottom:1071.690000px;}
.yc1{bottom:1071.870000px;}
.y39{bottom:1074.390000px;}
.yfd{bottom:1079.250000px;}
.y61{bottom:1083.750000px;}
.y12{bottom:1091.490000px;}
.y38{bottom:1095.990000px;}
.yc0{bottom:1097.610000px;}
.y60{bottom:1109.670000px;}
.y7{bottom:1115.790000px;}
.y37{bottom:1117.410000px;}
.y1{bottom:1134.330000px;}
.y5f{bottom:1135.410000px;}
.y36{bottom:1139.040000px;}
.h7{height:43.506914px;}
.h4{height:51.618867px;}
.h6{height:58.192383px;}
.ha{height:62.191406px;}
.h5{height:62.402344px;}
.h3{height:64.399570px;}
.h8{height:71.382656px;}
.h9{height:72.763945px;}
.hb{height:77.589844px;}
.hc{height:78.082031px;}
.h2{height:86.076000px;}
.hd{height:90.780117px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:50.796000px;}
.w4{width:329.610000px;}
.w2{width:331.950000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x8{left:104.615987px;}
.x1{left:106.416000px;}
.xb{left:148.895987px;}
.x9{left:160.409987px;}
.x2{left:176.799000px;}
.x3{left:438.375000px;}
.x7{left:446.474987px;}
.x5{left:489.165000px;}
.xa{left:767.489987px;}
.x6{left:777.209987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls3c{letter-spacing:-0.896000pt;}
.ls60{letter-spacing:-0.832000pt;}
.ls55{letter-spacing:-0.768000pt;}
.ls32{letter-spacing:-0.640000pt;}
.ls42{letter-spacing:-0.576000pt;}
.ls49{letter-spacing:-0.512000pt;}
.ls4f{letter-spacing:-0.448000pt;}
.ls6f{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.289067pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.184533pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.112000pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls1d{letter-spacing:-0.000003pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.000001pt;}
.ls1{letter-spacing:0.014080pt;}
.ls3d{letter-spacing:0.024960pt;}
.ls1f{letter-spacing:0.032000pt;}
.ls4{letter-spacing:0.056320pt;}
.ls6{letter-spacing:0.056533pt;}
.ls13{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.078720pt;}
.ls20{letter-spacing:0.096000pt;}
.ls64{letter-spacing:0.106667pt;}
.ls16{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.137600pt;}
.ls63{letter-spacing:0.160000pt;}
.ls44{letter-spacing:0.170667pt;}
.ls11{letter-spacing:0.192000pt;}
.ls65{letter-spacing:0.224000pt;}
.ls53{letter-spacing:0.234667pt;}
.ls33{letter-spacing:0.235733pt;}
.ls1a{letter-spacing:0.256000pt;}
.ls2b{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4d{letter-spacing:0.352000pt;}
.ls61{letter-spacing:0.362667pt;}
.ls24{letter-spacing:0.384000pt;}
.ls28{letter-spacing:0.416000pt;}
.ls38{letter-spacing:0.426667pt;}
.ls34{letter-spacing:0.448000pt;}
.ls23{letter-spacing:0.512000pt;}
.ls26{letter-spacing:0.576000pt;}
.ls31{letter-spacing:0.640000pt;}
.ls48{letter-spacing:0.704000pt;}
.lse{letter-spacing:0.752000pt;}
.ls3a{letter-spacing:0.768000pt;}
.lsd{letter-spacing:0.777600pt;}
.ls47{letter-spacing:0.832000pt;}
.ls5a{letter-spacing:0.896000pt;}
.ls57{letter-spacing:1.002667pt;}
.ls22{letter-spacing:1.216000pt;}
.ls5e{letter-spacing:1.408000pt;}
.ls2a{letter-spacing:1.472000pt;}
.ls3b{letter-spacing:1.856000pt;}
.ls5f{letter-spacing:2.048000pt;}
.ls29{letter-spacing:2.112000pt;}
.ls25{letter-spacing:2.496000pt;}
.ls52{letter-spacing:2.752000pt;}
.ls43{letter-spacing:3.136000pt;}
.ls45{letter-spacing:3.776000pt;}
.ls2c{letter-spacing:4.416000pt;}
.ls59{letter-spacing:4.576000pt;}
.ls5b{letter-spacing:4.672000pt;}
.ls15{letter-spacing:5.056000pt;}
.ls75{letter-spacing:5.248000pt;}
.ls74{letter-spacing:5.376000pt;}
.ls4e{letter-spacing:5.696000pt;}
.ls27{letter-spacing:6.336000pt;}
.ls71{letter-spacing:6.592000pt;}
.ls40{letter-spacing:6.954667pt;}
.ls21{letter-spacing:6.976000pt;}
.ls2{letter-spacing:7.473280pt;}
.ls10{letter-spacing:7.616000pt;}
.lsb{letter-spacing:8.113280pt;}
.ls1b{letter-spacing:8.256000pt;}
.ls39{letter-spacing:8.896000pt;}
.ls4b{letter-spacing:9.056000pt;}
.ls70{letter-spacing:9.152000pt;}
.ls78{letter-spacing:9.312000pt;}
.ls77{letter-spacing:9.536000pt;}
.ls76{letter-spacing:9.792000pt;}
.ls2f{letter-spacing:10.176000pt;}
.ls69{letter-spacing:10.432000pt;}
.ls2e{letter-spacing:10.816000pt;}
.ls50{letter-spacing:10.976000pt;}
.ls5c{letter-spacing:11.456000pt;}
.ls5d{letter-spacing:11.616000pt;}
.lsc{letter-spacing:11.953280pt;}
.ls51{letter-spacing:12.736000pt;}
.ls6b{letter-spacing:12.992000pt;}
.ls73{letter-spacing:13.376000pt;}
.lsf{letter-spacing:13.873280pt;}
.ls54{letter-spacing:14.016000pt;}
.ls4c{letter-spacing:14.656000pt;}
.ls3e{letter-spacing:15.296000pt;}
.ls3f{letter-spacing:15.456000pt;}
.ls2d{letter-spacing:15.936000pt;}
.ls6c{letter-spacing:16.192000pt;}
.ls4a{letter-spacing:17.216000pt;}
.ls14{letter-spacing:17.856000pt;}
.ls72{letter-spacing:18.752000pt;}
.ls62{letter-spacing:19.136000pt;}
.ls35{letter-spacing:19.776000pt;}
.ls41{letter-spacing:20.416000pt;}
.ls36{letter-spacing:20.576000pt;}
.ls56{letter-spacing:22.976000pt;}
.ls67{letter-spacing:23.616000pt;}
.ls37{letter-spacing:24.234667pt;}
.ls30{letter-spacing:24.256000pt;}
.ls66{letter-spacing:24.896000pt;}
.ls46{letter-spacing:25.536000pt;}
.ls68{letter-spacing:28.736000pt;}
.ls6a{letter-spacing:30.656000pt;}
.ls58{letter-spacing:31.680000pt;}
.ls6e{letter-spacing:37.696000pt;}
.ls6d{letter-spacing:43.456000pt;}
.ws2b{word-spacing:-21.066240pt;}
.ws42{word-spacing:-21.056000pt;}
.ws3f{word-spacing:-18.816000pt;}
.ws31{word-spacing:-18.688000pt;}
.ws23{word-spacing:-18.624000pt;}
.ws2d{word-spacing:-18.560000pt;}
.ws35{word-spacing:-18.496000pt;}
.ws27{word-spacing:-18.432000pt;}
.ws26{word-spacing:-18.368000pt;}
.ws1c{word-spacing:-18.304000pt;}
.ws13{word-spacing:-18.240000pt;}
.ws17{word-spacing:-18.176000pt;}
.ws40{word-spacing:-18.112000pt;}
.ws19{word-spacing:-18.048000pt;}
.ws16{word-spacing:-17.984001pt;}
.ws7{word-spacing:-17.984000pt;}
.ws38{word-spacing:-17.983997pt;}
.ws12{word-spacing:-17.920000pt;}
.wsf{word-spacing:-17.856000pt;}
.ws18{word-spacing:-17.792000pt;}
.ws1d{word-spacing:-17.728000pt;}
.ws3d{word-spacing:-17.536000pt;}
.wsb{word-spacing:-17.408000pt;}
.ws24{word-spacing:-17.344000pt;}
.ws14{word-spacing:-17.280000pt;}
.ws1b{word-spacing:-17.216000pt;}
.wsc{word-spacing:-17.088000pt;}
.ws15{word-spacing:-17.024000pt;}
.ws3e{word-spacing:-16.768000pt;}
.ws39{word-spacing:-16.704000pt;}
.ws5{word-spacing:-16.545280pt;}
.ws6{word-spacing:-16.256213pt;}
.ws3b{word-spacing:-16.192000pt;}
.ws30{word-spacing:-16.128000pt;}
.ws2f{word-spacing:-16.064000pt;}
.wse{word-spacing:-16.000000pt;}
.ws1a{word-spacing:-15.936000pt;}
.ws28{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.808000pt;}
.ws1f{word-spacing:-15.807997pt;}
.ws20{word-spacing:-15.744000pt;}
.ws1e{word-spacing:-15.680000pt;}
.ws22{word-spacing:-15.616000pt;}
.ws2a{word-spacing:-15.552000pt;}
.ws41{word-spacing:-15.424000pt;}
.ws33{word-spacing:-15.360000pt;}
.ws32{word-spacing:-15.296000pt;}
.ws1{word-spacing:-15.246720pt;}
.ws34{word-spacing:-15.168000pt;}
.ws8{word-spacing:-15.064320pt;}
.ws0{word-spacing:-14.926720pt;}
.ws2{word-spacing:-14.606720pt;}
.ws9{word-spacing:-14.342400pt;}
.ws2c{word-spacing:-12.736000pt;}
.ws25{word-spacing:-10.666453pt;}
.ws21{word-spacing:-10.430720pt;}
.ws36{word-spacing:-9.168640pt;}
.ws3{word-spacing:-0.074880pt;}
.ws4{word-spacing:-0.064000pt;}
.wsa{word-spacing:0.000000pt;}
.ws10{word-spacing:0.256000pt;}
.ws11{word-spacing:1.024008pt;}
.ws29{word-spacing:14.016000pt;}
.ws37{word-spacing:14.122667pt;}
.ws3a{word-spacing:14.528000pt;}
.ws3c{word-spacing:15.872000pt;}
.ws2e{word-spacing:16.128000pt;}
._18{margin-left:-7.062613pt;}
._19{margin-left:-4.755200pt;}
._16{margin-left:-3.862400pt;}
._d{margin-left:-2.921600pt;}
._9{margin-left:-1.965440pt;}
._5{margin-left:-0.903040pt;}
._0{width:1.168640pt;}
._1{width:2.284160pt;}
._a{width:3.642240pt;}
._4{width:5.418240pt;}
._c{width:6.459733pt;}
._8{width:7.351467pt;}
._6{width:8.658560pt;}
._7{width:9.862827pt;}
._b{width:10.995840pt;}
._2{width:12.430080pt;}
._3{width:13.903787pt;}
._e{width:14.928640pt;}
._10{width:16.111360pt;}
._f{width:17.032533pt;}
._2b{width:18.261760pt;}
._1d{width:19.292373pt;}
._1b{width:20.906667pt;}
._1a{width:21.824000pt;}
._13{width:23.424000pt;}
._14{width:24.384000pt;}
._1c{width:25.386667pt;}
._15{width:26.631040pt;}
._11{width:27.584000pt;}
._12{width:28.666027pt;}
._17{width:30.394027pt;}
._2d{width:31.315413pt;}
._1e{width:32.288000pt;}
._23{width:33.242027pt;}
._22{width:34.496000pt;}
._24{width:35.504640pt;}
._29{width:36.516693pt;}
._28{width:37.482667pt;}
._26{width:41.178027pt;}
._27{width:42.177067pt;}
._25{width:43.136000pt;}
._1f{width:45.376000pt;}
._20{width:46.592000pt;}
._2a{width:47.808000pt;}
._2f{width:51.514027pt;}
._2e{width:52.544000pt;}
._21{width:67.200000pt;}
._2c{width:468.864000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.546667pt;}
.y2{bottom:3.866667pt;}
.y5{bottom:22.586667pt;}
.y4{bottom:41.786667pt;}
.y3{bottom:60.826667pt;}
.y11{bottom:67.712000pt;}
.y10{bottom:84.672000pt;}
.yf{bottom:103.232000pt;}
.y9d{bottom:104.992000pt;}
.y120{bottom:107.872000pt;}
.yfc{bottom:109.472000pt;}
.ya6{bottom:110.112000pt;}
.y155{bottom:111.872000pt;}
.y95{bottom:113.952000pt;}
.ybf{bottom:115.552000pt;}
.y140{bottom:115.872000pt;}
.y5e{bottom:117.152000pt;}
.y83{bottom:117.312000pt;}
.ye{bottom:122.432000pt;}
.ye0{bottom:126.272000pt;}
.y9c{bottom:127.872000pt;}
.y11f{bottom:130.912000pt;}
.yfb{bottom:132.512000pt;}
.ya5{bottom:133.152000pt;}
.y154{bottom:134.906667pt;}
.y94{bottom:136.986667pt;}
.ybe{bottom:138.586667pt;}
.y13f{bottom:138.906667pt;}
.y5d{bottom:140.186667pt;}
.yd{bottom:141.466667pt;}
.ydf{bottom:149.306667pt;}
.y9b{bottom:150.906667pt;}
.y11e{bottom:153.786667pt;}
.yfa{bottom:155.386667pt;}
.ya4{bottom:156.026667pt;}
.y153{bottom:157.786667pt;}
.y93{bottom:159.866667pt;}
.yc{bottom:160.666667pt;}
.ybd{bottom:161.466667pt;}
.y13e{bottom:161.786667pt;}
.y5c{bottom:163.066667pt;}
.yde{bottom:172.186667pt;}
.y82{bottom:173.786667pt;}
.y11d{bottom:176.826667pt;}
.ya3{bottom:179.066667pt;}
.yb{bottom:179.866667pt;}
.yf9{bottom:182.426667pt;}
.y92{bottom:182.906667pt;}
.ybc{bottom:184.506667pt;}
.y148{bottom:184.826667pt;}
.y5b{bottom:186.106667pt;}
.y13d{bottom:188.826667pt;}
.ydd{bottom:195.226667pt;}
.y9a{bottom:196.826667pt;}
.ya{bottom:198.906667pt;}
.y11c{bottom:199.706667pt;}
.ya2{bottom:201.946667pt;}
.y128{bottom:203.706667pt;}
.yf8{bottom:205.306667pt;}
.y91{bottom:205.786667pt;}
.y81{bottom:207.386667pt;}
.y152{bottom:207.706667pt;}
.y5a{bottom:208.986667pt;}
.y13c{bottom:211.706667pt;}
.y9{bottom:218.106667pt;}
.y99{bottom:219.706667pt;}
.ya1{bottom:224.986667pt;}
.y11b{bottom:226.746667pt;}
.y90{bottom:228.826667pt;}
.y80{bottom:230.426667pt;}
.y151{bottom:230.746667pt;}
.y59{bottom:232.026667pt;}
.yf7{bottom:232.346667pt;}
.y13b{bottom:234.746667pt;}
.ydc{bottom:240.986667pt;}
.y98{bottom:242.746667pt;}
.ya0{bottom:247.866667pt;}
.y11a{bottom:249.626667pt;}
.y8f{bottom:251.706667pt;}
.y8{bottom:252.506667pt;}
.y7f{bottom:253.306667pt;}
.y58{bottom:254.906667pt;}
.yf6{bottom:255.226667pt;}
.y13a{bottom:257.626667pt;}
.ydb{bottom:264.026667pt;}
.y97{bottom:265.626667pt;}
.y9f{bottom:270.906667pt;}
.y35{bottom:271.546667pt;}
.y127{bottom:272.506667pt;}
.y8e{bottom:274.746667pt;}
.y7e{bottom:276.346667pt;}
.y119{bottom:276.506667pt;}
.y57{bottom:277.946667pt;}
.y147{bottom:280.506667pt;}
.yf5{bottom:282.266667pt;}
.y139{bottom:284.506667pt;}
.yda{bottom:286.906667pt;}
.y34{bottom:290.746667pt;}
.y9e{bottom:294.426667pt;}
.y8d{bottom:297.626667pt;}
.y7d{bottom:299.266667pt;}
.y118{bottom:299.586667pt;}
.y56{bottom:300.866667pt;}
.y146{bottom:303.586667pt;}
.yf4{bottom:305.186667pt;}
.y16c{bottom:305.346667pt;}
.y138{bottom:307.586667pt;}
.y33{bottom:309.826667pt;}
.yd9{bottom:309.986667pt;}
.y8c{bottom:320.546667pt;}
.y7c{bottom:322.306667pt;}
.y117{bottom:322.466667pt;}
.y55{bottom:323.906667pt;}
.y145{bottom:326.466667pt;}
.y16b{bottom:328.386667pt;}
.y32{bottom:329.026667pt;}
.y150{bottom:330.466667pt;}
.yf3{bottom:332.066667pt;}
.y96{bottom:332.866667pt;}
.y137{bottom:334.466667pt;}
.y8b{bottom:343.586667pt;}
.y7b{bottom:345.186667pt;}
.y54{bottom:346.786667pt;}
.y31{bottom:348.066667pt;}
.y116{bottom:349.506667pt;}
.y16a{bottom:351.266667pt;}
.y144{bottom:353.506667pt;}
.yf2{bottom:355.106667pt;}
.yd8{bottom:355.906667pt;}
.y136{bottom:357.506667pt;}
.y8a{bottom:366.466667pt;}
.y30{bottom:367.266667pt;}
.y7a{bottom:368.066667pt;}
.y53{bottom:369.666667pt;}
.y115{bottom:372.386667pt;}
.y169{bottom:374.146667pt;}
.y143{bottom:376.386667pt;}
.yd7{bottom:378.786667pt;}
.y135{bottom:380.386667pt;}
.yf1{bottom:381.986667pt;}
.y2f{bottom:386.306667pt;}
.y89{bottom:389.506667pt;}
.y79{bottom:391.106667pt;}
.y52{bottom:392.706667pt;}
.y114{bottom:395.426667pt;}
.y168{bottom:397.186667pt;}
.y126{bottom:399.426667pt;}
.yd6{bottom:401.826667pt;}
.y134{bottom:403.426667pt;}
.yf0{bottom:405.026667pt;}
.y2e{bottom:405.506667pt;}
.y88{bottom:412.386667pt;}
.y78{bottom:413.986667pt;}
.y51{bottom:415.586667pt;}
.y167{bottom:420.066667pt;}
.y113{bottom:422.306667pt;}
.y2d{bottom:424.706667pt;}
.y133{bottom:426.306667pt;}
.yef{bottom:431.906667pt;}
.y87{bottom:435.426667pt;}
.y77{bottom:437.026667pt;}
.y50{bottom:438.626667pt;}
.y166{bottom:443.106667pt;}
.y2c{bottom:443.746667pt;}
.y112{bottom:445.346667pt;}
.yd5{bottom:447.746667pt;}
.y14a{bottom:449.346667pt;}
.y132{bottom:453.346667pt;}
.yee{bottom:454.946667pt;}
.y86{bottom:458.306667pt;}
.y76{bottom:459.906667pt;}
.y4f{bottom:461.506667pt;}
.y2b{bottom:462.946667pt;}
.y165{bottom:465.986667pt;}
.yd4{bottom:470.626667pt;}
.y111{bottom:472.226667pt;}
.y131{bottom:476.226667pt;}
.y85{bottom:481.346667pt;}
.yed{bottom:481.826667pt;}
.y2a{bottom:481.986667pt;}
.ybb{bottom:482.946667pt;}
.y4e{bottom:484.546667pt;}
.y164{bottom:489.026667pt;}
.y75{bottom:493.506667pt;}
.y110{bottom:495.266667pt;}
.y130{bottom:499.266667pt;}
.y29{bottom:501.186667pt;}
.y84{bottom:504.226667pt;}
.yec{bottom:504.866667pt;}
.yba{bottom:505.826667pt;}
.y4d{bottom:507.426667pt;}
.y163{bottom:511.906667pt;}
.yd3{bottom:516.546667pt;}
.y125{bottom:518.146667pt;}
.y28{bottom:520.226667pt;}
.y10f{bottom:522.146667pt;}
.y142{bottom:526.146667pt;}
.y74{bottom:527.266667pt;}
.yb9{bottom:528.866667pt;}
.y4c{bottom:530.466667pt;}
.yeb{bottom:531.746667pt;}
.y162{bottom:534.946667pt;}
.y27{bottom:539.453333pt;}
.y149{bottom:541.053333pt;}
.y10e{bottom:545.053333pt;}
.y12f{bottom:549.053333pt;}
.y73{bottom:550.173333pt;}
.yb8{bottom:551.773333pt;}
.y4b{bottom:553.373333pt;}
.yea{bottom:554.813333pt;}
.y161{bottom:557.853333pt;}
.y26{bottom:558.493333pt;}
.yd2{bottom:562.493333pt;}
.y10d{bottom:568.093333pt;}
.y12e{bottom:572.093333pt;}
.y72{bottom:573.053333pt;}
.yb7{bottom:574.813333pt;}
.y4a{bottom:576.413333pt;}
.y25{bottom:577.693333pt;}
.y160{bottom:580.893333pt;}
.ye9{bottom:581.693333pt;}
.yd1{bottom:585.373333pt;}
.y10c{bottom:590.973333pt;}
.y124{bottom:594.973333pt;}
.y71{bottom:596.093333pt;}
.y24{bottom:596.733333pt;}
.yb6{bottom:597.693333pt;}
.y12d{bottom:598.973333pt;}
.y49{bottom:599.293333pt;}
.y15f{bottom:603.773333pt;}
.ye8{bottom:604.733333pt;}
.yd0{bottom:608.413333pt;}
.y23{bottom:615.933333pt;}
.y10b{bottom:618.013333pt;}
.y70{bottom:618.973333pt;}
.yb5{bottom:620.733333pt;}
.y12c{bottom:622.013333pt;}
.y48{bottom:622.173333pt;}
.y15e{bottom:626.813333pt;}
.ycf{bottom:631.293333pt;}
.ye7{bottom:631.613333pt;}
.y22{bottom:635.133333pt;}
.y10a{bottom:640.893333pt;}
.y6f{bottom:642.013333pt;}
.yb4{bottom:643.613333pt;}
.y123{bottom:644.893333pt;}
.y47{bottom:645.213333pt;}
.y15d{bottom:649.693333pt;}
.y21{bottom:654.173333pt;}
.yce{bottom:654.333333pt;}
.ye6{bottom:654.493333pt;}
.y6e{bottom:664.893333pt;}
.yb3{bottom:666.493333pt;}
.y109{bottom:667.933333pt;}
.y46{bottom:668.093333pt;}
.y12b{bottom:671.933333pt;}
.y15c{bottom:672.573333pt;}
.y20{bottom:673.373333pt;}
.ycd{bottom:677.213333pt;}
.ye5{bottom:681.533333pt;}
.y6d{bottom:687.933333pt;}
.yb2{bottom:689.533333pt;}
.y108{bottom:690.813333pt;}
.y1f{bottom:692.413333pt;}
.y12a{bottom:694.813333pt;}
.y15b{bottom:695.613333pt;}
.ycc{bottom:700.253333pt;}
.y45{bottom:701.853333pt;}
.ye4{bottom:704.413333pt;}
.y6c{bottom:710.813333pt;}
.y1e{bottom:711.613333pt;}
.yb1{bottom:712.413333pt;}
.y141{bottom:713.853333pt;}
.y107{bottom:717.853333pt;}
.y15a{bottom:718.493333pt;}
.ycb{bottom:723.133333pt;}
.y44{bottom:724.733333pt;}
.y1d{bottom:731.453333pt;}
.y6b{bottom:733.853333pt;}
.yb0{bottom:735.453333pt;}
.y106{bottom:740.733333pt;}
.y14f{bottom:744.733333pt;}
.yca{bottom:746.013333pt;}
.y159{bottom:752.093333pt;}
.y1c{bottom:754.013333pt;}
.ye3{bottom:754.333333pt;}
.y6a{bottom:756.733333pt;}
.yaf{bottom:758.333333pt;}
.y43{bottom:760.573333pt;}
.y105{bottom:763.773333pt;}
.y14e{bottom:767.773333pt;}
.yc9{bottom:769.053333pt;}
.y1b{bottom:775.013333pt;}
.ye2{bottom:777.413333pt;}
.y69{bottom:779.813333pt;}
.yae{bottom:781.413333pt;}
.y42{bottom:782.853333pt;}
.y158{bottom:785.893333pt;}
.y104{bottom:786.693333pt;}
.y129{bottom:790.693333pt;}
.yc8{bottom:791.973333pt;}
.y1a{bottom:796.133333pt;}
.y41{bottom:802.053333pt;}
.y68{bottom:802.693333pt;}
.yad{bottom:804.293333pt;}
.y103{bottom:813.733333pt;}
.yc7{bottom:815.013333pt;}
.y19{bottom:817.093333pt;}
.y14d{bottom:817.733333pt;}
.y157{bottom:819.493333pt;}
.y40{bottom:821.093333pt;}
.y67{bottom:825.733333pt;}
.yac{bottom:827.333333pt;}
.y102{bottom:836.613333pt;}
.yc6{bottom:837.893333pt;}
.y18{bottom:838.213333pt;}
.y3f{bottom:840.293333pt;}
.y14c{bottom:840.613333pt;}
.y66{bottom:848.613333pt;}
.yab{bottom:850.213333pt;}
.y156{bottom:853.573333pt;}
.y17{bottom:859.173333pt;}
.y3e{bottom:859.333333pt;}
.y122{bottom:859.493333pt;}
.ye1{bottom:860.773333pt;}
.yc5{bottom:860.933333pt;}
.y101{bottom:863.493333pt;}
.y65{bottom:871.493333pt;}
.yaa{bottom:873.253333pt;}
.y3d{bottom:878.533333pt;}
.y16{bottom:880.293333pt;}
.yc4{bottom:883.813333pt;}
.y100{bottom:886.533333pt;}
.y14b{bottom:890.533333pt;}
.y64{bottom:894.533333pt;}
.ya9{bottom:896.133333pt;}
.y3c{bottom:897.573333pt;}
.y15{bottom:900.933333pt;}
.yc3{bottom:906.853333pt;}
.y121{bottom:909.413333pt;}
.yff{bottom:913.413333pt;}
.y3b{bottom:916.773333pt;}
.y63{bottom:917.413333pt;}
.ya8{bottom:919.013333pt;}
.y14{bottom:920.773333pt;}
.yc2{bottom:929.733333pt;}
.y3a{bottom:935.813333pt;}
.yfe{bottom:936.453333pt;}
.y62{bottom:940.453333pt;}
.y13{bottom:944.453333pt;}
.ya7{bottom:952.613333pt;}
.yc1{bottom:952.773333pt;}
.y39{bottom:955.013333pt;}
.yfd{bottom:959.333333pt;}
.y61{bottom:963.333333pt;}
.y12{bottom:970.213333pt;}
.y38{bottom:974.213333pt;}
.yc0{bottom:975.653333pt;}
.y60{bottom:986.373333pt;}
.y7{bottom:991.813333pt;}
.y37{bottom:993.253333pt;}
.y1{bottom:1008.293333pt;}
.y5f{bottom:1009.253333pt;}
.y36{bottom:1012.480000pt;}
.h7{height:38.672812pt;}
.h4{height:45.883437pt;}
.h6{height:51.726562pt;}
.ha{height:55.281250pt;}
.h5{height:55.468750pt;}
.h3{height:57.244062pt;}
.h8{height:63.451250pt;}
.h9{height:64.679063pt;}
.hb{height:68.968750pt;}
.hc{height:69.406250pt;}
.h2{height:76.512000pt;}
.hd{height:80.693437pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:45.152000pt;}
.w4{width:292.986667pt;}
.w2{width:295.066667pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x8{left:92.991988pt;}
.x1{left:94.592000pt;}
.xb{left:132.351988pt;}
.x9{left:142.586655pt;}
.x2{left:157.154667pt;}
.x3{left:389.666667pt;}
.x7{left:396.866655pt;}
.x5{left:434.813333pt;}
.xa{left:682.213322pt;}
.x6{left:690.853322pt;}
}




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