
    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_44dfbb98264c6b96f35b58a3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904785;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_b8b02794de54f1b7a96a0d92.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_8120c0bf2bb26e05b54d228c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.142000;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_4187b8a1c4727182620cfb73.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1445e476414d30a079942a30.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_f027a6be8e8339a69a174cac.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_259f503dfd35335a15d19428.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.121000;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_08cdc6b3918756f8b1cf3386.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.121000;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_7088056297c519bf820c2f45.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.093262;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_47d19b092f4e89d6c786c6ff.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.873047;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_643fa284b9f75229bca2e2ce.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978600px;}
.v3{vertical-align:32.400000px;}
.ls9{letter-spacing:-5.610000px;}
.lsb{letter-spacing:-3.780000px;}
.ls7{letter-spacing:-2.442000px;}
.lsc{letter-spacing:-1.620000px;}
.ls8{letter-spacing:-0.660000px;}
.lsa{letter-spacing:-0.648000px;}
.ls1{letter-spacing:-0.432000px;}
.ls2{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.162000px;}
.ls3{letter-spacing:-0.108000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:7.957200px;}
.ls5{letter-spacing:7.957800px;}
.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;}
}
.wsc6{word-spacing:-54.000000px;}
.ws1d{word-spacing:-16.500000px;}
.ws1c{word-spacing:-15.840000px;}
.ws76{word-spacing:-15.180000px;}
.wsbe{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.960000px;}
.wsbd{word-spacing:-12.852000px;}
.ws3{word-spacing:-12.000000px;}
.wsc5{word-spacing:-11.880000px;}
.ws2{word-spacing:-11.520000px;}
.ws77{word-spacing:-10.890000px;}
.ws5e{word-spacing:-7.128000px;}
.ws1{word-spacing:-6.996000px;}
.wscd{word-spacing:-5.940000px;}
.wsa6{word-spacing:-5.742000px;}
.wsb3{word-spacing:-5.148000px;}
.ws65{word-spacing:-4.158000px;}
.ws79{word-spacing:-3.696000px;}
.wsd4{word-spacing:-3.498000px;}
.ws9{word-spacing:-3.402000px;}
.wsb7{word-spacing:-3.168000px;}
.ws57{word-spacing:-2.904000px;}
.wse1{word-spacing:-2.772000px;}
.wsc{word-spacing:-2.646000px;}
.ws32{word-spacing:-2.640000px;}
.wse9{word-spacing:-2.592000px;}
.wsf1{word-spacing:-2.538000px;}
.ws4b{word-spacing:-2.442000px;}
.wsda{word-spacing:-2.430000px;}
.wsa0{word-spacing:-2.376000px;}
.wsdd{word-spacing:-2.112000px;}
.ws10{word-spacing:-2.052000px;}
.wse{word-spacing:-1.998000px;}
.ws44{word-spacing:-1.914000px;}
.wsa3{word-spacing:-1.782000px;}
.ws15{word-spacing:-1.566000px;}
.wsf3{word-spacing:-1.512000px;}
.wse8{word-spacing:-1.458000px;}
.wscc{word-spacing:-1.452000px;}
.ws50{word-spacing:-1.320000px;}
.wsea{word-spacing:-1.296000px;}
.ws6{word-spacing:-1.242000px;}
.ws18{word-spacing:-1.188000px;}
.wsf4{word-spacing:-1.134000px;}
.ws12{word-spacing:-1.080000px;}
.wse7{word-spacing:-1.026000px;}
.wsa8{word-spacing:-0.990000px;}
.ws17{word-spacing:-0.972000px;}
.wsf7{word-spacing:-0.864000px;}
.ws55{word-spacing:-0.792000px;}
.ws3d{word-spacing:-0.726000px;}
.wsec{word-spacing:-0.540000px;}
.ws46{word-spacing:-0.528000px;}
.wsd{word-spacing:-0.486000px;}
.ws2c{word-spacing:-0.462000px;}
.wsd3{word-spacing:-0.396000px;}
.ws2d{word-spacing:-0.330000px;}
.ws4f{word-spacing:-0.198000px;}
.ws1a{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
.ws7{word-spacing:0.108000px;}
.ws7c{word-spacing:0.132000px;}
.ws84{word-spacing:0.264000px;}
.wsf5{word-spacing:0.270000px;}
.wsf8{word-spacing:0.324000px;}
.ws19{word-spacing:0.432000px;}
.wsf0{word-spacing:0.648000px;}
.ws31{word-spacing:0.660000px;}
.ws14{word-spacing:0.702000px;}
.wsaa{word-spacing:0.726000px;}
.ws16{word-spacing:0.864000px;}
.wsa1{word-spacing:0.990000px;}
.ws98{word-spacing:1.056000px;}
.wsd2{word-spacing:1.122000px;}
.wsa{word-spacing:1.134000px;}
.wsf{word-spacing:1.242000px;}
.ws93{word-spacing:1.254000px;}
.ws5f{word-spacing:1.320000px;}
.ws42{word-spacing:1.386000px;}
.wsb4{word-spacing:1.518000px;}
.wsf6{word-spacing:1.566000px;}
.ws2e{word-spacing:1.584000px;}
.ws1b{word-spacing:1.728000px;}
.ws97{word-spacing:1.782000px;}
.wse5{word-spacing:1.848000px;}
.ws4c{word-spacing:1.980000px;}
.ws60{word-spacing:2.046000px;}
.wsfa{word-spacing:2.160000px;}
.wsf2{word-spacing:2.268000px;}
.wsb{word-spacing:2.376000px;}
.wsed{word-spacing:2.646000px;}
.ws8c{word-spacing:2.706000px;}
.ws82{word-spacing:2.772000px;}
.wsc9{word-spacing:3.036000px;}
.wsb1{word-spacing:3.102000px;}
.ws7b{word-spacing:3.366000px;}
.ws52{word-spacing:3.498000px;}
.ws8{word-spacing:3.510000px;}
.ws13{word-spacing:3.564000px;}
.wsf9{word-spacing:3.618000px;}
.ws54{word-spacing:3.696000px;}
.ws91{word-spacing:3.762000px;}
.wseb{word-spacing:3.780000px;}
.wsee{word-spacing:3.888000px;}
.wsa9{word-spacing:4.092000px;}
.ws6d{word-spacing:4.158000px;}
.ws92{word-spacing:4.290000px;}
.wsc8{word-spacing:4.422000px;}
.wsa5{word-spacing:4.488000px;}
.wsd5{word-spacing:4.818000px;}
.ws9f{word-spacing:4.884000px;}
.ws94{word-spacing:4.950000px;}
.ws86{word-spacing:5.016000px;}
.wsef{word-spacing:5.076000px;}
.ws11{word-spacing:5.130000px;}
.wsfb{word-spacing:5.184000px;}
.ws9b{word-spacing:5.346000px;}
.ws6b{word-spacing:5.412000px;}
.wsdb{word-spacing:5.544000px;}
.ws45{word-spacing:5.610000px;}
.ws7a{word-spacing:5.742000px;}
.ws7d{word-spacing:5.874000px;}
.ws95{word-spacing:5.940000px;}
.wsce{word-spacing:6.006000px;}
.ws29{word-spacing:6.204000px;}
.ws26{word-spacing:6.270000px;}
.wse6{word-spacing:6.534000px;}
.ws87{word-spacing:6.600000px;}
.ws3b{word-spacing:6.666000px;}
.wsae{word-spacing:6.732000px;}
.wsa4{word-spacing:6.798000px;}
.wsd1{word-spacing:6.996000px;}
.ws56{word-spacing:7.194000px;}
.ws3e{word-spacing:7.326000px;}
.ws75{word-spacing:7.392000px;}
.ws47{word-spacing:7.458000px;}
.ws35{word-spacing:7.524000px;}
.wsd6{word-spacing:7.590000px;}
.ws8f{word-spacing:7.656000px;}
.ws51{word-spacing:7.920000px;}
.ws30{word-spacing:7.986000px;}
.ws22{word-spacing:8.052000px;}
.ws49{word-spacing:8.118000px;}
.ws99{word-spacing:8.250000px;}
.ws90{word-spacing:8.382000px;}
.ws8b{word-spacing:8.514000px;}
.ws38{word-spacing:8.580000px;}
.ws1f{word-spacing:8.712000px;}
.ws5a{word-spacing:8.844000px;}
.wsb5{word-spacing:8.910000px;}
.ws6e{word-spacing:9.042000px;}
.wsdc{word-spacing:9.240000px;}
.wsac{word-spacing:9.306000px;}
.wscb{word-spacing:9.438000px;}
.ws48{word-spacing:9.504000px;}
.ws89{word-spacing:9.570000px;}
.ws88{word-spacing:9.768000px;}
.ws64{word-spacing:9.966000px;}
.ws2a{word-spacing:10.098000px;}
.ws2b{word-spacing:10.164000px;}
.ws7e{word-spacing:10.362000px;}
.wsa7{word-spacing:10.428000px;}
.ws72{word-spacing:10.626000px;}
.ws62{word-spacing:10.692000px;}
.wscf{word-spacing:10.758000px;}
.wsd9{word-spacing:11.154000px;}
.ws59{word-spacing:11.550000px;}
.ws9a{word-spacing:11.682000px;}
.wsd8{word-spacing:11.946000px;}
.ws96{word-spacing:12.012000px;}
.wsab{word-spacing:12.078000px;}
.ws5d{word-spacing:12.408000px;}
.ws2f{word-spacing:12.474000px;}
.ws43{word-spacing:12.804000px;}
.ws58{word-spacing:12.936000px;}
.ws9c{word-spacing:13.002000px;}
.ws74{word-spacing:13.068000px;}
.wsaf{word-spacing:13.134000px;}
.ws27{word-spacing:13.332000px;}
.ws3c{word-spacing:13.662000px;}
.ws8a{word-spacing:13.794000px;}
.ws40{word-spacing:13.860000px;}
.ws83{word-spacing:13.926000px;}
.wsb0{word-spacing:13.992000px;}
.ws28{word-spacing:14.058000px;}
.wse3{word-spacing:14.454000px;}
.ws63{word-spacing:14.520000px;}
.wsb2{word-spacing:14.916000px;}
.ws24{word-spacing:14.982000px;}
.ws6c{word-spacing:15.048000px;}
.ws8d{word-spacing:16.038000px;}
.ws81{word-spacing:16.104000px;}
.wsdf{word-spacing:16.236000px;}
.ws33{word-spacing:16.434000px;}
.ws34{word-spacing:16.500000px;}
.ws4d{word-spacing:16.698000px;}
.ws80{word-spacing:16.830000px;}
.wsad{word-spacing:16.896000px;}
.ws61{word-spacing:16.962000px;}
.ws25{word-spacing:17.028000px;}
.wsd0{word-spacing:17.622000px;}
.ws7f{word-spacing:18.018000px;}
.ws5b{word-spacing:18.282000px;}
.ws6f{word-spacing:18.348000px;}
.ws9e{word-spacing:18.480000px;}
.wsca{word-spacing:18.744000px;}
.ws39{word-spacing:18.810000px;}
.wsc7{word-spacing:19.140000px;}
.ws36{word-spacing:19.272000px;}
.ws1e{word-spacing:19.536000px;}
.ws8e{word-spacing:19.734000px;}
.wsde{word-spacing:20.064000px;}
.ws4e{word-spacing:20.460000px;}
.ws69{word-spacing:20.724000px;}
.ws9d{word-spacing:20.790000px;}
.ws68{word-spacing:20.988000px;}
.ws4a{word-spacing:21.186000px;}
.ws5c{word-spacing:21.648000px;}
.ws23{word-spacing:22.506000px;}
.ws66{word-spacing:22.770000px;}
.ws53{word-spacing:23.892000px;}
.wsd7{word-spacing:24.684000px;}
.ws70{word-spacing:25.014000px;}
.wsb6{word-spacing:25.410000px;}
.wsa2{word-spacing:26.598000px;}
.ws3f{word-spacing:27.522000px;}
.ws6a{word-spacing:27.588000px;}
.ws20{word-spacing:27.786000px;}
.wse4{word-spacing:29.040000px;}
.wse0{word-spacing:29.832000px;}
.ws67{word-spacing:30.096000px;}
.wsb8{word-spacing:30.690000px;}
.ws41{word-spacing:37.026000px;}
.ws73{word-spacing:37.422000px;}
.wsc4{word-spacing:37.579800px;}
.wse2{word-spacing:38.214000px;}
.ws71{word-spacing:38.742000px;}
.ws3a{word-spacing:47.784000px;}
.ws37{word-spacing:48.444000px;}
.ws4{word-spacing:49.500000px;}
.wsbf{word-spacing:50.323800px;}
.ws78{word-spacing:51.942000px;}
.ws85{word-spacing:57.750000px;}
.ws21{word-spacing:61.116000px;}
.wsbb{word-spacing:64.967400px;}
.wsba{word-spacing:73.200000px;}
.wsc3{word-spacing:78.295800px;}
.wsc0{word-spacing:79.159800px;}
.wsc1{word-spacing:81.590400px;}
.wsc2{word-spacing:86.827800px;}
.wsbc{word-spacing:92.700000px;}
.wsb9{word-spacing:359.406000px;}
._8{margin-left:-11.880000px;}
._6{margin-left:-8.580000px;}
._2{margin-left:-7.452000px;}
._3{margin-left:-6.399000px;}
._5{margin-left:-4.950000px;}
._1{margin-left:-3.755400px;}
._4{margin-left:-2.592000px;}
._0{margin-left:-1.296000px;}
._7{width:1.001400px;}
._26{width:2.862000px;}
._9{width:4.950000px;}
._2e{width:27.000000px;}
._2c{width:47.300400px;}
._2a{width:51.079800px;}
._2d{width:54.000000px;}
._e{width:66.329400px;}
._c{width:68.184000px;}
._d{width:70.842000px;}
._24{width:72.198000px;}
._25{width:75.978000px;}
._18{width:78.516000px;}
._2b{width:80.768400px;}
._11{width:86.700000px;}
._1f{width:90.216000px;}
._1b{width:96.282000px;}
._29{width:105.079800px;}
._12{width:106.200000px;}
._27{width:110.747400px;}
._19{width:113.700000px;}
._28{width:115.750800px;}
._14{width:120.300000px;}
._15{width:122.662800px;}
._b{width:125.418000px;}
._23{width:127.854000px;}
._21{width:129.762000px;}
._f{width:142.048800px;}
._22{width:158.814000px;}
._13{width:160.500000px;}
._20{width:162.630000px;}
._1c{width:179.100000px;}
._1e{width:181.170000px;}
._16{width:212.922000px;}
._10{width:214.085400px;}
._1d{width:224.640000px;}
._1a{width:249.048000px;}
._17{width:359.676000px;}
._a{width:417.821400px;}
.fc3{color:rgb(145,143,143);}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(28,28,28);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:27.984000px;}
.fs3{font-size:38.478000px;}
.fs5{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:66.000000px;}
.fs6{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:31.500000px;}
.y1{bottom:77.083950px;}
.y31{bottom:137.828850px;}
.y95{bottom:138.839850px;}
.yad{bottom:142.088550px;}
.y103{bottom:152.356500px;}
.y64{bottom:153.116250px;}
.y30{bottom:156.224850px;}
.y94{bottom:156.989850px;}
.yac{bottom:160.238550px;}
.y102{bottom:167.206350px;}
.y63{bottom:171.266250px;}
.y93{bottom:175.139850px;}
.yab{bottom:178.388550px;}
.y101{bottom:186.308400px;}
.y62{bottom:189.416250px;}
.y92{bottom:193.289850px;}
.yaa{bottom:196.538550px;}
.y100{bottom:201.158400px;}
.y61{bottom:207.566250px;}
.y91{bottom:211.440000px;}
.ya9{bottom:214.688550px;}
.yff{bottom:220.260300px;}
.y60{bottom:225.716250px;}
.y90{bottom:229.589850px;}
.ya8{bottom:232.838550px;}
.yfe{bottom:235.110300px;}
.y5f{bottom:243.866250px;}
.y8f{bottom:247.739850px;}
.ya7{bottom:250.988550px;}
.yfd{bottom:254.212350px;}
.y2f{bottom:255.532050px;}
.y5e{bottom:262.016250px;}
.y8e{bottom:265.889850px;}
.yfc{bottom:269.062350px;}
.ya6{bottom:269.138550px;}
.y5d{bottom:280.166250px;}
.y8d{bottom:284.039850px;}
.y2e{bottom:285.382200px;}
.ya5{bottom:287.288550px;}
.yfb{bottom:288.164250px;}
.y5c{bottom:298.316250px;}
.y2d{bottom:300.232200px;}
.y8c{bottom:302.189850px;}
.yfa{bottom:303.014250px;}
.ya4{bottom:305.438550px;}
.y2c{bottom:315.082050px;}
.y5b{bottom:316.466250px;}
.y8b{bottom:320.339850px;}
.yf9{bottom:322.116300px;}
.ya3{bottom:323.588550px;}
.y2b{bottom:329.932200px;}
.y5a{bottom:334.616250px;}
.y8a{bottom:338.489850px;}
.yf8{bottom:341.218200px;}
.ya2{bottom:341.738550px;}
.y2a{bottom:344.782200px;}
.y59{bottom:352.766250px;}
.yf7{bottom:356.068200px;}
.y89{bottom:356.639850px;}
.y29{bottom:359.632200px;}
.ya1{bottom:359.888550px;}
.y58{bottom:370.916250px;}
.y28{bottom:374.482200px;}
.y88{bottom:374.789850px;}
.yf6{bottom:375.170250px;}
.y57{bottom:389.066250px;}
.y27{bottom:389.332050px;}
.yf5{bottom:390.020250px;}
.y87{bottom:392.939850px;}
.yd5{bottom:399.924900px;}
.y26{bottom:404.182200px;}
.y56{bottom:407.216250px;}
.yf4{bottom:409.122150px;}
.y86{bottom:411.089850px;}
.yd4{bottom:416.124900px;}
.y25{bottom:419.032200px;}
.yf3{bottom:423.972150px;}
.y55{bottom:425.366250px;}
.y85{bottom:429.239850px;}
.yd3{bottom:432.324900px;}
.y24{bottom:433.882200px;}
.yf2{bottom:443.074200px;}
.y54{bottom:443.516250px;}
.y84{bottom:447.389850px;}
.y23{bottom:448.732200px;}
.yd2{bottom:454.112250px;}
.yf1{bottom:457.924200px;}
.y53{bottom:461.666250px;}
.y83{bottom:465.539850px;}
.yf0{bottom:477.026100px;}
.y22{bottom:478.582050px;}
.y123{bottom:479.157750px;}
.y52{bottom:479.816250px;}
.y82{bottom:483.689850px;}
.yd1{bottom:485.312400px;}
.yef{bottom:491.876100px;}
.y51{bottom:497.966250px;}
.y122{bottom:498.259800px;}
.y81{bottom:501.839850px;}
.yd0{bottom:507.099750px;}
.y21{bottom:508.432200px;}
.yee{bottom:510.978000px;}
.y50{bottom:516.116250px;}
.y80{bottom:519.989850px;}
.ycf{bottom:523.299750px;}
.yed{bottom:525.828150px;}
.y4f{bottom:534.266250px;}
.ya0{bottom:538.139850px;}
.y20{bottom:538.282200px;}
.ycb{bottom:545.087100px;}
.ycd{bottom:545.514150px;}
.y4e{bottom:552.416250px;}
.y1f{bottom:553.132200px;}
.y7f{bottom:553.139850px;}
.y121{bottom:555.565650px;}
.y9f{bottom:556.289850px;}
.yce{bottom:560.087100px;}
.yec{bottom:564.032100px;}
.y1e{bottom:567.982200px;}
.y120{bottom:570.415650px;}
.y4d{bottom:570.566250px;}
.y9e{bottom:574.439850px;}
.yca{bottom:576.287250px;}
.ycc{bottom:576.714150px;}
.y1d{bottom:582.832050px;}
.y7e{bottom:586.289850px;}
.y4c{bottom:588.716250px;}
.y11f{bottom:589.517550px;}
.y9d{bottom:592.589850px;}
.y1c{bottom:597.682200px;}
.yc9{bottom:598.074600px;}
.y11e{bottom:604.367550px;}
.y7d{bottom:604.439850px;}
.y4b{bottom:606.866250px;}
.y9c{bottom:610.739850px;}
.y1b{bottom:612.532200px;}
.ye3{bottom:620.189850px;}
.y7c{bottom:622.589850px;}
.y11d{bottom:623.469600px;}
.y4a{bottom:625.016250px;}
.y1a{bottom:627.382200px;}
.y9b{bottom:628.889850px;}
.yd6{bottom:633.500550px;}
.y11c{bottom:638.319600px;}
.y7b{bottom:640.739850px;}
.y19{bottom:642.232200px;}
.y49{bottom:643.166250px;}
.y9a{bottom:647.040000px;}
.ye2{bottom:653.339850px;}
.y18{bottom:657.082050px;}
.y11b{bottom:657.421500px;}
.y7a{bottom:658.889850px;}
.y48{bottom:661.316250px;}
.y99{bottom:665.189850px;}
.yc7{bottom:667.871400px;}
.ye1{bottom:671.489850px;}
.y17{bottom:671.932200px;}
.y11a{bottom:672.271500px;}
.y79{bottom:677.039850px;}
.y47{bottom:679.466250px;}
.y98{bottom:683.339850px;}
.yc6{bottom:686.162700px;}
.y16{bottom:686.782200px;}
.ye0{bottom:689.639850px;}
.y119{bottom:691.373550px;}
.y78{bottom:695.190000px;}
.y46{bottom:697.616250px;}
.y97{bottom:701.489850px;}
.yc5{bottom:702.362700px;}
.yc4{bottom:704.454000px;}
.y118{bottom:706.223550px;}
.y77{bottom:713.339850px;}
.y45{bottom:715.766250px;}
.y15{bottom:716.632200px;}
.yc3{bottom:720.654000px;}
.ydf{bottom:722.789850px;}
.y117{bottom:725.325600px;}
.y76{bottom:731.489850px;}
.y44{bottom:733.916250px;}
.y96{bottom:734.639850px;}
.yc2{bottom:738.945300px;}
.y116{bottom:740.175450px;}
.yde{bottom:740.940000px;}
.y14{bottom:746.482200px;}
.y75{bottom:749.639850px;}
.y43{bottom:752.066250px;}
.yc1{bottom:757.236750px;}
.ydd{bottom:759.089850px;}
.y115{bottom:759.277500px;}
.yc0{bottom:759.328050px;}
.y74{bottom:767.789850px;}
.y42{bottom:770.216250px;}
.y114{bottom:774.127500px;}
.ybf{bottom:775.528050px;}
.y13{bottom:776.332050px;}
.ydc{bottom:777.239850px;}
.y73{bottom:785.940000px;}
.y41{bottom:788.366250px;}
.y12{bottom:791.182200px;}
.y113{bottom:793.229400px;}
.ybe{bottom:793.819350px;}
.ybd{bottom:795.910650px;}
.y72{bottom:804.089850px;}
.y11{bottom:806.032050px;}
.y40{bottom:806.516250px;}
.y112{bottom:808.079400px;}
.ydb{bottom:810.389850px;}
.ybc{bottom:812.110650px;}
.y10{bottom:820.882200px;}
.y71{bottom:822.239850px;}
.y3f{bottom:824.666250px;}
.y111{bottom:827.181450px;}
.yda{bottom:828.539850px;}
.ybb{bottom:830.401950px;}
.yba{bottom:832.493250px;}
.yf{bottom:835.732200px;}
.y70{bottom:840.389850px;}
.y110{bottom:842.031300px;}
.y3e{bottom:842.816250px;}
.yd9{bottom:846.690000px;}
.yb9{bottom:848.693250px;}
.ye{bottom:850.582050px;}
.y10f{bottom:856.881450px;}
.y6f{bottom:858.539850px;}
.y3d{bottom:860.966250px;}
.yeb{bottom:861.690000px;}
.yd8{bottom:864.839850px;}
.yd{bottom:865.432200px;}
.yb8{bottom:866.984550px;}
.y10e{bottom:875.983350px;}
.y6e{bottom:876.690000px;}
.y3c{bottom:879.116250px;}
.yea{bottom:879.839850px;}
.yc{bottom:880.282050px;}
.yb7{bottom:885.275850px;}
.y10d{bottom:890.833350px;}
.y6d{bottom:894.839850px;}
.yb{bottom:895.132200px;}
.y3b{bottom:897.266250px;}
.yd7{bottom:897.989850px;}
.yb6{bottom:901.475850px;}
.yb5{bottom:903.567150px;}
.y10c{bottom:909.935250px;}
.ya{bottom:909.982200px;}
.y6c{bottom:912.989850px;}
.y3a{bottom:915.416250px;}
.ye9{bottom:916.139850px;}
.yb4{bottom:919.767150px;}
.y10b{bottom:924.785400px;}
.y9{bottom:924.832050px;}
.y6b{bottom:931.139850px;}
.y39{bottom:933.566250px;}
.ye8{bottom:934.289850px;}
.yb3{bottom:938.058450px;}
.y8{bottom:939.682200px;}
.yb2{bottom:940.149750px;}
.y10a{bottom:943.887300px;}
.y6a{bottom:949.289850px;}
.y38{bottom:951.716250px;}
.ye7{bottom:952.440000px;}
.yb1{bottom:956.349750px;}
.y109{bottom:958.737300px;}
.y69{bottom:967.440000px;}
.y7{bottom:969.532050px;}
.y37{bottom:969.866250px;}
.ye6{bottom:970.589850px;}
.y108{bottom:973.587300px;}
.yb0{bottom:974.641050px;}
.y68{bottom:985.589850px;}
.y6{bottom:987.682200px;}
.y36{bottom:988.016250px;}
.ye5{bottom:988.739850px;}
.y107{bottom:992.689200px;}
.yaf{bottom:992.932500px;}
.y67{bottom:1003.739850px;}
.y5{bottom:1005.832050px;}
.y35{bottom:1006.166250px;}
.ye4{bottom:1006.889850px;}
.y106{bottom:1007.539350px;}
.yae{bottom:1009.132350px;}
.y66{bottom:1021.889850px;}
.y105{bottom:1026.641250px;}
.y4{bottom:1034.632200px;}
.y34{bottom:1039.316250px;}
.y65{bottom:1040.039850px;}
.yc8{bottom:1040.203500px;}
.y104{bottom:1041.491250px;}
.y33{bottom:1041.510750px;}
.y3{bottom:1043.922750px;}
.y32{bottom:1112.916750px;}
.h8{height:25.440000px;}
.h9{height:41.904000px;}
.h2{height:45.342773px;}
.h4{height:46.602000px;}
.h7{height:47.142000px;}
.hd{height:47.381836px;}
.h6{height:56.958000px;}
.hb{height:57.618000px;}
.ha{height:60.060000px;}
.hc{height:79.002000px;}
.h5{height:83.808000px;}
.h3{height:1126.801500px;}
.h1{height:1189.500000px;}
.h0{height:1189.801500px;}
.w2{width:786.601500px;}
.w0{width:849.601500px;}
.w1{width:849.750000px;}
.x0{left:0.000000px;}
.x2{left:31.500000px;}
.xa{left:72.283500px;}
.x6{left:103.796250px;}
.x12{left:109.971000px;}
.xd{left:112.071000px;}
.x5{left:116.882250px;}
.x21{left:130.796250px;}
.x4{left:134.670000px;}
.x19{left:148.538850px;}
.x8{left:160.677750px;}
.x13{left:189.788550px;}
.x7{left:202.567350px;}
.x11{left:229.071000px;}
.x1a{left:233.878500px;}
.x1b{left:277.968450px;}
.x10{left:314.121000px;}
.x14{left:318.410550px;}
.x18{left:362.500650px;}
.x15{left:406.590600px;}
.xb{left:433.800750px;}
.x1c{left:450.680550px;}
.x16{left:494.770500px;}
.xe{left:523.671000px;}
.x3{left:533.967750px;}
.x1d{left:538.860600px;}
.x1e{left:582.950550px;}
.x17{left:627.040500px;}
.x9{left:634.322100px;}
.xf{left:641.741250px;}
.x1f{left:667.279050px;}
.x20{left:711.369000px;}
.xc{left:713.422200px;}
.x1{left:721.068000px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536533pt;}
.v3{vertical-align:28.800000pt;}
.ls9{letter-spacing:-4.986667pt;}
.lsb{letter-spacing:-3.360000pt;}
.ls7{letter-spacing:-2.170667pt;}
.lsc{letter-spacing:-1.440000pt;}
.ls8{letter-spacing:-0.586667pt;}
.lsa{letter-spacing:-0.576000pt;}
.ls1{letter-spacing:-0.384000pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.144000pt;}
.ls3{letter-spacing:-0.096000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:7.073067pt;}
.ls5{letter-spacing:7.073600pt;}
.wsc6{word-spacing:-48.000000pt;}
.ws1d{word-spacing:-14.666667pt;}
.ws1c{word-spacing:-14.080000pt;}
.ws76{word-spacing:-13.493333pt;}
.wsbe{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.520000pt;}
.wsbd{word-spacing:-11.424000pt;}
.ws3{word-spacing:-10.666667pt;}
.wsc5{word-spacing:-10.560000pt;}
.ws2{word-spacing:-10.240000pt;}
.ws77{word-spacing:-9.680000pt;}
.ws5e{word-spacing:-6.336000pt;}
.ws1{word-spacing:-6.218667pt;}
.wscd{word-spacing:-5.280000pt;}
.wsa6{word-spacing:-5.104000pt;}
.wsb3{word-spacing:-4.576000pt;}
.ws65{word-spacing:-3.696000pt;}
.ws79{word-spacing:-3.285333pt;}
.wsd4{word-spacing:-3.109333pt;}
.ws9{word-spacing:-3.024000pt;}
.wsb7{word-spacing:-2.816000pt;}
.ws57{word-spacing:-2.581333pt;}
.wse1{word-spacing:-2.464000pt;}
.wsc{word-spacing:-2.352000pt;}
.ws32{word-spacing:-2.346667pt;}
.wse9{word-spacing:-2.304000pt;}
.wsf1{word-spacing:-2.256000pt;}
.ws4b{word-spacing:-2.170667pt;}
.wsda{word-spacing:-2.160000pt;}
.wsa0{word-spacing:-2.112000pt;}
.wsdd{word-spacing:-1.877333pt;}
.ws10{word-spacing:-1.824000pt;}
.wse{word-spacing:-1.776000pt;}
.ws44{word-spacing:-1.701333pt;}
.wsa3{word-spacing:-1.584000pt;}
.ws15{word-spacing:-1.392000pt;}
.wsf3{word-spacing:-1.344000pt;}
.wse8{word-spacing:-1.296000pt;}
.wscc{word-spacing:-1.290667pt;}
.ws50{word-spacing:-1.173333pt;}
.wsea{word-spacing:-1.152000pt;}
.ws6{word-spacing:-1.104000pt;}
.ws18{word-spacing:-1.056000pt;}
.wsf4{word-spacing:-1.008000pt;}
.ws12{word-spacing:-0.960000pt;}
.wse7{word-spacing:-0.912000pt;}
.wsa8{word-spacing:-0.880000pt;}
.ws17{word-spacing:-0.864000pt;}
.wsf7{word-spacing:-0.768000pt;}
.ws55{word-spacing:-0.704000pt;}
.ws3d{word-spacing:-0.645333pt;}
.wsec{word-spacing:-0.480000pt;}
.ws46{word-spacing:-0.469333pt;}
.wsd{word-spacing:-0.432000pt;}
.ws2c{word-spacing:-0.410667pt;}
.wsd3{word-spacing:-0.352000pt;}
.ws2d{word-spacing:-0.293333pt;}
.ws4f{word-spacing:-0.176000pt;}
.ws1a{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
.ws7{word-spacing:0.096000pt;}
.ws7c{word-spacing:0.117333pt;}
.ws84{word-spacing:0.234667pt;}
.wsf5{word-spacing:0.240000pt;}
.wsf8{word-spacing:0.288000pt;}
.ws19{word-spacing:0.384000pt;}
.wsf0{word-spacing:0.576000pt;}
.ws31{word-spacing:0.586667pt;}
.ws14{word-spacing:0.624000pt;}
.wsaa{word-spacing:0.645333pt;}
.ws16{word-spacing:0.768000pt;}
.wsa1{word-spacing:0.880000pt;}
.ws98{word-spacing:0.938667pt;}
.wsd2{word-spacing:0.997333pt;}
.wsa{word-spacing:1.008000pt;}
.wsf{word-spacing:1.104000pt;}
.ws93{word-spacing:1.114667pt;}
.ws5f{word-spacing:1.173333pt;}
.ws42{word-spacing:1.232000pt;}
.wsb4{word-spacing:1.349333pt;}
.wsf6{word-spacing:1.392000pt;}
.ws2e{word-spacing:1.408000pt;}
.ws1b{word-spacing:1.536000pt;}
.ws97{word-spacing:1.584000pt;}
.wse5{word-spacing:1.642667pt;}
.ws4c{word-spacing:1.760000pt;}
.ws60{word-spacing:1.818667pt;}
.wsfa{word-spacing:1.920000pt;}
.wsf2{word-spacing:2.016000pt;}
.wsb{word-spacing:2.112000pt;}
.wsed{word-spacing:2.352000pt;}
.ws8c{word-spacing:2.405333pt;}
.ws82{word-spacing:2.464000pt;}
.wsc9{word-spacing:2.698667pt;}
.wsb1{word-spacing:2.757333pt;}
.ws7b{word-spacing:2.992000pt;}
.ws52{word-spacing:3.109333pt;}
.ws8{word-spacing:3.120000pt;}
.ws13{word-spacing:3.168000pt;}
.wsf9{word-spacing:3.216000pt;}
.ws54{word-spacing:3.285333pt;}
.ws91{word-spacing:3.344000pt;}
.wseb{word-spacing:3.360000pt;}
.wsee{word-spacing:3.456000pt;}
.wsa9{word-spacing:3.637333pt;}
.ws6d{word-spacing:3.696000pt;}
.ws92{word-spacing:3.813333pt;}
.wsc8{word-spacing:3.930667pt;}
.wsa5{word-spacing:3.989333pt;}
.wsd5{word-spacing:4.282667pt;}
.ws9f{word-spacing:4.341333pt;}
.ws94{word-spacing:4.400000pt;}
.ws86{word-spacing:4.458667pt;}
.wsef{word-spacing:4.512000pt;}
.ws11{word-spacing:4.560000pt;}
.wsfb{word-spacing:4.608000pt;}
.ws9b{word-spacing:4.752000pt;}
.ws6b{word-spacing:4.810667pt;}
.wsdb{word-spacing:4.928000pt;}
.ws45{word-spacing:4.986667pt;}
.ws7a{word-spacing:5.104000pt;}
.ws7d{word-spacing:5.221333pt;}
.ws95{word-spacing:5.280000pt;}
.wsce{word-spacing:5.338667pt;}
.ws29{word-spacing:5.514667pt;}
.ws26{word-spacing:5.573333pt;}
.wse6{word-spacing:5.808000pt;}
.ws87{word-spacing:5.866667pt;}
.ws3b{word-spacing:5.925333pt;}
.wsae{word-spacing:5.984000pt;}
.wsa4{word-spacing:6.042667pt;}
.wsd1{word-spacing:6.218667pt;}
.ws56{word-spacing:6.394667pt;}
.ws3e{word-spacing:6.512000pt;}
.ws75{word-spacing:6.570667pt;}
.ws47{word-spacing:6.629333pt;}
.ws35{word-spacing:6.688000pt;}
.wsd6{word-spacing:6.746667pt;}
.ws8f{word-spacing:6.805333pt;}
.ws51{word-spacing:7.040000pt;}
.ws30{word-spacing:7.098667pt;}
.ws22{word-spacing:7.157333pt;}
.ws49{word-spacing:7.216000pt;}
.ws99{word-spacing:7.333333pt;}
.ws90{word-spacing:7.450667pt;}
.ws8b{word-spacing:7.568000pt;}
.ws38{word-spacing:7.626667pt;}
.ws1f{word-spacing:7.744000pt;}
.ws5a{word-spacing:7.861333pt;}
.wsb5{word-spacing:7.920000pt;}
.ws6e{word-spacing:8.037333pt;}
.wsdc{word-spacing:8.213333pt;}
.wsac{word-spacing:8.272000pt;}
.wscb{word-spacing:8.389333pt;}
.ws48{word-spacing:8.448000pt;}
.ws89{word-spacing:8.506667pt;}
.ws88{word-spacing:8.682667pt;}
.ws64{word-spacing:8.858667pt;}
.ws2a{word-spacing:8.976000pt;}
.ws2b{word-spacing:9.034667pt;}
.ws7e{word-spacing:9.210667pt;}
.wsa7{word-spacing:9.269333pt;}
.ws72{word-spacing:9.445333pt;}
.ws62{word-spacing:9.504000pt;}
.wscf{word-spacing:9.562667pt;}
.wsd9{word-spacing:9.914667pt;}
.ws59{word-spacing:10.266667pt;}
.ws9a{word-spacing:10.384000pt;}
.wsd8{word-spacing:10.618667pt;}
.ws96{word-spacing:10.677333pt;}
.wsab{word-spacing:10.736000pt;}
.ws5d{word-spacing:11.029333pt;}
.ws2f{word-spacing:11.088000pt;}
.ws43{word-spacing:11.381333pt;}
.ws58{word-spacing:11.498667pt;}
.ws9c{word-spacing:11.557333pt;}
.ws74{word-spacing:11.616000pt;}
.wsaf{word-spacing:11.674667pt;}
.ws27{word-spacing:11.850667pt;}
.ws3c{word-spacing:12.144000pt;}
.ws8a{word-spacing:12.261333pt;}
.ws40{word-spacing:12.320000pt;}
.ws83{word-spacing:12.378667pt;}
.wsb0{word-spacing:12.437333pt;}
.ws28{word-spacing:12.496000pt;}
.wse3{word-spacing:12.848000pt;}
.ws63{word-spacing:12.906667pt;}
.wsb2{word-spacing:13.258667pt;}
.ws24{word-spacing:13.317333pt;}
.ws6c{word-spacing:13.376000pt;}
.ws8d{word-spacing:14.256000pt;}
.ws81{word-spacing:14.314667pt;}
.wsdf{word-spacing:14.432000pt;}
.ws33{word-spacing:14.608000pt;}
.ws34{word-spacing:14.666667pt;}
.ws4d{word-spacing:14.842667pt;}
.ws80{word-spacing:14.960000pt;}
.wsad{word-spacing:15.018667pt;}
.ws61{word-spacing:15.077333pt;}
.ws25{word-spacing:15.136000pt;}
.wsd0{word-spacing:15.664000pt;}
.ws7f{word-spacing:16.016000pt;}
.ws5b{word-spacing:16.250667pt;}
.ws6f{word-spacing:16.309333pt;}
.ws9e{word-spacing:16.426667pt;}
.wsca{word-spacing:16.661333pt;}
.ws39{word-spacing:16.720000pt;}
.wsc7{word-spacing:17.013333pt;}
.ws36{word-spacing:17.130667pt;}
.ws1e{word-spacing:17.365333pt;}
.ws8e{word-spacing:17.541333pt;}
.wsde{word-spacing:17.834667pt;}
.ws4e{word-spacing:18.186667pt;}
.ws69{word-spacing:18.421333pt;}
.ws9d{word-spacing:18.480000pt;}
.ws68{word-spacing:18.656000pt;}
.ws4a{word-spacing:18.832000pt;}
.ws5c{word-spacing:19.242667pt;}
.ws23{word-spacing:20.005333pt;}
.ws66{word-spacing:20.240000pt;}
.ws53{word-spacing:21.237333pt;}
.wsd7{word-spacing:21.941333pt;}
.ws70{word-spacing:22.234667pt;}
.wsb6{word-spacing:22.586667pt;}
.wsa2{word-spacing:23.642667pt;}
.ws3f{word-spacing:24.464000pt;}
.ws6a{word-spacing:24.522667pt;}
.ws20{word-spacing:24.698667pt;}
.wse4{word-spacing:25.813333pt;}
.wse0{word-spacing:26.517333pt;}
.ws67{word-spacing:26.752000pt;}
.wsb8{word-spacing:27.280000pt;}
.ws41{word-spacing:32.912000pt;}
.ws73{word-spacing:33.264000pt;}
.wsc4{word-spacing:33.404267pt;}
.wse2{word-spacing:33.968000pt;}
.ws71{word-spacing:34.437333pt;}
.ws3a{word-spacing:42.474667pt;}
.ws37{word-spacing:43.061333pt;}
.ws4{word-spacing:44.000000pt;}
.wsbf{word-spacing:44.732267pt;}
.ws78{word-spacing:46.170667pt;}
.ws85{word-spacing:51.333333pt;}
.ws21{word-spacing:54.325333pt;}
.wsbb{word-spacing:57.748800pt;}
.wsba{word-spacing:65.066667pt;}
.wsc3{word-spacing:69.596267pt;}
.wsc0{word-spacing:70.364267pt;}
.wsc1{word-spacing:72.524800pt;}
.wsc2{word-spacing:77.180267pt;}
.wsbc{word-spacing:82.400000pt;}
.wsb9{word-spacing:319.472000pt;}
._8{margin-left:-10.560000pt;}
._6{margin-left:-7.626667pt;}
._2{margin-left:-6.624000pt;}
._3{margin-left:-5.688000pt;}
._5{margin-left:-4.400000pt;}
._1{margin-left:-3.338133pt;}
._4{margin-left:-2.304000pt;}
._0{margin-left:-1.152000pt;}
._7{width:0.890133pt;}
._26{width:2.544000pt;}
._9{width:4.400000pt;}
._2e{width:24.000000pt;}
._2c{width:42.044800pt;}
._2a{width:45.404267pt;}
._2d{width:48.000000pt;}
._e{width:58.959467pt;}
._c{width:60.608000pt;}
._d{width:62.970667pt;}
._24{width:64.176000pt;}
._25{width:67.536000pt;}
._18{width:69.792000pt;}
._2b{width:71.794133pt;}
._11{width:77.066667pt;}
._1f{width:80.192000pt;}
._1b{width:85.584000pt;}
._29{width:93.404267pt;}
._12{width:94.400000pt;}
._27{width:98.442133pt;}
._19{width:101.066667pt;}
._28{width:102.889600pt;}
._14{width:106.933333pt;}
._15{width:109.033600pt;}
._b{width:111.482667pt;}
._23{width:113.648000pt;}
._21{width:115.344000pt;}
._f{width:126.265600pt;}
._22{width:141.168000pt;}
._13{width:142.666667pt;}
._20{width:144.560000pt;}
._1c{width:159.200000pt;}
._1e{width:161.040000pt;}
._16{width:189.264000pt;}
._10{width:190.298133pt;}
._1d{width:199.680000pt;}
._1a{width:221.376000pt;}
._17{width:319.712000pt;}
._a{width:371.396800pt;}
.fs4{font-size:24.874667pt;}
.fs3{font-size:34.202667pt;}
.fs5{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:58.666667pt;}
.fs6{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:28.000000pt;}
.y1{bottom:68.519067pt;}
.y31{bottom:122.514533pt;}
.y95{bottom:123.413200pt;}
.yad{bottom:126.300933pt;}
.y103{bottom:135.428000pt;}
.y64{bottom:136.103333pt;}
.y30{bottom:138.866533pt;}
.y94{bottom:139.546533pt;}
.yac{bottom:142.434267pt;}
.y102{bottom:148.627867pt;}
.y63{bottom:152.236667pt;}
.y93{bottom:155.679867pt;}
.yab{bottom:158.567600pt;}
.y101{bottom:165.607467pt;}
.y62{bottom:168.370000pt;}
.y92{bottom:171.813200pt;}
.yaa{bottom:174.700933pt;}
.y100{bottom:178.807467pt;}
.y61{bottom:184.503333pt;}
.y91{bottom:187.946667pt;}
.ya9{bottom:190.834267pt;}
.yff{bottom:195.786933pt;}
.y60{bottom:200.636667pt;}
.y90{bottom:204.079867pt;}
.ya8{bottom:206.967600pt;}
.yfe{bottom:208.986933pt;}
.y5f{bottom:216.770000pt;}
.y8f{bottom:220.213200pt;}
.ya7{bottom:223.100933pt;}
.yfd{bottom:225.966533pt;}
.y2f{bottom:227.139600pt;}
.y5e{bottom:232.903333pt;}
.y8e{bottom:236.346533pt;}
.yfc{bottom:239.166533pt;}
.ya6{bottom:239.234267pt;}
.y5d{bottom:249.036667pt;}
.y8d{bottom:252.479867pt;}
.y2e{bottom:253.673067pt;}
.ya5{bottom:255.367600pt;}
.yfb{bottom:256.146000pt;}
.y5c{bottom:265.170000pt;}
.y2d{bottom:266.873067pt;}
.y8c{bottom:268.613200pt;}
.yfa{bottom:269.346000pt;}
.ya4{bottom:271.500933pt;}
.y2c{bottom:280.072933pt;}
.y5b{bottom:281.303333pt;}
.y8b{bottom:284.746533pt;}
.yf9{bottom:286.325600pt;}
.ya3{bottom:287.634267pt;}
.y2b{bottom:293.273067pt;}
.y5a{bottom:297.436667pt;}
.y8a{bottom:300.879867pt;}
.yf8{bottom:303.305067pt;}
.ya2{bottom:303.767600pt;}
.y2a{bottom:306.473067pt;}
.y59{bottom:313.570000pt;}
.yf7{bottom:316.505067pt;}
.y89{bottom:317.013200pt;}
.y29{bottom:319.673067pt;}
.ya1{bottom:319.900933pt;}
.y58{bottom:329.703333pt;}
.y28{bottom:332.873067pt;}
.y88{bottom:333.146533pt;}
.yf6{bottom:333.484667pt;}
.y57{bottom:345.836667pt;}
.y27{bottom:346.072933pt;}
.yf5{bottom:346.684667pt;}
.y87{bottom:349.279867pt;}
.yd5{bottom:355.488800pt;}
.y26{bottom:359.273067pt;}
.y56{bottom:361.970000pt;}
.yf4{bottom:363.664133pt;}
.y86{bottom:365.413200pt;}
.yd4{bottom:369.888800pt;}
.y25{bottom:372.473067pt;}
.yf3{bottom:376.864133pt;}
.y55{bottom:378.103333pt;}
.y85{bottom:381.546533pt;}
.yd3{bottom:384.288800pt;}
.y24{bottom:385.673067pt;}
.yf2{bottom:393.843733pt;}
.y54{bottom:394.236667pt;}
.y84{bottom:397.679867pt;}
.y23{bottom:398.873067pt;}
.yd2{bottom:403.655333pt;}
.yf1{bottom:407.043733pt;}
.y53{bottom:410.370000pt;}
.y83{bottom:413.813200pt;}
.yf0{bottom:424.023200pt;}
.y22{bottom:425.406267pt;}
.y123{bottom:425.918000pt;}
.y52{bottom:426.503333pt;}
.y82{bottom:429.946533pt;}
.yd1{bottom:431.388800pt;}
.yef{bottom:437.223200pt;}
.y51{bottom:442.636667pt;}
.y122{bottom:442.897600pt;}
.y81{bottom:446.079867pt;}
.yd0{bottom:450.755333pt;}
.y21{bottom:451.939733pt;}
.yee{bottom:454.202667pt;}
.y50{bottom:458.770000pt;}
.y80{bottom:462.213200pt;}
.ycf{bottom:465.155333pt;}
.yed{bottom:467.402800pt;}
.y4f{bottom:474.903333pt;}
.ya0{bottom:478.346533pt;}
.y20{bottom:478.473067pt;}
.ycb{bottom:484.521867pt;}
.ycd{bottom:484.901467pt;}
.y4e{bottom:491.036667pt;}
.y1f{bottom:491.673067pt;}
.y7f{bottom:491.679867pt;}
.y121{bottom:493.836133pt;}
.y9f{bottom:494.479867pt;}
.yce{bottom:497.855200pt;}
.yec{bottom:501.361867pt;}
.y1e{bottom:504.873067pt;}
.y120{bottom:507.036133pt;}
.y4d{bottom:507.170000pt;}
.y9e{bottom:510.613200pt;}
.yca{bottom:512.255333pt;}
.ycc{bottom:512.634800pt;}
.y1d{bottom:518.072933pt;}
.y7e{bottom:521.146533pt;}
.y4c{bottom:523.303333pt;}
.y11f{bottom:524.015600pt;}
.y9d{bottom:526.746533pt;}
.y1c{bottom:531.273067pt;}
.yc9{bottom:531.621867pt;}
.y11e{bottom:537.215600pt;}
.y7d{bottom:537.279867pt;}
.y4b{bottom:539.436667pt;}
.y9c{bottom:542.879867pt;}
.y1b{bottom:544.473067pt;}
.ye3{bottom:551.279867pt;}
.y7c{bottom:553.413200pt;}
.y11d{bottom:554.195200pt;}
.y4a{bottom:555.570000pt;}
.y1a{bottom:557.673067pt;}
.y9b{bottom:559.013200pt;}
.yd6{bottom:563.111600pt;}
.y11c{bottom:567.395200pt;}
.y7b{bottom:569.546533pt;}
.y19{bottom:570.873067pt;}
.y49{bottom:571.703333pt;}
.y9a{bottom:575.146667pt;}
.ye2{bottom:580.746533pt;}
.y18{bottom:584.072933pt;}
.y11b{bottom:584.374667pt;}
.y7a{bottom:585.679867pt;}
.y48{bottom:587.836667pt;}
.y99{bottom:591.279867pt;}
.yc7{bottom:593.663467pt;}
.ye1{bottom:596.879867pt;}
.y17{bottom:597.273067pt;}
.y11a{bottom:597.574667pt;}
.y79{bottom:601.813200pt;}
.y47{bottom:603.970000pt;}
.y98{bottom:607.413200pt;}
.yc6{bottom:609.922400pt;}
.y16{bottom:610.473067pt;}
.ye0{bottom:613.013200pt;}
.y119{bottom:614.554267pt;}
.y78{bottom:617.946667pt;}
.y46{bottom:620.103333pt;}
.y97{bottom:623.546533pt;}
.yc5{bottom:624.322400pt;}
.yc4{bottom:626.181333pt;}
.y118{bottom:627.754267pt;}
.y77{bottom:634.079867pt;}
.y45{bottom:636.236667pt;}
.y15{bottom:637.006400pt;}
.yc3{bottom:640.581333pt;}
.ydf{bottom:642.479867pt;}
.y117{bottom:644.733867pt;}
.y76{bottom:650.213200pt;}
.y44{bottom:652.370000pt;}
.y96{bottom:653.013200pt;}
.yc2{bottom:656.840267pt;}
.y116{bottom:657.933733pt;}
.yde{bottom:658.613333pt;}
.y14{bottom:663.539733pt;}
.y75{bottom:666.346533pt;}
.y43{bottom:668.503333pt;}
.yc1{bottom:673.099333pt;}
.ydd{bottom:674.746533pt;}
.y115{bottom:674.913333pt;}
.yc0{bottom:674.958267pt;}
.y74{bottom:682.479867pt;}
.y42{bottom:684.636667pt;}
.y114{bottom:688.113333pt;}
.ybf{bottom:689.358267pt;}
.y13{bottom:690.072933pt;}
.ydc{bottom:690.879867pt;}
.y73{bottom:698.613333pt;}
.y41{bottom:700.770000pt;}
.y12{bottom:703.273067pt;}
.y113{bottom:705.092800pt;}
.ybe{bottom:705.617200pt;}
.ybd{bottom:707.476133pt;}
.y72{bottom:714.746533pt;}
.y11{bottom:716.472933pt;}
.y40{bottom:716.903333pt;}
.y112{bottom:718.292800pt;}
.ydb{bottom:720.346533pt;}
.ybc{bottom:721.876133pt;}
.y10{bottom:729.673067pt;}
.y71{bottom:730.879867pt;}
.y3f{bottom:733.036667pt;}
.y111{bottom:735.272400pt;}
.yda{bottom:736.479867pt;}
.ybb{bottom:738.135067pt;}
.yba{bottom:739.994000pt;}
.yf{bottom:742.873067pt;}
.y70{bottom:747.013200pt;}
.y110{bottom:748.472267pt;}
.y3e{bottom:749.170000pt;}
.yd9{bottom:752.613333pt;}
.yb9{bottom:754.394000pt;}
.ye{bottom:756.072933pt;}
.y10f{bottom:761.672400pt;}
.y6f{bottom:763.146533pt;}
.y3d{bottom:765.303333pt;}
.yeb{bottom:765.946667pt;}
.yd8{bottom:768.746533pt;}
.yd{bottom:769.273067pt;}
.yb8{bottom:770.652933pt;}
.y10e{bottom:778.651867pt;}
.y6e{bottom:779.280000pt;}
.y3c{bottom:781.436667pt;}
.yea{bottom:782.079867pt;}
.yc{bottom:782.472933pt;}
.yb7{bottom:786.911867pt;}
.y10d{bottom:791.851867pt;}
.y6d{bottom:795.413200pt;}
.yb{bottom:795.673067pt;}
.y3b{bottom:797.570000pt;}
.yd7{bottom:798.213200pt;}
.yb6{bottom:801.311867pt;}
.yb5{bottom:803.170800pt;}
.y10c{bottom:808.831333pt;}
.ya{bottom:808.873067pt;}
.y6c{bottom:811.546533pt;}
.y3a{bottom:813.703333pt;}
.ye9{bottom:814.346533pt;}
.yb4{bottom:817.570800pt;}
.y10b{bottom:822.031467pt;}
.y9{bottom:822.072933pt;}
.y6b{bottom:827.679867pt;}
.y39{bottom:829.836667pt;}
.ye8{bottom:830.479867pt;}
.yb3{bottom:833.829733pt;}
.y8{bottom:835.273067pt;}
.yb2{bottom:835.688667pt;}
.y10a{bottom:839.010933pt;}
.y6a{bottom:843.813200pt;}
.y38{bottom:845.970000pt;}
.ye7{bottom:846.613333pt;}
.yb1{bottom:850.088667pt;}
.y109{bottom:852.210933pt;}
.y69{bottom:859.946667pt;}
.y7{bottom:861.806267pt;}
.y37{bottom:862.103333pt;}
.ye6{bottom:862.746533pt;}
.y108{bottom:865.410933pt;}
.yb0{bottom:866.347600pt;}
.y68{bottom:876.079867pt;}
.y6{bottom:877.939733pt;}
.y36{bottom:878.236667pt;}
.ye5{bottom:878.879867pt;}
.y107{bottom:882.390400pt;}
.yaf{bottom:882.606667pt;}
.y67{bottom:892.213200pt;}
.y5{bottom:894.072933pt;}
.y35{bottom:894.370000pt;}
.ye4{bottom:895.013200pt;}
.y106{bottom:895.590533pt;}
.yae{bottom:897.006533pt;}
.y66{bottom:908.346533pt;}
.y105{bottom:912.570000pt;}
.y4{bottom:919.673067pt;}
.y34{bottom:923.836667pt;}
.y65{bottom:924.479867pt;}
.yc8{bottom:924.625333pt;}
.y104{bottom:925.770000pt;}
.y33{bottom:925.787333pt;}
.y3{bottom:927.931333pt;}
.y32{bottom:989.259333pt;}
.h8{height:22.613333pt;}
.h9{height:37.248000pt;}
.h2{height:40.304688pt;}
.h4{height:41.424000pt;}
.h7{height:41.904000pt;}
.hd{height:42.117188pt;}
.h6{height:50.629333pt;}
.hb{height:51.216000pt;}
.ha{height:53.386667pt;}
.hc{height:70.224000pt;}
.h5{height:74.496000pt;}
.h3{height:1001.601333pt;}
.h1{height:1057.333333pt;}
.h0{height:1057.601333pt;}
.w2{width:699.201333pt;}
.w0{width:755.201333pt;}
.w1{width:755.333333pt;}
.x0{left:0.000000pt;}
.x2{left:28.000000pt;}
.xa{left:64.252000pt;}
.x6{left:92.263333pt;}
.x12{left:97.752000pt;}
.xd{left:99.618667pt;}
.x5{left:103.895333pt;}
.x21{left:116.263333pt;}
.x4{left:119.706667pt;}
.x19{left:132.034533pt;}
.x8{left:142.824667pt;}
.x13{left:168.700933pt;}
.x7{left:180.059867pt;}
.x11{left:203.618667pt;}
.x1a{left:207.892000pt;}
.x1b{left:247.083067pt;}
.x10{left:279.218667pt;}
.x14{left:283.031600pt;}
.x18{left:322.222800pt;}
.x15{left:361.413867pt;}
.xb{left:385.600667pt;}
.x1c{left:400.604933pt;}
.x16{left:439.796000pt;}
.xe{left:465.485333pt;}
.x3{left:474.638000pt;}
.x1d{left:478.987200pt;}
.x1e{left:518.178267pt;}
.x17{left:557.369333pt;}
.x9{left:563.841867pt;}
.xf{left:570.436667pt;}
.x1f{left:593.136933pt;}
.x20{left:632.328000pt;}
.xc{left:634.153067pt;}
.x1{left:640.949333pt;}
}




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