
    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_44ab2ef4ff2bc355e74aa6bc.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_c20dea8d028f06fd1de41a8d.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_271c3b9566bc134c4a2b8de6.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a6f508ac6cf8fad563cff8b0.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3a85cf86b0d94e9841b2a473.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_394af23818f9f6bc35bba62b.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ebf64149841ade93f139bd90.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_6ddf7d0041d089ff90ac1cde.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d7a48202e5ce3c8980e92aae.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_51d7697c73b3f292a1678398.woff')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v2{vertical-align:15.120000px;}
.ls5a{letter-spacing:-1.236000px;}
.ls68{letter-spacing:-1.170000px;}
.ls89{letter-spacing:-1.062000px;}
.ls82{letter-spacing:-0.882000px;}
.ls43{letter-spacing:-0.786000px;}
.ls79{letter-spacing:-0.732000px;}
.ls87{letter-spacing:-0.708000px;}
.ls4f{letter-spacing:-0.654000px;}
.ls78{letter-spacing:-0.538800px;}
.ls34{letter-spacing:-0.516000px;}
.ls5b{letter-spacing:-0.485400px;}
.ls29{letter-spacing:-0.453000px;}
.ls67{letter-spacing:-0.444600px;}
.ls1f{letter-spacing:-0.427200px;}
.ls41{letter-spacing:-0.426000px;}
.lsb{letter-spacing:-0.420600px;}
.ls20{letter-spacing:-0.409800px;}
.ls3e{letter-spacing:-0.339600px;}
.ls1c{letter-spacing:-0.306600px;}
.ls8e{letter-spacing:-0.299400px;}
.ls2c{letter-spacing:-0.291600px;}
.ls54{letter-spacing:-0.246600px;}
.ls39{letter-spacing:-0.244200px;}
.ls1e{letter-spacing:-0.243600px;}
.ls56{letter-spacing:-0.232800px;}
.ls52{letter-spacing:-0.216600px;}
.lsf{letter-spacing:-0.186600px;}
.ls65{letter-spacing:-0.183000px;}
.ls42{letter-spacing:-0.179400px;}
.ls77{letter-spacing:-0.178800px;}
.ls5f{letter-spacing:-0.160800px;}
.ls23{letter-spacing:-0.153600px;}
.ls64{letter-spacing:-0.141600px;}
.ls7{letter-spacing:-0.135000px;}
.ls2a{letter-spacing:-0.125400px;}
.ls3f{letter-spacing:-0.124200px;}
.lsa{letter-spacing:-0.121200px;}
.ls33{letter-spacing:-0.117600px;}
.ls58{letter-spacing:-0.112200px;}
.ls3c{letter-spacing:-0.092400px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls25{letter-spacing:-0.067200px;}
.ls27{letter-spacing:-0.066000px;}
.ls19{letter-spacing:-0.063600px;}
.ls24{letter-spacing:-0.060600px;}
.ls22{letter-spacing:-0.049680px;}
.ls3b{letter-spacing:-0.038880px;}
.ls91{letter-spacing:-0.031680px;}
.ls69{letter-spacing:-0.018360px;}
.ls37{letter-spacing:-0.011160px;}
.ls5c{letter-spacing:-0.009000px;}
.ls5e{letter-spacing:-0.007560px;}
.ls4{letter-spacing:0.000000px;}
.ls83{letter-spacing:0.005400px;}
.ls55{letter-spacing:0.020160px;}
.lsd{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls7d{letter-spacing:0.051840px;}
.ls66{letter-spacing:0.053280px;}
.ls7a{letter-spacing:0.056880px;}
.ls3d{letter-spacing:0.060600px;}
.ls7e{letter-spacing:0.061200px;}
.ls6c{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.ls26{letter-spacing:0.068400px;}
.lsc{letter-spacing:0.074160px;}
.ls2f{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls84{letter-spacing:0.105600px;}
.ls28{letter-spacing:0.113400px;}
.ls73{letter-spacing:0.116280px;}
.ls1a{letter-spacing:0.116400px;}
.ls31{letter-spacing:0.119400px;}
.ls3a{letter-spacing:0.121800px;}
.ls6a{letter-spacing:0.127080px;}
.ls35{letter-spacing:0.127200px;}
.ls30{letter-spacing:0.138600px;}
.ls53{letter-spacing:0.143400px;}
.ls16{letter-spacing:0.143640px;}
.ls5{letter-spacing:0.144000px;}
.ls32{letter-spacing:0.148200px;}
.lse{letter-spacing:0.173400px;}
.ls8{letter-spacing:0.174600px;}
.ls7b{letter-spacing:0.176400px;}
.ls2b{letter-spacing:0.177000px;}
.ls40{letter-spacing:0.180600px;}
.ls12{letter-spacing:0.181200px;}
.ls15{letter-spacing:0.181440px;}
.ls1b{letter-spacing:0.199200px;}
.ls71{letter-spacing:0.199440px;}
.ls2d{letter-spacing:0.201600px;}
.ls51{letter-spacing:0.206400px;}
.ls17{letter-spacing:0.206640px;}
.ls5d{letter-spacing:0.267600px;}
.ls57{letter-spacing:0.275400px;}
.ls6e{letter-spacing:0.289440px;}
.ls90{letter-spacing:0.299400px;}
.ls6f{letter-spacing:0.301440px;}
.ls4d{letter-spacing:0.341640px;}
.ls4e{letter-spacing:0.348600px;}
.ls62{letter-spacing:0.348840px;}
.ls49{letter-spacing:0.351000px;}
.ls0{letter-spacing:0.360000px;}
.ls85{letter-spacing:0.365400px;}
.ls50{letter-spacing:0.380400px;}
.ls7c{letter-spacing:0.411600px;}
.ls88{letter-spacing:0.424800px;}
.ls18{letter-spacing:0.434160px;}
.ls8f{letter-spacing:0.445200px;}
.ls38{letter-spacing:0.463200px;}
.ls86{letter-spacing:0.465600px;}
.ls76{letter-spacing:0.471000px;}
.ls63{letter-spacing:0.487080px;}
.ls36{letter-spacing:0.487200px;}
.ls2e{letter-spacing:0.498600px;}
.ls1d{letter-spacing:0.541200px;}
.ls46{letter-spacing:0.541440px;}
.ls21{letter-spacing:0.559200px;}
.ls14{letter-spacing:0.559440px;}
.ls4c{letter-spacing:0.794160px;}
.ls81{letter-spacing:0.813600px;}
.ls61{letter-spacing:1.173600px;}
.ls60{letter-spacing:1.293600px;}
.ls44{letter-spacing:1.533600px;}
.ls4a{letter-spacing:1.716120px;}
.ls59{letter-spacing:1.866000px;}
.ls80{letter-spacing:1.893600px;}
.ls8a{letter-spacing:2.253600px;}
.ls6b{letter-spacing:2.613600px;}
.ls11{letter-spacing:2.973600px;}
.ls48{letter-spacing:3.333600px;}
.ls47{letter-spacing:4.413600px;}
.ls13{letter-spacing:4.773600px;}
.ls72{letter-spacing:5.133600px;}
.ls45{letter-spacing:6.573600px;}
.ls4b{letter-spacing:9.093600px;}
.ls8b{letter-spacing:9.453600px;}
.ls74{letter-spacing:10.893600px;}
.ls7f{letter-spacing:11.253600px;}
.ls70{letter-spacing:13.773600px;}
.ls8d{letter-spacing:47.726640px;}
.ls75{letter-spacing:55.286640px;}
.ls6d{letter-spacing:63.566640px;}
.ls8c{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3c{word-spacing:-15.092400px;}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws13{word-spacing:-13.785600px;}
.ws54{word-spacing:-13.767840px;}
.wsf{word-spacing:-13.767600px;}
.ws1d{word-spacing:-13.725000px;}
.ws26{word-spacing:-13.713600px;}
.ws28{word-spacing:-13.689600px;}
.ws59{word-spacing:-13.671600px;}
.ws56{word-spacing:-13.651200px;}
.ws4d{word-spacing:-13.638000px;}
.ws35{word-spacing:-13.606800px;}
.ws53{word-spacing:-13.591800px;}
.ws46{word-spacing:-13.577400px;}
.ws33{word-spacing:-13.575000px;}
.ws5a{word-spacing:-13.525800px;}
.ws41{word-spacing:-13.494000px;}
.ws36{word-spacing:-13.432800px;}
.ws1c{word-spacing:-13.428000px;}
.wsd{word-spacing:-13.425600px;}
.wsc{word-spacing:-13.407600px;}
.ws2f{word-spacing:-13.407000px;}
.ws1a{word-spacing:-13.403400px;}
.ws4c{word-spacing:-13.402800px;}
.ws6{word-spacing:-13.399800px;}
.ws21{word-spacing:-13.374600px;}
.ws39{word-spacing:-13.369800px;}
.ws1f{word-spacing:-13.365000px;}
.ws25{word-spacing:-13.353600px;}
.ws52{word-spacing:-13.348200px;}
.ws20{word-spacing:-13.345800px;}
.wsb{word-spacing:-13.342800px;}
.ws47{word-spacing:-13.339800px;}
.ws1e{word-spacing:-13.300800px;}
.ws17{word-spacing:-13.294800px;}
.ws4f{word-spacing:-13.287600px;}
.ws2c{word-spacing:-13.287000px;}
.ws4b{word-spacing:-13.283280px;}
.ws45{word-spacing:-13.279680px;}
.ws9{word-spacing:-13.275360px;}
.ws3a{word-spacing:-13.246560px;}
.ws51{word-spacing:-13.231800px;}
.ws2{word-spacing:-13.226400px;}
.ws42{word-spacing:-13.218840px;}
.ws40{word-spacing:-13.217400px;}
.ws27{word-spacing:-13.215240px;}
.ws49{word-spacing:-13.208040px;}
.ws2a{word-spacing:-13.187520px;}
.ws14{word-spacing:-13.176720px;}
.ws24{word-spacing:-13.165800px;}
.wsa{word-spacing:-13.162800px;}
.ws37{word-spacing:-13.160400px;}
.ws16{word-spacing:-13.159200px;}
.ws2b{word-spacing:-13.134000px;}
.ws3b{word-spacing:-13.114200px;}
.ws22{word-spacing:-13.108800px;}
.ws2e{word-spacing:-13.102200px;}
.ws19{word-spacing:-13.101000px;}
.ws43{word-spacing:-13.084800px;}
.ws15{word-spacing:-13.072800px;}
.ws31{word-spacing:-13.047000px;}
.ws44{word-spacing:-13.043400px;}
.ws7{word-spacing:-13.039800px;}
.ws38{word-spacing:-13.009800px;}
.ws10{word-spacing:-12.982800px;}
.ws29{word-spacing:-12.982200px;}
.ws1b{word-spacing:-12.934800px;}
.ws58{word-spacing:-12.927000px;}
.wse{word-spacing:-12.919800px;}
.ws2d{word-spacing:-12.886800px;}
.ws12{word-spacing:-12.816600px;}
.ws3d{word-spacing:-12.805800px;}
.ws30{word-spacing:-12.800400px;}
.ws11{word-spacing:-12.799200px;}
.ws18{word-spacing:-12.773400px;}
.ws3f{word-spacing:-12.741000px;}
.ws23{word-spacing:-12.710400px;}
.ws34{word-spacing:-12.572400px;}
.ws55{word-spacing:-12.518400px;}
.ws4a{word-spacing:-12.494400px;}
.ws32{word-spacing:-12.440400px;}
.ws50{word-spacing:-12.344400px;}
.ws57{word-spacing:-12.164400px;}
.ws48{word-spacing:-12.056400px;}
.ws3e{word-spacing:-11.990400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws4e{word-spacing:-0.060120px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._12{margin-left:-5.050080px;}
._9{margin-left:-3.875399px;}
._4{margin-left:-2.748840px;}
._0{margin-left:-1.110000px;}
._2{width:1.174656px;}
._c{width:3.066000px;}
._d{width:4.148400px;}
._8{width:5.952000px;}
._5{width:7.334400px;}
._a{width:8.958000px;}
._b{width:10.220400px;}
._13{width:11.426004px;}
._1{width:12.498036px;}
._3{width:13.770144px;}
._11{width:15.691320px;}
._14{width:17.059476px;}
._f{width:18.336600px;}
._10{width:19.478880px;}
._6{width:21.763200px;}
._7{width:22.981562px;}
._e{width:24.633718px;}
.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;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y79{bottom:7.740000px;}
.y77{bottom:7.830000px;}
.yb4{bottom:7.860000px;}
.y7d{bottom:7.920000px;}
.y7a{bottom:8.550000px;}
.y83{bottom:8.640000px;}
.yd0{bottom:12.420000px;}
.ycf{bottom:16.920000px;}
.yd4{bottom:20.970000px;}
.yd6{bottom:25.470000px;}
.yc8{bottom:29.880000px;}
.ycc{bottom:29.970000px;}
.yce{bottom:34.470000px;}
.yd3{bottom:43.020000px;}
.yd5{bottom:47.520000px;}
.yc7{bottom:52.020000px;}
.ycb{bottom:52.110000px;}
.ycd{bottom:56.610000px;}
.yd2{bottom:65.160000px;}
.y2{bottom:73.380000px;}
.yc6{bottom:74.070000px;}
.yca{bottom:74.160000px;}
.y28{bottom:74.190000px;}
.yc5{bottom:96.210000px;}
.yd9{bottom:96.240000px;}
.y1{bottom:101.640000px;}
.y5b{bottom:112.980000px;}
.yc4{bottom:118.260000px;}
.yd8{bottom:118.380000px;}
.y87{bottom:130.170000px;}
.yc9{bottom:130.260000px;}
.y5a{bottom:130.530000px;}
.yaf{bottom:131.790000px;}
.yff{bottom:132.330000px;}
.yc3{bottom:140.310000px;}
.y59{bottom:148.170000px;}
.yae{bottom:149.340000px;}
.yfe{bottom:149.970000px;}
.y86{bottom:157.530000px;}
.yad{bottom:166.890000px;}
.yfd{bottom:167.520000px;}
.y26{bottom:177.240000px;}
.y58{bottom:183.720000px;}
.y85{bottom:184.890000px;}
.yfc{bottom:185.070000px;}
.y11b{bottom:188.040000px;}
.yac{bottom:193.530000px;}
.y25{bottom:194.790000px;}
.y57{bottom:201.270000px;}
.yfb{bottom:202.710000px;}
.y11a{bottom:205.590000px;}
.y84{bottom:212.160000px;}
.y24{bottom:212.340000px;}
.y56{bottom:218.910000px;}
.y119{bottom:223.230000px;}
.yab{bottom:229.080000px;}
.yfa{bottom:229.260000px;}
.y23{bottom:229.980000px;}
.y55{bottom:236.460000px;}
.y82{bottom:239.520000px;}
.yc2{bottom:246.000000px;}
.yaa{bottom:246.720000px;}
.y22{bottom:247.530000px;}
.y54{bottom:254.100000px;}
.y118{bottom:258.780000px;}
.yf9{bottom:261.840000px;}
.ya9{bottom:264.270000px;}
.y21{bottom:265.170000px;}
.y81{bottom:267.600000px;}
.y53{bottom:271.650000px;}
.y117{bottom:276.330000px;}
.yf8{bottom:279.480000px;}
.ya8{bottom:281.370000px;}
.y20{bottom:282.720000px;}
.y52{bottom:289.200000px;}
.y116{bottom:293.970000px;}
.y80{bottom:294.960000px;}
.yf7{bottom:297.030000px;}
.y1f{bottom:300.270000px;}
.y51{bottom:306.840000px;}
.ya7{bottom:308.730000px;}
.y115{bottom:311.520000px;}
.yf6{bottom:314.580000px;}
.y7f{bottom:322.320000px;}
.y114{bottom:329.160000px;}
.yf5{bottom:333.030000px;}
.y1e{bottom:335.910000px;}
.ya6{bottom:336.090000px;}
.y50{bottom:342.390000px;}
.y7e{bottom:349.590000px;}
.yf4{bottom:350.580000px;}
.y1d{bottom:353.460000px;}
.y4f{bottom:359.940000px;}
.ya5{bottom:363.450000px;}
.y113{bottom:364.710000px;}
.yf3{bottom:368.220000px;}
.y1c{bottom:371.100000px;}
.y7c{bottom:376.950000px;}
.y4e{bottom:377.580000px;}
.y112{bottom:382.260000px;}
.yf2{bottom:385.770000px;}
.y1b{bottom:388.650000px;}
.ya4{bottom:390.720000px;}
.y4d{bottom:395.130000px;}
.y111{bottom:399.900000px;}
.y13a{bottom:400.890000px;}
.yf1{bottom:404.220000px;}
.y7b{bottom:404.310000px;}
.y1a{bottom:406.200000px;}
.y110{bottom:417.450000px;}
.ya3{bottom:418.080000px;}
.yf0{bottom:421.770000px;}
.yc1{bottom:427.170000px;}
.y139{bottom:427.440000px;}
.y4c{bottom:430.770000px;}
.y78{bottom:431.670000px;}
.y19{bottom:433.110000px;}
.y10f{bottom:435.000000px;}
.yef{bottom:439.410000px;}
.ya2{bottom:445.440000px;}
.y4b{bottom:448.320000px;}
.y138{bottom:454.080000px;}
.yee{bottom:456.960000px;}
.y76{bottom:459.750000px;}
.yc0{bottom:462.810000px;}
.y4a{bottom:465.870000px;}
.y10e{bottom:470.670000px;}
.ya1{bottom:472.830000px;}
.yed{bottom:475.440000px;}
.ybf{bottom:480.390000px;}
.y137{bottom:480.660000px;}
.y18{bottom:481.740000px;}
.y49{bottom:483.540000px;}
.y10d{bottom:488.220000px;}
.yec{bottom:492.990000px;}
.ybe{bottom:497.940000px;}
.ya0{bottom:500.100000px;}
.y48{bottom:501.090000px;}
.y10c{bottom:505.860000px;}
.y136{bottom:507.300000px;}
.y75{bottom:508.470000px;}
.yeb{bottom:510.540000px;}
.ybd{bottom:515.580000px;}
.y47{bottom:518.730000px;}
.y17{bottom:518.820000px;}
.y10b{bottom:523.410000px;}
.y9f{bottom:527.460000px;}
.yea{bottom:528.090000px;}
.y135{bottom:533.850000px;}
.y46{bottom:536.280000px;}
.y16{bottom:536.370000px;}
.y10a{bottom:540.960000px;}
.y74{bottom:544.020000px;}
.ybc{bottom:551.130000px;}
.y134{bottom:551.400000px;}
.y15{bottom:553.920000px;}
.y9e{bottom:554.820000px;}
.y73{bottom:561.660000px;}
.ye9{bottom:564.540000px;}
.y14{bottom:571.560000px;}
.y45{bottom:571.830000px;}
.y109{bottom:576.600000px;}
.y133{bottom:578.040000px;}
.y72{bottom:579.210000px;}
.y9d{bottom:582.090000px;}
.ye8{bottom:582.180000px;}
.ybb{bottom:583.350000px;}
.y13{bottom:589.110000px;}
.y44{bottom:589.470000px;}
.y108{bottom:594.150000px;}
.y71{bottom:596.760000px;}
.ye7{bottom:599.730000px;}
.y132{bottom:604.590000px;}
.y12{bottom:606.750000px;}
.y43{bottom:607.020000px;}
.y9c{bottom:609.450000px;}
.y107{bottom:611.790000px;}
.y70{bottom:614.400000px;}
.ye6{bottom:617.370000px;}
.y131{bottom:622.230000px;}
.y11{bottom:624.300000px;}
.y42{bottom:624.660000px;}
.y106{bottom:629.340000px;}
.y9b{bottom:636.810000px;}
.y6f{bottom:640.950000px;}
.y10{bottom:641.850000px;}
.ye5{bottom:643.920000px;}
.y105{bottom:646.890000px;}
.y130{bottom:648.780000px;}
.y41{bottom:651.570000px;}
.yf{bottom:659.490000px;}
.y9a{bottom:664.170000px;}
.y104{bottom:664.530000px;}
.y12f{bottom:666.330000px;}
.y6e{bottom:676.590000px;}
.ye{bottom:677.040000px;}
.ye4{bottom:679.470000px;}
.y103{bottom:682.080000px;}
.y99{bottom:691.440000px;}
.y12e{bottom:692.970000px;}
.y6d{bottom:694.140000px;}
.yd{bottom:694.680000px;}
.ye3{bottom:697.110000px;}
.y102{bottom:699.720000px;}
.y40{bottom:699.810000px;}
.y12d{bottom:710.520000px;}
.y6c{bottom:711.690000px;}
.yc{bottom:712.230000px;}
.ye2{bottom:714.660000px;}
.y3f{bottom:717.360000px;}
.y98{bottom:718.800000px;}
.y12c{bottom:728.160000px;}
.y6b{bottom:729.330000px;}
.y3e{bottom:735.000000px;}
.y101{bottom:735.270000px;}
.yb{bottom:739.140000px;}
.ye1{bottom:741.300000px;}
.y97{bottom:746.160000px;}
.y3d{bottom:752.550000px;}
.y12b{bottom:754.710000px;}
.y6a{bottom:755.880000px;}
.y100{bottom:758.490000px;}
.y3c{bottom:770.190000px;}
.y12a{bottom:772.260000px;}
.ye0{bottom:776.850000px;}
.ya{bottom:787.380000px;}
.y3b{bottom:787.740000px;}
.y69{bottom:791.790000px;}
.y96{bottom:794.850000px;}
.ydf{bottom:795.210000px;}
.y129{bottom:799.170000px;}
.yba{bottom:802.680000px;}
.y3a{bottom:805.290000px;}
.yde{bottom:813.660000px;}
.yb9{bottom:822.480000px;}
.y39{bottom:822.930000px;}
.y9{bottom:823.200000px;}
.y95{bottom:830.400000px;}
.ydd{bottom:832.020000px;}
.y68{bottom:840.030000px;}
.y38{bottom:840.480000px;}
.y128{bottom:847.500000px;}
.y94{bottom:848.040000px;}
.y67{bottom:857.670000px;}
.y37{bottom:858.030000px;}
.y8{bottom:859.200000px;}
.y93{bottom:865.590000px;}
.ydc{bottom:868.470000px;}
.y127{bottom:874.410000px;}
.y66{bottom:875.220000px;}
.y92{bottom:883.140000px;}
.ydb{bottom:886.110000px;}
.y65{bottom:892.860000px;}
.y36{bottom:893.670000px;}
.y7{bottom:898.980000px;}
.y91{bottom:900.780000px;}
.yda{bottom:903.660000px;}
.yb8{bottom:910.410000px;}
.y35{bottom:911.220000px;}
.y126{bottom:911.760000px;}
.y6{bottom:916.980000px;}
.y90{bottom:927.330000px;}
.yb7{bottom:927.600000px;}
.y64{bottom:928.410000px;}
.y34{bottom:928.860000px;}
.yd7{bottom:936.600000px;}
.y63{bottom:945.960000px;}
.y33{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.yb6{bottom:954.870000px;}
.y125{bottom:960.000000px;}
.y8f{bottom:962.970000px;}
.y62{bottom:963.600000px;}
.y32{bottom:963.960000px;}
.y124{bottom:977.550000px;}
.y8e{bottom:980.520000px;}
.y61{bottom:981.150000px;}
.y31{bottom:981.600000px;}
.yb5{bottom:982.230000px;}
.y4{bottom:987.630000px;}
.y123{bottom:995.190000px;}
.y8d{bottom:998.070000px;}
.y60{bottom:998.790000px;}
.y30{bottom:999.150000px;}
.yb3{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y122{bottom:1012.770000px;}
.y5f{bottom:1016.370000px;}
.y2f{bottom:1016.820000px;}
.y121{bottom:1030.320000px;}
.y8c{bottom:1033.020000px;}
.yb2{bottom:1036.890000px;}
.y8b{bottom:1045.170000px;}
.y120{bottom:1047.960000px;}
.y5e{bottom:1051.920000px;}
.y2e{bottom:1052.370000px;}
.yb1{bottom:1064.250000px;}
.y11f{bottom:1065.510000px;}
.y5d{bottom:1069.560000px;}
.y2d{bottom:1069.920000px;}
.y8a{bottom:1072.530000px;}
.yd1{bottom:1074.420000px;}
.y11e{bottom:1083.150000px;}
.y5c{bottom:1087.110000px;}
.y2c{bottom:1087.560000px;}
.yb0{bottom:1091.610000px;}
.y89{bottom:1099.890000px;}
.y11d{bottom:1100.700000px;}
.y2b{bottom:1105.110000px;}
.y2a{bottom:1122.750000px;}
.y88{bottom:1127.160000px;}
.y11c{bottom:1127.610000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.he{height:26.550000px;}
.hb{height:26.580000px;}
.hf{height:26.640000px;}
.hc{height:27.270000px;}
.h10{height:27.360000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h11{height:40.539023px;}
.h7{height:50.902383px;}
.hd{height:53.782383px;}
.h5{height:55.779258px;}
.ha{height:59.973223px;}
.h16{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h14{height:79.380000px;}
.h13{height:114.930000px;}
.h15{height:137.100000px;}
.h12{height:159.030000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wb{width:34.200000px;}
.wd{width:53.640000px;}
.wa{width:54.540000px;}
.w9{width:60.390000px;}
.w8{width:64.830000px;}
.w5{width:76.500000px;}
.w4{width:79.770000px;}
.w6{width:79.830000px;}
.we{width:99.210000px;}
.wc{width:120.690000px;}
.wf{width:211.530000px;}
.w7{width:221.850000px;}
.w3{width:239.490000px;}
.w11{width:256.230000px;}
.w10{width:286.320000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.xb{left:40.680000px;}
.x9{left:44.010000px;}
.xa{left:65.340000px;}
.x1{left:68.040000px;}
.x1a{left:95.039987px;}
.x19{left:112.139987px;}
.x1b{left:128.789987px;}
.x16{left:170.310000px;}
.x2{left:202.799987px;}
.x4{left:207.660000px;}
.xd{left:244.650000px;}
.x17{left:281.100000px;}
.x11{left:291.630000px;}
.x15{left:299.999987px;}
.x12{left:326.640000px;}
.xc{left:348.959987px;}
.x6{left:447.960000px;}
.xe{left:467.220000px;}
.x13{left:502.410000px;}
.x7{left:528.540000px;}
.xf{left:532.860000px;}
.x18{left:568.230000px;}
.x10{left:594.060000px;}
.x8{left:605.760000px;}
.x14{left:633.389987px;}
.x3{left:792.059987px;}
.x1c{left:793.139987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v2{vertical-align:13.440000pt;}
.ls5a{letter-spacing:-1.098667pt;}
.ls68{letter-spacing:-1.040000pt;}
.ls89{letter-spacing:-0.944000pt;}
.ls82{letter-spacing:-0.784000pt;}
.ls43{letter-spacing:-0.698667pt;}
.ls79{letter-spacing:-0.650667pt;}
.ls87{letter-spacing:-0.629333pt;}
.ls4f{letter-spacing:-0.581333pt;}
.ls78{letter-spacing:-0.478933pt;}
.ls34{letter-spacing:-0.458667pt;}
.ls5b{letter-spacing:-0.431467pt;}
.ls29{letter-spacing:-0.402667pt;}
.ls67{letter-spacing:-0.395200pt;}
.ls1f{letter-spacing:-0.379733pt;}
.ls41{letter-spacing:-0.378667pt;}
.lsb{letter-spacing:-0.373867pt;}
.ls20{letter-spacing:-0.364267pt;}
.ls3e{letter-spacing:-0.301867pt;}
.ls1c{letter-spacing:-0.272533pt;}
.ls8e{letter-spacing:-0.266133pt;}
.ls2c{letter-spacing:-0.259200pt;}
.ls54{letter-spacing:-0.219200pt;}
.ls39{letter-spacing:-0.217067pt;}
.ls1e{letter-spacing:-0.216533pt;}
.ls56{letter-spacing:-0.206933pt;}
.ls52{letter-spacing:-0.192533pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls65{letter-spacing:-0.162667pt;}
.ls42{letter-spacing:-0.159467pt;}
.ls77{letter-spacing:-0.158933pt;}
.ls5f{letter-spacing:-0.142933pt;}
.ls23{letter-spacing:-0.136533pt;}
.ls64{letter-spacing:-0.125867pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls2a{letter-spacing:-0.111467pt;}
.ls3f{letter-spacing:-0.110400pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls33{letter-spacing:-0.104533pt;}
.ls58{letter-spacing:-0.099733pt;}
.ls3c{letter-spacing:-0.082133pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls25{letter-spacing:-0.059733pt;}
.ls27{letter-spacing:-0.058667pt;}
.ls19{letter-spacing:-0.056533pt;}
.ls24{letter-spacing:-0.053867pt;}
.ls22{letter-spacing:-0.044160pt;}
.ls3b{letter-spacing:-0.034560pt;}
.ls91{letter-spacing:-0.028160pt;}
.ls69{letter-spacing:-0.016320pt;}
.ls37{letter-spacing:-0.009920pt;}
.ls5c{letter-spacing:-0.008000pt;}
.ls5e{letter-spacing:-0.006720pt;}
.ls4{letter-spacing:0.000000pt;}
.ls83{letter-spacing:0.004800pt;}
.ls55{letter-spacing:0.017920pt;}
.lsd{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls7d{letter-spacing:0.046080pt;}
.ls66{letter-spacing:0.047360pt;}
.ls7a{letter-spacing:0.050560pt;}
.ls3d{letter-spacing:0.053867pt;}
.ls7e{letter-spacing:0.054400pt;}
.ls6c{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.ls26{letter-spacing:0.060800pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2f{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls84{letter-spacing:0.093867pt;}
.ls28{letter-spacing:0.100800pt;}
.ls73{letter-spacing:0.103360pt;}
.ls1a{letter-spacing:0.103467pt;}
.ls31{letter-spacing:0.106133pt;}
.ls3a{letter-spacing:0.108267pt;}
.ls6a{letter-spacing:0.112960pt;}
.ls35{letter-spacing:0.113067pt;}
.ls30{letter-spacing:0.123200pt;}
.ls53{letter-spacing:0.127467pt;}
.ls16{letter-spacing:0.127680pt;}
.ls5{letter-spacing:0.128000pt;}
.ls32{letter-spacing:0.131733pt;}
.lse{letter-spacing:0.154133pt;}
.ls8{letter-spacing:0.155200pt;}
.ls7b{letter-spacing:0.156800pt;}
.ls2b{letter-spacing:0.157333pt;}
.ls40{letter-spacing:0.160533pt;}
.ls12{letter-spacing:0.161067pt;}
.ls15{letter-spacing:0.161280pt;}
.ls1b{letter-spacing:0.177067pt;}
.ls71{letter-spacing:0.177280pt;}
.ls2d{letter-spacing:0.179200pt;}
.ls51{letter-spacing:0.183467pt;}
.ls17{letter-spacing:0.183680pt;}
.ls5d{letter-spacing:0.237867pt;}
.ls57{letter-spacing:0.244800pt;}
.ls6e{letter-spacing:0.257280pt;}
.ls90{letter-spacing:0.266133pt;}
.ls6f{letter-spacing:0.267947pt;}
.ls4d{letter-spacing:0.303680pt;}
.ls4e{letter-spacing:0.309867pt;}
.ls62{letter-spacing:0.310080pt;}
.ls49{letter-spacing:0.312000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls85{letter-spacing:0.324800pt;}
.ls50{letter-spacing:0.338133pt;}
.ls7c{letter-spacing:0.365867pt;}
.ls88{letter-spacing:0.377600pt;}
.ls18{letter-spacing:0.385920pt;}
.ls8f{letter-spacing:0.395733pt;}
.ls38{letter-spacing:0.411733pt;}
.ls86{letter-spacing:0.413867pt;}
.ls76{letter-spacing:0.418667pt;}
.ls63{letter-spacing:0.432960pt;}
.ls36{letter-spacing:0.433067pt;}
.ls2e{letter-spacing:0.443200pt;}
.ls1d{letter-spacing:0.481067pt;}
.ls46{letter-spacing:0.481280pt;}
.ls21{letter-spacing:0.497067pt;}
.ls14{letter-spacing:0.497280pt;}
.ls4c{letter-spacing:0.705920pt;}
.ls81{letter-spacing:0.723200pt;}
.ls61{letter-spacing:1.043200pt;}
.ls60{letter-spacing:1.149867pt;}
.ls44{letter-spacing:1.363200pt;}
.ls4a{letter-spacing:1.525440pt;}
.ls59{letter-spacing:1.658667pt;}
.ls80{letter-spacing:1.683200pt;}
.ls8a{letter-spacing:2.003200pt;}
.ls6b{letter-spacing:2.323200pt;}
.ls11{letter-spacing:2.643200pt;}
.ls48{letter-spacing:2.963200pt;}
.ls47{letter-spacing:3.923200pt;}
.ls13{letter-spacing:4.243200pt;}
.ls72{letter-spacing:4.563200pt;}
.ls45{letter-spacing:5.843200pt;}
.ls4b{letter-spacing:8.083200pt;}
.ls8b{letter-spacing:8.403200pt;}
.ls74{letter-spacing:9.683200pt;}
.ls7f{letter-spacing:10.003200pt;}
.ls70{letter-spacing:12.243200pt;}
.ls8d{letter-spacing:42.423680pt;}
.ls75{letter-spacing:49.143680pt;}
.ls6d{letter-spacing:56.503680pt;}
.ls8c{letter-spacing:71.863680pt;}
.ws3c{word-spacing:-13.415467pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws13{word-spacing:-12.253867pt;}
.ws54{word-spacing:-12.238080pt;}
.wsf{word-spacing:-12.237867pt;}
.ws1d{word-spacing:-12.200000pt;}
.ws26{word-spacing:-12.189867pt;}
.ws28{word-spacing:-12.168533pt;}
.ws59{word-spacing:-12.152533pt;}
.ws56{word-spacing:-12.134400pt;}
.ws4d{word-spacing:-12.122667pt;}
.ws35{word-spacing:-12.094933pt;}
.ws53{word-spacing:-12.081600pt;}
.ws46{word-spacing:-12.068800pt;}
.ws33{word-spacing:-12.066667pt;}
.ws5a{word-spacing:-12.022933pt;}
.ws41{word-spacing:-11.994667pt;}
.ws36{word-spacing:-11.940267pt;}
.ws1c{word-spacing:-11.936000pt;}
.wsd{word-spacing:-11.933867pt;}
.wsc{word-spacing:-11.917867pt;}
.ws2f{word-spacing:-11.917333pt;}
.ws1a{word-spacing:-11.914133pt;}
.ws4c{word-spacing:-11.913600pt;}
.ws6{word-spacing:-11.910933pt;}
.ws21{word-spacing:-11.888533pt;}
.ws39{word-spacing:-11.884267pt;}
.ws1f{word-spacing:-11.880000pt;}
.ws25{word-spacing:-11.869867pt;}
.ws52{word-spacing:-11.865067pt;}
.ws20{word-spacing:-11.862933pt;}
.wsb{word-spacing:-11.860267pt;}
.ws47{word-spacing:-11.857600pt;}
.ws1e{word-spacing:-11.822933pt;}
.ws17{word-spacing:-11.817600pt;}
.ws4f{word-spacing:-11.811200pt;}
.ws2c{word-spacing:-11.810667pt;}
.ws4b{word-spacing:-11.807360pt;}
.ws45{word-spacing:-11.804160pt;}
.ws9{word-spacing:-11.800320pt;}
.ws3a{word-spacing:-11.774720pt;}
.ws51{word-spacing:-11.761600pt;}
.ws2{word-spacing:-11.756800pt;}
.ws42{word-spacing:-11.750080pt;}
.ws40{word-spacing:-11.748800pt;}
.ws27{word-spacing:-11.746880pt;}
.ws49{word-spacing:-11.740480pt;}
.ws2a{word-spacing:-11.722240pt;}
.ws14{word-spacing:-11.712640pt;}
.ws24{word-spacing:-11.702933pt;}
.wsa{word-spacing:-11.700267pt;}
.ws37{word-spacing:-11.698133pt;}
.ws16{word-spacing:-11.697067pt;}
.ws2b{word-spacing:-11.674667pt;}
.ws3b{word-spacing:-11.657067pt;}
.ws22{word-spacing:-11.652267pt;}
.ws2e{word-spacing:-11.646400pt;}
.ws19{word-spacing:-11.645333pt;}
.ws43{word-spacing:-11.630933pt;}
.ws15{word-spacing:-11.620267pt;}
.ws31{word-spacing:-11.597333pt;}
.ws44{word-spacing:-11.594133pt;}
.ws7{word-spacing:-11.590933pt;}
.ws38{word-spacing:-11.564267pt;}
.ws10{word-spacing:-11.540267pt;}
.ws29{word-spacing:-11.539733pt;}
.ws1b{word-spacing:-11.497600pt;}
.ws58{word-spacing:-11.490667pt;}
.wse{word-spacing:-11.484267pt;}
.ws2d{word-spacing:-11.454933pt;}
.ws12{word-spacing:-11.392533pt;}
.ws3d{word-spacing:-11.382933pt;}
.ws30{word-spacing:-11.378133pt;}
.ws11{word-spacing:-11.377067pt;}
.ws18{word-spacing:-11.354133pt;}
.ws3f{word-spacing:-11.325333pt;}
.ws23{word-spacing:-11.298133pt;}
.ws34{word-spacing:-11.175467pt;}
.ws55{word-spacing:-11.127467pt;}
.ws4a{word-spacing:-11.106133pt;}
.ws32{word-spacing:-11.058133pt;}
.ws50{word-spacing:-10.972800pt;}
.ws57{word-spacing:-10.812800pt;}
.ws48{word-spacing:-10.716800pt;}
.ws3e{word-spacing:-10.658133pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws4e{word-spacing:-0.053440pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._12{margin-left:-4.488960pt;}
._9{margin-left:-3.444799pt;}
._4{margin-left:-2.443414pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.044138pt;}
._c{width:2.725333pt;}
._d{width:3.687467pt;}
._8{width:5.290667pt;}
._5{width:6.519466pt;}
._a{width:7.962667pt;}
._b{width:9.084800pt;}
._13{width:10.156448pt;}
._1{width:11.109365pt;}
._3{width:12.240128pt;}
._11{width:13.947840pt;}
._14{width:15.163979pt;}
._f{width:16.299200pt;}
._10{width:17.314560pt;}
._6{width:19.345066pt;}
._7{width:20.428055pt;}
._e{width:21.896638pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:6.880000pt;}
.y77{bottom:6.960000pt;}
.yb4{bottom:6.986667pt;}
.y7d{bottom:7.040000pt;}
.y7a{bottom:7.600000pt;}
.y83{bottom:7.680000pt;}
.yd0{bottom:11.040000pt;}
.ycf{bottom:15.040000pt;}
.yd4{bottom:18.640000pt;}
.yd6{bottom:22.640000pt;}
.yc8{bottom:26.560000pt;}
.ycc{bottom:26.640000pt;}
.yce{bottom:30.640000pt;}
.yd3{bottom:38.240000pt;}
.yd5{bottom:42.240000pt;}
.yc7{bottom:46.240000pt;}
.ycb{bottom:46.320000pt;}
.ycd{bottom:50.320000pt;}
.yd2{bottom:57.920000pt;}
.y2{bottom:65.226667pt;}
.yc6{bottom:65.840000pt;}
.yca{bottom:65.920000pt;}
.y28{bottom:65.946667pt;}
.yc5{bottom:85.520000pt;}
.yd9{bottom:85.546667pt;}
.y1{bottom:90.346667pt;}
.y5b{bottom:100.426667pt;}
.yc4{bottom:105.120000pt;}
.yd8{bottom:105.226667pt;}
.y87{bottom:115.706667pt;}
.yc9{bottom:115.786667pt;}
.y5a{bottom:116.026667pt;}
.yaf{bottom:117.146667pt;}
.yff{bottom:117.626667pt;}
.yc3{bottom:124.720000pt;}
.y59{bottom:131.706667pt;}
.yae{bottom:132.746667pt;}
.yfe{bottom:133.306667pt;}
.y86{bottom:140.026667pt;}
.yad{bottom:148.346667pt;}
.yfd{bottom:148.906667pt;}
.y26{bottom:157.546667pt;}
.y58{bottom:163.306667pt;}
.y85{bottom:164.346667pt;}
.yfc{bottom:164.506667pt;}
.y11b{bottom:167.146667pt;}
.yac{bottom:172.026667pt;}
.y25{bottom:173.146667pt;}
.y57{bottom:178.906667pt;}
.yfb{bottom:180.186667pt;}
.y11a{bottom:182.746667pt;}
.y84{bottom:188.586667pt;}
.y24{bottom:188.746667pt;}
.y56{bottom:194.586667pt;}
.y119{bottom:198.426667pt;}
.yab{bottom:203.626667pt;}
.yfa{bottom:203.786667pt;}
.y23{bottom:204.426667pt;}
.y55{bottom:210.186667pt;}
.y82{bottom:212.906667pt;}
.yc2{bottom:218.666667pt;}
.yaa{bottom:219.306667pt;}
.y22{bottom:220.026667pt;}
.y54{bottom:225.866667pt;}
.y118{bottom:230.026667pt;}
.yf9{bottom:232.746667pt;}
.ya9{bottom:234.906667pt;}
.y21{bottom:235.706667pt;}
.y81{bottom:237.866667pt;}
.y53{bottom:241.466667pt;}
.y117{bottom:245.626667pt;}
.yf8{bottom:248.426667pt;}
.ya8{bottom:250.106667pt;}
.y20{bottom:251.306667pt;}
.y52{bottom:257.066667pt;}
.y116{bottom:261.306667pt;}
.y80{bottom:262.186667pt;}
.yf7{bottom:264.026667pt;}
.y1f{bottom:266.906667pt;}
.y51{bottom:272.746667pt;}
.ya7{bottom:274.426667pt;}
.y115{bottom:276.906667pt;}
.yf6{bottom:279.626667pt;}
.y7f{bottom:286.506667pt;}
.y114{bottom:292.586667pt;}
.yf5{bottom:296.026667pt;}
.y1e{bottom:298.586667pt;}
.ya6{bottom:298.746667pt;}
.y50{bottom:304.346667pt;}
.y7e{bottom:310.746667pt;}
.yf4{bottom:311.626667pt;}
.y1d{bottom:314.186667pt;}
.y4f{bottom:319.946667pt;}
.ya5{bottom:323.066667pt;}
.y113{bottom:324.186667pt;}
.yf3{bottom:327.306667pt;}
.y1c{bottom:329.866667pt;}
.y7c{bottom:335.066667pt;}
.y4e{bottom:335.626667pt;}
.y112{bottom:339.786667pt;}
.yf2{bottom:342.906667pt;}
.y1b{bottom:345.466667pt;}
.ya4{bottom:347.306667pt;}
.y4d{bottom:351.226667pt;}
.y111{bottom:355.466667pt;}
.y13a{bottom:356.346667pt;}
.yf1{bottom:359.306667pt;}
.y7b{bottom:359.386667pt;}
.y1a{bottom:361.066667pt;}
.y110{bottom:371.066667pt;}
.ya3{bottom:371.626667pt;}
.yf0{bottom:374.906667pt;}
.yc1{bottom:379.706667pt;}
.y139{bottom:379.946667pt;}
.y4c{bottom:382.906667pt;}
.y78{bottom:383.706667pt;}
.y19{bottom:384.986667pt;}
.y10f{bottom:386.666667pt;}
.yef{bottom:390.586667pt;}
.ya2{bottom:395.946667pt;}
.y4b{bottom:398.506667pt;}
.y138{bottom:403.626667pt;}
.yee{bottom:406.186667pt;}
.y76{bottom:408.666667pt;}
.yc0{bottom:411.386667pt;}
.y4a{bottom:414.106667pt;}
.y10e{bottom:418.373333pt;}
.ya1{bottom:420.293333pt;}
.yed{bottom:422.613333pt;}
.ybf{bottom:427.013333pt;}
.y137{bottom:427.253333pt;}
.y18{bottom:428.213333pt;}
.y49{bottom:429.813333pt;}
.y10d{bottom:433.973333pt;}
.yec{bottom:438.213333pt;}
.ybe{bottom:442.613333pt;}
.ya0{bottom:444.533333pt;}
.y48{bottom:445.413333pt;}
.y10c{bottom:449.653333pt;}
.y136{bottom:450.933333pt;}
.y75{bottom:451.973333pt;}
.yeb{bottom:453.813333pt;}
.ybd{bottom:458.293333pt;}
.y47{bottom:461.093333pt;}
.y17{bottom:461.173333pt;}
.y10b{bottom:465.253333pt;}
.y9f{bottom:468.853333pt;}
.yea{bottom:469.413333pt;}
.y135{bottom:474.533333pt;}
.y46{bottom:476.693333pt;}
.y16{bottom:476.773333pt;}
.y10a{bottom:480.853333pt;}
.y74{bottom:483.573333pt;}
.ybc{bottom:489.893333pt;}
.y134{bottom:490.133333pt;}
.y15{bottom:492.373333pt;}
.y9e{bottom:493.173333pt;}
.y73{bottom:499.253333pt;}
.ye9{bottom:501.813333pt;}
.y14{bottom:508.053333pt;}
.y45{bottom:508.293333pt;}
.y109{bottom:512.533333pt;}
.y133{bottom:513.813333pt;}
.y72{bottom:514.853333pt;}
.y9d{bottom:517.413333pt;}
.ye8{bottom:517.493333pt;}
.ybb{bottom:518.533333pt;}
.y13{bottom:523.653333pt;}
.y44{bottom:523.973333pt;}
.y108{bottom:528.133333pt;}
.y71{bottom:530.453333pt;}
.ye7{bottom:533.093333pt;}
.y132{bottom:537.413333pt;}
.y12{bottom:539.333333pt;}
.y43{bottom:539.573333pt;}
.y9c{bottom:541.733333pt;}
.y107{bottom:543.813333pt;}
.y70{bottom:546.133333pt;}
.ye6{bottom:548.773333pt;}
.y131{bottom:553.093333pt;}
.y11{bottom:554.933333pt;}
.y42{bottom:555.253333pt;}
.y106{bottom:559.413333pt;}
.y9b{bottom:566.053333pt;}
.y6f{bottom:569.733333pt;}
.y10{bottom:570.533333pt;}
.ye5{bottom:572.373333pt;}
.y105{bottom:575.013333pt;}
.y130{bottom:576.693333pt;}
.y41{bottom:579.173333pt;}
.yf{bottom:586.213333pt;}
.y9a{bottom:590.373333pt;}
.y104{bottom:590.693333pt;}
.y12f{bottom:592.293333pt;}
.y6e{bottom:601.413333pt;}
.ye{bottom:601.813333pt;}
.ye4{bottom:603.973333pt;}
.y103{bottom:606.293333pt;}
.y99{bottom:614.613333pt;}
.y12e{bottom:615.973333pt;}
.y6d{bottom:617.013333pt;}
.yd{bottom:617.493333pt;}
.ye3{bottom:619.653333pt;}
.y102{bottom:621.973333pt;}
.y40{bottom:622.053333pt;}
.y12d{bottom:631.573333pt;}
.y6c{bottom:632.613333pt;}
.yc{bottom:633.093333pt;}
.ye2{bottom:635.253333pt;}
.y3f{bottom:637.653333pt;}
.y98{bottom:638.933333pt;}
.y12c{bottom:647.253333pt;}
.y6b{bottom:648.293333pt;}
.y3e{bottom:653.333333pt;}
.y101{bottom:653.573333pt;}
.yb{bottom:657.013333pt;}
.ye1{bottom:658.933333pt;}
.y97{bottom:663.253333pt;}
.y3d{bottom:668.933333pt;}
.y12b{bottom:670.853333pt;}
.y6a{bottom:671.893333pt;}
.y100{bottom:674.213333pt;}
.y3c{bottom:684.613333pt;}
.y12a{bottom:686.453333pt;}
.ye0{bottom:690.533333pt;}
.ya{bottom:699.893333pt;}
.y3b{bottom:700.213333pt;}
.y69{bottom:703.813333pt;}
.y96{bottom:706.533333pt;}
.ydf{bottom:706.853333pt;}
.y129{bottom:710.373333pt;}
.yba{bottom:713.493333pt;}
.y3a{bottom:715.813333pt;}
.yde{bottom:723.253333pt;}
.yb9{bottom:731.093333pt;}
.y39{bottom:731.493333pt;}
.y9{bottom:731.733333pt;}
.y95{bottom:738.133333pt;}
.ydd{bottom:739.573333pt;}
.y68{bottom:746.693333pt;}
.y38{bottom:747.093333pt;}
.y128{bottom:753.333333pt;}
.y94{bottom:753.813333pt;}
.y67{bottom:762.373333pt;}
.y37{bottom:762.693333pt;}
.y8{bottom:763.733333pt;}
.y93{bottom:769.413333pt;}
.ydc{bottom:771.973333pt;}
.y127{bottom:777.253333pt;}
.y66{bottom:777.973333pt;}
.y92{bottom:785.013333pt;}
.ydb{bottom:787.653333pt;}
.y65{bottom:793.653333pt;}
.y36{bottom:794.373333pt;}
.y7{bottom:799.093333pt;}
.y91{bottom:800.693333pt;}
.yda{bottom:803.253333pt;}
.yb8{bottom:809.253333pt;}
.y35{bottom:809.973333pt;}
.y126{bottom:810.453333pt;}
.y6{bottom:815.093333pt;}
.y90{bottom:824.293333pt;}
.yb7{bottom:824.533333pt;}
.y64{bottom:825.253333pt;}
.y34{bottom:825.653333pt;}
.yd7{bottom:832.533333pt;}
.y63{bottom:840.853333pt;}
.y33{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.yb6{bottom:848.773333pt;}
.y125{bottom:853.333333pt;}
.y8f{bottom:855.973333pt;}
.y62{bottom:856.533333pt;}
.y32{bottom:856.853333pt;}
.y124{bottom:868.933333pt;}
.y8e{bottom:871.573333pt;}
.y61{bottom:872.133333pt;}
.y31{bottom:872.533333pt;}
.yb5{bottom:873.093333pt;}
.y4{bottom:877.893333pt;}
.y123{bottom:884.613333pt;}
.y8d{bottom:887.173333pt;}
.y60{bottom:887.813333pt;}
.y30{bottom:888.133333pt;}
.yb3{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y122{bottom:900.240000pt;}
.y5f{bottom:903.440000pt;}
.y2f{bottom:903.840000pt;}
.y121{bottom:915.840000pt;}
.y8c{bottom:918.240000pt;}
.yb2{bottom:921.680000pt;}
.y8b{bottom:929.040000pt;}
.y120{bottom:931.520000pt;}
.y5e{bottom:935.040000pt;}
.y2e{bottom:935.440000pt;}
.yb1{bottom:946.000000pt;}
.y11f{bottom:947.120000pt;}
.y5d{bottom:950.720000pt;}
.y2d{bottom:951.040000pt;}
.y8a{bottom:953.360000pt;}
.yd1{bottom:955.040000pt;}
.y11e{bottom:962.800000pt;}
.y5c{bottom:966.320000pt;}
.y2c{bottom:966.720000pt;}
.yb0{bottom:970.320000pt;}
.y89{bottom:977.680000pt;}
.y11d{bottom:978.400000pt;}
.y2b{bottom:982.320000pt;}
.y2a{bottom:998.000000pt;}
.y88{bottom:1001.920000pt;}
.y11c{bottom:1002.320000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.he{height:23.600000pt;}
.hb{height:23.626667pt;}
.hf{height:23.680000pt;}
.hc{height:24.240000pt;}
.h10{height:24.320000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h11{height:36.034687pt;}
.h7{height:45.246562pt;}
.hd{height:47.806562pt;}
.h5{height:49.581562pt;}
.ha{height:53.309531pt;}
.h16{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h14{height:70.560000pt;}
.h13{height:102.160000pt;}
.h15{height:121.866667pt;}
.h12{height:141.360000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wb{width:30.400000pt;}
.wd{width:47.680000pt;}
.wa{width:48.480000pt;}
.w9{width:53.680000pt;}
.w8{width:57.626667pt;}
.w5{width:68.000000pt;}
.w4{width:70.906667pt;}
.w6{width:70.960000pt;}
.we{width:88.186667pt;}
.wc{width:107.280000pt;}
.wf{width:188.026667pt;}
.w7{width:197.200000pt;}
.w3{width:212.880000pt;}
.w11{width:227.760000pt;}
.w10{width:254.506667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.xb{left:36.160000pt;}
.x9{left:39.120000pt;}
.xa{left:58.080000pt;}
.x1{left:60.480000pt;}
.x1a{left:84.479988pt;}
.x19{left:99.679988pt;}
.x1b{left:114.479988pt;}
.x16{left:151.386667pt;}
.x2{left:180.266655pt;}
.x4{left:184.586667pt;}
.xd{left:217.466667pt;}
.x17{left:249.866667pt;}
.x11{left:259.226667pt;}
.x15{left:266.666655pt;}
.x12{left:290.346667pt;}
.xc{left:310.186655pt;}
.x6{left:398.186667pt;}
.xe{left:415.306667pt;}
.x13{left:446.586667pt;}
.x7{left:469.813333pt;}
.xf{left:473.653333pt;}
.x18{left:505.093333pt;}
.x10{left:528.053333pt;}
.x8{left:538.453333pt;}
.x14{left:563.013322pt;}
.x3{left:704.053322pt;}
.x1c{left:705.013322pt;}
}




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