
    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_38b69df830c392ab80cdf1b6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.118000;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_4254c44c8cf88ec46765d699.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.132000;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_8ad3b127ac96541c02a62258.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.140000;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_c4aaeda2645f1b854e3b42ef.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.116000;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_a45d83eca47f1b05743bd320.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.071000;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_8519841b7eb708dc96ab7351.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.141000;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_85378b16a56b8e497e393be9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.178000;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_57fdeab97dc44d70df18e0e5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_bd3c856e84bdd9b73f3513b2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.175000;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_0991e3175f72250d75701b3c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.970000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b4cf2f65de18e8a292513253.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3{vertical-align:-17.982000px;}
.v2{vertical-align:-3.756000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.976000px;}
.v1{vertical-align:74.220000px;}
.ls7{letter-spacing:-3.180000px;}
.ls5{letter-spacing:-1.440000px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.570000px;}
.ls1{letter-spacing:1.500000px;}
.ls2{letter-spacing:8.532000px;}
.ls0{letter-spacing:10.500000px;}
.ls4{letter-spacing:17.841000px;}
.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;}
}
.ws4{word-spacing:-45.806850px;}
.ws3{word-spacing:-26.400000px;}
.ws1{word-spacing:-18.300000px;}
.ws0{word-spacing:-18.000000px;}
.ws93{word-spacing:-15.360000px;}
.ws60{word-spacing:-14.820000px;}
.wsc2{word-spacing:-13.620000px;}
.wsc4{word-spacing:-12.150000px;}
.ws2{word-spacing:-9.450000px;}
.wsc3{word-spacing:-7.870500px;}
.wsc5{word-spacing:-7.083450px;}
.wsfb{word-spacing:-3.402000px;}
.wsad{word-spacing:-2.679000px;}
.wsa0{word-spacing:-2.622000px;}
.ws55{word-spacing:-2.223000px;}
.wsa5{word-spacing:-1.995000px;}
.ws47{word-spacing:-1.938000px;}
.ws7{word-spacing:-1.890000px;}
.ws8{word-spacing:-1.728000px;}
.ws4c{word-spacing:-1.539000px;}
.wsfe{word-spacing:-1.512000px;}
.wsfd{word-spacing:-1.350000px;}
.ws7c{word-spacing:-1.311000px;}
.ws92{word-spacing:-1.254000px;}
.wsa3{word-spacing:-1.083000px;}
.ws10{word-spacing:-0.972000px;}
.ws91{word-spacing:-0.912000px;}
.ws9c{word-spacing:-0.855000px;}
.wsf9{word-spacing:-0.810000px;}
.ws5a{word-spacing:-0.798000px;}
.wscd{word-spacing:-0.684000px;}
.wsd9{word-spacing:-0.570000px;}
.wsb{word-spacing:-0.540000px;}
.wsb3{word-spacing:-0.513000px;}
.wsf8{word-spacing:-0.432000px;}
.ws57{word-spacing:-0.399000px;}
.wsf7{word-spacing:-0.378000px;}
.ws99{word-spacing:-0.285000px;}
.ws2b{word-spacing:-0.216000px;}
.ws7e{word-spacing:-0.171000px;}
.ws15{word-spacing:-0.162000px;}
.ws6{word-spacing:0.000000px;}
.ws61{word-spacing:0.057000px;}
.ws50{word-spacing:0.171000px;}
.ws70{word-spacing:0.228000px;}
.ws41{word-spacing:0.285000px;}
.ws90{word-spacing:0.342000px;}
.ws103{word-spacing:0.378000px;}
.ws102{word-spacing:0.432000px;}
.ws7b{word-spacing:0.456000px;}
.ws66{word-spacing:0.513000px;}
.ws5b{word-spacing:0.627000px;}
.ws9{word-spacing:0.702000px;}
.wsf6{word-spacing:0.756000px;}
.ws53{word-spacing:0.798000px;}
.wsa{word-spacing:0.810000px;}
.wsf5{word-spacing:0.864000px;}
.ws69{word-spacing:0.969000px;}
.ws58{word-spacing:1.311000px;}
.ws72{word-spacing:1.368000px;}
.ws43{word-spacing:1.425000px;}
.ws1a{word-spacing:1.512000px;}
.ws63{word-spacing:1.653000px;}
.wsdc{word-spacing:1.710000px;}
.ws76{word-spacing:1.767000px;}
.ws6c{word-spacing:1.824000px;}
.ws2d{word-spacing:1.836000px;}
.ws40{word-spacing:1.881000px;}
.wsa6{word-spacing:1.938000px;}
.ws2c{word-spacing:1.998000px;}
.wsd4{word-spacing:2.109000px;}
.ws79{word-spacing:2.337000px;}
.ws86{word-spacing:2.394000px;}
.wsac{word-spacing:2.679000px;}
.wsdd{word-spacing:2.736000px;}
.ws5e{word-spacing:2.793000px;}
.ws52{word-spacing:2.907000px;}
.wsf3{word-spacing:2.916000px;}
.wsff{word-spacing:2.970000px;}
.ws19{word-spacing:3.186000px;}
.wsf2{word-spacing:3.294000px;}
.wse{word-spacing:3.402000px;}
.wsa4{word-spacing:3.420000px;}
.ws1b{word-spacing:3.456000px;}
.ws4d{word-spacing:3.477000px;}
.wsd{word-spacing:3.564000px;}
.ws8d{word-spacing:3.648000px;}
.ws8e{word-spacing:3.705000px;}
.wsf{word-spacing:3.780000px;}
.ws1c{word-spacing:3.834000px;}
.wsc{word-spacing:3.942000px;}
.wsd8{word-spacing:3.990000px;}
.ws100{word-spacing:3.996000px;}
.ws2e{word-spacing:4.050000px;}
.ws30{word-spacing:4.212000px;}
.ws64{word-spacing:4.218000px;}
.ws80{word-spacing:4.332000px;}
.wsfa{word-spacing:4.374000px;}
.ws73{word-spacing:4.446000px;}
.ws2f{word-spacing:4.482000px;}
.ws7a{word-spacing:4.503000px;}
.ws101{word-spacing:4.590000px;}
.ws4e{word-spacing:4.617000px;}
.wsee{word-spacing:4.698000px;}
.ws42{word-spacing:4.731000px;}
.ws4b{word-spacing:4.845000px;}
.wscc{word-spacing:5.016000px;}
.ws31{word-spacing:5.022000px;}
.ws71{word-spacing:5.073000px;}
.wsc8{word-spacing:5.130000px;}
.wse0{word-spacing:5.187000px;}
.wsef{word-spacing:5.238000px;}
.ws12{word-spacing:5.346000px;}
.ws7d{word-spacing:5.358000px;}
.wsbe{word-spacing:5.472000px;}
.ws56{word-spacing:5.529000px;}
.ws32{word-spacing:5.562000px;}
.ws24{word-spacing:5.616000px;}
.ws67{word-spacing:5.643000px;}
.ws82{word-spacing:5.757000px;}
.ws5{word-spacing:5.778000px;}
.wsc6{word-spacing:5.814000px;}
.ws77{word-spacing:5.928000px;}
.wse3{word-spacing:5.985000px;}
.ws11{word-spacing:5.994000px;}
.wsa1{word-spacing:6.042000px;}
.ws36{word-spacing:6.048000px;}
.wsed{word-spacing:6.318000px;}
.ws68{word-spacing:6.327000px;}
.wscb{word-spacing:6.384000px;}
.wsb0{word-spacing:6.441000px;}
.wseb{word-spacing:6.534000px;}
.ws75{word-spacing:6.555000px;}
.wsfc{word-spacing:6.588000px;}
.wse9{word-spacing:6.642000px;}
.wsa2{word-spacing:6.669000px;}
.ws35{word-spacing:6.696000px;}
.wse5{word-spacing:6.726000px;}
.ws51{word-spacing:6.897000px;}
.wsec{word-spacing:7.020000px;}
.ws87{word-spacing:7.068000px;}
.ws3a{word-spacing:7.128000px;}
.ws65{word-spacing:7.182000px;}
.wsea{word-spacing:7.236000px;}
.ws48{word-spacing:7.239000px;}
.ws37{word-spacing:7.290000px;}
.ws6f{word-spacing:7.353000px;}
.wsd5{word-spacing:7.410000px;}
.ws16{word-spacing:7.452000px;}
.ws88{word-spacing:7.467000px;}
.ws74{word-spacing:7.638000px;}
.ws23{word-spacing:7.722000px;}
.ws9a{word-spacing:7.752000px;}
.ws17{word-spacing:7.776000px;}
.ws78{word-spacing:7.809000px;}
.ws39{word-spacing:7.884000px;}
.wsa8{word-spacing:8.037000px;}
.wsca{word-spacing:8.094000px;}
.ws38{word-spacing:8.100000px;}
.ws46{word-spacing:8.265000px;}
.wsa9{word-spacing:8.322000px;}
.ws89{word-spacing:8.379000px;}
.wsb4{word-spacing:8.436000px;}
.ws5d{word-spacing:8.493000px;}
.ws13{word-spacing:8.532000px;}
.ws54{word-spacing:8.550000px;}
.ws22{word-spacing:8.586000px;}
.wsb6{word-spacing:8.607000px;}
.ws18{word-spacing:8.694000px;}
.ws6a{word-spacing:8.721000px;}
.wscf{word-spacing:8.778000px;}
.ws4a{word-spacing:8.949000px;}
.ws7f{word-spacing:9.006000px;}
.wsb7{word-spacing:9.348000px;}
.ws14{word-spacing:9.450000px;}
.ws97{word-spacing:9.519000px;}
.wsd3{word-spacing:9.576000px;}
.ws4f{word-spacing:9.633000px;}
.wsb5{word-spacing:9.804000px;}
.wsd2{word-spacing:9.861000px;}
.wsb8{word-spacing:9.975000px;}
.ws6b{word-spacing:10.089000px;}
.wsd7{word-spacing:10.146000px;}
.ws62{word-spacing:10.317000px;}
.wsd1{word-spacing:10.431000px;}
.ws95{word-spacing:10.488000px;}
.ws28{word-spacing:10.584000px;}
.wsaa{word-spacing:10.602000px;}
.ws96{word-spacing:10.659000px;}
.ws9d{word-spacing:10.773000px;}
.ws2a{word-spacing:10.800000px;}
.wsd6{word-spacing:10.830000px;}
.ws59{word-spacing:10.887000px;}
.ws8f{word-spacing:11.001000px;}
.wsf0{word-spacing:11.070000px;}
.wsf1{word-spacing:11.286000px;}
.ws34{word-spacing:11.394000px;}
.ws8c{word-spacing:11.457000px;}
.ws33{word-spacing:11.502000px;}
.ws9b{word-spacing:11.514000px;}
.ws8a{word-spacing:11.628000px;}
.ws27{word-spacing:11.718000px;}
.wsdb{word-spacing:11.856000px;}
.wsb9{word-spacing:11.913000px;}
.ws29{word-spacing:11.988000px;}
.ws9f{word-spacing:12.027000px;}
.ws6d{word-spacing:12.084000px;}
.wsa7{word-spacing:12.141000px;}
.ws3e{word-spacing:12.198000px;}
.ws49{word-spacing:12.597000px;}
.ws25{word-spacing:12.636000px;}
.wsde{word-spacing:12.711000px;}
.ws5c{word-spacing:12.768000px;}
.ws8b{word-spacing:12.825000px;}
.wsae{word-spacing:12.882000px;}
.ws84{word-spacing:12.996000px;}
.ws1f{word-spacing:13.284000px;}
.wsf4{word-spacing:13.392000px;}
.wse4{word-spacing:13.509000px;}
.wsd0{word-spacing:13.566000px;}
.ws1d{word-spacing:13.716000px;}
.ws44{word-spacing:13.737000px;}
.ws26{word-spacing:14.040000px;}
.wsbc{word-spacing:14.307000px;}
.ws85{word-spacing:14.421000px;}
.ws94{word-spacing:14.478000px;}
.ws1e{word-spacing:14.742000px;}
.wse2{word-spacing:14.877000px;}
.ws3f{word-spacing:15.162000px;}
.wsc0{word-spacing:15.276000px;}
.wse6{word-spacing:15.789000px;}
.wsb1{word-spacing:16.017000px;}
.wsba{word-spacing:16.245000px;}
.wse7{word-spacing:16.587000px;}
.wsc1{word-spacing:17.157000px;}
.wsbf{word-spacing:17.613000px;}
.wsce{word-spacing:17.670000px;}
.ws81{word-spacing:17.727000px;}
.ws9e{word-spacing:17.841000px;}
.wsaf{word-spacing:18.069000px;}
.wsc7{word-spacing:18.696000px;}
.wsab{word-spacing:19.152000px;}
.wse1{word-spacing:19.209000px;}
.wsdf{word-spacing:20.064000px;}
.ws83{word-spacing:20.121000px;}
.wse8{word-spacing:20.862000px;}
.ws3c{word-spacing:21.147000px;}
.ws6e{word-spacing:21.717000px;}
.wsbd{word-spacing:22.002000px;}
.ws45{word-spacing:22.116000px;}
.wsbb{word-spacing:22.857000px;}
.ws20{word-spacing:26.622000px;}
.wsc9{word-spacing:26.961000px;}
.wsb2{word-spacing:27.987000px;}
.wsda{word-spacing:29.355000px;}
.ws21{word-spacing:29.592000px;}
.ws98{word-spacing:31.977000px;}
.ws3b{word-spacing:34.827000px;}
.ws3d{word-spacing:40.698000px;}
.ws5f{word-spacing:56.532000px;}
._8{margin-left:-22.629000px;}
._6{margin-left:-21.318000px;}
._4{margin-left:-5.130000px;}
._1{margin-left:-2.580000px;}
._0{margin-left:-1.230600px;}
._2{width:1.188000px;}
._7{width:2.337000px;}
._3{width:6.264000px;}
._9{width:7.344000px;}
._5{width:1729.020600px;}
.fc6{color:transparent;}
.fc4{color:rgb(167,165,166);}
.fc5{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(145,143,143);}
.fc0{color:rgb(90,87,88);}
.fs0{font-size:30.000000px;}
.fs9{font-size:31.482000px;}
.fs7{font-size:36.000000px;}
.fs3{font-size:37.800000px;}
.fs8{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:96.000000px;}
.fs5{font-size:183.227400px;}
.y56{bottom:-26.197650px;}
.y0{bottom:0.000000px;}
.y9c{bottom:84.546600px;}
.ye9{bottom:85.138350px;}
.y11d{bottom:85.556850px;}
.y84{bottom:86.612850px;}
.ycd{bottom:86.684850px;}
.y55{bottom:86.870850px;}
.y9b{bottom:103.100100px;}
.ye8{bottom:103.691850px;}
.y83{bottom:105.166350px;}
.ycc{bottom:105.238350px;}
.y54{bottom:105.424350px;}
.y11c{bottom:110.288850px;}
.y9a{bottom:121.653600px;}
.ye7{bottom:122.245350px;}
.y82{bottom:123.719850px;}
.ycb{bottom:123.791850px;}
.y53{bottom:123.977850px;}
.y11b{bottom:126.637350px;}
.y99{bottom:140.207100px;}
.ye6{bottom:140.798850px;}
.y81{bottom:142.273350px;}
.yca{bottom:142.345350px;}
.y52{bottom:142.531350px;}
.y11a{bottom:142.985850px;}
.y98{bottom:158.760600px;}
.y119{bottom:159.334350px;}
.ye5{bottom:159.352350px;}
.y80{bottom:160.826850px;}
.yc9{bottom:160.898850px;}
.y51{bottom:161.084850px;}
.y118{bottom:175.682850px;}
.y97{bottom:177.314100px;}
.ye4{bottom:177.905850px;}
.y7f{bottom:179.380350px;}
.yc8{bottom:179.452350px;}
.y50{bottom:179.638350px;}
.y117{bottom:192.031350px;}
.y116{bottom:192.035850px;}
.y96{bottom:195.867600px;}
.ye3{bottom:196.459350px;}
.y7e{bottom:197.933850px;}
.yc7{bottom:198.005850px;}
.y4f{bottom:198.191850px;}
.y115{bottom:208.384350px;}
.y95{bottom:214.421100px;}
.ye2{bottom:215.012850px;}
.y7d{bottom:216.487350px;}
.yc6{bottom:216.559350px;}
.y4e{bottom:216.745350px;}
.y114{bottom:224.732850px;}
.y2d{bottom:226.825350px;}
.y94{bottom:232.974600px;}
.ye1{bottom:233.566350px;}
.y7c{bottom:235.040850px;}
.yc5{bottom:235.112850px;}
.y4d{bottom:235.298850px;}
.y113{bottom:241.091850px;}
.y93{bottom:251.528100px;}
.y2c{bottom:251.557350px;}
.ye0{bottom:252.119850px;}
.y7b{bottom:253.594350px;}
.yc4{bottom:253.666350px;}
.y4c{bottom:253.852350px;}
.y112{bottom:257.440350px;}
.y2b{bottom:267.905850px;}
.y92{bottom:270.081600px;}
.ydf{bottom:270.673350px;}
.y7a{bottom:272.147850px;}
.yc3{bottom:272.219850px;}
.y4b{bottom:272.405850px;}
.y111{bottom:273.788850px;}
.y2a{bottom:284.254350px;}
.y91{bottom:288.635100px;}
.yde{bottom:289.226850px;}
.y110{bottom:290.137350px;}
.y79{bottom:290.701350px;}
.yc2{bottom:290.773350px;}
.y4a{bottom:290.959350px;}
.y29{bottom:300.602850px;}
.y10f{bottom:306.485850px;}
.y90{bottom:307.188600px;}
.ydd{bottom:307.780350px;}
.y78{bottom:309.254850px;}
.yc1{bottom:309.326850px;}
.y49{bottom:309.512850px;}
.y28{bottom:316.951350px;}
.y10e{bottom:322.834350px;}
.y8f{bottom:325.742100px;}
.ydc{bottom:326.333850px;}
.y77{bottom:327.808350px;}
.yc0{bottom:327.880350px;}
.y48{bottom:328.066350px;}
.y27{bottom:333.299850px;}
.y10d{bottom:339.182850px;}
.y8e{bottom:344.295600px;}
.ydb{bottom:344.887350px;}
.y76{bottom:346.361850px;}
.ybf{bottom:346.433850px;}
.y47{bottom:346.619850px;}
.y26{bottom:349.648350px;}
.y10c{bottom:355.532850px;}
.y8d{bottom:362.849100px;}
.yda{bottom:363.440850px;}
.y75{bottom:364.915350px;}
.ybe{bottom:364.987350px;}
.y46{bottom:365.173350px;}
.y25{bottom:366.023850px;}
.y10a{bottom:371.881350px;}
.y109{bottom:371.887350px;}
.y10b{bottom:376.376850px;}
.y8c{bottom:381.402600px;}
.yd9{bottom:381.994350px;}
.y24{bottom:382.372350px;}
.y74{bottom:383.468850px;}
.ybd{bottom:383.540850px;}
.y45{bottom:383.726850px;}
.y108{bottom:388.235850px;}
.y23{bottom:398.720850px;}
.y8b{bottom:399.956100px;}
.yd8{bottom:400.547850px;}
.y73{bottom:402.022350px;}
.ybc{bottom:402.094350px;}
.y44{bottom:402.280350px;}
.y107{bottom:404.584350px;}
.y22{bottom:415.069350px;}
.y8a{bottom:418.509600px;}
.yd7{bottom:419.101350px;}
.y72{bottom:420.575850px;}
.ybb{bottom:420.647850px;}
.y43{bottom:420.833850px;}
.y106{bottom:420.932850px;}
.y21{bottom:431.417850px;}
.y89{bottom:437.063100px;}
.y105{bottom:437.282850px;}
.yd6{bottom:437.654850px;}
.y71{bottom:439.129350px;}
.yba{bottom:439.201350px;}
.y42{bottom:439.387350px;}
.y20{bottom:447.766350px;}
.y103{bottom:453.631350px;}
.y102{bottom:453.634350px;}
.y88{bottom:455.616600px;}
.yd5{bottom:456.208350px;}
.y70{bottom:457.682850px;}
.yb9{bottom:457.754850px;}
.y41{bottom:457.940850px;}
.y104{bottom:458.126850px;}
.y1f{bottom:464.114850px;}
.y101{bottom:469.982850px;}
.y87{bottom:474.170100px;}
.yd4{bottom:474.761850px;}
.y6f{bottom:476.236350px;}
.yb8{bottom:476.308350px;}
.y40{bottom:476.494350px;}
.y1e{bottom:480.463350px;}
.y100{bottom:486.331350px;}
.y86{bottom:492.723600px;}
.yd3{bottom:493.315350px;}
.y6e{bottom:494.789850px;}
.yb7{bottom:494.861850px;}
.y3f{bottom:495.047850px;}
.y1d{bottom:496.811850px;}
.y85{bottom:511.277100px;}
.yd2{bottom:511.868850px;}
.y1c{bottom:513.160350px;}
.y6d{bottom:513.343350px;}
.yb6{bottom:513.415350px;}
.y3e{bottom:513.601350px;}
.y1b{bottom:529.508850px;}
.yd1{bottom:530.422350px;}
.y6c{bottom:531.896850px;}
.yff{bottom:531.932850px;}
.yb5{bottom:531.968850px;}
.y3d{bottom:532.154850px;}
.y1a{bottom:545.857350px;}
.yd0{bottom:548.975850px;}
.y6b{bottom:550.450350px;}
.yfe{bottom:550.486350px;}
.yb4{bottom:550.522350px;}
.y3c{bottom:550.708350px;}
.y9f{bottom:559.910850px;}
.y19{bottom:562.205850px;}
.ycf{bottom:567.529350px;}
.y6a{bottom:569.003850px;}
.yfd{bottom:569.039850px;}
.yb3{bottom:569.075850px;}
.y3b{bottom:569.261850px;}
.y9e{bottom:574.910850px;}
.y18{bottom:578.554350px;}
.yce{bottom:586.082850px;}
.y69{bottom:587.557350px;}
.yfc{bottom:587.593350px;}
.yb2{bottom:587.629350px;}
.y3a{bottom:587.815350px;}
.y9d{bottom:589.910850px;}
.y17{bottom:594.902850px;}
.y68{bottom:606.110850px;}
.yfb{bottom:606.146850px;}
.yb1{bottom:606.182850px;}
.y39{bottom:606.368850px;}
.y16{bottom:611.251350px;}
.y11e{bottom:624.643350px;}
.y67{bottom:624.664350px;}
.yfa{bottom:624.700350px;}
.yb0{bottom:624.736350px;}
.y38{bottom:624.922350px;}
.y15{bottom:627.599850px;}
.y66{bottom:643.217850px;}
.yf9{bottom:643.253850px;}
.yaf{bottom:643.289850px;}
.y37{bottom:643.475850px;}
.y14{bottom:643.948350px;}
.y13{bottom:660.313350px;}
.y65{bottom:661.771350px;}
.yf8{bottom:661.807350px;}
.yae{bottom:661.843350px;}
.y36{bottom:662.029350px;}
.y12{bottom:676.661850px;}
.y64{bottom:680.324850px;}
.yf7{bottom:680.360850px;}
.yad{bottom:680.396850px;}
.y35{bottom:680.582850px;}
.y11{bottom:693.010350px;}
.y63{bottom:698.878350px;}
.yf6{bottom:698.914350px;}
.yac{bottom:698.950350px;}
.y34{bottom:699.136350px;}
.y10{bottom:709.358850px;}
.y62{bottom:717.431850px;}
.yf5{bottom:717.467850px;}
.yab{bottom:717.503850px;}
.y33{bottom:717.689850px;}
.yf{bottom:725.707350px;}
.y61{bottom:735.985350px;}
.yf4{bottom:736.021350px;}
.yaa{bottom:736.057350px;}
.y32{bottom:736.243350px;}
.ye{bottom:742.055850px;}
.y60{bottom:754.538850px;}
.yf3{bottom:754.574850px;}
.ya9{bottom:754.610850px;}
.y31{bottom:754.796850px;}
.yd{bottom:758.404350px;}
.y5f{bottom:773.092350px;}
.yf2{bottom:773.128350px;}
.ya8{bottom:773.164350px;}
.y2f{bottom:773.348850px;}
.y30{bottom:773.350350px;}
.yc{bottom:774.752850px;}
.yb{bottom:791.101350px;}
.y5e{bottom:791.645850px;}
.yf1{bottom:791.681850px;}
.ya7{bottom:791.717850px;}
.ya{bottom:807.449850px;}
.y5d{bottom:810.199350px;}
.yf0{bottom:810.235350px;}
.ya6{bottom:810.271350px;}
.y9{bottom:823.798350px;}
.y5c{bottom:828.752850px;}
.yef{bottom:828.788850px;}
.ya5{bottom:828.824850px;}
.y8{bottom:840.151350px;}
.y5b{bottom:847.306350px;}
.yee{bottom:847.342350px;}
.ya4{bottom:847.377600px;}
.y7{bottom:856.499850px;}
.y5a{bottom:865.859850px;}
.yed{bottom:865.895850px;}
.ya3{bottom:865.931100px;}
.y6{bottom:872.848350px;}
.y59{bottom:884.413350px;}
.yec{bottom:884.449350px;}
.ya2{bottom:884.484600px;}
.y5{bottom:889.199850px;}
.y58{bottom:902.966850px;}
.yeb{bottom:903.002850px;}
.ya1{bottom:903.038100px;}
.y4{bottom:905.548350px;}
.y2e{bottom:914.630850px;}
.y57{bottom:921.520350px;}
.yea{bottom:921.556350px;}
.ya0{bottom:921.591600px;}
.y3{bottom:921.896850px;}
.y2{bottom:980.386350px;}
.y1{bottom:981.325350px;}
.h2{height:25.800000px;}
.ha{height:26.525391px;}
.h10{height:28.944000px;}
.hf{height:30.769200px;}
.hc{height:41.712000px;}
.h5{height:45.684000px;}
.h4{height:46.926000px;}
.h6{height:48.924000px;}
.hb{height:49.164000px;}
.he{height:51.357000px;}
.h9{height:51.642000px;}
.hd{height:51.645000px;}
.h3{height:52.920000px;}
.h7{height:83.424000px;}
.h8{height:159.224611px;}
.h1{height:1041.750000px;}
.h0{height:1042.087350px;}
.w2{width:713.340000px;}
.w0{width:713.687400px;}
.w1{width:714.000000px;}
.x0{left:0.000000px;}
.xd{left:15.347250px;}
.x7{left:24.347250px;}
.x2{left:48.194550px;}
.xe{left:49.214400px;}
.x9{left:85.386750px;}
.xa{left:98.140500px;}
.x1{left:102.890550px;}
.xf{left:115.646400px;}
.x3{left:153.951900px;}
.xb{left:366.012000px;}
.xc{left:378.765750px;}
.x5{left:383.520900px;}
.x4{left:396.276900px;}
.x6{left:416.592900px;}
.x16{left:435.585900px;}
.x12{left:439.758000px;}
.x13{left:455.688900px;}
.x8{left:512.063400px;}
.x14{left:538.908000px;}
.x15{left:549.404400px;}
.x10{left:557.215500px;}
.x11{left:573.146400px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v2{vertical-align:-3.338667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.978667pt;}
.v1{vertical-align:65.973333pt;}
.ls7{letter-spacing:-2.826667pt;}
.ls5{letter-spacing:-1.280000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.506667pt;}
.ls1{letter-spacing:1.333333pt;}
.ls2{letter-spacing:7.584000pt;}
.ls0{letter-spacing:9.333333pt;}
.ls4{letter-spacing:15.858667pt;}
.ws4{word-spacing:-40.717200pt;}
.ws3{word-spacing:-23.466667pt;}
.ws1{word-spacing:-16.266667pt;}
.ws0{word-spacing:-16.000000pt;}
.ws93{word-spacing:-13.653333pt;}
.ws60{word-spacing:-13.173333pt;}
.wsc2{word-spacing:-12.106667pt;}
.wsc4{word-spacing:-10.800000pt;}
.ws2{word-spacing:-8.400000pt;}
.wsc3{word-spacing:-6.996000pt;}
.wsc5{word-spacing:-6.296400pt;}
.wsfb{word-spacing:-3.024000pt;}
.wsad{word-spacing:-2.381333pt;}
.wsa0{word-spacing:-2.330667pt;}
.ws55{word-spacing:-1.976000pt;}
.wsa5{word-spacing:-1.773333pt;}
.ws47{word-spacing:-1.722667pt;}
.ws7{word-spacing:-1.680000pt;}
.ws8{word-spacing:-1.536000pt;}
.ws4c{word-spacing:-1.368000pt;}
.wsfe{word-spacing:-1.344000pt;}
.wsfd{word-spacing:-1.200000pt;}
.ws7c{word-spacing:-1.165333pt;}
.ws92{word-spacing:-1.114667pt;}
.wsa3{word-spacing:-0.962667pt;}
.ws10{word-spacing:-0.864000pt;}
.ws91{word-spacing:-0.810667pt;}
.ws9c{word-spacing:-0.760000pt;}
.wsf9{word-spacing:-0.720000pt;}
.ws5a{word-spacing:-0.709333pt;}
.wscd{word-spacing:-0.608000pt;}
.wsd9{word-spacing:-0.506667pt;}
.wsb{word-spacing:-0.480000pt;}
.wsb3{word-spacing:-0.456000pt;}
.wsf8{word-spacing:-0.384000pt;}
.ws57{word-spacing:-0.354667pt;}
.wsf7{word-spacing:-0.336000pt;}
.ws99{word-spacing:-0.253333pt;}
.ws2b{word-spacing:-0.192000pt;}
.ws7e{word-spacing:-0.152000pt;}
.ws15{word-spacing:-0.144000pt;}
.ws6{word-spacing:0.000000pt;}
.ws61{word-spacing:0.050667pt;}
.ws50{word-spacing:0.152000pt;}
.ws70{word-spacing:0.202667pt;}
.ws41{word-spacing:0.253333pt;}
.ws90{word-spacing:0.304000pt;}
.ws103{word-spacing:0.336000pt;}
.ws102{word-spacing:0.384000pt;}
.ws7b{word-spacing:0.405333pt;}
.ws66{word-spacing:0.456000pt;}
.ws5b{word-spacing:0.557333pt;}
.ws9{word-spacing:0.624000pt;}
.wsf6{word-spacing:0.672000pt;}
.ws53{word-spacing:0.709333pt;}
.wsa{word-spacing:0.720000pt;}
.wsf5{word-spacing:0.768000pt;}
.ws69{word-spacing:0.861333pt;}
.ws58{word-spacing:1.165333pt;}
.ws72{word-spacing:1.216000pt;}
.ws43{word-spacing:1.266667pt;}
.ws1a{word-spacing:1.344000pt;}
.ws63{word-spacing:1.469333pt;}
.wsdc{word-spacing:1.520000pt;}
.ws76{word-spacing:1.570667pt;}
.ws6c{word-spacing:1.621333pt;}
.ws2d{word-spacing:1.632000pt;}
.ws40{word-spacing:1.672000pt;}
.wsa6{word-spacing:1.722667pt;}
.ws2c{word-spacing:1.776000pt;}
.wsd4{word-spacing:1.874667pt;}
.ws79{word-spacing:2.077333pt;}
.ws86{word-spacing:2.128000pt;}
.wsac{word-spacing:2.381333pt;}
.wsdd{word-spacing:2.432000pt;}
.ws5e{word-spacing:2.482667pt;}
.ws52{word-spacing:2.584000pt;}
.wsf3{word-spacing:2.592000pt;}
.wsff{word-spacing:2.640000pt;}
.ws19{word-spacing:2.832000pt;}
.wsf2{word-spacing:2.928000pt;}
.wse{word-spacing:3.024000pt;}
.wsa4{word-spacing:3.040000pt;}
.ws1b{word-spacing:3.072000pt;}
.ws4d{word-spacing:3.090667pt;}
.wsd{word-spacing:3.168000pt;}
.ws8d{word-spacing:3.242667pt;}
.ws8e{word-spacing:3.293333pt;}
.wsf{word-spacing:3.360000pt;}
.ws1c{word-spacing:3.408000pt;}
.wsc{word-spacing:3.504000pt;}
.wsd8{word-spacing:3.546667pt;}
.ws100{word-spacing:3.552000pt;}
.ws2e{word-spacing:3.600000pt;}
.ws30{word-spacing:3.744000pt;}
.ws64{word-spacing:3.749333pt;}
.ws80{word-spacing:3.850667pt;}
.wsfa{word-spacing:3.888000pt;}
.ws73{word-spacing:3.952000pt;}
.ws2f{word-spacing:3.984000pt;}
.ws7a{word-spacing:4.002667pt;}
.ws101{word-spacing:4.080000pt;}
.ws4e{word-spacing:4.104000pt;}
.wsee{word-spacing:4.176000pt;}
.ws42{word-spacing:4.205333pt;}
.ws4b{word-spacing:4.306667pt;}
.wscc{word-spacing:4.458667pt;}
.ws31{word-spacing:4.464000pt;}
.ws71{word-spacing:4.509333pt;}
.wsc8{word-spacing:4.560000pt;}
.wse0{word-spacing:4.610667pt;}
.wsef{word-spacing:4.656000pt;}
.ws12{word-spacing:4.752000pt;}
.ws7d{word-spacing:4.762667pt;}
.wsbe{word-spacing:4.864000pt;}
.ws56{word-spacing:4.914667pt;}
.ws32{word-spacing:4.944000pt;}
.ws24{word-spacing:4.992000pt;}
.ws67{word-spacing:5.016000pt;}
.ws82{word-spacing:5.117333pt;}
.ws5{word-spacing:5.136000pt;}
.wsc6{word-spacing:5.168000pt;}
.ws77{word-spacing:5.269333pt;}
.wse3{word-spacing:5.320000pt;}
.ws11{word-spacing:5.328000pt;}
.wsa1{word-spacing:5.370667pt;}
.ws36{word-spacing:5.376000pt;}
.wsed{word-spacing:5.616000pt;}
.ws68{word-spacing:5.624000pt;}
.wscb{word-spacing:5.674667pt;}
.wsb0{word-spacing:5.725333pt;}
.wseb{word-spacing:5.808000pt;}
.ws75{word-spacing:5.826667pt;}
.wsfc{word-spacing:5.856000pt;}
.wse9{word-spacing:5.904000pt;}
.wsa2{word-spacing:5.928000pt;}
.ws35{word-spacing:5.952000pt;}
.wse5{word-spacing:5.978667pt;}
.ws51{word-spacing:6.130667pt;}
.wsec{word-spacing:6.240000pt;}
.ws87{word-spacing:6.282667pt;}
.ws3a{word-spacing:6.336000pt;}
.ws65{word-spacing:6.384000pt;}
.wsea{word-spacing:6.432000pt;}
.ws48{word-spacing:6.434667pt;}
.ws37{word-spacing:6.480000pt;}
.ws6f{word-spacing:6.536000pt;}
.wsd5{word-spacing:6.586667pt;}
.ws16{word-spacing:6.624000pt;}
.ws88{word-spacing:6.637333pt;}
.ws74{word-spacing:6.789333pt;}
.ws23{word-spacing:6.864000pt;}
.ws9a{word-spacing:6.890667pt;}
.ws17{word-spacing:6.912000pt;}
.ws78{word-spacing:6.941333pt;}
.ws39{word-spacing:7.008000pt;}
.wsa8{word-spacing:7.144000pt;}
.wsca{word-spacing:7.194667pt;}
.ws38{word-spacing:7.200000pt;}
.ws46{word-spacing:7.346667pt;}
.wsa9{word-spacing:7.397333pt;}
.ws89{word-spacing:7.448000pt;}
.wsb4{word-spacing:7.498667pt;}
.ws5d{word-spacing:7.549333pt;}
.ws13{word-spacing:7.584000pt;}
.ws54{word-spacing:7.600000pt;}
.ws22{word-spacing:7.632000pt;}
.wsb6{word-spacing:7.650667pt;}
.ws18{word-spacing:7.728000pt;}
.ws6a{word-spacing:7.752000pt;}
.wscf{word-spacing:7.802667pt;}
.ws4a{word-spacing:7.954667pt;}
.ws7f{word-spacing:8.005333pt;}
.wsb7{word-spacing:8.309333pt;}
.ws14{word-spacing:8.400000pt;}
.ws97{word-spacing:8.461333pt;}
.wsd3{word-spacing:8.512000pt;}
.ws4f{word-spacing:8.562667pt;}
.wsb5{word-spacing:8.714667pt;}
.wsd2{word-spacing:8.765333pt;}
.wsb8{word-spacing:8.866667pt;}
.ws6b{word-spacing:8.968000pt;}
.wsd7{word-spacing:9.018667pt;}
.ws62{word-spacing:9.170667pt;}
.wsd1{word-spacing:9.272000pt;}
.ws95{word-spacing:9.322667pt;}
.ws28{word-spacing:9.408000pt;}
.wsaa{word-spacing:9.424000pt;}
.ws96{word-spacing:9.474667pt;}
.ws9d{word-spacing:9.576000pt;}
.ws2a{word-spacing:9.600000pt;}
.wsd6{word-spacing:9.626667pt;}
.ws59{word-spacing:9.677333pt;}
.ws8f{word-spacing:9.778667pt;}
.wsf0{word-spacing:9.840000pt;}
.wsf1{word-spacing:10.032000pt;}
.ws34{word-spacing:10.128000pt;}
.ws8c{word-spacing:10.184000pt;}
.ws33{word-spacing:10.224000pt;}
.ws9b{word-spacing:10.234667pt;}
.ws8a{word-spacing:10.336000pt;}
.ws27{word-spacing:10.416000pt;}
.wsdb{word-spacing:10.538667pt;}
.wsb9{word-spacing:10.589333pt;}
.ws29{word-spacing:10.656000pt;}
.ws9f{word-spacing:10.690667pt;}
.ws6d{word-spacing:10.741333pt;}
.wsa7{word-spacing:10.792000pt;}
.ws3e{word-spacing:10.842667pt;}
.ws49{word-spacing:11.197333pt;}
.ws25{word-spacing:11.232000pt;}
.wsde{word-spacing:11.298667pt;}
.ws5c{word-spacing:11.349333pt;}
.ws8b{word-spacing:11.400000pt;}
.wsae{word-spacing:11.450667pt;}
.ws84{word-spacing:11.552000pt;}
.ws1f{word-spacing:11.808000pt;}
.wsf4{word-spacing:11.904000pt;}
.wse4{word-spacing:12.008000pt;}
.wsd0{word-spacing:12.058667pt;}
.ws1d{word-spacing:12.192000pt;}
.ws44{word-spacing:12.210667pt;}
.ws26{word-spacing:12.480000pt;}
.wsbc{word-spacing:12.717333pt;}
.ws85{word-spacing:12.818667pt;}
.ws94{word-spacing:12.869333pt;}
.ws1e{word-spacing:13.104000pt;}
.wse2{word-spacing:13.224000pt;}
.ws3f{word-spacing:13.477333pt;}
.wsc0{word-spacing:13.578667pt;}
.wse6{word-spacing:14.034667pt;}
.wsb1{word-spacing:14.237333pt;}
.wsba{word-spacing:14.440000pt;}
.wse7{word-spacing:14.744000pt;}
.wsc1{word-spacing:15.250667pt;}
.wsbf{word-spacing:15.656000pt;}
.wsce{word-spacing:15.706667pt;}
.ws81{word-spacing:15.757333pt;}
.ws9e{word-spacing:15.858667pt;}
.wsaf{word-spacing:16.061333pt;}
.wsc7{word-spacing:16.618667pt;}
.wsab{word-spacing:17.024000pt;}
.wse1{word-spacing:17.074667pt;}
.wsdf{word-spacing:17.834667pt;}
.ws83{word-spacing:17.885333pt;}
.wse8{word-spacing:18.544000pt;}
.ws3c{word-spacing:18.797333pt;}
.ws6e{word-spacing:19.304000pt;}
.wsbd{word-spacing:19.557333pt;}
.ws45{word-spacing:19.658667pt;}
.wsbb{word-spacing:20.317333pt;}
.ws20{word-spacing:23.664000pt;}
.wsc9{word-spacing:23.965333pt;}
.wsb2{word-spacing:24.877333pt;}
.wsda{word-spacing:26.093333pt;}
.ws21{word-spacing:26.304000pt;}
.ws98{word-spacing:28.424000pt;}
.ws3b{word-spacing:30.957333pt;}
.ws3d{word-spacing:36.176000pt;}
.ws5f{word-spacing:50.250667pt;}
._8{margin-left:-20.114667pt;}
._6{margin-left:-18.949333pt;}
._4{margin-left:-4.560000pt;}
._1{margin-left:-2.293333pt;}
._0{margin-left:-1.093867pt;}
._2{width:1.056000pt;}
._7{width:2.077333pt;}
._3{width:5.568000pt;}
._9{width:6.528000pt;}
._5{width:1536.907200pt;}
.fs0{font-size:26.666667pt;}
.fs9{font-size:27.984000pt;}
.fs7{font-size:32.000000pt;}
.fs3{font-size:33.600000pt;}
.fs8{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:85.333333pt;}
.fs5{font-size:162.868800pt;}
.y56{bottom:-23.286800pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:75.152533pt;}
.ye9{bottom:75.678533pt;}
.y11d{bottom:76.050533pt;}
.y84{bottom:76.989200pt;}
.ycd{bottom:77.053200pt;}
.y55{bottom:77.218533pt;}
.y9b{bottom:91.644533pt;}
.ye8{bottom:92.170533pt;}
.y83{bottom:93.481200pt;}
.ycc{bottom:93.545200pt;}
.y54{bottom:93.710533pt;}
.y11c{bottom:98.034533pt;}
.y9a{bottom:108.136533pt;}
.ye7{bottom:108.662533pt;}
.y82{bottom:109.973200pt;}
.ycb{bottom:110.037200pt;}
.y53{bottom:110.202533pt;}
.y11b{bottom:112.566533pt;}
.y99{bottom:124.628533pt;}
.ye6{bottom:125.154533pt;}
.y81{bottom:126.465200pt;}
.yca{bottom:126.529200pt;}
.y52{bottom:126.694533pt;}
.y11a{bottom:127.098533pt;}
.y98{bottom:141.120533pt;}
.y119{bottom:141.630533pt;}
.ye5{bottom:141.646533pt;}
.y80{bottom:142.957200pt;}
.yc9{bottom:143.021200pt;}
.y51{bottom:143.186533pt;}
.y118{bottom:156.162533pt;}
.y97{bottom:157.612533pt;}
.ye4{bottom:158.138533pt;}
.y7f{bottom:159.449200pt;}
.yc8{bottom:159.513200pt;}
.y50{bottom:159.678533pt;}
.y117{bottom:170.694533pt;}
.y116{bottom:170.698533pt;}
.y96{bottom:174.104533pt;}
.ye3{bottom:174.630533pt;}
.y7e{bottom:175.941200pt;}
.yc7{bottom:176.005200pt;}
.y4f{bottom:176.170533pt;}
.y115{bottom:185.230533pt;}
.y95{bottom:190.596533pt;}
.ye2{bottom:191.122533pt;}
.y7d{bottom:192.433200pt;}
.yc6{bottom:192.497200pt;}
.y4e{bottom:192.662533pt;}
.y114{bottom:199.762533pt;}
.y2d{bottom:201.622533pt;}
.y94{bottom:207.088533pt;}
.ye1{bottom:207.614533pt;}
.y7c{bottom:208.925200pt;}
.yc5{bottom:208.989200pt;}
.y4d{bottom:209.154533pt;}
.y113{bottom:214.303867pt;}
.y93{bottom:223.580533pt;}
.y2c{bottom:223.606533pt;}
.ye0{bottom:224.106533pt;}
.y7b{bottom:225.417200pt;}
.yc4{bottom:225.481200pt;}
.y4c{bottom:225.646533pt;}
.y112{bottom:228.835867pt;}
.y2b{bottom:238.138533pt;}
.y92{bottom:240.072533pt;}
.ydf{bottom:240.598533pt;}
.y7a{bottom:241.909200pt;}
.yc3{bottom:241.973200pt;}
.y4b{bottom:242.138533pt;}
.y111{bottom:243.367867pt;}
.y2a{bottom:252.670533pt;}
.y91{bottom:256.564533pt;}
.yde{bottom:257.090533pt;}
.y110{bottom:257.899867pt;}
.y79{bottom:258.401200pt;}
.yc2{bottom:258.465200pt;}
.y4a{bottom:258.630533pt;}
.y29{bottom:267.202533pt;}
.y10f{bottom:272.431867pt;}
.y90{bottom:273.056533pt;}
.ydd{bottom:273.582533pt;}
.y78{bottom:274.893200pt;}
.yc1{bottom:274.957200pt;}
.y49{bottom:275.122533pt;}
.y28{bottom:281.734533pt;}
.y10e{bottom:286.963867pt;}
.y8f{bottom:289.548533pt;}
.ydc{bottom:290.074533pt;}
.y77{bottom:291.385200pt;}
.yc0{bottom:291.449200pt;}
.y48{bottom:291.614533pt;}
.y27{bottom:296.266533pt;}
.y10d{bottom:301.495867pt;}
.y8e{bottom:306.040533pt;}
.ydb{bottom:306.566533pt;}
.y76{bottom:307.877200pt;}
.ybf{bottom:307.941200pt;}
.y47{bottom:308.106533pt;}
.y26{bottom:310.798533pt;}
.y10c{bottom:316.029200pt;}
.y8d{bottom:322.532533pt;}
.yda{bottom:323.058533pt;}
.y75{bottom:324.369200pt;}
.ybe{bottom:324.433200pt;}
.y46{bottom:324.598533pt;}
.y25{bottom:325.354533pt;}
.y10a{bottom:330.561200pt;}
.y109{bottom:330.566533pt;}
.y10b{bottom:334.557200pt;}
.y8c{bottom:339.024533pt;}
.yd9{bottom:339.550533pt;}
.y24{bottom:339.886533pt;}
.y74{bottom:340.861200pt;}
.ybd{bottom:340.925200pt;}
.y45{bottom:341.090533pt;}
.y108{bottom:345.098533pt;}
.y23{bottom:354.418533pt;}
.y8b{bottom:355.516533pt;}
.yd8{bottom:356.042533pt;}
.y73{bottom:357.353200pt;}
.ybc{bottom:357.417200pt;}
.y44{bottom:357.582533pt;}
.y107{bottom:359.630533pt;}
.y22{bottom:368.950533pt;}
.y8a{bottom:372.008533pt;}
.yd7{bottom:372.534533pt;}
.y72{bottom:373.845200pt;}
.ybb{bottom:373.909200pt;}
.y43{bottom:374.074533pt;}
.y106{bottom:374.162533pt;}
.y21{bottom:383.482533pt;}
.y89{bottom:388.500533pt;}
.y105{bottom:388.695867pt;}
.yd6{bottom:389.026533pt;}
.y71{bottom:390.337200pt;}
.yba{bottom:390.401200pt;}
.y42{bottom:390.566533pt;}
.y20{bottom:398.014533pt;}
.y103{bottom:403.227867pt;}
.y102{bottom:403.230533pt;}
.y88{bottom:404.992533pt;}
.yd5{bottom:405.518533pt;}
.y70{bottom:406.829200pt;}
.yb9{bottom:406.893200pt;}
.y41{bottom:407.058533pt;}
.y104{bottom:407.223867pt;}
.y1f{bottom:412.546533pt;}
.y101{bottom:417.762533pt;}
.y87{bottom:421.484533pt;}
.yd4{bottom:422.010533pt;}
.y6f{bottom:423.321200pt;}
.yb8{bottom:423.385200pt;}
.y40{bottom:423.550533pt;}
.y1e{bottom:427.078533pt;}
.y100{bottom:432.294533pt;}
.y86{bottom:437.976533pt;}
.yd3{bottom:438.502533pt;}
.y6e{bottom:439.813200pt;}
.yb7{bottom:439.877200pt;}
.y3f{bottom:440.042533pt;}
.y1d{bottom:441.610533pt;}
.y85{bottom:454.468533pt;}
.yd2{bottom:454.994533pt;}
.y1c{bottom:456.142533pt;}
.y6d{bottom:456.305200pt;}
.yb6{bottom:456.369200pt;}
.y3e{bottom:456.534533pt;}
.y1b{bottom:470.674533pt;}
.yd1{bottom:471.486533pt;}
.y6c{bottom:472.797200pt;}
.yff{bottom:472.829200pt;}
.yb5{bottom:472.861200pt;}
.y3d{bottom:473.026533pt;}
.y1a{bottom:485.206533pt;}
.yd0{bottom:487.978533pt;}
.y6b{bottom:489.289200pt;}
.yfe{bottom:489.321200pt;}
.yb4{bottom:489.353200pt;}
.y3c{bottom:489.518533pt;}
.y9f{bottom:497.698533pt;}
.y19{bottom:499.738533pt;}
.ycf{bottom:504.470533pt;}
.y6a{bottom:505.781200pt;}
.yfd{bottom:505.813200pt;}
.yb3{bottom:505.845200pt;}
.y3b{bottom:506.010533pt;}
.y9e{bottom:511.031867pt;}
.y18{bottom:514.270533pt;}
.yce{bottom:520.962533pt;}
.y69{bottom:522.273200pt;}
.yfc{bottom:522.305200pt;}
.yb2{bottom:522.337200pt;}
.y3a{bottom:522.502533pt;}
.y9d{bottom:524.365200pt;}
.y17{bottom:528.802533pt;}
.y68{bottom:538.765200pt;}
.yfb{bottom:538.797200pt;}
.yb1{bottom:538.829200pt;}
.y39{bottom:538.994533pt;}
.y16{bottom:543.334533pt;}
.y11e{bottom:555.238533pt;}
.y67{bottom:555.257200pt;}
.yfa{bottom:555.289200pt;}
.yb0{bottom:555.321200pt;}
.y38{bottom:555.486533pt;}
.y15{bottom:557.866533pt;}
.y66{bottom:571.749200pt;}
.yf9{bottom:571.781200pt;}
.yaf{bottom:571.813200pt;}
.y37{bottom:571.978533pt;}
.y14{bottom:572.398533pt;}
.y13{bottom:586.945200pt;}
.y65{bottom:588.241200pt;}
.yf8{bottom:588.273200pt;}
.yae{bottom:588.305200pt;}
.y36{bottom:588.470533pt;}
.y12{bottom:601.477200pt;}
.y64{bottom:604.733200pt;}
.yf7{bottom:604.765200pt;}
.yad{bottom:604.797200pt;}
.y35{bottom:604.962533pt;}
.y11{bottom:616.009200pt;}
.y63{bottom:621.225200pt;}
.yf6{bottom:621.257200pt;}
.yac{bottom:621.289200pt;}
.y34{bottom:621.454533pt;}
.y10{bottom:630.541200pt;}
.y62{bottom:637.717200pt;}
.yf5{bottom:637.749200pt;}
.yab{bottom:637.781200pt;}
.y33{bottom:637.946533pt;}
.yf{bottom:645.073200pt;}
.y61{bottom:654.209200pt;}
.yf4{bottom:654.241200pt;}
.yaa{bottom:654.273200pt;}
.y32{bottom:654.438533pt;}
.ye{bottom:659.605200pt;}
.y60{bottom:670.701200pt;}
.yf3{bottom:670.733200pt;}
.ya9{bottom:670.765200pt;}
.y31{bottom:670.930533pt;}
.yd{bottom:674.137200pt;}
.y5f{bottom:687.193200pt;}
.yf2{bottom:687.225200pt;}
.ya8{bottom:687.257200pt;}
.y2f{bottom:687.421200pt;}
.y30{bottom:687.422533pt;}
.yc{bottom:688.669200pt;}
.yb{bottom:703.201200pt;}
.y5e{bottom:703.685200pt;}
.yf1{bottom:703.717200pt;}
.ya7{bottom:703.749200pt;}
.ya{bottom:717.733200pt;}
.y5d{bottom:720.177200pt;}
.yf0{bottom:720.209200pt;}
.ya6{bottom:720.241200pt;}
.y9{bottom:732.265200pt;}
.y5c{bottom:736.669200pt;}
.yef{bottom:736.701200pt;}
.ya5{bottom:736.733200pt;}
.y8{bottom:746.801200pt;}
.y5b{bottom:753.161200pt;}
.yee{bottom:753.193200pt;}
.ya4{bottom:753.224533pt;}
.y7{bottom:761.333200pt;}
.y5a{bottom:769.653200pt;}
.yed{bottom:769.685200pt;}
.ya3{bottom:769.716533pt;}
.y6{bottom:775.865200pt;}
.y59{bottom:786.145200pt;}
.yec{bottom:786.177200pt;}
.ya2{bottom:786.208533pt;}
.y5{bottom:790.399867pt;}
.y58{bottom:802.637200pt;}
.yeb{bottom:802.669200pt;}
.ya1{bottom:802.700533pt;}
.y4{bottom:804.931867pt;}
.y2e{bottom:813.005200pt;}
.y57{bottom:819.129200pt;}
.yea{bottom:819.161200pt;}
.ya0{bottom:819.192533pt;}
.y3{bottom:819.463867pt;}
.y2{bottom:871.454533pt;}
.y1{bottom:872.289200pt;}
.h2{height:22.933333pt;}
.ha{height:23.578125pt;}
.h10{height:25.728000pt;}
.hf{height:27.350400pt;}
.hc{height:37.077333pt;}
.h5{height:40.608000pt;}
.h4{height:41.712000pt;}
.h6{height:43.488000pt;}
.hb{height:43.701333pt;}
.he{height:45.650667pt;}
.h9{height:45.904000pt;}
.hd{height:45.906667pt;}
.h3{height:47.040000pt;}
.h7{height:74.154667pt;}
.h8{height:141.532987pt;}
.h1{height:926.000000pt;}
.h0{height:926.299867pt;}
.w2{width:634.080000pt;}
.w0{width:634.388800pt;}
.w1{width:634.666667pt;}
.x0{left:0.000000pt;}
.xd{left:13.642000pt;}
.x7{left:21.642000pt;}
.x2{left:42.839600pt;}
.xe{left:43.746133pt;}
.x9{left:75.899333pt;}
.xa{left:87.236000pt;}
.x1{left:91.458267pt;}
.xf{left:102.796800pt;}
.x3{left:136.846133pt;}
.xb{left:325.344000pt;}
.xc{left:336.680667pt;}
.x5{left:340.907467pt;}
.x4{left:352.246133pt;}
.x6{left:370.304800pt;}
.x16{left:387.187467pt;}
.x12{left:390.896000pt;}
.x13{left:405.056800pt;}
.x8{left:455.167467pt;}
.x14{left:479.029333pt;}
.x15{left:488.359467pt;}
.x10{left:495.302667pt;}
.x11{left:509.463467pt;}
}




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