
    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_afe0bf5b5ec0cba02b6ca1ea.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933000;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_15fe84420dae342866af964f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_a8c6063b6d457d4f0cde513d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_1170966deefff2639e3c0598.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941000;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_9974826a2b70adfdf5f77bb3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941000;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_927fd9de1059795f473241e9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922000;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_3c422e82a2473fb184b719d5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.930000;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_8e3b91d42db6c285e74fb1ce.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970000;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_bc4be07be97c8cc8d2d2bd80.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061200;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_62f37fd621b160d116d74f98.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_f02c6d68cc3c088486034c76.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_ce80d15b32e1eb83cc21ce7d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_1a28ecb905d955afdc68af21.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.061077;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_e92afad7360759206cf0bb84.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.061125;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_21295d19ee23856bf7db16b1.woff2')format("woff");}.fff{font-family:fff;line-height:0.740000;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_90c81413f9b391ae307247fe.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.720000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.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);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-1.080000px;}
.ls4{letter-spacing:-0.960000px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.363162px;}
.ls7{letter-spacing:0.585000px;}
.ls0{letter-spacing:1.440000px;}
.ls5{letter-spacing:1.653600px;}
.ls2{letter-spacing:1.680000px;}
.ls1{letter-spacing:2.880000px;}
.ls9{letter-spacing:2.970000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(145,143,143),0 0.015em rgb(145,143,143),0.015em 0 rgb(145,143,143),0 -0.015em  rgb(145,143,143);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(145,143,143);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws87{word-spacing:-38.859600px;}
.ws88{word-spacing:-33.840000px;}
.ws3{word-spacing:-25.776000px;}
.ws2{word-spacing:-22.896000px;}
.ws0{word-spacing:-13.140000px;}
.ws4b{word-spacing:-12.816000px;}
.ws4c{word-spacing:-12.420000px;}
.ws1{word-spacing:-11.169000px;}
.ws4d{word-spacing:-10.800000px;}
.ws31{word-spacing:-6.240000px;}
.ws2f{word-spacing:-4.860000px;}
.ws2e{word-spacing:-4.620000px;}
.ws90{word-spacing:-3.996000px;}
.ws18{word-spacing:-3.774000px;}
.ws10{word-spacing:-3.300000px;}
.ws30{word-spacing:-2.820000px;}
.wsb8{word-spacing:-2.719500px;}
.wsae{word-spacing:-2.331000px;}
.ws1e{word-spacing:-2.280000px;}
.wsa7{word-spacing:-2.109000px;}
.wsa8{word-spacing:-1.831500px;}
.ws8c{word-spacing:-1.813500px;}
.ws7f{word-spacing:-1.740000px;}
.ws2a{word-spacing:-1.620000px;}
.ws25{word-spacing:-1.560000px;}
.ws33{word-spacing:-1.440000px;}
.wsca{word-spacing:-1.350000px;}
.ws11{word-spacing:-1.200000px;}
.ws75{word-spacing:-1.080000px;}
.ws89{word-spacing:-1.016854px;}
.ws34{word-spacing:-0.840000px;}
.wsb9{word-spacing:-0.832500px;}
.ws1b{word-spacing:-0.720000px;}
.ws9b{word-spacing:-0.610500px;}
.wsc6{word-spacing:-0.492000px;}
.ws95{word-spacing:-0.333000px;}
.wsa0{word-spacing:-0.277500px;}
.wsc7{word-spacing:-0.246000px;}
.ws8a{word-spacing:-0.181581px;}
.ws7b{word-spacing:-0.120000px;}
.ws1a{word-spacing:-0.102000px;}
.ws4{word-spacing:0.000000px;}
.wsc0{word-spacing:0.108000px;}
.ws9e{word-spacing:0.388500px;}
.ws9d{word-spacing:0.444000px;}
.wsa1{word-spacing:0.555000px;}
.ws48{word-spacing:0.780000px;}
.ws9f{word-spacing:0.832500px;}
.ws76{word-spacing:0.900000px;}
.ws69{word-spacing:0.960000px;}
.ws17{word-spacing:1.173000px;}
.ws3b{word-spacing:1.260000px;}
.ws3a{word-spacing:1.380000px;}
.wsc{word-spacing:1.392000px;}
.wsa5{word-spacing:1.498500px;}
.ws5b{word-spacing:1.680000px;}
.ws78{word-spacing:1.740000px;}
.ws86{word-spacing:1.860000px;}
.ws64{word-spacing:1.920000px;}
.ws94{word-spacing:2.109000px;}
.ws22{word-spacing:2.220000px;}
.ws19{word-spacing:2.295000px;}
.ws6c{word-spacing:2.340000px;}
.wsa2{word-spacing:2.497500px;}
.ws49{word-spacing:2.580000px;}
.ws4f{word-spacing:2.700000px;}
.ws4e{word-spacing:2.820000px;}
.ws8b{word-spacing:2.866500px;}
.wsbe{word-spacing:2.886000px;}
.wsb7{word-spacing:3.108000px;}
.ws5c{word-spacing:3.120000px;}
.ws7a{word-spacing:3.180000px;}
.ws93{word-spacing:3.219000px;}
.ws4a{word-spacing:3.300000px;}
.wsad{word-spacing:3.385500px;}
.wsa9{word-spacing:3.496500px;}
.ws1c{word-spacing:3.540000px;}
.ws63{word-spacing:3.600000px;}
.ws16{word-spacing:3.672000px;}
.ws7c{word-spacing:3.780000px;}
.ws44{word-spacing:3.840000px;}
.ws15{word-spacing:3.876000px;}
.wsaa{word-spacing:3.996000px;}
.wsf{word-spacing:4.140000px;}
.ws6d{word-spacing:4.380000px;}
.ws1d{word-spacing:4.440000px;}
.ws73{word-spacing:4.500000px;}
.ws6b{word-spacing:4.560000px;}
.ws26{word-spacing:4.740000px;}
.ws6f{word-spacing:4.800000px;}
.ws92{word-spacing:4.828500px;}
.ws8d{word-spacing:4.914000px;}
.wsac{word-spacing:4.939500px;}
.ws66{word-spacing:4.980000px;}
.wsb5{word-spacing:5.050500px;}
.wsc8{word-spacing:5.088000px;}
.wsb0{word-spacing:5.383500px;}
.ws74{word-spacing:5.520000px;}
.ws8e{word-spacing:5.550000px;}
.ws46{word-spacing:5.580000px;}
.ws2c{word-spacing:5.640000px;}
.wsb4{word-spacing:5.716500px;}
.wsb6{word-spacing:5.772000px;}
.ws7e{word-spacing:5.880000px;}
.wsa3{word-spacing:5.883000px;}
.ws58{word-spacing:6.120000px;}
.ws27{word-spacing:6.180000px;}
.ws99{word-spacing:6.216000px;}
.ws85{word-spacing:6.360000px;}
.wsc2{word-spacing:6.384000px;}
.ws51{word-spacing:6.600000px;}
.wsb3{word-spacing:6.604500px;}
.ws79{word-spacing:6.720000px;}
.ws98{word-spacing:6.882000px;}
.ws55{word-spacing:6.900000px;}
.ws28{word-spacing:7.020000px;}
.ws24{word-spacing:7.080000px;}
.ws9a{word-spacing:7.104000px;}
.ws3c{word-spacing:7.140000px;}
.wsa{word-spacing:7.152000px;}
.wsaf{word-spacing:7.326000px;}
.ws39{word-spacing:7.440000px;}
.wsbc{word-spacing:7.548000px;}
.ws38{word-spacing:7.560000px;}
.ws47{word-spacing:7.620000px;}
.ws5f{word-spacing:7.740000px;}
.ws97{word-spacing:7.992000px;}
.ws72{word-spacing:8.160000px;}
.wsab{word-spacing:8.325000px;}
.ws8{word-spacing:8.352000px;}
.ws52{word-spacing:8.400000px;}
.ws5a{word-spacing:8.460000px;}
.ws70{word-spacing:8.520000px;}
.ws21{word-spacing:8.760000px;}
.ws53{word-spacing:8.880000px;}
.ws59{word-spacing:8.940000px;}
.wsc9{word-spacing:9.000000px;}
.ws7{word-spacing:9.024000px;}
.ws5{word-spacing:9.216000px;}
.wsc1{word-spacing:9.270000px;}
.wsbf{word-spacing:9.432000px;}
.ws5d{word-spacing:9.540000px;}
.ws3d{word-spacing:9.780000px;}
.ws6{word-spacing:9.792000px;}
.ws61{word-spacing:9.840000px;}
.ws1f{word-spacing:9.900000px;}
.ws5e{word-spacing:10.080000px;}
.ws7d{word-spacing:10.200000px;}
.ws14{word-spacing:10.353000px;}
.wse{word-spacing:10.620000px;}
.wsa4{word-spacing:10.656000px;}
.ws91{word-spacing:10.933500px;}
.ws43{word-spacing:11.100000px;}
.ws9{word-spacing:11.232000px;}
.wsa6{word-spacing:11.322000px;}
.wsba{word-spacing:11.376000px;}
.ws50{word-spacing:11.580000px;}
.ws35{word-spacing:11.940000px;}
.ws12{word-spacing:12.000000px;}
.wsb1{word-spacing:12.043500px;}
.ws62{word-spacing:12.060000px;}
.ws96{word-spacing:12.099000px;}
.ws68{word-spacing:12.120000px;}
.ws8f{word-spacing:12.154500px;}
.ws6a{word-spacing:12.240000px;}
.wsb2{word-spacing:12.376500px;}
.ws41{word-spacing:13.140000px;}
.wsd{word-spacing:13.200000px;}
.ws13{word-spacing:13.260000px;}
.ws20{word-spacing:14.820000px;}
.ws2d{word-spacing:14.940000px;}
.ws45{word-spacing:15.060000px;}
.wsc3{word-spacing:15.210000px;}
.ws9c{word-spacing:15.373500px;}
.ws83{word-spacing:15.480000px;}
.wsb{word-spacing:15.744000px;}
.ws54{word-spacing:16.560000px;}
.ws2b{word-spacing:16.680000px;}
.wsbd{word-spacing:17.202000px;}
.ws56{word-spacing:17.340000px;}
.ws84{word-spacing:17.640000px;}
.wsc5{word-spacing:17.874000px;}
.ws77{word-spacing:17.940000px;}
.ws67{word-spacing:18.180000px;}
.ws65{word-spacing:18.720000px;}
.ws42{word-spacing:19.260000px;}
.ws40{word-spacing:19.740000px;}
.ws6e{word-spacing:20.160000px;}
.ws29{word-spacing:20.340000px;}
.ws81{word-spacing:20.820000px;}
.ws57{word-spacing:21.180000px;}
.wsc4{word-spacing:21.702000px;}
.ws3e{word-spacing:21.720000px;}
.ws32{word-spacing:21.960000px;}
.ws3f{word-spacing:22.980000px;}
.ws36{word-spacing:23.460000px;}
.wsbb{word-spacing:23.862000px;}
.ws80{word-spacing:23.940000px;}
.ws71{word-spacing:25.020000px;}
.ws37{word-spacing:27.180000px;}
.ws23{word-spacing:30.120000px;}
.ws82{word-spacing:31.140000px;}
.ws60{word-spacing:42.240000px;}
._b{margin-left:-284.584560px;}
._9{margin-left:-33.582000px;}
._7{margin-left:-31.507800px;}
._3{margin-left:-20.292000px;}
._a{margin-left:-17.028000px;}
._c{margin-left:-9.957600px;}
._6{margin-left:-8.077800px;}
._4{margin-left:-6.036000px;}
._5{margin-left:-4.620000px;}
._2{margin-left:-2.880000px;}
._0{margin-left:-1.404000px;}
._1{width:1.140000px;}
._8{width:2.364000px;}
.fc8{color:rgb(101,98,99);}
.fc7{color:rgb(77,66,129);}
.fc6{color:transparent;}
.fc5{color:rgb(145,143,143);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(33,57,94);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:36.316200px;}
.fse{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fsd{font-size:49.500000px;}
.fs3{font-size:51.000000px;}
.fsb{font-size:55.500000px;}
.fsc{font-size:58.500000px;}
.fs8{font-size:59.400000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs0{font-size:108.000000px;}
.fs5{font-size:144.000000px;}
.fs9{font-size:165.360000px;}
.fs7{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:41.279550px;}
.y8{bottom:54.779550px;}
.ye{bottom:55.098450px;}
.y7{bottom:68.279550px;}
.yd{bottom:68.598450px;}
.y6{bottom:81.779550px;}
.yc{bottom:82.098450px;}
.y5{bottom:95.279550px;}
.yb{bottom:95.598450px;}
.ya3{bottom:101.545950px;}
.y4{bottom:108.779550px;}
.ya{bottom:109.098450px;}
.ye9{bottom:112.864875px;}
.ye8{bottom:131.471250px;}
.ye7{bottom:168.666450px;}
.ybc{bottom:172.923525px;}
.y86{bottom:184.358250px;}
.ye6{bottom:187.269450px;}
.ybb{bottom:191.529900px;}
.y85{bottom:202.358250px;}
.y36{bottom:203.852400px;}
.yba{bottom:210.136275px;}
.y84{bottom:220.358250px;}
.y35{bottom:221.852400px;}
.y54{bottom:222.129900px;}
.yb9{bottom:228.742650px;}
.y83{bottom:238.358250px;}
.y34{bottom:239.852400px;}
.y53{bottom:240.129900px;}
.ye5{bottom:242.965125px;}
.yb8{bottom:247.349025px;}
.y9f{bottom:255.490200px;}
.y82{bottom:256.358250px;}
.y33{bottom:257.852400px;}
.y52{bottom:258.129900px;}
.ye4{bottom:261.571500px;}
.yb7{bottom:265.955400px;}
.y9e{bottom:273.490200px;}
.y81{bottom:274.358250px;}
.y32{bottom:275.852400px;}
.y51{bottom:276.129900px;}
.ye3{bottom:280.177875px;}
.yb6{bottom:284.561775px;}
.y9d{bottom:291.490200px;}
.y31{bottom:293.852400px;}
.y50{bottom:294.129900px;}
.ye2{bottom:298.784250px;}
.y9c{bottom:309.490200px;}
.y80{bottom:310.358250px;}
.y30{bottom:311.852400px;}
.y4f{bottom:312.129900px;}
.ye1{bottom:317.390625px;}
.yb5{bottom:321.760650px;}
.y9b{bottom:327.490200px;}
.y7f{bottom:328.358250px;}
.y2f{bottom:329.852400px;}
.y4e{bottom:330.129900px;}
.ye0{bottom:335.997000px;}
.yb4{bottom:340.367025px;}
.y7e{bottom:346.358250px;}
.y2e{bottom:347.852400px;}
.y4d{bottom:348.129900px;}
.y9a{bottom:349.742100px;}
.ydf{bottom:354.603375px;}
.yb3{bottom:358.973400px;}
.y7d{bottom:364.358250px;}
.y4c{bottom:366.129900px;}
.y2d{bottom:383.852400px;}
.y4b{bottom:384.129900px;}
.y7c{bottom:386.610150px;}
.yde{bottom:391.802250px;}
.yb2{bottom:396.168075px;}
.y2c{bottom:401.852400px;}
.y4a{bottom:402.129900px;}
.y99{bottom:407.994150px;}
.ydd{bottom:410.408625px;}
.y2b{bottom:419.852400px;}
.y49{bottom:420.129900px;}
.y98{bottom:425.994150px;}
.ydc{bottom:429.015000px;}
.y2a{bottom:437.852400px;}
.y48{bottom:438.129900px;}
.y97{bottom:443.994150px;}
.y7b{bottom:444.862200px;}
.ydb{bottom:447.621375px;}
.yb1{bottom:451.962450px;}
.y29{bottom:455.852400px;}
.y96{bottom:461.994150px;}
.y7a{bottom:462.862200px;}
.yb0{bottom:470.565450px;}
.y28{bottom:473.852400px;}
.y47{bottom:474.129900px;}
.y79{bottom:480.862200px;}
.yda{bottom:484.820250px;}
.yaf{bottom:489.168450px;}
.y27{bottom:491.852400px;}
.y46{bottom:492.129900px;}
.y78{bottom:498.862200px;}
.yd9{bottom:503.426625px;}
.yae{bottom:507.771450px;}
.y26{bottom:509.852400px;}
.y45{bottom:510.129900px;}
.y95{bottom:515.994150px;}
.y77{bottom:516.862200px;}
.yd8{bottom:522.033000px;}
.y25{bottom:527.852400px;}
.y44{bottom:528.129900px;}
.y94{bottom:533.994150px;}
.y76{bottom:534.862200px;}
.yd7{bottom:540.639375px;}
.y24{bottom:545.852400px;}
.y43{bottom:546.129900px;}
.y93{bottom:551.994150px;}
.y75{bottom:552.862200px;}
.yd6{bottom:559.245750px;}
.y23{bottom:563.852400px;}
.y42{bottom:564.129900px;}
.y92{bottom:569.994150px;}
.y74{bottom:570.862200px;}
.y41{bottom:582.129900px;}
.yad{bottom:586.753500px;}
.y91{bottom:587.994150px;}
.y73{bottom:588.862200px;}
.yd5{bottom:596.444625px;}
.y22{bottom:599.852400px;}
.y40{bottom:600.129900px;}
.y90{bottom:605.994150px;}
.y72{bottom:606.862200px;}
.yac{bottom:609.253500px;}
.yd4{bottom:615.051000px;}
.y21{bottom:617.852400px;}
.y3f{bottom:618.129900px;}
.y8f{bottom:623.994150px;}
.y71{bottom:624.862200px;}
.yab{bottom:631.753500px;}
.yd3{bottom:633.657375px;}
.y20{bottom:635.852400px;}
.y3e{bottom:636.129900px;}
.y8e{bottom:641.994150px;}
.y70{bottom:642.862200px;}
.yd2{bottom:652.263750px;}
.y1f{bottom:653.852400px;}
.y3d{bottom:654.129900px;}
.y8d{bottom:659.994150px;}
.yaa{bottom:672.647850px;}
.y1e{bottom:676.104300px;}
.y3c{bottom:676.381950px;}
.y8c{bottom:677.994150px;}
.y6f{bottom:678.862200px;}
.yd1{bottom:689.461800px;}
.y6e{bottom:696.862200px;}
.ya9{bottom:705.641850px;}
.y8b{bottom:713.994150px;}
.y6d{bottom:714.862200px;}
.y57{bottom:715.507050px;}
.y56{bottom:729.907050px;}
.y8a{bottom:731.994150px;}
.y6c{bottom:732.862200px;}
.y1d{bottom:734.356350px;}
.ya8{bottom:738.635850px;}
.y55{bottom:744.307050px;}
.yd0{bottom:745.191000px;}
.y1c{bottom:749.356350px;}
.y89{bottom:749.994150px;}
.y6b{bottom:750.862200px;}
.yfc{bottom:754.007550px;}
.ycf{bottom:763.797375px;}
.y1b{bottom:764.356350px;}
.y88{bottom:767.994150px;}
.y6a{bottom:768.862200px;}
.yfb{bottom:771.688050px;}
.ya7{bottom:778.747950px;}
.y1a{bottom:779.356350px;}
.yce{bottom:782.403750px;}
.y87{bottom:785.994150px;}
.y69{bottom:786.862200px;}
.yfa{bottom:788.722050px;}
.y19{bottom:794.356350px;}
.ycd{bottom:801.010125px;}
.yf9{bottom:805.756050px;}
.y18{bottom:809.356350px;}
.ycc{bottom:819.616500px;}
.y68{bottom:822.862200px;}
.y17{bottom:824.356350px;}
.ycb{bottom:838.222875px;}
.yf8{bottom:839.609550px;}
.y67{bottom:840.862200px;}
.yca{bottom:856.829250px;}
.y16{bottom:857.356350px;}
.y66{bottom:858.862200px;}
.ya1{bottom:859.592250px;}
.ya0{bottom:873.992100px;}
.y15{bottom:875.356350px;}
.y65{bottom:876.862200px;}
.ya2{bottom:886.475400px;}
.y14{bottom:893.356350px;}
.yc9{bottom:894.028125px;}
.y64{bottom:894.862200px;}
.y13{bottom:911.356350px;}
.yc8{bottom:912.634500px;}
.yf7{bottom:912.658050px;}
.y63{bottom:912.862200px;}
.y12{bottom:929.356350px;}
.y62{bottom:930.862200px;}
.yc7{bottom:931.240875px;}
.yf6{bottom:931.351050px;}
.y11{bottom:947.356350px;}
.y61{bottom:948.862200px;}
.yc6{bottom:949.847250px;}
.yf5{bottom:950.044050px;}
.y10{bottom:965.356350px;}
.y3{bottom:966.773550px;}
.y60{bottom:966.862200px;}
.yf4{bottom:968.273550px;}
.yc5{bottom:968.453625px;}
.y1{bottom:982.204800px;}
.yf{bottom:983.356350px;}
.y2{bottom:984.773550px;}
.yf3{bottom:986.966550px;}
.yc4{bottom:987.060000px;}
.y5f{bottom:1002.862200px;}
.yf2{bottom:1005.659550px;}
.y5e{bottom:1020.862200px;}
.y3b{bottom:1023.543300px;}
.yc3{bottom:1024.258050px;}
.y5d{bottom:1038.862200px;}
.yf1{bottom:1042.858050px;}
.y3a{bottom:1044.543300px;}
.ya6{bottom:1055.942572px;}
.y5c{bottom:1056.862200px;}
.yf0{bottom:1061.458050px;}
.ya5{bottom:1068.671400px;}
.y39{bottom:1074.543300px;}
.y5b{bottom:1074.862200px;}
.yc2{bottom:1080.026175px;}
.yef{bottom:1080.058500px;}
.ya4{bottom:1083.631500px;}
.y5a{bottom:1092.862200px;}
.yc1{bottom:1098.632550px;}
.yee{bottom:1098.658500px;}
.y38{bottom:1110.543300px;}
.y59{bottom:1110.862200px;}
.yc0{bottom:1117.238925px;}
.yed{bottom:1117.258500px;}
.y58{bottom:1133.114100px;}
.ybf{bottom:1135.845300px;}
.yec{bottom:1135.858500px;}
.y37{bottom:1146.543300px;}
.ybe{bottom:1154.451675px;}
.yeb{bottom:1154.458500px;}
.ybd{bottom:1173.058050px;}
.yea{bottom:1173.058500px;}
.he{height:27.237150px;}
.ha{height:34.080000px;}
.h5{height:34.608000px;}
.h16{height:36.500625px;}
.h6{height:36.771000px;}
.h15{height:37.125000px;}
.h14{height:41.625000px;}
.h3{height:42.600000px;}
.h4{height:43.260000px;}
.h11{height:45.014769px;}
.h13{height:45.017437px;}
.h12{height:47.455200px;}
.hc{height:48.185280px;}
.h7{height:59.112000px;}
.h9{height:69.132000px;}
.h10{height:81.000000px;}
.h2{height:88.884000px;}
.hf{height:108.000000px;}
.h8{height:118.512000px;}
.hd{height:124.020000px;}
.hb{height:138.240000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:136.062900px;}
.x5{left:149.878200px;}
.x4{left:276.378000px;}
.x8{left:280.809450px;}
.x6{left:331.360950px;}
.x7{left:335.451900px;}
.x2{left:499.606350px;}
.x1{left:867.667350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.960000pt;}
.ls4{letter-spacing:-0.853333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.322811pt;}
.ls7{letter-spacing:0.520000pt;}
.ls0{letter-spacing:1.280000pt;}
.ls5{letter-spacing:1.469867pt;}
.ls2{letter-spacing:1.493333pt;}
.ls1{letter-spacing:2.560000pt;}
.ls9{letter-spacing:2.640000pt;}
.ws87{word-spacing:-34.541867pt;}
.ws88{word-spacing:-30.080000pt;}
.ws3{word-spacing:-22.912000pt;}
.ws2{word-spacing:-20.352000pt;}
.ws0{word-spacing:-11.680000pt;}
.ws4b{word-spacing:-11.392000pt;}
.ws4c{word-spacing:-11.040000pt;}
.ws1{word-spacing:-9.928000pt;}
.ws4d{word-spacing:-9.600000pt;}
.ws31{word-spacing:-5.546667pt;}
.ws2f{word-spacing:-4.320000pt;}
.ws2e{word-spacing:-4.106667pt;}
.ws90{word-spacing:-3.552000pt;}
.ws18{word-spacing:-3.354667pt;}
.ws10{word-spacing:-2.933333pt;}
.ws30{word-spacing:-2.506667pt;}
.wsb8{word-spacing:-2.417333pt;}
.wsae{word-spacing:-2.072000pt;}
.ws1e{word-spacing:-2.026667pt;}
.wsa7{word-spacing:-1.874667pt;}
.wsa8{word-spacing:-1.628000pt;}
.ws8c{word-spacing:-1.612000pt;}
.ws7f{word-spacing:-1.546667pt;}
.ws2a{word-spacing:-1.440000pt;}
.ws25{word-spacing:-1.386667pt;}
.ws33{word-spacing:-1.280000pt;}
.wsca{word-spacing:-1.200000pt;}
.ws11{word-spacing:-1.066667pt;}
.ws75{word-spacing:-0.960000pt;}
.ws89{word-spacing:-0.903870pt;}
.ws34{word-spacing:-0.746667pt;}
.wsb9{word-spacing:-0.740000pt;}
.ws1b{word-spacing:-0.640000pt;}
.ws9b{word-spacing:-0.542667pt;}
.wsc6{word-spacing:-0.437333pt;}
.ws95{word-spacing:-0.296000pt;}
.wsa0{word-spacing:-0.246667pt;}
.wsc7{word-spacing:-0.218667pt;}
.ws8a{word-spacing:-0.161405pt;}
.ws7b{word-spacing:-0.106667pt;}
.ws1a{word-spacing:-0.090667pt;}
.ws4{word-spacing:0.000000pt;}
.wsc0{word-spacing:0.096000pt;}
.ws9e{word-spacing:0.345333pt;}
.ws9d{word-spacing:0.394667pt;}
.wsa1{word-spacing:0.493333pt;}
.ws48{word-spacing:0.693333pt;}
.ws9f{word-spacing:0.740000pt;}
.ws76{word-spacing:0.800000pt;}
.ws69{word-spacing:0.853333pt;}
.ws17{word-spacing:1.042667pt;}
.ws3b{word-spacing:1.120000pt;}
.ws3a{word-spacing:1.226667pt;}
.wsc{word-spacing:1.237333pt;}
.wsa5{word-spacing:1.332000pt;}
.ws5b{word-spacing:1.493333pt;}
.ws78{word-spacing:1.546667pt;}
.ws86{word-spacing:1.653333pt;}
.ws64{word-spacing:1.706667pt;}
.ws94{word-spacing:1.874667pt;}
.ws22{word-spacing:1.973333pt;}
.ws19{word-spacing:2.040000pt;}
.ws6c{word-spacing:2.080000pt;}
.wsa2{word-spacing:2.220000pt;}
.ws49{word-spacing:2.293333pt;}
.ws4f{word-spacing:2.400000pt;}
.ws4e{word-spacing:2.506667pt;}
.ws8b{word-spacing:2.548000pt;}
.wsbe{word-spacing:2.565333pt;}
.wsb7{word-spacing:2.762667pt;}
.ws5c{word-spacing:2.773333pt;}
.ws7a{word-spacing:2.826667pt;}
.ws93{word-spacing:2.861333pt;}
.ws4a{word-spacing:2.933333pt;}
.wsad{word-spacing:3.009333pt;}
.wsa9{word-spacing:3.108000pt;}
.ws1c{word-spacing:3.146667pt;}
.ws63{word-spacing:3.200000pt;}
.ws16{word-spacing:3.264000pt;}
.ws7c{word-spacing:3.360000pt;}
.ws44{word-spacing:3.413333pt;}
.ws15{word-spacing:3.445333pt;}
.wsaa{word-spacing:3.552000pt;}
.wsf{word-spacing:3.680000pt;}
.ws6d{word-spacing:3.893333pt;}
.ws1d{word-spacing:3.946667pt;}
.ws73{word-spacing:4.000000pt;}
.ws6b{word-spacing:4.053333pt;}
.ws26{word-spacing:4.213333pt;}
.ws6f{word-spacing:4.266667pt;}
.ws92{word-spacing:4.292000pt;}
.ws8d{word-spacing:4.368000pt;}
.wsac{word-spacing:4.390667pt;}
.ws66{word-spacing:4.426667pt;}
.wsb5{word-spacing:4.489333pt;}
.wsc8{word-spacing:4.522667pt;}
.wsb0{word-spacing:4.785333pt;}
.ws74{word-spacing:4.906667pt;}
.ws8e{word-spacing:4.933333pt;}
.ws46{word-spacing:4.960000pt;}
.ws2c{word-spacing:5.013333pt;}
.wsb4{word-spacing:5.081333pt;}
.wsb6{word-spacing:5.130667pt;}
.ws7e{word-spacing:5.226667pt;}
.wsa3{word-spacing:5.229333pt;}
.ws58{word-spacing:5.440000pt;}
.ws27{word-spacing:5.493333pt;}
.ws99{word-spacing:5.525333pt;}
.ws85{word-spacing:5.653333pt;}
.wsc2{word-spacing:5.674667pt;}
.ws51{word-spacing:5.866667pt;}
.wsb3{word-spacing:5.870667pt;}
.ws79{word-spacing:5.973333pt;}
.ws98{word-spacing:6.117333pt;}
.ws55{word-spacing:6.133333pt;}
.ws28{word-spacing:6.240000pt;}
.ws24{word-spacing:6.293333pt;}
.ws9a{word-spacing:6.314667pt;}
.ws3c{word-spacing:6.346667pt;}
.wsa{word-spacing:6.357333pt;}
.wsaf{word-spacing:6.512000pt;}
.ws39{word-spacing:6.613333pt;}
.wsbc{word-spacing:6.709333pt;}
.ws38{word-spacing:6.720000pt;}
.ws47{word-spacing:6.773333pt;}
.ws5f{word-spacing:6.880000pt;}
.ws97{word-spacing:7.104000pt;}
.ws72{word-spacing:7.253333pt;}
.wsab{word-spacing:7.400000pt;}
.ws8{word-spacing:7.424000pt;}
.ws52{word-spacing:7.466667pt;}
.ws5a{word-spacing:7.520000pt;}
.ws70{word-spacing:7.573333pt;}
.ws21{word-spacing:7.786667pt;}
.ws53{word-spacing:7.893333pt;}
.ws59{word-spacing:7.946667pt;}
.wsc9{word-spacing:8.000000pt;}
.ws7{word-spacing:8.021333pt;}
.ws5{word-spacing:8.192000pt;}
.wsc1{word-spacing:8.240000pt;}
.wsbf{word-spacing:8.384000pt;}
.ws5d{word-spacing:8.480000pt;}
.ws3d{word-spacing:8.693333pt;}
.ws6{word-spacing:8.704000pt;}
.ws61{word-spacing:8.746667pt;}
.ws1f{word-spacing:8.800000pt;}
.ws5e{word-spacing:8.960000pt;}
.ws7d{word-spacing:9.066667pt;}
.ws14{word-spacing:9.202667pt;}
.wse{word-spacing:9.440000pt;}
.wsa4{word-spacing:9.472000pt;}
.ws91{word-spacing:9.718667pt;}
.ws43{word-spacing:9.866667pt;}
.ws9{word-spacing:9.984000pt;}
.wsa6{word-spacing:10.064000pt;}
.wsba{word-spacing:10.112000pt;}
.ws50{word-spacing:10.293333pt;}
.ws35{word-spacing:10.613333pt;}
.ws12{word-spacing:10.666667pt;}
.wsb1{word-spacing:10.705333pt;}
.ws62{word-spacing:10.720000pt;}
.ws96{word-spacing:10.754667pt;}
.ws68{word-spacing:10.773333pt;}
.ws8f{word-spacing:10.804000pt;}
.ws6a{word-spacing:10.880000pt;}
.wsb2{word-spacing:11.001333pt;}
.ws41{word-spacing:11.680000pt;}
.wsd{word-spacing:11.733333pt;}
.ws13{word-spacing:11.786667pt;}
.ws20{word-spacing:13.173333pt;}
.ws2d{word-spacing:13.280000pt;}
.ws45{word-spacing:13.386667pt;}
.wsc3{word-spacing:13.520000pt;}
.ws9c{word-spacing:13.665333pt;}
.ws83{word-spacing:13.760000pt;}
.wsb{word-spacing:13.994667pt;}
.ws54{word-spacing:14.720000pt;}
.ws2b{word-spacing:14.826667pt;}
.wsbd{word-spacing:15.290667pt;}
.ws56{word-spacing:15.413333pt;}
.ws84{word-spacing:15.680000pt;}
.wsc5{word-spacing:15.888000pt;}
.ws77{word-spacing:15.946667pt;}
.ws67{word-spacing:16.160000pt;}
.ws65{word-spacing:16.640000pt;}
.ws42{word-spacing:17.120000pt;}
.ws40{word-spacing:17.546667pt;}
.ws6e{word-spacing:17.920000pt;}
.ws29{word-spacing:18.080000pt;}
.ws81{word-spacing:18.506667pt;}
.ws57{word-spacing:18.826667pt;}
.wsc4{word-spacing:19.290667pt;}
.ws3e{word-spacing:19.306667pt;}
.ws32{word-spacing:19.520000pt;}
.ws3f{word-spacing:20.426667pt;}
.ws36{word-spacing:20.853333pt;}
.wsbb{word-spacing:21.210667pt;}
.ws80{word-spacing:21.280000pt;}
.ws71{word-spacing:22.240000pt;}
.ws37{word-spacing:24.160000pt;}
.ws23{word-spacing:26.773333pt;}
.ws82{word-spacing:27.680000pt;}
.ws60{word-spacing:37.546667pt;}
._b{margin-left:-252.964053pt;}
._9{margin-left:-29.850667pt;}
._7{margin-left:-28.006933pt;}
._3{margin-left:-18.037333pt;}
._a{margin-left:-15.136000pt;}
._c{margin-left:-8.851200pt;}
._6{margin-left:-7.180267pt;}
._4{margin-left:-5.365333pt;}
._5{margin-left:-4.106667pt;}
._2{margin-left:-2.560000pt;}
._0{margin-left:-1.248000pt;}
._1{width:1.013333pt;}
._8{width:2.101333pt;}
.fsa{font-size:32.281067pt;}
.fse{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fsd{font-size:44.000000pt;}
.fs3{font-size:45.333333pt;}
.fsb{font-size:49.333333pt;}
.fsc{font-size:52.000000pt;}
.fs8{font-size:52.800000pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs0{font-size:96.000000pt;}
.fs5{font-size:128.000000pt;}
.fs9{font-size:146.986667pt;}
.fs7{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:36.692933pt;}
.y8{bottom:48.692933pt;}
.ye{bottom:48.976400pt;}
.y7{bottom:60.692933pt;}
.yd{bottom:60.976400pt;}
.y6{bottom:72.692933pt;}
.yc{bottom:72.976400pt;}
.y5{bottom:84.692933pt;}
.yb{bottom:84.976400pt;}
.ya3{bottom:90.263067pt;}
.y4{bottom:96.692933pt;}
.ya{bottom:96.976400pt;}
.ye9{bottom:100.324333pt;}
.ye8{bottom:116.863333pt;}
.ye7{bottom:149.925733pt;}
.ybc{bottom:153.709800pt;}
.y86{bottom:163.874000pt;}
.ye6{bottom:166.461733pt;}
.ybb{bottom:170.248800pt;}
.y85{bottom:179.874000pt;}
.y36{bottom:181.202133pt;}
.yba{bottom:186.787800pt;}
.y84{bottom:195.874000pt;}
.y35{bottom:197.202133pt;}
.y54{bottom:197.448800pt;}
.yb9{bottom:203.326800pt;}
.y83{bottom:211.874000pt;}
.y34{bottom:213.202133pt;}
.y53{bottom:213.448800pt;}
.ye5{bottom:215.969000pt;}
.yb8{bottom:219.865800pt;}
.y9f{bottom:227.102400pt;}
.y82{bottom:227.874000pt;}
.y33{bottom:229.202133pt;}
.y52{bottom:229.448800pt;}
.ye4{bottom:232.508000pt;}
.yb7{bottom:236.404800pt;}
.y9e{bottom:243.102400pt;}
.y81{bottom:243.874000pt;}
.y32{bottom:245.202133pt;}
.y51{bottom:245.448800pt;}
.ye3{bottom:249.047000pt;}
.yb6{bottom:252.943800pt;}
.y9d{bottom:259.102400pt;}
.y31{bottom:261.202133pt;}
.y50{bottom:261.448800pt;}
.ye2{bottom:265.586000pt;}
.y9c{bottom:275.102400pt;}
.y80{bottom:275.874000pt;}
.y30{bottom:277.202133pt;}
.y4f{bottom:277.448800pt;}
.ye1{bottom:282.125000pt;}
.yb5{bottom:286.009467pt;}
.y9b{bottom:291.102400pt;}
.y7f{bottom:291.874000pt;}
.y2f{bottom:293.202133pt;}
.y4e{bottom:293.448800pt;}
.ye0{bottom:298.664000pt;}
.yb4{bottom:302.548467pt;}
.y7e{bottom:307.874000pt;}
.y2e{bottom:309.202133pt;}
.y4d{bottom:309.448800pt;}
.y9a{bottom:310.881867pt;}
.ydf{bottom:315.203000pt;}
.yb3{bottom:319.087467pt;}
.y7d{bottom:323.874000pt;}
.y4c{bottom:325.448800pt;}
.y2d{bottom:341.202133pt;}
.y4b{bottom:341.448800pt;}
.y7c{bottom:343.653467pt;}
.yde{bottom:348.268667pt;}
.yb2{bottom:352.149400pt;}
.y2c{bottom:357.202133pt;}
.y4a{bottom:357.448800pt;}
.y99{bottom:362.661467pt;}
.ydd{bottom:364.807667pt;}
.y2b{bottom:373.202133pt;}
.y49{bottom:373.448800pt;}
.y98{bottom:378.661467pt;}
.ydc{bottom:381.346667pt;}
.y2a{bottom:389.202133pt;}
.y48{bottom:389.448800pt;}
.y97{bottom:394.661467pt;}
.y7b{bottom:395.433067pt;}
.ydb{bottom:397.885667pt;}
.yb1{bottom:401.744400pt;}
.y29{bottom:405.202133pt;}
.y96{bottom:410.661467pt;}
.y7a{bottom:411.433067pt;}
.yb0{bottom:418.280400pt;}
.y28{bottom:421.202133pt;}
.y47{bottom:421.448800pt;}
.y79{bottom:427.433067pt;}
.yda{bottom:430.951333pt;}
.yaf{bottom:434.816400pt;}
.y27{bottom:437.202133pt;}
.y46{bottom:437.448800pt;}
.y78{bottom:443.433067pt;}
.yd9{bottom:447.490333pt;}
.yae{bottom:451.352400pt;}
.y26{bottom:453.202133pt;}
.y45{bottom:453.448800pt;}
.y95{bottom:458.661467pt;}
.y77{bottom:459.433067pt;}
.yd8{bottom:464.029333pt;}
.y25{bottom:469.202133pt;}
.y44{bottom:469.448800pt;}
.y94{bottom:474.661467pt;}
.y76{bottom:475.433067pt;}
.yd7{bottom:480.568333pt;}
.y24{bottom:485.202133pt;}
.y43{bottom:485.448800pt;}
.y93{bottom:490.661467pt;}
.y75{bottom:491.433067pt;}
.yd6{bottom:497.107333pt;}
.y23{bottom:501.202133pt;}
.y42{bottom:501.448800pt;}
.y92{bottom:506.661467pt;}
.y74{bottom:507.433067pt;}
.y41{bottom:517.448800pt;}
.yad{bottom:521.558667pt;}
.y91{bottom:522.661467pt;}
.y73{bottom:523.433067pt;}
.yd5{bottom:530.173000pt;}
.y22{bottom:533.202133pt;}
.y40{bottom:533.448800pt;}
.y90{bottom:538.661467pt;}
.y72{bottom:539.433067pt;}
.yac{bottom:541.558667pt;}
.yd4{bottom:546.712000pt;}
.y21{bottom:549.202133pt;}
.y3f{bottom:549.448800pt;}
.y8f{bottom:554.661467pt;}
.y71{bottom:555.433067pt;}
.yab{bottom:561.558667pt;}
.yd3{bottom:563.251000pt;}
.y20{bottom:565.202133pt;}
.y3e{bottom:565.448800pt;}
.y8e{bottom:570.661467pt;}
.y70{bottom:571.433067pt;}
.yd2{bottom:579.790000pt;}
.y1f{bottom:581.202133pt;}
.y3d{bottom:581.448800pt;}
.y8d{bottom:586.661467pt;}
.yaa{bottom:597.909200pt;}
.y1e{bottom:600.981600pt;}
.y3c{bottom:601.228400pt;}
.y8c{bottom:602.661467pt;}
.y6f{bottom:603.433067pt;}
.yd1{bottom:612.854933pt;}
.y6e{bottom:619.433067pt;}
.ya9{bottom:627.237200pt;}
.y8b{bottom:634.661467pt;}
.y6d{bottom:635.433067pt;}
.y57{bottom:636.006267pt;}
.y56{bottom:648.806267pt;}
.y8a{bottom:650.661467pt;}
.y6c{bottom:651.433067pt;}
.y1d{bottom:652.761200pt;}
.ya8{bottom:656.565200pt;}
.y55{bottom:661.606267pt;}
.yd0{bottom:662.392000pt;}
.y1c{bottom:666.094533pt;}
.y89{bottom:666.661467pt;}
.y6b{bottom:667.433067pt;}
.yfc{bottom:670.228933pt;}
.ycf{bottom:678.931000pt;}
.y1b{bottom:679.427867pt;}
.y88{bottom:682.661467pt;}
.y6a{bottom:683.433067pt;}
.yfb{bottom:685.944933pt;}
.ya7{bottom:692.220400pt;}
.y1a{bottom:692.761200pt;}
.yce{bottom:695.470000pt;}
.y87{bottom:698.661467pt;}
.y69{bottom:699.433067pt;}
.yfa{bottom:701.086267pt;}
.y19{bottom:706.094533pt;}
.ycd{bottom:712.009000pt;}
.yf9{bottom:716.227600pt;}
.y18{bottom:719.427867pt;}
.ycc{bottom:728.548000pt;}
.y68{bottom:731.433067pt;}
.y17{bottom:732.761200pt;}
.ycb{bottom:745.087000pt;}
.yf8{bottom:746.319600pt;}
.y67{bottom:747.433067pt;}
.yca{bottom:761.626000pt;}
.y16{bottom:762.094533pt;}
.y66{bottom:763.433067pt;}
.ya1{bottom:764.082000pt;}
.ya0{bottom:776.881867pt;}
.y15{bottom:778.094533pt;}
.y65{bottom:779.433067pt;}
.ya2{bottom:787.978133pt;}
.y14{bottom:794.094533pt;}
.yc9{bottom:794.691667pt;}
.y64{bottom:795.433067pt;}
.y13{bottom:810.094533pt;}
.yc8{bottom:811.230667pt;}
.yf7{bottom:811.251600pt;}
.y63{bottom:811.433067pt;}
.y12{bottom:826.094533pt;}
.y62{bottom:827.433067pt;}
.yc7{bottom:827.769667pt;}
.yf6{bottom:827.867600pt;}
.y11{bottom:842.094533pt;}
.y61{bottom:843.433067pt;}
.yc6{bottom:844.308667pt;}
.yf5{bottom:844.483600pt;}
.y10{bottom:858.094533pt;}
.y3{bottom:859.354267pt;}
.y60{bottom:859.433067pt;}
.yf4{bottom:860.687600pt;}
.yc5{bottom:860.847667pt;}
.y1{bottom:873.070933pt;}
.yf{bottom:874.094533pt;}
.y2{bottom:875.354267pt;}
.yf3{bottom:877.303600pt;}
.yc4{bottom:877.386667pt;}
.y5f{bottom:891.433067pt;}
.yf2{bottom:893.919600pt;}
.y5e{bottom:907.433067pt;}
.y3b{bottom:909.816267pt;}
.yc3{bottom:910.451600pt;}
.y5d{bottom:923.433067pt;}
.yf1{bottom:926.984933pt;}
.y3a{bottom:928.482933pt;}
.ya6{bottom:938.615619pt;}
.y5c{bottom:939.433067pt;}
.yf0{bottom:943.518267pt;}
.ya5{bottom:949.930133pt;}
.y39{bottom:955.149600pt;}
.y5b{bottom:955.433067pt;}
.yc2{bottom:960.023267pt;}
.yef{bottom:960.052000pt;}
.ya4{bottom:963.228000pt;}
.y5a{bottom:971.433067pt;}
.yc1{bottom:976.562267pt;}
.yee{bottom:976.585333pt;}
.y38{bottom:987.149600pt;}
.y59{bottom:987.433067pt;}
.yc0{bottom:993.101267pt;}
.yed{bottom:993.118667pt;}
.y58{bottom:1007.212533pt;}
.ybf{bottom:1009.640267pt;}
.yec{bottom:1009.652000pt;}
.y37{bottom:1019.149600pt;}
.ybe{bottom:1026.179267pt;}
.yeb{bottom:1026.185333pt;}
.ybd{bottom:1042.718267pt;}
.yea{bottom:1042.718667pt;}
.he{height:24.210800pt;}
.ha{height:30.293333pt;}
.h5{height:30.762667pt;}
.h16{height:32.445000pt;}
.h6{height:32.685333pt;}
.h15{height:33.000000pt;}
.h14{height:37.000000pt;}
.h3{height:37.866667pt;}
.h4{height:38.453333pt;}
.h11{height:40.013128pt;}
.h13{height:40.015500pt;}
.h12{height:42.182400pt;}
.hc{height:42.831360pt;}
.h7{height:52.544000pt;}
.h9{height:61.450667pt;}
.h10{height:72.000000pt;}
.h2{height:79.008000pt;}
.hf{height:96.000000pt;}
.h8{height:105.344000pt;}
.hd{height:110.240000pt;}
.hb{height:122.880000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:120.944800pt;}
.x5{left:133.225067pt;}
.x4{left:245.669333pt;}
.x8{left:249.608400pt;}
.x6{left:294.543067pt;}
.x7{left:298.179467pt;}
.x2{left:444.094533pt;}
.x1{left:771.259867pt;}
}




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