
    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_bd3f8d481ed711a36e058c03.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.968262;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_0d82b7068dabb14fe677f1a1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.968262;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_79c5641c853aa92bd19792b0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.032715;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_3c81f28b61d64ea05c03509c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.103027;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_f24c2ff1b2ebfa82f5b5d136.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.136719;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_fe9e39730d2838054206fa4b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970370;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_47f4b4ad55a5647f3c7a3e39.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.103027;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_698d676b5d5b55cd3dcb88b3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.136719;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_fac01c6678f150f245f5fe0c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.103027;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-19.980000px;}
.v3{vertical-align:-14.638800px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.982000px;}
.v1{vertical-align:19.980000px;}
.ls3{letter-spacing:-0.960000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017400px;}
.ls1{letter-spacing:1.080000px;}
.ls5{letter-spacing:4.858800px;}
.ls0{letter-spacing:11.294400px;}
.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;}
}
.ws3f{word-spacing:-60.000000px;}
.wsac{word-spacing:-14.940000px;}
.ws0{word-spacing:-14.880000px;}
.ws64{word-spacing:-14.700000px;}
.ws5{word-spacing:-14.310000px;}
.ws3{word-spacing:-11.904000px;}
.ws7f{word-spacing:-11.760000px;}
.ws4{word-spacing:-10.944000px;}
.ws1{word-spacing:-8.675040px;}
.ws2{word-spacing:-7.807536px;}
.ws35{word-spacing:-6.600000px;}
.ws36{word-spacing:-3.780000px;}
.wsc4{word-spacing:-3.720000px;}
.ws29{word-spacing:-3.480000px;}
.wsd5{word-spacing:-3.300000px;}
.wsc6{word-spacing:-3.240000px;}
.ws59{word-spacing:-3.180000px;}
.wsb6{word-spacing:-2.940000px;}
.wsaf{word-spacing:-2.820000px;}
.wscf{word-spacing:-2.640000px;}
.ws32{word-spacing:-2.520000px;}
.ws21{word-spacing:-2.460000px;}
.ws13{word-spacing:-2.400000px;}
.wsab{word-spacing:-2.352000px;}
.ws2a{word-spacing:-2.340000px;}
.wsc8{word-spacing:-2.280000px;}
.wsc1{word-spacing:-2.220000px;}
.ws79{word-spacing:-2.208000px;}
.wsbf{word-spacing:-2.160000px;}
.ws38{word-spacing:-2.016000px;}
.ws45{word-spacing:-1.920000px;}
.ws8e{word-spacing:-1.800000px;}
.wsa3{word-spacing:-1.740000px;}
.wsb5{word-spacing:-1.680000px;}
.ws85{word-spacing:-1.566000px;}
.ws22{word-spacing:-1.560000px;}
.ws60{word-spacing:-1.536000px;}
.wsd9{word-spacing:-1.500000px;}
.wsd8{word-spacing:-1.440000px;}
.wsbe{word-spacing:-1.392000px;}
.wsd{word-spacing:-1.380000px;}
.ws1e{word-spacing:-1.344000px;}
.ws81{word-spacing:-1.260000px;}
.wsb7{word-spacing:-1.200000px;}
.wsba{word-spacing:-1.152000px;}
.ws5a{word-spacing:-1.140000px;}
.ws1f{word-spacing:-1.080000px;}
.ws25{word-spacing:-1.020000px;}
.ws7e{word-spacing:-0.960000px;}
.ws7a{word-spacing:-0.912000px;}
.wsdd{word-spacing:-0.900000px;}
.ws26{word-spacing:-0.840000px;}
.wsbc{word-spacing:-0.816000px;}
.ws99{word-spacing:-0.768000px;}
.ws8d{word-spacing:-0.720000px;}
.ws24{word-spacing:-0.660000px;}
.ws70{word-spacing:-0.540000px;}
.wsbb{word-spacing:-0.528000px;}
.ws57{word-spacing:-0.360000px;}
.ws97{word-spacing:-0.288000px;}
.ws9a{word-spacing:-0.240000px;}
.ws3a{word-spacing:-0.144000px;}
.wsa{word-spacing:-0.120000px;}
.wsb1{word-spacing:-0.060000px;}
.ws88{word-spacing:-0.054000px;}
.ws7b{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.ws94{word-spacing:0.048000px;}
.ws9d{word-spacing:0.054000px;}
.ws10{word-spacing:0.060000px;}
.ws4e{word-spacing:0.108000px;}
.ws58{word-spacing:0.120000px;}
.ws77{word-spacing:0.180000px;}
.wsa9{word-spacing:0.192000px;}
.ws34{word-spacing:0.240000px;}
.ws5e{word-spacing:0.360000px;}
.ws18{word-spacing:0.384000px;}
.wsad{word-spacing:0.420000px;}
.wsa7{word-spacing:0.528000px;}
.ws4d{word-spacing:0.540000px;}
.ws7d{word-spacing:0.576000px;}
.ws7c{word-spacing:0.624000px;}
.wsd0{word-spacing:0.660000px;}
.ws3e{word-spacing:0.672000px;}
.ws62{word-spacing:0.720000px;}
.ws61{word-spacing:0.768000px;}
.ws78{word-spacing:0.780000px;}
.wscb{word-spacing:0.840000px;}
.ws50{word-spacing:0.864000px;}
.ws31{word-spacing:0.900000px;}
.ws5c{word-spacing:0.960000px;}
.ws8b{word-spacing:0.972000px;}
.ws30{word-spacing:1.140000px;}
.ws1d{word-spacing:1.200000px;}
.ws1c{word-spacing:1.248000px;}
.wsc2{word-spacing:1.320000px;}
.ws2d{word-spacing:1.380000px;}
.ws12{word-spacing:1.404000px;}
.wsf{word-spacing:1.440000px;}
.ws76{word-spacing:1.500000px;}
.wsc{word-spacing:1.620000px;}
.ws3c{word-spacing:1.632000px;}
.ws72{word-spacing:1.680000px;}
.ws47{word-spacing:1.740000px;}
.ws5f{word-spacing:1.776000px;}
.ws9f{word-spacing:1.800000px;}
.ws9c{word-spacing:1.836000px;}
.ws4a{word-spacing:1.860000px;}
.wsa1{word-spacing:1.890000px;}
.ws8f{word-spacing:1.920000px;}
.ws96{word-spacing:1.968000px;}
.ws6f{word-spacing:1.980000px;}
.wsdc{word-spacing:2.040000px;}
.ws92{word-spacing:2.064000px;}
.wsde{word-spacing:2.100000px;}
.ws8a{word-spacing:2.106000px;}
.ws2c{word-spacing:2.160000px;}
.ws6b{word-spacing:2.220000px;}
.ws39{word-spacing:2.256000px;}
.wscd{word-spacing:2.340000px;}
.ws11{word-spacing:2.460000px;}
.wsda{word-spacing:2.520000px;}
.wsa8{word-spacing:2.544000px;}
.ws49{word-spacing:2.640000px;}
.ws86{word-spacing:2.646000px;}
.ws52{word-spacing:2.700000px;}
.ws23{word-spacing:2.760000px;}
.ws69{word-spacing:2.820000px;}
.ws51{word-spacing:2.862000px;}
.ws6a{word-spacing:2.880000px;}
.ws53{word-spacing:2.916000px;}
.wsaa{word-spacing:2.928000px;}
.wsa5{word-spacing:2.940000px;}
.ws6e{word-spacing:3.000000px;}
.ws82{word-spacing:3.060000px;}
.wsb8{word-spacing:3.120000px;}
.wsd1{word-spacing:3.240000px;}
.ws15{word-spacing:3.264000px;}
.ws48{word-spacing:3.300000px;}
.ws83{word-spacing:3.420000px;}
.ws1b{word-spacing:3.456000px;}
.ws5d{word-spacing:3.600000px;}
.ws98{word-spacing:3.648000px;}
.wse{word-spacing:3.660000px;}
.ws89{word-spacing:3.672000px;}
.wsb{word-spacing:3.780000px;}
.wsc5{word-spacing:3.960000px;}
.ws19{word-spacing:4.032000px;}
.ws75{word-spacing:4.080000px;}
.wsb0{word-spacing:4.140000px;}
.ws1a{word-spacing:4.224000px;}
.ws40{word-spacing:4.260000px;}
.ws37{word-spacing:4.272000px;}
.ws67{word-spacing:4.320000px;}
.wsc3{word-spacing:4.380000px;}
.ws80{word-spacing:4.440000px;}
.ws8{word-spacing:4.482000px;}
.ws6d{word-spacing:4.620000px;}
.ws41{word-spacing:4.680000px;}
.ws95{word-spacing:4.704000px;}
.ws27{word-spacing:4.740000px;}
.ws4f{word-spacing:4.752000px;}
.ws3d{word-spacing:4.800000px;}
.ws2b{word-spacing:4.920000px;}
.ws33{word-spacing:5.040000px;}
.wscc{word-spacing:5.100000px;}
.wsc7{word-spacing:5.160000px;}
.ws74{word-spacing:5.280000px;}
.wsa0{word-spacing:5.400000px;}
.wsa6{word-spacing:5.424000px;}
.ws43{word-spacing:5.520000px;}
.ws87{word-spacing:5.562000px;}
.ws46{word-spacing:5.580000px;}
.wsdb{word-spacing:5.700000px;}
.wsc0{word-spacing:5.760000px;}
.wsa2{word-spacing:5.886000px;}
.wsbd{word-spacing:5.904000px;}
.ws56{word-spacing:5.940000px;}
.ws91{word-spacing:5.952000px;}
.wsa4{word-spacing:6.060000px;}
.ws93{word-spacing:6.096000px;}
.ws6c{word-spacing:6.180000px;}
.wsca{word-spacing:6.300000px;}
.ws16{word-spacing:6.384000px;}
.wsb2{word-spacing:6.420000px;}
.ws3b{word-spacing:6.480000px;}
.wsb9{word-spacing:6.540000px;}
.ws68{word-spacing:6.600000px;}
.wsb3{word-spacing:6.660000px;}
.ws44{word-spacing:6.720000px;}
.ws55{word-spacing:6.780000px;}
.ws9b{word-spacing:6.840000px;}
.ws4b{word-spacing:7.080000px;}
.ws9{word-spacing:7.260000px;}
.ws71{word-spacing:7.440000px;}
.wsc9{word-spacing:7.500000px;}
.ws84{word-spacing:7.740000px;}
.ws8c{word-spacing:7.800000px;}
.ws54{word-spacing:7.920000px;}
.ws73{word-spacing:8.040000px;}
.wsce{word-spacing:8.100000px;}
.ws90{word-spacing:8.220000px;}
.ws66{word-spacing:8.520000px;}
.wsb4{word-spacing:8.580000px;}
.ws4c{word-spacing:8.700000px;}
.ws2f{word-spacing:8.760000px;}
.ws65{word-spacing:8.820000px;}
.ws2e{word-spacing:9.480000px;}
.ws9e{word-spacing:9.780000px;}
.wsae{word-spacing:9.840000px;}
.ws42{word-spacing:10.320000px;}
.ws63{word-spacing:10.464000px;}
.ws5b{word-spacing:10.920000px;}
.ws28{word-spacing:11.220000px;}
.wsd7{word-spacing:12.720000px;}
.wsd6{word-spacing:12.840000px;}
.ws14{word-spacing:15.072000px;}
.wsd3{word-spacing:19.020000px;}
.wsd2{word-spacing:19.200000px;}
.wsdf{word-spacing:19.920000px;}
.wse0{word-spacing:20.100000px;}
.ws17{word-spacing:29.184000px;}
.wsd4{word-spacing:66.720000px;}
.ws7{word-spacing:201.120000px;}
.ws20{word-spacing:1041.052800px;}
._5{margin-left:-29.238000px;}
._7{margin-left:-26.373600px;}
._a{margin-left:-23.700000px;}
._10{margin-left:-18.660000px;}
._9{margin-left:-17.047200px;}
._f{margin-left:-12.960000px;}
._14{margin-left:-10.352400px;}
._d{margin-left:-6.625200px;}
._4{margin-left:-5.373000px;}
._1{margin-left:-3.487200px;}
._13{margin-left:-2.466600px;}
._0{margin-left:-1.459200px;}
._2{width:1.267200px;}
._c{width:2.305800px;}
._b{width:4.177800px;}
._e{width:5.327400px;}
._8{width:7.098000px;}
._12{width:8.881200px;}
._11{width:10.219200px;}
._15{width:13.129200px;}
._16{width:20.535000px;}
._6{width:25.104000px;}
._3{width:29.136000px;}
.fc3{color:transparent;}
.fc2{color:rgb(79,76,77);}
.fc1{color:rgb(48,88,159);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:31.482000px;}
.fs2{font-size:34.980000px;}
.fs6{font-size:36.000000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y64{bottom:49.762500px;}
.y65{bottom:52.906050px;}
.y30{bottom:56.565750px;}
.y2e{bottom:81.169050px;}
.y85{bottom:85.889700px;}
.y63{bottom:85.889850px;}
.y99{bottom:85.890000px;}
.y2d{bottom:96.169050px;}
.y62{bottom:100.889850px;}
.y98{bottom:100.890000px;}
.y2c{bottom:111.169050px;}
.y61{bottom:115.889850px;}
.y97{bottom:115.890150px;}
.y2b{bottom:126.169050px;}
.y127{bottom:128.016600px;}
.y60{bottom:130.889850px;}
.y96{bottom:130.890150px;}
.y5f{bottom:145.889850px;}
.y84{bottom:145.890000px;}
.yc8{bottom:145.890150px;}
.y95{bottom:145.890300px;}
.y126{bottom:149.766600px;}
.y2a{bottom:159.448950px;}
.y5e{bottom:160.889850px;}
.y83{bottom:160.890000px;}
.yc7{bottom:160.890300px;}
.y94{bottom:160.890450px;}
.y102{bottom:170.175900px;}
.y29{bottom:174.448950px;}
.y5d{bottom:175.889850px;}
.y82{bottom:175.890000px;}
.yc6{bottom:175.890300px;}
.y93{bottom:175.890450px;}
.y125{bottom:180.020400px;}
.y28{bottom:189.448950px;}
.y5c{bottom:190.889850px;}
.yc5{bottom:190.890300px;}
.y92{bottom:190.890450px;}
.y101{bottom:191.925900px;}
.y124{bottom:201.770400px;}
.y27{bottom:204.448950px;}
.y5b{bottom:205.889850px;}
.yc4{bottom:205.890300px;}
.y91{bottom:205.890450px;}
.y81{bottom:207.197550px;}
.y100{bottom:213.675900px;}
.y26{bottom:219.448950px;}
.y5a{bottom:220.889850px;}
.yc3{bottom:220.890300px;}
.y90{bottom:220.890600px;}
.y123{bottom:223.520400px;}
.y80{bottom:228.947550px;}
.y25{bottom:234.448950px;}
.y59{bottom:235.889850px;}
.yc2{bottom:235.890300px;}
.y8f{bottom:235.890750px;}
.yff{bottom:243.929850px;}
.y24{bottom:249.449100px;}
.y7f{bottom:250.697550px;}
.y58{bottom:250.889850px;}
.yc1{bottom:250.890300px;}
.y8e{bottom:250.890750px;}
.y122{bottom:253.774350px;}
.y23{bottom:264.449250px;}
.y57{bottom:265.889850px;}
.yc0{bottom:265.890300px;}
.y7e{bottom:272.447550px;}
.yfe{bottom:274.183800px;}
.y121{bottom:275.524350px;}
.y22{bottom:279.449250px;}
.y56{bottom:280.889850px;}
.ybf{bottom:280.890450px;}
.y7d{bottom:294.197550px;}
.y21{bottom:294.449250px;}
.y55{bottom:295.889850px;}
.ybe{bottom:295.890600px;}
.yfd{bottom:295.933800px;}
.y120{bottom:297.274350px;}
.y20{bottom:309.449400px;}
.y54{bottom:310.889850px;}
.ybd{bottom:310.890600px;}
.y7c{bottom:315.947550px;}
.y1f{bottom:324.449550px;}
.y53{bottom:325.889850px;}
.ybc{bottom:325.890750px;}
.yfc{bottom:326.187750px;}
.y11f{bottom:327.528300px;}
.y7b{bottom:337.697550px;}
.y1e{bottom:339.449550px;}
.y52{bottom:340.889850px;}
.ybb{bottom:340.890750px;}
.yee{bottom:342.705450px;}
.ye5{bottom:345.055950px;}
.yfb{bottom:347.937750px;}
.y11e{bottom:349.278300px;}
.y1d{bottom:354.449550px;}
.y51{bottom:355.889850px;}
.y7a{bottom:359.447550px;}
.y8d{bottom:364.455450px;}
.ye4{bottom:366.805950px;}
.y1c{bottom:369.449550px;}
.y50{bottom:370.889850px;}
.yba{bottom:376.957500px;}
.yfa{bottom:378.191700px;}
.y11d{bottom:379.532250px;}
.y79{bottom:381.197550px;}
.y1b{bottom:384.449700px;}
.y4f{bottom:385.889850px;}
.y8c{bottom:386.205450px;}
.ye3{bottom:388.555950px;}
.yb9{bottom:398.707500px;}
.y1a{bottom:399.449850px;}
.yf9{bottom:399.941700px;}
.y4e{bottom:400.889850px;}
.y11c{bottom:401.282250px;}
.y78{bottom:402.947550px;}
.y8b{bottom:407.955450px;}
.ye2{bottom:410.305950px;}
.yb8{bottom:420.457500px;}
.yf8{bottom:421.691700px;}
.y11b{bottom:423.032250px;}
.y77{bottom:424.697550px;}
.y8a{bottom:429.705450px;}
.ye1{bottom:432.055950px;}
.yb7{bottom:442.207500px;}
.y11a{bottom:444.782250px;}
.y76{bottom:446.447550px;}
.y4d{bottom:451.455450px;}
.yf7{bottom:451.945650px;}
.ye0{bottom:453.805950px;}
.y19{bottom:456.358650px;}
.yb6{bottom:463.957500px;}
.y119{bottom:466.532250px;}
.y4c{bottom:473.205450px;}
.yf6{bottom:473.695650px;}
.ydf{bottom:475.555950px;}
.y75{bottom:476.701500px;}
.y18{bottom:478.108650px;}
.yb5{bottom:485.707500px;}
.y74{bottom:494.701500px;}
.y4b{bottom:494.955450px;}
.y118{bottom:496.786200px;}
.yde{bottom:497.305950px;}
.yf5{bottom:503.949600px;}
.yb4{bottom:507.457500px;}
.y17{bottom:508.362600px;}
.y73{bottom:512.701500px;}
.y4a{bottom:516.705450px;}
.y117{bottom:518.536200px;}
.ydd{bottom:519.055950px;}
.yf4{bottom:525.699600px;}
.y16{bottom:526.362600px;}
.yb3{bottom:529.207500px;}
.y72{bottom:530.701500px;}
.y49{bottom:538.455450px;}
.y116{bottom:540.286200px;}
.ydc{bottom:540.805950px;}
.y15{bottom:544.362600px;}
.y71{bottom:548.701500px;}
.yb2{bottom:550.957500px;}
.yf3{bottom:555.953550px;}
.y48{bottom:560.205450px;}
.y115{bottom:562.036200px;}
.y70{bottom:566.701500px;}
.y14{bottom:570.866550px;}
.ydb{bottom:571.059750px;}
.yb1{bottom:572.707500px;}
.yf2{bottom:577.703550px;}
.y47{bottom:581.955450px;}
.y6f{bottom:584.701500px;}
.yda{bottom:589.059750px;}
.y114{bottom:592.290150px;}
.y13{bottom:592.616550px;}
.yf1{bottom:599.453550px;}
.y6e{bottom:602.701500px;}
.yb0{bottom:602.961450px;}
.y46{bottom:603.705450px;}
.yd9{bottom:607.059750px;}
.y113{bottom:614.040150px;}
.y12{bottom:614.366550px;}
.yed{bottom:617.311800px;}
.y6d{bottom:620.701500px;}
.yaf{bottom:620.961450px;}
.yf0{bottom:621.203550px;}
.yd8{bottom:625.059750px;}
.y45{bottom:625.455450px;}
.y11{bottom:636.116550px;}
.yae{bottom:638.961450px;}
.yd7{bottom:643.059750px;}
.y112{bottom:644.294100px;}
.y44{bottom:647.205450px;}
.yad{bottom:656.961450px;}
.y10{bottom:657.866550px;}
.yec{bottom:660.321600px;}
.yef{bottom:660.811800px;}
.yd6{bottom:661.059750px;}
.y111{bottom:666.044100px;}
.y43{bottom:668.955450px;}
.yac{bottom:674.961450px;}
.yf{bottom:679.616550px;}
.yeb{bottom:682.071600px;}
.yd5{bottom:687.563700px;}
.y110{bottom:687.794100px;}
.y42{bottom:690.705450px;}
.yab{bottom:692.961450px;}
.ye{bottom:701.366550px;}
.yea{bottom:703.821600px;}
.yd4{bottom:709.313700px;}
.yaa{bottom:710.961450px;}
.y41{bottom:712.455450px;}
.y10f{bottom:718.048050px;}
.yd{bottom:723.116550px;}
.ye9{bottom:725.571600px;}
.ya9{bottom:728.961300px;}
.yd3{bottom:731.063850px;}
.y40{bottom:734.205450px;}
.y10e{bottom:739.798050px;}
.yc{bottom:744.866550px;}
.ye8{bottom:747.321600px;}
.yd2{bottom:752.813850px;}
.ya8{bottom:755.465400px;}
.y3f{bottom:755.955450px;}
.yb{bottom:766.616550px;}
.ye7{bottom:769.071600px;}
.y6c{bottom:769.561800px;}
.y10d{bottom:770.052000px;}
.yd1{bottom:774.563850px;}
.ya7{bottom:777.215400px;}
.y3e{bottom:777.705450px;}
.y12e{bottom:778.555800px;}
.ya{bottom:788.366550px;}
.ye6{bottom:790.821600px;}
.y10c{bottom:791.802000px;}
.yd0{bottom:796.313850px;}
.ya6{bottom:798.965400px;}
.y3d{bottom:799.455450px;}
.y12d{bottom:800.305800px;}
.y6b{bottom:812.571600px;}
.ycf{bottom:818.063850px;}
.y9{bottom:818.620500px;}
.ya5{bottom:820.715400px;}
.y3c{bottom:821.205450px;}
.y10b{bottom:822.055800px;}
.y12c{bottom:830.559750px;}
.y6a{bottom:834.321600px;}
.y8{bottom:836.620500px;}
.ya4{bottom:842.465400px;}
.y3b{bottom:842.955450px;}
.y10a{bottom:843.805800px;}
.yce{bottom:848.317650px;}
.y12b{bottom:852.309750px;}
.y7{bottom:854.620500px;}
.y69{bottom:856.071600px;}
.ya3{bottom:864.215400px;}
.y3a{bottom:864.705450px;}
.ycd{bottom:866.317650px;}
.y109{bottom:874.059750px;}
.y68{bottom:877.821600px;}
.ycc{bottom:884.317650px;}
.ya2{bottom:885.965400px;}
.y89{bottom:886.455450px;}
.y6{bottom:893.880300px;}
.y108{bottom:895.809750px;}
.y67{bottom:899.571600px;}
.y39{bottom:900.061800px;}
.ycb{bottom:902.317650px;}
.y12a{bottom:904.313850px;}
.ya1{bottom:907.715400px;}
.y88{bottom:908.205450px;}
.yca{bottom:920.317650px;}
.y66{bottom:921.321600px;}
.y107{bottom:926.063850px;}
.y5{bottom:928.386150px;}
.ya0{bottom:929.465400px;}
.y87{bottom:929.955450px;}
.yc9{bottom:938.317650px;}
.y38{bottom:943.071600px;}
.y106{bottom:947.813850px;}
.y9f{bottom:951.215400px;}
.y129{bottom:956.317650px;}
.y4{bottom:962.892150px;}
.y37{bottom:964.821600px;}
.y86{bottom:965.311800px;}
.y105{bottom:969.563850px;}
.y9e{bottom:972.965400px;}
.y128{bottom:978.067650px;}
.y36{bottom:986.571600px;}
.y9d{bottom:994.715400px;}
.y104{bottom:999.817650px;}
.y35{bottom:1008.321600px;}
.y9c{bottom:1016.465400px;}
.y3{bottom:1019.890950px;}
.y103{bottom:1021.567650px;}
.y34{bottom:1030.071600px;}
.y9b{bottom:1038.215400px;}
.y33{bottom:1051.821600px;}
.y2{bottom:1052.890950px;}
.y9a{bottom:1059.965400px;}
.y32{bottom:1073.571600px;}
.y1{bottom:1085.890950px;}
.y31{bottom:1095.321600px;}
.y2f{bottom:1178.022450px;}
.h9{height:41.929688px;}
.hb{height:43.347656px;}
.ha{height:43.546875px;}
.hc{height:45.615234px;}
.h6{height:47.170898px;}
.h7{height:48.990234px;}
.h3{height:50.536260px;}
.h4{height:50.536860px;}
.h5{height:52.412109px;}
.h8{height:54.433594px;}
.h2{height:72.984375px;}
.h1{height:1271.250000px;}
.h0{height:1271.338500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x7{left:127.558950px;}
.x2{left:129.259800px;}
.x4{left:137.577600px;}
.x3{left:139.791450px;}
.x5{left:181.520400px;}
.x6{left:306.595200px;}
.xa{left:369.496650px;}
.x8{left:548.742900px;}
.x9{left:768.067650px;}
@media print{
.v4{vertical-align:-17.760000pt;}
.v3{vertical-align:-13.012267pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.984000pt;}
.v1{vertical-align:17.760000pt;}
.ls3{letter-spacing:-0.853333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015467pt;}
.ls1{letter-spacing:0.960000pt;}
.ls5{letter-spacing:4.318933pt;}
.ls0{letter-spacing:10.039467pt;}
.ws3f{word-spacing:-53.333333pt;}
.wsac{word-spacing:-13.280000pt;}
.ws0{word-spacing:-13.226667pt;}
.ws64{word-spacing:-13.066667pt;}
.ws5{word-spacing:-12.720000pt;}
.ws3{word-spacing:-10.581333pt;}
.ws7f{word-spacing:-10.453333pt;}
.ws4{word-spacing:-9.728000pt;}
.ws1{word-spacing:-7.711147pt;}
.ws2{word-spacing:-6.940032pt;}
.ws35{word-spacing:-5.866667pt;}
.ws36{word-spacing:-3.360000pt;}
.wsc4{word-spacing:-3.306667pt;}
.ws29{word-spacing:-3.093333pt;}
.wsd5{word-spacing:-2.933333pt;}
.wsc6{word-spacing:-2.880000pt;}
.ws59{word-spacing:-2.826667pt;}
.wsb6{word-spacing:-2.613333pt;}
.wsaf{word-spacing:-2.506667pt;}
.wscf{word-spacing:-2.346667pt;}
.ws32{word-spacing:-2.240000pt;}
.ws21{word-spacing:-2.186667pt;}
.ws13{word-spacing:-2.133333pt;}
.wsab{word-spacing:-2.090667pt;}
.ws2a{word-spacing:-2.080000pt;}
.wsc8{word-spacing:-2.026667pt;}
.wsc1{word-spacing:-1.973333pt;}
.ws79{word-spacing:-1.962667pt;}
.wsbf{word-spacing:-1.920000pt;}
.ws38{word-spacing:-1.792000pt;}
.ws45{word-spacing:-1.706667pt;}
.ws8e{word-spacing:-1.600000pt;}
.wsa3{word-spacing:-1.546667pt;}
.wsb5{word-spacing:-1.493333pt;}
.ws85{word-spacing:-1.392000pt;}
.ws22{word-spacing:-1.386667pt;}
.ws60{word-spacing:-1.365333pt;}
.wsd9{word-spacing:-1.333333pt;}
.wsd8{word-spacing:-1.280000pt;}
.wsbe{word-spacing:-1.237333pt;}
.wsd{word-spacing:-1.226667pt;}
.ws1e{word-spacing:-1.194667pt;}
.ws81{word-spacing:-1.120000pt;}
.wsb7{word-spacing:-1.066667pt;}
.wsba{word-spacing:-1.024000pt;}
.ws5a{word-spacing:-1.013333pt;}
.ws1f{word-spacing:-0.960000pt;}
.ws25{word-spacing:-0.906667pt;}
.ws7e{word-spacing:-0.853333pt;}
.ws7a{word-spacing:-0.810667pt;}
.wsdd{word-spacing:-0.800000pt;}
.ws26{word-spacing:-0.746667pt;}
.wsbc{word-spacing:-0.725333pt;}
.ws99{word-spacing:-0.682667pt;}
.ws8d{word-spacing:-0.640000pt;}
.ws24{word-spacing:-0.586667pt;}
.ws70{word-spacing:-0.480000pt;}
.wsbb{word-spacing:-0.469333pt;}
.ws57{word-spacing:-0.320000pt;}
.ws97{word-spacing:-0.256000pt;}
.ws9a{word-spacing:-0.213333pt;}
.ws3a{word-spacing:-0.128000pt;}
.wsa{word-spacing:-0.106667pt;}
.wsb1{word-spacing:-0.053333pt;}
.ws88{word-spacing:-0.048000pt;}
.ws7b{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.ws94{word-spacing:0.042667pt;}
.ws9d{word-spacing:0.048000pt;}
.ws10{word-spacing:0.053333pt;}
.ws4e{word-spacing:0.096000pt;}
.ws58{word-spacing:0.106667pt;}
.ws77{word-spacing:0.160000pt;}
.wsa9{word-spacing:0.170667pt;}
.ws34{word-spacing:0.213333pt;}
.ws5e{word-spacing:0.320000pt;}
.ws18{word-spacing:0.341333pt;}
.wsad{word-spacing:0.373333pt;}
.wsa7{word-spacing:0.469333pt;}
.ws4d{word-spacing:0.480000pt;}
.ws7d{word-spacing:0.512000pt;}
.ws7c{word-spacing:0.554667pt;}
.wsd0{word-spacing:0.586667pt;}
.ws3e{word-spacing:0.597333pt;}
.ws62{word-spacing:0.640000pt;}
.ws61{word-spacing:0.682667pt;}
.ws78{word-spacing:0.693333pt;}
.wscb{word-spacing:0.746667pt;}
.ws50{word-spacing:0.768000pt;}
.ws31{word-spacing:0.800000pt;}
.ws5c{word-spacing:0.853333pt;}
.ws8b{word-spacing:0.864000pt;}
.ws30{word-spacing:1.013333pt;}
.ws1d{word-spacing:1.066667pt;}
.ws1c{word-spacing:1.109333pt;}
.wsc2{word-spacing:1.173333pt;}
.ws2d{word-spacing:1.226667pt;}
.ws12{word-spacing:1.248000pt;}
.wsf{word-spacing:1.280000pt;}
.ws76{word-spacing:1.333333pt;}
.wsc{word-spacing:1.440000pt;}
.ws3c{word-spacing:1.450667pt;}
.ws72{word-spacing:1.493333pt;}
.ws47{word-spacing:1.546667pt;}
.ws5f{word-spacing:1.578667pt;}
.ws9f{word-spacing:1.600000pt;}
.ws9c{word-spacing:1.632000pt;}
.ws4a{word-spacing:1.653333pt;}
.wsa1{word-spacing:1.680000pt;}
.ws8f{word-spacing:1.706667pt;}
.ws96{word-spacing:1.749333pt;}
.ws6f{word-spacing:1.760000pt;}
.wsdc{word-spacing:1.813333pt;}
.ws92{word-spacing:1.834667pt;}
.wsde{word-spacing:1.866667pt;}
.ws8a{word-spacing:1.872000pt;}
.ws2c{word-spacing:1.920000pt;}
.ws6b{word-spacing:1.973333pt;}
.ws39{word-spacing:2.005333pt;}
.wscd{word-spacing:2.080000pt;}
.ws11{word-spacing:2.186667pt;}
.wsda{word-spacing:2.240000pt;}
.wsa8{word-spacing:2.261333pt;}
.ws49{word-spacing:2.346667pt;}
.ws86{word-spacing:2.352000pt;}
.ws52{word-spacing:2.400000pt;}
.ws23{word-spacing:2.453333pt;}
.ws69{word-spacing:2.506667pt;}
.ws51{word-spacing:2.544000pt;}
.ws6a{word-spacing:2.560000pt;}
.ws53{word-spacing:2.592000pt;}
.wsaa{word-spacing:2.602667pt;}
.wsa5{word-spacing:2.613333pt;}
.ws6e{word-spacing:2.666667pt;}
.ws82{word-spacing:2.720000pt;}
.wsb8{word-spacing:2.773333pt;}
.wsd1{word-spacing:2.880000pt;}
.ws15{word-spacing:2.901333pt;}
.ws48{word-spacing:2.933333pt;}
.ws83{word-spacing:3.040000pt;}
.ws1b{word-spacing:3.072000pt;}
.ws5d{word-spacing:3.200000pt;}
.ws98{word-spacing:3.242667pt;}
.wse{word-spacing:3.253333pt;}
.ws89{word-spacing:3.264000pt;}
.wsb{word-spacing:3.360000pt;}
.wsc5{word-spacing:3.520000pt;}
.ws19{word-spacing:3.584000pt;}
.ws75{word-spacing:3.626667pt;}
.wsb0{word-spacing:3.680000pt;}
.ws1a{word-spacing:3.754667pt;}
.ws40{word-spacing:3.786667pt;}
.ws37{word-spacing:3.797333pt;}
.ws67{word-spacing:3.840000pt;}
.wsc3{word-spacing:3.893333pt;}
.ws80{word-spacing:3.946667pt;}
.ws8{word-spacing:3.984000pt;}
.ws6d{word-spacing:4.106667pt;}
.ws41{word-spacing:4.160000pt;}
.ws95{word-spacing:4.181333pt;}
.ws27{word-spacing:4.213333pt;}
.ws4f{word-spacing:4.224000pt;}
.ws3d{word-spacing:4.266667pt;}
.ws2b{word-spacing:4.373333pt;}
.ws33{word-spacing:4.480000pt;}
.wscc{word-spacing:4.533333pt;}
.wsc7{word-spacing:4.586667pt;}
.ws74{word-spacing:4.693333pt;}
.wsa0{word-spacing:4.800000pt;}
.wsa6{word-spacing:4.821333pt;}
.ws43{word-spacing:4.906667pt;}
.ws87{word-spacing:4.944000pt;}
.ws46{word-spacing:4.960000pt;}
.wsdb{word-spacing:5.066667pt;}
.wsc0{word-spacing:5.120000pt;}
.wsa2{word-spacing:5.232000pt;}
.wsbd{word-spacing:5.248000pt;}
.ws56{word-spacing:5.280000pt;}
.ws91{word-spacing:5.290667pt;}
.wsa4{word-spacing:5.386667pt;}
.ws93{word-spacing:5.418667pt;}
.ws6c{word-spacing:5.493333pt;}
.wsca{word-spacing:5.600000pt;}
.ws16{word-spacing:5.674667pt;}
.wsb2{word-spacing:5.706667pt;}
.ws3b{word-spacing:5.760000pt;}
.wsb9{word-spacing:5.813333pt;}
.ws68{word-spacing:5.866667pt;}
.wsb3{word-spacing:5.920000pt;}
.ws44{word-spacing:5.973333pt;}
.ws55{word-spacing:6.026667pt;}
.ws9b{word-spacing:6.080000pt;}
.ws4b{word-spacing:6.293333pt;}
.ws9{word-spacing:6.453333pt;}
.ws71{word-spacing:6.613333pt;}
.wsc9{word-spacing:6.666667pt;}
.ws84{word-spacing:6.880000pt;}
.ws8c{word-spacing:6.933333pt;}
.ws54{word-spacing:7.040000pt;}
.ws73{word-spacing:7.146667pt;}
.wsce{word-spacing:7.200000pt;}
.ws90{word-spacing:7.306667pt;}
.ws66{word-spacing:7.573333pt;}
.wsb4{word-spacing:7.626667pt;}
.ws4c{word-spacing:7.733333pt;}
.ws2f{word-spacing:7.786667pt;}
.ws65{word-spacing:7.840000pt;}
.ws2e{word-spacing:8.426667pt;}
.ws9e{word-spacing:8.693333pt;}
.wsae{word-spacing:8.746667pt;}
.ws42{word-spacing:9.173333pt;}
.ws63{word-spacing:9.301333pt;}
.ws5b{word-spacing:9.706667pt;}
.ws28{word-spacing:9.973333pt;}
.wsd7{word-spacing:11.306667pt;}
.wsd6{word-spacing:11.413333pt;}
.ws14{word-spacing:13.397333pt;}
.wsd3{word-spacing:16.906667pt;}
.wsd2{word-spacing:17.066667pt;}
.wsdf{word-spacing:17.706667pt;}
.wse0{word-spacing:17.866667pt;}
.ws17{word-spacing:25.941333pt;}
.wsd4{word-spacing:59.306667pt;}
.ws7{word-spacing:178.773333pt;}
.ws20{word-spacing:925.380267pt;}
._5{margin-left:-25.989333pt;}
._7{margin-left:-23.443200pt;}
._a{margin-left:-21.066667pt;}
._10{margin-left:-16.586667pt;}
._9{margin-left:-15.153067pt;}
._f{margin-left:-11.520000pt;}
._14{margin-left:-9.202133pt;}
._d{margin-left:-5.889067pt;}
._4{margin-left:-4.776000pt;}
._1{margin-left:-3.099733pt;}
._13{margin-left:-2.192533pt;}
._0{margin-left:-1.297067pt;}
._2{width:1.126400pt;}
._c{width:2.049600pt;}
._b{width:3.713600pt;}
._e{width:4.735467pt;}
._8{width:6.309333pt;}
._12{width:7.894400pt;}
._11{width:9.083733pt;}
._15{width:11.670400pt;}
._16{width:18.253333pt;}
._6{width:22.314667pt;}
._3{width:25.898667pt;}
.fs4{font-size:27.984000pt;}
.fs2{font-size:31.093333pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:44.233333pt;}
.y65{bottom:47.027600pt;}
.y30{bottom:50.280667pt;}
.y2e{bottom:72.150267pt;}
.y85{bottom:76.346400pt;}
.y63{bottom:76.346533pt;}
.y99{bottom:76.346667pt;}
.y2d{bottom:85.483600pt;}
.y62{bottom:89.679867pt;}
.y98{bottom:89.680000pt;}
.y2c{bottom:98.816933pt;}
.y61{bottom:103.013200pt;}
.y97{bottom:103.013467pt;}
.y2b{bottom:112.150267pt;}
.y127{bottom:113.792533pt;}
.y60{bottom:116.346533pt;}
.y96{bottom:116.346800pt;}
.y5f{bottom:129.679867pt;}
.y84{bottom:129.680000pt;}
.yc8{bottom:129.680133pt;}
.y95{bottom:129.680267pt;}
.y126{bottom:133.125867pt;}
.y2a{bottom:141.732400pt;}
.y5e{bottom:143.013200pt;}
.y83{bottom:143.013333pt;}
.yc7{bottom:143.013600pt;}
.y94{bottom:143.013733pt;}
.y102{bottom:151.267467pt;}
.y29{bottom:155.065733pt;}
.y5d{bottom:156.346533pt;}
.y82{bottom:156.346667pt;}
.yc6{bottom:156.346933pt;}
.y93{bottom:156.347067pt;}
.y125{bottom:160.018133pt;}
.y28{bottom:168.399067pt;}
.y5c{bottom:169.679867pt;}
.yc5{bottom:169.680267pt;}
.y92{bottom:169.680400pt;}
.y101{bottom:170.600800pt;}
.y124{bottom:179.351467pt;}
.y27{bottom:181.732400pt;}
.y5b{bottom:183.013200pt;}
.yc4{bottom:183.013600pt;}
.y91{bottom:183.013733pt;}
.y81{bottom:184.175600pt;}
.y100{bottom:189.934133pt;}
.y26{bottom:195.065733pt;}
.y5a{bottom:196.346533pt;}
.yc3{bottom:196.346933pt;}
.y90{bottom:196.347200pt;}
.y123{bottom:198.684800pt;}
.y80{bottom:203.508933pt;}
.y25{bottom:208.399067pt;}
.y59{bottom:209.679867pt;}
.yc2{bottom:209.680267pt;}
.y8f{bottom:209.680667pt;}
.yff{bottom:216.826533pt;}
.y24{bottom:221.732533pt;}
.y7f{bottom:222.842267pt;}
.y58{bottom:223.013200pt;}
.yc1{bottom:223.013600pt;}
.y8e{bottom:223.014000pt;}
.y122{bottom:225.577200pt;}
.y23{bottom:235.066000pt;}
.y57{bottom:236.346533pt;}
.yc0{bottom:236.346933pt;}
.y7e{bottom:242.175600pt;}
.yfe{bottom:243.718933pt;}
.y121{bottom:244.910533pt;}
.y22{bottom:248.399333pt;}
.y56{bottom:249.679867pt;}
.ybf{bottom:249.680400pt;}
.y7d{bottom:261.508933pt;}
.y21{bottom:261.732667pt;}
.y55{bottom:263.013200pt;}
.ybe{bottom:263.013867pt;}
.yfd{bottom:263.052267pt;}
.y120{bottom:264.243867pt;}
.y20{bottom:275.066133pt;}
.y54{bottom:276.346533pt;}
.ybd{bottom:276.347200pt;}
.y7c{bottom:280.842267pt;}
.y1f{bottom:288.399600pt;}
.y53{bottom:289.679867pt;}
.ybc{bottom:289.680667pt;}
.yfc{bottom:289.944667pt;}
.y11f{bottom:291.136267pt;}
.y7b{bottom:300.175600pt;}
.y1e{bottom:301.732933pt;}
.y52{bottom:303.013200pt;}
.ybb{bottom:303.014000pt;}
.yee{bottom:304.627067pt;}
.ye5{bottom:306.716400pt;}
.yfb{bottom:309.278000pt;}
.y11e{bottom:310.469600pt;}
.y1d{bottom:315.066267pt;}
.y51{bottom:316.346533pt;}
.y7a{bottom:319.508933pt;}
.y8d{bottom:323.960400pt;}
.ye4{bottom:326.049733pt;}
.y1c{bottom:328.399600pt;}
.y50{bottom:329.679867pt;}
.yba{bottom:335.073333pt;}
.yfa{bottom:336.170400pt;}
.y11d{bottom:337.362000pt;}
.y79{bottom:338.842267pt;}
.y1b{bottom:341.733067pt;}
.y4f{bottom:343.013200pt;}
.y8c{bottom:343.293733pt;}
.ye3{bottom:345.383067pt;}
.yb9{bottom:354.406667pt;}
.y1a{bottom:355.066533pt;}
.yf9{bottom:355.503733pt;}
.y4e{bottom:356.346533pt;}
.y11c{bottom:356.695333pt;}
.y78{bottom:358.175600pt;}
.y8b{bottom:362.627067pt;}
.ye2{bottom:364.716400pt;}
.yb8{bottom:373.740000pt;}
.yf8{bottom:374.837067pt;}
.y11b{bottom:376.028667pt;}
.y77{bottom:377.508933pt;}
.y8a{bottom:381.960400pt;}
.ye1{bottom:384.049733pt;}
.yb7{bottom:393.073333pt;}
.y11a{bottom:395.362000pt;}
.y76{bottom:396.842267pt;}
.y4d{bottom:401.293733pt;}
.yf7{bottom:401.729467pt;}
.ye0{bottom:403.383067pt;}
.y19{bottom:405.652133pt;}
.yb6{bottom:412.406667pt;}
.y119{bottom:414.695333pt;}
.y4c{bottom:420.627067pt;}
.yf6{bottom:421.062800pt;}
.ydf{bottom:422.716400pt;}
.y75{bottom:423.734667pt;}
.y18{bottom:424.985467pt;}
.yb5{bottom:431.740000pt;}
.y74{bottom:439.734667pt;}
.y4b{bottom:439.960400pt;}
.y118{bottom:441.587733pt;}
.yde{bottom:442.049733pt;}
.yf5{bottom:447.955200pt;}
.yb4{bottom:451.073333pt;}
.y17{bottom:451.877867pt;}
.y73{bottom:455.734667pt;}
.y4a{bottom:459.293733pt;}
.y117{bottom:460.921067pt;}
.ydd{bottom:461.383067pt;}
.yf4{bottom:467.288533pt;}
.y16{bottom:467.877867pt;}
.yb3{bottom:470.406667pt;}
.y72{bottom:471.734667pt;}
.y49{bottom:478.627067pt;}
.y116{bottom:480.254400pt;}
.ydc{bottom:480.716400pt;}
.y15{bottom:483.877867pt;}
.y71{bottom:487.734667pt;}
.yb2{bottom:489.740000pt;}
.yf3{bottom:494.180933pt;}
.y48{bottom:497.960400pt;}
.y115{bottom:499.587733pt;}
.y70{bottom:503.734667pt;}
.y14{bottom:507.436933pt;}
.ydb{bottom:507.608667pt;}
.yb1{bottom:509.073333pt;}
.yf2{bottom:513.514267pt;}
.y47{bottom:517.293733pt;}
.y6f{bottom:519.734667pt;}
.yda{bottom:523.608667pt;}
.y114{bottom:526.480133pt;}
.y13{bottom:526.770267pt;}
.yf1{bottom:532.847600pt;}
.y6e{bottom:535.734667pt;}
.yb0{bottom:535.965733pt;}
.y46{bottom:536.627067pt;}
.yd9{bottom:539.608667pt;}
.y113{bottom:545.813467pt;}
.y12{bottom:546.103600pt;}
.yed{bottom:548.721600pt;}
.y6d{bottom:551.734667pt;}
.yaf{bottom:551.965733pt;}
.yf0{bottom:552.180933pt;}
.yd8{bottom:555.608667pt;}
.y45{bottom:555.960400pt;}
.y11{bottom:565.436933pt;}
.yae{bottom:567.965733pt;}
.yd7{bottom:571.608667pt;}
.y112{bottom:572.705867pt;}
.y44{bottom:575.293733pt;}
.yad{bottom:583.965733pt;}
.y10{bottom:584.770267pt;}
.yec{bottom:586.952533pt;}
.yef{bottom:587.388267pt;}
.yd6{bottom:587.608667pt;}
.y111{bottom:592.039200pt;}
.y43{bottom:594.627067pt;}
.yac{bottom:599.965733pt;}
.yf{bottom:604.103600pt;}
.yeb{bottom:606.285867pt;}
.yd5{bottom:611.167733pt;}
.y110{bottom:611.372533pt;}
.y42{bottom:613.960400pt;}
.yab{bottom:615.965733pt;}
.ye{bottom:623.436933pt;}
.yea{bottom:625.619200pt;}
.yd4{bottom:630.501067pt;}
.yaa{bottom:631.965733pt;}
.y41{bottom:633.293733pt;}
.y10f{bottom:638.264933pt;}
.yd{bottom:642.770267pt;}
.ye9{bottom:644.952533pt;}
.ya9{bottom:647.965600pt;}
.yd3{bottom:649.834533pt;}
.y40{bottom:652.627067pt;}
.y10e{bottom:657.598267pt;}
.yc{bottom:662.103600pt;}
.ye8{bottom:664.285867pt;}
.yd2{bottom:669.167867pt;}
.ya8{bottom:671.524800pt;}
.y3f{bottom:671.960400pt;}
.yb{bottom:681.436933pt;}
.ye7{bottom:683.619200pt;}
.y6c{bottom:684.054933pt;}
.y10d{bottom:684.490667pt;}
.yd1{bottom:688.501200pt;}
.ya7{bottom:690.858133pt;}
.y3e{bottom:691.293733pt;}
.y12e{bottom:692.049600pt;}
.ya{bottom:700.770267pt;}
.ye6{bottom:702.952533pt;}
.y10c{bottom:703.824000pt;}
.yd0{bottom:707.834533pt;}
.ya6{bottom:710.191467pt;}
.y3d{bottom:710.627067pt;}
.y12d{bottom:711.382933pt;}
.y6b{bottom:722.285867pt;}
.ycf{bottom:727.167867pt;}
.y9{bottom:727.662667pt;}
.ya5{bottom:729.524800pt;}
.y3c{bottom:729.960400pt;}
.y10b{bottom:730.716267pt;}
.y12c{bottom:738.275333pt;}
.y6a{bottom:741.619200pt;}
.y8{bottom:743.662667pt;}
.ya4{bottom:748.858133pt;}
.y3b{bottom:749.293733pt;}
.y10a{bottom:750.049600pt;}
.yce{bottom:754.060133pt;}
.y12b{bottom:757.608667pt;}
.y7{bottom:759.662667pt;}
.y69{bottom:760.952533pt;}
.ya3{bottom:768.191467pt;}
.y3a{bottom:768.627067pt;}
.ycd{bottom:770.060133pt;}
.y109{bottom:776.942000pt;}
.y68{bottom:780.285867pt;}
.ycc{bottom:786.060133pt;}
.ya2{bottom:787.524800pt;}
.y89{bottom:787.960400pt;}
.y6{bottom:794.560267pt;}
.y108{bottom:796.275333pt;}
.y67{bottom:799.619200pt;}
.y39{bottom:800.054933pt;}
.ycb{bottom:802.060133pt;}
.y12a{bottom:803.834533pt;}
.ya1{bottom:806.858133pt;}
.y88{bottom:807.293733pt;}
.yca{bottom:818.060133pt;}
.y66{bottom:818.952533pt;}
.y107{bottom:823.167867pt;}
.y5{bottom:825.232133pt;}
.ya0{bottom:826.191467pt;}
.y87{bottom:826.627067pt;}
.yc9{bottom:834.060133pt;}
.y38{bottom:838.285867pt;}
.y106{bottom:842.501200pt;}
.y9f{bottom:845.524800pt;}
.y129{bottom:850.060133pt;}
.y4{bottom:855.904133pt;}
.y37{bottom:857.619200pt;}
.y86{bottom:858.054933pt;}
.y105{bottom:861.834533pt;}
.y9e{bottom:864.858133pt;}
.y128{bottom:869.393467pt;}
.y36{bottom:876.952533pt;}
.y9d{bottom:884.191467pt;}
.y104{bottom:888.726800pt;}
.y35{bottom:896.285867pt;}
.y9c{bottom:903.524800pt;}
.y3{bottom:906.569733pt;}
.y103{bottom:908.060133pt;}
.y34{bottom:915.619200pt;}
.y9b{bottom:922.858133pt;}
.y33{bottom:934.952533pt;}
.y2{bottom:935.903067pt;}
.y9a{bottom:942.191467pt;}
.y32{bottom:954.285867pt;}
.y1{bottom:965.236400pt;}
.y31{bottom:973.619200pt;}
.y2f{bottom:1047.131067pt;}
.h9{height:37.270833pt;}
.hb{height:38.531250pt;}
.ha{height:38.708333pt;}
.hc{height:40.546875pt;}
.h6{height:41.929688pt;}
.h7{height:43.546875pt;}
.h3{height:44.921120pt;}
.h4{height:44.921653pt;}
.h5{height:46.588542pt;}
.h8{height:48.385417pt;}
.h2{height:64.875000pt;}
.h1{height:1130.000000pt;}
.h0{height:1130.078667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x7{left:113.385733pt;}
.x2{left:114.897600pt;}
.x4{left:122.291200pt;}
.x3{left:124.259067pt;}
.x5{left:161.351467pt;}
.x6{left:272.529067pt;}
.xa{left:328.441467pt;}
.x8{left:487.771467pt;}
.x9{left:682.726800pt;}
}




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