
    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_c61cc74eef80bcac575eacb3.woff')format("woff");}.ff1{font-family:ff1;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c1a64e688874191452616f4a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3e14958af09aaee5ffc0f0a9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9a91869ab8dbc00fde500c8c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_6a1ab4d04f86410099eaa54d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.030273;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_d43139bb6288da49e055ca95.woff')format("woff");}.ff6{font-family:ff6;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5c25929b096dc4b042abb1e9.woff')format("woff");}.ff7{font-family:ff7;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_92bcd001925eb731c5bd9284.woff')format("woff");}.ff8{font-family:ff8;line-height:1.130371;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_c91be57b39d1c8958e6a6491.woff')format("woff");}.ff9{font-family:ff9;line-height:1.030273;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_2fc9da70c8467c9a3d80abcf.woff')format("woff");}.ffa{font-family:ffa;line-height:1.030273;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_c13281f840b5af32c8e1d7e5.woff')format("woff");}.ffb{font-family:ffb;line-height:0.770020;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_0fbf9c24b3366d43de300aa6.woff')format("woff");}.ffc{font-family:ffc;line-height:0.770020;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_9853aed9a1833794a2aa51dd.woff')format("woff");}.ffd{font-family:ffd;line-height:1.065430;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_2fc0254894c36c910e2d0514.woff')format("woff");}.ffe{font-family:ffe;line-height:1.065430;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_af2639baecf5dcb74d5ddaae.woff')format("woff");}.fff{font-family:fff;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;}
.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;}
.ls20{letter-spacing:-4.056000px;}
.ls18{letter-spacing:-1.620000px;}
.ls38{letter-spacing:-1.482000px;}
.ls2e{letter-spacing:-1.398000px;}
.lsd{letter-spacing:-0.900000px;}
.ls27{letter-spacing:-0.858000px;}
.ls41{letter-spacing:-0.720000px;}
.ls2c{letter-spacing:-0.576000px;}
.ls31{letter-spacing:-0.400200px;}
.lsb{letter-spacing:-0.393000px;}
.lsc{letter-spacing:-0.360000px;}
.ls25{letter-spacing:-0.348600px;}
.ls1b{letter-spacing:-0.307800px;}
.ls26{letter-spacing:-0.306000px;}
.ls2f{letter-spacing:-0.295200px;}
.ls40{letter-spacing:-0.294000px;}
.ls12{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.252000px;}
.ls8{letter-spacing:-0.216000px;}
.ls37{letter-spacing:-0.212400px;}
.ls42{letter-spacing:-0.144000px;}
.ls36{letter-spacing:-0.126000px;}
.lsa{letter-spacing:-0.111600px;}
.ls1c{letter-spacing:-0.109200px;}
.ls19{letter-spacing:-0.072000px;}
.ls16{letter-spacing:-0.050400px;}
.lsf{letter-spacing:-0.036000px;}
.ls43{letter-spacing:-0.011400px;}
.ls2d{letter-spacing:-0.006480px;}
.ls22{letter-spacing:-0.000720px;}
.ls0{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.005040px;}
.ls24{letter-spacing:0.010800px;}
.ls1a{letter-spacing:0.036000px;}
.ls29{letter-spacing:0.038880px;}
.ls15{letter-spacing:0.059040px;}
.ls13{letter-spacing:0.072000px;}
.ls39{letter-spacing:0.074400px;}
.ls33{letter-spacing:0.108000px;}
.ls3d{letter-spacing:0.142800px;}
.ls4{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.216000px;}
.ls3f{letter-spacing:0.229680px;}
.ls3c{letter-spacing:0.243936px;}
.ls32{letter-spacing:0.252000px;}
.ls3e{letter-spacing:0.255456px;}
.ls1{letter-spacing:0.283200px;}
.ls28{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.288600px;}
.ls3a{letter-spacing:0.294600px;}
.ls17{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.376128px;}
.ls23{letter-spacing:0.401760px;}
.ls6{letter-spacing:0.432600px;}
.ls3b{letter-spacing:16.416000px;}
.ls35{letter-spacing:49.233600px;}
.ls34{letter-spacing:49.284000px;}
.ls1d{letter-spacing:93.276000px;}
.lse{letter-spacing:97.560000px;}
.ls2b{letter-spacing:99.525600px;}
.ls2a{letter-spacing:99.576000px;}
.ls1e{letter-spacing:119.865600px;}
.ls1f{letter-spacing:119.916000px;}
.ls3{letter-spacing:119.985600px;}
.ls2{letter-spacing:120.036000px;}
.ls30{letter-spacing:124.344000px;}
.ls14{letter-spacing:128.952000px;}
.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;}
}
.ws48{word-spacing:-120.240000px;}
.ws47{word-spacing:-102.240000px;}
.ws54{word-spacing:-43.446240px;}
.ws1a{word-spacing:-39.437280px;}
.ws1b{word-spacing:-39.327840px;}
.ws5c{word-spacing:-38.208360px;}
.ws5b{word-spacing:-38.020704px;}
.ws4{word-spacing:-37.913760px;}
.ws59{word-spacing:-37.701360px;}
.ws5a{word-spacing:-36.431760px;}
.ws3{word-spacing:-27.206784px;}
.ws0{word-spacing:-27.174240px;}
.ws53{word-spacing:-26.879040px;}
.ws42{word-spacing:-26.452800px;}
.ws52{word-spacing:-25.776240px;}
.ws44{word-spacing:-25.027200px;}
.ws16{word-spacing:-24.588000px;}
.ws58{word-spacing:-24.552000px;}
.ws57{word-spacing:-24.516000px;}
.ws32{word-spacing:-24.440544px;}
.ws5{word-spacing:-24.408000px;}
.ws18{word-spacing:-24.372000px;}
.ws43{word-spacing:-23.760000px;}
.ws1c{word-spacing:-23.508000px;}
.ws3f{word-spacing:-23.118240px;}
.ws46{word-spacing:-22.492800px;}
.ws4a{word-spacing:-21.674304px;}
.ws1{word-spacing:-21.641760px;}
.ws45{word-spacing:-21.067200px;}
.ws50{word-spacing:-19.038240px;}
.ws4b{word-spacing:-18.732240px;}
.ws4c{word-spacing:-18.180240px;}
.ws68{word-spacing:-16.560000px;}
.ws51{word-spacing:-16.488000px;}
.ws6f{word-spacing:-16.447344px;}
.ws4f{word-spacing:-16.344000px;}
.ws6e{word-spacing:-16.304544px;}
.ws82{word-spacing:-16.293144px;}
.ws4d{word-spacing:-16.272000px;}
.ws6d{word-spacing:-16.010544px;}
.ws4e{word-spacing:-15.696000px;}
.ws56{word-spacing:-1.116000px;}
.ws67{word-spacing:-0.852000px;}
.ws7d{word-spacing:-0.792000px;}
.ws40{word-spacing:-0.781200px;}
.ws49{word-spacing:-0.147600px;}
.ws24{word-spacing:-0.072000px;}
.ws41{word-spacing:-0.059760px;}
.ws2{word-spacing:0.000000px;}
.ws17{word-spacing:0.036000px;}
.ws3d{word-spacing:0.072000px;}
.ws15{word-spacing:0.216000px;}
.ws3e{word-spacing:0.864000px;}
.ws25{word-spacing:0.984000px;}
.ws19{word-spacing:1.044000px;}
.ws55{word-spacing:1.092000px;}
.ws78{word-spacing:1.152000px;}
.ws23{word-spacing:1.440000px;}
.ws77{word-spacing:1.560000px;}
.ws7c{word-spacing:1.656000px;}
.ws76{word-spacing:1.728000px;}
.ws79{word-spacing:1.800000px;}
.ws7b{word-spacing:1.944000px;}
.ws7a{word-spacing:3.528000px;}
.ws5e{word-spacing:3.792000px;}
.ws5d{word-spacing:4.104000px;}
.ws60{word-spacing:4.176000px;}
.wsc{word-spacing:4.680000px;}
.ws10{word-spacing:4.716000px;}
.ws5f{word-spacing:4.824000px;}
.ws61{word-spacing:5.040000px;}
.wse{word-spacing:5.220000px;}
.wsb{word-spacing:5.256000px;}
.ws34{word-spacing:5.340000px;}
.ws33{word-spacing:5.472000px;}
.ws37{word-spacing:5.796000px;}
.ws35{word-spacing:5.832000px;}
.ws36{word-spacing:5.868000px;}
.wsd{word-spacing:6.084000px;}
.wsf{word-spacing:6.876000px;}
.ws75{word-spacing:7.704000px;}
.ws20{word-spacing:7.920000px;}
.ws1f{word-spacing:8.496000px;}
.ws1e{word-spacing:8.520000px;}
.ws1d{word-spacing:8.568000px;}
.ws21{word-spacing:8.904000px;}
.ws28{word-spacing:9.144000px;}
.ws2b{word-spacing:9.540000px;}
.ws2a{word-spacing:9.804000px;}
.ws26{word-spacing:10.212000px;}
.ws27{word-spacing:10.620000px;}
.ws71{word-spacing:10.704000px;}
.ws2c{word-spacing:11.085552px;}
.ws70{word-spacing:11.088000px;}
.ws2e{word-spacing:11.303424px;}
.ws30{word-spacing:11.376864px;}
.ws65{word-spacing:11.592000px;}
.ws31{word-spacing:11.669232px;}
.ws2f{word-spacing:11.669424px;}
.ws63{word-spacing:11.892000px;}
.ws62{word-spacing:12.024000px;}
.ws2d{word-spacing:12.136968px;}
.ws66{word-spacing:12.240000px;}
.ws64{word-spacing:12.360000px;}
.ws29{word-spacing:12.708000px;}
.ws3c{word-spacing:12.744000px;}
.ws3a{word-spacing:12.780000px;}
.ws38{word-spacing:13.032000px;}
.ws3b{word-spacing:13.104000px;}
.ws39{word-spacing:13.500000px;}
.ws74{word-spacing:15.672000px;}
.ws72{word-spacing:16.416000px;}
.ws73{word-spacing:16.776000px;}
.ws22{word-spacing:24.948000px;}
.ws80{word-spacing:26.856000px;}
.ws6c{word-spacing:26.964000px;}
.ws6a{word-spacing:27.120000px;}
.ws6b{word-spacing:27.144000px;}
.ws69{word-spacing:27.360000px;}
.ws81{word-spacing:27.900000px;}
.ws7e{word-spacing:28.008000px;}
.ws7f{word-spacing:28.080000px;}
.ws11{word-spacing:32.292000px;}
.ws13{word-spacing:32.580000px;}
.ws14{word-spacing:32.616000px;}
.ws12{word-spacing:33.492000px;}
.ws6{word-spacing:41.967072px;}
.ws7{word-spacing:42.215760px;}
.ws9{word-spacing:42.637824px;}
.ws8{word-spacing:42.878448px;}
.wsa{word-spacing:43.501032px;}
._1f{margin-left:-3434.428560px;}
._1d{margin-left:-17.235456px;}
._20{margin-left:-13.453824px;}
._6{margin-left:-11.838240px;}
._8{margin-left:-9.585360px;}
._f{margin-left:-8.100000px;}
._12{margin-left:-6.798720px;}
._5{margin-left:-5.380128px;}
._4{margin-left:-4.363200px;}
._1{margin-left:-3.187440px;}
._0{margin-left:-1.910160px;}
._2{width:1.816320px;}
._3{width:3.701520px;}
._e{width:7.951200px;}
._14{width:20.215824px;}
._13{width:21.728640px;}
._7{width:25.996176px;}
._1b{width:27.468480px;}
._1c{width:29.174880px;}
._11{width:30.361920px;}
._19{width:31.454160px;}
._22{width:33.275232px;}
._15{width:34.535568px;}
._18{width:36.766752px;}
._1a{width:38.654160px;}
._10{width:39.858960px;}
._16{width:45.111360px;}
._17{width:46.656000px;}
._9{width:50.832000px;}
._d{width:58.308720px;}
._c{width:67.525680px;}
._1e{width:71.206560px;}
._b{width:74.418000px;}
._a{width:75.581280px;}
._21{width:388.553760px;}
.fc6{color:rgb(68,114,196);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,160,227);}
.fc2{color:rgb(36,40,82);}
.fc7{color:rgb(66,66,66);}
.fc5{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,44,51);}
.fs6{font-size:59.760000px;}
.fsa{font-size:72.000000px;}
.fs14{font-size:72.144000px;}
.fsc{font-size:84.240000px;}
.fs12{font-size:84.384000px;}
.fs2{font-size:95.760000px;}
.fs11{font-size:95.904000px;}
.fs10{font-size:102.240000px;}
.fs13{font-size:102.384000px;}
.fs5{font-size:108.000000px;}
.fsb{font-size:108.144000px;}
.fsf{font-size:113.760000px;}
.fs0{font-size:120.240000px;}
.fs4{font-size:120.384000px;}
.fs9{font-size:144.000000px;}
.fsd{font-size:144.144000px;}
.fs1{font-size:167.760000px;}
.fs8{font-size:167.904000px;}
.fse{font-size:174.240000px;}
.fs7{font-size:192.240000px;}
.fs3{font-size:192.384000px;}
.y0{bottom:0.000000px;}
.y73{bottom:8.136000px;}
.y25{bottom:11.196000px;}
.ya5{bottom:18.324000px;}
.y57{bottom:19.656000px;}
.y8d{bottom:22.896000px;}
.y9b{bottom:38.232000px;}
.ya{bottom:39.276000px;}
.y1f{bottom:46.800000px;}
.ya4{bottom:50.724000px;}
.y30{bottom:52.956000px;}
.y8c{bottom:53.496000px;}
.ybe{bottom:60.948000px;}
.y9{bottom:68.076000px;}
.y9a{bottom:70.632000px;}
.ybd{bottom:82.548000px;}
.y8b{bottom:84.096000px;}
.y2f{bottom:85.392000px;}
.y55{bottom:86.544000px;}
.ya6{bottom:92.592000px;}
.y8{bottom:96.912000px;}
.y4c{bottom:98.280000px;}
.y99{bottom:103.032000px;}
.yb1{bottom:103.572000px;}
.ybc{bottom:104.148000px;}
.y15{bottom:108.324000px;}
.y8a{bottom:114.696000px;}
.y72{bottom:116.856000px;}
.y2e{bottom:117.792000px;}
.y54{bottom:122.544000px;}
.y7{bottom:125.712000px;}
.ybb{bottom:125.748000px;}
.ya1{bottom:130.788000px;}
.y4b{bottom:132.840000px;}
.y98{bottom:135.432000px;}
.y34{bottom:141.948000px;}
.y14{bottom:144.324000px;}
.y89{bottom:145.296000px;}
.yba{bottom:147.348000px;}
.y71{bottom:148.356000px;}
.y2d{bottom:150.195000px;}
.y76{bottom:150.510000px;}
.yb0{bottom:158.865000px;}
.ya0{bottom:166.785000px;}
.y53{bottom:167.550000px;}
.y4a{bottom:167.580000px;}
.yb9{bottom:168.945000px;}
.y33{bottom:174.345000px;}
.y88{bottom:175.890000px;}
.y70{bottom:177.150000px;}
.y13{bottom:180.330000px;}
.y2c{bottom:182.595000px;}
.y97{bottom:182.955000px;}
.yb8{bottom:190.545000px;}
.y49{bottom:202.350000px;}
.y52{bottom:203.580000px;}
.y87{bottom:206.535000px;}
.y32{bottom:206.745000px;}
.yaf{bottom:214.125000px;}
.y2b{bottom:214.995000px;}
.y96{bottom:215.385000px;}
.y12{bottom:216.360000px;}
.y6f{bottom:230.865000px;}
.yb7{bottom:233.790000px;}
.y48{bottom:236.910000px;}
.y86{bottom:237.135000px;}
.y6{bottom:238.350000px;}
.y9f{bottom:238.785000px;}
.y31{bottom:239.145000px;}
.y51{bottom:239.580000px;}
.y7c{bottom:240.015000px;}
.y95{bottom:247.785000px;}
.y11{bottom:252.360000px;}
.yb6{bottom:255.390000px;}
.y85{bottom:267.735000px;}
.yae{bottom:269.565000px;}
.y5{bottom:274.350000px;}
.y9e{bottom:274.830000px;}
.y50{bottom:275.580000px;}
.y7e{bottom:277.350000px;}
.y6e{bottom:278.895000px;}
.y94{bottom:280.185000px;}
.y79{bottom:281.625000px;}
.y47{bottom:283.530000px;}
.y10{bottom:288.360000px;}
.ya2{bottom:291.750000px;}
.y84{bottom:298.335000px;}
.yb5{bottom:298.590000px;}
.y78{bottom:306.825000px;}
.y4{bottom:310.350000px;}
.y9d{bottom:310.830000px;}
.y8e{bottom:310.890000px;}
.y4f{bottom:311.580000px;}
.y56{bottom:312.510000px;}
.y7a{bottom:314.460000px;}
.y46{bottom:318.270000px;}
.y7b{bottom:319.350000px;}
.yb4{bottom:320.190000px;}
.y75{bottom:321.555000px;}
.y6d{bottom:322.095000px;}
.yf{bottom:324.360000px;}
.yad{bottom:324.870000px;}
.y93{bottom:327.525000px;}
.y77{bottom:332.025000px;}
.yb3{bottom:341.790000px;}
.y74{bottom:346.785000px;}
.y9c{bottom:346.830000px;}
.y4e{bottom:347.580000px;}
.y1d{bottom:349.740000px;}
.y45{bottom:353.010000px;}
.y7d{bottom:353.445000px;}
.y3a{bottom:359.610000px;}
.y92{bottom:359.970000px;}
.ye{bottom:360.390000px;}
.yac{bottom:365.190000px;}
.y6c{bottom:375.735000px;}
.y5a{bottom:382.290000px;}
.y61{bottom:383.220000px;}
.y3{bottom:391.755000px;}
.y91{bottom:392.370000px;}
.y1c{bottom:396.000000px;}
.yd{bottom:396.390000px;}
.y39{bottom:398.520000px;}
.y44{bottom:405.975000px;}
.y82{bottom:412.050000px;}
.y6b{bottom:413.025000px;}
.y59{bottom:418.290000px;}
.y60{bottom:419.220000px;}
.yab{bottom:420.450000px;}
.y90{bottom:424.770000px;}
.yc{bottom:432.390000px;}
.y81{bottom:437.250000px;}
.y43{bottom:438.375000px;}
.y2{bottom:442.155000px;}
.y1b{bottom:444.090000px;}
.y38{bottom:444.780000px;}
.y6a{bottom:449.025000px;}
.y27{bottom:456.690000px;}
.y42{bottom:470.805000px;}
.y69{bottom:485.025000px;}
.y26{bottom:489.090000px;}
.y37{bottom:492.840000px;}
.y58{bottom:497.730000px;}
.y41{bottom:503.205000px;}
.y1a{bottom:504.390000px;}
.y68{bottom:521.025000px;}
.y1{bottom:525.345000px;}
.y80{bottom:528.300000px;}
.yaa{bottom:538.380000px;}
.y17{bottom:547.125000px;}
.y5f{bottom:547.845000px;}
.y36{bottom:553.170000px;}
.y7f{bottom:553.500000px;}
.y67{bottom:557.070000px;}
.y24{bottom:561.420000px;}
.y19{bottom:564.915000px;}
.y40{bottom:567.645000px;}
.y5c{bottom:569.340000px;}
.y5e{bottom:578.445000px;}
.y66{bottom:593.070000px;}
.y23{bottom:593.820000px;}
.y3f{bottom:600.045000px;}
.y5b{bottom:603.180000px;}
.y5d{bottom:608.685000px;}
.y35{bottom:613.650000px;}
.y22{bottom:626.220000px;}
.y65{bottom:629.070000px;}
.y2a{bottom:630.930000px;}
.y3e{bottom:632.490000px;}
.ya9{bottom:641.310000px;}
.y21{bottom:658.650000px;}
.y29{bottom:663.330000px;}
.y3d{bottom:664.890000px;}
.y64{bottom:665.070000px;}
.y83{bottom:671.250000px;}
.ya8{bottom:673.710000px;}
.y16{bottom:676.620000px;}
.y20{bottom:691.050000px;}
.y18{bottom:695.415000px;}
.y3c{bottom:697.290000px;}
.ybf{bottom:699.510000px;}
.y63{bottom:701.205000px;}
.ya7{bottom:706.110000px;}
.yb{bottom:725.550000px;}
.y4d{bottom:735.765000px;}
.y8f{bottom:736.665000px;}
.yb2{bottom:748.410000px;}
.y28{bottom:750.270000px;}
.y62{bottom:753.090000px;}
.ya3{bottom:755.670000px;}
.y1e{bottom:755.850000px;}
.y3b{bottom:758.520000px;}
.h19{height:44.936719px;}
.h8{height:59.439023px;}
.hd{height:68.554688px;}
.h22{height:71.613281px;}
.h2b{height:71.756508px;}
.h24{height:71.820000px;}
.h29{height:73.722656px;}
.h2a{height:73.870102px;}
.h1a{height:81.078047px;}
.h11{height:83.787539px;}
.h23{height:83.930766px;}
.h25{height:86.255508px;}
.h26{height:86.402953px;}
.h1f{height:86.564531px;}
.h12{height:86.906250px;}
.h17{height:87.022125px;}
.h7{height:91.283203px;}
.h16{height:91.404914px;}
.h1d{height:91.441406px;}
.h4{height:95.245664px;}
.h1e{height:96.318281px;}
.h1{height:96.755625px;}
.h20{height:98.051133px;}
.h21{height:98.198578px;}
.h27{height:101.690859px;}
.h1c{height:101.804766px;}
.h28{height:101.834086px;}
.h10{height:107.419922px;}
.h13{height:107.563148px;}
.he{height:110.583984px;}
.hf{height:110.731430px;}
.h3{height:119.594180px;}
.h6{height:119.737406px;}
.h18{height:123.116836px;}
.h1b{height:142.038984px;}
.hc{height:143.226562px;}
.h14{height:143.369789px;}
.h2{height:166.858945px;}
.ha{height:167.002172px;}
.hb{height:171.773789px;}
.h15{height:173.304141px;}
.h9{height:191.207461px;}
.h5{height:191.350688px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x24{left:10.799979px;}
.x22{left:21.095979px;}
.x12{left:23.327979px;}
.x1e{left:25.235979px;}
.x31{left:26.459979px;}
.x57{left:28.871979px;}
.x23{left:29.987979px;}
.x16{left:31.535979px;}
.x32{left:35.675979px;}
.x4d{left:40.715979px;}
.xb{left:46.871979px;}
.x20{left:48.851979px;}
.xe{left:52.775979px;}
.x10{left:57.959979px;}
.x1f{left:59.075979px;}
.x33{left:62.675979px;}
.x25{left:66.275979px;}
.x26{left:72.935979px;}
.x51{left:87.119979px;}
.x21{left:102.887979px;}
.x11{left:111.959979px;}
.x3b{left:118.655979px;}
.x3c{left:165.089979px;}
.x54{left:172.619979px;}
.x28{left:181.619979px;}
.x53{left:183.419979px;}
.x4f{left:185.939979px;}
.x46{left:192.599979px;}
.x56{left:214.019979px;}
.x47{left:228.599979px;}
.x50{left:242.819979px;}
.x13{left:270.689979px;}
.x55{left:276.299979px;}
.x4a{left:304.169979px;}
.x44{left:314.354979px;}
.x3d{left:339.329979px;}
.x3e{left:342.029979px;}
.x3{left:361.514979px;}
.x2{left:367.454979px;}
.x3f{left:386.669979px;}
.x4c{left:404.609979px;}
.x3a{left:466.304979px;}
.x7{left:489.494979px;}
.x14{left:520.559979px;}
.x6{left:533.594979px;}
.x5{left:569.804979px;}
.x1{left:578.624979px;}
.x52{left:588.809979px;}
.x49{left:604.544979px;}
.x45{left:606.809979px;}
.x8{left:610.304979px;}
.x4{left:613.364979px;}
.x34{left:615.884979px;}
.x35{left:623.519979px;}
.x37{left:658.079979px;}
.xa{left:659.984979px;}
.x9{left:672.944979px;}
.x36{left:674.384979px;}
.x38{left:678.884979px;}
.xc{left:770.189979px;}
.xd{left:810.719979px;}
.x4e{left:836.969979px;}
.x41{left:853.769979px;}
.x17{left:876.704979px;}
.x42{left:906.449979px;}
.x39{left:931.289979px;}
.x2b{left:987.944979px;}
.x2a{left:1006.229979px;}
.x29{left:1007.309979px;}
.x2c{left:1009.004979px;}
.x4b{left:1029.524979px;}
.x40{left:1056.344979px;}
.x15{left:1063.259979px;}
.x48{left:1137.344979px;}
.x27{left:1171.259979px;}
.xf{left:1181.669979px;}
.x19{left:1204.274979px;}
.x2d{left:1231.124979px;}
.x1d{left:1233.074979px;}
.x43{left:1244.699979px;}
.x1a{left:1246.214979px;}
.x30{left:1248.509979px;}
.x1c{left:1255.034979px;}
.x2f{left:1257.404979px;}
.x1b{left:1266.554979px;}
.x2e{left:1278.644979px;}
.x18{left:1314.614979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-3.605333pt;}
.ls18{letter-spacing:-1.440000pt;}
.ls38{letter-spacing:-1.317333pt;}
.ls2e{letter-spacing:-1.242667pt;}
.lsd{letter-spacing:-0.800000pt;}
.ls27{letter-spacing:-0.762667pt;}
.ls41{letter-spacing:-0.640000pt;}
.ls2c{letter-spacing:-0.512000pt;}
.ls31{letter-spacing:-0.355733pt;}
.lsb{letter-spacing:-0.349333pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls25{letter-spacing:-0.309867pt;}
.ls1b{letter-spacing:-0.273600pt;}
.ls26{letter-spacing:-0.272000pt;}
.ls2f{letter-spacing:-0.262400pt;}
.ls40{letter-spacing:-0.261333pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.224000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls37{letter-spacing:-0.188800pt;}
.ls42{letter-spacing:-0.128000pt;}
.ls36{letter-spacing:-0.112000pt;}
.lsa{letter-spacing:-0.099200pt;}
.ls1c{letter-spacing:-0.097067pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls16{letter-spacing:-0.044800pt;}
.lsf{letter-spacing:-0.032000pt;}
.ls43{letter-spacing:-0.010133pt;}
.ls2d{letter-spacing:-0.005760pt;}
.ls22{letter-spacing:-0.000640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.004480pt;}
.ls24{letter-spacing:0.009600pt;}
.ls1a{letter-spacing:0.032000pt;}
.ls29{letter-spacing:0.034560pt;}
.ls15{letter-spacing:0.052480pt;}
.ls13{letter-spacing:0.064000pt;}
.ls39{letter-spacing:0.066133pt;}
.ls33{letter-spacing:0.096000pt;}
.ls3d{letter-spacing:0.126933pt;}
.ls4{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls3f{letter-spacing:0.204160pt;}
.ls3c{letter-spacing:0.216832pt;}
.ls32{letter-spacing:0.224000pt;}
.ls3e{letter-spacing:0.227072pt;}
.ls1{letter-spacing:0.251733pt;}
.ls28{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.256533pt;}
.ls3a{letter-spacing:0.261867pt;}
.ls17{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.334336pt;}
.ls23{letter-spacing:0.357120pt;}
.ls6{letter-spacing:0.384533pt;}
.ls3b{letter-spacing:14.592000pt;}
.ls35{letter-spacing:43.763200pt;}
.ls34{letter-spacing:43.808000pt;}
.ls1d{letter-spacing:82.912000pt;}
.lse{letter-spacing:86.720000pt;}
.ls2b{letter-spacing:88.467200pt;}
.ls2a{letter-spacing:88.512000pt;}
.ls1e{letter-spacing:106.547200pt;}
.ls1f{letter-spacing:106.592000pt;}
.ls3{letter-spacing:106.653867pt;}
.ls2{letter-spacing:106.698667pt;}
.ls30{letter-spacing:110.528000pt;}
.ls14{letter-spacing:114.624000pt;}
.ws48{word-spacing:-106.880000pt;}
.ws47{word-spacing:-90.880000pt;}
.ws54{word-spacing:-38.618880pt;}
.ws1a{word-spacing:-35.055360pt;}
.ws1b{word-spacing:-34.958080pt;}
.ws5c{word-spacing:-33.962987pt;}
.ws5b{word-spacing:-33.796181pt;}
.ws4{word-spacing:-33.701120pt;}
.ws59{word-spacing:-33.512320pt;}
.ws5a{word-spacing:-32.383787pt;}
.ws3{word-spacing:-24.183808pt;}
.ws0{word-spacing:-24.154880pt;}
.ws53{word-spacing:-23.892480pt;}
.ws42{word-spacing:-23.513600pt;}
.ws52{word-spacing:-22.912213pt;}
.ws44{word-spacing:-22.246400pt;}
.ws16{word-spacing:-21.856000pt;}
.ws58{word-spacing:-21.824000pt;}
.ws57{word-spacing:-21.792000pt;}
.ws32{word-spacing:-21.724928pt;}
.ws5{word-spacing:-21.696000pt;}
.ws18{word-spacing:-21.664000pt;}
.ws43{word-spacing:-21.120000pt;}
.ws1c{word-spacing:-20.896000pt;}
.ws3f{word-spacing:-20.549547pt;}
.ws46{word-spacing:-19.993600pt;}
.ws4a{word-spacing:-19.266048pt;}
.ws1{word-spacing:-19.237120pt;}
.ws45{word-spacing:-18.726400pt;}
.ws50{word-spacing:-16.922880pt;}
.ws4b{word-spacing:-16.650880pt;}
.ws4c{word-spacing:-16.160213pt;}
.ws68{word-spacing:-14.720000pt;}
.ws51{word-spacing:-14.656000pt;}
.ws6f{word-spacing:-14.619861pt;}
.ws4f{word-spacing:-14.528000pt;}
.ws6e{word-spacing:-14.492928pt;}
.ws82{word-spacing:-14.482795pt;}
.ws4d{word-spacing:-14.464000pt;}
.ws6d{word-spacing:-14.231595pt;}
.ws4e{word-spacing:-13.952000pt;}
.ws56{word-spacing:-0.992000pt;}
.ws67{word-spacing:-0.757333pt;}
.ws7d{word-spacing:-0.704000pt;}
.ws40{word-spacing:-0.694400pt;}
.ws49{word-spacing:-0.131200pt;}
.ws24{word-spacing:-0.064000pt;}
.ws41{word-spacing:-0.053120pt;}
.ws2{word-spacing:0.000000pt;}
.ws17{word-spacing:0.032000pt;}
.ws3d{word-spacing:0.064000pt;}
.ws15{word-spacing:0.192000pt;}
.ws3e{word-spacing:0.768000pt;}
.ws25{word-spacing:0.874667pt;}
.ws19{word-spacing:0.928000pt;}
.ws55{word-spacing:0.970667pt;}
.ws78{word-spacing:1.024000pt;}
.ws23{word-spacing:1.280000pt;}
.ws77{word-spacing:1.386667pt;}
.ws7c{word-spacing:1.472000pt;}
.ws76{word-spacing:1.536000pt;}
.ws79{word-spacing:1.600000pt;}
.ws7b{word-spacing:1.728000pt;}
.ws7a{word-spacing:3.136000pt;}
.ws5e{word-spacing:3.370667pt;}
.ws5d{word-spacing:3.648000pt;}
.ws60{word-spacing:3.712000pt;}
.wsc{word-spacing:4.160000pt;}
.ws10{word-spacing:4.192000pt;}
.ws5f{word-spacing:4.288000pt;}
.ws61{word-spacing:4.480000pt;}
.wse{word-spacing:4.640000pt;}
.wsb{word-spacing:4.672000pt;}
.ws34{word-spacing:4.746667pt;}
.ws33{word-spacing:4.864000pt;}
.ws37{word-spacing:5.152000pt;}
.ws35{word-spacing:5.184000pt;}
.ws36{word-spacing:5.216000pt;}
.wsd{word-spacing:5.408000pt;}
.wsf{word-spacing:6.112000pt;}
.ws75{word-spacing:6.848000pt;}
.ws20{word-spacing:7.040000pt;}
.ws1f{word-spacing:7.552000pt;}
.ws1e{word-spacing:7.573333pt;}
.ws1d{word-spacing:7.616000pt;}
.ws21{word-spacing:7.914667pt;}
.ws28{word-spacing:8.128000pt;}
.ws2b{word-spacing:8.480000pt;}
.ws2a{word-spacing:8.714667pt;}
.ws26{word-spacing:9.077333pt;}
.ws27{word-spacing:9.440000pt;}
.ws71{word-spacing:9.514667pt;}
.ws2c{word-spacing:9.853824pt;}
.ws70{word-spacing:9.856000pt;}
.ws2e{word-spacing:10.047488pt;}
.ws30{word-spacing:10.112768pt;}
.ws65{word-spacing:10.304000pt;}
.ws31{word-spacing:10.372651pt;}
.ws2f{word-spacing:10.372821pt;}
.ws63{word-spacing:10.570667pt;}
.ws62{word-spacing:10.688000pt;}
.ws2d{word-spacing:10.788416pt;}
.ws66{word-spacing:10.880000pt;}
.ws64{word-spacing:10.986667pt;}
.ws29{word-spacing:11.296000pt;}
.ws3c{word-spacing:11.328000pt;}
.ws3a{word-spacing:11.360000pt;}
.ws38{word-spacing:11.584000pt;}
.ws3b{word-spacing:11.648000pt;}
.ws39{word-spacing:12.000000pt;}
.ws74{word-spacing:13.930667pt;}
.ws72{word-spacing:14.592000pt;}
.ws73{word-spacing:14.912000pt;}
.ws22{word-spacing:22.176000pt;}
.ws80{word-spacing:23.872000pt;}
.ws6c{word-spacing:23.968000pt;}
.ws6a{word-spacing:24.106667pt;}
.ws6b{word-spacing:24.128000pt;}
.ws69{word-spacing:24.320000pt;}
.ws81{word-spacing:24.800000pt;}
.ws7e{word-spacing:24.896000pt;}
.ws7f{word-spacing:24.960000pt;}
.ws11{word-spacing:28.704000pt;}
.ws13{word-spacing:28.960000pt;}
.ws14{word-spacing:28.992000pt;}
.ws12{word-spacing:29.770667pt;}
.ws6{word-spacing:37.304064pt;}
.ws7{word-spacing:37.525120pt;}
.ws9{word-spacing:37.900288pt;}
.ws8{word-spacing:38.114176pt;}
.wsa{word-spacing:38.667584pt;}
._1f{margin-left:-3052.825387pt;}
._1d{margin-left:-15.320405pt;}
._20{margin-left:-11.958955pt;}
._6{margin-left:-10.522880pt;}
._8{margin-left:-8.520320pt;}
._f{margin-left:-7.200000pt;}
._12{margin-left:-6.043307pt;}
._5{margin-left:-4.782336pt;}
._4{margin-left:-3.878400pt;}
._1{margin-left:-2.833280pt;}
._0{margin-left:-1.697920pt;}
._2{width:1.614507pt;}
._3{width:3.290240pt;}
._e{width:7.067733pt;}
._14{width:17.969621pt;}
._13{width:19.314347pt;}
._7{width:23.107712pt;}
._1b{width:24.416427pt;}
._1c{width:25.933227pt;}
._11{width:26.988373pt;}
._19{width:27.959253pt;}
._22{width:29.577984pt;}
._15{width:30.698283pt;}
._18{width:32.681557pt;}
._1a{width:34.359253pt;}
._10{width:35.430187pt;}
._16{width:40.098987pt;}
._17{width:41.472000pt;}
._9{width:45.184000pt;}
._d{width:51.829973pt;}
._c{width:60.022827pt;}
._1e{width:63.294720pt;}
._b{width:66.149333pt;}
._a{width:67.183360pt;}
._21{width:345.381120pt;}
.fs6{font-size:53.120000pt;}
.fsa{font-size:64.000000pt;}
.fs14{font-size:64.128000pt;}
.fsc{font-size:74.880000pt;}
.fs12{font-size:75.008000pt;}
.fs2{font-size:85.120000pt;}
.fs11{font-size:85.248000pt;}
.fs10{font-size:90.880000pt;}
.fs13{font-size:91.008000pt;}
.fs5{font-size:96.000000pt;}
.fsb{font-size:96.128000pt;}
.fsf{font-size:101.120000pt;}
.fs0{font-size:106.880000pt;}
.fs4{font-size:107.008000pt;}
.fs9{font-size:128.000000pt;}
.fsd{font-size:128.128000pt;}
.fs1{font-size:149.120000pt;}
.fs8{font-size:149.248000pt;}
.fse{font-size:154.880000pt;}
.fs7{font-size:170.880000pt;}
.fs3{font-size:171.008000pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:7.232000pt;}
.y25{bottom:9.952000pt;}
.ya5{bottom:16.288000pt;}
.y57{bottom:17.472000pt;}
.y8d{bottom:20.352000pt;}
.y9b{bottom:33.984000pt;}
.ya{bottom:34.912000pt;}
.y1f{bottom:41.600000pt;}
.ya4{bottom:45.088000pt;}
.y30{bottom:47.072000pt;}
.y8c{bottom:47.552000pt;}
.ybe{bottom:54.176000pt;}
.y9{bottom:60.512000pt;}
.y9a{bottom:62.784000pt;}
.ybd{bottom:73.376000pt;}
.y8b{bottom:74.752000pt;}
.y2f{bottom:75.904000pt;}
.y55{bottom:76.928000pt;}
.ya6{bottom:82.304000pt;}
.y8{bottom:86.144000pt;}
.y4c{bottom:87.360000pt;}
.y99{bottom:91.584000pt;}
.yb1{bottom:92.064000pt;}
.ybc{bottom:92.576000pt;}
.y15{bottom:96.288000pt;}
.y8a{bottom:101.952000pt;}
.y72{bottom:103.872000pt;}
.y2e{bottom:104.704000pt;}
.y54{bottom:108.928000pt;}
.y7{bottom:111.744000pt;}
.ybb{bottom:111.776000pt;}
.ya1{bottom:116.256000pt;}
.y4b{bottom:118.080000pt;}
.y98{bottom:120.384000pt;}
.y34{bottom:126.176000pt;}
.y14{bottom:128.288000pt;}
.y89{bottom:129.152000pt;}
.yba{bottom:130.976000pt;}
.y71{bottom:131.872000pt;}
.y2d{bottom:133.506667pt;}
.y76{bottom:133.786667pt;}
.yb0{bottom:141.213333pt;}
.ya0{bottom:148.253333pt;}
.y53{bottom:148.933333pt;}
.y4a{bottom:148.960000pt;}
.yb9{bottom:150.173333pt;}
.y33{bottom:154.973333pt;}
.y88{bottom:156.346667pt;}
.y70{bottom:157.466667pt;}
.y13{bottom:160.293333pt;}
.y2c{bottom:162.306667pt;}
.y97{bottom:162.626667pt;}
.yb8{bottom:169.373333pt;}
.y49{bottom:179.866667pt;}
.y52{bottom:180.960000pt;}
.y87{bottom:183.586667pt;}
.y32{bottom:183.773333pt;}
.yaf{bottom:190.333333pt;}
.y2b{bottom:191.106667pt;}
.y96{bottom:191.453333pt;}
.y12{bottom:192.320000pt;}
.y6f{bottom:205.213333pt;}
.yb7{bottom:207.813333pt;}
.y48{bottom:210.586667pt;}
.y86{bottom:210.786667pt;}
.y6{bottom:211.866667pt;}
.y9f{bottom:212.253333pt;}
.y31{bottom:212.573333pt;}
.y51{bottom:212.960000pt;}
.y7c{bottom:213.346667pt;}
.y95{bottom:220.253333pt;}
.y11{bottom:224.320000pt;}
.yb6{bottom:227.013333pt;}
.y85{bottom:237.986667pt;}
.yae{bottom:239.613333pt;}
.y5{bottom:243.866667pt;}
.y9e{bottom:244.293333pt;}
.y50{bottom:244.960000pt;}
.y7e{bottom:246.533333pt;}
.y6e{bottom:247.906667pt;}
.y94{bottom:249.053333pt;}
.y79{bottom:250.333333pt;}
.y47{bottom:252.026667pt;}
.y10{bottom:256.320000pt;}
.ya2{bottom:259.333333pt;}
.y84{bottom:265.186667pt;}
.yb5{bottom:265.413333pt;}
.y78{bottom:272.733333pt;}
.y4{bottom:275.866667pt;}
.y9d{bottom:276.293333pt;}
.y8e{bottom:276.346667pt;}
.y4f{bottom:276.960000pt;}
.y56{bottom:277.786667pt;}
.y7a{bottom:279.520000pt;}
.y46{bottom:282.906667pt;}
.y7b{bottom:283.866667pt;}
.yb4{bottom:284.613333pt;}
.y75{bottom:285.826667pt;}
.y6d{bottom:286.306667pt;}
.yf{bottom:288.320000pt;}
.yad{bottom:288.773333pt;}
.y93{bottom:291.133333pt;}
.y77{bottom:295.133333pt;}
.yb3{bottom:303.813333pt;}
.y74{bottom:308.253333pt;}
.y9c{bottom:308.293333pt;}
.y4e{bottom:308.960000pt;}
.y1d{bottom:310.880000pt;}
.y45{bottom:313.786667pt;}
.y7d{bottom:314.173333pt;}
.y3a{bottom:319.653333pt;}
.y92{bottom:319.973333pt;}
.ye{bottom:320.346667pt;}
.yac{bottom:324.613333pt;}
.y6c{bottom:333.986667pt;}
.y5a{bottom:339.813333pt;}
.y61{bottom:340.640000pt;}
.y3{bottom:348.226667pt;}
.y91{bottom:348.773333pt;}
.y1c{bottom:352.000000pt;}
.yd{bottom:352.346667pt;}
.y39{bottom:354.240000pt;}
.y44{bottom:360.866667pt;}
.y82{bottom:366.266667pt;}
.y6b{bottom:367.133333pt;}
.y59{bottom:371.813333pt;}
.y60{bottom:372.640000pt;}
.yab{bottom:373.733333pt;}
.y90{bottom:377.573333pt;}
.yc{bottom:384.346667pt;}
.y81{bottom:388.666667pt;}
.y43{bottom:389.666667pt;}
.y2{bottom:393.026667pt;}
.y1b{bottom:394.746667pt;}
.y38{bottom:395.360000pt;}
.y6a{bottom:399.133333pt;}
.y27{bottom:405.946667pt;}
.y42{bottom:418.493333pt;}
.y69{bottom:431.133333pt;}
.y26{bottom:434.746667pt;}
.y37{bottom:438.080000pt;}
.y58{bottom:442.426667pt;}
.y41{bottom:447.293333pt;}
.y1a{bottom:448.346667pt;}
.y68{bottom:463.133333pt;}
.y1{bottom:466.973333pt;}
.y80{bottom:469.600000pt;}
.yaa{bottom:478.560000pt;}
.y17{bottom:486.333333pt;}
.y5f{bottom:486.973333pt;}
.y36{bottom:491.706667pt;}
.y7f{bottom:492.000000pt;}
.y67{bottom:495.173333pt;}
.y24{bottom:499.040000pt;}
.y19{bottom:502.146667pt;}
.y40{bottom:504.573333pt;}
.y5c{bottom:506.080000pt;}
.y5e{bottom:514.173333pt;}
.y66{bottom:527.173333pt;}
.y23{bottom:527.840000pt;}
.y3f{bottom:533.373333pt;}
.y5b{bottom:536.160000pt;}
.y5d{bottom:541.053333pt;}
.y35{bottom:545.466667pt;}
.y22{bottom:556.640000pt;}
.y65{bottom:559.173333pt;}
.y2a{bottom:560.826667pt;}
.y3e{bottom:562.213333pt;}
.ya9{bottom:570.053333pt;}
.y21{bottom:585.466667pt;}
.y29{bottom:589.626667pt;}
.y3d{bottom:591.013333pt;}
.y64{bottom:591.173333pt;}
.y83{bottom:596.666667pt;}
.ya8{bottom:598.853333pt;}
.y16{bottom:601.440000pt;}
.y20{bottom:614.266667pt;}
.y18{bottom:618.146667pt;}
.y3c{bottom:619.813333pt;}
.ybf{bottom:621.786667pt;}
.y63{bottom:623.293333pt;}
.ya7{bottom:627.653333pt;}
.yb{bottom:644.933333pt;}
.y4d{bottom:654.013333pt;}
.y8f{bottom:654.813333pt;}
.yb2{bottom:665.253333pt;}
.y28{bottom:666.906667pt;}
.y62{bottom:669.413333pt;}
.ya3{bottom:671.706667pt;}
.y1e{bottom:671.866667pt;}
.y3b{bottom:674.240000pt;}
.h19{height:39.943750pt;}
.h8{height:52.834688pt;}
.hd{height:60.937500pt;}
.h22{height:63.656250pt;}
.h2b{height:63.783562pt;}
.h24{height:63.840000pt;}
.h29{height:65.531250pt;}
.h2a{height:65.662312pt;}
.h1a{height:72.069375pt;}
.h11{height:74.477812pt;}
.h23{height:74.605125pt;}
.h25{height:76.671562pt;}
.h26{height:76.802625pt;}
.h1f{height:76.946250pt;}
.h12{height:77.250000pt;}
.h17{height:77.353000pt;}
.h7{height:81.140625pt;}
.h16{height:81.248812pt;}
.h1d{height:81.281250pt;}
.h4{height:84.662813pt;}
.h1e{height:85.616250pt;}
.h1{height:86.005000pt;}
.h20{height:87.156562pt;}
.h21{height:87.287625pt;}
.h27{height:90.391875pt;}
.h1c{height:90.493125pt;}
.h28{height:90.519188pt;}
.h10{height:95.484375pt;}
.h13{height:95.611688pt;}
.he{height:98.296875pt;}
.hf{height:98.427937pt;}
.h3{height:106.305937pt;}
.h6{height:106.433250pt;}
.h18{height:109.437187pt;}
.h1b{height:126.256875pt;}
.hc{height:127.312500pt;}
.h14{height:127.439813pt;}
.h2{height:148.319063pt;}
.ha{height:148.446375pt;}
.hb{height:152.687812pt;}
.h15{height:154.048125pt;}
.h9{height:169.962187pt;}
.h5{height:170.089500pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x24{left:9.599981pt;}
.x22{left:18.751981pt;}
.x12{left:20.735981pt;}
.x1e{left:22.431981pt;}
.x31{left:23.519981pt;}
.x57{left:25.663981pt;}
.x23{left:26.655981pt;}
.x16{left:28.031981pt;}
.x32{left:31.711981pt;}
.x4d{left:36.191981pt;}
.xb{left:41.663981pt;}
.x20{left:43.423981pt;}
.xe{left:46.911981pt;}
.x10{left:51.519981pt;}
.x1f{left:52.511981pt;}
.x33{left:55.711981pt;}
.x25{left:58.911981pt;}
.x26{left:64.831981pt;}
.x51{left:77.439981pt;}
.x21{left:91.455981pt;}
.x11{left:99.519981pt;}
.x3b{left:105.471981pt;}
.x3c{left:146.746648pt;}
.x54{left:153.439981pt;}
.x28{left:161.439981pt;}
.x53{left:163.039981pt;}
.x4f{left:165.279981pt;}
.x46{left:171.199981pt;}
.x56{left:190.239981pt;}
.x47{left:203.199981pt;}
.x50{left:215.839981pt;}
.x13{left:240.613314pt;}
.x55{left:245.599981pt;}
.x4a{left:270.373314pt;}
.x44{left:279.426648pt;}
.x3d{left:301.626648pt;}
.x3e{left:304.026648pt;}
.x3{left:321.346648pt;}
.x2{left:326.626648pt;}
.x3f{left:343.706648pt;}
.x4c{left:359.653314pt;}
.x3a{left:414.493314pt;}
.x7{left:435.106648pt;}
.x14{left:462.719981pt;}
.x6{left:474.306648pt;}
.x5{left:506.493314pt;}
.x1{left:514.333314pt;}
.x52{left:523.386648pt;}
.x49{left:537.373314pt;}
.x45{left:539.386648pt;}
.x8{left:542.493314pt;}
.x4{left:545.213314pt;}
.x34{left:547.453314pt;}
.x35{left:554.239981pt;}
.x37{left:584.959981pt;}
.xa{left:586.653314pt;}
.x9{left:598.173314pt;}
.x36{left:599.453314pt;}
.x38{left:603.453314pt;}
.xc{left:684.613314pt;}
.xd{left:720.639981pt;}
.x4e{left:743.973314pt;}
.x41{left:758.906648pt;}
.x17{left:779.293314pt;}
.x42{left:805.733314pt;}
.x39{left:827.813314pt;}
.x2b{left:878.173314pt;}
.x2a{left:894.426648pt;}
.x29{left:895.386648pt;}
.x2c{left:896.893314pt;}
.x4b{left:915.133314pt;}
.x40{left:938.973314pt;}
.x15{left:945.119981pt;}
.x48{left:1010.973314pt;}
.x27{left:1041.119981pt;}
.xf{left:1050.373314pt;}
.x19{left:1070.466648pt;}
.x2d{left:1094.333314pt;}
.x1d{left:1096.066648pt;}
.x43{left:1106.399981pt;}
.x1a{left:1107.746648pt;}
.x30{left:1109.786648pt;}
.x1c{left:1115.586648pt;}
.x2f{left:1117.693314pt;}
.x1b{left:1125.826648pt;}
.x2e{left:1136.573314pt;}
.x18{left:1168.546648pt;}
}




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