
    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_a999bfa015a51ccc6d7777e7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2b411f67c8aaafbc829fcb34.woff')format("woff");}.ff2{font-family:ff2;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a4419fe1c0121aefbfdfda26.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;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_d3c6dd8652c73c695e1b17b1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.851000;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_b81c87fbd8c0d978e90152e1.woff')format("woff");}.ff5{font-family:ff5;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_af2e15d494108712ec246b8f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_9103f6ce12b3dbb73f45ee65.woff')format("woff");}.ff7{font-family:ff7;line-height:1.020000;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_544ceb6fec173c4645eecf16.woff')format("woff");}.ff8{font-family:ff8;line-height:0.902344;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_be898fd3ccc11800dfc5f971.woff')format("woff");}.ff9{font-family:ff9;line-height:1.104492;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_54e120b0d524a11592ca3a52.woff')format("woff");}.ffa{font-family:ffa;line-height:0.881836;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:-23.976000px;}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.976000px;}
.ls1d{letter-spacing:-7.632000px;}
.ls14{letter-spacing:-5.544000px;}
.ls27{letter-spacing:-5.400000px;}
.ls25{letter-spacing:-3.672000px;}
.ls2a{letter-spacing:-3.528000px;}
.ls45{letter-spacing:-3.384000px;}
.ls3f{letter-spacing:-3.096000px;}
.ls44{letter-spacing:-3.024000px;}
.ls49{letter-spacing:-2.808000px;}
.ls39{letter-spacing:-2.736000px;}
.ls3d{letter-spacing:-2.592000px;}
.ls43{letter-spacing:-2.520000px;}
.ls29{letter-spacing:-2.448000px;}
.ls3e{letter-spacing:-2.376000px;}
.ls4a{letter-spacing:-2.304000px;}
.ls11{letter-spacing:-2.232000px;}
.ls2f{letter-spacing:-2.160000px;}
.ls15{letter-spacing:-2.088000px;}
.ls2d{letter-spacing:-2.016000px;}
.ls2b{letter-spacing:-1.944000px;}
.ls2c{letter-spacing:-1.872000px;}
.lse{letter-spacing:-1.800000px;}
.lsc{letter-spacing:-1.584000px;}
.lsd{letter-spacing:-1.512000px;}
.ls20{letter-spacing:-1.440000px;}
.ls12{letter-spacing:-1.368000px;}
.ls57{letter-spacing:-1.344000px;}
.ls13{letter-spacing:-1.296000px;}
.ls1a{letter-spacing:-1.224000px;}
.ls48{letter-spacing:-1.200000px;}
.ls1c{letter-spacing:-1.152000px;}
.lsf{letter-spacing:-1.080000px;}
.ls1b{letter-spacing:-1.008000px;}
.ls31{letter-spacing:-0.960000px;}
.ls28{letter-spacing:-0.936000px;}
.ls36{letter-spacing:-0.864000px;}
.ls30{letter-spacing:-0.840000px;}
.ls10{letter-spacing:-0.792000px;}
.lsb{letter-spacing:-0.720000px;}
.ls24{letter-spacing:-0.648000px;}
.ls3b{letter-spacing:-0.600000px;}
.ls38{letter-spacing:-0.576000px;}
.ls4{letter-spacing:-0.540000px;}
.ls40{letter-spacing:-0.504000px;}
.ls46{letter-spacing:-0.432000px;}
.ls4b{letter-spacing:-0.419760px;}
.ls1e{letter-spacing:-0.360000px;}
.ls53{letter-spacing:-0.336000px;}
.ls56{letter-spacing:-0.288000px;}
.ls5f{letter-spacing:-0.240000px;}
.ls52{letter-spacing:-0.192000px;}
.ls7{letter-spacing:-0.180000px;}
.ls37{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.120000px;}
.ls3c{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.054000px;}
.ls60{letter-spacing:0.060000px;}
.ls21{letter-spacing:0.072000px;}
.ls2e{letter-spacing:0.144000px;}
.ls54{letter-spacing:0.192000px;}
.ls55{letter-spacing:0.240000px;}
.lsa{letter-spacing:0.288000px;}
.ls50{letter-spacing:0.336000px;}
.ls32{letter-spacing:0.394800px;}
.ls26{letter-spacing:0.432000px;}
.ls3a{letter-spacing:0.504000px;}
.ls42{letter-spacing:0.576000px;}
.ls22{letter-spacing:0.648000px;}
.ls58{letter-spacing:0.816000px;}
.ls33{letter-spacing:0.864000px;}
.ls19{letter-spacing:1.008000px;}
.ls1f{letter-spacing:1.080000px;}
.ls18{letter-spacing:1.152000px;}
.ls59{letter-spacing:1.392000px;}
.ls47{letter-spacing:1.512000px;}
.ls34{letter-spacing:1.584000px;}
.ls5b{letter-spacing:1.632000px;}
.ls17{letter-spacing:1.800000px;}
.ls5a{letter-spacing:2.352000px;}
.ls4c{letter-spacing:2.376000px;}
.ls5d{letter-spacing:4.080000px;}
.ls4f{letter-spacing:4.752000px;}
.ls5c{letter-spacing:4.800000px;}
.ls51{letter-spacing:4.848000px;}
.ls16{letter-spacing:5.184000px;}
.ls5e{letter-spacing:5.460000px;}
.ls41{letter-spacing:5.544000px;}
.ls6{letter-spacing:5.568000px;}
.ls8{letter-spacing:5.664000px;}
.ls9{letter-spacing:6.000000px;}
.ls4d{letter-spacing:6.408000px;}
.ls4e{letter-spacing:6.480000px;}
.ls35{letter-spacing:6.696000px;}
.ls23{letter-spacing:9.360000px;}
.ls2{letter-spacing:10.824000px;}
.ls3{letter-spacing:12.474000px;}
.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;}
}
.ws2{word-spacing:-27.648000px;}
.ws12{word-spacing:-25.416000px;}
.ws63{word-spacing:-23.340000px;}
.ws62{word-spacing:-22.608000px;}
.ws4f{word-spacing:-20.808000px;}
.ws2c{word-spacing:-20.664000px;}
.ws58{word-spacing:-20.232000px;}
.ws51{word-spacing:-19.440000px;}
.ws40{word-spacing:-17.208000px;}
.ws43{word-spacing:-16.992000px;}
.ws44{word-spacing:-16.848000px;}
.ws41{word-spacing:-16.776000px;}
.ws5c{word-spacing:-16.704000px;}
.ws42{word-spacing:-16.560000px;}
.ws2a{word-spacing:-16.488000px;}
.ws61{word-spacing:-16.344000px;}
.ws56{word-spacing:-16.272000px;}
.ws50{word-spacing:-16.200000px;}
.ws2e{word-spacing:-15.912000px;}
.ws2d{word-spacing:-15.840000px;}
.ws57{word-spacing:-15.768000px;}
.ws3f{word-spacing:-15.696000px;}
.ws3b{word-spacing:-15.624000px;}
.ws48{word-spacing:-15.408000px;}
.ws2b{word-spacing:-15.336000px;}
.ws73{word-spacing:-15.120000px;}
.ws6f{word-spacing:-14.880000px;}
.ws4{word-spacing:-14.700000px;}
.ws49{word-spacing:-14.688000px;}
.wsa{word-spacing:-14.634000px;}
.ws6c{word-spacing:-14.304000px;}
.ws3{word-spacing:-14.280000px;}
.ws65{word-spacing:-13.824000px;}
.ws6e{word-spacing:-13.776000px;}
.ws6a{word-spacing:-13.728000px;}
.ws68{word-spacing:-13.632000px;}
.ws66{word-spacing:-12.432000px;}
.ws64{word-spacing:-12.336000px;}
.ws6b{word-spacing:-12.144000px;}
.ws69{word-spacing:-12.048000px;}
.ws67{word-spacing:-11.664000px;}
.ws6d{word-spacing:-11.424000px;}
.ws2f{word-spacing:-10.896000px;}
.ws23{word-spacing:-10.152000px;}
.ws60{word-spacing:-9.409620px;}
.ws3e{word-spacing:-6.696000px;}
.wsd{word-spacing:-6.000000px;}
.wsc{word-spacing:-5.664000px;}
.ws52{word-spacing:-5.544000px;}
.ws75{word-spacing:-5.460000px;}
.ws1c{word-spacing:-5.184000px;}
.ws1e{word-spacing:-1.800000px;}
.ws3d{word-spacing:-1.584000px;}
.ws1f{word-spacing:-1.152000px;}
.ws26{word-spacing:-1.080000px;}
.ws20{word-spacing:-1.008000px;}
.ws3c{word-spacing:-0.864000px;}
.ws7{word-spacing:-0.768000px;}
.ws74{word-spacing:-0.720000px;}
.ws29{word-spacing:-0.648000px;}
.ws4a{word-spacing:-0.504000px;}
.ws32{word-spacing:-0.432000px;}
.wse{word-spacing:-0.288000px;}
.ws6{word-spacing:-0.264000px;}
.ws71{word-spacing:-0.192000px;}
.ws37{word-spacing:-0.144000px;}
.ws1{word-spacing:-0.108000px;}
.ws28{word-spacing:-0.072000px;}
.ws0{word-spacing:-0.066000px;}
.ws77{word-spacing:-0.060000px;}
.ws13{word-spacing:-0.041976px;}
.ws5{word-spacing:0.000000px;}
.ws4c{word-spacing:0.072000px;}
.ws46{word-spacing:0.144000px;}
.ws8{word-spacing:0.180000px;}
.ws76{word-spacing:0.240000px;}
.ws72{word-spacing:0.288000px;}
.ws70{word-spacing:0.336000px;}
.ws25{word-spacing:0.360000px;}
.ws5b{word-spacing:0.432000px;}
.ws4e{word-spacing:0.504000px;}
.wsb{word-spacing:0.540000px;}
.ws4b{word-spacing:0.600000px;}
.ws30{word-spacing:0.648000px;}
.wsf{word-spacing:0.720000px;}
.ws16{word-spacing:0.792000px;}
.ws39{word-spacing:0.840000px;}
.ws45{word-spacing:0.864000px;}
.ws34{word-spacing:0.936000px;}
.ws3a{word-spacing:0.960000px;}
.ws22{word-spacing:1.008000px;}
.ws15{word-spacing:1.080000px;}
.ws24{word-spacing:1.152000px;}
.ws5d{word-spacing:1.200000px;}
.ws21{word-spacing:1.224000px;}
.ws19{word-spacing:1.296000px;}
.ws18{word-spacing:1.368000px;}
.ws27{word-spacing:1.440000px;}
.ws11{word-spacing:1.512000px;}
.ws10{word-spacing:1.584000px;}
.ws14{word-spacing:1.800000px;}
.ws55{word-spacing:1.872000px;}
.ws53{word-spacing:1.944000px;}
.ws36{word-spacing:2.016000px;}
.ws1b{word-spacing:2.088000px;}
.ws38{word-spacing:2.160000px;}
.ws17{word-spacing:2.232000px;}
.ws5f{word-spacing:2.304000px;}
.ws54{word-spacing:2.520000px;}
.ws4d{word-spacing:2.592000px;}
.ws47{word-spacing:2.736000px;}
.ws5e{word-spacing:2.808000px;}
.ws59{word-spacing:3.024000px;}
.ws5a{word-spacing:3.384000px;}
.ws35{word-spacing:3.528000px;}
.ws31{word-spacing:3.672000px;}
.ws33{word-spacing:5.400000px;}
.ws1a{word-spacing:5.544000px;}
.ws9{word-spacing:674.346000px;}
.ws1d{word-spacing:692.826000px;}
._18{margin-left:-867.331800px;}
._0{margin-left:-865.107600px;}
._1d{margin-left:-862.784400px;}
._1c{margin-left:-861.583200px;}
._16{margin-left:-860.401800px;}
._19{margin-left:-20.849400px;}
._13{margin-left:-19.546200px;}
._23{margin-left:-9.703200px;}
._6{margin-left:-7.771200px;}
._17{margin-left:-6.566400px;}
._1{margin-left:-5.367600px;}
._5{margin-left:-3.700800px;}
._3{margin-left:-1.857600px;}
._2{width:1.188000px;}
._4{width:2.921400px;}
._c{width:4.334400px;}
._e{width:5.335200px;}
._a{width:6.437400px;}
._d{width:8.366400px;}
._b{width:9.403200px;}
._9{width:10.713600px;}
._11{width:11.763000px;}
._7{width:12.781800px;}
._8{width:13.797000px;}
._12{width:15.125400px;}
._21{width:16.574400px;}
._f{width:17.805600px;}
._10{width:18.871200px;}
._1e{width:21.693600px;}
._22{width:22.964400px;}
._1f{width:24.220800px;}
._20{width:25.437600px;}
._14{width:27.352800px;}
._15{width:28.393200px;}
._1b{width:31.926600px;}
._1a{width:33.256800px;}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:34.980000px;}
.fs7{font-size:41.976000px;}
.fs8{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs9{font-size:78.000000px;}
.fs3{font-size:96.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y23{bottom:55.524900px;}
.y25{bottom:55.899900px;}
.y1{bottom:72.000000px;}
.y24{bottom:72.396900px;}
.y6f{bottom:117.000000px;}
.y6b{bottom:117.000150px;}
.yea{bottom:119.250000px;}
.ybf{bottom:121.500000px;}
.yc6{bottom:123.750000px;}
.y48{bottom:124.500000px;}
.y129{bottom:126.000000px;}
.y22{bottom:130.500000px;}
.y73{bottom:132.000150px;}
.yd7{bottom:132.750000px;}
.y6e{bottom:139.500000px;}
.y148{bottom:140.250000px;}
.y128{bottom:141.000000px;}
.ye9{bottom:141.750000px;}
.ybe{bottom:144.000000px;}
.yc5{bottom:146.250000px;}
.y47{bottom:147.000000px;}
.y9f{bottom:147.000150px;}
.y21{bottom:149.250000px;}
.y8c{bottom:153.000000px;}
.yd6{bottom:155.250000px;}
.y127{bottom:156.000000px;}
.y147{bottom:159.000000px;}
.y6a{bottom:162.000000px;}
.ye8{bottom:164.250000px;}
.ybd{bottom:166.500000px;}
.y20{bottom:168.000000px;}
.yc4{bottom:168.750000px;}
.y46{bottom:169.500000px;}
.y126{bottom:171.000000px;}
.y8b{bottom:175.500000px;}
.yd5{bottom:177.750000px;}
.y72{bottom:182.250000px;}
.y69{bottom:184.500000px;}
.y125{bottom:186.000000px;}
.y1f{bottom:186.750000px;}
.ybc{bottom:189.000000px;}
.y45{bottom:192.000000px;}
.y9e{bottom:195.750000px;}
.y8a{bottom:198.000000px;}
.y71{bottom:200.250000px;}
.y124{bottom:201.000000px;}
.yc3{bottom:202.500000px;}
.y1e{bottom:205.500000px;}
.y68{bottom:207.000000px;}
.y146{bottom:207.750000px;}
.ye7{bottom:209.250000px;}
.ybb{bottom:211.500000px;}
.y44{bottom:214.500000px;}
.y123{bottom:216.000000px;}
.y70{bottom:218.250000px;}
.y89{bottom:220.500000px;}
.yd4{bottom:222.750000px;}
.y1d{bottom:224.250000px;}
.y67{bottom:229.500000px;}
.y122{bottom:231.000000px;}
.ye6{bottom:231.750000px;}
.yba{bottom:234.000000px;}
.y43{bottom:237.000000px;}
.y9d{bottom:240.750000px;}
.y1c{bottom:243.000000px;}
.yd3{bottom:245.250000px;}
.y121{bottom:246.000000px;}
.y145{bottom:249.000000px;}
.yc2{bottom:249.750000px;}
.y6d{bottom:252.000000px;}
.ye5{bottom:254.250000px;}
.yb9{bottom:256.500000px;}
.y66{bottom:258.000000px;}
.y42{bottom:259.500000px;}
.y120{bottom:261.000000px;}
.y1b{bottom:261.750000px;}
.y9c{bottom:263.250000px;}
.y88{bottom:265.500000px;}
.yd2{bottom:267.750000px;}
.yc1{bottom:272.250000px;}
.y6c{bottom:274.500000px;}
.y11f{bottom:276.000000px;}
.yb8{bottom:279.000000px;}
.y1a{bottom:280.500000px;}
.y41{bottom:282.000000px;}
.y9b{bottom:285.750000px;}
.y144{bottom:286.500000px;}
.y87{bottom:288.000000px;}
.yd1{bottom:290.250000px;}
.y11e{bottom:291.000000px;}
.y65{bottom:297.000000px;}
.yb7{bottom:301.500000px;}
.y40{bottom:304.500000px;}
.y143{bottom:305.250000px;}
.yc0{bottom:306.000000px;}
.y19{bottom:306.750000px;}
.y9a{bottom:308.250000px;}
.y86{bottom:310.500000px;}
.yd0{bottom:312.750000px;}
.y64{bottom:319.500000px;}
.y11d{bottom:321.000000px;}
.yb6{bottom:324.000000px;}
.y3f{bottom:327.000000px;}
.y99{bottom:330.750000px;}
.y85{bottom:333.000000px;}
.y11c{bottom:336.000000px;}
.y63{bottom:342.000000px;}
.y142{bottom:342.750000px;}
.yb5{bottom:346.500000px;}
.y3e{bottom:349.500000px;}
.y18{bottom:350.250000px;}
.y11b{bottom:351.000000px;}
.y98{bottom:353.250000px;}
.y84{bottom:355.500000px;}
.ye4{bottom:357.750000px;}
.y141{bottom:361.500000px;}
.y62{bottom:364.500000px;}
.y11a{bottom:366.000000px;}
.y17{bottom:369.000000px;}
.y3d{bottom:372.000000px;}
.y97{bottom:375.750000px;}
.y83{bottom:378.000000px;}
.y140{bottom:380.250000px;}
.y119{bottom:381.000000px;}
.ycf{bottom:382.500000px;}
.y61{bottom:387.000000px;}
.yb4{bottom:391.500000px;}
.yf8{bottom:393.750000px;}
.y3c{bottom:394.500000px;}
.y118{bottom:396.000000px;}
.y16{bottom:396.750000px;}
.y96{bottom:398.250000px;}
.y13f{bottom:399.000000px;}
.y82{bottom:400.500000px;}
.y60{bottom:409.500000px;}
.y117{bottom:411.000000px;}
.yce{bottom:411.750000px;}
.ye3{bottom:414.000000px;}
.y15{bottom:415.500000px;}
.y3b{bottom:417.000000px;}
.y13e{bottom:417.750000px;}
.y95{bottom:420.750000px;}
.y81{bottom:423.000000px;}
.yb3{bottom:425.250000px;}
.y116{bottom:426.000000px;}
.yf7{bottom:429.750000px;}
.y5f{bottom:432.000000px;}
.y14{bottom:434.250000px;}
.ye2{bottom:436.500000px;}
.y3a{bottom:439.500000px;}
.y115{bottom:441.000000px;}
.y94{bottom:443.250000px;}
.y80{bottom:445.500000px;}
.yf6{bottom:447.750000px;}
.y13{bottom:453.000000px;}
.y5e{bottom:454.500000px;}
.y13d{bottom:455.250000px;}
.y114{bottom:456.000000px;}
.ycd{bottom:456.750000px;}
.ye1{bottom:459.000000px;}
.yb2{bottom:461.250000px;}
.y39{bottom:462.000000px;}
.y93{bottom:465.750000px;}
.y7f{bottom:468.000000px;}
.y113{bottom:471.000000px;}
.y12{bottom:471.750000px;}
.y13c{bottom:474.000000px;}
.y5d{bottom:477.000000px;}
.yb1{bottom:479.250000px;}
.ye0{bottom:481.500000px;}
.y38{bottom:484.500000px;}
.y112{bottom:486.000000px;}
.y92{bottom:488.250000px;}
.y11{bottom:490.500000px;}
.y13b{bottom:492.750000px;}
.yf5{bottom:495.000000px;}
.yb0{bottom:497.250000px;}
.y5c{bottom:499.500000px;}
.y111{bottom:501.000000px;}
.ycc{bottom:501.750000px;}
.ydf{bottom:504.000000px;}
.y37{bottom:507.000000px;}
.y10{bottom:509.250000px;}
.y91{bottom:510.750000px;}
.y13a{bottom:511.500000px;}
.y7e{bottom:513.000000px;}
.y110{bottom:516.000000px;}
.yf4{bottom:517.500000px;}
.y5b{bottom:522.000000px;}
.ycb{bottom:524.250000px;}
.yaf{bottom:526.500000px;}
.yf{bottom:528.000000px;}
.y36{bottom:529.500000px;}
.y139{bottom:530.250000px;}
.y10f{bottom:531.000000px;}
.y90{bottom:533.250000px;}
.y7d{bottom:535.500000px;}
.yde{bottom:537.750000px;}
.y5a{bottom:544.500000px;}
.y10e{bottom:546.000000px;}
.ye{bottom:546.750000px;}
.y138{bottom:549.000000px;}
.ya0{bottom:550.500000px;}
.yf3{bottom:551.250000px;}
.y35{bottom:552.000000px;}
.y8f{bottom:555.750000px;}
.y7c{bottom:558.000000px;}
.y10d{bottom:561.000000px;}
.yae{bottom:562.500000px;}
.yd{bottom:565.500000px;}
.y59{bottom:567.000000px;}
.y137{bottom:567.750000px;}
.yca{bottom:569.250000px;}
.ydd{bottom:573.750000px;}
.y34{bottom:574.500000px;}
.y10c{bottom:576.000000px;}
.y8e{bottom:578.250000px;}
.y7b{bottom:580.500000px;}
.yc{bottom:584.250000px;}
.y136{bottom:586.500000px;}
.yf2{bottom:587.250000px;}
.y58{bottom:589.500000px;}
.y10b{bottom:591.000000px;}
.yad{bottom:591.750000px;}
.y33{bottom:597.000000px;}
.yb{bottom:603.000000px;}
.yf1{bottom:605.250000px;}
.y10a{bottom:606.000000px;}
.y57{bottom:612.000000px;}
.yac{bottom:614.250000px;}
.y32{bottom:619.500000px;}
.y109{bottom:621.000000px;}
.y135{bottom:624.000000px;}
.y7a{bottom:625.500000px;}
.ya{bottom:629.253000px;}
.y8d{bottom:630.000000px;}
.y56{bottom:634.500000px;}
.y108{bottom:636.000000px;}
.yab{bottom:636.750000px;}
.y31{bottom:642.000000px;}
.y134{bottom:642.750000px;}
.y79{bottom:648.000000px;}
.y107{bottom:651.000000px;}
.y55{bottom:657.000000px;}
.yaa{bottom:659.250000px;}
.y30{bottom:664.500000px;}
.yc9{bottom:666.000000px;}
.yf0{bottom:668.250000px;}
.y78{bottom:670.500000px;}
.y9{bottom:672.750000px;}
.y133{bottom:675.000000px;}
.y54{bottom:679.500000px;}
.y106{bottom:681.000000px;}
.yc8{bottom:684.000000px;}
.yef{bottom:686.250000px;}
.y2f{bottom:687.000000px;}
.y8{bottom:692.250000px;}
.ya9{bottom:693.000000px;}
.y105{bottom:696.000000px;}
.y53{bottom:702.000000px;}
.y77{bottom:704.250000px;}
.y132{bottom:705.000000px;}
.yf9{bottom:708.000000px;}
.y2e{bottom:709.500000px;}
.ya8{bottom:711.000000px;}
.ydc{bottom:715.500000px;}
.y7{bottom:722.250000px;}
.y131{bottom:723.000000px;}
.y52{bottom:724.500000px;}
.y104{bottom:726.000000px;}
.ya7{bottom:729.000000px;}
.y2d{bottom:732.000000px;}
.yee{bottom:733.500000px;}
.yc7{bottom:735.750000px;}
.ydb{bottom:738.000000px;}
.y103{bottom:741.000000px;}
.y51{bottom:747.000000px;}
.y76{bottom:751.500000px;}
.y2c{bottom:754.500000px;}
.yed{bottom:756.000000px;}
.ya6{bottom:758.250000px;}
.yda{bottom:760.500000px;}
.y50{bottom:769.500000px;}
.y102{bottom:771.000000px;}
.y75{bottom:774.000000px;}
.ya5{bottom:776.250000px;}
.yec{bottom:778.500000px;}
.y2b{bottom:783.000000px;}
.y130{bottom:784.500000px;}
.y101{bottom:786.000000px;}
.y6{bottom:789.750000px;}
.y4f{bottom:792.000000px;}
.ya4{bottom:794.250000px;}
.y12f{bottom:799.500000px;}
.yeb{bottom:801.000000px;}
.yd9{bottom:805.500000px;}
.y74{bottom:807.750000px;}
.y100{bottom:808.500000px;}
.y5{bottom:813.750000px;}
.y4e{bottom:814.500000px;}
.ya3{bottom:823.500000px;}
.y2a{bottom:828.000000px;}
.y12e{bottom:829.500000px;}
.y4d{bottom:837.000000px;}
.yd8{bottom:839.250000px;}
.y12d{bottom:844.500000px;}
.y4{bottom:846.750000px;}
.yff{bottom:849.000000px;}
.ya2{bottom:857.250000px;}
.y4c{bottom:859.500000px;}
.yfe{bottom:864.000000px;}
.y29{bottom:874.500000px;}
.ya1{bottom:875.250000px;}
.y3{bottom:876.750000px;}
.yfd{bottom:879.000000px;}
.y4b{bottom:882.000000px;}
.y12c{bottom:889.500000px;}
.y28{bottom:893.250000px;}
.yfc{bottom:894.000000px;}
.y4a{bottom:904.500000px;}
.yfb{bottom:909.000000px;}
.y27{bottom:912.000000px;}
.y12b{bottom:919.500000px;}
.y49{bottom:927.000000px;}
.y2{bottom:929.250000px;}
.y26{bottom:930.750000px;}
.yfa{bottom:931.500000px;}
.y12a{bottom:934.500000px;}
.h2{height:35.991211px;}
.h10{height:39.072000px;}
.h11{height:40.464000px;}
.ha{height:40.757812px;}
.h1{height:43.989258px;}
.h7{height:45.852539px;}
.hf{height:48.840000px;}
.h8{height:50.947266px;}
.hd{height:52.119141px;}
.h5{height:55.638000px;}
.h9{height:56.041992px;}
.he{height:57.331055px;}
.h6{height:61.136719px;}
.hb{height:62.542969px;}
.hc{height:67.754883px;}
.h4{height:81.515625px;}
.h3{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x5{left:65.277000px;}
.xa{left:67.620000px;}
.x10{left:82.500000px;}
.xb{left:90.000000px;}
.x9{left:99.000000px;}
.x2{left:112.500000px;}
.x3{left:114.164850px;}
.xf{left:115.500000px;}
.xe{left:117.026100px;}
.x11{left:127.500000px;}
.xd{left:135.018000px;}
.x4{left:144.000000px;}
.x7{left:157.952850px;}
.x12{left:160.500000px;}
.x8{left:163.595850px;}
.x13{left:181.500000px;}
.x6{left:263.250000px;}
.xc{left:627.657600px;}
.x1{left:628.834050px;}
@media print{
.v2{vertical-align:-21.312000pt;}
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.312000pt;}
.ls1d{letter-spacing:-6.784000pt;}
.ls14{letter-spacing:-4.928000pt;}
.ls27{letter-spacing:-4.800000pt;}
.ls25{letter-spacing:-3.264000pt;}
.ls2a{letter-spacing:-3.136000pt;}
.ls45{letter-spacing:-3.008000pt;}
.ls3f{letter-spacing:-2.752000pt;}
.ls44{letter-spacing:-2.688000pt;}
.ls49{letter-spacing:-2.496000pt;}
.ls39{letter-spacing:-2.432000pt;}
.ls3d{letter-spacing:-2.304000pt;}
.ls43{letter-spacing:-2.240000pt;}
.ls29{letter-spacing:-2.176000pt;}
.ls3e{letter-spacing:-2.112000pt;}
.ls4a{letter-spacing:-2.048000pt;}
.ls11{letter-spacing:-1.984000pt;}
.ls2f{letter-spacing:-1.920000pt;}
.ls15{letter-spacing:-1.856000pt;}
.ls2d{letter-spacing:-1.792000pt;}
.ls2b{letter-spacing:-1.728000pt;}
.ls2c{letter-spacing:-1.664000pt;}
.lse{letter-spacing:-1.600000pt;}
.lsc{letter-spacing:-1.408000pt;}
.lsd{letter-spacing:-1.344000pt;}
.ls20{letter-spacing:-1.280000pt;}
.ls12{letter-spacing:-1.216000pt;}
.ls57{letter-spacing:-1.194667pt;}
.ls13{letter-spacing:-1.152000pt;}
.ls1a{letter-spacing:-1.088000pt;}
.ls48{letter-spacing:-1.066667pt;}
.ls1c{letter-spacing:-1.024000pt;}
.lsf{letter-spacing:-0.960000pt;}
.ls1b{letter-spacing:-0.896000pt;}
.ls31{letter-spacing:-0.853333pt;}
.ls28{letter-spacing:-0.832000pt;}
.ls36{letter-spacing:-0.768000pt;}
.ls30{letter-spacing:-0.746667pt;}
.ls10{letter-spacing:-0.704000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls24{letter-spacing:-0.576000pt;}
.ls3b{letter-spacing:-0.533333pt;}
.ls38{letter-spacing:-0.512000pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls40{letter-spacing:-0.448000pt;}
.ls46{letter-spacing:-0.384000pt;}
.ls4b{letter-spacing:-0.373120pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls53{letter-spacing:-0.298667pt;}
.ls56{letter-spacing:-0.256000pt;}
.ls5f{letter-spacing:-0.213333pt;}
.ls52{letter-spacing:-0.170667pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls37{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.106667pt;}
.ls3c{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.048000pt;}
.ls60{letter-spacing:0.053333pt;}
.ls21{letter-spacing:0.064000pt;}
.ls2e{letter-spacing:0.128000pt;}
.ls54{letter-spacing:0.170667pt;}
.ls55{letter-spacing:0.213333pt;}
.lsa{letter-spacing:0.256000pt;}
.ls50{letter-spacing:0.298667pt;}
.ls32{letter-spacing:0.350933pt;}
.ls26{letter-spacing:0.384000pt;}
.ls3a{letter-spacing:0.448000pt;}
.ls42{letter-spacing:0.512000pt;}
.ls22{letter-spacing:0.576000pt;}
.ls58{letter-spacing:0.725333pt;}
.ls33{letter-spacing:0.768000pt;}
.ls19{letter-spacing:0.896000pt;}
.ls1f{letter-spacing:0.960000pt;}
.ls18{letter-spacing:1.024000pt;}
.ls59{letter-spacing:1.237333pt;}
.ls47{letter-spacing:1.344000pt;}
.ls34{letter-spacing:1.408000pt;}
.ls5b{letter-spacing:1.450667pt;}
.ls17{letter-spacing:1.600000pt;}
.ls5a{letter-spacing:2.090667pt;}
.ls4c{letter-spacing:2.112000pt;}
.ls5d{letter-spacing:3.626667pt;}
.ls4f{letter-spacing:4.224000pt;}
.ls5c{letter-spacing:4.266667pt;}
.ls51{letter-spacing:4.309333pt;}
.ls16{letter-spacing:4.608000pt;}
.ls5e{letter-spacing:4.853333pt;}
.ls41{letter-spacing:4.928000pt;}
.ls6{letter-spacing:4.949333pt;}
.ls8{letter-spacing:5.034667pt;}
.ls9{letter-spacing:5.333333pt;}
.ls4d{letter-spacing:5.696000pt;}
.ls4e{letter-spacing:5.760000pt;}
.ls35{letter-spacing:5.952000pt;}
.ls23{letter-spacing:8.320000pt;}
.ls2{letter-spacing:9.621333pt;}
.ls3{letter-spacing:11.088000pt;}
.ws2{word-spacing:-24.576000pt;}
.ws12{word-spacing:-22.592000pt;}
.ws63{word-spacing:-20.746667pt;}
.ws62{word-spacing:-20.096000pt;}
.ws4f{word-spacing:-18.496000pt;}
.ws2c{word-spacing:-18.368000pt;}
.ws58{word-spacing:-17.984000pt;}
.ws51{word-spacing:-17.280000pt;}
.ws40{word-spacing:-15.296000pt;}
.ws43{word-spacing:-15.104000pt;}
.ws44{word-spacing:-14.976000pt;}
.ws41{word-spacing:-14.912000pt;}
.ws5c{word-spacing:-14.848000pt;}
.ws42{word-spacing:-14.720000pt;}
.ws2a{word-spacing:-14.656000pt;}
.ws61{word-spacing:-14.528000pt;}
.ws56{word-spacing:-14.464000pt;}
.ws50{word-spacing:-14.400000pt;}
.ws2e{word-spacing:-14.144000pt;}
.ws2d{word-spacing:-14.080000pt;}
.ws57{word-spacing:-14.016000pt;}
.ws3f{word-spacing:-13.952000pt;}
.ws3b{word-spacing:-13.888000pt;}
.ws48{word-spacing:-13.696000pt;}
.ws2b{word-spacing:-13.632000pt;}
.ws73{word-spacing:-13.440000pt;}
.ws6f{word-spacing:-13.226667pt;}
.ws4{word-spacing:-13.066667pt;}
.ws49{word-spacing:-13.056000pt;}
.wsa{word-spacing:-13.008000pt;}
.ws6c{word-spacing:-12.714667pt;}
.ws3{word-spacing:-12.693333pt;}
.ws65{word-spacing:-12.288000pt;}
.ws6e{word-spacing:-12.245333pt;}
.ws6a{word-spacing:-12.202667pt;}
.ws68{word-spacing:-12.117333pt;}
.ws66{word-spacing:-11.050667pt;}
.ws64{word-spacing:-10.965333pt;}
.ws6b{word-spacing:-10.794667pt;}
.ws69{word-spacing:-10.709333pt;}
.ws67{word-spacing:-10.368000pt;}
.ws6d{word-spacing:-10.154667pt;}
.ws2f{word-spacing:-9.685333pt;}
.ws23{word-spacing:-9.024000pt;}
.ws60{word-spacing:-8.364107pt;}
.ws3e{word-spacing:-5.952000pt;}
.wsd{word-spacing:-5.333333pt;}
.wsc{word-spacing:-5.034667pt;}
.ws52{word-spacing:-4.928000pt;}
.ws75{word-spacing:-4.853333pt;}
.ws1c{word-spacing:-4.608000pt;}
.ws1e{word-spacing:-1.600000pt;}
.ws3d{word-spacing:-1.408000pt;}
.ws1f{word-spacing:-1.024000pt;}
.ws26{word-spacing:-0.960000pt;}
.ws20{word-spacing:-0.896000pt;}
.ws3c{word-spacing:-0.768000pt;}
.ws7{word-spacing:-0.682667pt;}
.ws74{word-spacing:-0.640000pt;}
.ws29{word-spacing:-0.576000pt;}
.ws4a{word-spacing:-0.448000pt;}
.ws32{word-spacing:-0.384000pt;}
.wse{word-spacing:-0.256000pt;}
.ws6{word-spacing:-0.234667pt;}
.ws71{word-spacing:-0.170667pt;}
.ws37{word-spacing:-0.128000pt;}
.ws1{word-spacing:-0.096000pt;}
.ws28{word-spacing:-0.064000pt;}
.ws0{word-spacing:-0.058667pt;}
.ws77{word-spacing:-0.053333pt;}
.ws13{word-spacing:-0.037312pt;}
.ws5{word-spacing:0.000000pt;}
.ws4c{word-spacing:0.064000pt;}
.ws46{word-spacing:0.128000pt;}
.ws8{word-spacing:0.160000pt;}
.ws76{word-spacing:0.213333pt;}
.ws72{word-spacing:0.256000pt;}
.ws70{word-spacing:0.298667pt;}
.ws25{word-spacing:0.320000pt;}
.ws5b{word-spacing:0.384000pt;}
.ws4e{word-spacing:0.448000pt;}
.wsb{word-spacing:0.480000pt;}
.ws4b{word-spacing:0.533333pt;}
.ws30{word-spacing:0.576000pt;}
.wsf{word-spacing:0.640000pt;}
.ws16{word-spacing:0.704000pt;}
.ws39{word-spacing:0.746667pt;}
.ws45{word-spacing:0.768000pt;}
.ws34{word-spacing:0.832000pt;}
.ws3a{word-spacing:0.853333pt;}
.ws22{word-spacing:0.896000pt;}
.ws15{word-spacing:0.960000pt;}
.ws24{word-spacing:1.024000pt;}
.ws5d{word-spacing:1.066667pt;}
.ws21{word-spacing:1.088000pt;}
.ws19{word-spacing:1.152000pt;}
.ws18{word-spacing:1.216000pt;}
.ws27{word-spacing:1.280000pt;}
.ws11{word-spacing:1.344000pt;}
.ws10{word-spacing:1.408000pt;}
.ws14{word-spacing:1.600000pt;}
.ws55{word-spacing:1.664000pt;}
.ws53{word-spacing:1.728000pt;}
.ws36{word-spacing:1.792000pt;}
.ws1b{word-spacing:1.856000pt;}
.ws38{word-spacing:1.920000pt;}
.ws17{word-spacing:1.984000pt;}
.ws5f{word-spacing:2.048000pt;}
.ws54{word-spacing:2.240000pt;}
.ws4d{word-spacing:2.304000pt;}
.ws47{word-spacing:2.432000pt;}
.ws5e{word-spacing:2.496000pt;}
.ws59{word-spacing:2.688000pt;}
.ws5a{word-spacing:3.008000pt;}
.ws35{word-spacing:3.136000pt;}
.ws31{word-spacing:3.264000pt;}
.ws33{word-spacing:4.800000pt;}
.ws1a{word-spacing:4.928000pt;}
.ws9{word-spacing:599.418667pt;}
.ws1d{word-spacing:615.845333pt;}
._18{margin-left:-770.961600pt;}
._0{margin-left:-768.984533pt;}
._1d{margin-left:-766.919467pt;}
._1c{margin-left:-765.851733pt;}
._16{margin-left:-764.801600pt;}
._19{margin-left:-18.532800pt;}
._13{margin-left:-17.374400pt;}
._23{margin-left:-8.625067pt;}
._6{margin-left:-6.907733pt;}
._17{margin-left:-5.836800pt;}
._1{margin-left:-4.771200pt;}
._5{margin-left:-3.289600pt;}
._3{margin-left:-1.651200pt;}
._2{width:1.056000pt;}
._4{width:2.596800pt;}
._c{width:3.852800pt;}
._e{width:4.742400pt;}
._a{width:5.722133pt;}
._d{width:7.436800pt;}
._b{width:8.358400pt;}
._9{width:9.523200pt;}
._11{width:10.456000pt;}
._7{width:11.361600pt;}
._8{width:12.264000pt;}
._12{width:13.444800pt;}
._21{width:14.732800pt;}
._f{width:15.827200pt;}
._10{width:16.774400pt;}
._1e{width:19.283200pt;}
._22{width:20.412800pt;}
._1f{width:21.529600pt;}
._20{width:22.611200pt;}
._14{width:24.313600pt;}
._15{width:25.238400pt;}
._1b{width:28.379200pt;}
._1a{width:29.561600pt;}
.fsa{font-size:31.093333pt;}
.fs7{font-size:37.312000pt;}
.fs8{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs9{font-size:69.333333pt;}
.fs3{font-size:85.333333pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:49.355467pt;}
.y25{bottom:49.688800pt;}
.y1{bottom:64.000000pt;}
.y24{bottom:64.352800pt;}
.y6f{bottom:104.000000pt;}
.y6b{bottom:104.000133pt;}
.yea{bottom:106.000000pt;}
.ybf{bottom:108.000000pt;}
.yc6{bottom:110.000000pt;}
.y48{bottom:110.666667pt;}
.y129{bottom:112.000000pt;}
.y22{bottom:116.000000pt;}
.y73{bottom:117.333467pt;}
.yd7{bottom:118.000000pt;}
.y6e{bottom:124.000000pt;}
.y148{bottom:124.666667pt;}
.y128{bottom:125.333333pt;}
.ye9{bottom:126.000000pt;}
.ybe{bottom:128.000000pt;}
.yc5{bottom:130.000000pt;}
.y47{bottom:130.666667pt;}
.y9f{bottom:130.666800pt;}
.y21{bottom:132.666667pt;}
.y8c{bottom:136.000000pt;}
.yd6{bottom:138.000000pt;}
.y127{bottom:138.666667pt;}
.y147{bottom:141.333333pt;}
.y6a{bottom:144.000000pt;}
.ye8{bottom:146.000000pt;}
.ybd{bottom:148.000000pt;}
.y20{bottom:149.333333pt;}
.yc4{bottom:150.000000pt;}
.y46{bottom:150.666667pt;}
.y126{bottom:152.000000pt;}
.y8b{bottom:156.000000pt;}
.yd5{bottom:158.000000pt;}
.y72{bottom:162.000000pt;}
.y69{bottom:164.000000pt;}
.y125{bottom:165.333333pt;}
.y1f{bottom:166.000000pt;}
.ybc{bottom:168.000000pt;}
.y45{bottom:170.666667pt;}
.y9e{bottom:174.000000pt;}
.y8a{bottom:176.000000pt;}
.y71{bottom:178.000000pt;}
.y124{bottom:178.666667pt;}
.yc3{bottom:180.000000pt;}
.y1e{bottom:182.666667pt;}
.y68{bottom:184.000000pt;}
.y146{bottom:184.666667pt;}
.ye7{bottom:186.000000pt;}
.ybb{bottom:188.000000pt;}
.y44{bottom:190.666667pt;}
.y123{bottom:192.000000pt;}
.y70{bottom:194.000000pt;}
.y89{bottom:196.000000pt;}
.yd4{bottom:198.000000pt;}
.y1d{bottom:199.333333pt;}
.y67{bottom:204.000000pt;}
.y122{bottom:205.333333pt;}
.ye6{bottom:206.000000pt;}
.yba{bottom:208.000000pt;}
.y43{bottom:210.666667pt;}
.y9d{bottom:214.000000pt;}
.y1c{bottom:216.000000pt;}
.yd3{bottom:218.000000pt;}
.y121{bottom:218.666667pt;}
.y145{bottom:221.333333pt;}
.yc2{bottom:222.000000pt;}
.y6d{bottom:224.000000pt;}
.ye5{bottom:226.000000pt;}
.yb9{bottom:228.000000pt;}
.y66{bottom:229.333333pt;}
.y42{bottom:230.666667pt;}
.y120{bottom:232.000000pt;}
.y1b{bottom:232.666667pt;}
.y9c{bottom:234.000000pt;}
.y88{bottom:236.000000pt;}
.yd2{bottom:238.000000pt;}
.yc1{bottom:242.000000pt;}
.y6c{bottom:244.000000pt;}
.y11f{bottom:245.333333pt;}
.yb8{bottom:248.000000pt;}
.y1a{bottom:249.333333pt;}
.y41{bottom:250.666667pt;}
.y9b{bottom:254.000000pt;}
.y144{bottom:254.666667pt;}
.y87{bottom:256.000000pt;}
.yd1{bottom:258.000000pt;}
.y11e{bottom:258.666667pt;}
.y65{bottom:264.000000pt;}
.yb7{bottom:268.000000pt;}
.y40{bottom:270.666667pt;}
.y143{bottom:271.333333pt;}
.yc0{bottom:272.000000pt;}
.y19{bottom:272.666667pt;}
.y9a{bottom:274.000000pt;}
.y86{bottom:276.000000pt;}
.yd0{bottom:278.000000pt;}
.y64{bottom:284.000000pt;}
.y11d{bottom:285.333333pt;}
.yb6{bottom:288.000000pt;}
.y3f{bottom:290.666667pt;}
.y99{bottom:294.000000pt;}
.y85{bottom:296.000000pt;}
.y11c{bottom:298.666667pt;}
.y63{bottom:304.000000pt;}
.y142{bottom:304.666667pt;}
.yb5{bottom:308.000000pt;}
.y3e{bottom:310.666667pt;}
.y18{bottom:311.333333pt;}
.y11b{bottom:312.000000pt;}
.y98{bottom:314.000000pt;}
.y84{bottom:316.000000pt;}
.ye4{bottom:318.000000pt;}
.y141{bottom:321.333333pt;}
.y62{bottom:324.000000pt;}
.y11a{bottom:325.333333pt;}
.y17{bottom:328.000000pt;}
.y3d{bottom:330.666667pt;}
.y97{bottom:334.000000pt;}
.y83{bottom:336.000000pt;}
.y140{bottom:338.000000pt;}
.y119{bottom:338.666667pt;}
.ycf{bottom:340.000000pt;}
.y61{bottom:344.000000pt;}
.yb4{bottom:348.000000pt;}
.yf8{bottom:350.000000pt;}
.y3c{bottom:350.666667pt;}
.y118{bottom:352.000000pt;}
.y16{bottom:352.666667pt;}
.y96{bottom:354.000000pt;}
.y13f{bottom:354.666667pt;}
.y82{bottom:356.000000pt;}
.y60{bottom:364.000000pt;}
.y117{bottom:365.333333pt;}
.yce{bottom:366.000000pt;}
.ye3{bottom:368.000000pt;}
.y15{bottom:369.333333pt;}
.y3b{bottom:370.666667pt;}
.y13e{bottom:371.333333pt;}
.y95{bottom:374.000000pt;}
.y81{bottom:376.000000pt;}
.yb3{bottom:378.000000pt;}
.y116{bottom:378.666667pt;}
.yf7{bottom:382.000000pt;}
.y5f{bottom:384.000000pt;}
.y14{bottom:386.000000pt;}
.ye2{bottom:388.000000pt;}
.y3a{bottom:390.666667pt;}
.y115{bottom:392.000000pt;}
.y94{bottom:394.000000pt;}
.y80{bottom:396.000000pt;}
.yf6{bottom:398.000000pt;}
.y13{bottom:402.666667pt;}
.y5e{bottom:404.000000pt;}
.y13d{bottom:404.666667pt;}
.y114{bottom:405.333333pt;}
.ycd{bottom:406.000000pt;}
.ye1{bottom:408.000000pt;}
.yb2{bottom:410.000000pt;}
.y39{bottom:410.666667pt;}
.y93{bottom:414.000000pt;}
.y7f{bottom:416.000000pt;}
.y113{bottom:418.666667pt;}
.y12{bottom:419.333333pt;}
.y13c{bottom:421.333333pt;}
.y5d{bottom:424.000000pt;}
.yb1{bottom:426.000000pt;}
.ye0{bottom:428.000000pt;}
.y38{bottom:430.666667pt;}
.y112{bottom:432.000000pt;}
.y92{bottom:434.000000pt;}
.y11{bottom:436.000000pt;}
.y13b{bottom:438.000000pt;}
.yf5{bottom:440.000000pt;}
.yb0{bottom:442.000000pt;}
.y5c{bottom:444.000000pt;}
.y111{bottom:445.333333pt;}
.ycc{bottom:446.000000pt;}
.ydf{bottom:448.000000pt;}
.y37{bottom:450.666667pt;}
.y10{bottom:452.666667pt;}
.y91{bottom:454.000000pt;}
.y13a{bottom:454.666667pt;}
.y7e{bottom:456.000000pt;}
.y110{bottom:458.666667pt;}
.yf4{bottom:460.000000pt;}
.y5b{bottom:464.000000pt;}
.ycb{bottom:466.000000pt;}
.yaf{bottom:468.000000pt;}
.yf{bottom:469.333333pt;}
.y36{bottom:470.666667pt;}
.y139{bottom:471.333333pt;}
.y10f{bottom:472.000000pt;}
.y90{bottom:474.000000pt;}
.y7d{bottom:476.000000pt;}
.yde{bottom:478.000000pt;}
.y5a{bottom:484.000000pt;}
.y10e{bottom:485.333333pt;}
.ye{bottom:486.000000pt;}
.y138{bottom:488.000000pt;}
.ya0{bottom:489.333333pt;}
.yf3{bottom:490.000000pt;}
.y35{bottom:490.666667pt;}
.y8f{bottom:494.000000pt;}
.y7c{bottom:496.000000pt;}
.y10d{bottom:498.666667pt;}
.yae{bottom:500.000000pt;}
.yd{bottom:502.666667pt;}
.y59{bottom:504.000000pt;}
.y137{bottom:504.666667pt;}
.yca{bottom:506.000000pt;}
.ydd{bottom:510.000000pt;}
.y34{bottom:510.666667pt;}
.y10c{bottom:512.000000pt;}
.y8e{bottom:514.000000pt;}
.y7b{bottom:516.000000pt;}
.yc{bottom:519.333333pt;}
.y136{bottom:521.333333pt;}
.yf2{bottom:522.000000pt;}
.y58{bottom:524.000000pt;}
.y10b{bottom:525.333333pt;}
.yad{bottom:526.000000pt;}
.y33{bottom:530.666667pt;}
.yb{bottom:536.000000pt;}
.yf1{bottom:538.000000pt;}
.y10a{bottom:538.666667pt;}
.y57{bottom:544.000000pt;}
.yac{bottom:546.000000pt;}
.y32{bottom:550.666667pt;}
.y109{bottom:552.000000pt;}
.y135{bottom:554.666667pt;}
.y7a{bottom:556.000000pt;}
.ya{bottom:559.336000pt;}
.y8d{bottom:560.000000pt;}
.y56{bottom:564.000000pt;}
.y108{bottom:565.333333pt;}
.yab{bottom:566.000000pt;}
.y31{bottom:570.666667pt;}
.y134{bottom:571.333333pt;}
.y79{bottom:576.000000pt;}
.y107{bottom:578.666667pt;}
.y55{bottom:584.000000pt;}
.yaa{bottom:586.000000pt;}
.y30{bottom:590.666667pt;}
.yc9{bottom:592.000000pt;}
.yf0{bottom:594.000000pt;}
.y78{bottom:596.000000pt;}
.y9{bottom:598.000000pt;}
.y133{bottom:600.000000pt;}
.y54{bottom:604.000000pt;}
.y106{bottom:605.333333pt;}
.yc8{bottom:608.000000pt;}
.yef{bottom:610.000000pt;}
.y2f{bottom:610.666667pt;}
.y8{bottom:615.333333pt;}
.ya9{bottom:616.000000pt;}
.y105{bottom:618.666667pt;}
.y53{bottom:624.000000pt;}
.y77{bottom:626.000000pt;}
.y132{bottom:626.666667pt;}
.yf9{bottom:629.333333pt;}
.y2e{bottom:630.666667pt;}
.ya8{bottom:632.000000pt;}
.ydc{bottom:636.000000pt;}
.y7{bottom:642.000000pt;}
.y131{bottom:642.666667pt;}
.y52{bottom:644.000000pt;}
.y104{bottom:645.333333pt;}
.ya7{bottom:648.000000pt;}
.y2d{bottom:650.666667pt;}
.yee{bottom:652.000000pt;}
.yc7{bottom:654.000000pt;}
.ydb{bottom:656.000000pt;}
.y103{bottom:658.666667pt;}
.y51{bottom:664.000000pt;}
.y76{bottom:668.000000pt;}
.y2c{bottom:670.666667pt;}
.yed{bottom:672.000000pt;}
.ya6{bottom:674.000000pt;}
.yda{bottom:676.000000pt;}
.y50{bottom:684.000000pt;}
.y102{bottom:685.333333pt;}
.y75{bottom:688.000000pt;}
.ya5{bottom:690.000000pt;}
.yec{bottom:692.000000pt;}
.y2b{bottom:696.000000pt;}
.y130{bottom:697.333333pt;}
.y101{bottom:698.666667pt;}
.y6{bottom:702.000000pt;}
.y4f{bottom:704.000000pt;}
.ya4{bottom:706.000000pt;}
.y12f{bottom:710.666667pt;}
.yeb{bottom:712.000000pt;}
.yd9{bottom:716.000000pt;}
.y74{bottom:718.000000pt;}
.y100{bottom:718.666667pt;}
.y5{bottom:723.333333pt;}
.y4e{bottom:724.000000pt;}
.ya3{bottom:732.000000pt;}
.y2a{bottom:736.000000pt;}
.y12e{bottom:737.333333pt;}
.y4d{bottom:744.000000pt;}
.yd8{bottom:746.000000pt;}
.y12d{bottom:750.666667pt;}
.y4{bottom:752.666667pt;}
.yff{bottom:754.666667pt;}
.ya2{bottom:762.000000pt;}
.y4c{bottom:764.000000pt;}
.yfe{bottom:768.000000pt;}
.y29{bottom:777.333333pt;}
.ya1{bottom:778.000000pt;}
.y3{bottom:779.333333pt;}
.yfd{bottom:781.333333pt;}
.y4b{bottom:784.000000pt;}
.y12c{bottom:790.666667pt;}
.y28{bottom:794.000000pt;}
.yfc{bottom:794.666667pt;}
.y4a{bottom:804.000000pt;}
.yfb{bottom:808.000000pt;}
.y27{bottom:810.666667pt;}
.y12b{bottom:817.333333pt;}
.y49{bottom:824.000000pt;}
.y2{bottom:826.000000pt;}
.y26{bottom:827.333333pt;}
.yfa{bottom:828.000000pt;}
.y12a{bottom:830.666667pt;}
.h2{height:31.992188pt;}
.h10{height:34.730667pt;}
.h11{height:35.968000pt;}
.ha{height:36.229167pt;}
.h1{height:39.101562pt;}
.h7{height:40.757812pt;}
.hf{height:43.413333pt;}
.h8{height:45.286458pt;}
.hd{height:46.328125pt;}
.h5{height:49.456000pt;}
.h9{height:49.815104pt;}
.he{height:50.960938pt;}
.h6{height:54.343750pt;}
.hb{height:55.593750pt;}
.hc{height:60.226562pt;}
.h4{height:72.458333pt;}
.h3{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x5{left:58.024000pt;}
.xa{left:60.106667pt;}
.x10{left:73.333333pt;}
.xb{left:80.000000pt;}
.x9{left:88.000000pt;}
.x2{left:100.000000pt;}
.x3{left:101.479867pt;}
.xf{left:102.666667pt;}
.xe{left:104.023200pt;}
.x11{left:113.333333pt;}
.xd{left:120.016000pt;}
.x4{left:128.000000pt;}
.x7{left:140.402533pt;}
.x12{left:142.666667pt;}
.x8{left:145.418533pt;}
.x13{left:161.333333pt;}
.x6{left:234.000000pt;}
.xc{left:557.917867pt;}
.x1{left:558.963600pt;}
}




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