
    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_664b9fe5c59d9f88329c32d2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.188000;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_3b0dc51c13306a1d62daae59.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.066000;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_a67f6f2c51b140aa63ae03d2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_04f0fe076d66295e79ec7580.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_39a064580050edc4885efc2e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_7b88e5f658e7ee9d08916906.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.051270;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_81db26b00353446660f286d0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.051270;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_d2b2627f703c045a31dd9dd2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.983398;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_52172b57ed2ca13bce5b2a54.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.962402;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_412a279b2d9e42acd64184c7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.117676;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_c01f35b1e7571eab005f9285.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.117676;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_36cb858d3d4daa204bccd504.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_803007d9d723750c8322c66a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_6ac50e71b3d7b85b9ee63eda.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.758789;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:fff;src:url('chunks/assets/font_1b5d3d299c67ce734fd871e3.woff2')format("woff");}.fff{font-family:fff;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;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d189d15c4853c073ac1c2737.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.962402;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v8{vertical-align:-127.680000px;}
.v5{vertical-align:-41.040000px;}
.v6{vertical-align:-29.520000px;}
.v3{vertical-align:-20.880000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:2.280000px;}
.v2{vertical-align:20.880000px;}
.va{vertical-align:24.060000px;}
.v1{vertical-align:27.360000px;}
.v7{vertical-align:39.600000px;}
.vb{vertical-align:83.940000px;}
.ls2a{letter-spacing:-12.480000px;}
.ls2e{letter-spacing:-0.864000px;}
.ls33{letter-spacing:-0.816000px;}
.ls26{letter-spacing:-0.654000px;}
.ls7{letter-spacing:-0.432000px;}
.ls38{letter-spacing:-0.391800px;}
.ls23{letter-spacing:-0.325200px;}
.ls35{letter-spacing:-0.306600px;}
.ls30{letter-spacing:-0.288000px;}
.ls28{letter-spacing:-0.261600px;}
.ls8{letter-spacing:-0.224400px;}
.ls21{letter-spacing:-0.223800px;}
.ls2d{letter-spacing:-0.197400px;}
.ls25{letter-spacing:-0.162600px;}
.ls3{letter-spacing:-0.145200px;}
.ls2f{letter-spacing:-0.144000px;}
.ls32{letter-spacing:-0.098400px;}
.ls6{letter-spacing:-0.058320px;}
.ls34{letter-spacing:-0.053280px;}
.ls36{letter-spacing:-0.026640px;}
.ls22{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.043920px;}
.ls1e{letter-spacing:0.050700px;}
.ls1a{letter-spacing:0.090600px;}
.ls15{letter-spacing:0.106800px;}
.ls18{letter-spacing:0.134400px;}
.ls24{letter-spacing:0.162600px;}
.ls19{letter-spacing:0.181200px;}
.ls1c{letter-spacing:0.181440px;}
.ls9{letter-spacing:0.190080px;}
.ls20{letter-spacing:0.197400px;}
.ls14{letter-spacing:0.204480px;}
.ls4{letter-spacing:0.216000px;}
.ls37{letter-spacing:0.225600px;}
.ls2{letter-spacing:0.238800px;}
.ls0{letter-spacing:0.259200px;}
.lsc{letter-spacing:0.288000px;}
.ls29{letter-spacing:0.295800px;}
.ls31{letter-spacing:0.432000px;}
.ls2b{letter-spacing:0.702000px;}
.ls1b{letter-spacing:0.810720px;}
.ls2c{letter-spacing:1.014000px;}
.ls27{letter-spacing:1.176000px;}
.lse{letter-spacing:9.648000px;}
.lsb{letter-spacing:20.448000px;}
.ls10{letter-spacing:24.768000px;}
.ls16{letter-spacing:31.884480px;}
.ls1d{letter-spacing:35.193600px;}
.ls17{letter-spacing:35.244000px;}
.ls5{letter-spacing:38.960640px;}
.lsd{letter-spacing:73.728000px;}
.ls13{letter-spacing:85.198320px;}
.lsa{letter-spacing:95.230080px;}
.ls11{letter-spacing:117.247104px;}
.ls12{letter-spacing:117.361440px;}
.lsf{letter-spacing:126.288000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(132,60,12),0 0.015em rgb(132,60,12),0.015em 0 rgb(132,60,12),0 -0.015em  rgb(132,60,12);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(132,60,12);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws21{word-spacing:-192.240000px;}
.ws20{word-spacing:-191.586000px;}
.ws3f{word-spacing:-144.000000px;}
.ws18{word-spacing:-137.178960px;}
.ws71{word-spacing:-131.760000px;}
.ws7{word-spacing:-96.874680px;}
.wsb{word-spacing:-73.458720px;}
.ws16{word-spacing:-53.605320px;}
.wsc{word-spacing:-53.442720px;}
.ws22{word-spacing:-53.280120px;}
.ws24{word-spacing:-47.813280px;}
.ws38{word-spacing:-46.637280px;}
.ws37{word-spacing:-46.474680px;}
.ws40{word-spacing:-40.464000px;}
.ws8{word-spacing:-40.072032px;}
.wsa{word-spacing:-40.032000px;}
.ws3d{word-spacing:-39.888000px;}
.ws9{word-spacing:-39.848232px;}
.ws3e{word-spacing:-39.744000px;}
.ws3c{word-spacing:-39.168000px;}
.ws6f{word-spacing:-36.854880px;}
.ws72{word-spacing:-36.810480px;}
.ws6e{word-spacing:-36.763680px;}
.ws73{word-spacing:-36.719880px;}
.ws70{word-spacing:-36.629280px;}
.ws64{word-spacing:-33.426720px;}
.ws5e{word-spacing:-33.373440px;}
.ws0{word-spacing:-16.723920px;}
.ws5{word-spacing:-14.319360px;}
.ws6{word-spacing:-14.094960px;}
.ws3{word-spacing:-13.447440px;}
.ws1{word-spacing:-10.081680px;}
.ws4{word-spacing:-9.437760px;}
.ws5d{word-spacing:-2.481120px;}
.ws43{word-spacing:-2.417040px;}
.ws60{word-spacing:-1.933920px;}
.ws56{word-spacing:-1.869840px;}
.ws6b{word-spacing:-1.599840px;}
.ws51{word-spacing:-1.514160px;}
.ws68{word-spacing:-1.200240px;}
.ws69{word-spacing:-0.820080px;}
.ws6c{word-spacing:-0.693360px;}
.ws6d{word-spacing:-0.666720px;}
.ws67{word-spacing:-0.547200px;}
.ws62{word-spacing:-0.486720px;}
.ws61{word-spacing:-0.440280px;}
.ws17{word-spacing:-0.400320px;}
.ws6a{word-spacing:-0.200160px;}
.ws2{word-spacing:0.000000px;}
.wse{word-spacing:0.129360px;}
.ws10{word-spacing:0.463680px;}
.ws19{word-spacing:0.871920px;}
.ws1a{word-spacing:0.881760px;}
.wsd{word-spacing:0.882000px;}
.ws3b{word-spacing:1.149600px;}
.ws39{word-spacing:1.450560px;}
.wsf{word-spacing:1.567440px;}
.ws3a{word-spacing:1.702080px;}
.ws11{word-spacing:7.752240px;}
.ws15{word-spacing:8.304480px;}
.ws13{word-spacing:8.383680px;}
.ws12{word-spacing:9.684720px;}
.ws14{word-spacing:10.207440px;}
.ws25{word-spacing:13.650960px;}
.ws2a{word-spacing:13.709880px;}
.ws2b{word-spacing:14.246640px;}
.ws28{word-spacing:14.266800px;}
.ws27{word-spacing:14.404320px;}
.ws26{word-spacing:14.627520px;}
.ws23{word-spacing:14.738640px;}
.ws44{word-spacing:15.120000px;}
.ws65{word-spacing:15.240960px;}
.ws2d{word-spacing:15.277680px;}
.ws29{word-spacing:15.411840px;}
.ws66{word-spacing:22.347360px;}
.ws42{word-spacing:25.014240px;}
.ws57{word-spacing:25.727040px;}
.ws48{word-spacing:33.297120px;}
.ws5c{word-spacing:38.148480px;}
.ws2c{word-spacing:39.240000px;}
.ws30{word-spacing:47.816280px;}
.ws33{word-spacing:48.165840px;}
.ws2f{word-spacing:48.269880px;}
.ws2e{word-spacing:48.501360px;}
.ws35{word-spacing:48.664800px;}
.ws31{word-spacing:48.925440px;}
.ws36{word-spacing:49.433040px;}
.ws32{word-spacing:49.843080px;}
.ws34{word-spacing:49.917360px;}
.ws63{word-spacing:50.119920px;}
.ws4d{word-spacing:53.477280px;}
.ws4f{word-spacing:53.648640px;}
.ws4b{word-spacing:53.683920px;}
.ws4c{word-spacing:54.063720px;}
.ws4e{word-spacing:54.817920px;}
.ws4a{word-spacing:62.122320px;}
.ws49{word-spacing:63.068160px;}
.ws5a{word-spacing:87.317280px;}
.ws58{word-spacing:88.115040px;}
.ws59{word-spacing:88.623720px;}
.ws45{word-spacing:88.875360px;}
.ws47{word-spacing:89.264880px;}
.ws46{word-spacing:89.377920px;}
.ws5b{word-spacing:90.090720px;}
.ws50{word-spacing:108.804960px;}
.ws5f{word-spacing:109.332720px;}
.ws1c{word-spacing:111.678480px;}
.ws1b{word-spacing:112.876920px;}
.ws55{word-spacing:122.796720px;}
.ws52{word-spacing:122.828160px;}
.ws53{word-spacing:122.970960px;}
.ws54{word-spacing:124.650720px;}
.ws41{word-spacing:162.576000px;}
.ws1e{word-spacing:416.560800px;}
.ws1f{word-spacing:555.671520px;}
.ws1d{word-spacing:556.110720px;}
.ws74{word-spacing:718.557600px;}
.ws77{word-spacing:939.183480px;}
.ws76{word-spacing:2458.811760px;}
.ws75{word-spacing:5061.732000px;}
.ws78{word-spacing:6003.912000px;}
._1c{margin-left:-21.852720px;}
._2a{margin-left:-16.614720px;}
._19{margin-left:-14.690160px;}
._17{margin-left:-12.396240px;}
._1a{margin-left:-10.550400px;}
._28{margin-left:-9.123840px;}
._1d{margin-left:-6.860160px;}
._18{margin-left:-5.429328px;}
._13{margin-left:-4.413120px;}
._10{margin-left:-3.041280px;}
._1{margin-left:-1.080000px;}
._0{width:1.164000px;}
._3{width:2.220000px;}
._f{width:4.121280px;}
._14{width:7.603200px;}
._15{width:8.680320px;}
._27{width:10.471680px;}
._e{width:12.876480px;}
._16{width:16.727040px;}
._7{width:17.867520px;}
._8{width:18.950400px;}
._9{width:20.088000px;}
._12{width:21.096000px;}
._2b{width:22.277328px;}
._d{width:23.443200px;}
._c{width:24.526080px;}
._5{width:25.790400px;}
._6{width:26.897760px;}
._37{width:32.783040px;}
._4{width:34.470720px;}
._a{width:38.082240px;}
._b{width:39.216960px;}
._11{width:42.514560px;}
._24{width:48.946320px;}
._25{width:50.290800px;}
._2e{width:52.106400px;}
._1b{width:54.069360px;}
._38{width:57.453120px;}
._39{width:58.708080px;}
._1e{width:61.360320px;}
._1f{width:62.520000px;}
._20{width:66.169920px;}
._21{width:67.391040px;}
._26{width:73.440000px;}
._2f{width:74.495520px;}
._35{width:77.306400px;}
._2d{width:79.558560px;}
._30{width:86.603280px;}
._36{width:93.258144px;}
._23{width:94.964400px;}
._22{width:96.720480px;}
._32{width:119.537280px;}
._29{width:126.000000px;}
._31{width:127.542240px;}
._2c{width:221.970240px;}
._33{width:301.976160px;}
._34{width:355.140000px;}
._2{width:849.836640px;}
._3a{width:3592.392720px;}
.fc7{color:rgb(132,60,12);}
.fc8{color:rgb(0,112,192);}
.fc4{color:rgb(192,0,0);}
.fc3{color:transparent;}
.fc5{color:rgb(0,65,208);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc9{color:rgb(197,90,17);}
.fc6{color:rgb(179,165,20);}
.fc0{color:rgb(0,102,162);}
.fs9{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs7{font-size:60.000000px;}
.fs1{font-size:63.360000px;}
.fs8{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs13{font-size:79.920000px;}
.fs15{font-size:87.840000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.fs10{font-size:112.320000px;}
.fs12{font-size:120.240000px;}
.fs14{font-size:131.760000px;}
.fs16{font-size:131.904000px;}
.fsd{font-size:144.000000px;}
.fsc{font-size:144.144000px;}
.fsa{font-size:167.760000px;}
.fsf{font-size:192.240000px;}
.fs11{font-size:192.384000px;}
.fs17{font-size:216.000000px;}
.fs18{font-size:216.144000px;}
.fse{font-size:264.240000px;}
.fsb{font-size:347.760000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:16.020000px;}
.yf{bottom:17.460000px;}
.y12{bottom:20.196000px;}
.y7{bottom:22.176000px;}
.y14{bottom:35.454000px;}
.y1a{bottom:38.160000px;}
.y31{bottom:38.190000px;}
.y6{bottom:49.140000px;}
.y15{bottom:52.500000px;}
.ye{bottom:53.460000px;}
.y10{bottom:57.060000px;}
.y19{bottom:60.300000px;}
.y30{bottom:60.330000px;}
.y11{bottom:62.856000px;}
.y40{bottom:77.112000px;}
.y2f{bottom:82.470000px;}
.y18{bottom:92.520000px;}
.yd{bottom:99.540000px;}
.y2e{bottom:104.430000px;}
.y20{bottom:115.770000px;}
.y17{bottom:117.720000px;}
.y2d{bottom:126.570000px;}
.y5{bottom:127.836000px;}
.y3f{bottom:134.712000px;}
.y92{bottom:137.625000px;}
.y9f{bottom:137.730000px;}
.y98{bottom:137.775000px;}
.y95{bottom:137.805000px;}
.yc{bottom:140.040000px;}
.y4{bottom:146.916000px;}
.y2c{bottom:148.710000px;}
.y13{bottom:149.256000px;}
.y2b{bottom:170.850000px;}
.yb{bottom:180.540000px;}
.y3e{bottom:192.315000px;}
.y2a{bottom:192.990000px;}
.y29{bottom:215.130000px;}
.y28{bottom:237.090000px;}
.y3d{bottom:249.915000px;}
.y27{bottom:259.230000px;}
.y26{bottom:281.370000px;}
.y25{bottom:303.510000px;}
.yae{bottom:305.820000px;}
.y3c{bottom:307.515000px;}
.y24{bottom:325.695000px;}
.y1f{bottom:334.335000px;}
.ya{bottom:341.535000px;}
.yad{bottom:341.820000px;}
.y23{bottom:347.835000px;}
.yb0{bottom:362.805000px;}
.y3b{bottom:365.115000px;}
.y22{bottom:369.795000px;}
.y1e{bottom:372.135000px;}
.y21{bottom:391.935000px;}
.yaf{bottom:398.805000px;}
.y1d{bottom:409.935000px;}
.y54{bottom:498.525000px;}
.y53{bottom:541.725000px;}
.y32{bottom:549.795000px;}
.y1c{bottom:565.635000px;}
.y52{bottom:584.925000px;}
.y51{bottom:628.125000px;}
.y50{bottom:671.325000px;}
.y4f{bottom:714.525000px;}
.y4e{bottom:757.725000px;}
.y4d{bottom:800.925000px;}
.y4c{bottom:844.125000px;}
.y4b{bottom:887.325000px;}
.y4a{bottom:930.525000px;}
.y49{bottom:973.725000px;}
.y16{bottom:991.410000px;}
.y48{bottom:1016.925000px;}
.y47{bottom:1060.125000px;}
.y9{bottom:1080.150000px;}
.y46{bottom:1103.325000px;}
.y8{bottom:1117.950000px;}
.y3{bottom:1152.720000px;}
.y2{bottom:1173.060000px;}
.y1{bottom:1193.220000px;}
.yac{bottom:1202.835000px;}
.yab{bottom:1217.850000px;}
.y68{bottom:1249.590000px;}
.yaa{bottom:1253.850000px;}
.y67{bottom:1307.235000px;}
.y66{bottom:1364.835000px;}
.y65{bottom:1422.435000px;}
.y64{bottom:1480.035000px;}
.y63{bottom:1537.635000px;}
.y62{bottom:1595.235000px;}
.y61{bottom:1652.835000px;}
.y60{bottom:1710.435000px;}
.y5f{bottom:1768.035000px;}
.y5e{bottom:1825.635000px;}
.y5d{bottom:1883.235000px;}
.ya9{bottom:1892.850000px;}
.ya7{bottom:1898.850000px;}
.ya8{bottom:1928.880000px;}
.ya6{bottom:1934.850000px;}
.y5c{bottom:1940.835000px;}
.y5b{bottom:1998.435000px;}
.y5a{bottom:2056.035000px;}
.y59{bottom:2113.635000px;}
.y58{bottom:2171.235000px;}
.y57{bottom:2228.835000px;}
.y56{bottom:2286.435000px;}
.y55{bottom:2344.065000px;}
.ya4{bottom:2495.415000px;}
.ya5{bottom:2498.430000px;}
.ya1{bottom:2499.120000px;}
.y9e{bottom:2553.120000px;}
.y9c{bottom:2607.120000px;}
.y33{bottom:2608.020000px;}
.ya0{bottom:2636.850000px;}
.y9a{bottom:2661.120000px;}
.y9d{bottom:2690.850000px;}
.y97{bottom:2715.120000px;}
.y8b{bottom:2731.110000px;}
.y9b{bottom:2744.895000px;}
.y94{bottom:2769.120000px;}
.y8a{bottom:2770.710000px;}
.y99{bottom:2798.895000px;}
.y89{bottom:2810.310000px;}
.y91{bottom:2823.300000px;}
.y88{bottom:2849.910000px;}
.y96{bottom:2852.895000px;}
.y87{bottom:2889.510000px;}
.y93{bottom:2906.925000px;}
.y86{bottom:2929.140000px;}
.ya3{bottom:2939.610000px;}
.ya2{bottom:2945.625000px;}
.y90{bottom:2960.925000px;}
.y85{bottom:2968.740000px;}
.y84{bottom:3008.340000px;}
.y8f{bottom:3016.410000px;}
.y83{bottom:3047.940000px;}
.y82{bottom:3087.540000px;}
.y6b{bottom:3129.330000px;}
.y6a{bottom:3165.330000px;}
.y69{bottom:3201.375000px;}
.y77{bottom:3202.485000px;}
.y81{bottom:3244.110000px;}
.y74{bottom:3266.430000px;}
.y80{bottom:3283.710000px;}
.y73{bottom:3302.430000px;}
.y7f{bottom:3323.310000px;}
.y72{bottom:3338.430000px;}
.y7e{bottom:3362.910000px;}
.y71{bottom:3374.430000px;}
.y7d{bottom:3402.510000px;}
.y70{bottom:3410.430000px;}
.y78{bottom:3440.805000px;}
.y7c{bottom:3442.110000px;}
.y6f{bottom:3446.430000px;}
.y7b{bottom:3481.710000px;}
.y6e{bottom:3482.430000px;}
.y6d{bottom:3518.430000px;}
.y7a{bottom:3521.310000px;}
.y6c{bottom:3554.430000px;}
.y79{bottom:3560.910000px;}
.y76{bottom:3572.175000px;}
.y75{bottom:3652.095000px;}
.y8e{bottom:3661.095000px;}
.y8d{bottom:3765.240000px;}
.y45{bottom:3858.045000px;}
.y44{bottom:3908.445000px;}
.y43{bottom:3958.845000px;}
.y42{bottom:4009.245000px;}
.y41{bottom:4059.645000px;}
.y8c{bottom:4152.990000px;}
.y38{bottom:4259.190000px;}
.y37{bottom:4319.895000px;}
.y3a{bottom:4423.290000px;}
.y39{bottom:4502.490000px;}
.y36{bottom:4626.330000px;}
.y35{bottom:4730.730000px;}
.y34{bottom:4835.130000px;}
.h5{height:36.576000px;}
.h3{height:42.984000px;}
.h2{height:49.302000px;}
.h13{height:55.316250px;}
.h12{height:57.338438px;}
.hf{height:58.886719px;}
.h6{height:59.439023px;}
.hb{height:61.896960px;}
.hd{height:63.000000px;}
.h4{height:63.019687px;}
.h15{height:64.875938px;}
.hc{height:71.403120px;}
.h11{height:73.722656px;}
.h9{height:76.224960px;}
.h26{height:81.210938px;}
.ha{height:85.356000px;}
.he{height:87.428880px;}
.h24{height:87.890273px;}
.h25{height:90.414844px;}
.h8{height:98.604000px;}
.h27{height:99.077344px;}
.h2a{height:99.185625px;}
.h20{height:105.257812px;}
.h2e{height:105.363070px;}
.h28{height:105.651563px;}
.h1f{height:108.281250px;}
.h29{height:111.043828px;}
.h18{height:126.147656px;}
.h2f{height:128.427656px;}
.h1b{height:130.640625px;}
.h1a{height:130.771266px;}
.h1e{height:140.519180px;}
.h10{height:140.940000px;}
.h1d{height:144.555469px;}
.h23{height:144.663750px;}
.h30{height:150.207656px;}
.h22{height:162.014766px;}
.h21{height:162.136125px;}
.h2b{height:162.421875px;}
.h2c{height:162.530156px;}
.h31{height:174.354844px;}
.h7{height:211.500000px;}
.h1c{height:239.725547px;}
.h19{height:261.499219px;}
.h2d{height:302.580000px;}
.h14{height:425.055000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.h16{height:5055.480000px;}
.h17{height:5055.750000px;}
.w6{width:216.930000px;}
.wb{width:416.160000px;}
.w7{width:460.515000px;}
.w4{width:513.645000px;}
.w3{width:611.745000px;}
.w5{width:677.445000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.wa{width:3575.879947px;}
.w8{width:3575.880000px;}
.w9{width:3576.000000px;}
.x0{left:0.000000px;}
.x10{left:8.100000px;}
.x8{left:10.800000px;}
.xe{left:22.500000px;}
.x1c{left:52.883947px;}
.x20{left:65.771947px;}
.x21{left:68.111947px;}
.xa{left:94.905000px;}
.x4{left:108.035987px;}
.x30{left:109.043947px;}
.x31{left:111.023947px;}
.x37{left:125.963947px;}
.x34{left:127.043947px;}
.xd{left:128.925000px;}
.x36{left:138.923947px;}
.xb{left:140.085000px;}
.x9{left:193.890000px;}
.xc{left:195.870000px;}
.x11{left:207.399000px;}
.x5{left:228.630000px;}
.x45{left:249.554947px;}
.x32{left:259.020000px;}
.x7{left:261.570000px;}
.x46{left:287.354947px;}
.x35{left:289.949947px;}
.x38{left:320.009947px;}
.x12{left:324.975000px;}
.x22{left:329.654947px;}
.x39{left:350.069947px;}
.x25{left:368.894947px;}
.x3f{left:371.489947px;}
.x43{left:377.459947px;}
.x40{left:409.289947px;}
.x1{left:415.154987px;}
.x19{left:461.804947px;}
.x2{left:476.024987px;}
.x3{left:542.804987px;}
.x33{left:551.849947px;}
.xf{left:578.100000px;}
.x6{left:593.400000px;}
.x15{left:647.099947px;}
.x14{left:686.699947px;}
.x17{left:779.144947px;}
.x3b{left:788.549947px;}
.x23{left:835.844947px;}
.x24{left:896.684947px;}
.x3e{left:928.829947px;}
.x3c{left:966.239947px;}
.x16{left:993.809947px;}
.x13{left:1150.229947px;}
.x41{left:1349.534947px;}
.x1a{left:1378.409947px;}
.x42{left:1387.334947px;}
.x47{left:1422.614947px;}
.x2e{left:1438.889947px;}
.x18{left:1459.949947px;}
.x44{left:1462.319947px;}
.x2d{left:1582.889947px;}
.x3d{left:1605.494947px;}
.x3a{left:1788.944947px;}
.x28{left:1984.784947px;}
.x27{left:2128.784947px;}
.x26{left:2172.059947px;}
.x1d{left:2185.919947px;}
.x1e{left:2188.544947px;}
.x1b{left:2199.419947px;}
.x1f{left:2256.044947px;}
.x2f{left:2339.024947px;}
.x29{left:2797.124947px;}
.x2a{left:2817.464947px;}
.x2b{left:2884.934947px;}
.x2c{left:2905.274947px;}
@media print{
.v8{vertical-align:-113.493333pt;}
.v5{vertical-align:-36.480000pt;}
.v6{vertical-align:-26.240000pt;}
.v3{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:2.026667pt;}
.v2{vertical-align:18.560000pt;}
.va{vertical-align:21.386667pt;}
.v1{vertical-align:24.320000pt;}
.v7{vertical-align:35.200000pt;}
.vb{vertical-align:74.613333pt;}
.ls2a{letter-spacing:-11.093333pt;}
.ls2e{letter-spacing:-0.768000pt;}
.ls33{letter-spacing:-0.725333pt;}
.ls26{letter-spacing:-0.581333pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls38{letter-spacing:-0.348267pt;}
.ls23{letter-spacing:-0.289067pt;}
.ls35{letter-spacing:-0.272533pt;}
.ls30{letter-spacing:-0.256000pt;}
.ls28{letter-spacing:-0.232533pt;}
.ls8{letter-spacing:-0.199467pt;}
.ls21{letter-spacing:-0.198933pt;}
.ls2d{letter-spacing:-0.175467pt;}
.ls25{letter-spacing:-0.144533pt;}
.ls3{letter-spacing:-0.129067pt;}
.ls2f{letter-spacing:-0.128000pt;}
.ls32{letter-spacing:-0.087467pt;}
.ls6{letter-spacing:-0.051840pt;}
.ls34{letter-spacing:-0.047360pt;}
.ls36{letter-spacing:-0.023680pt;}
.ls22{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.039040pt;}
.ls1e{letter-spacing:0.045067pt;}
.ls1a{letter-spacing:0.080533pt;}
.ls15{letter-spacing:0.094933pt;}
.ls18{letter-spacing:0.119467pt;}
.ls24{letter-spacing:0.144533pt;}
.ls19{letter-spacing:0.161067pt;}
.ls1c{letter-spacing:0.161280pt;}
.ls9{letter-spacing:0.168960pt;}
.ls20{letter-spacing:0.175467pt;}
.ls14{letter-spacing:0.181760pt;}
.ls4{letter-spacing:0.192000pt;}
.ls37{letter-spacing:0.200533pt;}
.ls2{letter-spacing:0.212267pt;}
.ls0{letter-spacing:0.230400pt;}
.lsc{letter-spacing:0.256000pt;}
.ls29{letter-spacing:0.262933pt;}
.ls31{letter-spacing:0.384000pt;}
.ls2b{letter-spacing:0.624000pt;}
.ls1b{letter-spacing:0.720640pt;}
.ls2c{letter-spacing:0.901333pt;}
.ls27{letter-spacing:1.045333pt;}
.lse{letter-spacing:8.576000pt;}
.lsb{letter-spacing:18.176000pt;}
.ls10{letter-spacing:22.016000pt;}
.ls16{letter-spacing:28.341760pt;}
.ls1d{letter-spacing:31.283200pt;}
.ls17{letter-spacing:31.328000pt;}
.ls5{letter-spacing:34.631680pt;}
.lsd{letter-spacing:65.536000pt;}
.ls13{letter-spacing:75.731840pt;}
.lsa{letter-spacing:84.648960pt;}
.ls11{letter-spacing:104.219648pt;}
.ls12{letter-spacing:104.321280pt;}
.lsf{letter-spacing:112.256000pt;}
.ws21{word-spacing:-170.880000pt;}
.ws20{word-spacing:-170.298667pt;}
.ws3f{word-spacing:-128.000000pt;}
.ws18{word-spacing:-121.936853pt;}
.ws71{word-spacing:-117.120000pt;}
.ws7{word-spacing:-86.110827pt;}
.wsb{word-spacing:-65.296640pt;}
.ws16{word-spacing:-47.649173pt;}
.wsc{word-spacing:-47.504640pt;}
.ws22{word-spacing:-47.360107pt;}
.ws24{word-spacing:-42.500693pt;}
.ws38{word-spacing:-41.455360pt;}
.ws37{word-spacing:-41.310827pt;}
.ws40{word-spacing:-35.968000pt;}
.ws8{word-spacing:-35.619584pt;}
.wsa{word-spacing:-35.584000pt;}
.ws3d{word-spacing:-35.456000pt;}
.ws9{word-spacing:-35.420651pt;}
.ws3e{word-spacing:-35.328000pt;}
.ws3c{word-spacing:-34.816000pt;}
.ws6f{word-spacing:-32.759893pt;}
.ws72{word-spacing:-32.720427pt;}
.ws6e{word-spacing:-32.678827pt;}
.ws73{word-spacing:-32.639893pt;}
.ws70{word-spacing:-32.559360pt;}
.ws64{word-spacing:-29.712640pt;}
.ws5e{word-spacing:-29.665280pt;}
.ws0{word-spacing:-14.865707pt;}
.ws5{word-spacing:-12.728320pt;}
.ws6{word-spacing:-12.528853pt;}
.ws3{word-spacing:-11.953280pt;}
.ws1{word-spacing:-8.961493pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5d{word-spacing:-2.205440pt;}
.ws43{word-spacing:-2.148480pt;}
.ws60{word-spacing:-1.719040pt;}
.ws56{word-spacing:-1.662080pt;}
.ws6b{word-spacing:-1.422080pt;}
.ws51{word-spacing:-1.345920pt;}
.ws68{word-spacing:-1.066880pt;}
.ws69{word-spacing:-0.728960pt;}
.ws6c{word-spacing:-0.616320pt;}
.ws6d{word-spacing:-0.592640pt;}
.ws67{word-spacing:-0.486400pt;}
.ws62{word-spacing:-0.432640pt;}
.ws61{word-spacing:-0.391360pt;}
.ws17{word-spacing:-0.355840pt;}
.ws6a{word-spacing:-0.177920pt;}
.ws2{word-spacing:0.000000pt;}
.wse{word-spacing:0.114987pt;}
.ws10{word-spacing:0.412160pt;}
.ws19{word-spacing:0.775040pt;}
.ws1a{word-spacing:0.783787pt;}
.wsd{word-spacing:0.784000pt;}
.ws3b{word-spacing:1.021867pt;}
.ws39{word-spacing:1.289387pt;}
.wsf{word-spacing:1.393280pt;}
.ws3a{word-spacing:1.512960pt;}
.ws11{word-spacing:6.890880pt;}
.ws15{word-spacing:7.381760pt;}
.ws13{word-spacing:7.452160pt;}
.ws12{word-spacing:8.608640pt;}
.ws14{word-spacing:9.073280pt;}
.ws25{word-spacing:12.134187pt;}
.ws2a{word-spacing:12.186560pt;}
.ws2b{word-spacing:12.663680pt;}
.ws28{word-spacing:12.681600pt;}
.ws27{word-spacing:12.803840pt;}
.ws26{word-spacing:13.002240pt;}
.ws23{word-spacing:13.101013pt;}
.ws44{word-spacing:13.440000pt;}
.ws65{word-spacing:13.547520pt;}
.ws2d{word-spacing:13.580160pt;}
.ws29{word-spacing:13.699413pt;}
.ws66{word-spacing:19.864320pt;}
.ws42{word-spacing:22.234880pt;}
.ws57{word-spacing:22.868480pt;}
.ws48{word-spacing:29.597440pt;}
.ws5c{word-spacing:33.909760pt;}
.ws2c{word-spacing:34.880000pt;}
.ws30{word-spacing:42.503360pt;}
.ws33{word-spacing:42.814080pt;}
.ws2f{word-spacing:42.906560pt;}
.ws2e{word-spacing:43.112320pt;}
.ws35{word-spacing:43.257600pt;}
.ws31{word-spacing:43.489280pt;}
.ws36{word-spacing:43.940480pt;}
.ws32{word-spacing:44.304960pt;}
.ws34{word-spacing:44.370987pt;}
.ws63{word-spacing:44.551040pt;}
.ws4d{word-spacing:47.535360pt;}
.ws4f{word-spacing:47.687680pt;}
.ws4b{word-spacing:47.719040pt;}
.ws4c{word-spacing:48.056640pt;}
.ws4e{word-spacing:48.727040pt;}
.ws4a{word-spacing:55.219840pt;}
.ws49{word-spacing:56.060587pt;}
.ws5a{word-spacing:77.615360pt;}
.ws58{word-spacing:78.324480pt;}
.ws59{word-spacing:78.776640pt;}
.ws45{word-spacing:79.000320pt;}
.ws47{word-spacing:79.346560pt;}
.ws46{word-spacing:79.447040pt;}
.ws5b{word-spacing:80.080640pt;}
.ws50{word-spacing:96.715520pt;}
.ws5f{word-spacing:97.184640pt;}
.ws1c{word-spacing:99.269760pt;}
.ws1b{word-spacing:100.335040pt;}
.ws55{word-spacing:109.152640pt;}
.ws52{word-spacing:109.180587pt;}
.ws53{word-spacing:109.307520pt;}
.ws54{word-spacing:110.800640pt;}
.ws41{word-spacing:144.512000pt;}
.ws1e{word-spacing:370.276267pt;}
.ws1f{word-spacing:493.930240pt;}
.ws1d{word-spacing:494.320640pt;}
.ws74{word-spacing:638.717867pt;}
.ws77{word-spacing:834.829760pt;}
.ws76{word-spacing:2185.610453pt;}
.ws75{word-spacing:4499.317333pt;}
.ws78{word-spacing:5336.810667pt;}
._1c{margin-left:-19.424640pt;}
._2a{margin-left:-14.768640pt;}
._19{margin-left:-13.057920pt;}
._17{margin-left:-11.018880pt;}
._1a{margin-left:-9.378133pt;}
._28{margin-left:-8.110080pt;}
._1d{margin-left:-6.097920pt;}
._18{margin-left:-4.826069pt;}
._13{margin-left:-3.922773pt;}
._10{margin-left:-2.703360pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.034667pt;}
._3{width:1.973333pt;}
._f{width:3.663360pt;}
._14{width:6.758400pt;}
._15{width:7.715840pt;}
._27{width:9.308160pt;}
._e{width:11.445760pt;}
._16{width:14.868480pt;}
._7{width:15.882240pt;}
._8{width:16.844800pt;}
._9{width:17.856000pt;}
._12{width:18.752000pt;}
._2b{width:19.802069pt;}
._d{width:20.838400pt;}
._c{width:21.800960pt;}
._5{width:22.924800pt;}
._6{width:23.909120pt;}
._37{width:29.140480pt;}
._4{width:30.640640pt;}
._a{width:33.850880pt;}
._b{width:34.859520pt;}
._11{width:37.790720pt;}
._24{width:43.507840pt;}
._25{width:44.702933pt;}
._2e{width:46.316800pt;}
._1b{width:48.061653pt;}
._38{width:51.069440pt;}
._39{width:52.184960pt;}
._1e{width:54.542507pt;}
._1f{width:55.573333pt;}
._20{width:58.817707pt;}
._21{width:59.903147pt;}
._26{width:65.280000pt;}
._2f{width:66.218240pt;}
._35{width:68.716800pt;}
._2d{width:70.718720pt;}
._30{width:76.980693pt;}
._36{width:82.896128pt;}
._23{width:84.412800pt;}
._22{width:85.973760pt;}
._32{width:106.255360pt;}
._29{width:112.000000pt;}
._31{width:113.370880pt;}
._2c{width:197.306880pt;}
._33{width:268.423253pt;}
._34{width:315.680000pt;}
._2{width:755.410347pt;}
._3a{width:3193.237973pt;}
.fs9{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs7{font-size:53.333333pt;}
.fs1{font-size:56.320000pt;}
.fs8{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs13{font-size:71.040000pt;}
.fs15{font-size:78.080000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.fs10{font-size:99.840000pt;}
.fs12{font-size:106.880000pt;}
.fs14{font-size:117.120000pt;}
.fs16{font-size:117.248000pt;}
.fsd{font-size:128.000000pt;}
.fsc{font-size:128.128000pt;}
.fsa{font-size:149.120000pt;}
.fsf{font-size:170.880000pt;}
.fs11{font-size:171.008000pt;}
.fs17{font-size:192.000000pt;}
.fs18{font-size:192.128000pt;}
.fse{font-size:234.880000pt;}
.fsb{font-size:309.120000pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:14.240000pt;}
.yf{bottom:15.520000pt;}
.y12{bottom:17.952000pt;}
.y7{bottom:19.712000pt;}
.y14{bottom:31.514667pt;}
.y1a{bottom:33.920000pt;}
.y31{bottom:33.946667pt;}
.y6{bottom:43.680000pt;}
.y15{bottom:46.666667pt;}
.ye{bottom:47.520000pt;}
.y10{bottom:50.720000pt;}
.y19{bottom:53.600000pt;}
.y30{bottom:53.626667pt;}
.y11{bottom:55.872000pt;}
.y40{bottom:68.544000pt;}
.y2f{bottom:73.306667pt;}
.y18{bottom:82.240000pt;}
.yd{bottom:88.480000pt;}
.y2e{bottom:92.826667pt;}
.y20{bottom:102.906667pt;}
.y17{bottom:104.640000pt;}
.y2d{bottom:112.506667pt;}
.y5{bottom:113.632000pt;}
.y3f{bottom:119.744000pt;}
.y92{bottom:122.333333pt;}
.y9f{bottom:122.426667pt;}
.y98{bottom:122.466667pt;}
.y95{bottom:122.493333pt;}
.yc{bottom:124.480000pt;}
.y4{bottom:130.592000pt;}
.y2c{bottom:132.186667pt;}
.y13{bottom:132.672000pt;}
.y2b{bottom:151.866667pt;}
.yb{bottom:160.480000pt;}
.y3e{bottom:170.946667pt;}
.y2a{bottom:171.546667pt;}
.y29{bottom:191.226667pt;}
.y28{bottom:210.746667pt;}
.y3d{bottom:222.146667pt;}
.y27{bottom:230.426667pt;}
.y26{bottom:250.106667pt;}
.y25{bottom:269.786667pt;}
.yae{bottom:271.840000pt;}
.y3c{bottom:273.346667pt;}
.y24{bottom:289.506667pt;}
.y1f{bottom:297.186667pt;}
.ya{bottom:303.586667pt;}
.yad{bottom:303.840000pt;}
.y23{bottom:309.186667pt;}
.yb0{bottom:322.493333pt;}
.y3b{bottom:324.546667pt;}
.y22{bottom:328.706667pt;}
.y1e{bottom:330.786667pt;}
.y21{bottom:348.386667pt;}
.yaf{bottom:354.493333pt;}
.y1d{bottom:364.386667pt;}
.y54{bottom:443.133333pt;}
.y53{bottom:481.533333pt;}
.y32{bottom:488.706667pt;}
.y1c{bottom:502.786667pt;}
.y52{bottom:519.933333pt;}
.y51{bottom:558.333333pt;}
.y50{bottom:596.733333pt;}
.y4f{bottom:635.133333pt;}
.y4e{bottom:673.533333pt;}
.y4d{bottom:711.933333pt;}
.y4c{bottom:750.333333pt;}
.y4b{bottom:788.733333pt;}
.y4a{bottom:827.133333pt;}
.y49{bottom:865.533333pt;}
.y16{bottom:881.253333pt;}
.y48{bottom:903.933333pt;}
.y47{bottom:942.333333pt;}
.y9{bottom:960.133333pt;}
.y46{bottom:980.733333pt;}
.y8{bottom:993.733333pt;}
.y3{bottom:1024.640000pt;}
.y2{bottom:1042.720000pt;}
.y1{bottom:1060.640000pt;}
.yac{bottom:1069.186667pt;}
.yab{bottom:1082.533333pt;}
.y68{bottom:1110.746667pt;}
.yaa{bottom:1114.533333pt;}
.y67{bottom:1161.986667pt;}
.y66{bottom:1213.186667pt;}
.y65{bottom:1264.386667pt;}
.y64{bottom:1315.586667pt;}
.y63{bottom:1366.786667pt;}
.y62{bottom:1417.986667pt;}
.y61{bottom:1469.186667pt;}
.y60{bottom:1520.386667pt;}
.y5f{bottom:1571.586667pt;}
.y5e{bottom:1622.786667pt;}
.y5d{bottom:1673.986667pt;}
.ya9{bottom:1682.533333pt;}
.ya7{bottom:1687.866667pt;}
.ya8{bottom:1714.560000pt;}
.ya6{bottom:1719.866667pt;}
.y5c{bottom:1725.186667pt;}
.y5b{bottom:1776.386667pt;}
.y5a{bottom:1827.586667pt;}
.y59{bottom:1878.786667pt;}
.y58{bottom:1929.986667pt;}
.y57{bottom:1981.186667pt;}
.y56{bottom:2032.386667pt;}
.y55{bottom:2083.613333pt;}
.ya4{bottom:2218.146667pt;}
.ya5{bottom:2220.826667pt;}
.ya1{bottom:2221.440000pt;}
.y9e{bottom:2269.440000pt;}
.y9c{bottom:2317.440000pt;}
.y33{bottom:2318.240000pt;}
.ya0{bottom:2343.866667pt;}
.y9a{bottom:2365.440000pt;}
.y9d{bottom:2391.866667pt;}
.y97{bottom:2413.440000pt;}
.y8b{bottom:2427.653333pt;}
.y9b{bottom:2439.906667pt;}
.y94{bottom:2461.440000pt;}
.y8a{bottom:2462.853333pt;}
.y99{bottom:2487.906667pt;}
.y89{bottom:2498.053333pt;}
.y91{bottom:2509.600000pt;}
.y88{bottom:2533.253333pt;}
.y96{bottom:2535.906667pt;}
.y87{bottom:2568.453333pt;}
.y93{bottom:2583.933333pt;}
.y86{bottom:2603.680000pt;}
.ya3{bottom:2612.986667pt;}
.ya2{bottom:2618.333333pt;}
.y90{bottom:2631.933333pt;}
.y85{bottom:2638.880000pt;}
.y84{bottom:2674.080000pt;}
.y8f{bottom:2681.253333pt;}
.y83{bottom:2709.280000pt;}
.y82{bottom:2744.480000pt;}
.y6b{bottom:2781.626667pt;}
.y6a{bottom:2813.626667pt;}
.y69{bottom:2845.666667pt;}
.y77{bottom:2846.653333pt;}
.y81{bottom:2883.653333pt;}
.y74{bottom:2903.493333pt;}
.y80{bottom:2918.853333pt;}
.y73{bottom:2935.493333pt;}
.y7f{bottom:2954.053333pt;}
.y72{bottom:2967.493333pt;}
.y7e{bottom:2989.253333pt;}
.y71{bottom:2999.493333pt;}
.y7d{bottom:3024.453333pt;}
.y70{bottom:3031.493333pt;}
.y78{bottom:3058.493333pt;}
.y7c{bottom:3059.653333pt;}
.y6f{bottom:3063.493333pt;}
.y7b{bottom:3094.853333pt;}
.y6e{bottom:3095.493333pt;}
.y6d{bottom:3127.493333pt;}
.y7a{bottom:3130.053333pt;}
.y6c{bottom:3159.493333pt;}
.y79{bottom:3165.253333pt;}
.y76{bottom:3175.266667pt;}
.y75{bottom:3246.306667pt;}
.y8e{bottom:3254.306667pt;}
.y8d{bottom:3346.880000pt;}
.y45{bottom:3429.373333pt;}
.y44{bottom:3474.173333pt;}
.y43{bottom:3518.973333pt;}
.y42{bottom:3563.773333pt;}
.y41{bottom:3608.573333pt;}
.y8c{bottom:3691.546667pt;}
.y38{bottom:3785.946667pt;}
.y37{bottom:3839.906667pt;}
.y3a{bottom:3931.813333pt;}
.y39{bottom:4002.213333pt;}
.y36{bottom:4112.293333pt;}
.y35{bottom:4205.093333pt;}
.y34{bottom:4297.893333pt;}
.h5{height:32.512000pt;}
.h3{height:38.208000pt;}
.h2{height:43.824000pt;}
.h13{height:49.170000pt;}
.h12{height:50.967500pt;}
.hf{height:52.343750pt;}
.h6{height:52.834688pt;}
.hb{height:55.019520pt;}
.hd{height:56.000000pt;}
.h4{height:56.017500pt;}
.h15{height:57.667500pt;}
.hc{height:63.469440pt;}
.h11{height:65.531250pt;}
.h9{height:67.755520pt;}
.h26{height:72.187500pt;}
.ha{height:75.872000pt;}
.he{height:77.714560pt;}
.h24{height:78.124687pt;}
.h25{height:80.368750pt;}
.h8{height:87.648000pt;}
.h27{height:88.068750pt;}
.h2a{height:88.165000pt;}
.h20{height:93.562500pt;}
.h2e{height:93.656062pt;}
.h28{height:93.912500pt;}
.h1f{height:96.250000pt;}
.h29{height:98.705625pt;}
.h18{height:112.131250pt;}
.h2f{height:114.157917pt;}
.h1b{height:116.125000pt;}
.h1a{height:116.241125pt;}
.h1e{height:124.905938pt;}
.h10{height:125.280000pt;}
.h1d{height:128.493750pt;}
.h23{height:128.590000pt;}
.h30{height:133.517917pt;}
.h22{height:144.013125pt;}
.h21{height:144.121000pt;}
.h2b{height:144.375000pt;}
.h2c{height:144.471250pt;}
.h31{height:154.982083pt;}
.h7{height:188.000000pt;}
.h1c{height:213.089375pt;}
.h19{height:232.443750pt;}
.h2d{height:268.960000pt;}
.h14{height:377.826667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h16{height:4493.760000pt;}
.h17{height:4494.000000pt;}
.w6{width:192.826667pt;}
.wb{width:369.920000pt;}
.w7{width:409.346667pt;}
.w4{width:456.573333pt;}
.w3{width:543.773333pt;}
.w5{width:602.173333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.wa{width:3178.559953pt;}
.w8{width:3178.560000pt;}
.w9{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x10{left:7.200000pt;}
.x8{left:9.600000pt;}
.xe{left:20.000000pt;}
.x1c{left:47.007953pt;}
.x20{left:58.463953pt;}
.x21{left:60.543953pt;}
.xa{left:84.360000pt;}
.x4{left:96.031988pt;}
.x30{left:96.927953pt;}
.x31{left:98.687953pt;}
.x37{left:111.967953pt;}
.x34{left:112.927953pt;}
.xd{left:114.600000pt;}
.x36{left:123.487953pt;}
.xb{left:124.520000pt;}
.x9{left:172.346667pt;}
.xc{left:174.106667pt;}
.x11{left:184.354667pt;}
.x5{left:203.226667pt;}
.x45{left:221.826619pt;}
.x32{left:230.240000pt;}
.x7{left:232.506667pt;}
.x46{left:255.426619pt;}
.x35{left:257.733286pt;}
.x38{left:284.453286pt;}
.x12{left:288.866667pt;}
.x22{left:293.026619pt;}
.x39{left:311.173286pt;}
.x25{left:327.906619pt;}
.x3f{left:330.213286pt;}
.x43{left:335.519953pt;}
.x40{left:363.813286pt;}
.x1{left:369.026655pt;}
.x19{left:410.493286pt;}
.x2{left:423.133322pt;}
.x3{left:482.493322pt;}
.x33{left:490.533286pt;}
.xf{left:513.866667pt;}
.x6{left:527.466667pt;}
.x15{left:575.199953pt;}
.x14{left:610.399953pt;}
.x17{left:692.573286pt;}
.x3b{left:700.933286pt;}
.x23{left:742.973286pt;}
.x24{left:797.053286pt;}
.x3e{left:825.626619pt;}
.x3c{left:858.879953pt;}
.x16{left:883.386619pt;}
.x13{left:1022.426619pt;}
.x41{left:1199.586619pt;}
.x1a{left:1225.253286pt;}
.x42{left:1233.186619pt;}
.x47{left:1264.546619pt;}
.x2e{left:1279.013286pt;}
.x18{left:1297.733286pt;}
.x44{left:1299.839953pt;}
.x2d{left:1407.013286pt;}
.x3d{left:1427.106619pt;}
.x3a{left:1590.173286pt;}
.x28{left:1764.253286pt;}
.x27{left:1892.253286pt;}
.x26{left:1930.719953pt;}
.x1d{left:1943.039953pt;}
.x1e{left:1945.373286pt;}
.x1b{left:1955.039953pt;}
.x1f{left:2005.373286pt;}
.x2f{left:2079.133286pt;}
.x29{left:2486.333286pt;}
.x2a{left:2504.413286pt;}
.x2b{left:2564.386619pt;}
.x2c{left:2582.466619pt;}
}




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