
    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_c8daea615dd5d5b909ef2597.woff')format("woff");}.ff1{font-family:ff1;line-height:0.983887;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_e65b523d1ebb1bb9b3dc9bf2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.936000;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_8fa413489f377e86df8f33bd.woff')format("woff");}.ff3{font-family:ff3;line-height:0.980000;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_582fa5316b24f8fedf8adb10.woff')format("woff");}.ff4{font-family:ff4;line-height:0.939000;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_77dc649470da41dd8023699c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.755859;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_a385f4632dc9bd9ae93a538e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.935000;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_48f83e85c7234f5e13f45fe8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.935000;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_99716862a5f8a8236edb61fc.woff')format("woff");}.ff8{font-family:ff8;line-height:0.891602;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_f554704ced0a10ec0fe4eb16.woff')format("woff");}.ff9{font-family:ff9;line-height:0.968750;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_4cc74fea581ba2381be54039.woff')format("woff");}.ffa{font-family:ffa;line-height:0.959961;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_74c9fa4f29a321b1712c86e5.woff')format("woff");}.ffb{font-family:ffb;line-height:0.894531;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_7f96f0d93e57d48fcdb6d3e0.woff')format("woff");}.ffc{font-family:ffc;line-height:0.763000;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_5683cd7fe619be7a3fcef189.woff')format("woff");}.ffd{font-family:ffd;line-height:0.762050;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_cd6a395ec5df11950de559b1.woff')format("woff");}.ffe{font-family:ffe;line-height:0.742000;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_7af69a97d39ee2f4e8892bad.woff')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_833084a5d79ab5fc571e46a5.woff')format("woff");}.ff10{font-family:ff10;line-height:0.906000;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:ff11;src:url('chunks/assets/font_b3e57d2c3b997fbbabaf6afb.woff')format("woff");}.ff11{font-family:ff11;line-height:0.689453;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:ff12;src:url('chunks/assets/font_2754da163d9d7067bd638eb0.woff')format("woff");}.ff12{font-family:ff12;line-height:0.762050;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:ff13;src:url('chunks/assets/font_2c5a1be92b5d86947aaa7e17.woff')format("woff");}.ff13{font-family:ff13;line-height:0.912109;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;}
.ma{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m5{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.566800px;}
.ls8{letter-spacing:-5.916072px;}
.lse{letter-spacing:-1.320000px;}
.ls6{letter-spacing:-1.200000px;}
.ls7{letter-spacing:-0.660000px;}
.ls5{letter-spacing:-0.600000px;}
.lsd{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.270000px;}
.lsf{letter-spacing:-0.180000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.002400px;}
.ls0{letter-spacing:0.024000px;}
.ls9{letter-spacing:0.026400px;}
.ls2{letter-spacing:0.027000px;}
.lsc{letter-spacing:0.030600px;}
.lsb{letter-spacing:1.320000px;}
.lsa{letter-spacing:2.296200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-27.000000px;}
.ws7{word-spacing:-14.784000px;}
.ws6{word-spacing:-14.718000px;}
.ws5{word-spacing:-14.058000px;}
.ws59{word-spacing:-13.464000px;}
.ws2{word-spacing:-13.440000px;}
.ws90{word-spacing:-13.380000px;}
.ws91{word-spacing:-12.840000px;}
.ws3{word-spacing:-12.780000px;}
.ws9{word-spacing:-12.768000px;}
.ws8{word-spacing:-12.711000px;}
.ws1{word-spacing:-11.640000px;}
.wsb9{word-spacing:-10.740000px;}
.ws15{word-spacing:-9.702000px;}
.wsc1{word-spacing:-6.600000px;}
.wsc3{word-spacing:-6.420000px;}
.ws32{word-spacing:-6.006000px;}
.wsa1{word-spacing:-5.760000px;}
.ws36{word-spacing:-5.016000px;}
.ws8b{word-spacing:-4.356000px;}
.wsce{word-spacing:-4.080000px;}
.wsc9{word-spacing:-3.960000px;}
.wsf{word-spacing:-3.900000px;}
.wsd8{word-spacing:-3.540000px;}
.ws45{word-spacing:-3.234000px;}
.ws35{word-spacing:-3.168000px;}
.wsb1{word-spacing:-3.060000px;}
.ws37{word-spacing:-2.970000px;}
.ws99{word-spacing:-2.880000px;}
.ws83{word-spacing:-2.706000px;}
.ws40{word-spacing:-2.574000px;}
.ws42{word-spacing:-2.376000px;}
.ws52{word-spacing:-2.244000px;}
.wsd5{word-spacing:-2.040000px;}
.wscf{word-spacing:-1.980000px;}
.ws39{word-spacing:-1.782000px;}
.wse1{word-spacing:-1.500000px;}
.wsad{word-spacing:-1.380000px;}
.wse4{word-spacing:-1.260000px;}
.ws7b{word-spacing:-1.188000px;}
.ws5d{word-spacing:-0.924000px;}
.ws3b{word-spacing:-0.858000px;}
.ws5b{word-spacing:-0.810000px;}
.ws4d{word-spacing:-0.792000px;}
.ws5a{word-spacing:-0.756000px;}
.ws98{word-spacing:-0.540000px;}
.wsed{word-spacing:-0.420000px;}
.wsdc{word-spacing:-0.180000px;}
.ws4{word-spacing:-0.060000px;}
.ws58{word-spacing:-0.054000px;}
.wsb{word-spacing:0.000000px;}
.ws10{word-spacing:0.300000px;}
.wsc{word-spacing:0.420000px;}
.ws3a{word-spacing:0.528000px;}
.wsec{word-spacing:0.540000px;}
.ws41{word-spacing:0.594000px;}
.ws18{word-spacing:0.660000px;}
.ws23{word-spacing:0.990000px;}
.ws68{word-spacing:1.188000px;}
.ws12{word-spacing:1.200000px;}
.ws8a{word-spacing:1.452000px;}
.ws17{word-spacing:1.716000px;}
.ws8f{word-spacing:1.782000px;}
.ws53{word-spacing:1.980000px;}
.ws72{word-spacing:2.046000px;}
.ws1b{word-spacing:2.112000px;}
.wsef{word-spacing:2.220000px;}
.ws60{word-spacing:2.310000px;}
.ws85{word-spacing:2.376000px;}
.ws84{word-spacing:2.442000px;}
.wscc{word-spacing:2.640000px;}
.ws22{word-spacing:2.904000px;}
.wsc8{word-spacing:3.420000px;}
.ws21{word-spacing:3.498000px;}
.ws97{word-spacing:3.600000px;}
.ws2c{word-spacing:3.630000px;}
.wse8{word-spacing:4.020000px;}
.ws3f{word-spacing:4.026000px;}
.ws34{word-spacing:4.290000px;}
.ws44{word-spacing:4.554000px;}
.ws43{word-spacing:4.620000px;}
.wsb3{word-spacing:4.740000px;}
.wsb2{word-spacing:4.800000px;}
.ws1d{word-spacing:4.884000px;}
.wse{word-spacing:4.920000px;}
.ws1c{word-spacing:4.950000px;}
.wsd{word-spacing:4.980000px;}
.ws3e{word-spacing:5.148000px;}
.wsc6{word-spacing:5.220000px;}
.wsc7{word-spacing:5.340000px;}
.ws3c{word-spacing:5.610000px;}
.wse3{word-spacing:5.760000px;}
.wsa{word-spacing:5.768170px;}
.ws51{word-spacing:5.808000px;}
.wse7{word-spacing:5.880000px;}
.wsd4{word-spacing:6.180000px;}
.ws25{word-spacing:6.600000px;}
.ws33{word-spacing:6.732000px;}
.ws9c{word-spacing:6.960000px;}
.ws87{word-spacing:7.062000px;}
.ws50{word-spacing:7.260000px;}
.wsc4{word-spacing:7.320000px;}
.ws89{word-spacing:7.458000px;}
.ws2e{word-spacing:7.590000px;}
.ws2d{word-spacing:7.656000px;}
.ws6f{word-spacing:7.788000px;}
.wsbf{word-spacing:7.980000px;}
.ws61{word-spacing:8.052000px;}
.ws13{word-spacing:8.316000px;}
.ws62{word-spacing:8.382000px;}
.ws9a{word-spacing:8.520000px;}
.ws27{word-spacing:8.646000px;}
.ws4a{word-spacing:8.712000px;}
.ws26{word-spacing:8.976000px;}
.wsbe{word-spacing:9.060000px;}
.wsb4{word-spacing:9.300000px;}
.ws67{word-spacing:9.306000px;}
.wsb5{word-spacing:9.360000px;}
.ws66{word-spacing:9.372000px;}
.ws1f{word-spacing:9.570000px;}
.wsaa{word-spacing:9.600000px;}
.wsab{word-spacing:9.660000px;}
.ws19{word-spacing:9.702000px;}
.wsca{word-spacing:9.840000px;}
.wsdb{word-spacing:9.960000px;}
.wsda{word-spacing:10.020000px;}
.ws2b{word-spacing:10.692000px;}
.wsd3{word-spacing:10.740000px;}
.ws2a{word-spacing:10.758000px;}
.wsba{word-spacing:10.920000px;}
.ws14{word-spacing:11.022000px;}
.ws1a{word-spacing:11.352000px;}
.wsd7{word-spacing:11.400000px;}
.ws88{word-spacing:11.814000px;}
.wsac{word-spacing:11.880000px;}
.ws80{word-spacing:11.946000px;}
.ws81{word-spacing:12.012000px;}
.wsa8{word-spacing:12.240000px;}
.wsae{word-spacing:12.300000px;}
.wsaf{word-spacing:12.360000px;}
.ws69{word-spacing:12.474000px;}
.ws20{word-spacing:12.540000px;}
.ws70{word-spacing:12.672000px;}
.ws82{word-spacing:13.002000px;}
.ws24{word-spacing:13.200000px;}
.ws6d{word-spacing:13.332000px;}
.wsde{word-spacing:13.440000px;}
.wsb0{word-spacing:13.800000px;}
.wse5{word-spacing:14.160000px;}
.wse6{word-spacing:14.220000px;}
.ws5c{word-spacing:14.322000px;}
.wscb{word-spacing:14.700000px;}
.wsc2{word-spacing:14.760000px;}
.wse0{word-spacing:14.940000px;}
.ws3d{word-spacing:14.982000px;}
.wsdf{word-spacing:15.000000px;}
.wsea{word-spacing:15.540000px;}
.wse9{word-spacing:15.600000px;}
.ws92{word-spacing:15.774000px;}
.ws47{word-spacing:16.302000px;}
.ws46{word-spacing:16.368000px;}
.ws1e{word-spacing:16.698000px;}
.ws5e{word-spacing:16.896000px;}
.ws74{word-spacing:16.962000px;}
.ws5f{word-spacing:17.028000px;}
.wseb{word-spacing:17.220000px;}
.wsd2{word-spacing:17.340000px;}
.ws8e{word-spacing:17.424000px;}
.ws64{word-spacing:17.886000px;}
.ws38{word-spacing:18.282000px;}
.ws7e{word-spacing:18.414000px;}
.ws86{word-spacing:18.744000px;}
.ws71{word-spacing:18.942000px;}
.wsa4{word-spacing:19.080000px;}
.wsa3{word-spacing:19.200000px;}
.wsa2{word-spacing:19.320000px;}
.ws63{word-spacing:19.536000px;}
.ws73{word-spacing:19.602000px;}
.wsd6{word-spacing:19.620000px;}
.ws29{word-spacing:19.734000px;}
.ws28{word-spacing:19.866000px;}
.ws9d{word-spacing:19.920000px;}
.ws9e{word-spacing:20.040000px;}
.ws48{word-spacing:20.196000px;}
.ws49{word-spacing:20.262000px;}
.ws6b{word-spacing:20.328000px;}
.wsbc{word-spacing:20.340000px;}
.wsbb{word-spacing:20.400000px;}
.ws6a{word-spacing:20.460000px;}
.ws75{word-spacing:20.592000px;}
.ws96{word-spacing:20.922000px;}
.ws31{word-spacing:21.318000px;}
.wsa0{word-spacing:21.480000px;}
.wsc0{word-spacing:21.600000px;}
.wsa7{word-spacing:22.200000px;}
.ws65{word-spacing:22.308000px;}
.ws9b{word-spacing:22.320000px;}
.ws76{word-spacing:22.572000px;}
.ws16{word-spacing:24.486000px;}
.ws7c{word-spacing:24.552000px;}
.ws7d{word-spacing:24.684000px;}
.wsd0{word-spacing:25.140000px;}
.ws94{word-spacing:25.212000px;}
.wsd1{word-spacing:25.260000px;}
.wsb8{word-spacing:25.920000px;}
.wsee{word-spacing:26.040000px;}
.ws4e{word-spacing:26.202000px;}
.ws4f{word-spacing:26.334000px;}
.wsa6{word-spacing:26.820000px;}
.ws55{word-spacing:27.324000px;}
.ws77{word-spacing:27.720000px;}
.ws7a{word-spacing:28.116000px;}
.ws7f{word-spacing:29.172000px;}
.wsb7{word-spacing:29.640000px;}
.wsb6{word-spacing:29.820000px;}
.ws93{word-spacing:30.096000px;}
.wscd{word-spacing:30.420000px;}
.wse2{word-spacing:30.540000px;}
.ws56{word-spacing:31.218000px;}
.ws6e{word-spacing:31.548000px;}
.ws78{word-spacing:33.264000px;}
.ws4b{word-spacing:33.330000px;}
.ws30{word-spacing:33.396000px;}
.ws4c{word-spacing:33.462000px;}
.wsa9{word-spacing:34.200000px;}
.wsd9{word-spacing:34.680000px;}
.ws9f{word-spacing:35.160000px;}
.ws57{word-spacing:35.994600px;}
.ws11{word-spacing:37.200000px;}
.wsa5{word-spacing:38.160000px;}
.ws8d{word-spacing:40.458000px;}
.ws2f{word-spacing:43.164000px;}
.ws79{word-spacing:46.134000px;}
.ws6c{word-spacing:49.368000px;}
.ws54{word-spacing:50.358000px;}
.ws8c{word-spacing:55.638000px;}
.wsc5{word-spacing:57.660000px;}
.ws95{word-spacing:60.588000px;}
.wsdd{word-spacing:60.720000px;}
.wsbd{word-spacing:72.840000px;}
._2{margin-left:-8.007600px;}
._9{margin-left:-6.933136px;}
._4{margin-left:-5.672987px;}
._3{margin-left:-4.620026px;}
._1{margin-left:-2.612987px;}
._0{margin-left:-1.598400px;}
._5{width:1.404407px;}
._a{width:2.714816px;}
._6{width:4.582136px;}
._7{width:8.989592px;}
._12{width:10.081187px;}
._8{width:11.737469px;}
._b{width:18.902449px;}
._c{width:20.260200px;}
._d{width:26.344200px;}
._f{width:30.654000px;}
._11{width:48.022213px;}
._e{width:49.777787px;}
._10{width:193.013186px;}
.fc3{color:rgb(145,143,143);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(38,38,38);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:23.113200px;}
.fs1{font-size:34.956600px;}
.fs0{font-size:43.200000px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.fs8{font-size:147.901800px;}
.y0{bottom:0.000000px;}
.y52{bottom:80.787450px;}
.y50{bottom:83.976300px;}
.yf8{bottom:98.795850px;}
.yc7{bottom:99.053400px;}
.y51{bottom:101.787450px;}
.y84{bottom:101.881650px;}
.y96{bottom:101.971800px;}
.y4f{bottom:105.483150px;}
.yf7{bottom:116.804250px;}
.yc6{bottom:117.319500px;}
.y95{bottom:123.156150px;}
.y4e{bottom:126.990000px;}
.y83{bottom:131.479650px;}
.yf6{bottom:134.812650px;}
.y2c{bottom:136.913400px;}
.yc5{bottom:144.089400px;}
.y94{bottom:144.340650px;}
.y4d{bottom:148.496700px;}
.y82{bottom:152.573850px;}
.y2b{bottom:157.577550px;}
.yf5{bottom:161.324850px;}
.yc4{bottom:162.355350px;}
.y93{bottom:165.525000px;}
.y4c{bottom:170.003550px;}
.y81{bottom:173.667900px;}
.y2a{bottom:178.241850px;}
.yf4{bottom:179.333250px;}
.yc3{bottom:189.125400px;}
.y4b{bottom:191.510400px;}
.y80{bottom:194.762100px;}
.y92{bottom:195.213300px;}
.yf3{bottom:197.341650px;}
.y29{bottom:198.905850px;}
.yc2{bottom:207.391350px;}
.y4a{bottom:213.017100px;}
.yf2{bottom:215.350050px;}
.y7f{bottom:215.856150px;}
.y28{bottom:219.570150px;}
.y91{bottom:225.501600px;}
.yc1{bottom:225.657300px;}
.yf1{bottom:233.358450px;}
.y49{bottom:234.523950px;}
.y7e{bottom:236.950350px;}
.y27{bottom:240.234300px;}
.yc0{bottom:243.923400px;}
.y90{bottom:246.685950px;}
.y48{bottom:256.030800px;}
.y7d{bottom:258.044400px;}
.yf0{bottom:259.870650px;}
.y26{bottom:260.898450px;}
.ybf{bottom:262.189350px;}
.y8f{bottom:267.870300px;}
.y47{bottom:277.537650px;}
.yef{bottom:277.879050px;}
.y7c{bottom:279.138600px;}
.ybe{bottom:280.455300px;}
.y25{bottom:281.562600px;}
.y8e{bottom:289.054650px;}
.y46{bottom:299.044350px;}
.y7b{bottom:300.232800px;}
.y24{bottom:302.226750px;}
.yee{bottom:304.391400px;}
.ybd{bottom:307.225350px;}
.y8d{bottom:310.239000px;}
.y45{bottom:320.551200px;}
.y7a{bottom:321.326850px;}
.yed{bottom:322.399800px;}
.y23{bottom:322.891050px;}
.ybc{bottom:325.491300px;}
.y8c{bottom:331.423500px;}
.yec{bottom:340.408200px;}
.y44{bottom:342.057900px;}
.y79{bottom:342.420900px;}
.y22{bottom:343.555200px;}
.ybb{bottom:343.757250px;}
.y8b{bottom:352.607850px;}
.yeb{bottom:358.416600px;}
.yba{bottom:362.023350px;}
.y78{bottom:363.515100px;}
.y43{bottom:363.564750px;}
.y21{bottom:364.219350px;}
.y8a{bottom:373.792200px;}
.yb9{bottom:380.289300px;}
.y77{bottom:384.609300px;}
.y20{bottom:384.883500px;}
.yea{bottom:384.928950px;}
.y42{bottom:385.071600px;}
.y89{bottom:394.976550px;}
.yb8{bottom:398.555250px;}
.ye9{bottom:402.937200px;}
.y1f{bottom:405.547650px;}
.y76{bottom:405.703350px;}
.y41{bottom:406.578300px;}
.y88{bottom:416.160900px;}
.ye8{bottom:420.945600px;}
.yb7{bottom:425.325300px;}
.y1e{bottom:426.211800px;}
.y40{bottom:428.085150px;}
.y75{bottom:435.301500px;}
.y87{bottom:437.345250px;}
.ye7{bottom:438.954000px;}
.yb6{bottom:443.591250px;}
.y1d{bottom:446.876100px;}
.y3f{bottom:449.592000px;}
.yb5{bottom:461.857200px;}
.ye6{bottom:465.466350px;}
.y74{bottom:465.499500px;}
.y86{bottom:467.033550px;}
.y1c{bottom:467.540250px;}
.y3e{bottom:471.098850px;}
.yb4{bottom:480.123300px;}
.ye5{bottom:483.474750px;}
.y73{bottom:486.593700px;}
.y1b{bottom:488.204400px;}
.y3d{bottom:492.605550px;}
.y85{bottom:496.721850px;}
.yb3{bottom:498.389250px;}
.ye4{bottom:501.483150px;}
.y72{bottom:507.687750px;}
.y1a{bottom:508.868550px;}
.y3c{bottom:514.112400px;}
.yb2{bottom:516.655200px;}
.y57{bottom:523.842600px;}
.ye3{bottom:527.995350px;}
.y71{bottom:528.781950px;}
.y19{bottom:529.532700px;}
.yb1{bottom:534.921300px;}
.y3b{bottom:535.619250px;}
.y56{bottom:540.042600px;}
.ye2{bottom:546.003750px;}
.y70{bottom:549.876000px;}
.y18{bottom:550.196850px;}
.yb0{bottom:553.187250px;}
.y3a{bottom:557.126100px;}
.y17{bottom:570.861000px;}
.y6f{bottom:570.970200px;}
.ye1{bottom:572.516100px;}
.y39{bottom:578.632800px;}
.yaf{bottom:579.957150px;}
.ye0{bottom:590.524500px;}
.y16{bottom:591.525300px;}
.y6e{bottom:592.064250px;}
.yae{bottom:598.223250px;}
.y38{bottom:600.139650px;}
.ydf{bottom:608.532900px;}
.y15{bottom:612.189450px;}
.y6d{bottom:613.158450px;}
.yad{bottom:616.489200px;}
.y37{bottom:621.646350px;}
.y14{bottom:632.853600px;}
.y6c{bottom:634.252500px;}
.yde{bottom:635.045100px;}
.y36{bottom:643.153200px;}
.yac{bottom:643.259100px;}
.ydd{bottom:653.053500px;}
.y6b{bottom:655.346700px;}
.yab{bottom:661.525200px;}
.y13{bottom:662.021700px;}
.y35{bottom:664.660050px;}
.ydc{bottom:671.061900px;}
.y6a{bottom:676.440750px;}
.yaa{bottom:679.791150px;}
.y34{bottom:686.166750px;}
.ydb{bottom:689.070300px;}
.y69{bottom:697.534950px;}
.ya9{bottom:698.057100px;}
.y12{bottom:707.457900px;}
.y33{bottom:707.673600px;}
.yda{bottom:715.582650px;}
.y68{bottom:718.629150px;}
.ya8{bottom:724.827000px;}
.y11{bottom:725.872050px;}
.y32{bottom:729.180450px;}
.yd9{bottom:733.590900px;}
.y67{bottom:739.723200px;}
.ya7{bottom:743.093100px;}
.y31{bottom:750.687300px;}
.yd8{bottom:751.599300px;}
.y10{bottom:752.790150px;}
.y66{bottom:760.817250px;}
.ya6{bottom:761.359050px;}
.yf{bottom:771.204300px;}
.y30{bottom:772.194000px;}
.yd7{bottom:778.111650px;}
.ya5{bottom:779.625150px;}
.y65{bottom:781.911450px;}
.ye{bottom:789.618600px;}
.y2f{bottom:793.700850px;}
.yd6{bottom:796.120050px;}
.y64{bottom:803.005500px;}
.ya4{bottom:806.395050px;}
.yd{bottom:808.032750px;}
.yd5{bottom:814.128450px;}
.y2e{bottom:815.207550px;}
.ya3{bottom:824.661000px;}
.yc{bottom:826.446900px;}
.yd4{bottom:832.136850px;}
.y63{bottom:832.603650px;}
.y2d{bottom:836.714400px;}
.ya2{bottom:842.927100px;}
.y103{bottom:846.141750px;}
.yd3{bottom:850.145100px;}
.y62{bottom:853.697700px;}
.ya1{bottom:861.193050px;}
.y102{bottom:864.514200px;}
.yd2{bottom:868.153500px;}
.y61{bottom:874.791900px;}
.yb{bottom:878.650800px;}
.ya0{bottom:879.459000px;}
.y101{bottom:882.886350px;}
.yd1{bottom:894.665850px;}
.y60{bottom:895.886100px;}
.ya{bottom:899.102850px;}
.y107{bottom:901.258800px;}
.y9f{bottom:906.228900px;}
.y100{bottom:909.762750px;}
.yd0{bottom:912.674250px;}
.y9{bottom:915.302850px;}
.y5f{bottom:916.980150px;}
.y106{bottom:919.631100px;}
.yff{bottom:928.135050px;}
.ycf{bottom:930.682650px;}
.y8{bottom:935.754750px;}
.y9e{bottom:936.598800px;}
.y5e{bottom:938.074350px;}
.yfe{bottom:946.507350px;}
.yce{bottom:948.690900px;}
.y9d{bottom:957.864900px;}
.y5d{bottom:959.168400px;}
.yfd{bottom:964.879650px;}
.ycd{bottom:966.699300px;}
.y9c{bottom:979.130850px;}
.y5c{bottom:980.262600px;}
.yfc{bottom:983.251950px;}
.ycc{bottom:984.707700px;}
.y7{bottom:986.154750px;}
.y9b{bottom:1000.396950px;}
.y5b{bottom:1001.356800px;}
.y105{bottom:1001.624250px;}
.ycb{bottom:1002.716100px;}
.yfb{bottom:1010.128200px;}
.y104{bottom:1019.996550px;}
.yca{bottom:1020.724500px;}
.y9a{bottom:1021.662900px;}
.y5a{bottom:1022.450850px;}
.yfa{bottom:1028.500650px;}
.y55{bottom:1033.247700px;}
.y99{bottom:1042.928850px;}
.y59{bottom:1043.545050px;}
.yf9{bottom:1046.872800px;}
.yc9{bottom:1047.236700px;}
.y4{bottom:1057.885350px;}
.y5{bottom:1058.664750px;}
.y98{bottom:1064.194950px;}
.y58{bottom:1064.639100px;}
.yc8{bottom:1065.245250px;}
.y3{bottom:1069.885350px;}
.y53{bottom:1071.322050px;}
.y6{bottom:1072.044300px;}
.y2{bottom:1081.885350px;}
.y1{bottom:1093.885350px;}
.y54{bottom:1094.745150px;}
.y97{bottom:1095.386850px;}
.hd{height:15.405038px;}
.h3{height:26.627098px;}
.h2{height:32.906250px;}
.he{height:38.988000px;}
.h7{height:39.366000px;}
.h4{height:39.474000px;}
.h10{height:40.500000px;}
.h12{height:40.957031px;}
.hf{height:41.310000px;}
.hb{height:42.360352px;}
.h11{height:43.828125px;}
.h6{height:44.208984px;}
.h8{height:44.589844px;}
.ha{height:49.048828px;}
.h9{height:52.632000px;}
.h5{height:82.620000px;}
.hc{height:111.370055px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w1{width:871.500000px;}
.w0{width:871.653000px;}
.x0{left:0.000000px;}
.x5{left:89.291400px;}
.x11{left:93.543300px;}
.x15{left:110.551200px;}
.x17{left:114.803100px;}
.xd{left:119.018400px;}
.x7{left:129.287100px;}
.xa{left:145.409100px;}
.x9{left:157.103850px;}
.xb{left:323.197950px;}
.x8{left:342.329250px;}
.x6{left:366.653100px;}
.x12{left:401.669250px;}
.xc{left:444.330750px;}
.xf{left:448.582650px;}
.x16{left:465.590550px;}
.x10{left:469.353900px;}
.xe{left:487.566300px;}
.x4{left:559.394400px;}
.x3{left:636.573000px;}
.x14{left:642.560850px;}
.x2{left:645.801900px;}
.x1{left:674.388300px;}
.x13{left:761.425650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.281600pt;}
.ls8{letter-spacing:-5.258731pt;}
.lse{letter-spacing:-1.173333pt;}
.ls6{letter-spacing:-1.066667pt;}
.ls7{letter-spacing:-0.586667pt;}
.ls5{letter-spacing:-0.533333pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.240000pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.002133pt;}
.ls0{letter-spacing:0.021333pt;}
.ls9{letter-spacing:0.023467pt;}
.ls2{letter-spacing:0.024000pt;}
.lsc{letter-spacing:0.027200pt;}
.lsb{letter-spacing:1.173333pt;}
.lsa{letter-spacing:2.041067pt;}
.ws0{word-spacing:-24.000000pt;}
.ws7{word-spacing:-13.141333pt;}
.ws6{word-spacing:-13.082667pt;}
.ws5{word-spacing:-12.496000pt;}
.ws59{word-spacing:-11.968000pt;}
.ws2{word-spacing:-11.946667pt;}
.ws90{word-spacing:-11.893333pt;}
.ws91{word-spacing:-11.413333pt;}
.ws3{word-spacing:-11.360000pt;}
.ws9{word-spacing:-11.349333pt;}
.ws8{word-spacing:-11.298667pt;}
.ws1{word-spacing:-10.346667pt;}
.wsb9{word-spacing:-9.546667pt;}
.ws15{word-spacing:-8.624000pt;}
.wsc1{word-spacing:-5.866667pt;}
.wsc3{word-spacing:-5.706667pt;}
.ws32{word-spacing:-5.338667pt;}
.wsa1{word-spacing:-5.120000pt;}
.ws36{word-spacing:-4.458667pt;}
.ws8b{word-spacing:-3.872000pt;}
.wsce{word-spacing:-3.626667pt;}
.wsc9{word-spacing:-3.520000pt;}
.wsf{word-spacing:-3.466667pt;}
.wsd8{word-spacing:-3.146667pt;}
.ws45{word-spacing:-2.874667pt;}
.ws35{word-spacing:-2.816000pt;}
.wsb1{word-spacing:-2.720000pt;}
.ws37{word-spacing:-2.640000pt;}
.ws99{word-spacing:-2.560000pt;}
.ws83{word-spacing:-2.405333pt;}
.ws40{word-spacing:-2.288000pt;}
.ws42{word-spacing:-2.112000pt;}
.ws52{word-spacing:-1.994667pt;}
.wsd5{word-spacing:-1.813333pt;}
.wscf{word-spacing:-1.760000pt;}
.ws39{word-spacing:-1.584000pt;}
.wse1{word-spacing:-1.333333pt;}
.wsad{word-spacing:-1.226667pt;}
.wse4{word-spacing:-1.120000pt;}
.ws7b{word-spacing:-1.056000pt;}
.ws5d{word-spacing:-0.821333pt;}
.ws3b{word-spacing:-0.762667pt;}
.ws5b{word-spacing:-0.720000pt;}
.ws4d{word-spacing:-0.704000pt;}
.ws5a{word-spacing:-0.672000pt;}
.ws98{word-spacing:-0.480000pt;}
.wsed{word-spacing:-0.373333pt;}
.wsdc{word-spacing:-0.160000pt;}
.ws4{word-spacing:-0.053333pt;}
.ws58{word-spacing:-0.048000pt;}
.wsb{word-spacing:0.000000pt;}
.ws10{word-spacing:0.266667pt;}
.wsc{word-spacing:0.373333pt;}
.ws3a{word-spacing:0.469333pt;}
.wsec{word-spacing:0.480000pt;}
.ws41{word-spacing:0.528000pt;}
.ws18{word-spacing:0.586667pt;}
.ws23{word-spacing:0.880000pt;}
.ws68{word-spacing:1.056000pt;}
.ws12{word-spacing:1.066667pt;}
.ws8a{word-spacing:1.290667pt;}
.ws17{word-spacing:1.525333pt;}
.ws8f{word-spacing:1.584000pt;}
.ws53{word-spacing:1.760000pt;}
.ws72{word-spacing:1.818667pt;}
.ws1b{word-spacing:1.877333pt;}
.wsef{word-spacing:1.973333pt;}
.ws60{word-spacing:2.053333pt;}
.ws85{word-spacing:2.112000pt;}
.ws84{word-spacing:2.170667pt;}
.wscc{word-spacing:2.346667pt;}
.ws22{word-spacing:2.581333pt;}
.wsc8{word-spacing:3.040000pt;}
.ws21{word-spacing:3.109333pt;}
.ws97{word-spacing:3.200000pt;}
.ws2c{word-spacing:3.226667pt;}
.wse8{word-spacing:3.573333pt;}
.ws3f{word-spacing:3.578667pt;}
.ws34{word-spacing:3.813333pt;}
.ws44{word-spacing:4.048000pt;}
.ws43{word-spacing:4.106667pt;}
.wsb3{word-spacing:4.213333pt;}
.wsb2{word-spacing:4.266667pt;}
.ws1d{word-spacing:4.341333pt;}
.wse{word-spacing:4.373333pt;}
.ws1c{word-spacing:4.400000pt;}
.wsd{word-spacing:4.426667pt;}
.ws3e{word-spacing:4.576000pt;}
.wsc6{word-spacing:4.640000pt;}
.wsc7{word-spacing:4.746667pt;}
.ws3c{word-spacing:4.986667pt;}
.wse3{word-spacing:5.120000pt;}
.wsa{word-spacing:5.127262pt;}
.ws51{word-spacing:5.162667pt;}
.wse7{word-spacing:5.226667pt;}
.wsd4{word-spacing:5.493333pt;}
.ws25{word-spacing:5.866667pt;}
.ws33{word-spacing:5.984000pt;}
.ws9c{word-spacing:6.186667pt;}
.ws87{word-spacing:6.277333pt;}
.ws50{word-spacing:6.453333pt;}
.wsc4{word-spacing:6.506667pt;}
.ws89{word-spacing:6.629333pt;}
.ws2e{word-spacing:6.746667pt;}
.ws2d{word-spacing:6.805333pt;}
.ws6f{word-spacing:6.922667pt;}
.wsbf{word-spacing:7.093333pt;}
.ws61{word-spacing:7.157333pt;}
.ws13{word-spacing:7.392000pt;}
.ws62{word-spacing:7.450667pt;}
.ws9a{word-spacing:7.573333pt;}
.ws27{word-spacing:7.685333pt;}
.ws4a{word-spacing:7.744000pt;}
.ws26{word-spacing:7.978667pt;}
.wsbe{word-spacing:8.053333pt;}
.wsb4{word-spacing:8.266667pt;}
.ws67{word-spacing:8.272000pt;}
.wsb5{word-spacing:8.320000pt;}
.ws66{word-spacing:8.330667pt;}
.ws1f{word-spacing:8.506667pt;}
.wsaa{word-spacing:8.533333pt;}
.wsab{word-spacing:8.586667pt;}
.ws19{word-spacing:8.624000pt;}
.wsca{word-spacing:8.746667pt;}
.wsdb{word-spacing:8.853333pt;}
.wsda{word-spacing:8.906667pt;}
.ws2b{word-spacing:9.504000pt;}
.wsd3{word-spacing:9.546667pt;}
.ws2a{word-spacing:9.562667pt;}
.wsba{word-spacing:9.706667pt;}
.ws14{word-spacing:9.797333pt;}
.ws1a{word-spacing:10.090667pt;}
.wsd7{word-spacing:10.133333pt;}
.ws88{word-spacing:10.501333pt;}
.wsac{word-spacing:10.560000pt;}
.ws80{word-spacing:10.618667pt;}
.ws81{word-spacing:10.677333pt;}
.wsa8{word-spacing:10.880000pt;}
.wsae{word-spacing:10.933333pt;}
.wsaf{word-spacing:10.986667pt;}
.ws69{word-spacing:11.088000pt;}
.ws20{word-spacing:11.146667pt;}
.ws70{word-spacing:11.264000pt;}
.ws82{word-spacing:11.557333pt;}
.ws24{word-spacing:11.733333pt;}
.ws6d{word-spacing:11.850667pt;}
.wsde{word-spacing:11.946667pt;}
.wsb0{word-spacing:12.266667pt;}
.wse5{word-spacing:12.586667pt;}
.wse6{word-spacing:12.640000pt;}
.ws5c{word-spacing:12.730667pt;}
.wscb{word-spacing:13.066667pt;}
.wsc2{word-spacing:13.120000pt;}
.wse0{word-spacing:13.280000pt;}
.ws3d{word-spacing:13.317333pt;}
.wsdf{word-spacing:13.333333pt;}
.wsea{word-spacing:13.813333pt;}
.wse9{word-spacing:13.866667pt;}
.ws92{word-spacing:14.021333pt;}
.ws47{word-spacing:14.490667pt;}
.ws46{word-spacing:14.549333pt;}
.ws1e{word-spacing:14.842667pt;}
.ws5e{word-spacing:15.018667pt;}
.ws74{word-spacing:15.077333pt;}
.ws5f{word-spacing:15.136000pt;}
.wseb{word-spacing:15.306667pt;}
.wsd2{word-spacing:15.413333pt;}
.ws8e{word-spacing:15.488000pt;}
.ws64{word-spacing:15.898667pt;}
.ws38{word-spacing:16.250667pt;}
.ws7e{word-spacing:16.368000pt;}
.ws86{word-spacing:16.661333pt;}
.ws71{word-spacing:16.837333pt;}
.wsa4{word-spacing:16.960000pt;}
.wsa3{word-spacing:17.066667pt;}
.wsa2{word-spacing:17.173333pt;}
.ws63{word-spacing:17.365333pt;}
.ws73{word-spacing:17.424000pt;}
.wsd6{word-spacing:17.440000pt;}
.ws29{word-spacing:17.541333pt;}
.ws28{word-spacing:17.658667pt;}
.ws9d{word-spacing:17.706667pt;}
.ws9e{word-spacing:17.813333pt;}
.ws48{word-spacing:17.952000pt;}
.ws49{word-spacing:18.010667pt;}
.ws6b{word-spacing:18.069333pt;}
.wsbc{word-spacing:18.080000pt;}
.wsbb{word-spacing:18.133333pt;}
.ws6a{word-spacing:18.186667pt;}
.ws75{word-spacing:18.304000pt;}
.ws96{word-spacing:18.597333pt;}
.ws31{word-spacing:18.949333pt;}
.wsa0{word-spacing:19.093333pt;}
.wsc0{word-spacing:19.200000pt;}
.wsa7{word-spacing:19.733333pt;}
.ws65{word-spacing:19.829333pt;}
.ws9b{word-spacing:19.840000pt;}
.ws76{word-spacing:20.064000pt;}
.ws16{word-spacing:21.765333pt;}
.ws7c{word-spacing:21.824000pt;}
.ws7d{word-spacing:21.941333pt;}
.wsd0{word-spacing:22.346667pt;}
.ws94{word-spacing:22.410667pt;}
.wsd1{word-spacing:22.453333pt;}
.wsb8{word-spacing:23.040000pt;}
.wsee{word-spacing:23.146667pt;}
.ws4e{word-spacing:23.290667pt;}
.ws4f{word-spacing:23.408000pt;}
.wsa6{word-spacing:23.840000pt;}
.ws55{word-spacing:24.288000pt;}
.ws77{word-spacing:24.640000pt;}
.ws7a{word-spacing:24.992000pt;}
.ws7f{word-spacing:25.930667pt;}
.wsb7{word-spacing:26.346667pt;}
.wsb6{word-spacing:26.506667pt;}
.ws93{word-spacing:26.752000pt;}
.wscd{word-spacing:27.040000pt;}
.wse2{word-spacing:27.146667pt;}
.ws56{word-spacing:27.749333pt;}
.ws6e{word-spacing:28.042667pt;}
.ws78{word-spacing:29.568000pt;}
.ws4b{word-spacing:29.626667pt;}
.ws30{word-spacing:29.685333pt;}
.ws4c{word-spacing:29.744000pt;}
.wsa9{word-spacing:30.400000pt;}
.wsd9{word-spacing:30.826667pt;}
.ws9f{word-spacing:31.253333pt;}
.ws57{word-spacing:31.995200pt;}
.ws11{word-spacing:33.066667pt;}
.wsa5{word-spacing:33.920000pt;}
.ws8d{word-spacing:35.962667pt;}
.ws2f{word-spacing:38.368000pt;}
.ws79{word-spacing:41.008000pt;}
.ws6c{word-spacing:43.882667pt;}
.ws54{word-spacing:44.762667pt;}
.ws8c{word-spacing:49.456000pt;}
.wsc5{word-spacing:51.253333pt;}
.ws95{word-spacing:53.856000pt;}
.wsdd{word-spacing:53.973333pt;}
.wsbd{word-spacing:64.746667pt;}
._2{margin-left:-7.117867pt;}
._9{margin-left:-6.162787pt;}
._4{margin-left:-5.042655pt;}
._3{margin-left:-4.106690pt;}
._1{margin-left:-2.322655pt;}
._0{margin-left:-1.420800pt;}
._5{width:1.248362pt;}
._a{width:2.413170pt;}
._6{width:4.073010pt;}
._7{width:7.990748pt;}
._12{width:8.961055pt;}
._8{width:10.433306pt;}
._b{width:16.802177pt;}
._c{width:18.009067pt;}
._d{width:23.417067pt;}
._f{width:27.248000pt;}
._11{width:42.686412pt;}
._e{width:44.246922pt;}
._10{width:171.567277pt;}
.fs9{font-size:20.545067pt;}
.fs1{font-size:31.072533pt;}
.fs0{font-size:38.400000pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.fs8{font-size:131.468267pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:71.811067pt;}
.y50{bottom:74.645600pt;}
.yf8{bottom:87.818533pt;}
.yc7{bottom:88.047467pt;}
.y51{bottom:90.477733pt;}
.y84{bottom:90.561467pt;}
.y96{bottom:90.641600pt;}
.y4f{bottom:93.762800pt;}
.yf7{bottom:103.826000pt;}
.yc6{bottom:104.284000pt;}
.y95{bottom:109.472133pt;}
.y4e{bottom:112.880000pt;}
.y83{bottom:116.870800pt;}
.yf6{bottom:119.833467pt;}
.y2c{bottom:121.700800pt;}
.yc5{bottom:128.079467pt;}
.y94{bottom:128.302800pt;}
.y4d{bottom:131.997067pt;}
.y82{bottom:135.621200pt;}
.y2b{bottom:140.068933pt;}
.yf5{bottom:143.399867pt;}
.yc4{bottom:144.315867pt;}
.y93{bottom:147.133333pt;}
.y4c{bottom:151.114267pt;}
.y81{bottom:154.371467pt;}
.y2a{bottom:158.437200pt;}
.yf4{bottom:159.407333pt;}
.yc3{bottom:168.111467pt;}
.y4b{bottom:170.231467pt;}
.y80{bottom:173.121867pt;}
.y92{bottom:173.522933pt;}
.yf3{bottom:175.414800pt;}
.y29{bottom:176.805200pt;}
.yc2{bottom:184.347867pt;}
.y4a{bottom:189.348533pt;}
.yf2{bottom:191.422267pt;}
.y7f{bottom:191.872133pt;}
.y28{bottom:195.173467pt;}
.y91{bottom:200.445867pt;}
.yc1{bottom:200.584267pt;}
.yf1{bottom:207.429733pt;}
.y49{bottom:208.465733pt;}
.y7e{bottom:210.622533pt;}
.y27{bottom:213.541600pt;}
.yc0{bottom:216.820800pt;}
.y90{bottom:219.276400pt;}
.y48{bottom:227.582933pt;}
.y7d{bottom:229.372800pt;}
.yf0{bottom:230.996133pt;}
.y26{bottom:231.909733pt;}
.ybf{bottom:233.057200pt;}
.y8f{bottom:238.106933pt;}
.y47{bottom:246.700133pt;}
.yef{bottom:247.003600pt;}
.y7c{bottom:248.123200pt;}
.ybe{bottom:249.293600pt;}
.y25{bottom:250.277867pt;}
.y8e{bottom:256.937467pt;}
.y46{bottom:265.817200pt;}
.y7b{bottom:266.873600pt;}
.y24{bottom:268.646000pt;}
.yee{bottom:270.570133pt;}
.ybd{bottom:273.089200pt;}
.y8d{bottom:275.768000pt;}
.y45{bottom:284.934400pt;}
.y7a{bottom:285.623867pt;}
.yed{bottom:286.577600pt;}
.y23{bottom:287.014267pt;}
.ybc{bottom:289.325600pt;}
.y8c{bottom:294.598667pt;}
.yec{bottom:302.585067pt;}
.y44{bottom:304.051467pt;}
.y79{bottom:304.374133pt;}
.y22{bottom:305.382400pt;}
.ybb{bottom:305.562000pt;}
.y8b{bottom:313.429200pt;}
.yeb{bottom:318.592533pt;}
.yba{bottom:321.798533pt;}
.y78{bottom:323.124533pt;}
.y43{bottom:323.168667pt;}
.y21{bottom:323.750533pt;}
.y8a{bottom:332.259733pt;}
.yb9{bottom:338.034933pt;}
.y77{bottom:341.874933pt;}
.y20{bottom:342.118667pt;}
.yea{bottom:342.159067pt;}
.y42{bottom:342.285867pt;}
.y89{bottom:351.090267pt;}
.yb8{bottom:354.271333pt;}
.ye9{bottom:358.166400pt;}
.y1f{bottom:360.486800pt;}
.y76{bottom:360.625200pt;}
.y41{bottom:361.402933pt;}
.y88{bottom:369.920800pt;}
.ye8{bottom:374.173867pt;}
.yb7{bottom:378.066933pt;}
.y1e{bottom:378.854933pt;}
.y40{bottom:380.520133pt;}
.y75{bottom:386.934667pt;}
.y87{bottom:388.751333pt;}
.ye7{bottom:390.181333pt;}
.yb6{bottom:394.303333pt;}
.y1d{bottom:397.223200pt;}
.y3f{bottom:399.637333pt;}
.yb5{bottom:410.539733pt;}
.ye6{bottom:413.747867pt;}
.y74{bottom:413.777333pt;}
.y86{bottom:415.140933pt;}
.y1c{bottom:415.591333pt;}
.y3e{bottom:418.754533pt;}
.yb4{bottom:426.776267pt;}
.ye5{bottom:429.755333pt;}
.y73{bottom:432.527733pt;}
.y1b{bottom:433.959467pt;}
.y3d{bottom:437.871600pt;}
.y85{bottom:441.530533pt;}
.yb3{bottom:443.012667pt;}
.ye4{bottom:445.762800pt;}
.y72{bottom:451.278000pt;}
.y1a{bottom:452.327600pt;}
.y3c{bottom:456.988800pt;}
.yb2{bottom:459.249067pt;}
.y57{bottom:465.637867pt;}
.ye3{bottom:469.329200pt;}
.y71{bottom:470.028400pt;}
.y19{bottom:470.695733pt;}
.yb1{bottom:475.485600pt;}
.y3b{bottom:476.106000pt;}
.y56{bottom:480.037867pt;}
.ye2{bottom:485.336667pt;}
.y70{bottom:488.778667pt;}
.y18{bottom:489.063867pt;}
.yb0{bottom:491.722000pt;}
.y3a{bottom:495.223200pt;}
.y17{bottom:507.432000pt;}
.y6f{bottom:507.529067pt;}
.ye1{bottom:508.903200pt;}
.y39{bottom:514.340267pt;}
.yaf{bottom:515.517467pt;}
.ye0{bottom:524.910667pt;}
.y16{bottom:525.800267pt;}
.y6e{bottom:526.279333pt;}
.yae{bottom:531.754000pt;}
.y38{bottom:533.457467pt;}
.ydf{bottom:540.918133pt;}
.y15{bottom:544.168400pt;}
.y6d{bottom:545.029733pt;}
.yad{bottom:547.990400pt;}
.y37{bottom:552.574533pt;}
.y14{bottom:562.536533pt;}
.y6c{bottom:563.780000pt;}
.yde{bottom:564.484533pt;}
.y36{bottom:571.691733pt;}
.yac{bottom:571.785867pt;}
.ydd{bottom:580.492000pt;}
.y6b{bottom:582.530400pt;}
.yab{bottom:588.022400pt;}
.y13{bottom:588.463733pt;}
.y35{bottom:590.808933pt;}
.ydc{bottom:596.499467pt;}
.y6a{bottom:601.280667pt;}
.yaa{bottom:604.258800pt;}
.y34{bottom:609.926000pt;}
.ydb{bottom:612.506933pt;}
.y69{bottom:620.031067pt;}
.ya9{bottom:620.495200pt;}
.y12{bottom:628.851467pt;}
.y33{bottom:629.043200pt;}
.yda{bottom:636.073467pt;}
.y68{bottom:638.781467pt;}
.ya8{bottom:644.290667pt;}
.y11{bottom:645.219600pt;}
.y32{bottom:648.160400pt;}
.yd9{bottom:652.080800pt;}
.y67{bottom:657.531733pt;}
.ya7{bottom:660.527200pt;}
.y31{bottom:667.277600pt;}
.yd8{bottom:668.088267pt;}
.y10{bottom:669.146800pt;}
.y66{bottom:676.282000pt;}
.ya6{bottom:676.763600pt;}
.yf{bottom:685.514933pt;}
.y30{bottom:686.394667pt;}
.yd7{bottom:691.654800pt;}
.ya5{bottom:693.000133pt;}
.y65{bottom:695.032400pt;}
.ye{bottom:701.883200pt;}
.y2f{bottom:705.511867pt;}
.yd6{bottom:707.662267pt;}
.y64{bottom:713.782667pt;}
.ya4{bottom:716.795600pt;}
.yd{bottom:718.251333pt;}
.yd5{bottom:723.669733pt;}
.y2e{bottom:724.628933pt;}
.ya3{bottom:733.032000pt;}
.yc{bottom:734.619467pt;}
.yd4{bottom:739.677200pt;}
.y63{bottom:740.092133pt;}
.y2d{bottom:743.746133pt;}
.ya2{bottom:749.268533pt;}
.y103{bottom:752.126000pt;}
.yd3{bottom:755.684533pt;}
.y62{bottom:758.842400pt;}
.ya1{bottom:765.504933pt;}
.y102{bottom:768.457067pt;}
.yd2{bottom:771.692000pt;}
.y61{bottom:777.592800pt;}
.yb{bottom:781.022933pt;}
.ya0{bottom:781.741333pt;}
.y101{bottom:784.787867pt;}
.yd1{bottom:795.258533pt;}
.y60{bottom:796.343200pt;}
.ya{bottom:799.202533pt;}
.y107{bottom:801.118933pt;}
.y9f{bottom:805.536800pt;}
.y100{bottom:808.678000pt;}
.yd0{bottom:811.266000pt;}
.y9{bottom:813.602533pt;}
.y5f{bottom:815.093467pt;}
.y106{bottom:817.449867pt;}
.yff{bottom:825.008933pt;}
.ycf{bottom:827.273467pt;}
.y8{bottom:831.782000pt;}
.y9e{bottom:832.532267pt;}
.y5e{bottom:833.843867pt;}
.yfe{bottom:841.339867pt;}
.yce{bottom:843.280800pt;}
.y9d{bottom:851.435467pt;}
.y5d{bottom:852.594133pt;}
.yfd{bottom:857.670800pt;}
.ycd{bottom:859.288267pt;}
.y9c{bottom:870.338533pt;}
.y5c{bottom:871.344533pt;}
.yfc{bottom:874.001733pt;}
.ycc{bottom:875.295733pt;}
.y7{bottom:876.582000pt;}
.y9b{bottom:889.241733pt;}
.y5b{bottom:890.094933pt;}
.y105{bottom:890.332667pt;}
.ycb{bottom:891.303200pt;}
.yfb{bottom:897.891733pt;}
.y104{bottom:906.663600pt;}
.yca{bottom:907.310667pt;}
.y9a{bottom:908.144800pt;}
.y5a{bottom:908.845200pt;}
.yfa{bottom:914.222800pt;}
.y55{bottom:918.442400pt;}
.y99{bottom:927.047867pt;}
.y59{bottom:927.595600pt;}
.yf9{bottom:930.553600pt;}
.yc9{bottom:930.877067pt;}
.y4{bottom:940.342533pt;}
.y5{bottom:941.035333pt;}
.y98{bottom:945.951067pt;}
.y58{bottom:946.345867pt;}
.yc8{bottom:946.884667pt;}
.y3{bottom:951.009200pt;}
.y53{bottom:952.286267pt;}
.y6{bottom:952.928267pt;}
.y2{bottom:961.675867pt;}
.y1{bottom:972.342533pt;}
.y54{bottom:973.106800pt;}
.y97{bottom:973.677200pt;}
.hd{height:13.693367pt;}
.h3{height:23.668531pt;}
.h2{height:29.250000pt;}
.he{height:34.656000pt;}
.h7{height:34.992000pt;}
.h4{height:35.088000pt;}
.h10{height:36.000000pt;}
.h12{height:36.406250pt;}
.hf{height:36.720000pt;}
.hb{height:37.653646pt;}
.h11{height:38.958333pt;}
.h6{height:39.296875pt;}
.h8{height:39.635417pt;}
.ha{height:43.598958pt;}
.h9{height:46.784000pt;}
.h5{height:73.440000pt;}
.hc{height:98.995605pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w1{width:774.666667pt;}
.w0{width:774.802667pt;}
.x0{left:0.000000pt;}
.x5{left:79.370133pt;}
.x11{left:83.149600pt;}
.x15{left:98.267733pt;}
.x17{left:102.047200pt;}
.xd{left:105.794133pt;}
.x7{left:114.921867pt;}
.xa{left:129.252533pt;}
.x9{left:139.647867pt;}
.xb{left:287.287067pt;}
.x8{left:304.292667pt;}
.x6{left:325.913867pt;}
.x12{left:357.039333pt;}
.xc{left:394.960667pt;}
.xf{left:398.740133pt;}
.x16{left:413.858267pt;}
.x10{left:417.203467pt;}
.xe{left:433.392267pt;}
.x4{left:497.239467pt;}
.x3{left:565.842667pt;}
.x14{left:571.165200pt;}
.x2{left:574.046133pt;}
.x1{left:599.456267pt;}
.x13{left:676.822800pt;}
}




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