
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_153a728c54dbbac14eff6ae9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_3c83a7098360df408631c284.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_ce05561f2fc0810258dc2ef7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.987305;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_abf2754bbdb606a0478ab761.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_15633ff5d5d7c330f6ca4816.woff')format("woff");}.ff6{font-family:ff6;line-height:1.065430;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_391535ec8fe7893ae3857a88.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_2a341bb461343bbe25e1f24d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_76ba65888258311be31278c8.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_df2e8cc817edfae0c5259086.woff')format("woff");}.ffa{font-family:ffa;line-height:1.088379;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls24{letter-spacing:-0.513600px;}
.ls42{letter-spacing:-0.485400px;}
.ls33{letter-spacing:-0.436800px;}
.ls18{letter-spacing:-0.435000px;}
.ls4d{letter-spacing:-0.399000px;}
.ls77{letter-spacing:-0.378600px;}
.ls74{letter-spacing:-0.375600px;}
.ls84{letter-spacing:-0.375000px;}
.ls40{letter-spacing:-0.371400px;}
.ls35{letter-spacing:-0.368400px;}
.ls32{letter-spacing:-0.367800px;}
.ls82{letter-spacing:-0.308400px;}
.ls56{letter-spacing:-0.307200px;}
.ls70{letter-spacing:-0.299400px;}
.ls83{letter-spacing:-0.291600px;}
.ls2e{letter-spacing:-0.285600px;}
.ls78{letter-spacing:-0.261600px;}
.ls38{letter-spacing:-0.253200px;}
.ls7f{letter-spacing:-0.246600px;}
.ls81{letter-spacing:-0.244200px;}
.ls1a{letter-spacing:-0.243600px;}
.ls12{letter-spacing:-0.240600px;}
.ls58{letter-spacing:-0.237000px;}
.ls5a{letter-spacing:-0.219600px;}
.ls4c{letter-spacing:-0.216600px;}
.ls30{letter-spacing:-0.201000px;}
.ls15{letter-spacing:-0.186600px;}
.ls31{letter-spacing:-0.178800px;}
.ls57{letter-spacing:-0.162000px;}
.ls1f{letter-spacing:-0.160800px;}
.ls1b{letter-spacing:-0.153600px;}
.ls37{letter-spacing:-0.135600px;}
.lsd{letter-spacing:-0.135000px;}
.ls6b{letter-spacing:-0.128400px;}
.ls20{letter-spacing:-0.125400px;}
.ls6d{letter-spacing:-0.096600px;}
.ls27{letter-spacing:-0.093000px;}
.lsc{letter-spacing:-0.090000px;}
.ls17{letter-spacing:-0.078000px;}
.ls80{letter-spacing:-0.068400px;}
.ls25{letter-spacing:-0.066000px;}
.ls13{letter-spacing:-0.063600px;}
.ls1e{letter-spacing:-0.039000px;}
.ls3f{letter-spacing:-0.038880px;}
.ls68{letter-spacing:-0.037800px;}
.ls59{letter-spacing:-0.018360px;}
.ls6f{letter-spacing:-0.015480px;}
.ls23{letter-spacing:-0.015000px;}
.ls69{letter-spacing:-0.014760px;}
.ls41{letter-spacing:-0.013320px;}
.ls1c{letter-spacing:-0.013200px;}
.ls34{letter-spacing:-0.011160px;}
.ls6a{letter-spacing:-0.009000px;}
.ls4e{letter-spacing:-0.008280px;}
.ls21{letter-spacing:-0.007800px;}
.ls2f{letter-spacing:-0.007560px;}
.lsb{letter-spacing:0.000000px;}
.ls66{letter-spacing:0.020160px;}
.ls2c{letter-spacing:0.042480px;}
.ls6e{letter-spacing:0.047520px;}
.ls39{letter-spacing:0.048960px;}
.ls44{letter-spacing:0.051120px;}
.ls62{letter-spacing:0.051840px;}
.ls3e{letter-spacing:0.052560px;}
.ls16{letter-spacing:0.052800px;}
.ls6c{letter-spacing:0.055440px;}
.ls5f{letter-spacing:0.060600px;}
.ls10{letter-spacing:0.065400px;}
.ls2{letter-spacing:0.065520px;}
.ls3{letter-spacing:0.067200px;}
.ls5e{letter-spacing:0.068400px;}
.ls76{letter-spacing:0.069600px;}
.ls4a{letter-spacing:0.074400px;}
.ls67{letter-spacing:0.078600px;}
.lsf{letter-spacing:0.081600px;}
.ls1{letter-spacing:0.090000px;}
.ls0{letter-spacing:0.093600px;}
.ls75{letter-spacing:0.097800px;}
.ls4{letter-spacing:0.098400px;}
.lse{letter-spacing:0.099600px;}
.ls71{letter-spacing:0.105600px;}
.ls36{letter-spacing:0.106800px;}
.ls29{letter-spacing:0.107400px;}
.ls22{letter-spacing:0.113400px;}
.ls60{letter-spacing:0.115800px;}
.ls14{letter-spacing:0.116400px;}
.ls11{letter-spacing:0.119400px;}
.ls28{letter-spacing:0.127200px;}
.lsa{letter-spacing:0.143400px;}
.ls19{letter-spacing:0.159000px;}
.ls72{letter-spacing:0.160800px;}
.ls2d{letter-spacing:0.173400px;}
.ls7c{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.181200px;}
.ls1d{letter-spacing:0.199200px;}
.ls3d{letter-spacing:0.202200px;}
.ls4b{letter-spacing:0.206400px;}
.ls5{letter-spacing:0.239040px;}
.ls73{letter-spacing:0.453600px;}
.ls53{letter-spacing:0.547200px;}
.ls8{letter-spacing:0.813600px;}
.ls47{letter-spacing:1.173600px;}
.ls43{letter-spacing:1.533600px;}
.ls63{letter-spacing:1.893600px;}
.ls51{letter-spacing:2.253600px;}
.ls7{letter-spacing:2.613600px;}
.ls54{letter-spacing:2.973600px;}
.ls3b{letter-spacing:3.333600px;}
.ls46{letter-spacing:3.693600px;}
.ls65{letter-spacing:4.053600px;}
.ls7a{letter-spacing:4.773600px;}
.ls79{letter-spacing:5.133600px;}
.ls45{letter-spacing:5.493600px;}
.ls7e{letter-spacing:5.853600px;}
.ls7d{letter-spacing:6.213600px;}
.ls55{letter-spacing:6.333600px;}
.ls5b{letter-spacing:6.573600px;}
.ls52{letter-spacing:6.933600px;}
.ls5c{letter-spacing:7.653600px;}
.ls49{letter-spacing:8.373600px;}
.ls9{letter-spacing:8.733600px;}
.ls3a{letter-spacing:10.173600px;}
.ls2a{letter-spacing:11.253600px;}
.ls3c{letter-spacing:12.333600px;}
.ls4f{letter-spacing:12.693600px;}
.ls50{letter-spacing:13.053600px;}
.ls5d{letter-spacing:15.213600px;}
.ls7b{letter-spacing:20.253600px;}
.ls48{letter-spacing:21.333600px;}
.ls64{letter-spacing:47.726640px;}
.ls2b{letter-spacing:71.126640px;}
.ls6{letter-spacing:72.045360px;}
.ls61{letter-spacing:80.846640px;}
.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;}
}
.ws4f{word-spacing:-60.120000px;}
.ws0{word-spacing:-38.880000px;}
.ws3{word-spacing:-18.553200px;}
.ws4{word-spacing:-18.535200px;}
.ws4a{word-spacing:-14.572200px;}
.ws3c{word-spacing:-13.432800px;}
.ws35{word-spacing:-13.428600px;}
.ws16{word-spacing:-13.425600px;}
.ws12{word-spacing:-13.411800px;}
.ws20{word-spacing:-13.407600px;}
.ws24{word-spacing:-13.399800px;}
.ws57{word-spacing:-13.387200px;}
.ws22{word-spacing:-13.369800px;}
.ws28{word-spacing:-13.360200px;}
.ws31{word-spacing:-13.359600px;}
.ws27{word-spacing:-13.353600px;}
.ws7{word-spacing:-13.345800px;}
.wsb{word-spacing:-13.342800px;}
.ws48{word-spacing:-13.342200px;}
.ws1c{word-spacing:-13.339800px;}
.ws56{word-spacing:-13.332000px;}
.ws40{word-spacing:-13.327200px;}
.ws19{word-spacing:-13.324800px;}
.ws59{word-spacing:-13.324200px;}
.wse{word-spacing:-13.305600px;}
.ws36{word-spacing:-13.305360px;}
.ws3b{word-spacing:-13.300800px;}
.ws5a{word-spacing:-13.296000px;}
.ws46{word-spacing:-13.294800px;}
.ws47{word-spacing:-13.287000px;}
.ws51{word-spacing:-13.281840px;}
.ws4b{word-spacing:-13.278240px;}
.ws34{word-spacing:-13.275360px;}
.ws53{word-spacing:-13.273920px;}
.ws30{word-spacing:-13.268880px;}
.ws2c{word-spacing:-13.252800px;}
.ws49{word-spacing:-13.246560px;}
.wsd{word-spacing:-13.226400px;}
.ws26{word-spacing:-13.218840px;}
.ws1b{word-spacing:-13.218600px;}
.ws3f{word-spacing:-13.218120px;}
.ws4e{word-spacing:-13.217400px;}
.ws2e{word-spacing:-13.215240px;}
.ws15{word-spacing:-13.213200px;}
.ws39{word-spacing:-13.213080px;}
.ws4d{word-spacing:-13.211640px;}
.ws1d{word-spacing:-13.211400px;}
.ws54{word-spacing:-13.210920px;}
.ws44{word-spacing:-13.208040px;}
.ws4c{word-spacing:-13.188600px;}
.ws37{word-spacing:-13.187520px;}
.ws17{word-spacing:-13.187400px;}
.wsf{word-spacing:-13.174800px;}
.wsa{word-spacing:-13.162800px;}
.ws1f{word-spacing:-13.160400px;}
.ws5e{word-spacing:-13.158000px;}
.ws21{word-spacing:-13.133400px;}
.ws52{word-spacing:-13.129800px;}
.ws32{word-spacing:-13.117200px;}
.ws1a{word-spacing:-13.101000px;}
.ws50{word-spacing:-13.098000px;}
.ws14{word-spacing:-13.072800px;}
.ws11{word-spacing:-13.066200px;}
.ws18{word-spacing:-13.065600px;}
.ws42{word-spacing:-13.064400px;}
.ws29{word-spacing:-13.051800px;}
.ws2a{word-spacing:-13.047600px;}
.wsc{word-spacing:-13.039800px;}
.ws43{word-spacing:-13.015800px;}
.ws3d{word-spacing:-13.009800px;}
.ws45{word-spacing:-13.006800px;}
.ws33{word-spacing:-12.999600px;}
.ws9{word-spacing:-12.985800px;}
.ws13{word-spacing:-12.982800px;}
.ws5f{word-spacing:-12.982200px;}
.ws5d{word-spacing:-12.979800px;}
.ws5c{word-spacing:-12.964800px;}
.ws41{word-spacing:-12.945600px;}
.ws25{word-spacing:-12.940800px;}
.ws61{word-spacing:-12.934800px;}
.ws55{word-spacing:-12.927000px;}
.ws60{word-spacing:-12.918000px;}
.ws2b{word-spacing:-12.858600px;}
.ws2f{word-spacing:-12.858000px;}
.ws38{word-spacing:-12.855000px;}
.ws62{word-spacing:-12.851400px;}
.ws58{word-spacing:-12.850800px;}
.ws5b{word-spacing:-12.847800px;}
.ws3e{word-spacing:-12.827400px;}
.ws10{word-spacing:-12.817800px;}
.ws2d{word-spacing:-12.816000px;}
.ws3a{word-spacing:-12.741000px;}
.ws1e{word-spacing:-12.712800px;}
.ws1{word-spacing:-9.810000px;}
.ws2{word-spacing:-9.765000px;}
.ws5{word-spacing:-9.331800px;}
.ws8{word-spacing:-8.553600px;}
.ws6{word-spacing:-0.038880px;}
.ws23{word-spacing:0.000000px;}
._e{margin-left:-3.468966px;}
._a{margin-left:-2.314199px;}
._1{margin-left:-1.264080px;}
._0{width:1.190040px;}
._6{width:2.316600px;}
._5{width:4.076640px;}
._4{width:5.373120px;}
._d{width:6.499439px;}
._b{width:7.818842px;}
._7{width:9.297479px;}
._3{width:10.589761px;}
._2{width:11.604960px;}
._c{width:14.425680px;}
._10{width:15.820560px;}
._11{width:16.912080px;}
._27{width:18.001800px;}
._13{width:19.058760px;}
._17{width:20.078640px;}
._f{width:21.349080px;}
._12{width:22.631280px;}
._24{width:23.774760px;}
._9{width:24.833160px;}
._8{width:26.607360px;}
._1c{width:27.618480px;}
._25{width:29.548560px;}
._26{width:30.551160px;}
._1a{width:35.601480px;}
._16{width:38.568600px;}
._22{width:41.081760px;}
._19{width:47.579400px;}
._18{width:48.817800px;}
._1d{width:51.453360px;}
._20{width:57.164400px;}
._14{width:66.383400px;}
._1e{width:72.614880px;}
._23{width:84.018360px;}
._15{width:98.122320px;}
._1f{width:126.663240px;}
._1b{width:135.170280px;}
._21{width:171.973920px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs7{font-size:60.240000px;}
.fs5{font-size:65.880000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y59{bottom:7.740000px;}
.y54{bottom:7.770000px;}
.y5c{bottom:7.830000px;}
.y56{bottom:7.860000px;}
.yc5{bottom:7.920000px;}
.ycf{bottom:25.380000px;}
.yb2{bottom:25.470000px;}
.ycc{bottom:25.500000px;}
.yc9{bottom:29.970000px;}
.yb1{bottom:43.020000px;}
.yb8{bottom:47.520000px;}
.ybd{bottom:47.550000px;}
.yb7{bottom:65.070000px;}
.yc1{bottom:65.100000px;}
.yc4{bottom:65.160000px;}
.ybc{bottom:65.190000px;}
.yc8{bottom:69.570000px;}
.ybe{bottom:69.690000px;}
.y2{bottom:73.350000px;}
.y2b{bottom:74.160000px;}
.yc6{bottom:82.710000px;}
.yce{bottom:87.120000px;}
.yb6{bottom:87.210000px;}
.ybb{bottom:87.240000px;}
.y1{bottom:101.610000px;}
.yb5{bottom:104.760000px;}
.yba{bottom:104.790000px;}
.yc3{bottom:104.850000px;}
.ycb{bottom:104.880000px;}
.y10b{bottom:120.960000px;}
.yb4{bottom:122.400000px;}
.yc0{bottom:122.430000px;}
.y13f{bottom:125.550000px;}
.ye1{bottom:126.090000px;}
.y89{bottom:126.360000px;}
.yac{bottom:126.810000px;}
.y29{bottom:129.240000px;}
.y12f{bottom:134.550000px;}
.y5f{bottom:140.400000px;}
.ye0{bottom:143.640000px;}
.y88{bottom:144.000000px;}
.yab{bottom:144.360000px;}
.y28{bottom:146.790000px;}
.y10a{bottom:147.510000px;}
.y12e{bottom:152.100000px;}
.y96{bottom:153.360000px;}
.y5e{bottom:161.100000px;}
.ydf{bottom:161.190000px;}
.yaa{bottom:162.000000px;}
.y27{bottom:164.430000px;}
.y109{bottom:165.150000px;}
.y12d{bottom:169.740000px;}
.y87{bottom:170.550000px;}
.y95{bottom:171.000000px;}
.y5d{bottom:178.830000px;}
.ya9{bottom:179.550000px;}
.y26{bottom:181.980000px;}
.y108{bottom:182.700000px;}
.y13e{bottom:187.290000px;}
.y94{bottom:188.550000px;}
.y12c{bottom:196.290000px;}
.yde{bottom:196.380000px;}
.y25{bottom:199.620000px;}
.y13d{bottom:204.930000px;}
.y5b{bottom:206.100000px;}
.y107{bottom:209.250000px;}
.y12b{bottom:213.930000px;}
.ya8{bottom:215.100000px;}
.y24{bottom:217.170000px;}
.y86{bottom:223.740000px;}
.y106{bottom:226.890000px;}
.y12a{bottom:231.480000px;}
.ydd{bottom:232.020000px;}
.ya7{bottom:232.740000px;}
.y5a{bottom:233.460000px;}
.y23{bottom:234.720000px;}
.y85{bottom:241.290000px;}
.yb9{bottom:243.450000px;}
.y13c{bottom:249.030000px;}
.ydc{bottom:249.570000px;}
.ya6{bottom:250.290000px;}
.y22{bottom:252.360000px;}
.y105{bottom:253.440000px;}
.y129{bottom:258.030000px;}
.y84{bottom:258.930000px;}
.y58{bottom:260.820000px;}
.y13b{bottom:266.670000px;}
.ydb{bottom:267.120000px;}
.ya5{bottom:267.930000px;}
.y21{bottom:269.910000px;}
.y104{bottom:271.080000px;}
.y128{bottom:275.670000px;}
.y83{bottom:276.480000px;}
.y93{bottom:276.930000px;}
.yda{bottom:284.790000px;}
.ya4{bottom:285.510000px;}
.y57{bottom:288.090000px;}
.y127{bottom:293.250000px;}
.y82{bottom:294.060000px;}
.y92{bottom:294.510000px;}
.y103{bottom:297.660000px;}
.yd9{bottom:302.340000px;}
.ya3{bottom:303.060000px;}
.y20{bottom:305.580000px;}
.y13a{bottom:310.890000px;}
.y81{bottom:311.700000px;}
.y91{bottom:312.060000px;}
.y102{bottom:315.210000px;}
.y55{bottom:315.450000px;}
.yd8{bottom:319.890000px;}
.ya2{bottom:320.700000px;}
.y1f{bottom:323.130000px;}
.y139{bottom:328.440000px;}
.y90{bottom:329.700000px;}
.y126{bottom:337.440000px;}
.yd7{bottom:337.530000px;}
.y80{bottom:338.250000px;}
.y1e{bottom:340.680000px;}
.y101{bottom:341.850000px;}
.y53{bottom:342.810000px;}
.y8f{bottom:347.250000px;}
.y125{bottom:354.990000px;}
.yd6{bottom:355.080000px;}
.ya1{bottom:356.250000px;}
.y1d{bottom:358.320000px;}
.y100{bottom:359.400000px;}
.yb3{bottom:367.770000px;}
.y138{bottom:372.630000px;}
.yd5{bottom:372.720000px;}
.y7f{bottom:373.890000px;}
.y1c{bottom:375.870000px;}
.y124{bottom:381.630000px;}
.yff{bottom:386.040000px;}
.y137{bottom:390.180000px;}
.yd4{bottom:390.270000px;}
.y52{bottom:391.440000px;}
.y1b{bottom:393.510000px;}
.y123{bottom:399.180000px;}
.yfe{bottom:403.590000px;}
.yd3{bottom:407.820000px;}
.y7e{bottom:408.990000px;}
.y8e{bottom:409.440000px;}
.y1a{bottom:411.060000px;}
.y122{bottom:416.820000px;}
.y7d{bottom:426.630000px;}
.y51{bottom:426.990000px;}
.y19{bottom:428.610000px;}
.yfd{bottom:430.140000px;}
.y136{bottom:434.370000px;}
.yd2{bottom:434.730000px;}
.y121{bottom:443.370000px;}
.y7c{bottom:444.180000px;}
.y50{bottom:444.630000px;}
.y18{bottom:446.250000px;}
.yfc{bottom:447.780000px;}
.y120{bottom:460.920000px;}
.y7b{bottom:461.820000px;}
.y4f{bottom:462.180000px;}
.yfb{bottom:465.330000px;}
.y17{bottom:473.160000px;}
.y11f{bottom:478.560000px;}
.y7a{bottom:479.370000px;}
.y4e{bottom:479.820000px;}
.yd1{bottom:483.060000px;}
.yfa{bottom:491.970000px;}
.y79{bottom:496.920000px;}
.y4d{bottom:497.370000px;}
.yd0{bottom:500.610000px;}
.y11e{bottom:505.110000px;}
.yf9{bottom:509.520000px;}
.yb0{bottom:509.610000px;}
.y78{bottom:514.560000px;}
.y4c{bottom:514.920000px;}
.y16{bottom:521.400000px;}
.y11d{bottom:522.750000px;}
.y77{bottom:532.110000px;}
.y4b{bottom:532.560000px;}
.ycd{bottom:533.640000px;}
.yf8{bottom:536.070000px;}
.y15{bottom:539.310000px;}
.y135{bottom:540.300000px;}
.y11c{bottom:549.300000px;}
.y76{bottom:549.750000px;}
.y4a{bottom:550.110000px;}
.yf7{bottom:553.710000px;}
.y11b{bottom:566.850000px;}
.y49{bottom:567.750000px;}
.y14{bottom:576.300000px;}
.yf6{bottom:580.260000px;}
.y11a{bottom:584.490000px;}
.y48{bottom:585.300000px;}
.yaf{bottom:593.490000px;}
.y13{bottom:593.940000px;}
.yf5{bottom:597.900000px;}
.y134{bottom:602.040000px;}
.y47{bottom:602.850000px;}
.y119{bottom:611.040000px;}
.y12{bottom:611.490000px;}
.y46{bottom:620.490000px;}
.yf4{bottom:624.450000px;}
.y118{bottom:628.680000px;}
.yae{bottom:629.040000px;}
.y11{bottom:629.130000px;}
.y45{bottom:638.040000px;}
.yf3{bottom:642.000000px;}
.y117{bottom:646.230000px;}
.y10{bottom:646.680000px;}
.y44{bottom:655.680000px;}
.yca{bottom:657.840000px;}
.yf2{bottom:659.640000px;}
.yf{bottom:664.230000px;}
.y116{bottom:672.780000px;}
.y43{bottom:673.230000px;}
.ye{bottom:681.900000px;}
.yf1{bottom:686.220000px;}
.y115{bottom:690.450000px;}
.y75{bottom:690.810000px;}
.yd{bottom:699.450000px;}
.y42{bottom:699.810000px;}
.yf0{bottom:703.860000px;}
.y114{bottom:708.000000px;}
.y74{bottom:708.450000px;}
.yc{bottom:717.090000px;}
.y73{bottom:726.000000px;}
.ya0{bottom:726.450000px;}
.yef{bottom:730.410000px;}
.y113{bottom:734.640000px;}
.y41{bottom:735.450000px;}
.y72{bottom:743.640000px;}
.yb{bottom:744.000000px;}
.yee{bottom:747.960000px;}
.y112{bottom:752.190000px;}
.y8d{bottom:752.640000px;}
.y40{bottom:753.000000px;}
.y71{bottom:761.190000px;}
.y9f{bottom:761.640000px;}
.y3f{bottom:770.640000px;}
.yed{bottom:774.600000px;}
.y70{bottom:778.740000px;}
.y9e{bottom:779.190000px;}
.yc7{bottom:782.160000px;}
.y3e{bottom:788.190000px;}
.yec{bottom:792.150000px;}
.ya{bottom:792.240000px;}
.y6f{bottom:796.380000px;}
.y9d{bottom:796.740000px;}
.y3d{bottom:805.740000px;}
.y133{bottom:813.930000px;}
.y9c{bottom:814.380000px;}
.yeb{bottom:818.790000px;}
.y111{bottom:822.930000px;}
.y8c{bottom:823.380000px;}
.y9{bottom:828.060000px;}
.y6e{bottom:831.930000px;}
.yea{bottom:836.340000px;}
.y110{bottom:840.480000px;}
.y8b{bottom:840.930000px;}
.y3c{bottom:841.380000px;}
.y6d{bottom:849.480000px;}
.y10f{bottom:858.120000px;}
.yad{bottom:858.480000px;}
.y3b{bottom:858.930000px;}
.ye9{bottom:863.250000px;}
.y8{bottom:864.060000px;}
.y6c{bottom:867.120000px;}
.y9b{bottom:876.120000px;}
.y3a{bottom:876.480000px;}
.y6b{bottom:884.670000px;}
.yc2{bottom:888.810000px;}
.y39{bottom:894.120000px;}
.y7{bottom:900.060000px;}
.y6a{bottom:902.310000px;}
.ye8{bottom:911.490000px;}
.y38{bottom:911.670000px;}
.y132{bottom:919.860000px;}
.y6{bottom:921.840000px;}
.y10e{bottom:928.860000px;}
.y37{bottom:929.310000px;}
.y69{bottom:937.860000px;}
.ye7{bottom:938.400000px;}
.y5{bottom:939.840000px;}
.y10d{bottom:946.410000px;}
.y36{bottom:946.860000px;}
.y68{bottom:955.410000px;}
.y131{bottom:964.050000px;}
.y35{bottom:964.410000px;}
.y4{bottom:972.150000px;}
.y67{bottom:973.050000px;}
.ye6{bottom:975.480000px;}
.y34{bottom:982.050000px;}
.y10c{bottom:990.600000px;}
.ye5{bottom:993.030000px;}
.y33{bottom:999.600000px;}
.y9a{bottom:1000.050000px;}
.y130{bottom:1008.240000px;}
.y66{bottom:1008.600000px;}
.y3{bottom:1010.400000px;}
.ye4{bottom:1010.580000px;}
.ybf{bottom:1013.100000px;}
.y32{bottom:1017.240000px;}
.y99{bottom:1017.600000px;}
.y65{bottom:1026.240000px;}
.y31{bottom:1034.790000px;}
.y98{bottom:1035.240000px;}
.ye3{bottom:1037.490000px;}
.y64{bottom:1043.790000px;}
.y8a{bottom:1052.340000px;}
.y97{bottom:1052.790000px;}
.y63{bottom:1061.340000px;}
.y30{bottom:1070.340000px;}
.ye2{bottom:1074.840000px;}
.y62{bottom:1079.010000px;}
.y2f{bottom:1088.010000px;}
.y61{bottom:1096.560000px;}
.y2e{bottom:1105.560000px;}
.y60{bottom:1114.200000px;}
.y2d{bottom:1123.200000px;}
.y2c{bottom:1140.750000px;}
.y2a{bottom:1194.750000px;}
.hd{height:26.550000px;}
.he{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.ha{height:52.415859px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.h10{height:61.740000px;}
.hc{height:61.793886px;}
.hb{height:68.582109px;}
.h4{height:72.985430px;}
.hf{height:74.004654px;}
.h15{height:105.930000px;}
.h17{height:123.480000px;}
.h12{height:123.510000px;}
.h14{height:123.570000px;}
.h16{height:123.600000px;}
.h11{height:141.120000px;}
.h13{height:141.150000px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w8{width:92.100000px;}
.w4{width:115.290000px;}
.w5{width:164.370000px;}
.w7{width:215.640000px;}
.w3{width:262.530000px;}
.w6{width:280.830000px;}
.w1{width:892.500000px;}
.w2{width:892.529987px;}
.w0{width:892.530000px;}
.x0{left:0.000000px;}
.x5{left:7.770000px;}
.x1{left:68.040000px;}
.xa{left:111.239987px;}
.x2{left:192.359987px;}
.x7{left:233.850000px;}
.x4{left:256.950000px;}
.x8{left:515.400000px;}
.x6{left:520.200000px;}
.x9{left:731.760000px;}
.x3{left:799.649987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls24{letter-spacing:-0.456533pt;}
.ls42{letter-spacing:-0.431467pt;}
.ls33{letter-spacing:-0.388267pt;}
.ls18{letter-spacing:-0.386667pt;}
.ls4d{letter-spacing:-0.354667pt;}
.ls77{letter-spacing:-0.336533pt;}
.ls74{letter-spacing:-0.333867pt;}
.ls84{letter-spacing:-0.333333pt;}
.ls40{letter-spacing:-0.330133pt;}
.ls35{letter-spacing:-0.327467pt;}
.ls32{letter-spacing:-0.326933pt;}
.ls82{letter-spacing:-0.274133pt;}
.ls56{letter-spacing:-0.273067pt;}
.ls70{letter-spacing:-0.266133pt;}
.ls83{letter-spacing:-0.259200pt;}
.ls2e{letter-spacing:-0.253867pt;}
.ls78{letter-spacing:-0.232533pt;}
.ls38{letter-spacing:-0.225067pt;}
.ls7f{letter-spacing:-0.219200pt;}
.ls81{letter-spacing:-0.217067pt;}
.ls1a{letter-spacing:-0.216533pt;}
.ls12{letter-spacing:-0.213867pt;}
.ls58{letter-spacing:-0.210667pt;}
.ls5a{letter-spacing:-0.195200pt;}
.ls4c{letter-spacing:-0.192533pt;}
.ls30{letter-spacing:-0.178667pt;}
.ls15{letter-spacing:-0.165867pt;}
.ls31{letter-spacing:-0.158933pt;}
.ls57{letter-spacing:-0.144000pt;}
.ls1f{letter-spacing:-0.142933pt;}
.ls1b{letter-spacing:-0.136533pt;}
.ls37{letter-spacing:-0.120533pt;}
.lsd{letter-spacing:-0.120000pt;}
.ls6b{letter-spacing:-0.114133pt;}
.ls20{letter-spacing:-0.111467pt;}
.ls6d{letter-spacing:-0.085867pt;}
.ls27{letter-spacing:-0.082667pt;}
.lsc{letter-spacing:-0.080000pt;}
.ls17{letter-spacing:-0.069333pt;}
.ls80{letter-spacing:-0.060800pt;}
.ls25{letter-spacing:-0.058667pt;}
.ls13{letter-spacing:-0.056533pt;}
.ls1e{letter-spacing:-0.034667pt;}
.ls3f{letter-spacing:-0.034560pt;}
.ls68{letter-spacing:-0.033600pt;}
.ls59{letter-spacing:-0.016320pt;}
.ls6f{letter-spacing:-0.013760pt;}
.ls23{letter-spacing:-0.013333pt;}
.ls69{letter-spacing:-0.013120pt;}
.ls41{letter-spacing:-0.011840pt;}
.ls1c{letter-spacing:-0.011733pt;}
.ls34{letter-spacing:-0.009920pt;}
.ls6a{letter-spacing:-0.008000pt;}
.ls4e{letter-spacing:-0.007360pt;}
.ls21{letter-spacing:-0.006933pt;}
.ls2f{letter-spacing:-0.006720pt;}
.lsb{letter-spacing:0.000000pt;}
.ls66{letter-spacing:0.017920pt;}
.ls2c{letter-spacing:0.037760pt;}
.ls6e{letter-spacing:0.042240pt;}
.ls39{letter-spacing:0.043520pt;}
.ls44{letter-spacing:0.045440pt;}
.ls62{letter-spacing:0.046080pt;}
.ls3e{letter-spacing:0.046720pt;}
.ls16{letter-spacing:0.046933pt;}
.ls6c{letter-spacing:0.049280pt;}
.ls5f{letter-spacing:0.053867pt;}
.ls10{letter-spacing:0.058133pt;}
.ls2{letter-spacing:0.058240pt;}
.ls3{letter-spacing:0.059733pt;}
.ls5e{letter-spacing:0.060800pt;}
.ls76{letter-spacing:0.061867pt;}
.ls4a{letter-spacing:0.066133pt;}
.ls67{letter-spacing:0.069867pt;}
.lsf{letter-spacing:0.072533pt;}
.ls1{letter-spacing:0.080000pt;}
.ls0{letter-spacing:0.083200pt;}
.ls75{letter-spacing:0.086933pt;}
.ls4{letter-spacing:0.087467pt;}
.lse{letter-spacing:0.088533pt;}
.ls71{letter-spacing:0.093867pt;}
.ls36{letter-spacing:0.094933pt;}
.ls29{letter-spacing:0.095467pt;}
.ls22{letter-spacing:0.100800pt;}
.ls60{letter-spacing:0.102933pt;}
.ls14{letter-spacing:0.103467pt;}
.ls11{letter-spacing:0.106133pt;}
.ls28{letter-spacing:0.113067pt;}
.lsa{letter-spacing:0.127467pt;}
.ls19{letter-spacing:0.141333pt;}
.ls72{letter-spacing:0.142933pt;}
.ls2d{letter-spacing:0.154133pt;}
.ls7c{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.161067pt;}
.ls1d{letter-spacing:0.177067pt;}
.ls3d{letter-spacing:0.179733pt;}
.ls4b{letter-spacing:0.183467pt;}
.ls5{letter-spacing:0.212480pt;}
.ls73{letter-spacing:0.403200pt;}
.ls53{letter-spacing:0.486400pt;}
.ls8{letter-spacing:0.723200pt;}
.ls47{letter-spacing:1.043200pt;}
.ls43{letter-spacing:1.363200pt;}
.ls63{letter-spacing:1.683200pt;}
.ls51{letter-spacing:2.003200pt;}
.ls7{letter-spacing:2.323200pt;}
.ls54{letter-spacing:2.643200pt;}
.ls3b{letter-spacing:2.963200pt;}
.ls46{letter-spacing:3.283200pt;}
.ls65{letter-spacing:3.603200pt;}
.ls7a{letter-spacing:4.243200pt;}
.ls79{letter-spacing:4.563200pt;}
.ls45{letter-spacing:4.883200pt;}
.ls7e{letter-spacing:5.203200pt;}
.ls7d{letter-spacing:5.523200pt;}
.ls55{letter-spacing:5.629867pt;}
.ls5b{letter-spacing:5.843200pt;}
.ls52{letter-spacing:6.163200pt;}
.ls5c{letter-spacing:6.803200pt;}
.ls49{letter-spacing:7.443200pt;}
.ls9{letter-spacing:7.763200pt;}
.ls3a{letter-spacing:9.043200pt;}
.ls2a{letter-spacing:10.003200pt;}
.ls3c{letter-spacing:10.963200pt;}
.ls4f{letter-spacing:11.283200pt;}
.ls50{letter-spacing:11.603200pt;}
.ls5d{letter-spacing:13.523200pt;}
.ls7b{letter-spacing:18.003200pt;}
.ls48{letter-spacing:18.963200pt;}
.ls64{letter-spacing:42.423680pt;}
.ls2b{letter-spacing:63.223680pt;}
.ls6{letter-spacing:64.040320pt;}
.ls61{letter-spacing:71.863680pt;}
.ws4f{word-spacing:-53.440000pt;}
.ws0{word-spacing:-34.560000pt;}
.ws3{word-spacing:-16.491733pt;}
.ws4{word-spacing:-16.475733pt;}
.ws4a{word-spacing:-12.953067pt;}
.ws3c{word-spacing:-11.940267pt;}
.ws35{word-spacing:-11.936533pt;}
.ws16{word-spacing:-11.933867pt;}
.ws12{word-spacing:-11.921600pt;}
.ws20{word-spacing:-11.917867pt;}
.ws24{word-spacing:-11.910933pt;}
.ws57{word-spacing:-11.899733pt;}
.ws22{word-spacing:-11.884267pt;}
.ws28{word-spacing:-11.875733pt;}
.ws31{word-spacing:-11.875200pt;}
.ws27{word-spacing:-11.869867pt;}
.ws7{word-spacing:-11.862933pt;}
.wsb{word-spacing:-11.860267pt;}
.ws48{word-spacing:-11.859733pt;}
.ws1c{word-spacing:-11.857600pt;}
.ws56{word-spacing:-11.850667pt;}
.ws40{word-spacing:-11.846400pt;}
.ws19{word-spacing:-11.844267pt;}
.ws59{word-spacing:-11.843733pt;}
.wse{word-spacing:-11.827200pt;}
.ws36{word-spacing:-11.826987pt;}
.ws3b{word-spacing:-11.822933pt;}
.ws5a{word-spacing:-11.818667pt;}
.ws46{word-spacing:-11.817600pt;}
.ws47{word-spacing:-11.810667pt;}
.ws51{word-spacing:-11.806080pt;}
.ws4b{word-spacing:-11.802880pt;}
.ws34{word-spacing:-11.800320pt;}
.ws53{word-spacing:-11.799040pt;}
.ws30{word-spacing:-11.794560pt;}
.ws2c{word-spacing:-11.780267pt;}
.ws49{word-spacing:-11.774720pt;}
.wsd{word-spacing:-11.756800pt;}
.ws26{word-spacing:-11.750080pt;}
.ws1b{word-spacing:-11.749867pt;}
.ws3f{word-spacing:-11.749440pt;}
.ws4e{word-spacing:-11.748800pt;}
.ws2e{word-spacing:-11.746880pt;}
.ws15{word-spacing:-11.745067pt;}
.ws39{word-spacing:-11.744960pt;}
.ws4d{word-spacing:-11.743680pt;}
.ws1d{word-spacing:-11.743467pt;}
.ws54{word-spacing:-11.743040pt;}
.ws44{word-spacing:-11.740480pt;}
.ws4c{word-spacing:-11.723200pt;}
.ws37{word-spacing:-11.722240pt;}
.ws17{word-spacing:-11.722133pt;}
.wsf{word-spacing:-11.710933pt;}
.wsa{word-spacing:-11.700267pt;}
.ws1f{word-spacing:-11.698133pt;}
.ws5e{word-spacing:-11.696000pt;}
.ws21{word-spacing:-11.674133pt;}
.ws52{word-spacing:-11.670933pt;}
.ws32{word-spacing:-11.659733pt;}
.ws1a{word-spacing:-11.645333pt;}
.ws50{word-spacing:-11.642667pt;}
.ws14{word-spacing:-11.620267pt;}
.ws11{word-spacing:-11.614400pt;}
.ws18{word-spacing:-11.613867pt;}
.ws42{word-spacing:-11.612800pt;}
.ws29{word-spacing:-11.601600pt;}
.ws2a{word-spacing:-11.597867pt;}
.wsc{word-spacing:-11.590933pt;}
.ws43{word-spacing:-11.569600pt;}
.ws3d{word-spacing:-11.564267pt;}
.ws45{word-spacing:-11.561600pt;}
.ws33{word-spacing:-11.555200pt;}
.ws9{word-spacing:-11.542933pt;}
.ws13{word-spacing:-11.540267pt;}
.ws5f{word-spacing:-11.539733pt;}
.ws5d{word-spacing:-11.537600pt;}
.ws5c{word-spacing:-11.524267pt;}
.ws41{word-spacing:-11.507200pt;}
.ws25{word-spacing:-11.502933pt;}
.ws61{word-spacing:-11.497600pt;}
.ws55{word-spacing:-11.490667pt;}
.ws60{word-spacing:-11.482667pt;}
.ws2b{word-spacing:-11.429867pt;}
.ws2f{word-spacing:-11.429333pt;}
.ws38{word-spacing:-11.426667pt;}
.ws62{word-spacing:-11.423467pt;}
.ws58{word-spacing:-11.422933pt;}
.ws5b{word-spacing:-11.420267pt;}
.ws3e{word-spacing:-11.402133pt;}
.ws10{word-spacing:-11.393600pt;}
.ws2d{word-spacing:-11.392000pt;}
.ws3a{word-spacing:-11.325333pt;}
.ws1e{word-spacing:-11.300267pt;}
.ws1{word-spacing:-8.720000pt;}
.ws2{word-spacing:-8.680000pt;}
.ws5{word-spacing:-8.294933pt;}
.ws8{word-spacing:-7.603200pt;}
.ws6{word-spacing:-0.034560pt;}
.ws23{word-spacing:0.000000pt;}
._e{margin-left:-3.083525pt;}
._a{margin-left:-2.057066pt;}
._1{margin-left:-1.123627pt;}
._0{width:1.057813pt;}
._6{width:2.059200pt;}
._5{width:3.623680pt;}
._4{width:4.776107pt;}
._d{width:5.777279pt;}
._b{width:6.950081pt;}
._7{width:8.264426pt;}
._3{width:9.413121pt;}
._2{width:10.315520pt;}
._c{width:12.822827pt;}
._10{width:14.062720pt;}
._11{width:15.032960pt;}
._27{width:16.001600pt;}
._13{width:16.941120pt;}
._17{width:17.847680pt;}
._f{width:18.976960pt;}
._12{width:20.116694pt;}
._24{width:21.133120pt;}
._9{width:22.073920pt;}
._8{width:23.650987pt;}
._1c{width:24.549760pt;}
._25{width:26.265387pt;}
._26{width:27.156587pt;}
._1a{width:31.645760pt;}
._16{width:34.283200pt;}
._22{width:36.517120pt;}
._19{width:42.292800pt;}
._18{width:43.393600pt;}
._1d{width:45.736320pt;}
._20{width:50.812800pt;}
._14{width:59.007467pt;}
._1e{width:64.546560pt;}
._23{width:74.682987pt;}
._15{width:87.219840pt;}
._1f{width:112.589547pt;}
._1b{width:120.151360pt;}
._21{width:152.865707pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs7{font-size:53.546667pt;}
.fs5{font-size:58.560000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:6.880000pt;}
.y54{bottom:6.906667pt;}
.y5c{bottom:6.960000pt;}
.y56{bottom:6.986667pt;}
.yc5{bottom:7.040000pt;}
.ycf{bottom:22.560000pt;}
.yb2{bottom:22.640000pt;}
.ycc{bottom:22.666667pt;}
.yc9{bottom:26.640000pt;}
.yb1{bottom:38.240000pt;}
.yb8{bottom:42.240000pt;}
.ybd{bottom:42.266667pt;}
.yb7{bottom:57.840000pt;}
.yc1{bottom:57.866667pt;}
.yc4{bottom:57.920000pt;}
.ybc{bottom:57.946667pt;}
.yc8{bottom:61.840000pt;}
.ybe{bottom:61.946667pt;}
.y2{bottom:65.200000pt;}
.y2b{bottom:65.920000pt;}
.yc6{bottom:73.520000pt;}
.yce{bottom:77.440000pt;}
.yb6{bottom:77.520000pt;}
.ybb{bottom:77.546667pt;}
.y1{bottom:90.320000pt;}
.yb5{bottom:93.120000pt;}
.yba{bottom:93.146667pt;}
.yc3{bottom:93.200000pt;}
.ycb{bottom:93.226667pt;}
.y10b{bottom:107.520000pt;}
.yb4{bottom:108.800000pt;}
.yc0{bottom:108.826667pt;}
.y13f{bottom:111.600000pt;}
.ye1{bottom:112.080000pt;}
.y89{bottom:112.320000pt;}
.yac{bottom:112.720000pt;}
.y29{bottom:114.880000pt;}
.y12f{bottom:119.600000pt;}
.y5f{bottom:124.800000pt;}
.ye0{bottom:127.680000pt;}
.y88{bottom:128.000000pt;}
.yab{bottom:128.320000pt;}
.y28{bottom:130.480000pt;}
.y10a{bottom:131.120000pt;}
.y12e{bottom:135.200000pt;}
.y96{bottom:136.320000pt;}
.y5e{bottom:143.200000pt;}
.ydf{bottom:143.280000pt;}
.yaa{bottom:144.000000pt;}
.y27{bottom:146.160000pt;}
.y109{bottom:146.800000pt;}
.y12d{bottom:150.880000pt;}
.y87{bottom:151.600000pt;}
.y95{bottom:152.000000pt;}
.y5d{bottom:158.960000pt;}
.ya9{bottom:159.600000pt;}
.y26{bottom:161.760000pt;}
.y108{bottom:162.400000pt;}
.y13e{bottom:166.480000pt;}
.y94{bottom:167.600000pt;}
.y12c{bottom:174.480000pt;}
.yde{bottom:174.560000pt;}
.y25{bottom:177.440000pt;}
.y13d{bottom:182.160000pt;}
.y5b{bottom:183.200000pt;}
.y107{bottom:186.000000pt;}
.y12b{bottom:190.160000pt;}
.ya8{bottom:191.200000pt;}
.y24{bottom:193.040000pt;}
.y86{bottom:198.880000pt;}
.y106{bottom:201.680000pt;}
.y12a{bottom:205.760000pt;}
.ydd{bottom:206.240000pt;}
.ya7{bottom:206.880000pt;}
.y5a{bottom:207.520000pt;}
.y23{bottom:208.640000pt;}
.y85{bottom:214.480000pt;}
.yb9{bottom:216.400000pt;}
.y13c{bottom:221.360000pt;}
.ydc{bottom:221.840000pt;}
.ya6{bottom:222.480000pt;}
.y22{bottom:224.320000pt;}
.y105{bottom:225.280000pt;}
.y129{bottom:229.360000pt;}
.y84{bottom:230.160000pt;}
.y58{bottom:231.840000pt;}
.y13b{bottom:237.040000pt;}
.ydb{bottom:237.440000pt;}
.ya5{bottom:238.160000pt;}
.y21{bottom:239.920000pt;}
.y104{bottom:240.960000pt;}
.y128{bottom:245.040000pt;}
.y83{bottom:245.760000pt;}
.y93{bottom:246.160000pt;}
.yda{bottom:253.146667pt;}
.ya4{bottom:253.786667pt;}
.y57{bottom:256.080000pt;}
.y127{bottom:260.666667pt;}
.y82{bottom:261.386667pt;}
.y92{bottom:261.786667pt;}
.y103{bottom:264.586667pt;}
.yd9{bottom:268.746667pt;}
.ya3{bottom:269.386667pt;}
.y20{bottom:271.626667pt;}
.y13a{bottom:276.346667pt;}
.y81{bottom:277.066667pt;}
.y91{bottom:277.386667pt;}
.y102{bottom:280.186667pt;}
.y55{bottom:280.400000pt;}
.yd8{bottom:284.346667pt;}
.ya2{bottom:285.066667pt;}
.y1f{bottom:287.226667pt;}
.y139{bottom:291.946667pt;}
.y90{bottom:293.066667pt;}
.y126{bottom:299.946667pt;}
.yd7{bottom:300.026667pt;}
.y80{bottom:300.666667pt;}
.y1e{bottom:302.826667pt;}
.y101{bottom:303.866667pt;}
.y53{bottom:304.720000pt;}
.y8f{bottom:308.666667pt;}
.y125{bottom:315.546667pt;}
.yd6{bottom:315.626667pt;}
.ya1{bottom:316.666667pt;}
.y1d{bottom:318.506667pt;}
.y100{bottom:319.466667pt;}
.yb3{bottom:326.906667pt;}
.y138{bottom:331.226667pt;}
.yd5{bottom:331.306667pt;}
.y7f{bottom:332.346667pt;}
.y1c{bottom:334.106667pt;}
.y124{bottom:339.226667pt;}
.yff{bottom:343.146667pt;}
.y137{bottom:346.826667pt;}
.yd4{bottom:346.906667pt;}
.y52{bottom:347.946667pt;}
.y1b{bottom:349.786667pt;}
.y123{bottom:354.826667pt;}
.yfe{bottom:358.746667pt;}
.yd3{bottom:362.506667pt;}
.y7e{bottom:363.546667pt;}
.y8e{bottom:363.946667pt;}
.y1a{bottom:365.386667pt;}
.y122{bottom:370.506667pt;}
.y7d{bottom:379.226667pt;}
.y51{bottom:379.546667pt;}
.y19{bottom:380.986667pt;}
.yfd{bottom:382.346667pt;}
.y136{bottom:386.106667pt;}
.yd2{bottom:386.426667pt;}
.y121{bottom:394.106667pt;}
.y7c{bottom:394.826667pt;}
.y50{bottom:395.226667pt;}
.y18{bottom:396.666667pt;}
.yfc{bottom:398.026667pt;}
.y120{bottom:409.706667pt;}
.y7b{bottom:410.506667pt;}
.y4f{bottom:410.826667pt;}
.yfb{bottom:413.626667pt;}
.y17{bottom:420.586667pt;}
.y11f{bottom:425.386667pt;}
.y7a{bottom:426.106667pt;}
.y4e{bottom:426.506667pt;}
.yd1{bottom:429.386667pt;}
.yfa{bottom:437.306667pt;}
.y79{bottom:441.706667pt;}
.y4d{bottom:442.106667pt;}
.yd0{bottom:444.986667pt;}
.y11e{bottom:448.986667pt;}
.yf9{bottom:452.906667pt;}
.yb0{bottom:452.986667pt;}
.y78{bottom:457.386667pt;}
.y4c{bottom:457.706667pt;}
.y16{bottom:463.466667pt;}
.y11d{bottom:464.666667pt;}
.y77{bottom:472.986667pt;}
.y4b{bottom:473.386667pt;}
.ycd{bottom:474.346667pt;}
.yf8{bottom:476.506667pt;}
.y15{bottom:479.386667pt;}
.y135{bottom:480.266667pt;}
.y11c{bottom:488.266667pt;}
.y76{bottom:488.666667pt;}
.y4a{bottom:488.986667pt;}
.yf7{bottom:492.186667pt;}
.y11b{bottom:503.866667pt;}
.y49{bottom:504.666667pt;}
.y14{bottom:512.266667pt;}
.yf6{bottom:515.786667pt;}
.y11a{bottom:519.546667pt;}
.y48{bottom:520.266667pt;}
.yaf{bottom:527.546667pt;}
.y13{bottom:527.946667pt;}
.yf5{bottom:531.466667pt;}
.y134{bottom:535.146667pt;}
.y47{bottom:535.866667pt;}
.y119{bottom:543.146667pt;}
.y12{bottom:543.546667pt;}
.y46{bottom:551.546667pt;}
.yf4{bottom:555.066667pt;}
.y118{bottom:558.826667pt;}
.yae{bottom:559.146667pt;}
.y11{bottom:559.226667pt;}
.y45{bottom:567.146667pt;}
.yf3{bottom:570.666667pt;}
.y117{bottom:574.426667pt;}
.y10{bottom:574.826667pt;}
.y44{bottom:582.826667pt;}
.yca{bottom:584.746667pt;}
.yf2{bottom:586.346667pt;}
.yf{bottom:590.426667pt;}
.y116{bottom:598.026667pt;}
.y43{bottom:598.426667pt;}
.ye{bottom:606.133333pt;}
.yf1{bottom:609.973333pt;}
.y115{bottom:613.733333pt;}
.y75{bottom:614.053333pt;}
.yd{bottom:621.733333pt;}
.y42{bottom:622.053333pt;}
.yf0{bottom:625.653333pt;}
.y114{bottom:629.333333pt;}
.y74{bottom:629.733333pt;}
.yc{bottom:637.413333pt;}
.y73{bottom:645.333333pt;}
.ya0{bottom:645.733333pt;}
.yef{bottom:649.253333pt;}
.y113{bottom:653.013333pt;}
.y41{bottom:653.733333pt;}
.y72{bottom:661.013333pt;}
.yb{bottom:661.333333pt;}
.yee{bottom:664.853333pt;}
.y112{bottom:668.613333pt;}
.y8d{bottom:669.013333pt;}
.y40{bottom:669.333333pt;}
.y71{bottom:676.613333pt;}
.y9f{bottom:677.013333pt;}
.y3f{bottom:685.013333pt;}
.yed{bottom:688.533333pt;}
.y70{bottom:692.213333pt;}
.y9e{bottom:692.613333pt;}
.yc7{bottom:695.253333pt;}
.y3e{bottom:700.613333pt;}
.yec{bottom:704.133333pt;}
.ya{bottom:704.213333pt;}
.y6f{bottom:707.893333pt;}
.y9d{bottom:708.213333pt;}
.y3d{bottom:716.213333pt;}
.y133{bottom:723.493333pt;}
.y9c{bottom:723.893333pt;}
.yeb{bottom:727.813333pt;}
.y111{bottom:731.493333pt;}
.y8c{bottom:731.893333pt;}
.y9{bottom:736.053333pt;}
.y6e{bottom:739.493333pt;}
.yea{bottom:743.413333pt;}
.y110{bottom:747.093333pt;}
.y8b{bottom:747.493333pt;}
.y3c{bottom:747.893333pt;}
.y6d{bottom:755.093333pt;}
.y10f{bottom:762.773333pt;}
.yad{bottom:763.093333pt;}
.y3b{bottom:763.493333pt;}
.ye9{bottom:767.333333pt;}
.y8{bottom:768.053333pt;}
.y6c{bottom:770.773333pt;}
.y9b{bottom:778.773333pt;}
.y3a{bottom:779.093333pt;}
.y6b{bottom:786.373333pt;}
.yc2{bottom:790.053333pt;}
.y39{bottom:794.773333pt;}
.y7{bottom:800.053333pt;}
.y6a{bottom:802.053333pt;}
.ye8{bottom:810.213333pt;}
.y38{bottom:810.373333pt;}
.y132{bottom:817.653333pt;}
.y6{bottom:819.413333pt;}
.y10e{bottom:825.653333pt;}
.y37{bottom:826.053333pt;}
.y69{bottom:833.653333pt;}
.ye7{bottom:834.133333pt;}
.y5{bottom:835.413333pt;}
.y10d{bottom:841.253333pt;}
.y36{bottom:841.653333pt;}
.y68{bottom:849.253333pt;}
.y131{bottom:856.933333pt;}
.y35{bottom:857.253333pt;}
.y4{bottom:864.133333pt;}
.y67{bottom:864.933333pt;}
.ye6{bottom:867.093333pt;}
.y34{bottom:872.933333pt;}
.y10c{bottom:880.533333pt;}
.ye5{bottom:882.693333pt;}
.y33{bottom:888.533333pt;}
.y9a{bottom:888.933333pt;}
.y130{bottom:896.213333pt;}
.y66{bottom:896.533333pt;}
.y3{bottom:898.133333pt;}
.ye4{bottom:898.293333pt;}
.ybf{bottom:900.533333pt;}
.y32{bottom:904.213333pt;}
.y99{bottom:904.533333pt;}
.y65{bottom:912.213333pt;}
.y31{bottom:919.813333pt;}
.y98{bottom:920.213333pt;}
.ye3{bottom:922.213333pt;}
.y64{bottom:927.813333pt;}
.y8a{bottom:935.413333pt;}
.y97{bottom:935.813333pt;}
.y63{bottom:943.413333pt;}
.y30{bottom:951.413333pt;}
.ye2{bottom:955.413333pt;}
.y62{bottom:959.120000pt;}
.y2f{bottom:967.120000pt;}
.y61{bottom:974.720000pt;}
.y2e{bottom:982.720000pt;}
.y60{bottom:990.400000pt;}
.y2d{bottom:998.400000pt;}
.y2c{bottom:1014.000000pt;}
.y2a{bottom:1062.000000pt;}
.hd{height:23.600000pt;}
.he{height:23.680000pt;}
.h2{height:26.686563pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.ha{height:46.591875pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.h10{height:54.880000pt;}
.hc{height:54.927899pt;}
.hb{height:60.961875pt;}
.h4{height:64.875937pt;}
.hf{height:65.781915pt;}
.h15{height:94.160000pt;}
.h17{height:109.760000pt;}
.h12{height:109.786667pt;}
.h14{height:109.840000pt;}
.h16{height:109.866667pt;}
.h11{height:125.440000pt;}
.h13{height:125.466667pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w8{width:81.866667pt;}
.w4{width:102.480000pt;}
.w5{width:146.106667pt;}
.w7{width:191.680000pt;}
.w3{width:233.360000pt;}
.w6{width:249.626667pt;}
.w1{width:793.333333pt;}
.w2{width:793.359988pt;}
.w0{width:793.360000pt;}
.x0{left:0.000000pt;}
.x5{left:6.906667pt;}
.x1{left:60.480000pt;}
.xa{left:98.879988pt;}
.x2{left:170.986655pt;}
.x7{left:207.866667pt;}
.x4{left:228.400000pt;}
.x8{left:458.133333pt;}
.x6{left:462.400000pt;}
.x9{left:650.453333pt;}
.x3{left:710.799988pt;}
}




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