
    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_6afa430bcbf0a39dcee2f5b7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_be784ea81b705c264aec4680.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_98e2270eabb7919b6cb55f0b.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a44431d4116b801270635b38.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_0a2c033dbf8c868b95ed309b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.872559;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_6cb5e6298be2c90b3dbb2aa2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861328;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;}
.m2{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,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);}
.v7{vertical-align:-4.421520px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.941600px;}
.v1{vertical-align:42.110400px;}
.v2{vertical-align:50.646480px;}
.v4{vertical-align:78.263400px;}
.v5{vertical-align:94.536600px;}
.v3{vertical-align:100.034880px;}
.ls1c{letter-spacing:-14.418000px;}
.ls1e{letter-spacing:-12.414240px;}
.ls3d{letter-spacing:-10.765440px;}
.ls39{letter-spacing:-5.472000px;}
.ls22{letter-spacing:-4.752000px;}
.ls3c{letter-spacing:-3.672000px;}
.ls2c{letter-spacing:-2.232000px;}
.ls3b{letter-spacing:-1.969749px;}
.ls1f{letter-spacing:-1.224000px;}
.ls41{letter-spacing:-1.095120px;}
.ls42{letter-spacing:-1.010880px;}
.ls20{letter-spacing:-0.864000px;}
.ls14{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.384480px;}
.lsa{letter-spacing:-0.360720px;}
.ls2d{letter-spacing:-0.336960px;}
.ls27{letter-spacing:-0.324000px;}
.ls30{letter-spacing:-0.319680px;}
.lsf{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.276480px;}
.ls9{letter-spacing:-0.240480px;}
.lsb{letter-spacing:-0.239760px;}
.ls21{letter-spacing:-0.216000px;}
.ls23{letter-spacing:-0.192240px;}
.ls24{letter-spacing:-0.191520px;}
.ls1d{letter-spacing:-0.156240px;}
.ls5{letter-spacing:-0.144000px;}
.ls3f{letter-spacing:-0.132480px;}
.ls8{letter-spacing:-0.120240px;}
.ls2a{letter-spacing:-0.102240px;}
.ls12{letter-spacing:-0.084240px;}
.ls38{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.038448px;}
.ls29{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.120240px;}
.ls28{letter-spacing:0.131760px;}
.ls2{letter-spacing:0.134208px;}
.ls10{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.156240px;}
.ls1a{letter-spacing:0.167760px;}
.ls25{letter-spacing:0.192240px;}
.ls3e{letter-spacing:0.203040px;}
.ls33{letter-spacing:0.204408px;}
.ls1b{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.240480px;}
.ls32{letter-spacing:0.264240px;}
.ls4{letter-spacing:0.264528px;}
.ls11{letter-spacing:0.288000px;}
.ls2b{letter-spacing:0.306720px;}
.ls18{letter-spacing:0.312480px;}
.ls1{letter-spacing:0.335520px;}
.ls13{letter-spacing:0.336960px;}
.ls2f{letter-spacing:0.959040px;}
.ls2e{letter-spacing:1.646352px;}
.ls43{letter-spacing:3.132000px;}
.ls26{letter-spacing:18.144000px;}
.ls34{letter-spacing:18.504000px;}
.ls17{letter-spacing:21.130560px;}
.ls40{letter-spacing:21.228480px;}
.lsd{letter-spacing:21.600000px;}
.ls16{letter-spacing:49.284000px;}
.ls3a{letter-spacing:49.321440px;}
.lsc{letter-spacing:57.600000px;}
.ls31{letter-spacing:378.520560px;}
.ls36{letter-spacing:489.528000px;}
.ls35{letter-spacing:508.968000px;}
.ls37{letter-spacing:529.128000px;}
.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;}
}
.ws43{word-spacing:-53.634960px;}
.ws8b{word-spacing:-53.442720px;}
.ws14{word-spacing:-53.058240px;}
.ws1{word-spacing:-46.972800px;}
.ws5d{word-spacing:-44.115840px;}
.ws24{word-spacing:-43.747200px;}
.ws26{word-spacing:-43.590960px;}
.ws25{word-spacing:-43.434720px;}
.ws8c{word-spacing:-42.677280px;}
.ws4{word-spacing:-39.888000px;}
.ws15{word-spacing:-39.744000px;}
.ws23{word-spacing:-39.024720px;}
.ws2{word-spacing:-38.430720px;}
.ws3{word-spacing:-38.154240px;}
.ws50{word-spacing:-36.761040px;}
.ws85{word-spacing:-34.536266px;}
.ws27{word-spacing:-34.223040px;}
.ws0{word-spacing:-33.546960px;}
.ws7{word-spacing:-33.426720px;}
.ws5{word-spacing:-33.186240px;}
.ws6{word-spacing:-33.066000px;}
.ws97{word-spacing:-30.024000px;}
.ws6c{word-spacing:-29.700000px;}
.ws40{word-spacing:-26.621280px;}
.ws3f{word-spacing:-26.429760px;}
.ws56{word-spacing:-24.192000px;}
.ws55{word-spacing:-24.084000px;}
.ws5b{word-spacing:-23.418720px;}
.ws57{word-spacing:-23.412960px;}
.ws1d{word-spacing:-23.334480px;}
.ws5a{word-spacing:-23.081760px;}
.ws93{word-spacing:-22.407840px;}
.ws92{word-spacing:-22.323600px;}
.ws1a{word-spacing:-20.304000px;}
.ws87{word-spacing:-20.232000px;}
.ws18{word-spacing:-20.160000px;}
.ws19{word-spacing:-20.016000px;}
.ws8f{word-spacing:-19.872000px;}
.ws3c{word-spacing:-19.800000px;}
.ws1f{word-spacing:-19.584000px;}
.ws3b{word-spacing:-19.152000px;}
.ws90{word-spacing:-18.282240px;}
.ws59{word-spacing:-17.784000px;}
.ws86{word-spacing:-16.344000px;}
.ws7d{word-spacing:-14.544000px;}
.ws10{word-spacing:-8.296560px;}
.ws3d{word-spacing:-7.214400px;}
.ws91{word-spacing:-5.904000px;}
.ws6b{word-spacing:-5.184000px;}
.ws8d{word-spacing:-4.037040px;}
.ws54{word-spacing:-3.744000px;}
.ws4e{word-spacing:-3.268080px;}
.ws84{word-spacing:-3.246480px;}
.ws95{word-spacing:-2.864160px;}
.ws2d{word-spacing:-2.656080px;}
.ws68{word-spacing:-2.525040px;}
.ws48{word-spacing:-2.304000px;}
.ws35{word-spacing:-2.160000px;}
.ws22{word-spacing:-2.106000px;}
.ws4b{word-spacing:-2.088000px;}
.ws98{word-spacing:-1.922400px;}
.ws2c{word-spacing:-1.874880px;}
.ws8a{word-spacing:-1.872000px;}
.ws11{word-spacing:-1.803600px;}
.ws39{word-spacing:-1.584000px;}
.ws66{word-spacing:-1.576800px;}
.ws4c{word-spacing:-1.512000px;}
.ws4a{word-spacing:-1.440000px;}
.ws42{word-spacing:-1.436400px;}
.ws12{word-spacing:-1.321200px;}
.ws30{word-spacing:-1.249920px;}
.ws51{word-spacing:-1.153440px;}
.ws6a{word-spacing:-1.152000px;}
.ws69{word-spacing:-1.082160px;}
.ws21{word-spacing:-1.010880px;}
.ws17{word-spacing:-1.008000px;}
.ws49{word-spacing:-0.864000px;}
.ws9{word-spacing:-0.838800px;}
.ws8e{word-spacing:-0.792000px;}
.ws5c{word-spacing:-0.721440px;}
.ws63{word-spacing:-0.720000px;}
.ws2b{word-spacing:-0.468720px;}
.ws1b{word-spacing:-0.384480px;}
.ws8{word-spacing:-0.360720px;}
.ws96{word-spacing:-0.360000px;}
.ws94{word-spacing:-0.336960px;}
.ws31{word-spacing:-0.335520px;}
.ws32{word-spacing:-0.312480px;}
.wsd{word-spacing:-0.288000px;}
.ws65{word-spacing:-0.264240px;}
.ws36{word-spacing:-0.216000px;}
.ws62{word-spacing:-0.192240px;}
.wsb{word-spacing:-0.167760px;}
.ws2e{word-spacing:-0.156240px;}
.ws34{word-spacing:-0.144000px;}
.ws52{word-spacing:-0.131760px;}
.ws67{word-spacing:-0.120240px;}
.ws88{word-spacing:-0.108000px;}
.ws38{word-spacing:-0.072000px;}
.wsa{word-spacing:0.000000px;}
.ws20{word-spacing:0.084240px;}
.ws58{word-spacing:0.102240px;}
.wsf{word-spacing:0.120240px;}
.ws3a{word-spacing:0.144000px;}
.ws2f{word-spacing:0.156240px;}
.ws28{word-spacing:0.192240px;}
.ws4f{word-spacing:0.216000px;}
.wse{word-spacing:0.276480px;}
.ws37{word-spacing:0.288000px;}
.ws29{word-spacing:0.384480px;}
.ws16{word-spacing:0.432000px;}
.ws2a{word-spacing:0.503280px;}
.ws89{word-spacing:0.540000px;}
.ws47{word-spacing:0.576000px;}
.ws64{word-spacing:0.720000px;}
.ws6d{word-spacing:1.152000px;}
.ws13{word-spacing:1.198800px;}
.ws33{word-spacing:1.224000px;}
.ws4d{word-spacing:1.296000px;}
.ws41{word-spacing:1.436400px;}
.wsc{word-spacing:1.872000px;}
.ws61{word-spacing:2.077920px;}
.ws60{word-spacing:2.717280px;}
.ws5f{word-spacing:3.516480px;}
.ws53{word-spacing:3.689280px;}
.ws5e{word-spacing:4.155840px;}
.ws3e{word-spacing:4.752000px;}
.ws7e{word-spacing:129.888000px;}
.ws7f{word-spacing:149.688000px;}
.ws7c{word-spacing:203.688000px;}
.ws7a{word-spacing:217.368000px;}
.ws76{word-spacing:219.528000px;}
.ws75{word-spacing:263.095200px;}
.ws82{word-spacing:320.688000px;}
.ws46{word-spacing:361.365000px;}
.ws6f{word-spacing:362.664000px;}
.ws1c{word-spacing:387.884952px;}
.ws70{word-spacing:391.608000px;}
.ws83{word-spacing:394.272000px;}
.ws45{word-spacing:418.779600px;}
.ws81{word-spacing:430.128000px;}
.ws72{word-spacing:430.992000px;}
.ws74{word-spacing:469.440000px;}
.ws73{word-spacing:486.288000px;}
.ws78{word-spacing:490.968000px;}
.ws1e{word-spacing:495.270048px;}
.ws71{word-spacing:507.240000px;}
.ws7b{word-spacing:525.240000px;}
.ws79{word-spacing:527.328000px;}
.ws44{word-spacing:597.614400px;}
.ws80{word-spacing:621.576000px;}
.ws6e{word-spacing:637.272000px;}
.ws77{word-spacing:638.280000px;}
._9{margin-left:-22.417560px;}
._d{margin-left:-15.840000px;}
._3{margin-left:-12.749760px;}
._1{margin-left:-9.824760px;}
._c{margin-left:-8.662320px;}
._b{margin-left:-6.798240px;}
._8{margin-left:-5.177376px;}
._7{margin-left:-4.117896px;}
._a{margin-left:-2.592000px;}
._0{margin-left:-1.046088px;}
._2{width:1.174320px;}
._4{width:3.168000px;}
._5{width:4.319928px;}
._28{width:5.408352px;}
._6{width:6.420816px;}
._34{width:10.573200px;}
._10{width:12.363912px;}
._f{width:14.432256px;}
._16{width:23.855688px;}
._1a{width:92.016000px;}
._19{width:141.268176px;}
._17{width:214.732080px;}
._2d{width:226.520352px;}
._2c{width:228.498264px;}
._26{width:243.656352px;}
._31{width:263.130264px;}
._29{width:266.229576px;}
._22{width:293.964336px;}
._27{width:300.828528px;}
._1f{width:316.629144px;}
._32{width:339.277896px;}
._33{width:348.954264px;}
._15{width:368.695440px;}
._21{width:393.097680px;}
._12{width:394.856040px;}
._24{width:412.825680px;}
._1e{width:427.972176px;}
._1d{width:444.244176px;}
._1c{width:453.778416px;}
._2b{width:472.108176px;}
._1b{width:476.534088px;}
._23{width:486.504000px;}
._e{width:491.379120px;}
._20{width:506.592000px;}
._2e{width:511.030440px;}
._13{width:518.941200px;}
._2f{width:523.300176px;}
._2a{width:527.544000px;}
._30{width:532.944000px;}
._14{width:543.130200px;}
._25{width:566.833680px;}
._11{width:1587.471000px;}
._18{width:2627.740728px;}
.fc14{color:rgb(40,128,194);}
.fc13{color:rgb(46,45,77);}
.fc10{color:rgb(114,196,171);}
.fcf{color:rgb(0,112,192);}
.fc12{color:rgb(80,216,255);}
.fcd{color:rgb(192,0,0);}
.fc0{color:rgb(91,91,91);}
.fc4{color:rgb(92,92,92);}
.fc11{color:rgb(255,114,107);}
.fc8{color:rgb(189,189,189);}
.fc9{color:rgb(0,0,0);}
.fcc{color:rgb(0,176,80);}
.fc1{color:rgb(0,170,220);}
.fc2{color:rgb(0,170,218);}
.fc3{color:rgb(255,0,0);}
.fca{color:rgb(25,38,62);}
.fc5{color:rgb(137,138,137);}
.fc6{color:rgb(255,20,9);}
.fce{color:rgb(0,32,96);}
.fc7{color:transparent;}
.fcb{color:rgb(112,173,71);}
.fs10{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fsa{font-size:95.760000px;}
.fsd{font-size:102.240000px;}
.fsb{font-size:108.000000px;}
.fs0{font-size:120.240000px;}
.fsf{font-size:131.316600px;}
.fsc{font-size:131.760000px;}
.fs3{font-size:138.240000px;}
.fs2{font-size:144.000000px;}
.fs9{font-size:156.240000px;}
.fse{font-size:159.840000px;}
.fs1{font-size:167.760000px;}
.fs6{font-size:192.240000px;}
.fs5{font-size:239.760000px;}
.fs4{font-size:264.240000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:7.227900px;}
.y52{bottom:7.590000px;}
.y4f{bottom:7.590300px;}
.y4e{bottom:7.726050px;}
.y64{bottom:7.854000px;}
.y47{bottom:8.452350px;}
.y3f{bottom:9.605700px;}
.y26{bottom:9.797250px;}
.y71{bottom:9.856350px;}
.ybe{bottom:10.067250px;}
.y16{bottom:10.091700px;}
.yb9{bottom:10.092000px;}
.y60{bottom:10.640430px;}
.yca{bottom:10.840650px;}
.yc7{bottom:11.088030px;}
.y5e{bottom:11.152650px;}
.ycc{bottom:11.469600px;}
.y66{bottom:11.688150px;}
.yba{bottom:11.694000px;}
.y6d{bottom:12.372000px;}
.y2{bottom:13.324020px;}
.ya{bottom:15.024000px;}
.yb0{bottom:15.085650px;}
.yae{bottom:15.086100px;}
.yc0{bottom:15.105000px;}
.ycd{bottom:26.209350px;}
.y2c{bottom:28.827900px;}
.yce{bottom:29.611350px;}
.y25{bottom:31.397250px;}
.ybd{bottom:31.667400px;}
.y65{bottom:33.972000px;}
.y15{bottom:33.972150px;}
.y4c{bottom:33.973200px;}
.y5d{bottom:33.974400px;}
.y50{bottom:34.314150px;}
.y2e{bottom:34.572000px;}
.ybf{bottom:34.905000px;}
.y5f{bottom:35.849250px;}
.yc6{bottom:36.296850px;}
.yb4{bottom:45.208950px;}
.y1{bottom:49.335900px;}
.yb6{bottom:51.012000px;}
.y9{bottom:51.024000px;}
.yc3{bottom:57.674460px;}
.yc4{bottom:67.224450px;}
.yb8{bottom:67.336350px;}
.yad{bottom:73.914000px;}
.yc2{bottom:82.883280px;}
.yb5{bottom:83.412000px;}
.yaf{bottom:88.198500px;}
.yb7{bottom:99.736350px;}
.yc9{bottom:100.970280px;}
.y27{bottom:101.075100px;}
.ya7{bottom:106.432950px;}
.y2b{bottom:106.516500px;}
.yc1{bottom:108.092100px;}
.y24{bottom:109.559850px;}
.yb2{bottom:113.005500px;}
.yc8{bottom:126.179100px;}
.y8{bottom:128.833350px;}
.ya6{bottom:130.066950px;}
.y76{bottom:132.382500px;}
.y7c{bottom:143.980200px;}
.yb3{bottom:145.441500px;}
.y34{bottom:146.230530px;}
.y2a{bottom:149.716500px;}
.ya5{bottom:153.700950px;}
.y75{bottom:153.982500px;}
.y14{bottom:157.259850px;}
.y23{bottom:163.739850px;}
.y77{bottom:164.340000px;}
.y7{bottom:167.533350px;}
.y74{bottom:175.582500px;}
.ya4{bottom:177.334950px;}
.y29{bottom:192.916500px;}
.y33{bottom:196.642410px;}
.y73{bottom:197.182500px;}
.ya3{bottom:201.490950px;}
.y89{bottom:203.922900px;}
.y6{bottom:204.973350px;}
.y3e{bottom:211.101270px;}
.y22{bottom:217.739850px;}
.y8c{bottom:220.297860px;}
.yb1{bottom:223.147500px;}
.y6b{bottom:223.848600px;}
.ya2{bottom:225.646950px;}
.y2f{bottom:235.020300px;}
.y28{bottom:236.116500px;}
.y43{bottom:236.553300px;}
.y13{bottom:236.999850px;}
.y88{bottom:237.041280px;}
.y3d{bottom:239.901090px;}
.y5{bottom:243.853350px;}
.y32{bottom:247.054290px;}
.ya1{bottom:249.280950px;}
.y21{bottom:271.919850px;}
.ya0{bottom:272.914950px;}
.y69{bottom:282.787680px;}
.y9f{bottom:296.548950px;}
.y4{bottom:297.114270px;}
.y31{bottom:297.466170px;}
.y12{bottom:309.359850px;}
.yd6{bottom:310.562400px;}
.y55{bottom:312.427650px;}
.y9e{bottom:320.182950px;}
.yac{bottom:320.805060px;}
.y87{bottom:324.846540px;}
.y20{bottom:326.639850px;}
.y39{bottom:327.234210px;}
.yd5{bottom:332.162400px;}
.y80{bottom:338.434620px;}
.y8b{bottom:340.207200px;}
.y3c{bottom:340.473030px;}
.y3{bottom:342.493350px;}
.y9d{bottom:343.816950px;}
.y46{bottom:344.341050px;}
.y30{bottom:347.878050px;}
.y63{bottom:352.371090px;}
.y68{bottom:354.995400px;}
.y38{bottom:356.034030px;}
.y86{bottom:360.858420px;}
.y9c{bottom:367.972950px;}
.y45{bottom:367.975200px;}
.yaa{bottom:368.043300px;}
.yab{bottom:368.059380px;}
.y44{bottom:368.559750px;}
.y3b{bottom:369.272850px;}
.y7f{bottom:374.446500px;}
.y11{bottom:381.539850px;}
.y37{bottom:384.833850px;}
.y62{bottom:388.382970px;}
.y9b{bottom:392.128950px;}
.y3a{bottom:398.072670px;}
.y56{bottom:407.603400px;}
.ya9{bottom:415.554180px;}
.y9a{bottom:415.762950px;}
.y85{bottom:421.910280px;}
.y61{bottom:424.394850px;}
.y8a{bottom:436.940280px;}
.y99{bottom:439.396950px;}
.y1f{bottom:455.699850px;}
.y84{bottom:457.922160px;}
.y10{bottom:461.459850px;}
.ya8{bottom:462.808500px;}
.y98{bottom:463.030950px;}
.y7b{bottom:465.788220px;}
.y7e{bottom:477.710250px;}
.y18{bottom:480.821130px;}
.y1a{bottom:483.016530px;}
.y1b{bottom:483.104430px;}
.y97{bottom:486.664950px;}
.yd4{bottom:491.039850px;}
.y6e{bottom:492.127500px;}
.y17{bottom:495.502350px;}
.y54{bottom:497.637000px;}
.y7a{bottom:501.800100px;}
.y42{bottom:508.112730px;}
.y19{bottom:508.225350px;}
.y70{bottom:508.697550px;}
.ybc{bottom:509.034000px;}
.y1e{bottom:509.879850px;}
.y96{bottom:510.298950px;}
.y41{bottom:511.903830px;}
.y6a{bottom:519.398250px;}
.y8f{bottom:528.021540px;}
.yd3{bottom:529.919850px;}
.yc{bottom:529.950300px;}
.yf{bottom:533.639850px;}
.y95{bottom:533.932950px;}
.y67{bottom:539.947500px;}
.y40{bottom:540.703650px;}
.y83{bottom:544.164300px;}
.y94{bottom:557.566950px;}
.y1d{bottom:564.059850px;}
.yd2{bottom:568.799850px;}
.y8e{bottom:573.400620px;}
.y93{bottom:581.200950px;}
.yb{bottom:596.010300px;}
.y81{bottom:597.030150px;}
.yd1{bottom:601.199850px;}
.y4b{bottom:601.333200px;}
.y92{bottom:604.834950px;}
.ye{bottom:605.999850px;}
.ybb{bottom:611.505750px;}
.ycb{bottom:616.529250px;}
.y8d{bottom:618.779700px;}
.y1c{bottom:618.779850px;}
.y4a{bottom:622.933200px;}
.y91{bottom:628.468950px;}
.y82{bottom:630.011700px;}
.yd0{bottom:640.079850px;}
.y49{bottom:644.533200px;}
.y7d{bottom:648.176580px;}
.y90{bottom:652.624950px;}
.y6f{bottom:653.218650px;}
.y51{bottom:659.864250px;}
.y78{bottom:659.921550px;}
.y79{bottom:665.200740px;}
.yc5{bottom:666.549900px;}
.y4d{bottom:670.273950px;}
.y48{bottom:670.519950px;}
.y36{bottom:671.651760px;}
.y5c{bottom:678.572400px;}
.ycf{bottom:678.959850px;}
.y5b{bottom:700.172400px;}
.y72{bottom:701.545500px;}
.y5a{bottom:721.772400px;}
.y35{bottom:723.508500px;}
.yd{bottom:723.882000px;}
.y6c{bottom:736.032000px;}
.y59{bottom:743.372400px;}
.y53{bottom:762.592650px;}
.y58{bottom:764.972400px;}
.y57{bottom:786.572400px;}
.h1e{height:52.417969px;}
.h22{height:59.383125px;}
.h9{height:64.546875px;}
.h16{height:64.548075px;}
.h21{height:64.554675px;}
.he{height:64.566675px;}
.h19{height:70.839141px;}
.h18{height:74.830078px;}
.h17{height:75.093750px;}
.hb{height:75.519844px;}
.h1a{height:75.555124px;}
.h23{height:75.590404px;}
.h10{height:85.847344px;}
.h1d{height:87.538008px;}
.h14{height:96.820312px;}
.hf{height:104.835938px;}
.h1{height:107.793281px;}
.ha{height:117.630244px;}
.h20{height:117.723280px;}
.h15{height:118.120781px;}
.h3{height:122.133867px;}
.h5{height:123.930000px;}
.h4{height:129.093750px;}
.hd{height:140.066719px;}
.h1c{height:143.294062px;}
.h2{height:150.394219px;}
.h1b{height:152.335819px;}
.h8{height:172.340156px;}
.h7{height:174.551836px;}
.hc{height:176.706724px;}
.h11{height:185.882224px;}
.h12{height:207.357150px;}
.h1f{height:211.494000px;}
.h13{height:223.630350px;}
.h6{height:236.887031px;}
.h0{height:810.000000px;}
.w1{width:211.366500px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x9{left:10.799850px;}
.x4{left:32.400000px;}
.x71{left:34.978500px;}
.x5{left:41.522250px;}
.x6{left:43.063650px;}
.x47{left:46.442850px;}
.x7b{left:47.478600px;}
.x42{left:69.233250px;}
.x3{left:71.586900px;}
.x68{left:76.743450px;}
.x2e{left:82.173750px;}
.x2b{left:87.195000px;}
.x7{left:97.063650px;}
.x7d{left:101.478600px;}
.x4f{left:107.435700px;}
.xa{left:118.366950px;}
.x2c{left:136.997700px;}
.x3a{left:144.883650px;}
.x41{left:149.522250px;}
.x50{left:153.663540px;}
.x52{left:156.068340px;}
.x51{left:160.336860px;}
.x39{left:162.223650px;}
.x7e{left:167.349600px;}
.x4a{left:169.497690px;}
.x53{left:176.058240px;}
.x54{left:179.838000px;}
.x6e{left:243.783750px;}
.x7c{left:246.009600px;}
.x67{left:250.231500px;}
.x6d{left:258.714750px;}
.x25{left:283.092600px;}
.x26{left:284.717550px;}
.x3b{left:299.249130px;}
.x13{left:313.270350px;}
.x55{left:347.496000px;}
.x1f{left:361.960680px;}
.x1a{left:365.608950px;}
.xb{left:371.154810px;}
.x76{left:381.087300px;}
.x22{left:389.167050px;}
.x3e{left:401.845950px;}
.x40{left:413.214750px;}
.x48{left:427.622250px;}
.x21{left:448.815000px;}
.x17{left:457.173420px;}
.x78{left:464.059650px;}
.x20{left:465.549060px;}
.x62{left:468.751500px;}
.x15{left:479.695200px;}
.x4b{left:483.144570px;}
.x18{left:486.321720px;}
.x64{left:488.965500px;}
.x61{left:492.331500px;}
.x5b{left:501.637500px;}
.x5f{left:517.513500px;}
.x65{left:519.043500px;}
.x63{left:524.209500px;}
.x5d{left:529.717500px;}
.x66{left:532.399500px;}
.x1b{left:536.990910px;}
.x5a{left:538.339500px;}
.x59{left:542.641500px;}
.x57{left:544.045500px;}
.x16{left:545.205480px;}
.x60{left:547.771500px;}
.x56{left:551.029500px;}
.x58{left:553.603500px;}
.xd{left:562.009740px;}
.x27{left:565.845150px;}
.x5e{left:566.995500px;}
.x5c{left:570.577500px;}
.x69{left:574.891650px;}
.x11{left:576.600450px;}
.x44{left:580.641600px;}
.xc{left:582.353700px;}
.x12{left:593.700450px;}
.x43{left:603.508950px;}
.x10{left:605.580450px;}
.x2d{left:608.323950px;}
.x6a{left:623.131650px;}
.x6c{left:634.725150px;}
.x35{left:636.722550px;}
.x79{left:637.896900px;}
.x3f{left:656.401740px;}
.x37{left:660.925950px;}
.x75{left:694.922490px;}
.x73{left:710.949150px;}
.x74{left:712.570770px;}
.x6b{left:716.569650px;}
.x3d{left:718.003950px;}
.x7a{left:735.942300px;}
.x4e{left:770.843850px;}
.x24{left:772.039800px;}
.x4c{left:790.150950px;}
.x36{left:815.716950px;}
.x46{left:822.085650px;}
.x45{left:850.345950px;}
.x80{left:851.399400px;}
.x23{left:865.743660px;}
.x7f{left:867.239400px;}
.x38{left:875.180400px;}
.x2{left:887.273370px;}
.xf{left:908.820000px;}
.x6f{left:918.692850px;}
.x1{left:932.453550px;}
.x72{left:975.162150px;}
.x1d{left:978.248100px;}
.x70{left:990.902850px;}
.x1c{left:998.956200px;}
.x1e{left:1002.379620px;}
.x3c{left:1144.325550px;}
.xe{left:1152.238770px;}
.x29{left:1187.997600px;}
.x77{left:1207.256430px;}
.x49{left:1234.789950px;}
.x28{left:1243.617600px;}
.x4d{left:1248.252450px;}
.x32{left:1330.961550px;}
.x2f{left:1333.481550px;}
.x31{left:1334.741550px;}
.x30{left:1345.541550px;}
.x33{left:1356.521700px;}
.x34{left:1362.461550px;}
.x14{left:1408.900500px;}
.x19{left:1410.160500px;}
.x8{left:1418.980500px;}
.x2a{left:1424.517450px;}
@media print{
.v7{vertical-align:-3.930240pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.725867pt;}
.v1{vertical-align:37.431467pt;}
.v2{vertical-align:45.019093pt;}
.v4{vertical-align:69.567467pt;}
.v5{vertical-align:84.032533pt;}
.v3{vertical-align:88.919893pt;}
.ls1c{letter-spacing:-12.816000pt;}
.ls1e{letter-spacing:-11.034880pt;}
.ls3d{letter-spacing:-9.569280pt;}
.ls39{letter-spacing:-4.864000pt;}
.ls22{letter-spacing:-4.224000pt;}
.ls3c{letter-spacing:-3.264000pt;}
.ls2c{letter-spacing:-1.984000pt;}
.ls3b{letter-spacing:-1.750888pt;}
.ls1f{letter-spacing:-1.088000pt;}
.ls41{letter-spacing:-0.973440pt;}
.ls42{letter-spacing:-0.898560pt;}
.ls20{letter-spacing:-0.768000pt;}
.ls14{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.341760pt;}
.lsa{letter-spacing:-0.320640pt;}
.ls2d{letter-spacing:-0.299520pt;}
.ls27{letter-spacing:-0.288000pt;}
.ls30{letter-spacing:-0.284160pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.245760pt;}
.ls9{letter-spacing:-0.213760pt;}
.lsb{letter-spacing:-0.213120pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls23{letter-spacing:-0.170880pt;}
.ls24{letter-spacing:-0.170240pt;}
.ls1d{letter-spacing:-0.138880pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls3f{letter-spacing:-0.117760pt;}
.ls8{letter-spacing:-0.106880pt;}
.ls2a{letter-spacing:-0.090880pt;}
.ls12{letter-spacing:-0.074880pt;}
.ls38{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.034176pt;}
.ls29{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.106880pt;}
.ls28{letter-spacing:0.117120pt;}
.ls2{letter-spacing:0.119296pt;}
.ls10{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.138880pt;}
.ls1a{letter-spacing:0.149120pt;}
.ls25{letter-spacing:0.170880pt;}
.ls3e{letter-spacing:0.180480pt;}
.ls33{letter-spacing:0.181696pt;}
.ls1b{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.213760pt;}
.ls32{letter-spacing:0.234880pt;}
.ls4{letter-spacing:0.235136pt;}
.ls11{letter-spacing:0.256000pt;}
.ls2b{letter-spacing:0.272640pt;}
.ls18{letter-spacing:0.277760pt;}
.ls1{letter-spacing:0.298240pt;}
.ls13{letter-spacing:0.299520pt;}
.ls2f{letter-spacing:0.852480pt;}
.ls2e{letter-spacing:1.463424pt;}
.ls43{letter-spacing:2.784000pt;}
.ls26{letter-spacing:16.128000pt;}
.ls34{letter-spacing:16.448000pt;}
.ls17{letter-spacing:18.782720pt;}
.ls40{letter-spacing:18.869760pt;}
.lsd{letter-spacing:19.200000pt;}
.ls16{letter-spacing:43.808000pt;}
.ls3a{letter-spacing:43.841280pt;}
.lsc{letter-spacing:51.200000pt;}
.ls31{letter-spacing:336.462720pt;}
.ls36{letter-spacing:435.136000pt;}
.ls35{letter-spacing:452.416000pt;}
.ls37{letter-spacing:470.336000pt;}
.ws43{word-spacing:-47.675520pt;}
.ws8b{word-spacing:-47.504640pt;}
.ws14{word-spacing:-47.162880pt;}
.ws1{word-spacing:-41.753600pt;}
.ws5d{word-spacing:-39.214080pt;}
.ws24{word-spacing:-38.886400pt;}
.ws26{word-spacing:-38.747520pt;}
.ws25{word-spacing:-38.608640pt;}
.ws8c{word-spacing:-37.935360pt;}
.ws4{word-spacing:-35.456000pt;}
.ws15{word-spacing:-35.328000pt;}
.ws23{word-spacing:-34.688640pt;}
.ws2{word-spacing:-34.160640pt;}
.ws3{word-spacing:-33.914880pt;}
.ws50{word-spacing:-32.676480pt;}
.ws85{word-spacing:-30.698903pt;}
.ws27{word-spacing:-30.420480pt;}
.ws0{word-spacing:-29.819520pt;}
.ws7{word-spacing:-29.712640pt;}
.ws5{word-spacing:-29.498880pt;}
.ws6{word-spacing:-29.392000pt;}
.ws97{word-spacing:-26.688000pt;}
.ws6c{word-spacing:-26.400000pt;}
.ws40{word-spacing:-23.663360pt;}
.ws3f{word-spacing:-23.493120pt;}
.ws56{word-spacing:-21.504000pt;}
.ws55{word-spacing:-21.408000pt;}
.ws5b{word-spacing:-20.816640pt;}
.ws57{word-spacing:-20.811520pt;}
.ws1d{word-spacing:-20.741760pt;}
.ws5a{word-spacing:-20.517120pt;}
.ws93{word-spacing:-19.918080pt;}
.ws92{word-spacing:-19.843200pt;}
.ws1a{word-spacing:-18.048000pt;}
.ws87{word-spacing:-17.984000pt;}
.ws18{word-spacing:-17.920000pt;}
.ws19{word-spacing:-17.792000pt;}
.ws8f{word-spacing:-17.664000pt;}
.ws3c{word-spacing:-17.600000pt;}
.ws1f{word-spacing:-17.408000pt;}
.ws3b{word-spacing:-17.024000pt;}
.ws90{word-spacing:-16.250880pt;}
.ws59{word-spacing:-15.808000pt;}
.ws86{word-spacing:-14.528000pt;}
.ws7d{word-spacing:-12.928000pt;}
.ws10{word-spacing:-7.374720pt;}
.ws3d{word-spacing:-6.412800pt;}
.ws91{word-spacing:-5.248000pt;}
.ws6b{word-spacing:-4.608000pt;}
.ws8d{word-spacing:-3.588480pt;}
.ws54{word-spacing:-3.328000pt;}
.ws4e{word-spacing:-2.904960pt;}
.ws84{word-spacing:-2.885760pt;}
.ws95{word-spacing:-2.545920pt;}
.ws2d{word-spacing:-2.360960pt;}
.ws68{word-spacing:-2.244480pt;}
.ws48{word-spacing:-2.048000pt;}
.ws35{word-spacing:-1.920000pt;}
.ws22{word-spacing:-1.872000pt;}
.ws4b{word-spacing:-1.856000pt;}
.ws98{word-spacing:-1.708800pt;}
.ws2c{word-spacing:-1.666560pt;}
.ws8a{word-spacing:-1.664000pt;}
.ws11{word-spacing:-1.603200pt;}
.ws39{word-spacing:-1.408000pt;}
.ws66{word-spacing:-1.401600pt;}
.ws4c{word-spacing:-1.344000pt;}
.ws4a{word-spacing:-1.280000pt;}
.ws42{word-spacing:-1.276800pt;}
.ws12{word-spacing:-1.174400pt;}
.ws30{word-spacing:-1.111040pt;}
.ws51{word-spacing:-1.025280pt;}
.ws6a{word-spacing:-1.024000pt;}
.ws69{word-spacing:-0.961920pt;}
.ws21{word-spacing:-0.898560pt;}
.ws17{word-spacing:-0.896000pt;}
.ws49{word-spacing:-0.768000pt;}
.ws9{word-spacing:-0.745600pt;}
.ws8e{word-spacing:-0.704000pt;}
.ws5c{word-spacing:-0.641280pt;}
.ws63{word-spacing:-0.640000pt;}
.ws2b{word-spacing:-0.416640pt;}
.ws1b{word-spacing:-0.341760pt;}
.ws8{word-spacing:-0.320640pt;}
.ws96{word-spacing:-0.320000pt;}
.ws94{word-spacing:-0.299520pt;}
.ws31{word-spacing:-0.298240pt;}
.ws32{word-spacing:-0.277760pt;}
.wsd{word-spacing:-0.256000pt;}
.ws65{word-spacing:-0.234880pt;}
.ws36{word-spacing:-0.192000pt;}
.ws62{word-spacing:-0.170880pt;}
.wsb{word-spacing:-0.149120pt;}
.ws2e{word-spacing:-0.138880pt;}
.ws34{word-spacing:-0.128000pt;}
.ws52{word-spacing:-0.117120pt;}
.ws67{word-spacing:-0.106880pt;}
.ws88{word-spacing:-0.096000pt;}
.ws38{word-spacing:-0.064000pt;}
.wsa{word-spacing:0.000000pt;}
.ws20{word-spacing:0.074880pt;}
.ws58{word-spacing:0.090880pt;}
.wsf{word-spacing:0.106880pt;}
.ws3a{word-spacing:0.128000pt;}
.ws2f{word-spacing:0.138880pt;}
.ws28{word-spacing:0.170880pt;}
.ws4f{word-spacing:0.192000pt;}
.wse{word-spacing:0.245760pt;}
.ws37{word-spacing:0.256000pt;}
.ws29{word-spacing:0.341760pt;}
.ws16{word-spacing:0.384000pt;}
.ws2a{word-spacing:0.447360pt;}
.ws89{word-spacing:0.480000pt;}
.ws47{word-spacing:0.512000pt;}
.ws64{word-spacing:0.640000pt;}
.ws6d{word-spacing:1.024000pt;}
.ws13{word-spacing:1.065600pt;}
.ws33{word-spacing:1.088000pt;}
.ws4d{word-spacing:1.152000pt;}
.ws41{word-spacing:1.276800pt;}
.wsc{word-spacing:1.664000pt;}
.ws61{word-spacing:1.847040pt;}
.ws60{word-spacing:2.415360pt;}
.ws5f{word-spacing:3.125760pt;}
.ws53{word-spacing:3.279360pt;}
.ws5e{word-spacing:3.694080pt;}
.ws3e{word-spacing:4.224000pt;}
.ws7e{word-spacing:115.456000pt;}
.ws7f{word-spacing:133.056000pt;}
.ws7c{word-spacing:181.056000pt;}
.ws7a{word-spacing:193.216000pt;}
.ws76{word-spacing:195.136000pt;}
.ws75{word-spacing:233.862400pt;}
.ws82{word-spacing:285.056000pt;}
.ws46{word-spacing:321.213333pt;}
.ws6f{word-spacing:322.368000pt;}
.ws1c{word-spacing:344.786624pt;}
.ws70{word-spacing:348.096000pt;}
.ws83{word-spacing:350.464000pt;}
.ws45{word-spacing:372.248533pt;}
.ws81{word-spacing:382.336000pt;}
.ws72{word-spacing:383.104000pt;}
.ws74{word-spacing:417.280000pt;}
.ws73{word-spacing:432.256000pt;}
.ws78{word-spacing:436.416000pt;}
.ws1e{word-spacing:440.240043pt;}
.ws71{word-spacing:450.880000pt;}
.ws7b{word-spacing:466.880000pt;}
.ws79{word-spacing:468.736000pt;}
.ws44{word-spacing:531.212800pt;}
.ws80{word-spacing:552.512000pt;}
.ws6e{word-spacing:566.464000pt;}
.ws77{word-spacing:567.360000pt;}
._9{margin-left:-19.926720pt;}
._d{margin-left:-14.080000pt;}
._3{margin-left:-11.333120pt;}
._1{margin-left:-8.733120pt;}
._c{margin-left:-7.699840pt;}
._b{margin-left:-6.042880pt;}
._8{margin-left:-4.602112pt;}
._7{margin-left:-3.660352pt;}
._a{margin-left:-2.304000pt;}
._0{margin-left:-0.929856pt;}
._2{width:1.043840pt;}
._4{width:2.816000pt;}
._5{width:3.839936pt;}
._28{width:4.807424pt;}
._6{width:5.707392pt;}
._34{width:9.398400pt;}
._10{width:10.990144pt;}
._f{width:12.828672pt;}
._16{width:21.205056pt;}
._1a{width:81.792000pt;}
._19{width:125.571712pt;}
._17{width:190.872960pt;}
._2d{width:201.351424pt;}
._2c{width:203.109568pt;}
._26{width:216.583424pt;}
._31{width:233.893568pt;}
._29{width:236.648512pt;}
._22{width:261.301632pt;}
._27{width:267.403136pt;}
._1f{width:281.448128pt;}
._32{width:301.580352pt;}
._33{width:310.181568pt;}
._15{width:327.729280pt;}
._21{width:349.420160pt;}
._12{width:350.983147pt;}
._24{width:366.956160pt;}
._1e{width:380.419712pt;}
._1d{width:394.883712pt;}
._1c{width:403.358592pt;}
._2b{width:419.651712pt;}
._1b{width:423.585856pt;}
._23{width:432.448000pt;}
._e{width:436.781440pt;}
._20{width:450.304000pt;}
._2e{width:454.249280pt;}
._13{width:461.281067pt;}
._2f{width:465.155712pt;}
._2a{width:468.928000pt;}
._30{width:473.728000pt;}
._14{width:482.782400pt;}
._25{width:503.852160pt;}
._11{width:1411.085333pt;}
._18{width:2335.769536pt;}
.fs10{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fsa{font-size:85.120000pt;}
.fsd{font-size:90.880000pt;}
.fsb{font-size:96.000000pt;}
.fs0{font-size:106.880000pt;}
.fsf{font-size:116.725867pt;}
.fsc{font-size:117.120000pt;}
.fs3{font-size:122.880000pt;}
.fs2{font-size:128.000000pt;}
.fs9{font-size:138.880000pt;}
.fse{font-size:142.080000pt;}
.fs1{font-size:149.120000pt;}
.fs6{font-size:170.880000pt;}
.fs5{font-size:213.120000pt;}
.fs4{font-size:234.880000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:6.424800pt;}
.y52{bottom:6.746667pt;}
.y4f{bottom:6.746933pt;}
.y4e{bottom:6.867600pt;}
.y64{bottom:6.981333pt;}
.y47{bottom:7.513200pt;}
.y3f{bottom:8.538400pt;}
.y26{bottom:8.708667pt;}
.y71{bottom:8.761200pt;}
.ybe{bottom:8.948667pt;}
.y16{bottom:8.970400pt;}
.yb9{bottom:8.970667pt;}
.y60{bottom:9.458160pt;}
.yca{bottom:9.636133pt;}
.yc7{bottom:9.856027pt;}
.y5e{bottom:9.913467pt;}
.ycc{bottom:10.195200pt;}
.y66{bottom:10.389467pt;}
.yba{bottom:10.394667pt;}
.y6d{bottom:10.997333pt;}
.y2{bottom:11.843573pt;}
.ya{bottom:13.354667pt;}
.yb0{bottom:13.409467pt;}
.yae{bottom:13.409867pt;}
.yc0{bottom:13.426667pt;}
.ycd{bottom:23.297200pt;}
.y2c{bottom:25.624800pt;}
.yce{bottom:26.321200pt;}
.y25{bottom:27.908667pt;}
.ybd{bottom:28.148800pt;}
.y65{bottom:30.197333pt;}
.y15{bottom:30.197467pt;}
.y4c{bottom:30.198400pt;}
.y5d{bottom:30.199467pt;}
.y50{bottom:30.501467pt;}
.y2e{bottom:30.730667pt;}
.ybf{bottom:31.026667pt;}
.y5f{bottom:31.866000pt;}
.yc6{bottom:32.263867pt;}
.yb4{bottom:40.185733pt;}
.y1{bottom:43.854133pt;}
.yb6{bottom:45.344000pt;}
.y9{bottom:45.354667pt;}
.yc3{bottom:51.266187pt;}
.yc4{bottom:59.755067pt;}
.yb8{bottom:59.854533pt;}
.yad{bottom:65.701333pt;}
.yc2{bottom:73.674027pt;}
.yb5{bottom:74.144000pt;}
.yaf{bottom:78.398667pt;}
.yb7{bottom:88.654533pt;}
.yc9{bottom:89.751360pt;}
.y27{bottom:89.844533pt;}
.ya7{bottom:94.607067pt;}
.y2b{bottom:94.681333pt;}
.yc1{bottom:96.081867pt;}
.y24{bottom:97.386533pt;}
.yb2{bottom:100.449333pt;}
.yc8{bottom:112.159200pt;}
.y8{bottom:114.518533pt;}
.ya6{bottom:115.615067pt;}
.y76{bottom:117.673333pt;}
.y7c{bottom:127.982400pt;}
.yb3{bottom:129.281333pt;}
.y34{bottom:129.982693pt;}
.y2a{bottom:133.081333pt;}
.ya5{bottom:136.623067pt;}
.y75{bottom:136.873333pt;}
.y14{bottom:139.786533pt;}
.y23{bottom:145.546533pt;}
.y77{bottom:146.080000pt;}
.y7{bottom:148.918533pt;}
.y74{bottom:156.073333pt;}
.ya4{bottom:157.631067pt;}
.y29{bottom:171.481333pt;}
.y33{bottom:174.793253pt;}
.y73{bottom:175.273333pt;}
.ya3{bottom:179.103067pt;}
.y89{bottom:181.264800pt;}
.y6{bottom:182.198533pt;}
.y3e{bottom:187.645573pt;}
.y22{bottom:193.546533pt;}
.y8c{bottom:195.820320pt;}
.yb1{bottom:198.353333pt;}
.y6b{bottom:198.976533pt;}
.ya2{bottom:200.575067pt;}
.y2f{bottom:208.906933pt;}
.y28{bottom:209.881333pt;}
.y43{bottom:210.269600pt;}
.y13{bottom:210.666533pt;}
.y88{bottom:210.703360pt;}
.y3d{bottom:213.245413pt;}
.y5{bottom:216.758533pt;}
.y32{bottom:219.603813pt;}
.ya1{bottom:221.583067pt;}
.y21{bottom:241.706533pt;}
.ya0{bottom:242.591067pt;}
.y69{bottom:251.366827pt;}
.y9f{bottom:263.599067pt;}
.y4{bottom:264.101573pt;}
.y31{bottom:264.414373pt;}
.y12{bottom:274.986533pt;}
.yd6{bottom:276.055467pt;}
.y55{bottom:277.713467pt;}
.y9e{bottom:284.607067pt;}
.yac{bottom:285.160053pt;}
.y87{bottom:288.752480pt;}
.y20{bottom:290.346533pt;}
.y39{bottom:290.874853pt;}
.yd5{bottom:295.255467pt;}
.y80{bottom:300.830773pt;}
.y8b{bottom:302.406400pt;}
.y3c{bottom:302.642693pt;}
.y3{bottom:304.438533pt;}
.y9d{bottom:305.615067pt;}
.y46{bottom:306.080933pt;}
.y30{bottom:309.224933pt;}
.y63{bottom:313.218747pt;}
.y68{bottom:315.551467pt;}
.y38{bottom:316.474693pt;}
.y86{bottom:320.763040pt;}
.y9c{bottom:327.087067pt;}
.y45{bottom:327.089067pt;}
.yaa{bottom:327.149600pt;}
.yab{bottom:327.163893pt;}
.y44{bottom:327.608667pt;}
.y3b{bottom:328.242533pt;}
.y7f{bottom:332.841333pt;}
.y11{bottom:339.146533pt;}
.y37{bottom:342.074533pt;}
.y62{bottom:345.229307pt;}
.y9b{bottom:348.559067pt;}
.y3a{bottom:353.842373pt;}
.y56{bottom:362.314133pt;}
.ya9{bottom:369.381493pt;}
.y9a{bottom:369.567067pt;}
.y85{bottom:375.031360pt;}
.y61{bottom:377.239867pt;}
.y8a{bottom:388.391360pt;}
.y99{bottom:390.575067pt;}
.y1f{bottom:405.066533pt;}
.y84{bottom:407.041920pt;}
.y10{bottom:410.186533pt;}
.ya8{bottom:411.385333pt;}
.y98{bottom:411.583067pt;}
.y7b{bottom:414.033973pt;}
.y7e{bottom:424.631333pt;}
.y18{bottom:427.396560pt;}
.y1a{bottom:429.348027pt;}
.y1b{bottom:429.426160pt;}
.y97{bottom:432.591067pt;}
.yd4{bottom:436.479867pt;}
.y6e{bottom:437.446667pt;}
.y17{bottom:440.446533pt;}
.y54{bottom:442.344000pt;}
.y7a{bottom:446.044533pt;}
.y42{bottom:451.655760pt;}
.y19{bottom:451.755867pt;}
.y70{bottom:452.175600pt;}
.ybc{bottom:452.474667pt;}
.y1e{bottom:453.226533pt;}
.y96{bottom:453.599067pt;}
.y41{bottom:455.025627pt;}
.y6a{bottom:461.687333pt;}
.y8f{bottom:469.352480pt;}
.yd3{bottom:471.039867pt;}
.yc{bottom:471.066933pt;}
.yf{bottom:474.346533pt;}
.y95{bottom:474.607067pt;}
.y67{bottom:479.953333pt;}
.y40{bottom:480.625467pt;}
.y83{bottom:483.701600pt;}
.y94{bottom:495.615067pt;}
.y1d{bottom:501.386533pt;}
.yd2{bottom:505.599867pt;}
.y8e{bottom:509.689440pt;}
.y93{bottom:516.623067pt;}
.yb{bottom:529.786933pt;}
.y81{bottom:530.693467pt;}
.yd1{bottom:534.399867pt;}
.y4b{bottom:534.518400pt;}
.y92{bottom:537.631067pt;}
.ye{bottom:538.666533pt;}
.ybb{bottom:543.560667pt;}
.ycb{bottom:548.026000pt;}
.y8d{bottom:550.026400pt;}
.y1c{bottom:550.026533pt;}
.y4a{bottom:553.718400pt;}
.y91{bottom:558.639067pt;}
.y82{bottom:560.010400pt;}
.yd0{bottom:568.959867pt;}
.y49{bottom:572.918400pt;}
.y7d{bottom:576.156960pt;}
.y90{bottom:580.111067pt;}
.y6f{bottom:580.638800pt;}
.y51{bottom:586.546000pt;}
.y78{bottom:586.596933pt;}
.y79{bottom:591.289547pt;}
.yc5{bottom:592.488800pt;}
.y4d{bottom:595.799067pt;}
.y48{bottom:596.017733pt;}
.y36{bottom:597.023787pt;}
.y5c{bottom:603.175467pt;}
.ycf{bottom:603.519867pt;}
.y5b{bottom:622.375467pt;}
.y72{bottom:623.596000pt;}
.y5a{bottom:641.575467pt;}
.y35{bottom:643.118667pt;}
.yd{bottom:643.450667pt;}
.y6c{bottom:654.250667pt;}
.y59{bottom:660.775467pt;}
.y53{bottom:677.860133pt;}
.y58{bottom:679.975467pt;}
.y57{bottom:699.175467pt;}
.h1e{height:46.593750pt;}
.h22{height:52.785000pt;}
.h9{height:57.375000pt;}
.h16{height:57.376067pt;}
.h21{height:57.381933pt;}
.he{height:57.392600pt;}
.h19{height:62.968125pt;}
.h18{height:66.515625pt;}
.h17{height:66.750000pt;}
.hb{height:67.128750pt;}
.h1a{height:67.160110pt;}
.h23{height:67.191470pt;}
.h10{height:76.308750pt;}
.h1d{height:77.811562pt;}
.h14{height:86.062500pt;}
.hf{height:93.187500pt;}
.h1{height:95.816250pt;}
.ha{height:104.560217pt;}
.h20{height:104.642916pt;}
.h15{height:104.996250pt;}
.h3{height:108.563437pt;}
.h5{height:110.160000pt;}
.h4{height:114.750000pt;}
.hd{height:124.503750pt;}
.h1c{height:127.372500pt;}
.h2{height:133.683750pt;}
.h1b{height:135.409617pt;}
.h8{height:153.191250pt;}
.h7{height:155.157187pt;}
.hc{height:157.072643pt;}
.h11{height:165.228643pt;}
.h12{height:184.317467pt;}
.h1f{height:187.994667pt;}
.h13{height:198.782533pt;}
.h6{height:210.566250pt;}
.h0{height:720.000000pt;}
.w1{width:187.881333pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x9{left:9.599867pt;}
.x4{left:28.800000pt;}
.x71{left:31.092000pt;}
.x5{left:36.908667pt;}
.x6{left:38.278800pt;}
.x47{left:41.282533pt;}
.x7b{left:42.203200pt;}
.x42{left:61.540667pt;}
.x3{left:63.632800pt;}
.x68{left:68.216400pt;}
.x2e{left:73.043333pt;}
.x2b{left:77.506667pt;}
.x7{left:86.278800pt;}
.x7d{left:90.203200pt;}
.x4f{left:95.498400pt;}
.xa{left:105.215067pt;}
.x2c{left:121.775733pt;}
.x3a{left:128.785467pt;}
.x41{left:132.908667pt;}
.x50{left:136.589813pt;}
.x52{left:138.727413pt;}
.x51{left:142.521653pt;}
.x39{left:144.198800pt;}
.x7e{left:148.755200pt;}
.x4a{left:150.664613pt;}
.x53{left:156.496213pt;}
.x54{left:159.856000pt;}
.x6e{left:216.696667pt;}
.x7c{left:218.675200pt;}
.x67{left:222.428000pt;}
.x6d{left:229.968667pt;}
.x25{left:251.637867pt;}
.x26{left:253.082267pt;}
.x3b{left:265.999227pt;}
.x13{left:278.462533pt;}
.x55{left:308.885333pt;}
.x1f{left:321.742827pt;}
.x1a{left:324.985733pt;}
.xb{left:329.915387pt;}
.x76{left:338.744267pt;}
.x22{left:345.926267pt;}
.x3e{left:357.196400pt;}
.x40{left:367.302000pt;}
.x48{left:380.108667pt;}
.x21{left:398.946667pt;}
.x17{left:406.376373pt;}
.x78{left:412.497467pt;}
.x20{left:413.821387pt;}
.x62{left:416.668000pt;}
.x15{left:426.395733pt;}
.x4b{left:429.461840pt;}
.x18{left:432.285973pt;}
.x64{left:434.636000pt;}
.x61{left:437.628000pt;}
.x5b{left:445.900000pt;}
.x5f{left:460.012000pt;}
.x65{left:461.372000pt;}
.x63{left:465.964000pt;}
.x5d{left:470.860000pt;}
.x66{left:473.244000pt;}
.x1b{left:477.325253pt;}
.x5a{left:478.524000pt;}
.x59{left:482.348000pt;}
.x57{left:483.596000pt;}
.x16{left:484.627093pt;}
.x60{left:486.908000pt;}
.x56{left:489.804000pt;}
.x58{left:492.092000pt;}
.xd{left:499.564213pt;}
.x27{left:502.973467pt;}
.x5e{left:503.996000pt;}
.x5c{left:507.180000pt;}
.x69{left:511.014800pt;}
.x11{left:512.533733pt;}
.x44{left:516.125867pt;}
.xc{left:517.647733pt;}
.x12{left:527.733733pt;}
.x43{left:536.452400pt;}
.x10{left:538.293733pt;}
.x2d{left:540.732400pt;}
.x6a{left:553.894800pt;}
.x6c{left:564.200133pt;}
.x35{left:565.975600pt;}
.x79{left:567.019467pt;}
.x3f{left:583.468213pt;}
.x37{left:587.489733pt;}
.x75{left:617.708880pt;}
.x73{left:631.954800pt;}
.x74{left:633.396240pt;}
.x6b{left:636.950800pt;}
.x3d{left:638.225733pt;}
.x7a{left:654.170933pt;}
.x4e{left:685.194533pt;}
.x24{left:686.257600pt;}
.x4c{left:702.356400pt;}
.x36{left:725.081733pt;}
.x46{left:730.742800pt;}
.x45{left:755.863067pt;}
.x80{left:756.799467pt;}
.x23{left:769.549920pt;}
.x7f{left:770.879467pt;}
.x38{left:777.938133pt;}
.x2{left:788.687440pt;}
.xf{left:807.840000pt;}
.x6f{left:816.615867pt;}
.x1{left:828.847600pt;}
.x72{left:866.810800pt;}
.x1d{left:869.553867pt;}
.x70{left:880.802533pt;}
.x1c{left:887.961067pt;}
.x1e{left:891.004107pt;}
.x3c{left:1017.178267pt;}
.xe{left:1024.212240pt;}
.x29{left:1055.997867pt;}
.x77{left:1073.116827pt;}
.x49{left:1097.591067pt;}
.x28{left:1105.437867pt;}
.x4d{left:1109.557733pt;}
.x32{left:1183.076933pt;}
.x2f{left:1185.316933pt;}
.x31{left:1186.436933pt;}
.x30{left:1196.036933pt;}
.x33{left:1205.797067pt;}
.x34{left:1211.076933pt;}
.x14{left:1252.356000pt;}
.x19{left:1253.476000pt;}
.x8{left:1261.316000pt;}
.x2a{left:1266.237733pt;}
}




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