
    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_a22be1aac3ef2608f408956d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_332425a7cb91d526eb482ab7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.898000;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_0a44496040883510067125ef.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_bf5bb80a1e8434eef2eb156a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.901000;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_7a21341649f99ae4fcdcbb25.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.901000;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_caa191ed187c76e31359fc3f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.001000;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_3eb79b766cfed7a65dc3673f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.912000;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_4eff7b5e1381650288de050e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.687000;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_809243c98de35e7a8cb6b761.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.684000;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_1e88e543f5c8572362385f0a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923000;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:ffb;src:url('chunks/assets/font_e6117190b04e1dfc27ab841b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.902000;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:ffc;src:url('chunks/assets/font_02a435b78d3b9800ae492eaf.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923000;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:ffd;src:url('chunks/assets/font_fdda60dfd8c691067ba7256b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.635000;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:ffe;src:url('chunks/assets/font_e0457b72e60fd7aa838909cf.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910000;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);}
.v2{vertical-align:-21.690000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.028000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:2.988479px;}
.ls9{letter-spacing:2.992894px;}
.ls10{letter-spacing:20.443392px;}
.lsf{letter-spacing:20.515123px;}
.lsd{letter-spacing:22.308403px;}
.lsa{letter-spacing:23.384371px;}
.lsb{letter-spacing:24.460339px;}
.lsc{letter-spacing:29.460479px;}
.ls7{letter-spacing:31.776922px;}
.lse{letter-spacing:32.565965px;}
.ls2{letter-spacing:35.148288px;}
.ls1{letter-spacing:35.865600px;}
.ls6{letter-spacing:38.591386px;}
.ls4{letter-spacing:43.110451px;}
.ls3{letter-spacing:50.498765px;}
.ls5{letter-spacing:59.178240px;}
.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;}
}
.ws4e{word-spacing:-36.905702px;}
.wsb3{word-spacing:-35.858427px;}
.ws1d{word-spacing:-35.112422px;}
.ws68{word-spacing:-21.332859px;}
.ws7f{word-spacing:-19.331558px;}
.wsf{word-spacing:-18.040397px;}
.ws34{word-spacing:-17.674568px;}
.ws88{word-spacing:-17.610010px;}
.wsb4{word-spacing:-16.964429px;}
.ws27{word-spacing:-16.820966px;}
.ws93{word-spacing:-16.749235px;}
.ws9a{word-spacing:-16.390579px;}
.ws15{word-spacing:-16.318848px;}
.ws67{word-spacing:-16.031923px;}
.ws2e{word-spacing:-15.888461px;}
.ws8f{word-spacing:-15.744998px;}
.wsb7{word-spacing:-15.673267px;}
.ws94{word-spacing:-15.529805px;}
.ws62{word-spacing:-15.458074px;}
.ws35{word-spacing:-15.386342px;}
.ws99{word-spacing:-15.314611px;}
.ws53{word-spacing:-15.242880px;}
.ws36{word-spacing:-15.171149px;}
.ws40{word-spacing:-15.099418px;}
.ws9d{word-spacing:-15.027686px;}
.ws5b{word-spacing:-14.955955px;}
.ws5f{word-spacing:-14.740762px;}
.ws8c{word-spacing:-14.669030px;}
.ws8b{word-spacing:-14.597299px;}
.ws66{word-spacing:-14.525568px;}
.wsa6{word-spacing:-14.310374px;}
.ws75{word-spacing:-14.166912px;}
.wsb1{word-spacing:-14.095181px;}
.ws29{word-spacing:-14.023450px;}
.ws52{word-spacing:-13.980411px;}
.ws3f{word-spacing:-13.836948px;}
.ws9b{word-spacing:-13.664794px;}
.ws96{word-spacing:-13.593062px;}
.ws2f{word-spacing:-13.521331px;}
.ws59{word-spacing:-13.449600px;}
.ws6{word-spacing:-13.442427px;}
.ws21{word-spacing:-13.227233px;}
.ws48{word-spacing:-13.090944px;}
.ws9e{word-spacing:-12.947482px;}
.ws77{word-spacing:-12.875750px;}
.ws10{word-spacing:-12.804019px;}
.ws73{word-spacing:-12.581652px;}
.ws5e{word-spacing:-12.517094px;}
.ws47{word-spacing:-12.445363px;}
.ws6d{word-spacing:-12.366459px;}
.ws22{word-spacing:-12.172785px;}
.ws41{word-spacing:-12.086707px;}
.ws2a{word-spacing:-11.943245px;}
.ws89{word-spacing:-11.871514px;}
.wsaf{word-spacing:-11.799782px;}
.ws2{word-spacing:-11.728051px;}
.ws7{word-spacing:-11.656320px;}
.ws23{word-spacing:-11.584589px;}
.ws4c{word-spacing:-11.512858px;}
.ws46{word-spacing:-11.469819px;}
.ws8e{word-spacing:-11.369395px;}
.ws60{word-spacing:-11.297664px;}
.ws38{word-spacing:-11.147028px;}
.ws72{word-spacing:-10.939008px;}
.wse{word-spacing:-10.867277px;}
.wsa7{word-spacing:-10.824238px;}
.ws2d{word-spacing:-10.795546px;}
.ws0{word-spacing:-10.752507px;}
.ws6c{word-spacing:-10.723814px;}
.ws4b{word-spacing:-10.652083px;}
.ws1e{word-spacing:-10.644910px;}
.ws7d{word-spacing:-10.436890px;}
.ws61{word-spacing:-10.429716px;}
.ws43{word-spacing:-10.365158px;}
.ws55{word-spacing:-10.293427px;}
.ws32{word-spacing:-10.221696px;}
.ws86{word-spacing:-10.149965px;}
.ws42{word-spacing:-10.078234px;}
.ws65{word-spacing:-10.006502px;}
.ws76{word-spacing:-9.934771px;}
.ws5c{word-spacing:-9.791309px;}
.ws1f{word-spacing:-9.733924px;}
.ws45{word-spacing:-9.647846px;}
.ws30{word-spacing:-9.640673px;}
.wsa2{word-spacing:-9.576115px;}
.ws8d{word-spacing:-9.461345px;}
.ws70{word-spacing:-9.425480px;}
.ws1c{word-spacing:-9.360922px;}
.ws90{word-spacing:-9.289190px;}
.ws20{word-spacing:-9.217459px;}
.ws44{word-spacing:-9.145728px;}
.ws63{word-spacing:-9.138555px;}
.ws37{word-spacing:-9.088343px;}
.ws69{word-spacing:-9.073997px;}
.wsb6{word-spacing:-8.930534px;}
.ws16{word-spacing:-8.923361px;}
.ws33{word-spacing:-8.715341px;}
.ws74{word-spacing:-8.643610px;}
.ws7e{word-spacing:-8.571878px;}
.ws17{word-spacing:-8.227569px;}
.ws6f{word-spacing:-8.213222px;}
.ws14{word-spacing:-8.141491px;}
.ws18{word-spacing:-7.782835px;}
.ws80{word-spacing:-7.711104px;}
.ws6a{word-spacing:-7.567642px;}
.ws85{word-spacing:-7.495910px;}
.ws28{word-spacing:-7.424179px;}
.ws7a{word-spacing:-7.280717px;}
.wsa4{word-spacing:-7.137254px;}
.ws49{word-spacing:-6.993792px;}
.ws95{word-spacing:-6.706867px;}
.wsad{word-spacing:-6.635136px;}
.ws39{word-spacing:-6.556232px;}
.ws3d{word-spacing:-6.419942px;}
.wsa9{word-spacing:-6.348211px;}
.ws25{word-spacing:-6.133018px;}
.wsac{word-spacing:-6.089979px;}
.wsb5{word-spacing:-6.061286px;}
.ws11{word-spacing:-6.054113px;}
.ws6b{word-spacing:-5.917824px;}
.wsb2{word-spacing:-5.874785px;}
.wsaa{word-spacing:-5.803054px;}
.ws81{word-spacing:-5.774362px;}
.ws9c{word-spacing:-5.731323px;}
.ws3a{word-spacing:-5.702630px;}
.ws84{word-spacing:-5.630899px;}
.ws57{word-spacing:-5.559168px;}
.ws12{word-spacing:-5.501783px;}
.ws3c{word-spacing:-5.336801px;}
.ws13{word-spacing:-5.272243px;}
.ws8{word-spacing:-5.200512px;}
.ws9{word-spacing:-5.128781px;}
.ws56{word-spacing:-5.085742px;}
.ws87{word-spacing:-5.057050px;}
.wsa3{word-spacing:-4.985318px;}
.ws79{word-spacing:-4.913587px;}
.ws3e{word-spacing:-4.770125px;}
.ws26{word-spacing:-4.698394px;}
.ws9f{word-spacing:-4.626662px;}
.ws31{word-spacing:-4.547758px;}
.ws3b{word-spacing:-4.411469px;}
.ws71{word-spacing:-4.124544px;}
.ws64{word-spacing:-4.045640px;}
.wsb0{word-spacing:-3.981082px;}
.ws4a{word-spacing:-3.909350px;}
.ws92{word-spacing:-3.837619px;}
.ws6e{word-spacing:-3.550694px;}
.ws91{word-spacing:-3.507656px;}
.wsa0{word-spacing:-3.407232px;}
.ws7c{word-spacing:-3.335501px;}
.ws83{word-spacing:-3.263770px;}
.ws78{word-spacing:-3.192038px;}
.ws19{word-spacing:-2.754478px;}
.wsa8{word-spacing:-2.618189px;}
.ws8a{word-spacing:-2.546458px;}
.ws1a{word-spacing:-2.489073px;}
.wsae{word-spacing:-2.474726px;}
.ws1b{word-spacing:-2.402995px;}
.wsc{word-spacing:-2.187802px;}
.ws82{word-spacing:-2.116070px;}
.wsa5{word-spacing:-1.542221px;}
.wsd{word-spacing:-1.111834px;}
.ws98{word-spacing:-1.040102px;}
.ws97{word-spacing:-0.997064px;}
.wsa1{word-spacing:-0.753178px;}
.ws58{word-spacing:-0.609715px;}
.ws24{word-spacing:-0.251059px;}
.ws4{word-spacing:-0.103292px;}
.ws2b{word-spacing:-0.059776px;}
.ws5d{word-spacing:-0.035866px;}
.ws3{word-spacing:0.000000px;}
.ws54{word-spacing:18.083436px;}
.wsb9{word-spacing:19.690214px;}
.ws5{word-spacing:24.646840px;}
.ws5a{word-spacing:31.418178px;}
.ws2c{word-spacing:31.504255px;}
.wsab{word-spacing:32.983154px;}
.wsa{word-spacing:36.978679px;}
.ws1{word-spacing:45.062948px;}
.wsb{word-spacing:111.349207px;}
.ws4f{word-spacing:389.464550px;}
.ws51{word-spacing:405.030221px;}
.ws7b{word-spacing:552.939955px;}
.ws4d{word-spacing:561.124485px;}
.ws50{word-spacing:590.957491px;}
.wsb8{word-spacing:998.039224px;}
._8{margin-left:-35.793869px;}
._10{margin-left:-9.193024px;}
._2b{margin-left:-7.029658px;}
._17{margin-left:-5.881958px;}
._1b{margin-left:-4.734259px;}
._0{margin-left:-3.586560px;}
._1{margin-left:-1.936742px;}
._2{width:1.936742px;}
._15{width:3.586560px;}
._46{width:16.856832px;}
._41{width:19.582618px;}
._2a{width:22.523597px;}
._22{width:26.181888px;}
._23{width:27.257856px;}
._19{width:29.051136px;}
._1a{width:30.916147px;}
._1e{width:32.135578px;}
._20{width:33.426739px;}
._24{width:34.789632px;}
._18{width:36.726374px;}
._b{width:37.802342px;}
._7{width:39.882547px;}
._14{width:41.962752px;}
._1d{width:42.966989px;}
._e{width:44.401613px;}
._9{width:46.194893px;}
._29{width:47.414323px;}
._a{width:48.418560px;}
._21{width:49.566259px;}
._28{width:50.570496px;}
._12{width:52.076851px;}
._44{width:53.296282px;}
._42{width:54.946099px;}
._43{width:56.022067px;}
._45{width:57.815347px;}
._40{width:59.608627px;}
._c{width:60.899789px;}
._16{width:63.051725px;}
._4{width:64.988467px;}
._13{width:70.655232px;}
._6{width:71.802931px;}
._1f{width:94.684920px;}
._1c{width:111.452500px;}
._11{width:126.390374px;}
._2c{width:131.052902px;}
._33{width:169.644288px;}
._25{width:185.712077px;}
._31{width:245.751091px;}
._3e{width:257.012890px;}
._3c{width:269.063731px;}
._3f{width:277.671475px;}
._4a{width:281.258035px;}
._4c{width:285.920563px;}
._2f{width:310.093978px;}
._27{width:374.938982px;}
._48{width:379.099392px;}
._49{width:428.378726px;}
._26{width:440.286106px;}
._3b{width:442.724966px;}
._39{width:454.417152px;}
._35{width:460.872960px;}
._38{width:481.746739px;}
._36{width:526.650470px;}
._4b{width:642.424627px;}
._47{width:713.151590px;}
._3a{width:729.506304px;}
._34{width:795.427277px;}
._4d{width:834.951168px;}
._32{width:840.259277px;}
._3d{width:881.576448px;}
._30{width:1123.812710px;}
._37{width:1258.308710px;}
._2d{width:1282.051738px;}
._2e{width:1472.928461px;}
._d{width:1903.315661px;}
._5{width:1990.971187px;}
._f{width:1999.363738px;}
._3{width:2131.636070px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs0{font-size:71.731200px;}
.fs6{font-size:86.077200px;}
.fs2{font-size:103.292400px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y12{bottom:40.207500px;}
.y4e{bottom:85.039500px;}
.y10d{bottom:85.098000px;}
.y6e{bottom:90.462000px;}
.y7{bottom:106.981500px;}
.y8c{bottom:110.295000px;}
.y4d{bottom:111.930000px;}
.y10c{bottom:112.587000px;}
.yac{bottom:116.149500px;}
.y6d{bottom:116.647500px;}
.y8b{bottom:137.185500px;}
.y4c{bottom:138.820500px;}
.y10b{bottom:139.477500px;}
.yab{bottom:143.040000px;}
.y6c{bottom:143.538000px;}
.yc8{bottom:153.558000px;}
.y2e{bottom:161.583000px;}
.y8a{bottom:164.076000px;}
.y4b{bottom:165.712500px;}
.y10a{bottom:166.966500px;}
.yaa{bottom:169.932000px;}
.yc7{bottom:180.448500px;}
.y6b{bottom:182.007000px;}
.y2d{bottom:189.334500px;}
.y89{bottom:190.968000px;}
.y4a{bottom:192.603000px;}
.y109{bottom:193.857000px;}
.ya9{bottom:196.822500px;}
.yc6{bottom:207.340500px;}
.y2c{bottom:216.225000px;}
.y88{bottom:217.858500px;}
.y108{bottom:221.346000px;}
.yc5{bottom:234.231000px;}
.y49{bottom:237.894000px;}
.y6a{bottom:239.667000px;}
.y2b{bottom:243.117000px;}
.y87{bottom:244.749000px;}
.ya8{bottom:248.710500px;}
.y107{bottom:248.833500px;}
.yc4{bottom:261.121500px;}
.y48{bottom:264.784500px;}
.y69{bottom:266.557500px;}
.y2a{bottom:270.007500px;}
.y86{bottom:271.639500px;}
.y106{bottom:276.322500px;}
.ya7{bottom:279.046500px;}
.yc3{bottom:288.012000px;}
.y47{bottom:291.675000px;}
.y68{bottom:293.449500px;}
.y29{bottom:296.898000px;}
.y85{bottom:298.531500px;}
.y105{bottom:303.213000px;}
.yee{bottom:307.765500px;}
.ya6{bottom:309.382500px;}
.yc2{bottom:314.902500px;}
.y67{bottom:320.340000px;}
.y84{bottom:325.422000px;}
.y46{bottom:330.144000px;}
.y104{bottom:330.702000px;}
.ya5{bottom:331.051500px;}
.yed{bottom:334.656000px;}
.y28{bottom:341.542500px;}
.y83{bottom:352.312500px;}
.yc1{bottom:356.530500px;}
.y103{bottom:357.592500px;}
.y66{bottom:360.607500px;}
.ya4{bottom:361.387500px;}
.yec{bottom:376.491000px;}
.yc0{bottom:383.422500px;}
.y102{bottom:385.081500px;}
.y65{bottom:387.499500px;}
.y45{bottom:388.480500px;}
.y82{bottom:390.781500px;}
.ya3{bottom:391.723500px;}
.yeb{bottom:403.383000px;}
.y27{bottom:409.360500px;}
.ybf{bottom:410.313000px;}
.y101{bottom:412.570500px;}
.ya2{bottom:413.392500px;}
.y64{bottom:414.390000px;}
.y44{bottom:415.372500px;}
.y6{bottom:434.338500px;}
.y26{bottom:436.251000px;}
.ybe{bottom:437.203500px;}
.y100{bottom:439.461000px;}
.y63{bottom:441.280500px;}
.y43{bottom:442.263000px;}
.ya1{bottom:443.728500px;}
.yea{bottom:445.216500px;}
.y81{bottom:449.251500px;}
.y5{bottom:461.229000px;}
.y25{bottom:463.141500px;}
.ybd{bottom:464.094000px;}
.yff{bottom:466.950000px;}
.y42{bottom:469.153500px;}
.ye9{bottom:472.108500px;}
.ya0{bottom:474.064500px;}
.y62{bottom:481.548000px;}
.y4{bottom:488.119500px;}
.ybc{bottom:490.986000px;}
.y80{bottom:491.086500px;}
.yfe{bottom:493.840500px;}
.y9f{bottom:495.733500px;}
.ye8{bottom:498.999000px;}
.y61{bottom:508.440000px;}
.y24{bottom:509.460000px;}
.y41{bottom:510.732000px;}
.ybb{bottom:517.876500px;}
.yfd{bottom:521.329500px;}
.y9e{bottom:526.069500px;}
.y7f{bottom:532.921500px;}
.y23{bottom:536.350500px;}
.y40{bottom:537.622500px;}
.ye7{bottom:540.834000px;}
.yba{bottom:544.767000px;}
.y60{bottom:548.707500px;}
.yfc{bottom:548.817000px;}
.y9d{bottom:556.405500px;}
.y7e{bottom:559.812000px;}
.y3f{bottom:564.513000px;}
.ye6{bottom:567.724500px;}
.yb9{bottom:571.657500px;}
.y5f{bottom:575.598000px;}
.yfb{bottom:576.306000px;}
.y22{bottom:578.185500px;}
.yd7{bottom:586.573500px;}
.y9c{bottom:586.741500px;}
.y3e{bottom:591.403500px;}
.ye5{bottom:594.615000px;}
.yb8{bottom:598.549500px;}
.y7d{bottom:601.647000px;}
.yfa{bottom:603.196500px;}
.y21{bottom:605.076000px;}
.yd6{bottom:613.465500px;}
.y9b{bottom:617.077500px;}
.y5e{bottom:625.494000px;}
.yf9{bottom:630.685500px;}
.y3d{bottom:632.982000px;}
.ye4{bottom:636.450000px;}
.yd5{bottom:640.356000px;}
.y7c{bottom:643.482000px;}
.yb7{bottom:644.038500px;}
.y20{bottom:646.911000px;}
.y9a{bottom:648.012000px;}
.y5d{bottom:655.830000px;}
.yf8{bottom:657.576000px;}
.ye3{bottom:663.340500px;}
.y3c{bottom:667.087500px;}
.yd4{bottom:667.246500px;}
.yb6{bottom:670.930500px;}
.y1f{bottom:673.801500px;}
.y99{bottom:675.591000px;}
.yf7{bottom:685.065000px;}
.y7b{bottom:685.315500px;}
.y5c{bottom:686.166000px;}
.ye2{bottom:690.232500px;}
.yd3{bottom:694.137000px;}
.yb5{bottom:697.821000px;}
.y1e{bottom:700.692000px;}
.y3b{bottom:701.194500px;}
.yf6{bottom:711.955500px;}
.y7a{bottom:712.207500px;}
.y5b{bottom:716.502000px;}
.yd2{bottom:721.029000px;}
.yb4{bottom:724.711500px;}
.y98{bottom:725.157000px;}
.ye1{bottom:732.066000px;}
.y3a{bottom:735.300000px;}
.yf5{bottom:739.444500px;}
.y1d{bottom:742.527000px;}
.y5a{bottom:746.838000px;}
.yd1{bottom:747.919500px;}
.yb3{bottom:751.602000px;}
.y97{bottom:752.047500px;}
.y3{bottom:755.670000px;}
.y79{bottom:758.524500px;}
.ye0{bottom:758.958000px;}
.yf4{bottom:766.933500px;}
.y1c{bottom:769.419000px;}
.yd0{bottom:774.810000px;}
.y39{bottom:776.878500px;}
.y59{bottom:777.174000px;}
.y11{bottom:778.015500px;}
.yb2{bottom:778.494000px;}
.y96{bottom:778.938000px;}
.y78{bottom:785.416500px;}
.ydf{bottom:785.848500px;}
.yf3{bottom:793.824000px;}
.y38{bottom:803.769000px;}
.yb1{bottom:805.384500px;}
.y95{bottom:805.828500px;}
.y1b{bottom:811.252500px;}
.y2{bottom:811.306500px;}
.y58{bottom:811.695000px;}
.y77{bottom:812.307000px;}
.ycf{bottom:819.454500px;}
.yf2{bottom:820.714500px;}
.y10{bottom:822.462000px;}
.yde{bottom:827.683500px;}
.y37{bottom:830.659500px;}
.yb0{bottom:832.275000px;}
.y94{bottom:832.720500px;}
.y1a{bottom:838.144500px;}
.y57{bottom:839.274000px;}
.yf1{bottom:847.605000px;}
.ydd{bottom:854.574000px;}
.y76{bottom:858.624000px;}
.y93{bottom:859.611000px;}
.y19{bottom:865.035000px;}
.yf{bottom:866.907000px;}
.yaf{bottom:870.744000px;}
.y36{bottom:872.238000px;}
.yf0{bottom:875.094000px;}
.ydc{bottom:881.464500px;}
.y75{bottom:885.516000px;}
.y92{bottom:886.501500px;}
.yce{bottom:887.272500px;}
.y56{bottom:888.838500px;}
.y18{bottom:891.925500px;}
.ye{bottom:893.797500px;}
.y116{bottom:898.336500px;}
.y35{bottom:899.128500px;}
.ycd{bottom:914.163000px;}
.y55{bottom:915.729000px;}
.yd{bottom:920.689500px;}
.ydb{bottom:923.299500px;}
.yef{bottom:924.892500px;}
.y91{bottom:924.972000px;}
.y115{bottom:925.227000px;}
.y34{bottom:926.019000px;}
.yae{bottom:929.107500px;}
.y74{bottom:931.833000px;}
.y17{bottom:938.244000px;}
.ycc{bottom:941.053500px;}
.y54{bottom:942.621000px;}
.yc{bottom:947.580000px;}
.yda{bottom:950.190000px;}
.y114{bottom:952.716000px;}
.y33{bottom:952.909500px;}
.yad{bottom:955.998000px;}
.y73{bottom:958.725000px;}
.y16{bottom:965.134500px;}
.ycb{bottom:967.944000px;}
.y53{bottom:969.511500px;}
.yb{bottom:974.470500px;}
.yd9{bottom:977.082000px;}
.y113{bottom:979.606500px;}
.y90{bottom:982.888500px;}
.y15{bottom:992.025000px;}
.yca{bottom:994.836000px;}
.y52{bottom:996.402000px;}
.y32{bottom:998.200500px;}
.ya{bottom:1001.361000px;}
.yd8{bottom:1003.972500px;}
.y112{bottom:1007.095500px;}
.y8f{bottom:1009.779000px;}
.y72{bottom:1016.244000px;}
.y14{bottom:1018.915500px;}
.yc9{bottom:1021.726500px;}
.y51{bottom:1023.292500px;}
.y31{bottom:1025.091000px;}
.y9{bottom:1028.251500px;}
.y111{bottom:1033.986000px;}
.y8e{bottom:1036.671000px;}
.y13{bottom:1045.807500px;}
.y71{bottom:1046.580000px;}
.y50{bottom:1050.184500px;}
.y30{bottom:1051.983000px;}
.y110{bottom:1061.475000px;}
.y8d{bottom:1063.561500px;}
.y8{bottom:1072.698000px;}
.y70{bottom:1076.916000px;}
.y2f{bottom:1078.873500px;}
.y10f{bottom:1088.964000px;}
.y4f{bottom:1090.452000px;}
.y6f{bottom:1107.981000px;}
.y10e{bottom:1116.451500px;}
.y1{bottom:1117.342500px;}
.h7{height:27.825462px;}
.hc{height:37.981670px;}
.ha{height:49.853184px;}
.h5{height:50.283571px;}
.h2{height:53.870131px;}
.hb{height:55.915875px;}
.h6{height:57.924340px;}
.h9{height:57.930340px;}
.h8{height:60.426194px;}
.h4{height:72.511265px;}
.h3{height:104.700710px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:127.558500px;}
.xc{left:136.338000px;}
.x15{left:138.591000px;}
.x18{left:145.114500px;}
.xb{left:147.748500px;}
.x7{left:153.891000px;}
.xa{left:171.456000px;}
.x1a{left:177.429000px;}
.xd{left:180.235500px;}
.xf{left:211.336500px;}
.x2{left:231.142500px;}
.x3{left:243.540000px;}
.x19{left:252.297000px;}
.x11{left:298.729500px;}
.x16{left:305.341500px;}
.x13{left:344.857500px;}
.x14{left:351.538500px;}
.xe{left:359.731500px;}
.x10{left:382.819500px;}
.x5{left:392.620500px;}
.x1{left:446.484000px;}
.x12{left:450.952500px;}
.x1e{left:458.938500px;}
.x9{left:462.840000px;}
.x8{left:465.279000px;}
.x4{left:510.235500px;}
.x1d{left:597.130500px;}
.x1c{left:640.500000px;}
.x17{left:727.212000px;}
.x1b{left:765.126000px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.136000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:2.656426pt;}
.ls9{letter-spacing:2.660350pt;}
.ls10{letter-spacing:18.171904pt;}
.lsf{letter-spacing:18.235665pt;}
.lsd{letter-spacing:19.829692pt;}
.lsa{letter-spacing:20.786108pt;}
.lsb{letter-spacing:21.742524pt;}
.lsc{letter-spacing:26.187093pt;}
.ls7{letter-spacing:28.246153pt;}
.lse{letter-spacing:28.947524pt;}
.ls2{letter-spacing:31.242923pt;}
.ls1{letter-spacing:31.880533pt;}
.ls6{letter-spacing:34.303454pt;}
.ls4{letter-spacing:38.320401pt;}
.ls3{letter-spacing:44.887791pt;}
.ls5{letter-spacing:52.602880pt;}
.ws4e{word-spacing:-32.805069pt;}
.wsb3{word-spacing:-31.874157pt;}
.ws1d{word-spacing:-31.211042pt;}
.ws68{word-spacing:-18.962541pt;}
.ws7f{word-spacing:-17.183607pt;}
.wsf{word-spacing:-16.035908pt;}
.ws34{word-spacing:-15.710727pt;}
.ws88{word-spacing:-15.653342pt;}
.wsb4{word-spacing:-15.079492pt;}
.ws27{word-spacing:-14.951970pt;}
.ws93{word-spacing:-14.888209pt;}
.ws9a{word-spacing:-14.569404pt;}
.ws15{word-spacing:-14.505643pt;}
.ws67{word-spacing:-14.250598pt;}
.ws2e{word-spacing:-14.123076pt;}
.ws8f{word-spacing:-13.995554pt;}
.wsb7{word-spacing:-13.931793pt;}
.ws94{word-spacing:-13.804271pt;}
.ws62{word-spacing:-13.740510pt;}
.ws35{word-spacing:-13.676749pt;}
.ws99{word-spacing:-13.612988pt;}
.ws53{word-spacing:-13.549227pt;}
.ws36{word-spacing:-13.485466pt;}
.ws40{word-spacing:-13.421705pt;}
.ws9d{word-spacing:-13.357943pt;}
.ws5b{word-spacing:-13.294182pt;}
.ws5f{word-spacing:-13.102899pt;}
.ws8c{word-spacing:-13.039138pt;}
.ws8b{word-spacing:-12.975377pt;}
.ws66{word-spacing:-12.911616pt;}
.wsa6{word-spacing:-12.720333pt;}
.ws75{word-spacing:-12.592811pt;}
.wsb1{word-spacing:-12.529050pt;}
.ws29{word-spacing:-12.465289pt;}
.ws52{word-spacing:-12.427032pt;}
.ws3f{word-spacing:-12.299510pt;}
.ws9b{word-spacing:-12.146483pt;}
.ws96{word-spacing:-12.082722pt;}
.ws2f{word-spacing:-12.018961pt;}
.ws59{word-spacing:-11.955200pt;}
.ws6{word-spacing:-11.948824pt;}
.ws21{word-spacing:-11.757541pt;}
.ws48{word-spacing:-11.636395pt;}
.ws9e{word-spacing:-11.508873pt;}
.ws77{word-spacing:-11.445111pt;}
.ws10{word-spacing:-11.381350pt;}
.ws73{word-spacing:-11.183691pt;}
.ws5e{word-spacing:-11.126306pt;}
.ws47{word-spacing:-11.062545pt;}
.ws6d{word-spacing:-10.992408pt;}
.ws22{word-spacing:-10.820253pt;}
.ws41{word-spacing:-10.743740pt;}
.ws2a{word-spacing:-10.616218pt;}
.ws89{word-spacing:-10.552457pt;}
.wsaf{word-spacing:-10.488695pt;}
.ws2{word-spacing:-10.424934pt;}
.ws7{word-spacing:-10.361173pt;}
.ws23{word-spacing:-10.297412pt;}
.ws4c{word-spacing:-10.233651pt;}
.ws46{word-spacing:-10.195395pt;}
.ws8e{word-spacing:-10.106129pt;}
.ws60{word-spacing:-10.042368pt;}
.ws38{word-spacing:-9.908470pt;}
.ws72{word-spacing:-9.723563pt;}
.wse{word-spacing:-9.659802pt;}
.wsa7{word-spacing:-9.621545pt;}
.ws2d{word-spacing:-9.596041pt;}
.ws0{word-spacing:-9.557784pt;}
.ws6c{word-spacing:-9.532279pt;}
.ws4b{word-spacing:-9.468518pt;}
.ws1e{word-spacing:-9.462142pt;}
.ws7d{word-spacing:-9.277235pt;}
.ws61{word-spacing:-9.270859pt;}
.ws43{word-spacing:-9.213474pt;}
.ws55{word-spacing:-9.149713pt;}
.ws32{word-spacing:-9.085952pt;}
.ws86{word-spacing:-9.022191pt;}
.ws42{word-spacing:-8.958430pt;}
.ws65{word-spacing:-8.894669pt;}
.ws76{word-spacing:-8.830908pt;}
.ws5c{word-spacing:-8.703386pt;}
.ws1f{word-spacing:-8.652377pt;}
.ws45{word-spacing:-8.575863pt;}
.ws30{word-spacing:-8.569487pt;}
.wsa2{word-spacing:-8.512102pt;}
.ws8d{word-spacing:-8.410085pt;}
.ws70{word-spacing:-8.378204pt;}
.ws1c{word-spacing:-8.320819pt;}
.ws90{word-spacing:-8.257058pt;}
.ws20{word-spacing:-8.193297pt;}
.ws44{word-spacing:-8.129536pt;}
.ws63{word-spacing:-8.123160pt;}
.ws37{word-spacing:-8.078527pt;}
.ws69{word-spacing:-8.065775pt;}
.wsb6{word-spacing:-7.938253pt;}
.ws16{word-spacing:-7.931877pt;}
.ws33{word-spacing:-7.746970pt;}
.ws74{word-spacing:-7.683209pt;}
.ws7e{word-spacing:-7.619447pt;}
.ws17{word-spacing:-7.313394pt;}
.ws6f{word-spacing:-7.300642pt;}
.ws14{word-spacing:-7.236881pt;}
.ws18{word-spacing:-6.918076pt;}
.ws80{word-spacing:-6.854315pt;}
.ws6a{word-spacing:-6.726793pt;}
.ws85{word-spacing:-6.663031pt;}
.ws28{word-spacing:-6.599270pt;}
.ws7a{word-spacing:-6.471748pt;}
.wsa4{word-spacing:-6.344226pt;}
.ws49{word-spacing:-6.216704pt;}
.ws95{word-spacing:-5.961660pt;}
.wsad{word-spacing:-5.897899pt;}
.ws39{word-spacing:-5.827761pt;}
.ws3d{word-spacing:-5.706615pt;}
.wsa9{word-spacing:-5.642854pt;}
.ws25{word-spacing:-5.451571pt;}
.wsac{word-spacing:-5.413315pt;}
.wsb5{word-spacing:-5.387810pt;}
.ws11{word-spacing:-5.381434pt;}
.ws6b{word-spacing:-5.260288pt;}
.wsb2{word-spacing:-5.222031pt;}
.wsaa{word-spacing:-5.158270pt;}
.ws81{word-spacing:-5.132766pt;}
.ws9c{word-spacing:-5.094509pt;}
.ws3a{word-spacing:-5.069005pt;}
.ws84{word-spacing:-5.005244pt;}
.ws57{word-spacing:-4.941483pt;}
.ws12{word-spacing:-4.890474pt;}
.ws3c{word-spacing:-4.743823pt;}
.ws13{word-spacing:-4.686438pt;}
.ws8{word-spacing:-4.622677pt;}
.ws9{word-spacing:-4.558916pt;}
.ws56{word-spacing:-4.520660pt;}
.ws87{word-spacing:-4.495155pt;}
.wsa3{word-spacing:-4.431394pt;}
.ws79{word-spacing:-4.367633pt;}
.ws3e{word-spacing:-4.240111pt;}
.ws26{word-spacing:-4.176350pt;}
.ws9f{word-spacing:-4.112589pt;}
.ws31{word-spacing:-4.042452pt;}
.ws3b{word-spacing:-3.921306pt;}
.ws71{word-spacing:-3.666261pt;}
.ws64{word-spacing:-3.596124pt;}
.wsb0{word-spacing:-3.538739pt;}
.ws4a{word-spacing:-3.474978pt;}
.ws92{word-spacing:-3.411217pt;}
.ws6e{word-spacing:-3.156173pt;}
.ws91{word-spacing:-3.117916pt;}
.wsa0{word-spacing:-3.028651pt;}
.ws7c{word-spacing:-2.964890pt;}
.ws83{word-spacing:-2.901129pt;}
.ws78{word-spacing:-2.837367pt;}
.ws19{word-spacing:-2.448425pt;}
.wsa8{word-spacing:-2.327279pt;}
.ws8a{word-spacing:-2.263518pt;}
.ws1a{word-spacing:-2.212509pt;}
.wsae{word-spacing:-2.199757pt;}
.ws1b{word-spacing:-2.135996pt;}
.wsc{word-spacing:-1.944713pt;}
.ws82{word-spacing:-1.880951pt;}
.wsa5{word-spacing:-1.370863pt;}
.wsd{word-spacing:-0.988297pt;}
.ws98{word-spacing:-0.924535pt;}
.ws97{word-spacing:-0.886279pt;}
.wsa1{word-spacing:-0.669491pt;}
.ws58{word-spacing:-0.541969pt;}
.ws24{word-spacing:-0.223164pt;}
.ws4{word-spacing:-0.091815pt;}
.ws2b{word-spacing:-0.053134pt;}
.ws5d{word-spacing:-0.031881pt;}
.ws3{word-spacing:0.000000pt;}
.ws54{word-spacing:16.074165pt;}
.wsb9{word-spacing:17.502413pt;}
.ws5{word-spacing:21.908303pt;}
.ws5a{word-spacing:27.927269pt;}
.ws2c{word-spacing:28.003782pt;}
.wsab{word-spacing:29.318359pt;}
.wsa{word-spacing:32.869937pt;}
.ws1{word-spacing:40.055954pt;}
.wsb{word-spacing:98.977073pt;}
.ws4f{word-spacing:346.190711pt;}
.ws51{word-spacing:360.026863pt;}
.ws7b{word-spacing:491.502182pt;}
.ws4d{word-spacing:498.777320pt;}
.ws50{word-spacing:525.295548pt;}
.wsb8{word-spacing:887.145977pt;}
._8{margin-left:-31.816772pt;}
._10{margin-left:-8.171577pt;}
._2b{margin-left:-6.248585pt;}
._17{margin-left:-5.228407pt;}
._1b{margin-left:-4.208230pt;}
._0{margin-left:-3.188053pt;}
._1{margin-left:-1.721549pt;}
._2{width:1.721549pt;}
._15{width:3.188053pt;}
._46{width:14.983851pt;}
._41{width:17.406771pt;}
._2a{width:20.020975pt;}
._22{width:23.272789pt;}
._23{width:24.229205pt;}
._19{width:25.823232pt;}
._1a{width:27.481020pt;}
._1e{width:28.564958pt;}
._20{width:29.712657pt;}
._24{width:30.924117pt;}
._18{width:32.645666pt;}
._b{width:33.602082pt;}
._7{width:35.451153pt;}
._14{width:37.300224pt;}
._1d{width:38.192879pt;}
._e{width:39.468100pt;}
._9{width:41.062127pt;}
._29{width:42.146065pt;}
._a{width:43.038720pt;}
._21{width:44.058897pt;}
._28{width:44.951552pt;}
._12{width:46.290534pt;}
._44{width:47.374473pt;}
._42{width:48.840977pt;}
._43{width:49.797393pt;}
._45{width:51.391420pt;}
._40{width:52.985446pt;}
._c{width:54.133146pt;}
._16{width:56.045978pt;}
._4{width:57.767526pt;}
._13{width:62.804651pt;}
._6{width:63.824828pt;}
._1f{width:84.164373pt;}
._1c{width:99.068889pt;}
._11{width:112.346999pt;}
._2c{width:116.491469pt;}
._33{width:150.794923pt;}
._25{width:165.077402pt;}
._31{width:218.445414pt;}
._3e{width:228.455902pt;}
._3c{width:239.167761pt;}
._3f{width:246.819089pt;}
._4a{width:250.007142pt;}
._4c{width:254.151612pt;}
._2f{width:275.639091pt;}
._27{width:333.279095pt;}
._48{width:336.977237pt;}
._49{width:380.781090pt;}
._26{width:391.365427pt;}
._3b{width:393.533303pt;}
._39{width:403.926357pt;}
._35{width:409.664853pt;}
._38{width:428.219324pt;}
._36{width:468.133751pt;}
._4b{width:571.044113pt;}
._47{width:633.912525pt;}
._3a{width:648.450048pt;}
._34{width:707.046468pt;}
._4d{width:742.178816pt;}
._32{width:746.897135pt;}
._3d{width:783.623509pt;}
._30{width:998.944631pt;}
._37{width:1118.496631pt;}
._2d{width:1139.601545pt;}
._2e{width:1309.269743pt;}
._d{width:1691.836143pt;}
._5{width:1769.752166pt;}
._f{width:1777.212211pt;}
._3{width:1894.787618pt;}
.fs4{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs0{font-size:63.761067pt;}
.fs6{font-size:76.513067pt;}
.fs2{font-size:91.815467pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:35.740000pt;}
.y4e{bottom:75.590667pt;}
.y10d{bottom:75.642667pt;}
.y6e{bottom:80.410667pt;}
.y7{bottom:95.094667pt;}
.y8c{bottom:98.040000pt;}
.y4d{bottom:99.493333pt;}
.y10c{bottom:100.077333pt;}
.yac{bottom:103.244000pt;}
.y6d{bottom:103.686667pt;}
.y8b{bottom:121.942667pt;}
.y4c{bottom:123.396000pt;}
.y10b{bottom:123.980000pt;}
.yab{bottom:127.146667pt;}
.y6c{bottom:127.589333pt;}
.yc8{bottom:136.496000pt;}
.y2e{bottom:143.629333pt;}
.y8a{bottom:145.845333pt;}
.y4b{bottom:147.300000pt;}
.y10a{bottom:148.414667pt;}
.yaa{bottom:151.050667pt;}
.yc7{bottom:160.398667pt;}
.y6b{bottom:161.784000pt;}
.y2d{bottom:168.297333pt;}
.y89{bottom:169.749333pt;}
.y4a{bottom:171.202667pt;}
.y109{bottom:172.317333pt;}
.ya9{bottom:174.953333pt;}
.yc6{bottom:184.302667pt;}
.y2c{bottom:192.200000pt;}
.y88{bottom:193.652000pt;}
.y108{bottom:196.752000pt;}
.yc5{bottom:208.205333pt;}
.y49{bottom:211.461333pt;}
.y6a{bottom:213.037333pt;}
.y2b{bottom:216.104000pt;}
.y87{bottom:217.554667pt;}
.ya8{bottom:221.076000pt;}
.y107{bottom:221.185333pt;}
.yc4{bottom:232.108000pt;}
.y48{bottom:235.364000pt;}
.y69{bottom:236.940000pt;}
.y2a{bottom:240.006667pt;}
.y86{bottom:241.457333pt;}
.y106{bottom:245.620000pt;}
.ya7{bottom:248.041333pt;}
.yc3{bottom:256.010667pt;}
.y47{bottom:259.266667pt;}
.y68{bottom:260.844000pt;}
.y29{bottom:263.909333pt;}
.y85{bottom:265.361333pt;}
.y105{bottom:269.522667pt;}
.yee{bottom:273.569333pt;}
.ya6{bottom:275.006667pt;}
.yc2{bottom:279.913333pt;}
.y67{bottom:284.746667pt;}
.y84{bottom:289.264000pt;}
.y46{bottom:293.461333pt;}
.y104{bottom:293.957333pt;}
.ya5{bottom:294.268000pt;}
.yed{bottom:297.472000pt;}
.y28{bottom:303.593333pt;}
.y83{bottom:313.166667pt;}
.yc1{bottom:316.916000pt;}
.y103{bottom:317.860000pt;}
.y66{bottom:320.540000pt;}
.ya4{bottom:321.233333pt;}
.yec{bottom:334.658667pt;}
.yc0{bottom:340.820000pt;}
.y102{bottom:342.294667pt;}
.y65{bottom:344.444000pt;}
.y45{bottom:345.316000pt;}
.y82{bottom:347.361333pt;}
.ya3{bottom:348.198667pt;}
.yeb{bottom:358.562667pt;}
.y27{bottom:363.876000pt;}
.ybf{bottom:364.722667pt;}
.y101{bottom:366.729333pt;}
.ya2{bottom:367.460000pt;}
.y64{bottom:368.346667pt;}
.y44{bottom:369.220000pt;}
.y6{bottom:386.078667pt;}
.y26{bottom:387.778667pt;}
.ybe{bottom:388.625333pt;}
.y100{bottom:390.632000pt;}
.y63{bottom:392.249333pt;}
.y43{bottom:393.122667pt;}
.ya1{bottom:394.425333pt;}
.yea{bottom:395.748000pt;}
.y81{bottom:399.334667pt;}
.y5{bottom:409.981333pt;}
.y25{bottom:411.681333pt;}
.ybd{bottom:412.528000pt;}
.yff{bottom:415.066667pt;}
.y42{bottom:417.025333pt;}
.ye9{bottom:419.652000pt;}
.ya0{bottom:421.390667pt;}
.y62{bottom:428.042667pt;}
.y4{bottom:433.884000pt;}
.ybc{bottom:436.432000pt;}
.y80{bottom:436.521333pt;}
.yfe{bottom:438.969333pt;}
.y9f{bottom:440.652000pt;}
.ye8{bottom:443.554667pt;}
.y61{bottom:451.946667pt;}
.y24{bottom:452.853333pt;}
.y41{bottom:453.984000pt;}
.ybb{bottom:460.334667pt;}
.yfd{bottom:463.404000pt;}
.y9e{bottom:467.617333pt;}
.y7f{bottom:473.708000pt;}
.y23{bottom:476.756000pt;}
.y40{bottom:477.886667pt;}
.ye7{bottom:480.741333pt;}
.yba{bottom:484.237333pt;}
.y60{bottom:487.740000pt;}
.yfc{bottom:487.837333pt;}
.y9d{bottom:494.582667pt;}
.y7e{bottom:497.610667pt;}
.y3f{bottom:501.789333pt;}
.ye6{bottom:504.644000pt;}
.yb9{bottom:508.140000pt;}
.y5f{bottom:511.642667pt;}
.yfb{bottom:512.272000pt;}
.y22{bottom:513.942667pt;}
.yd7{bottom:521.398667pt;}
.y9c{bottom:521.548000pt;}
.y3e{bottom:525.692000pt;}
.ye5{bottom:528.546667pt;}
.yb8{bottom:532.044000pt;}
.y7d{bottom:534.797333pt;}
.yfa{bottom:536.174667pt;}
.y21{bottom:537.845333pt;}
.yd6{bottom:545.302667pt;}
.y9b{bottom:548.513333pt;}
.y5e{bottom:555.994667pt;}
.yf9{bottom:560.609333pt;}
.y3d{bottom:562.650667pt;}
.ye4{bottom:565.733333pt;}
.yd5{bottom:569.205333pt;}
.y7c{bottom:571.984000pt;}
.yb7{bottom:572.478667pt;}
.y20{bottom:575.032000pt;}
.y9a{bottom:576.010667pt;}
.y5d{bottom:582.960000pt;}
.yf8{bottom:584.512000pt;}
.ye3{bottom:589.636000pt;}
.y3c{bottom:592.966667pt;}
.yd4{bottom:593.108000pt;}
.yb6{bottom:596.382667pt;}
.y1f{bottom:598.934667pt;}
.y99{bottom:600.525333pt;}
.yf7{bottom:608.946667pt;}
.y7b{bottom:609.169333pt;}
.y5c{bottom:609.925333pt;}
.ye2{bottom:613.540000pt;}
.yd3{bottom:617.010667pt;}
.yb5{bottom:620.285333pt;}
.y1e{bottom:622.837333pt;}
.y3b{bottom:623.284000pt;}
.yf6{bottom:632.849333pt;}
.y7a{bottom:633.073333pt;}
.y5b{bottom:636.890667pt;}
.yd2{bottom:640.914667pt;}
.yb4{bottom:644.188000pt;}
.y98{bottom:644.584000pt;}
.ye1{bottom:650.725333pt;}
.y3a{bottom:653.600000pt;}
.yf5{bottom:657.284000pt;}
.y1d{bottom:660.024000pt;}
.y5a{bottom:663.856000pt;}
.yd1{bottom:664.817333pt;}
.yb3{bottom:668.090667pt;}
.y97{bottom:668.486667pt;}
.y3{bottom:671.706667pt;}
.y79{bottom:674.244000pt;}
.ye0{bottom:674.629333pt;}
.yf4{bottom:681.718667pt;}
.y1c{bottom:683.928000pt;}
.yd0{bottom:688.720000pt;}
.y39{bottom:690.558667pt;}
.y59{bottom:690.821333pt;}
.y11{bottom:691.569333pt;}
.yb2{bottom:691.994667pt;}
.y96{bottom:692.389333pt;}
.y78{bottom:698.148000pt;}
.ydf{bottom:698.532000pt;}
.yf3{bottom:705.621333pt;}
.y38{bottom:714.461333pt;}
.yb1{bottom:715.897333pt;}
.y95{bottom:716.292000pt;}
.y1b{bottom:721.113333pt;}
.y2{bottom:721.161333pt;}
.y58{bottom:721.506667pt;}
.y77{bottom:722.050667pt;}
.ycf{bottom:728.404000pt;}
.yf2{bottom:729.524000pt;}
.y10{bottom:731.077333pt;}
.yde{bottom:735.718667pt;}
.y37{bottom:738.364000pt;}
.yb0{bottom:739.800000pt;}
.y94{bottom:740.196000pt;}
.y1a{bottom:745.017333pt;}
.y57{bottom:746.021333pt;}
.yf1{bottom:753.426667pt;}
.ydd{bottom:759.621333pt;}
.y76{bottom:763.221333pt;}
.y93{bottom:764.098667pt;}
.y19{bottom:768.920000pt;}
.yf{bottom:770.584000pt;}
.yaf{bottom:773.994667pt;}
.y36{bottom:775.322667pt;}
.yf0{bottom:777.861333pt;}
.ydc{bottom:783.524000pt;}
.y75{bottom:787.125333pt;}
.y92{bottom:788.001333pt;}
.yce{bottom:788.686667pt;}
.y56{bottom:790.078667pt;}
.y18{bottom:792.822667pt;}
.ye{bottom:794.486667pt;}
.y116{bottom:798.521333pt;}
.y35{bottom:799.225333pt;}
.ycd{bottom:812.589333pt;}
.y55{bottom:813.981333pt;}
.yd{bottom:818.390667pt;}
.ydb{bottom:820.710667pt;}
.yef{bottom:822.126667pt;}
.y91{bottom:822.197333pt;}
.y115{bottom:822.424000pt;}
.y34{bottom:823.128000pt;}
.yae{bottom:825.873333pt;}
.y74{bottom:828.296000pt;}
.y17{bottom:833.994667pt;}
.ycc{bottom:836.492000pt;}
.y54{bottom:837.885333pt;}
.yc{bottom:842.293333pt;}
.yda{bottom:844.613333pt;}
.y114{bottom:846.858667pt;}
.y33{bottom:847.030667pt;}
.yad{bottom:849.776000pt;}
.y73{bottom:852.200000pt;}
.y16{bottom:857.897333pt;}
.ycb{bottom:860.394667pt;}
.y53{bottom:861.788000pt;}
.yb{bottom:866.196000pt;}
.yd9{bottom:868.517333pt;}
.y113{bottom:870.761333pt;}
.y90{bottom:873.678667pt;}
.y15{bottom:881.800000pt;}
.yca{bottom:884.298667pt;}
.y52{bottom:885.690667pt;}
.y32{bottom:887.289333pt;}
.ya{bottom:890.098667pt;}
.yd8{bottom:892.420000pt;}
.y112{bottom:895.196000pt;}
.y8f{bottom:897.581333pt;}
.y72{bottom:903.328000pt;}
.y14{bottom:905.702667pt;}
.yc9{bottom:908.201333pt;}
.y51{bottom:909.593333pt;}
.y31{bottom:911.192000pt;}
.y9{bottom:914.001333pt;}
.y111{bottom:919.098667pt;}
.y8e{bottom:921.485333pt;}
.y13{bottom:929.606667pt;}
.y71{bottom:930.293333pt;}
.y50{bottom:933.497333pt;}
.y30{bottom:935.096000pt;}
.y110{bottom:943.533333pt;}
.y8d{bottom:945.388000pt;}
.y8{bottom:953.509333pt;}
.y70{bottom:957.258667pt;}
.y2f{bottom:958.998667pt;}
.y10f{bottom:967.968000pt;}
.y4f{bottom:969.290667pt;}
.y6f{bottom:984.872000pt;}
.y10e{bottom:992.401333pt;}
.y1{bottom:993.193333pt;}
.h7{height:24.733744pt;}
.hc{height:33.761485pt;}
.ha{height:44.313941pt;}
.h5{height:44.696508pt;}
.h2{height:47.884561pt;}
.hb{height:49.703000pt;}
.h6{height:51.488302pt;}
.h9{height:51.493636pt;}
.h8{height:53.712173pt;}
.h4{height:64.454458pt;}
.h3{height:93.067298pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:113.385333pt;}
.xc{left:121.189333pt;}
.x15{left:123.192000pt;}
.x18{left:128.990667pt;}
.xb{left:131.332000pt;}
.x7{left:136.792000pt;}
.xa{left:152.405333pt;}
.x1a{left:157.714667pt;}
.xd{left:160.209333pt;}
.xf{left:187.854667pt;}
.x2{left:205.460000pt;}
.x3{left:216.480000pt;}
.x19{left:224.264000pt;}
.x11{left:265.537333pt;}
.x16{left:271.414667pt;}
.x13{left:306.540000pt;}
.x14{left:312.478667pt;}
.xe{left:319.761333pt;}
.x10{left:340.284000pt;}
.x5{left:348.996000pt;}
.x1{left:396.874667pt;}
.x12{left:400.846667pt;}
.x1e{left:407.945333pt;}
.x9{left:411.413333pt;}
.x8{left:413.581333pt;}
.x4{left:453.542667pt;}
.x1d{left:530.782667pt;}
.x1c{left:569.333333pt;}
.x17{left:646.410667pt;}
.x1b{left:680.112000pt;}
}




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