
    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_fce4e7cf3bc355d0ed7fee96.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_49e121758567d3964892d3b2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.940430;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_4e1d963cebd837cb2c4a80d9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4e7fbf013f88d84d5b3cdfed.woff2')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_1611936386826298cfc5c899.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_d4288adf055caaefa12e4ed6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.933594;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_e5939bb945f3039cec4b255f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.924316;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_78b009da324b9c4a3e44206e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_4f95ad6ae737f177a68af529.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls2d{letter-spacing:-1.872000px;}
.ls34{letter-spacing:-1.656000px;}
.ls35{letter-spacing:-1.440000px;}
.ls3b{letter-spacing:-1.368000px;}
.lsa{letter-spacing:-1.324800px;}
.ls18{letter-spacing:-1.152000px;}
.ls1b{letter-spacing:-1.008000px;}
.ls2e{letter-spacing:-0.936000px;}
.ls41{letter-spacing:-0.864000px;}
.lsf{letter-spacing:-0.794880px;}
.ls24{letter-spacing:-0.792000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.668160px;}
.ls16{letter-spacing:-0.648000px;}
.lsd{letter-spacing:-0.633600px;}
.ls12{letter-spacing:-0.578880px;}
.ls2b{letter-spacing:-0.576000px;}
.ls19{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.463680px;}
.lsc{letter-spacing:-0.443520px;}
.ls15{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.397440px;}
.ls30{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.288000px;}
.ls33{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.198720px;}
.ls31{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.066240px;}
.ls7{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.072000px;}
.ls40{letter-spacing:0.144000px;}
.ls42{letter-spacing:0.151789px;}
.ls14{letter-spacing:0.288000px;}
.ls39{letter-spacing:0.292320px;}
.ls2c{letter-spacing:0.432000px;}
.ls1d{letter-spacing:0.482400px;}
.ls36{letter-spacing:0.496800px;}
.ls5{letter-spacing:0.504000px;}
.ls2{letter-spacing:0.525888px;}
.ls11{letter-spacing:0.570240px;}
.ls13{letter-spacing:0.576000px;}
.ls3a{letter-spacing:0.626400px;}
.ls1f{letter-spacing:0.648000px;}
.ls3e{letter-spacing:0.662400px;}
.ls29{letter-spacing:0.705600px;}
.ls1{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.728640px;}
.ls9{letter-spacing:0.794880px;}
.ls1c{letter-spacing:1.440000px;}
.ls2a{letter-spacing:1.512000px;}
.ls22{letter-spacing:2.160000px;}
.ls28{letter-spacing:3.592800px;}
.ls20{letter-spacing:3.600000px;}
.ls27{letter-spacing:3.607200px;}
.ls3{letter-spacing:5.040000px;}
.ls3c{letter-spacing:6.465600px;}
.ls25{letter-spacing:6.480000px;}
.ls37{letter-spacing:7.912800px;}
.ls26{letter-spacing:7.920000px;}
.ls4{letter-spacing:9.360000px;}
.ls1e{letter-spacing:10.800000px;}
.ls21{letter-spacing:12.240000px;}
.ls32{letter-spacing:13.680000px;}
.ls38{letter-spacing:15.120000px;}
.ls23{letter-spacing:16.560000px;}
.ls3d{letter-spacing:18.000000px;}
.ls3f{letter-spacing:54.864000px;}
.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;}
}
.ws0{word-spacing:-71.712000px;}
.ws40{word-spacing:-18.720000px;}
.ws66{word-spacing:-18.648000px;}
.wsd{word-spacing:-18.576000px;}
.ws11{word-spacing:-18.504000px;}
.ws6e{word-spacing:-18.432000px;}
.wsf{word-spacing:-18.288000px;}
.ws8d{word-spacing:-18.072000px;}
.wse{word-spacing:-18.000000px;}
.ws53{word-spacing:-17.928000px;}
.ws6d{word-spacing:-17.784000px;}
.ws52{word-spacing:-17.640000px;}
.ws42{word-spacing:-17.568000px;}
.ws41{word-spacing:-17.496000px;}
.ws83{word-spacing:-17.424000px;}
.ws2{word-spacing:-17.354880px;}
.ws3f{word-spacing:-17.352000px;}
.ws70{word-spacing:-17.280000px;}
.ws86{word-spacing:-17.222400px;}
.ws68{word-spacing:-17.208000px;}
.ws8c{word-spacing:-17.136000px;}
.ws12{word-spacing:-16.992000px;}
.ws67{word-spacing:-16.848000px;}
.ws3{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.410240px;}
.wsa{word-spacing:-16.365888px;}
.ws1{word-spacing:-16.361280px;}
.ws6f{word-spacing:-16.344000px;}
.ws8{word-spacing:-16.162560px;}
.ws5{word-spacing:-16.096320px;}
.wsb{word-spacing:-15.840000px;}
.ws9{word-spacing:-15.765120px;}
.ws6{word-spacing:-15.396480px;}
.ws4{word-spacing:-15.235200px;}
.ws7{word-spacing:-15.206400px;}
.ws76{word-spacing:-11.066400px;}
.ws75{word-spacing:-10.732320px;}
.ws10{word-spacing:-9.771840px;}
.ws30{word-spacing:-4.320000px;}
.ws5e{word-spacing:-4.104000px;}
.ws3b{word-spacing:-3.888000px;}
.ws6c{word-spacing:-3.096000px;}
.ws54{word-spacing:-2.952000px;}
.ws21{word-spacing:-2.880000px;}
.ws62{word-spacing:-2.808000px;}
.ws25{word-spacing:-2.448000px;}
.ws48{word-spacing:-1.512000px;}
.ws2d{word-spacing:-1.440000px;}
.ws7f{word-spacing:-1.368000px;}
.ws5f{word-spacing:-1.008000px;}
.ws8f{word-spacing:-0.792000px;}
.ws14{word-spacing:-0.728640px;}
.ws34{word-spacing:-0.720000px;}
.ws55{word-spacing:-0.648000px;}
.ws2a{word-spacing:-0.288000px;}
.ws92{word-spacing:-0.151789px;}
.ws8e{word-spacing:-0.144000px;}
.ws33{word-spacing:-0.072000px;}
.ws13{word-spacing:0.000000px;}
.ws7e{word-spacing:0.072000px;}
.ws1b{word-spacing:0.144000px;}
.ws2e{word-spacing:0.216000px;}
.ws91{word-spacing:0.288000px;}
.ws63{word-spacing:0.360000px;}
.ws1a{word-spacing:0.385920px;}
.ws2c{word-spacing:0.432000px;}
.ws15{word-spacing:0.463680px;}
.ws24{word-spacing:0.504000px;}
.ws18{word-spacing:0.633600px;}
.ws60{word-spacing:0.648000px;}
.ws28{word-spacing:0.720000px;}
.ws17{word-spacing:0.728640px;}
.ws61{word-spacing:0.792000px;}
.ws16{word-spacing:0.794880px;}
.ws5a{word-spacing:0.936000px;}
.ws19{word-spacing:0.964800px;}
.ws5d{word-spacing:1.008000px;}
.ws23{word-spacing:1.152000px;}
.ws72{word-spacing:1.224000px;}
.ws2f{word-spacing:1.368000px;}
.ws20{word-spacing:1.440000px;}
.ws71{word-spacing:1.512000px;}
.ws5b{word-spacing:1.656000px;}
.ws5c{word-spacing:1.728000px;}
.ws44{word-spacing:1.872000px;}
.ws90{word-spacing:2.088000px;}
.ws8a{word-spacing:2.376000px;}
.ws47{word-spacing:2.592000px;}
.ws35{word-spacing:2.808000px;}
.ws1c{word-spacing:2.880000px;}
.ws46{word-spacing:2.952000px;}
.ws79{word-spacing:3.096000px;}
.ws59{word-spacing:3.168000px;}
.ws49{word-spacing:3.312000px;}
.ws7a{word-spacing:3.528000px;}
.ws85{word-spacing:3.600000px;}
.ws1d{word-spacing:4.032000px;}
.ws77{word-spacing:4.104000px;}
.ws64{word-spacing:4.176000px;}
.ws37{word-spacing:4.248000px;}
.ws1f{word-spacing:4.320000px;}
.ws45{word-spacing:4.392000px;}
.ws31{word-spacing:4.752000px;}
.ws7c{word-spacing:4.968000px;}
.ws7b{word-spacing:5.472000px;}
.ws1e{word-spacing:5.688000px;}
.ws29{word-spacing:5.760000px;}
.ws7d{word-spacing:5.832000px;}
.ws26{word-spacing:6.192000px;}
.ws27{word-spacing:6.912000px;}
.ws57{word-spacing:6.984000px;}
.ws56{word-spacing:7.056000px;}
.ws69{word-spacing:7.128000px;}
.ws32{word-spacing:7.200000px;}
.ws39{word-spacing:7.272000px;}
.ws36{word-spacing:7.632000px;}
.ws6b{word-spacing:8.280000px;}
.ws78{word-spacing:8.424000px;}
.ws58{word-spacing:8.496000px;}
.ws3a{word-spacing:8.568000px;}
.ws22{word-spacing:8.640000px;}
.ws43{word-spacing:9.072000px;}
.ws8b{word-spacing:10.008000px;}
.ws3d{word-spacing:10.080000px;}
.ws50{word-spacing:10.512000px;}
.ws87{word-spacing:11.232000px;}
.ws51{word-spacing:11.448000px;}
.ws38{word-spacing:11.520000px;}
.ws3e{word-spacing:11.952000px;}
.ws82{word-spacing:12.672000px;}
.ws73{word-spacing:12.888000px;}
.ws4d{word-spacing:12.960000px;}
.ws4e{word-spacing:13.392000px;}
.ws74{word-spacing:14.112000px;}
.ws4f{word-spacing:14.328000px;}
.ws2b{word-spacing:14.400000px;}
.ws3c{word-spacing:15.840000px;}
.ws6a{word-spacing:16.272000px;}
.ws84{word-spacing:17.280000px;}
.ws4c{word-spacing:17.352000px;}
.ws4a{word-spacing:18.720000px;}
.ws4b{word-spacing:19.152000px;}
.ws65{word-spacing:20.160000px;}
.ws88{word-spacing:21.600000px;}
.ws80{word-spacing:24.480000px;}
.ws89{word-spacing:25.848000px;}
.ws81{word-spacing:27.288000px;}
._7{margin-left:-4.777056px;}
._2{margin-left:-3.086784px;}
._1{margin-left:-1.649376px;}
._0{width:1.368000px;}
._3{width:2.435040px;}
._5{width:3.642624px;}
._6{width:6.401376px;}
._8{width:12.656160px;}
._4{width:15.905376px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:75.894664px;}
.fs4{font-size:80.640000px;}
.fs3{font-size:96.480000px;}
.y7{bottom:-84.600000px;}
.y6{bottom:-63.360000px;}
.y12{bottom:-56.160000px;}
.ye{bottom:-52.920000px;}
.y11{bottom:-37.800000px;}
.yd{bottom:-34.560000px;}
.y5{bottom:-18.360000px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.440000px;}
.y10{bottom:6.120000px;}
.y9{bottom:8.640000px;}
.yc{bottom:9.000000px;}
.y2{bottom:37.800000px;}
.y17{bottom:75.252960px;}
.y16{bottom:95.406480px;}
.y15{bottom:115.560000px;}
.y8{bottom:116.640000px;}
.yb0{bottom:167.400000px;}
.y71{bottom:169.200000px;}
.y7c{bottom:169.560000px;}
.yc9{bottom:171.720000px;}
.y8c{bottom:182.880000px;}
.y34{bottom:187.200000px;}
.y52{bottom:191.160000px;}
.yc5{bottom:195.480000px;}
.ya4{bottom:197.280000px;}
.yaf{bottom:197.640000px;}
.yd7{bottom:199.080000px;}
.y70{bottom:200.160000px;}
.yc8{bottom:202.320000px;}
.y8b{bottom:213.120000px;}
.y33{bottom:219.600000px;}
.y51{bottom:221.400000px;}
.yc4{bottom:225.720000px;}
.ya3{bottom:228.240000px;}
.y7b{bottom:230.040000px;}
.y6f{bottom:230.400000px;}
.yc7{bottom:232.560000px;}
.y8a{bottom:243.360000px;}
.yf0{bottom:244.080000px;}
.yd6{bottom:247.320000px;}
.y50{bottom:251.640000px;}
.y32{bottom:252.360000px;}
.yc3{bottom:256.320000px;}
.ya2{bottom:258.480000px;}
.y6e{bottom:260.640000px;}
.y7a{bottom:263.160000px;}
.y89{bottom:273.960000px;}
.yef{bottom:274.680000px;}
.yd5{bottom:277.560000px;}
.y4f{bottom:282.240000px;}
.y31{bottom:282.960000px;}
.yc2{bottom:286.560000px;}
.ya1{bottom:288.720000px;}
.y6d{bottom:291.240000px;}
.y79{bottom:293.400000px;}
.y88{bottom:306.000000px;}
.yee{bottom:307.440000px;}
.yd4{bottom:308.160000px;}
.y4e{bottom:312.480000px;}
.y30{bottom:315.360000px;}
.yc1{bottom:317.160000px;}
.ya0{bottom:319.320000px;}
.y6c{bottom:321.480000px;}
.y78{bottom:323.640000px;}
.y87{bottom:336.960000px;}
.yd3{bottom:338.400000px;}
.yed{bottom:340.920000px;}
.y4d{bottom:342.720000px;}
.yc0{bottom:347.400000px;}
.y2f{bottom:348.120000px;}
.y9f{bottom:349.560000px;}
.y6b{bottom:351.720000px;}
.y77{bottom:354.240000px;}
.y86{bottom:367.200000px;}
.yd2{bottom:368.640000px;}
.yec{bottom:370.800000px;}
.y4c{bottom:373.320000px;}
.ybf{bottom:377.640000px;}
.y2e{bottom:378.720000px;}
.yae{bottom:379.800000px;}
.y9e{bottom:380.159850px;}
.y6a{bottom:384.120000px;}
.y76{bottom:384.480000px;}
.y85{bottom:397.800000px;}
.yd1{bottom:399.240000px;}
.y4b{bottom:403.560000px;}
.ybe{bottom:408.240000px;}
.y2d{bottom:408.960000px;}
.y9d{bottom:412.199850px;}
.yad{bottom:412.560000px;}
.y69{bottom:414.720000px;}
.y84{bottom:428.040000px;}
.yd0{bottom:429.480000px;}
.y4a{bottom:434.160000px;}
.y2c{bottom:439.560000px;}
.ybd{bottom:440.280000px;}
.yeb{bottom:441.720000px;}
.y9c{bottom:443.159850px;}
.yac{bottom:443.160000px;}
.y68{bottom:445.320000px;}
.y83{bottom:458.280000px;}
.ycf{bottom:459.720000px;}
.y49{bottom:466.200000px;}
.y2b{bottom:469.800000px;}
.ybc{bottom:471.240000px;}
.y9b{bottom:473.399850px;}
.yab{bottom:473.400000px;}
.yea{bottom:474.840000px;}
.y67{bottom:475.560000px;}
.y82{bottom:488.880000px;}
.yce{bottom:490.320000px;}
.y48{bottom:498.960000px;}
.y2a{bottom:500.040000px;}
.ybb{bottom:501.480000px;}
.y9a{bottom:503.639850px;}
.yaa{bottom:503.640000px;}
.ye9{bottom:505.440000px;}
.y66{bottom:506.160000px;}
.y81{bottom:519.120000px;}
.ycd{bottom:520.560000px;}
.y29{bottom:530.640000px;}
.y47{bottom:531.360000px;}
.yba{bottom:531.720000px;}
.y99{bottom:534.239850px;}
.ya9{bottom:534.240000px;}
.ye8{bottom:535.320000px;}
.y65{bottom:536.400000px;}
.ycc{bottom:551.160000px;}
.y28{bottom:560.880000px;}
.y46{bottom:562.320000px;}
.y98{bottom:564.479850px;}
.y80{bottom:564.480000px;}
.y64{bottom:566.640000px;}
.ye7{bottom:568.800000px;}
.ycb{bottom:581.400000px;}
.y45{bottom:592.560000px;}
.y27{bottom:593.280000px;}
.y97{bottom:594.719850px;}
.y7f{bottom:596.880000px;}
.y63{bottom:597.240000px;}
.ye6{bottom:599.040000px;}
.yb9{bottom:623.160000px;}
.y26{bottom:623.880000px;}
.y44{bottom:624.960000px;}
.y96{bottom:627.119850px;}
.y62{bottom:627.480000px;}
.y7e{bottom:629.280000px;}
.yca{bottom:629.640000px;}
.yb8{bottom:653.400000px;}
.y25{bottom:654.480000px;}
.y43{bottom:655.560000px;}
.y95{bottom:657.719850px;}
.y61{bottom:657.720000px;}
.ye5{bottom:659.520000px;}
.y7d{bottom:660.240000px;}
.yb7{bottom:683.640000px;}
.y24{bottom:684.720000px;}
.y42{bottom:686.160000px;}
.y94{bottom:688.319850px;}
.y75{bottom:688.320000px;}
.y60{bottom:690.480000px;}
.ye4{bottom:692.640000px;}
.yb6{bottom:714.240000px;}
.y23{bottom:714.960000px;}
.y41{bottom:716.400000px;}
.y93{bottom:718.559850px;}
.y74{bottom:718.560000px;}
.y5f{bottom:720.720000px;}
.ye3{bottom:723.240000px;}
.yb5{bottom:744.480000px;}
.y22{bottom:745.560000px;}
.y40{bottom:746.640000px;}
.y92{bottom:749.159850px;}
.y73{bottom:749.160000px;}
.y5e{bottom:751.320000px;}
.ye2{bottom:753.120000px;}
.yb4{bottom:774.720000px;}
.y21{bottom:775.800000px;}
.y3f{bottom:777.240000px;}
.y91{bottom:779.399850px;}
.ya8{bottom:779.400000px;}
.y72{bottom:781.200000px;}
.y5d{bottom:781.560000px;}
.ye1{bottom:786.600000px;}
.yb3{bottom:805.320000px;}
.y20{bottom:806.040000px;}
.y3e{bottom:807.480000px;}
.y90{bottom:809.639850px;}
.ya7{bottom:809.640000px;}
.y5c{bottom:812.160000px;}
.ye0{bottom:816.840000px;}
.y1f{bottom:836.640000px;}
.yb2{bottom:837.360000px;}
.y3d{bottom:837.720000px;}
.y8f{bottom:840.239850px;}
.ya6{bottom:840.240000px;}
.y5b{bottom:842.400000px;}
.ydf{bottom:847.080000px;}
.y1e{bottom:868.680000px;}
.y3c{bottom:870.120000px;}
.y8e{bottom:870.480000px;}
.ya5{bottom:872.280000px;}
.y5a{bottom:872.640000px;}
.yde{bottom:879.840000px;}
.y3b{bottom:900.720000px;}
.y1d{bottom:901.440000px;}
.yb1{bottom:902.880000px;}
.y59{bottom:903.240000px;}
.ydd{bottom:912.960000px;}
.y3a{bottom:931.320000px;}
.y8d{bottom:933.120000px;}
.y58{bottom:933.480000px;}
.y1c{bottom:934.200000px;}
.ydc{bottom:946.080000px;}
.y39{bottom:961.560000px;}
.y57{bottom:963.720000px;}
.y1b{bottom:966.600000px;}
.ydb{bottom:976.680000px;}
.y38{bottom:992.160000px;}
.y56{bottom:994.320000px;}
.y1a{bottom:999.360000px;}
.yda{bottom:1006.560000px;}
.y37{bottom:1022.400000px;}
.y55{bottom:1024.560000px;}
.yd9{bottom:1039.680000px;}
.y19{bottom:1050.120000px;}
.y36{bottom:1052.640000px;}
.yc6{bottom:1054.800000px;}
.y54{bottom:1055.160000px;}
.yd8{bottom:1070.280000px;}
.y35{bottom:1085.040000px;}
.y53{bottom:1085.400000px;}
.y18{bottom:1092.960000px;}
.y1{bottom:1113.840000px;}
.y3{bottom:1133.280000px;}
.yf{bottom:1173.240000px;}
.y14{bottom:1173.966480px;}
.y13{bottom:1194.120000px;}
.yb{bottom:1198.080000px;}
.ya{bottom:1207.080000px;}
.h8{height:23.040000px;}
.he{height:24.480000px;}
.hf{height:25.066406px;}
.ha{height:27.358500px;}
.hd{height:42.229687px;}
.h9{height:44.116875px;}
.h6{height:44.149219px;}
.h4{height:44.860781px;}
.h12{height:48.761719px;}
.h14{height:48.762319px;}
.h11{height:50.132812px;}
.h2{height:54.358500px;}
.h13{height:55.641797px;}
.h5{height:63.855000px;}
.h7{height:64.304297px;}
.hc{height:66.082500px;}
.h10{height:67.177969px;}
.h3{height:70.664062px;}
.h16{height:71.818290px;}
.h15{height:75.093750px;}
.hb{height:81.270000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:192.600000px;}
.w5{width:226.080000px;}
.w2{width:585.720000px;}
.w3{width:675.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2{left:10.800000px;}
.x4{left:108.360000px;}
.x9{left:113.040000px;}
.x10{left:115.920000px;}
.x13{left:162.000000px;}
.xc{left:172.080000px;}
.x7{left:181.800000px;}
.x14{left:189.000000px;}
.x1{left:198.360000px;}
.x3{left:209.160000px;}
.xe{left:252.720000px;}
.xf{left:345.960000px;}
.xd{left:350.640000px;}
.x12{left:415.080000px;}
.x15{left:424.440000px;}
.xb{left:446.400000px;}
.x16{left:517.680000px;}
.x8{left:558.360000px;}
.x6{left:591.840000px;}
.x5{left:607.320000px;}
.x11{left:769.320000px;}
.xa{left:777.240000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls2d{letter-spacing:-1.664000pt;}
.ls34{letter-spacing:-1.472000pt;}
.ls35{letter-spacing:-1.280000pt;}
.ls3b{letter-spacing:-1.216000pt;}
.lsa{letter-spacing:-1.177600pt;}
.ls18{letter-spacing:-1.024000pt;}
.ls1b{letter-spacing:-0.896000pt;}
.ls2e{letter-spacing:-0.832000pt;}
.ls41{letter-spacing:-0.768000pt;}
.lsf{letter-spacing:-0.706560pt;}
.ls24{letter-spacing:-0.704000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.593920pt;}
.ls16{letter-spacing:-0.576000pt;}
.lsd{letter-spacing:-0.563200pt;}
.ls12{letter-spacing:-0.514560pt;}
.ls2b{letter-spacing:-0.512000pt;}
.ls19{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.412160pt;}
.lsc{letter-spacing:-0.394240pt;}
.ls15{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.353280pt;}
.ls30{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls33{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.176640pt;}
.ls31{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.058880pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.064000pt;}
.ls40{letter-spacing:0.128000pt;}
.ls42{letter-spacing:0.134924pt;}
.ls14{letter-spacing:0.256000pt;}
.ls39{letter-spacing:0.259840pt;}
.ls2c{letter-spacing:0.384000pt;}
.ls1d{letter-spacing:0.428800pt;}
.ls36{letter-spacing:0.441600pt;}
.ls5{letter-spacing:0.448000pt;}
.ls2{letter-spacing:0.467456pt;}
.ls11{letter-spacing:0.506880pt;}
.ls13{letter-spacing:0.512000pt;}
.ls3a{letter-spacing:0.556800pt;}
.ls1f{letter-spacing:0.576000pt;}
.ls3e{letter-spacing:0.588800pt;}
.ls29{letter-spacing:0.627200pt;}
.ls1{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.647680pt;}
.ls9{letter-spacing:0.706560pt;}
.ls1c{letter-spacing:1.280000pt;}
.ls2a{letter-spacing:1.344000pt;}
.ls22{letter-spacing:1.920000pt;}
.ls28{letter-spacing:3.193600pt;}
.ls20{letter-spacing:3.200000pt;}
.ls27{letter-spacing:3.206400pt;}
.ls3{letter-spacing:4.480000pt;}
.ls3c{letter-spacing:5.747200pt;}
.ls25{letter-spacing:5.760000pt;}
.ls37{letter-spacing:7.033600pt;}
.ls26{letter-spacing:7.040000pt;}
.ls4{letter-spacing:8.320000pt;}
.ls1e{letter-spacing:9.600000pt;}
.ls21{letter-spacing:10.880000pt;}
.ls32{letter-spacing:12.160000pt;}
.ls38{letter-spacing:13.440000pt;}
.ls23{letter-spacing:14.720000pt;}
.ls3d{letter-spacing:16.000000pt;}
.ls3f{letter-spacing:48.768000pt;}
.ws0{word-spacing:-63.744000pt;}
.ws40{word-spacing:-16.640000pt;}
.ws66{word-spacing:-16.576000pt;}
.wsd{word-spacing:-16.512000pt;}
.ws11{word-spacing:-16.448000pt;}
.ws6e{word-spacing:-16.384000pt;}
.wsf{word-spacing:-16.256000pt;}
.ws8d{word-spacing:-16.064000pt;}
.wse{word-spacing:-16.000000pt;}
.ws53{word-spacing:-15.936000pt;}
.ws6d{word-spacing:-15.808000pt;}
.ws52{word-spacing:-15.680000pt;}
.ws42{word-spacing:-15.616000pt;}
.ws41{word-spacing:-15.552000pt;}
.ws83{word-spacing:-15.488000pt;}
.ws2{word-spacing:-15.426560pt;}
.ws3f{word-spacing:-15.424000pt;}
.ws70{word-spacing:-15.360000pt;}
.ws86{word-spacing:-15.308800pt;}
.ws68{word-spacing:-15.296000pt;}
.ws8c{word-spacing:-15.232000pt;}
.ws12{word-spacing:-15.104000pt;}
.ws67{word-spacing:-14.976000pt;}
.ws3{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.586880pt;}
.wsa{word-spacing:-14.547456pt;}
.ws1{word-spacing:-14.543360pt;}
.ws6f{word-spacing:-14.528000pt;}
.ws8{word-spacing:-14.366720pt;}
.ws5{word-spacing:-14.307840pt;}
.wsb{word-spacing:-14.080000pt;}
.ws9{word-spacing:-14.013440pt;}
.ws6{word-spacing:-13.685760pt;}
.ws4{word-spacing:-13.542400pt;}
.ws7{word-spacing:-13.516800pt;}
.ws76{word-spacing:-9.836800pt;}
.ws75{word-spacing:-9.539840pt;}
.ws10{word-spacing:-8.686080pt;}
.ws30{word-spacing:-3.840000pt;}
.ws5e{word-spacing:-3.648000pt;}
.ws3b{word-spacing:-3.456000pt;}
.ws6c{word-spacing:-2.752000pt;}
.ws54{word-spacing:-2.624000pt;}
.ws21{word-spacing:-2.560000pt;}
.ws62{word-spacing:-2.496000pt;}
.ws25{word-spacing:-2.176000pt;}
.ws48{word-spacing:-1.344000pt;}
.ws2d{word-spacing:-1.280000pt;}
.ws7f{word-spacing:-1.216000pt;}
.ws5f{word-spacing:-0.896000pt;}
.ws8f{word-spacing:-0.704000pt;}
.ws14{word-spacing:-0.647680pt;}
.ws34{word-spacing:-0.640000pt;}
.ws55{word-spacing:-0.576000pt;}
.ws2a{word-spacing:-0.256000pt;}
.ws92{word-spacing:-0.134924pt;}
.ws8e{word-spacing:-0.128000pt;}
.ws33{word-spacing:-0.064000pt;}
.ws13{word-spacing:0.000000pt;}
.ws7e{word-spacing:0.064000pt;}
.ws1b{word-spacing:0.128000pt;}
.ws2e{word-spacing:0.192000pt;}
.ws91{word-spacing:0.256000pt;}
.ws63{word-spacing:0.320000pt;}
.ws1a{word-spacing:0.343040pt;}
.ws2c{word-spacing:0.384000pt;}
.ws15{word-spacing:0.412160pt;}
.ws24{word-spacing:0.448000pt;}
.ws18{word-spacing:0.563200pt;}
.ws60{word-spacing:0.576000pt;}
.ws28{word-spacing:0.640000pt;}
.ws17{word-spacing:0.647680pt;}
.ws61{word-spacing:0.704000pt;}
.ws16{word-spacing:0.706560pt;}
.ws5a{word-spacing:0.832000pt;}
.ws19{word-spacing:0.857600pt;}
.ws5d{word-spacing:0.896000pt;}
.ws23{word-spacing:1.024000pt;}
.ws72{word-spacing:1.088000pt;}
.ws2f{word-spacing:1.216000pt;}
.ws20{word-spacing:1.280000pt;}
.ws71{word-spacing:1.344000pt;}
.ws5b{word-spacing:1.472000pt;}
.ws5c{word-spacing:1.536000pt;}
.ws44{word-spacing:1.664000pt;}
.ws90{word-spacing:1.856000pt;}
.ws8a{word-spacing:2.112000pt;}
.ws47{word-spacing:2.304000pt;}
.ws35{word-spacing:2.496000pt;}
.ws1c{word-spacing:2.560000pt;}
.ws46{word-spacing:2.624000pt;}
.ws79{word-spacing:2.752000pt;}
.ws59{word-spacing:2.816000pt;}
.ws49{word-spacing:2.944000pt;}
.ws7a{word-spacing:3.136000pt;}
.ws85{word-spacing:3.200000pt;}
.ws1d{word-spacing:3.584000pt;}
.ws77{word-spacing:3.648000pt;}
.ws64{word-spacing:3.712000pt;}
.ws37{word-spacing:3.776000pt;}
.ws1f{word-spacing:3.840000pt;}
.ws45{word-spacing:3.904000pt;}
.ws31{word-spacing:4.224000pt;}
.ws7c{word-spacing:4.416000pt;}
.ws7b{word-spacing:4.864000pt;}
.ws1e{word-spacing:5.056000pt;}
.ws29{word-spacing:5.120000pt;}
.ws7d{word-spacing:5.184000pt;}
.ws26{word-spacing:5.504000pt;}
.ws27{word-spacing:6.144000pt;}
.ws57{word-spacing:6.208000pt;}
.ws56{word-spacing:6.272000pt;}
.ws69{word-spacing:6.336000pt;}
.ws32{word-spacing:6.400000pt;}
.ws39{word-spacing:6.464000pt;}
.ws36{word-spacing:6.784000pt;}
.ws6b{word-spacing:7.360000pt;}
.ws78{word-spacing:7.488000pt;}
.ws58{word-spacing:7.552000pt;}
.ws3a{word-spacing:7.616000pt;}
.ws22{word-spacing:7.680000pt;}
.ws43{word-spacing:8.064000pt;}
.ws8b{word-spacing:8.896000pt;}
.ws3d{word-spacing:8.960000pt;}
.ws50{word-spacing:9.344000pt;}
.ws87{word-spacing:9.984000pt;}
.ws51{word-spacing:10.176000pt;}
.ws38{word-spacing:10.240000pt;}
.ws3e{word-spacing:10.624000pt;}
.ws82{word-spacing:11.264000pt;}
.ws73{word-spacing:11.456000pt;}
.ws4d{word-spacing:11.520000pt;}
.ws4e{word-spacing:11.904000pt;}
.ws74{word-spacing:12.544000pt;}
.ws4f{word-spacing:12.736000pt;}
.ws2b{word-spacing:12.800000pt;}
.ws3c{word-spacing:14.080000pt;}
.ws6a{word-spacing:14.464000pt;}
.ws84{word-spacing:15.360000pt;}
.ws4c{word-spacing:15.424000pt;}
.ws4a{word-spacing:16.640000pt;}
.ws4b{word-spacing:17.024000pt;}
.ws65{word-spacing:17.920000pt;}
.ws88{word-spacing:19.200000pt;}
.ws80{word-spacing:21.760000pt;}
.ws89{word-spacing:22.976000pt;}
.ws81{word-spacing:24.256000pt;}
._7{margin-left:-4.246272pt;}
._2{margin-left:-2.743808pt;}
._1{margin-left:-1.466112pt;}
._0{width:1.216000pt;}
._3{width:2.164480pt;}
._5{width:3.237888pt;}
._6{width:5.690112pt;}
._8{width:11.249920pt;}
._4{width:14.138112pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:67.461923pt;}
.fs4{font-size:71.680000pt;}
.fs3{font-size:85.760000pt;}
.y7{bottom:-75.200000pt;}
.y6{bottom:-56.320000pt;}
.y12{bottom:-49.920000pt;}
.ye{bottom:-47.040000pt;}
.y11{bottom:-33.600000pt;}
.yd{bottom:-30.720000pt;}
.y5{bottom:-16.320000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.280000pt;}
.y10{bottom:5.440000pt;}
.y9{bottom:7.680000pt;}
.yc{bottom:8.000000pt;}
.y2{bottom:33.600000pt;}
.y17{bottom:66.891520pt;}
.y16{bottom:84.805760pt;}
.y15{bottom:102.720000pt;}
.y8{bottom:103.680000pt;}
.yb0{bottom:148.800000pt;}
.y71{bottom:150.400000pt;}
.y7c{bottom:150.720000pt;}
.yc9{bottom:152.640000pt;}
.y8c{bottom:162.560000pt;}
.y34{bottom:166.400000pt;}
.y52{bottom:169.920000pt;}
.yc5{bottom:173.760000pt;}
.ya4{bottom:175.360000pt;}
.yaf{bottom:175.680000pt;}
.yd7{bottom:176.960000pt;}
.y70{bottom:177.920000pt;}
.yc8{bottom:179.840000pt;}
.y8b{bottom:189.440000pt;}
.y33{bottom:195.200000pt;}
.y51{bottom:196.800000pt;}
.yc4{bottom:200.640000pt;}
.ya3{bottom:202.880000pt;}
.y7b{bottom:204.480000pt;}
.y6f{bottom:204.800000pt;}
.yc7{bottom:206.720000pt;}
.y8a{bottom:216.320000pt;}
.yf0{bottom:216.960000pt;}
.yd6{bottom:219.840000pt;}
.y50{bottom:223.680000pt;}
.y32{bottom:224.320000pt;}
.yc3{bottom:227.840000pt;}
.ya2{bottom:229.760000pt;}
.y6e{bottom:231.680000pt;}
.y7a{bottom:233.920000pt;}
.y89{bottom:243.520000pt;}
.yef{bottom:244.160000pt;}
.yd5{bottom:246.720000pt;}
.y4f{bottom:250.880000pt;}
.y31{bottom:251.520000pt;}
.yc2{bottom:254.720000pt;}
.ya1{bottom:256.640000pt;}
.y6d{bottom:258.880000pt;}
.y79{bottom:260.800000pt;}
.y88{bottom:272.000000pt;}
.yee{bottom:273.280000pt;}
.yd4{bottom:273.920000pt;}
.y4e{bottom:277.760000pt;}
.y30{bottom:280.320000pt;}
.yc1{bottom:281.920000pt;}
.ya0{bottom:283.840000pt;}
.y6c{bottom:285.760000pt;}
.y78{bottom:287.680000pt;}
.y87{bottom:299.520000pt;}
.yd3{bottom:300.800000pt;}
.yed{bottom:303.040000pt;}
.y4d{bottom:304.640000pt;}
.yc0{bottom:308.800000pt;}
.y2f{bottom:309.440000pt;}
.y9f{bottom:310.720000pt;}
.y6b{bottom:312.640000pt;}
.y77{bottom:314.880000pt;}
.y86{bottom:326.400000pt;}
.yd2{bottom:327.680000pt;}
.yec{bottom:329.600000pt;}
.y4c{bottom:331.840000pt;}
.ybf{bottom:335.680000pt;}
.y2e{bottom:336.640000pt;}
.yae{bottom:337.600000pt;}
.y9e{bottom:337.919867pt;}
.y6a{bottom:341.440000pt;}
.y76{bottom:341.760000pt;}
.y85{bottom:353.600000pt;}
.yd1{bottom:354.880000pt;}
.y4b{bottom:358.720000pt;}
.ybe{bottom:362.880000pt;}
.y2d{bottom:363.520000pt;}
.y9d{bottom:366.399867pt;}
.yad{bottom:366.720000pt;}
.y69{bottom:368.640000pt;}
.y84{bottom:380.480000pt;}
.yd0{bottom:381.760000pt;}
.y4a{bottom:385.920000pt;}
.y2c{bottom:390.720000pt;}
.ybd{bottom:391.360000pt;}
.yeb{bottom:392.640000pt;}
.y9c{bottom:393.919867pt;}
.yac{bottom:393.920000pt;}
.y68{bottom:395.840000pt;}
.y83{bottom:407.360000pt;}
.ycf{bottom:408.640000pt;}
.y49{bottom:414.400000pt;}
.y2b{bottom:417.600000pt;}
.ybc{bottom:418.880000pt;}
.y9b{bottom:420.799867pt;}
.yab{bottom:420.800000pt;}
.yea{bottom:422.080000pt;}
.y67{bottom:422.720000pt;}
.y82{bottom:434.560000pt;}
.yce{bottom:435.840000pt;}
.y48{bottom:443.520000pt;}
.y2a{bottom:444.480000pt;}
.ybb{bottom:445.760000pt;}
.y9a{bottom:447.679867pt;}
.yaa{bottom:447.680000pt;}
.ye9{bottom:449.280000pt;}
.y66{bottom:449.920000pt;}
.y81{bottom:461.440000pt;}
.ycd{bottom:462.720000pt;}
.y29{bottom:471.680000pt;}
.y47{bottom:472.320000pt;}
.yba{bottom:472.640000pt;}
.y99{bottom:474.879867pt;}
.ya9{bottom:474.880000pt;}
.ye8{bottom:475.840000pt;}
.y65{bottom:476.800000pt;}
.ycc{bottom:489.920000pt;}
.y28{bottom:498.560000pt;}
.y46{bottom:499.840000pt;}
.y98{bottom:501.759867pt;}
.y80{bottom:501.760000pt;}
.y64{bottom:503.680000pt;}
.ye7{bottom:505.600000pt;}
.ycb{bottom:516.800000pt;}
.y45{bottom:526.720000pt;}
.y27{bottom:527.360000pt;}
.y97{bottom:528.639867pt;}
.y7f{bottom:530.560000pt;}
.y63{bottom:530.880000pt;}
.ye6{bottom:532.480000pt;}
.yb9{bottom:553.920000pt;}
.y26{bottom:554.560000pt;}
.y44{bottom:555.520000pt;}
.y96{bottom:557.439867pt;}
.y62{bottom:557.760000pt;}
.y7e{bottom:559.360000pt;}
.yca{bottom:559.680000pt;}
.yb8{bottom:580.800000pt;}
.y25{bottom:581.760000pt;}
.y43{bottom:582.720000pt;}
.y95{bottom:584.639867pt;}
.y61{bottom:584.640000pt;}
.ye5{bottom:586.240000pt;}
.y7d{bottom:586.880000pt;}
.yb7{bottom:607.680000pt;}
.y24{bottom:608.640000pt;}
.y42{bottom:609.920000pt;}
.y94{bottom:611.839867pt;}
.y75{bottom:611.840000pt;}
.y60{bottom:613.760000pt;}
.ye4{bottom:615.680000pt;}
.yb6{bottom:634.880000pt;}
.y23{bottom:635.520000pt;}
.y41{bottom:636.800000pt;}
.y93{bottom:638.719867pt;}
.y74{bottom:638.720000pt;}
.y5f{bottom:640.640000pt;}
.ye3{bottom:642.880000pt;}
.yb5{bottom:661.760000pt;}
.y22{bottom:662.720000pt;}
.y40{bottom:663.680000pt;}
.y92{bottom:665.919867pt;}
.y73{bottom:665.920000pt;}
.y5e{bottom:667.840000pt;}
.ye2{bottom:669.440000pt;}
.yb4{bottom:688.640000pt;}
.y21{bottom:689.600000pt;}
.y3f{bottom:690.880000pt;}
.y91{bottom:692.799867pt;}
.ya8{bottom:692.800000pt;}
.y72{bottom:694.400000pt;}
.y5d{bottom:694.720000pt;}
.ye1{bottom:699.200000pt;}
.yb3{bottom:715.840000pt;}
.y20{bottom:716.480000pt;}
.y3e{bottom:717.760000pt;}
.y90{bottom:719.679867pt;}
.ya7{bottom:719.680000pt;}
.y5c{bottom:721.920000pt;}
.ye0{bottom:726.080000pt;}
.y1f{bottom:743.680000pt;}
.yb2{bottom:744.320000pt;}
.y3d{bottom:744.640000pt;}
.y8f{bottom:746.879867pt;}
.ya6{bottom:746.880000pt;}
.y5b{bottom:748.800000pt;}
.ydf{bottom:752.960000pt;}
.y1e{bottom:772.160000pt;}
.y3c{bottom:773.440000pt;}
.y8e{bottom:773.760000pt;}
.ya5{bottom:775.360000pt;}
.y5a{bottom:775.680000pt;}
.yde{bottom:782.080000pt;}
.y3b{bottom:800.640000pt;}
.y1d{bottom:801.280000pt;}
.yb1{bottom:802.560000pt;}
.y59{bottom:802.880000pt;}
.ydd{bottom:811.520000pt;}
.y3a{bottom:827.840000pt;}
.y8d{bottom:829.440000pt;}
.y58{bottom:829.760000pt;}
.y1c{bottom:830.400000pt;}
.ydc{bottom:840.960000pt;}
.y39{bottom:854.720000pt;}
.y57{bottom:856.640000pt;}
.y1b{bottom:859.200000pt;}
.ydb{bottom:868.160000pt;}
.y38{bottom:881.920000pt;}
.y56{bottom:883.840000pt;}
.y1a{bottom:888.320000pt;}
.yda{bottom:894.720000pt;}
.y37{bottom:908.800000pt;}
.y55{bottom:910.720000pt;}
.yd9{bottom:924.160000pt;}
.y19{bottom:933.440000pt;}
.y36{bottom:935.680000pt;}
.yc6{bottom:937.600000pt;}
.y54{bottom:937.920000pt;}
.yd8{bottom:951.360000pt;}
.y35{bottom:964.480000pt;}
.y53{bottom:964.800000pt;}
.y18{bottom:971.520000pt;}
.y1{bottom:990.080000pt;}
.y3{bottom:1007.360000pt;}
.yf{bottom:1042.880000pt;}
.y14{bottom:1043.525760pt;}
.y13{bottom:1061.440000pt;}
.yb{bottom:1064.960000pt;}
.ya{bottom:1072.960000pt;}
.h8{height:20.480000pt;}
.he{height:21.760000pt;}
.hf{height:22.281250pt;}
.ha{height:24.318667pt;}
.hd{height:37.537500pt;}
.h9{height:39.215000pt;}
.h6{height:39.243750pt;}
.h4{height:39.876250pt;}
.h12{height:43.343750pt;}
.h14{height:43.344283pt;}
.h11{height:44.562500pt;}
.h2{height:48.318667pt;}
.h13{height:49.459375pt;}
.h5{height:56.760000pt;}
.h7{height:57.159375pt;}
.hc{height:58.740000pt;}
.h10{height:59.713750pt;}
.h3{height:62.812500pt;}
.h16{height:63.838480pt;}
.h15{height:66.750000pt;}
.hb{height:72.240000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:171.200000pt;}
.w5{width:200.960000pt;}
.w2{width:520.640000pt;}
.w3{width:600.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2{left:9.600000pt;}
.x4{left:96.320000pt;}
.x9{left:100.480000pt;}
.x10{left:103.040000pt;}
.x13{left:144.000000pt;}
.xc{left:152.960000pt;}
.x7{left:161.600000pt;}
.x14{left:168.000000pt;}
.x1{left:176.320000pt;}
.x3{left:185.920000pt;}
.xe{left:224.640000pt;}
.xf{left:307.520000pt;}
.xd{left:311.680000pt;}
.x12{left:368.960000pt;}
.x15{left:377.280000pt;}
.xb{left:396.800000pt;}
.x16{left:460.160000pt;}
.x8{left:496.320000pt;}
.x6{left:526.080000pt;}
.x5{left:539.840000pt;}
.x11{left:683.840000pt;}
.xa{left:690.880000pt;}
}




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