
    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_6c0e80d3f6ae876cd2c1e58b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c9217b1efd70f5d2c366b4ce.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.883000;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_fdb481c0f342c7a71a6a5bff.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_74b570e99915a171deadab6c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cabce6e8a8aae28039a18439.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.920000;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_2bdce7318e5be735479e71f9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_e4b338bd4ec8721f4ea9f3b5.woff2')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_f7dd41e204271793e07f15eb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.179688;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_4f499d68d7ebf7a372c81a6c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.009000;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_dad7cb90b6da717813f55183.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.883000;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_4e65740ccc65547aea9fd595.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c94a835569a369c1fb94279a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.745000;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_0cd441881549a35917d98fef.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.973145;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_69a8928cf14b987c8f9ccac8.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.128906;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_22bf227aae81446969bf5ee6.woff2')format("woff");}.fff{font-family:fff;line-height:0.780762;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_6529357d94e6fd9fd3aa9874.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.972656;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_616d92eb4dc03b0b95cd919a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.973145;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_9ebaa4a998f18baa53f06488.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.973145;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_b28c16fb1c65f8be6256ea5e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.926000;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:ff14;src:url('chunks/assets/font_33eb4467b40cc720c30677f3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.926000;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:ff15;src:url('chunks/assets/font_990c40e7ff51da990cb97739.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_0ec23bb8e1012e8f90c6d49c.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910645;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:ff17;src:url('chunks/assets/font_4b4de62fe77cd8833102ba9f.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.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.249865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:59.640000px;}
.ls6{letter-spacing:-4.320000px;}
.ls9{letter-spacing:-2.880000px;}
.lsb{letter-spacing:-2.160000px;}
.ls4{letter-spacing:-1.440000px;}
.ls3{letter-spacing:-0.960000px;}
.ls7{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.600000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.003660px;}
.ls2{letter-spacing:0.480000px;}
.lsa{letter-spacing:8.088000px;}
.ls1{letter-spacing:24.000000px;}
.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;}
.ws7e{word-spacing:-20.880000px;}
.ws83{word-spacing:-20.160000px;}
.ws5{word-spacing:-20.016000px;}
.ws76{word-spacing:-19.440000px;}
.ws7{word-spacing:-16.200000px;}
.ws44{word-spacing:-15.000000px;}
.ws6{word-spacing:-14.880000px;}
.ws21{word-spacing:-14.460000px;}
.ws18{word-spacing:-8.430180px;}
.wse{word-spacing:-8.220000px;}
.wsf{word-spacing:-7.800000px;}
.ws11{word-spacing:-7.632000px;}
.ws2{word-spacing:-7.200000px;}
.ws3{word-spacing:-6.240000px;}
.ws79{word-spacing:-3.480000px;}
.ws5f{word-spacing:-2.880000px;}
.ws7a{word-spacing:-2.760000px;}
.ws75{word-spacing:-2.700000px;}
.ws47{word-spacing:-2.640000px;}
.ws43{word-spacing:-2.520000px;}
.ws26{word-spacing:-2.220000px;}
.ws78{word-spacing:-2.160000px;}
.ws70{word-spacing:-1.860000px;}
.ws5d{word-spacing:-1.740000px;}
.ws35{word-spacing:-1.680000px;}
.ws51{word-spacing:-1.620000px;}
.wsa{word-spacing:-1.560000px;}
.ws2a{word-spacing:-1.500000px;}
.ws48{word-spacing:-1.380000px;}
.ws14{word-spacing:-1.320000px;}
.ws4f{word-spacing:-1.260000px;}
.ws41{word-spacing:-1.140000px;}
.ws1f{word-spacing:-1.026000px;}
.ws7f{word-spacing:-1.020000px;}
.ws4d{word-spacing:-0.960000px;}
.ws5e{word-spacing:-0.840000px;}
.ws1b{word-spacing:-0.720000px;}
.ws72{word-spacing:-0.660000px;}
.ws23{word-spacing:-0.600000px;}
.ws5b{word-spacing:-0.540000px;}
.ws4{word-spacing:-0.480000px;}
.ws3a{word-spacing:-0.324000px;}
.ws34{word-spacing:-0.180000px;}
.ws2e{word-spacing:-0.162000px;}
.ws74{word-spacing:-0.120000px;}
.ws10{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:0.060000px;}
.ws5c{word-spacing:0.120000px;}
.ws16{word-spacing:0.180000px;}
.ws45{word-spacing:0.300000px;}
.ws53{word-spacing:0.540000px;}
.ws4c{word-spacing:0.600000px;}
.ws3b{word-spacing:0.720000px;}
.ws67{word-spacing:0.840000px;}
.ws4a{word-spacing:0.900000px;}
.ws3d{word-spacing:1.140000px;}
.ws2b{word-spacing:1.200000px;}
.ws69{word-spacing:1.242000px;}
.wsb{word-spacing:1.260000px;}
.ws58{word-spacing:1.320000px;}
.ws20{word-spacing:1.350000px;}
.ws59{word-spacing:1.380000px;}
.ws8{word-spacing:1.440000px;}
.ws27{word-spacing:1.500000px;}
.ws42{word-spacing:1.512000px;}
.ws17{word-spacing:1.620000px;}
.ws25{word-spacing:1.740000px;}
.ws82{word-spacing:1.860000px;}
.ws50{word-spacing:1.920000px;}
.ws6c{word-spacing:1.980000px;}
.ws6a{word-spacing:2.052000px;}
.ws33{word-spacing:2.100000px;}
.ws31{word-spacing:2.160000px;}
.ws62{word-spacing:2.220000px;}
.ws3c{word-spacing:2.340000px;}
.ws19{word-spacing:2.640000px;}
.ws15{word-spacing:2.880000px;}
.ws57{word-spacing:2.940000px;}
.ws1e{word-spacing:3.060000px;}
.ws28{word-spacing:3.120000px;}
.ws36{word-spacing:3.180000px;}
.ws6b{word-spacing:3.186000px;}
.ws60{word-spacing:3.480000px;}
.ws77{word-spacing:3.720000px;}
.ws46{word-spacing:3.780000px;}
.ws22{word-spacing:3.900000px;}
.ws52{word-spacing:4.260000px;}
.ws12{word-spacing:4.320000px;}
.ws68{word-spacing:4.374000px;}
.ws2c{word-spacing:4.380000px;}
.ws6d{word-spacing:4.428000px;}
.ws5a{word-spacing:4.440000px;}
.ws2f{word-spacing:4.500000px;}
.ws3e{word-spacing:4.560000px;}
.ws1a{word-spacing:4.620000px;}
.wsd{word-spacing:4.680000px;}
.ws56{word-spacing:4.752000px;}
.ws7d{word-spacing:4.860000px;}
.ws13{word-spacing:4.920000px;}
.ws29{word-spacing:4.980000px;}
.ws80{word-spacing:5.160000px;}
.ws32{word-spacing:5.460000px;}
.ws4e{word-spacing:5.520000px;}
.ws7b{word-spacing:5.640000px;}
.ws71{word-spacing:5.820000px;}
.wsc{word-spacing:5.880000px;}
.ws2d{word-spacing:6.000000px;}
.ws38{word-spacing:6.048000px;}
.ws1c{word-spacing:6.180000px;}
.ws65{word-spacing:6.480000px;}
.ws55{word-spacing:6.540000px;}
.ws61{word-spacing:6.720000px;}
.ws49{word-spacing:6.912000px;}
.ws40{word-spacing:7.080000px;}
.ws30{word-spacing:7.200000px;}
.ws24{word-spacing:7.260000px;}
.ws66{word-spacing:7.380000px;}
.ws64{word-spacing:7.452000px;}
.ws37{word-spacing:7.668000px;}
.ws6f{word-spacing:7.740000px;}
.ws4b{word-spacing:7.860000px;}
.ws39{word-spacing:7.884000px;}
.ws3f{word-spacing:7.920000px;}
.ws63{word-spacing:7.992000px;}
.ws6e{word-spacing:8.040000px;}
.ws81{word-spacing:8.160000px;}
.ws1d{word-spacing:8.340000px;}
.ws73{word-spacing:8.400000px;}
.ws54{word-spacing:9.240000px;}
.ws7c{word-spacing:9.420000px;}
._3{margin-left:-43.056000px;}
._2{margin-left:-12.606000px;}
._5{margin-left:-6.004800px;}
._7{margin-left:-4.680000px;}
._1{margin-left:-3.561600px;}
._6{margin-left:-2.281200px;}
._0{margin-left:-1.264200px;}
._4{width:1.019400px;}
._d{width:2.328000px;}
._8{width:4.152000px;}
._b{width:5.220600px;}
._9{width:6.390000px;}
._c{width:7.704000px;}
._a{width:8.934000px;}
._10{width:10.386000px;}
._e{width:11.685600px;}
._f{width:15.978000px;}
.fc6{color:rgb(255,76,0);}
.fc4{color:transparent;}
.fc3{color:rgb(92,92,94);}
.fc2{color:rgb(87,87,86);}
.fc1{color:rgb(255,112,51);}
.fc5{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:34.980000px;}
.fsa{font-size:36.000000px;}
.fs1{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fse{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fsb{font-size:96.000000px;}
.fs9{font-size:104.940000px;}
.fsc{font-size:108.000000px;}
.fs3{font-size:117.460800px;}
.fs0{font-size:144.000000px;}
.fs2{font-size:180.000000px;}
.fs7{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y83{bottom:32.390400px;}
.y48{bottom:43.176000px;}
.y47{bottom:58.176000px;}
.y46{bottom:88.176000px;}
.y45{bottom:103.176000px;}
.ycf{bottom:105.000000px;}
.yb3{bottom:105.001500px;}
.y82{bottom:113.898750px;}
.y100{bottom:117.000000px;}
.yab{bottom:119.305500px;}
.yb2{bottom:119.401500px;}
.yce{bottom:121.200000px;}
.y81{bottom:131.898000px;}
.y44{bottom:133.176000px;}
.yaa{bottom:133.705500px;}
.yb1{bottom:133.801500px;}
.ycd{bottom:137.400000px;}
.y11d{bottom:137.988000px;}
.y99{bottom:138.000000px;}
.ya9{bottom:148.105500px;}
.y43{bottom:148.176000px;}
.yb0{bottom:148.201500px;}
.y80{bottom:153.498000px;}
.yed{bottom:153.600000px;}
.y10f{bottom:158.964000px;}
.yd6{bottom:158.976000px;}
.y11c{bottom:158.994000px;}
.yf4{bottom:159.000000px;}
.ya8{bottom:162.505500px;}
.yaf{bottom:162.601500px;}
.yec{bottom:169.800000px;}
.y7f{bottom:175.098000px;}
.y69{bottom:176.400000px;}
.ya7{bottom:176.905500px;}
.yae{bottom:177.001500px;}
.y42{bottom:178.176000px;}
.y10e{bottom:179.970000px;}
.yd5{bottom:179.982000px;}
.y98{bottom:180.000000px;}
.yeb{bottom:186.000000px;}
.y68{bottom:191.400000px;}
.yad{bottom:191.401500px;}
.y41{bottom:193.176000px;}
.y7e{bottom:196.698000px;}
.y10d{bottom:200.976000px;}
.yd4{bottom:200.988000px;}
.y97{bottom:201.000000px;}
.yea{bottom:202.200000px;}
.ya6{bottom:205.705500px;}
.y67{bottom:206.400000px;}
.yac{bottom:220.201500px;}
.y10c{bottom:221.982000px;}
.yd3{bottom:221.994000px;}
.y96{bottom:222.000000px;}
.y40{bottom:223.176000px;}
.y7d{bottom:236.299500px;}
.y3f{bottom:238.176000px;}
.yff{bottom:242.976000px;}
.y10b{bottom:242.988000px;}
.y95{bottom:243.000000px;}
.y3e{bottom:253.176000px;}
.y7c{bottom:254.299500px;}
.yfe{bottom:263.982000px;}
.y10a{bottom:263.994000px;}
.y94{bottom:264.000000px;}
.y3d{bottom:268.176000px;}
.y7b{bottom:275.899500px;}
.y3c{bottom:283.176000px;}
.y109{bottom:284.964000px;}
.yfd{bottom:284.988000px;}
.y93{bottom:285.000000px;}
.y7a{bottom:297.499500px;}
.y3b{bottom:298.176000px;}
.y108{bottom:305.970000px;}
.yfc{bottom:305.994000px;}
.y92{bottom:306.000000px;}
.y66{bottom:311.400000px;}
.y3a{bottom:313.176000px;}
.y65{bottom:326.400000px;}
.y107{bottom:326.976000px;}
.y91{bottom:327.000000px;}
.y39{bottom:328.176000px;}
.y79{bottom:340.699500px;}
.y64{bottom:341.400000px;}
.y38{bottom:343.176000px;}
.y11b{bottom:347.964000px;}
.y106{bottom:347.982000px;}
.y90{bottom:348.000000px;}
.y63{bottom:356.400000px;}
.y37{bottom:358.176000px;}
.y78{bottom:358.698000px;}
.y11a{bottom:368.970000px;}
.y105{bottom:368.988000px;}
.ycc{bottom:369.000000px;}
.y62{bottom:371.400000px;}
.yf3{bottom:372.003000px;}
.y36{bottom:373.176000px;}
.y8f{bottom:378.414000px;}
.y77{bottom:380.298000px;}
.y61{bottom:386.400000px;}
.y35{bottom:388.176000px;}
.y119{bottom:389.976000px;}
.y104{bottom:389.994000px;}
.ycb{bottom:390.000000px;}
.y60{bottom:401.400000px;}
.y76{bottom:401.898000px;}
.yf2{bottom:402.000000px;}
.y34{bottom:403.176000px;}
.y118{bottom:410.982000px;}
.yca{bottom:411.000000px;}
.y5f{bottom:416.400000px;}
.y75{bottom:423.498000px;}
.y5e{bottom:431.400000px;}
.y117{bottom:431.988000px;}
.yc9{bottom:432.000000px;}
.y33{bottom:433.176000px;}
.ydc{bottom:441.303000px;}
.y5d{bottom:446.400000px;}
.y32{bottom:448.176000px;}
.y116{bottom:452.994000px;}
.yc8{bottom:453.000000px;}
.y111{bottom:456.003000px;}
.y5c{bottom:461.400000px;}
.y31{bottom:463.176000px;}
.y125{bottom:465.000000px;}
.y74{bottom:466.699500px;}
.ydb{bottom:471.300000px;}
.yc7{bottom:474.000000px;}
.y5b{bottom:476.400000px;}
.y30{bottom:478.176000px;}
.y73{bottom:484.698000px;}
.y110{bottom:486.000000px;}
.y5a{bottom:491.400000px;}
.y2f{bottom:493.176000px;}
.yc6{bottom:495.000000px;}
.y72{bottom:506.298000px;}
.y59{bottom:506.400000px;}
.y2e{bottom:508.176000px;}
.yc5{bottom:516.000000px;}
.y58{bottom:521.400000px;}
.y2d{bottom:523.176000px;}
.y71{bottom:527.898000px;}
.y57{bottom:536.400000px;}
.yc4{bottom:537.000000px;}
.y2c{bottom:538.176000px;}
.y70{bottom:549.498000px;}
.y56{bottom:551.400000px;}
.y2b{bottom:553.176000px;}
.yc3{bottom:558.000000px;}
.y55{bottom:566.400000px;}
.y2a{bottom:568.176000px;}
.yc2{bottom:579.000000px;}
.y54{bottom:581.400000px;}
.y29{bottom:583.176000px;}
.y6f{bottom:592.698000px;}
.y53{bottom:596.400000px;}
.y28{bottom:598.176000px;}
.yfb{bottom:599.982000px;}
.yc1{bottom:600.000000px;}
.yb{bottom:607.062000px;}
.y6e{bottom:610.698000px;}
.y52{bottom:611.400000px;}
.y27{bottom:613.176000px;}
.yf1{bottom:620.976000px;}
.yfa{bottom:620.988000px;}
.yc0{bottom:621.000000px;}
.y51{bottom:626.400000px;}
.y26{bottom:628.176000px;}
.y6d{bottom:628.698000px;}
.y50{bottom:641.400000px;}
.yf0{bottom:641.982000px;}
.yf9{bottom:641.994000px;}
.ybf{bottom:642.000000px;}
.y25{bottom:643.176000px;}
.y6c{bottom:650.298000px;}
.y4f{bottom:656.400000px;}
.y24{bottom:658.176000px;}
.ya{bottom:662.100780px;}
.yef{bottom:662.988000px;}
.ybe{bottom:663.000000px;}
.y8a{bottom:663.447000px;}
.y4e{bottom:671.400000px;}
.y6b{bottom:671.898000px;}
.y23{bottom:673.176000px;}
.yda{bottom:683.976000px;}
.yee{bottom:683.994000px;}
.ybd{bottom:684.000000px;}
.yd2{bottom:685.753500px;}
.y4d{bottom:686.400000px;}
.y22{bottom:688.176000px;}
.y8e{bottom:689.011500px;}
.y4c{bottom:701.400000px;}
.y21{bottom:703.176000px;}
.yd9{bottom:704.982000px;}
.ybc{bottom:705.000000px;}
.yd1{bottom:715.750500px;}
.y4b{bottom:716.400000px;}
.y8d{bottom:717.702000px;}
.y20{bottom:718.176000px;}
.ye9{bottom:725.922000px;}
.yd8{bottom:725.988000px;}
.ybb{bottom:726.000000px;}
.y4a{bottom:731.400000px;}
.y9{bottom:732.577260px;}
.y1f{bottom:733.176000px;}
.ya5{bottom:736.924500px;}
.y8c{bottom:744.702000px;}
.yd0{bottom:745.747500px;}
.y49{bottom:746.400000px;}
.ye8{bottom:746.928000px;}
.yd7{bottom:746.994000px;}
.yba{bottom:747.000000px;}
.y1e{bottom:748.176000px;}
.y8{bottom:767.815500px;}
.ye7{bottom:767.934000px;}
.yb9{bottom:768.000000px;}
.y6a{bottom:768.982500px;}
.y8b{bottom:771.702000px;}
.y1d{bottom:778.176000px;}
.ye6{bottom:788.940000px;}
.y115{bottom:788.976000px;}
.yb8{bottom:789.000000px;}
.y1c{bottom:793.176000px;}
.y7{bottom:803.053500px;}
.y1b{bottom:808.176000px;}
.ye5{bottom:809.946000px;}
.y114{bottom:809.982000px;}
.yb7{bottom:810.000000px;}
.y89{bottom:810.765000px;}
.y1a{bottom:823.176000px;}
.ye4{bottom:830.952000px;}
.y113{bottom:830.988000px;}
.yb6{bottom:831.000000px;}
.ye3{bottom:851.958000px;}
.y112{bottom:851.994000px;}
.ya4{bottom:852.000000px;}
.y19{bottom:853.176000px;}
.y6{bottom:857.053500px;}
.y88{bottom:861.750000px;}
.y18{bottom:868.176000px;}
.ye2{bottom:872.964000px;}
.y103{bottom:872.982000px;}
.yb5{bottom:873.000000px;}
.y17{bottom:883.176000px;}
.ye1{bottom:893.970000px;}
.y102{bottom:893.988000px;}
.ya3{bottom:894.000000px;}
.y16{bottom:898.176000px;}
.y87{bottom:912.735000px;}
.y15{bottom:913.176000px;}
.ye0{bottom:914.976000px;}
.y101{bottom:914.994000px;}
.ya2{bottom:915.000000px;}
.yf8{bottom:935.976000px;}
.ydf{bottom:935.982000px;}
.ya1{bottom:936.000000px;}
.y14{bottom:943.176000px;}
.y124{bottom:948.000000px;}
.y123{bottom:956.964000px;}
.yf7{bottom:956.982000px;}
.yde{bottom:956.988000px;}
.ya0{bottom:957.000000px;}
.y13{bottom:958.176000px;}
.y86{bottom:963.720000px;}
.y12{bottom:973.176000px;}
.y122{bottom:977.970000px;}
.yf6{bottom:977.988000px;}
.ydd{bottom:977.994000px;}
.y9f{bottom:978.000000px;}
.y11{bottom:988.176000px;}
.y121{bottom:998.976000px;}
.yf5{bottom:998.994000px;}
.y9e{bottom:999.000000px;}
.y10{bottom:1003.176000px;}
.y85{bottom:1014.705000px;}
.yf{bottom:1018.176000px;}
.y120{bottom:1019.982000px;}
.y9d{bottom:1020.000000px;}
.ye{bottom:1033.176000px;}
.y11f{bottom:1040.988000px;}
.y9c{bottom:1041.000000px;}
.y11e{bottom:1061.994000px;}
.y9b{bottom:1062.000000px;}
.y84{bottom:1065.690000px;}
.yd{bottom:1066.176000px;}
.yb4{bottom:1080.414000px;}
.y9a{bottom:1083.000000px;}
.yc{bottom:1087.776000px;}
.y5{bottom:1151.365500px;}
.y1{bottom:1154.170500px;}
.y4{bottom:1163.965500px;}
.y126{bottom:1169.143500px;}
.y3{bottom:1176.565500px;}
.y2{bottom:1189.165500px;}
.hd{height:25.740000px;}
.h2{height:31.668000px;}
.hf{height:34.992000px;}
.h7{height:36.192000px;}
.h19{height:37.520508px;}
.h17{height:40.842773px;}
.h1a{height:41.689453px;}
.h13{height:45.351562px;}
.h11{height:45.380859px;}
.ha{height:45.660000px;}
.h18{height:46.437041px;}
.h5{height:48.774000px;}
.h16{height:49.253906px;}
.h15{height:52.971680px;}
.h14{height:52.998047px;}
.h6{height:54.288000px;}
.h1c{height:54.310957px;}
.h12{height:54.726562px;}
.h1b{height:58.857422px;}
.h9{height:67.078125px;}
.he{height:72.384000px;}
.h10{height:81.432000px;}
.h4{height:86.803531px;}
.h1{height:108.576000px;}
.h3{height:133.020000px;}
.hb{height:135.720000px;}
.hc{height:138.764760px;}
.h8{height:201.234375px;}
.h0{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:29.338500px;}
.x25{left:82.311900px;}
.x16{left:92.367000px;}
.x14{left:93.999000px;}
.xf{left:96.987000px;}
.xb{left:98.127000px;}
.x1c{left:102.315000px;}
.x18{left:104.811000px;}
.x11{left:106.827000px;}
.x12{left:110.355000px;}
.xc{left:112.107000px;}
.x17{left:114.063000px;}
.x21{left:118.275000px;}
.xe{left:121.335000px;}
.x9{left:124.587000px;}
.x10{left:126.831000px;}
.x13{left:127.959000px;}
.x15{left:129.219000px;}
.x19{left:130.995000px;}
.xd{left:136.371000px;}
.x1f{left:152.607000px;}
.x1a{left:157.707000px;}
.x1b{left:158.895000px;}
.x1d{left:161.247000px;}
.x6{left:171.070500px;}
.x1e{left:173.283000px;}
.xa{left:177.843000px;}
.x20{left:186.987000px;}
.x22{left:225.519000px;}
.x24{left:246.780000px;}
.x28{left:248.019000px;}
.x7{left:299.055000px;}
.x8{left:308.019000px;}
.x4{left:453.589500px;}
.x27{left:455.457000px;}
.x26{left:462.957000px;}
.x23{left:500.035500px;}
.x2{left:538.398000px;}
.x29{left:560.554500px;}
.x3{left:577.017000px;}
.x5{left:670.992000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:53.013333pt;}
.ls6{letter-spacing:-3.840000pt;}
.ls9{letter-spacing:-2.560000pt;}
.lsb{letter-spacing:-1.920000pt;}
.ls4{letter-spacing:-1.280000pt;}
.ls3{letter-spacing:-0.853333pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.533333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.003253pt;}
.ls2{letter-spacing:0.426667pt;}
.lsa{letter-spacing:7.189333pt;}
.ls1{letter-spacing:21.333333pt;}
.ws0{word-spacing:-24.000000pt;}
.ws7e{word-spacing:-18.560000pt;}
.ws83{word-spacing:-17.920000pt;}
.ws5{word-spacing:-17.792000pt;}
.ws76{word-spacing:-17.280000pt;}
.ws7{word-spacing:-14.400000pt;}
.ws44{word-spacing:-13.333333pt;}
.ws6{word-spacing:-13.226667pt;}
.ws21{word-spacing:-12.853333pt;}
.ws18{word-spacing:-7.493493pt;}
.wse{word-spacing:-7.306667pt;}
.wsf{word-spacing:-6.933333pt;}
.ws11{word-spacing:-6.784000pt;}
.ws2{word-spacing:-6.400000pt;}
.ws3{word-spacing:-5.546667pt;}
.ws79{word-spacing:-3.093333pt;}
.ws5f{word-spacing:-2.560000pt;}
.ws7a{word-spacing:-2.453333pt;}
.ws75{word-spacing:-2.400000pt;}
.ws47{word-spacing:-2.346667pt;}
.ws43{word-spacing:-2.240000pt;}
.ws26{word-spacing:-1.973333pt;}
.ws78{word-spacing:-1.920000pt;}
.ws70{word-spacing:-1.653333pt;}
.ws5d{word-spacing:-1.546667pt;}
.ws35{word-spacing:-1.493333pt;}
.ws51{word-spacing:-1.440000pt;}
.wsa{word-spacing:-1.386667pt;}
.ws2a{word-spacing:-1.333333pt;}
.ws48{word-spacing:-1.226667pt;}
.ws14{word-spacing:-1.173333pt;}
.ws4f{word-spacing:-1.120000pt;}
.ws41{word-spacing:-1.013333pt;}
.ws1f{word-spacing:-0.912000pt;}
.ws7f{word-spacing:-0.906667pt;}
.ws4d{word-spacing:-0.853333pt;}
.ws5e{word-spacing:-0.746667pt;}
.ws1b{word-spacing:-0.640000pt;}
.ws72{word-spacing:-0.586667pt;}
.ws23{word-spacing:-0.533333pt;}
.ws5b{word-spacing:-0.480000pt;}
.ws4{word-spacing:-0.426667pt;}
.ws3a{word-spacing:-0.288000pt;}
.ws34{word-spacing:-0.160000pt;}
.ws2e{word-spacing:-0.144000pt;}
.ws74{word-spacing:-0.106667pt;}
.ws10{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:0.053333pt;}
.ws5c{word-spacing:0.106667pt;}
.ws16{word-spacing:0.160000pt;}
.ws45{word-spacing:0.266667pt;}
.ws53{word-spacing:0.480000pt;}
.ws4c{word-spacing:0.533333pt;}
.ws3b{word-spacing:0.640000pt;}
.ws67{word-spacing:0.746667pt;}
.ws4a{word-spacing:0.800000pt;}
.ws3d{word-spacing:1.013333pt;}
.ws2b{word-spacing:1.066667pt;}
.ws69{word-spacing:1.104000pt;}
.wsb{word-spacing:1.120000pt;}
.ws58{word-spacing:1.173333pt;}
.ws20{word-spacing:1.200000pt;}
.ws59{word-spacing:1.226667pt;}
.ws8{word-spacing:1.280000pt;}
.ws27{word-spacing:1.333333pt;}
.ws42{word-spacing:1.344000pt;}
.ws17{word-spacing:1.440000pt;}
.ws25{word-spacing:1.546667pt;}
.ws82{word-spacing:1.653333pt;}
.ws50{word-spacing:1.706667pt;}
.ws6c{word-spacing:1.760000pt;}
.ws6a{word-spacing:1.824000pt;}
.ws33{word-spacing:1.866667pt;}
.ws31{word-spacing:1.920000pt;}
.ws62{word-spacing:1.973333pt;}
.ws3c{word-spacing:2.080000pt;}
.ws19{word-spacing:2.346667pt;}
.ws15{word-spacing:2.560000pt;}
.ws57{word-spacing:2.613333pt;}
.ws1e{word-spacing:2.720000pt;}
.ws28{word-spacing:2.773333pt;}
.ws36{word-spacing:2.826667pt;}
.ws6b{word-spacing:2.832000pt;}
.ws60{word-spacing:3.093333pt;}
.ws77{word-spacing:3.306667pt;}
.ws46{word-spacing:3.360000pt;}
.ws22{word-spacing:3.466667pt;}
.ws52{word-spacing:3.786667pt;}
.ws12{word-spacing:3.840000pt;}
.ws68{word-spacing:3.888000pt;}
.ws2c{word-spacing:3.893333pt;}
.ws6d{word-spacing:3.936000pt;}
.ws5a{word-spacing:3.946667pt;}
.ws2f{word-spacing:4.000000pt;}
.ws3e{word-spacing:4.053333pt;}
.ws1a{word-spacing:4.106667pt;}
.wsd{word-spacing:4.160000pt;}
.ws56{word-spacing:4.224000pt;}
.ws7d{word-spacing:4.320000pt;}
.ws13{word-spacing:4.373333pt;}
.ws29{word-spacing:4.426667pt;}
.ws80{word-spacing:4.586667pt;}
.ws32{word-spacing:4.853333pt;}
.ws4e{word-spacing:4.906667pt;}
.ws7b{word-spacing:5.013333pt;}
.ws71{word-spacing:5.173333pt;}
.wsc{word-spacing:5.226667pt;}
.ws2d{word-spacing:5.333333pt;}
.ws38{word-spacing:5.376000pt;}
.ws1c{word-spacing:5.493333pt;}
.ws65{word-spacing:5.760000pt;}
.ws55{word-spacing:5.813333pt;}
.ws61{word-spacing:5.973333pt;}
.ws49{word-spacing:6.144000pt;}
.ws40{word-spacing:6.293333pt;}
.ws30{word-spacing:6.400000pt;}
.ws24{word-spacing:6.453333pt;}
.ws66{word-spacing:6.560000pt;}
.ws64{word-spacing:6.624000pt;}
.ws37{word-spacing:6.816000pt;}
.ws6f{word-spacing:6.880000pt;}
.ws4b{word-spacing:6.986667pt;}
.ws39{word-spacing:7.008000pt;}
.ws3f{word-spacing:7.040000pt;}
.ws63{word-spacing:7.104000pt;}
.ws6e{word-spacing:7.146667pt;}
.ws81{word-spacing:7.253333pt;}
.ws1d{word-spacing:7.413333pt;}
.ws73{word-spacing:7.466667pt;}
.ws54{word-spacing:8.213333pt;}
.ws7c{word-spacing:8.373333pt;}
._3{margin-left:-38.272000pt;}
._2{margin-left:-11.205333pt;}
._5{margin-left:-5.337600pt;}
._7{margin-left:-4.160000pt;}
._1{margin-left:-3.165867pt;}
._6{margin-left:-2.027733pt;}
._0{margin-left:-1.123733pt;}
._4{width:0.906133pt;}
._d{width:2.069333pt;}
._8{width:3.690667pt;}
._b{width:4.640533pt;}
._9{width:5.680000pt;}
._c{width:6.848000pt;}
._a{width:7.941333pt;}
._10{width:9.232000pt;}
._e{width:10.387200pt;}
._f{width:14.202667pt;}
.fsd{font-size:31.093333pt;}
.fsa{font-size:32.000000pt;}
.fs1{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fse{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fsb{font-size:85.333333pt;}
.fs9{font-size:93.280000pt;}
.fsc{font-size:96.000000pt;}
.fs3{font-size:104.409600pt;}
.fs0{font-size:128.000000pt;}
.fs2{font-size:160.000000pt;}
.fs7{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:28.791467pt;}
.y48{bottom:38.378667pt;}
.y47{bottom:51.712000pt;}
.y46{bottom:78.378667pt;}
.y45{bottom:91.712000pt;}
.ycf{bottom:93.333333pt;}
.yb3{bottom:93.334667pt;}
.y82{bottom:101.243333pt;}
.y100{bottom:104.000000pt;}
.yab{bottom:106.049333pt;}
.yb2{bottom:106.134667pt;}
.yce{bottom:107.733333pt;}
.y81{bottom:117.242667pt;}
.y44{bottom:118.378667pt;}
.yaa{bottom:118.849333pt;}
.yb1{bottom:118.934667pt;}
.ycd{bottom:122.133333pt;}
.y11d{bottom:122.656000pt;}
.y99{bottom:122.666667pt;}
.ya9{bottom:131.649333pt;}
.y43{bottom:131.712000pt;}
.yb0{bottom:131.734667pt;}
.y80{bottom:136.442667pt;}
.yed{bottom:136.533333pt;}
.y10f{bottom:141.301333pt;}
.yd6{bottom:141.312000pt;}
.y11c{bottom:141.328000pt;}
.yf4{bottom:141.333333pt;}
.ya8{bottom:144.449333pt;}
.yaf{bottom:144.534667pt;}
.yec{bottom:150.933333pt;}
.y7f{bottom:155.642667pt;}
.y69{bottom:156.800000pt;}
.ya7{bottom:157.249333pt;}
.yae{bottom:157.334667pt;}
.y42{bottom:158.378667pt;}
.y10e{bottom:159.973333pt;}
.yd5{bottom:159.984000pt;}
.y98{bottom:160.000000pt;}
.yeb{bottom:165.333333pt;}
.y68{bottom:170.133333pt;}
.yad{bottom:170.134667pt;}
.y41{bottom:171.712000pt;}
.y7e{bottom:174.842667pt;}
.y10d{bottom:178.645333pt;}
.yd4{bottom:178.656000pt;}
.y97{bottom:178.666667pt;}
.yea{bottom:179.733333pt;}
.ya6{bottom:182.849333pt;}
.y67{bottom:183.466667pt;}
.yac{bottom:195.734667pt;}
.y10c{bottom:197.317333pt;}
.yd3{bottom:197.328000pt;}
.y96{bottom:197.333333pt;}
.y40{bottom:198.378667pt;}
.y7d{bottom:210.044000pt;}
.y3f{bottom:211.712000pt;}
.yff{bottom:215.978667pt;}
.y10b{bottom:215.989333pt;}
.y95{bottom:216.000000pt;}
.y3e{bottom:225.045333pt;}
.y7c{bottom:226.044000pt;}
.yfe{bottom:234.650667pt;}
.y10a{bottom:234.661333pt;}
.y94{bottom:234.666667pt;}
.y3d{bottom:238.378667pt;}
.y7b{bottom:245.244000pt;}
.y3c{bottom:251.712000pt;}
.y109{bottom:253.301333pt;}
.yfd{bottom:253.322667pt;}
.y93{bottom:253.333333pt;}
.y7a{bottom:264.444000pt;}
.y3b{bottom:265.045333pt;}
.y108{bottom:271.973333pt;}
.yfc{bottom:271.994667pt;}
.y92{bottom:272.000000pt;}
.y66{bottom:276.800000pt;}
.y3a{bottom:278.378667pt;}
.y65{bottom:290.133333pt;}
.y107{bottom:290.645333pt;}
.y91{bottom:290.666667pt;}
.y39{bottom:291.712000pt;}
.y79{bottom:302.844000pt;}
.y64{bottom:303.466667pt;}
.y38{bottom:305.045333pt;}
.y11b{bottom:309.301333pt;}
.y106{bottom:309.317333pt;}
.y90{bottom:309.333333pt;}
.y63{bottom:316.800000pt;}
.y37{bottom:318.378667pt;}
.y78{bottom:318.842667pt;}
.y11a{bottom:327.973333pt;}
.y105{bottom:327.989333pt;}
.ycc{bottom:328.000000pt;}
.y62{bottom:330.133333pt;}
.yf3{bottom:330.669333pt;}
.y36{bottom:331.712000pt;}
.y8f{bottom:336.368000pt;}
.y77{bottom:338.042667pt;}
.y61{bottom:343.466667pt;}
.y35{bottom:345.045333pt;}
.y119{bottom:346.645333pt;}
.y104{bottom:346.661333pt;}
.ycb{bottom:346.666667pt;}
.y60{bottom:356.800000pt;}
.y76{bottom:357.242667pt;}
.yf2{bottom:357.333333pt;}
.y34{bottom:358.378667pt;}
.y118{bottom:365.317333pt;}
.yca{bottom:365.333333pt;}
.y5f{bottom:370.133333pt;}
.y75{bottom:376.442667pt;}
.y5e{bottom:383.466667pt;}
.y117{bottom:383.989333pt;}
.yc9{bottom:384.000000pt;}
.y33{bottom:385.045333pt;}
.ydc{bottom:392.269333pt;}
.y5d{bottom:396.800000pt;}
.y32{bottom:398.378667pt;}
.y116{bottom:402.661333pt;}
.yc8{bottom:402.666667pt;}
.y111{bottom:405.336000pt;}
.y5c{bottom:410.133333pt;}
.y31{bottom:411.712000pt;}
.y125{bottom:413.333333pt;}
.y74{bottom:414.844000pt;}
.ydb{bottom:418.933333pt;}
.yc7{bottom:421.333333pt;}
.y5b{bottom:423.466667pt;}
.y30{bottom:425.045333pt;}
.y73{bottom:430.842667pt;}
.y110{bottom:432.000000pt;}
.y5a{bottom:436.800000pt;}
.y2f{bottom:438.378667pt;}
.yc6{bottom:440.000000pt;}
.y72{bottom:450.042667pt;}
.y59{bottom:450.133333pt;}
.y2e{bottom:451.712000pt;}
.yc5{bottom:458.666667pt;}
.y58{bottom:463.466667pt;}
.y2d{bottom:465.045333pt;}
.y71{bottom:469.242667pt;}
.y57{bottom:476.800000pt;}
.yc4{bottom:477.333333pt;}
.y2c{bottom:478.378667pt;}
.y70{bottom:488.442667pt;}
.y56{bottom:490.133333pt;}
.y2b{bottom:491.712000pt;}
.yc3{bottom:496.000000pt;}
.y55{bottom:503.466667pt;}
.y2a{bottom:505.045333pt;}
.yc2{bottom:514.666667pt;}
.y54{bottom:516.800000pt;}
.y29{bottom:518.378667pt;}
.y6f{bottom:526.842667pt;}
.y53{bottom:530.133333pt;}
.y28{bottom:531.712000pt;}
.yfb{bottom:533.317333pt;}
.yc1{bottom:533.333333pt;}
.yb{bottom:539.610667pt;}
.y6e{bottom:542.842667pt;}
.y52{bottom:543.466667pt;}
.y27{bottom:545.045333pt;}
.yf1{bottom:551.978667pt;}
.yfa{bottom:551.989333pt;}
.yc0{bottom:552.000000pt;}
.y51{bottom:556.800000pt;}
.y26{bottom:558.378667pt;}
.y6d{bottom:558.842667pt;}
.y50{bottom:570.133333pt;}
.yf0{bottom:570.650667pt;}
.yf9{bottom:570.661333pt;}
.ybf{bottom:570.666667pt;}
.y25{bottom:571.712000pt;}
.y6c{bottom:578.042667pt;}
.y4f{bottom:583.466667pt;}
.y24{bottom:585.045333pt;}
.ya{bottom:588.534027pt;}
.yef{bottom:589.322667pt;}
.ybe{bottom:589.333333pt;}
.y8a{bottom:589.730667pt;}
.y4e{bottom:596.800000pt;}
.y6b{bottom:597.242667pt;}
.y23{bottom:598.378667pt;}
.yda{bottom:607.978667pt;}
.yee{bottom:607.994667pt;}
.ybd{bottom:608.000000pt;}
.yd2{bottom:609.558667pt;}
.y4d{bottom:610.133333pt;}
.y22{bottom:611.712000pt;}
.y8e{bottom:612.454667pt;}
.y4c{bottom:623.466667pt;}
.y21{bottom:625.045333pt;}
.yd9{bottom:626.650667pt;}
.ybc{bottom:626.666667pt;}
.yd1{bottom:636.222667pt;}
.y4b{bottom:636.800000pt;}
.y8d{bottom:637.957333pt;}
.y20{bottom:638.378667pt;}
.ye9{bottom:645.264000pt;}
.yd8{bottom:645.322667pt;}
.ybb{bottom:645.333333pt;}
.y4a{bottom:650.133333pt;}
.y9{bottom:651.179787pt;}
.y1f{bottom:651.712000pt;}
.ya5{bottom:655.044000pt;}
.y8c{bottom:661.957333pt;}
.yd0{bottom:662.886667pt;}
.y49{bottom:663.466667pt;}
.ye8{bottom:663.936000pt;}
.yd7{bottom:663.994667pt;}
.yba{bottom:664.000000pt;}
.y1e{bottom:665.045333pt;}
.y8{bottom:682.502667pt;}
.ye7{bottom:682.608000pt;}
.yb9{bottom:682.666667pt;}
.y6a{bottom:683.540000pt;}
.y8b{bottom:685.957333pt;}
.y1d{bottom:691.712000pt;}
.ye6{bottom:701.280000pt;}
.y115{bottom:701.312000pt;}
.yb8{bottom:701.333333pt;}
.y1c{bottom:705.045333pt;}
.y7{bottom:713.825333pt;}
.y1b{bottom:718.378667pt;}
.ye5{bottom:719.952000pt;}
.y114{bottom:719.984000pt;}
.yb7{bottom:720.000000pt;}
.y89{bottom:720.680000pt;}
.y1a{bottom:731.712000pt;}
.ye4{bottom:738.624000pt;}
.y113{bottom:738.656000pt;}
.yb6{bottom:738.666667pt;}
.ye3{bottom:757.296000pt;}
.y112{bottom:757.328000pt;}
.ya4{bottom:757.333333pt;}
.y19{bottom:758.378667pt;}
.y6{bottom:761.825333pt;}
.y88{bottom:766.000000pt;}
.y18{bottom:771.712000pt;}
.ye2{bottom:775.968000pt;}
.y103{bottom:775.984000pt;}
.yb5{bottom:776.000000pt;}
.y17{bottom:785.045333pt;}
.ye1{bottom:794.640000pt;}
.y102{bottom:794.656000pt;}
.ya3{bottom:794.666667pt;}
.y16{bottom:798.378667pt;}
.y87{bottom:811.320000pt;}
.y15{bottom:811.712000pt;}
.ye0{bottom:813.312000pt;}
.y101{bottom:813.328000pt;}
.ya2{bottom:813.333333pt;}
.yf8{bottom:831.978667pt;}
.ydf{bottom:831.984000pt;}
.ya1{bottom:832.000000pt;}
.y14{bottom:838.378667pt;}
.y124{bottom:842.666667pt;}
.y123{bottom:850.634667pt;}
.yf7{bottom:850.650667pt;}
.yde{bottom:850.656000pt;}
.ya0{bottom:850.666667pt;}
.y13{bottom:851.712000pt;}
.y86{bottom:856.640000pt;}
.y12{bottom:865.045333pt;}
.y122{bottom:869.306667pt;}
.yf6{bottom:869.322667pt;}
.ydd{bottom:869.328000pt;}
.y9f{bottom:869.333333pt;}
.y11{bottom:878.378667pt;}
.y121{bottom:887.978667pt;}
.yf5{bottom:887.994667pt;}
.y9e{bottom:888.000000pt;}
.y10{bottom:891.712000pt;}
.y85{bottom:901.960000pt;}
.yf{bottom:905.045333pt;}
.y120{bottom:906.650667pt;}
.y9d{bottom:906.666667pt;}
.ye{bottom:918.378667pt;}
.y11f{bottom:925.322667pt;}
.y9c{bottom:925.333333pt;}
.y11e{bottom:943.994667pt;}
.y9b{bottom:944.000000pt;}
.y84{bottom:947.280000pt;}
.yd{bottom:947.712000pt;}
.yb4{bottom:960.368000pt;}
.y9a{bottom:962.666667pt;}
.yc{bottom:966.912000pt;}
.y5{bottom:1023.436000pt;}
.y1{bottom:1025.929333pt;}
.y4{bottom:1034.636000pt;}
.y126{bottom:1039.238667pt;}
.y3{bottom:1045.836000pt;}
.y2{bottom:1057.036000pt;}
.hd{height:22.880000pt;}
.h2{height:28.149333pt;}
.hf{height:31.104000pt;}
.h7{height:32.170667pt;}
.h19{height:33.351562pt;}
.h17{height:36.304688pt;}
.h1a{height:37.057292pt;}
.h13{height:40.312500pt;}
.h11{height:40.338542pt;}
.ha{height:40.586667pt;}
.h18{height:41.277370pt;}
.h5{height:43.354667pt;}
.h16{height:43.781250pt;}
.h15{height:47.085938pt;}
.h14{height:47.109375pt;}
.h6{height:48.256000pt;}
.h1c{height:48.276406pt;}
.h12{height:48.645833pt;}
.h1b{height:52.317708pt;}
.h9{height:59.625000pt;}
.he{height:64.341333pt;}
.h10{height:72.384000pt;}
.h4{height:77.158694pt;}
.h1{height:96.512000pt;}
.h3{height:118.240000pt;}
.hb{height:120.640000pt;}
.hc{height:123.346453pt;}
.h8{height:178.875000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:26.078667pt;}
.x25{left:73.166133pt;}
.x16{left:82.104000pt;}
.x14{left:83.554667pt;}
.xf{left:86.210667pt;}
.xb{left:87.224000pt;}
.x1c{left:90.946667pt;}
.x18{left:93.165333pt;}
.x11{left:94.957333pt;}
.x12{left:98.093333pt;}
.xc{left:99.650667pt;}
.x17{left:101.389333pt;}
.x21{left:105.133333pt;}
.xe{left:107.853333pt;}
.x9{left:110.744000pt;}
.x10{left:112.738667pt;}
.x13{left:113.741333pt;}
.x15{left:114.861333pt;}
.x19{left:116.440000pt;}
.xd{left:121.218667pt;}
.x1f{left:135.650667pt;}
.x1a{left:140.184000pt;}
.x1b{left:141.240000pt;}
.x1d{left:143.330667pt;}
.x6{left:152.062667pt;}
.x1e{left:154.029333pt;}
.xa{left:158.082667pt;}
.x20{left:166.210667pt;}
.x22{left:200.461333pt;}
.x24{left:219.360000pt;}
.x28{left:220.461333pt;}
.x7{left:265.826667pt;}
.x8{left:273.794667pt;}
.x4{left:403.190667pt;}
.x27{left:404.850667pt;}
.x26{left:411.517333pt;}
.x23{left:444.476000pt;}
.x2{left:478.576000pt;}
.x29{left:498.270667pt;}
.x3{left:512.904000pt;}
.x5{left:596.437333pt;}
}




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