
    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_30c6d57184a13210d89126ba.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_cba34f431a15fcc033f110c8.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8ea35bea6286756ca9bdd1a5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.907000;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_a36c1c42d4933c517b987649.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.906000;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_d78bc976e86a4f41450bdf9f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_591a6177180d611f2cfd51bf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.907000;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_4d2c06e9af390f4c79b6900a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2f6dd5fdd39536e9c9647a2c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.066000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980011px;}
.ls4{letter-spacing:-2.703000px;}
.ls6{letter-spacing:-1.785000px;}
.ls5{letter-spacing:-1.632000px;}
.ls9{letter-spacing:-1.428000px;}
.lsb{letter-spacing:-1.122000px;}
.lsc{letter-spacing:-0.918000px;}
.ls3{letter-spacing:-0.600000px;}
.lsa{letter-spacing:-0.306000px;}
.ls2{letter-spacing:-0.051000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.014407px;}
.ls7{letter-spacing:0.255000px;}
.ls8{letter-spacing:27.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.000000px;}
.ws19{word-spacing:-14.400000px;}
.ws7d{word-spacing:-13.005000px;}
.ws1{word-spacing:-12.750000px;}
.ws86{word-spacing:-11.322000px;}
.ws1a{word-spacing:-9.000000px;}
.ws6c{word-spacing:-8.040000px;}
.ws79{word-spacing:-6.480000px;}
.wsbe{word-spacing:-6.375000px;}
.wsb1{word-spacing:-4.436995px;}
.ws6e{word-spacing:-4.200000px;}
.ws5a{word-spacing:-3.960000px;}
.ws32{word-spacing:-3.780000px;}
.wse8{word-spacing:-3.417000px;}
.ws1c{word-spacing:-3.240000px;}
.ws56{word-spacing:-3.120000px;}
.wsd8{word-spacing:-3.111000px;}
.wscd{word-spacing:-3.060000px;}
.ws75{word-spacing:-3.059994px;}
.ws28{word-spacing:-3.000000px;}
.ws15{word-spacing:-2.940000px;}
.ws7b{word-spacing:-2.880000px;}
.ws4d{word-spacing:-2.820000px;}
.ws3{word-spacing:-2.805000px;}
.ws83{word-spacing:-2.760000px;}
.wsca{word-spacing:-2.754000px;}
.ws43{word-spacing:-2.579994px;}
.ws9a{word-spacing:-2.520000px;}
.wsc0{word-spacing:-2.499000px;}
.wsa{word-spacing:-2.460000px;}
.wsb0{word-spacing:-2.448000px;}
.ws60{word-spacing:-2.400000px;}
.wsaf{word-spacing:-2.397000px;}
.ws9f{word-spacing:-2.346000px;}
.ws7c{word-spacing:-2.340000px;}
.ws96{word-spacing:-2.280000px;}
.ws90{word-spacing:-2.220000px;}
.wsc1{word-spacing:-2.091000px;}
.ws10{word-spacing:-1.980000px;}
.ws3e{word-spacing:-1.920000px;}
.wsd9{word-spacing:-1.887000px;}
.ws5f{word-spacing:-1.800000px;}
.ws93{word-spacing:-1.740000px;}
.wsed{word-spacing:-1.734000px;}
.wsf7{word-spacing:-1.683000px;}
.wsa5{word-spacing:-1.632000px;}
.wsa1{word-spacing:-1.581000px;}
.ws24{word-spacing:-1.500000px;}
.wsab{word-spacing:-1.479000px;}
.ws71{word-spacing:-1.440000px;}
.ws67{word-spacing:-1.380000px;}
.ws16{word-spacing:-1.320000px;}
.wsf1{word-spacing:-1.275000px;}
.ws80{word-spacing:-1.260000px;}
.wsbb{word-spacing:-1.224000px;}
.ws65{word-spacing:-1.200000px;}
.wsac{word-spacing:-1.173000px;}
.ws14{word-spacing:-1.140000px;}
.ws31{word-spacing:-1.080000px;}
.wsf4{word-spacing:-1.071000px;}
.wsce{word-spacing:-0.969000px;}
.ws4f{word-spacing:-0.960000px;}
.wsda{word-spacing:-0.918000px;}
.ws76{word-spacing:-0.900000px;}
.ws30{word-spacing:-0.840000px;}
.ws13{word-spacing:-0.780000px;}
.wsd4{word-spacing:-0.765000px;}
.wsb{word-spacing:-0.720000px;}
.wsf8{word-spacing:-0.714000px;}
.wse4{word-spacing:-0.663000px;}
.wsd3{word-spacing:-0.612000px;}
.ws7e{word-spacing:-0.600000px;}
.wsa0{word-spacing:-0.561000px;}
.wsae{word-spacing:-0.510000px;}
.ws2a{word-spacing:-0.480000px;}
.ws2f{word-spacing:-0.420000px;}
.ws2d{word-spacing:-0.360000px;}
.ws61{word-spacing:-0.306000px;}
.ws73{word-spacing:-0.240000px;}
.ws4{word-spacing:-0.120000px;}
.wse6{word-spacing:-0.102000px;}
.ws63{word-spacing:-0.060000px;}
.wsa6{word-spacing:-0.051000px;}
.ws2{word-spacing:0.000000px;}
.ws1b{word-spacing:0.051000px;}
.ws1e{word-spacing:0.060000px;}
.wsb5{word-spacing:0.102000px;}
.ws89{word-spacing:0.120000px;}
.ws26{word-spacing:0.240000px;}
.wsc{word-spacing:0.300000px;}
.ws95{word-spacing:0.306000px;}
.ws17{word-spacing:0.360000px;}
.ws59{word-spacing:0.420000px;}
.wseb{word-spacing:0.459000px;}
.ws45{word-spacing:0.540000px;}
.ws39{word-spacing:0.600000px;}
.ws25{word-spacing:0.660000px;}
.wsf0{word-spacing:0.714000px;}
.ws55{word-spacing:0.720000px;}
.ws4b{word-spacing:0.780000px;}
.ws2c{word-spacing:0.840000px;}
.ws62{word-spacing:0.918000px;}
.ws54{word-spacing:0.960000px;}
.ws35{word-spacing:1.020000px;}
.wsad{word-spacing:1.122000px;}
.ws4e{word-spacing:1.140000px;}
.ws7a{word-spacing:1.200000px;}
.ws6{word-spacing:1.260000px;}
.ws3d{word-spacing:1.320000px;}
.wsa2{word-spacing:1.377000px;}
.wsdf{word-spacing:1.428000px;}
.ws33{word-spacing:1.440000px;}
.wse3{word-spacing:1.479000px;}
.wscf{word-spacing:1.581000px;}
.ws3f{word-spacing:1.620000px;}
.ws51{word-spacing:1.632000px;}
.wscb{word-spacing:1.683000px;}
.wsf5{word-spacing:1.734000px;}
.ws5d{word-spacing:1.740000px;}
.ws64{word-spacing:1.785000px;}
.ws82{word-spacing:1.800000px;}
.ws44{word-spacing:1.860000px;}
.ws2b{word-spacing:1.920000px;}
.wsc6{word-spacing:1.989000px;}
.ws88{word-spacing:2.160000px;}
.ws4a{word-spacing:2.220000px;}
.ws50{word-spacing:2.280000px;}
.wsb6{word-spacing:2.295000px;}
.ws22{word-spacing:2.340000px;}
.wsa7{word-spacing:2.346000px;}
.wsf2{word-spacing:2.397000px;}
.ws3b{word-spacing:2.400000px;}
.wsef{word-spacing:2.448000px;}
.ws41{word-spacing:2.460000px;}
.wsc9{word-spacing:2.499000px;}
.wsb3{word-spacing:2.550000px;}
.ws6d{word-spacing:2.579994px;}
.ws18{word-spacing:2.640000px;}
.wsea{word-spacing:2.652000px;}
.ws3a{word-spacing:2.703000px;}
.ws23{word-spacing:2.760000px;}
.wsa4{word-spacing:2.805000px;}
.ws5c{word-spacing:2.820000px;}
.wsd1{word-spacing:2.856000px;}
.ws42{word-spacing:2.940000px;}
.ws5e{word-spacing:3.000000px;}
.ws7{word-spacing:3.120000px;}
.ws4c{word-spacing:3.180000px;}
.wsf9{word-spacing:3.366000px;}
.ws58{word-spacing:3.420000px;}
.wsb2{word-spacing:3.468000px;}
.wse7{word-spacing:3.519000px;}
.wsdc{word-spacing:3.570000px;}
.ws9{word-spacing:3.660000px;}
.wsb4{word-spacing:3.774000px;}
.ws68{word-spacing:3.840000px;}
.ws8f{word-spacing:3.900000px;}
.wsd6{word-spacing:3.927000px;}
.wsa3{word-spacing:3.978000px;}
.ws92{word-spacing:4.020000px;}
.wse0{word-spacing:4.029000px;}
.ws34{word-spacing:4.080000px;}
.ws27{word-spacing:4.140000px;}
.wsa8{word-spacing:4.233000px;}
.wse1{word-spacing:4.335000px;}
.ws47{word-spacing:4.380000px;}
.wsf3{word-spacing:4.385995px;}
.wsf{word-spacing:4.500000px;}
.ws12{word-spacing:4.560000px;}
.ws52{word-spacing:4.680000px;}
.ws98{word-spacing:4.740000px;}
.wsb9{word-spacing:4.845000px;}
.ws29{word-spacing:4.920000px;}
.wsd{word-spacing:5.040000px;}
.wsfa{word-spacing:5.100000px;}
.ws84{word-spacing:5.159994px;}
.ws8{word-spacing:5.280000px;}
.ws3c{word-spacing:5.460000px;}
.wsd5{word-spacing:5.508000px;}
.ws85{word-spacing:5.520000px;}
.wsc7{word-spacing:5.559000px;}
.ws1d{word-spacing:5.580000px;}
.wsf6{word-spacing:5.661000px;}
.ws1f{word-spacing:5.700000px;}
.ws48{word-spacing:5.760000px;}
.wsec{word-spacing:5.967000px;}
.ws97{word-spacing:6.000000px;}
.ws94{word-spacing:6.120000px;}
.ws8d{word-spacing:6.180000px;}
.wse5{word-spacing:6.222000px;}
.wscc{word-spacing:6.273000px;}
.ws38{word-spacing:6.300000px;}
.wsc5{word-spacing:6.324000px;}
.ws2e{word-spacing:6.420000px;}
.ws6a{word-spacing:6.540000px;}
.ws72{word-spacing:6.600000px;}
.ws8b{word-spacing:6.660000px;}
.ws40{word-spacing:6.720000px;}
.wsb7{word-spacing:6.732000px;}
.wsbf{word-spacing:6.834000px;}
.ws46{word-spacing:6.840000px;}
.ws78{word-spacing:7.080000px;}
.wsc2{word-spacing:7.191000px;}
.ws87{word-spacing:7.200000px;}
.ws99{word-spacing:7.260000px;}
.wsdd{word-spacing:7.293000px;}
.ws9b{word-spacing:7.320000px;}
.wse2{word-spacing:7.395000px;}
.ws8c{word-spacing:7.440000px;}
.ws6f{word-spacing:7.500000px;}
.ws69{word-spacing:7.560000px;}
.wsc4{word-spacing:8.109000px;}
.ws53{word-spacing:8.220000px;}
.ws91{word-spacing:8.280000px;}
.ws49{word-spacing:8.760000px;}
.ws5{word-spacing:8.940000px;}
.wse9{word-spacing:9.078000px;}
.wsbc{word-spacing:9.129000px;}
.ws36{word-spacing:9.240000px;}
.wsd2{word-spacing:9.435000px;}
.ws37{word-spacing:9.540000px;}
.wsaa{word-spacing:9.588000px;}
.wsd7{word-spacing:9.690000px;}
.ws8a{word-spacing:9.720000px;}
.wsb8{word-spacing:10.098000px;}
.ws21{word-spacing:10.140000px;}
.ws66{word-spacing:10.200000px;}
.wsd0{word-spacing:10.404000px;}
.ws9c{word-spacing:10.800000px;}
.wsde{word-spacing:10.914000px;}
.ws77{word-spacing:10.920000px;}
.ws70{word-spacing:11.160000px;}
.wsbd{word-spacing:11.271000px;}
.ws5b{word-spacing:11.400000px;}
.wsee{word-spacing:11.475000px;}
.wse{word-spacing:11.640000px;}
.wsba{word-spacing:11.934000px;}
.ws8e{word-spacing:12.120000px;}
.ws6b{word-spacing:12.540000px;}
.wsa9{word-spacing:12.954000px;}
.ws9e{word-spacing:13.362000px;}
.ws20{word-spacing:13.860000px;}
.ws9d{word-spacing:14.127001px;}
.wsdb{word-spacing:14.178000px;}
.ws7f{word-spacing:14.280000px;}
.wsc3{word-spacing:14.535000px;}
.ws57{word-spacing:14.760000px;}
.ws81{word-spacing:15.600000px;}
.ws74{word-spacing:16.500000px;}
.wsc8{word-spacing:21.012000px;}
._17{margin-left:-26.940029px;}
._10{margin-left:-18.000000px;}
._7{margin-left:-15.060000px;}
._9{margin-left:-12.960004px;}
._c{margin-left:-10.200004px;}
._e{margin-left:-8.645929px;}
._15{margin-left:-7.206025px;}
._3{margin-left:-6.007225px;}
._5{margin-left:-4.224025px;}
._2{margin-left:-2.651975px;}
._1{margin-left:-1.020000px;}
._0{width:1.887000px;}
._f{width:3.000000px;}
._13{width:4.034946px;}
._8{width:5.700020px;}
._14{width:7.560000px;}
._b{width:10.079927px;}
._16{width:11.208025px;}
._a{width:13.739988px;}
._d{width:16.499988px;}
._11{width:17.724000px;}
._4{width:21.119994px;}
._12{width:38.250000px;}
._6{width:54.000000px;}
.fc1{color:rgb(0,0,250);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:36.000000px;}
.fs5{font-size:45.000000px;}
.fs0{font-size:51.000000px;}
.fs3{font-size:60.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:55.385548px;}
.y98{bottom:67.739668px;}
.y3{bottom:70.379551px;}
.y83{bottom:78.583952px;}
.y4e{bottom:82.739702px;}
.y1{bottom:85.063803px;}
.y2{bottom:85.373548px;}
.y97{bottom:85.739668px;}
.y6e{bottom:94.739702px;}
.ydf{bottom:94.931683px;}
.y82{bottom:96.583969px;}
.y4d{bottom:100.739696px;}
.y96{bottom:103.739674px;}
.ya9{bottom:107.325005px;}
.yde{bottom:109.925686px;}
.y6d{bottom:112.739696px;}
.y81{bottom:114.583969px;}
.y115{bottom:117.592976px;}
.y4c{bottom:118.739696px;}
.y24{bottom:121.243504px;}
.y95{bottom:121.739674px;}
.ydd{bottom:124.919689px;}
.ya8{bottom:125.325005px;}
.y6c{bottom:130.739696px;}
.y80{bottom:132.583969px;}
.y113{bottom:132.586979px;}
.y23{bottom:136.237495px;}
.y4b{bottom:136.739696px;}
.y94{bottom:139.739674px;}
.ydc{bottom:139.913681px;}
.y11f{bottom:141.626736px;}
.ya7{bottom:143.325005px;}
.y112{bottom:147.580982px;}
.y6b{bottom:148.739696px;}
.y7f{bottom:150.583969px;}
.y22{bottom:151.231499px;}
.y4a{bottom:154.739696px;}
.ydb{bottom:154.907684px;}
.y11e{bottom:156.620728px;}
.y93{bottom:157.739674px;}
.ya6{bottom:161.325005px;}
.y111{bottom:162.574985px;}
.y6a{bottom:166.739696px;}
.y7e{bottom:168.583969px;}
.yda{bottom:169.901688px;}
.y11d{bottom:171.614731px;}
.y49{bottom:172.739696px;}
.y92{bottom:175.739674px;}
.y110{bottom:177.568977px;}
.ya5{bottom:179.325005px;}
.ybd{bottom:184.739696px;}
.yd9{bottom:184.895679px;}
.y7d{bottom:186.583969px;}
.y11c{bottom:186.608734px;}
.y48{bottom:190.739696px;}
.y10f{bottom:192.562981px;}
.y91{bottom:193.739662px;}
.ya4{bottom:197.325005px;}
.y21{bottom:198.041542px;}
.yd8{bottom:199.889694px;}
.y11b{bottom:201.602737px;}
.ybc{bottom:202.739662px;}
.y7c{bottom:204.583969px;}
.y10e{bottom:207.556984px;}
.y47{bottom:208.739708px;}
.y90{bottom:211.739662px;}
.yd7{bottom:214.883675px;}
.ya3{bottom:215.325005px;}
.y20{bottom:216.041542px;}
.y11a{bottom:216.596741px;}
.y10d{bottom:222.550987px;}
.y7b{bottom:222.583969px;}
.y46{bottom:226.739708px;}
.y8f{bottom:229.739662px;}
.yd6{bottom:229.877678px;}
.y119{bottom:231.590721px;}
.ya2{bottom:233.325005px;}
.y1f{bottom:234.041542px;}
.y10c{bottom:237.544991px;}
.y7a{bottom:240.583969px;}
.y45{bottom:244.739708px;}
.yd5{bottom:244.871681px;}
.y118{bottom:246.584724px;}
.y8e{bottom:247.739662px;}
.ya1{bottom:251.325005px;}
.y1e{bottom:252.041542px;}
.y10b{bottom:252.538971px;}
.y79{bottom:258.583969px;}
.yd4{bottom:259.865685px;}
.y117{bottom:261.578728px;}
.y8d{bottom:265.739662px;}
.ybb{bottom:265.739685px;}
.y10a{bottom:267.532974px;}
.ya0{bottom:269.325005px;}
.y1d{bottom:270.041542px;}
.y69{bottom:274.739662px;}
.yd3{bottom:274.859688px;}
.y116{bottom:276.572731px;}
.y78{bottom:276.583969px;}
.y109{bottom:282.526978px;}
.y8c{bottom:283.739662px;}
.yba{bottom:283.739685px;}
.y44{bottom:286.733711px;}
.y9f{bottom:287.325005px;}
.y1c{bottom:288.041542px;}
.yd2{bottom:289.853691px;}
.y68{bottom:292.739662px;}
.y77{bottom:294.583969px;}
.y108{bottom:297.520981px;}
.y8b{bottom:301.739662px;}
.yb9{bottom:301.739685px;}
.yd1{bottom:304.847694px;}
.y9e{bottom:305.325005px;}
.y1b{bottom:306.041542px;}
.y43{bottom:307.739708px;}
.y67{bottom:310.739662px;}
.y107{bottom:312.514984px;}
.y76{bottom:312.583969px;}
.y8a{bottom:319.739662px;}
.yb8{bottom:319.739685px;}
.yd0{bottom:319.841675px;}
.y9d{bottom:323.325005px;}
.y1a{bottom:324.041542px;}
.y106{bottom:327.508987px;}
.y66{bottom:328.739662px;}
.y75{bottom:330.583969px;}
.ycf{bottom:334.835678px;}
.y89{bottom:337.739662px;}
.yb7{bottom:337.739685px;}
.y9c{bottom:341.325005px;}
.y19{bottom:342.041542px;}
.y105{bottom:342.502991px;}
.y65{bottom:346.739662px;}
.y74{bottom:348.583969px;}
.yce{bottom:349.829681px;}
.y88{bottom:355.739662px;}
.yb6{bottom:355.739685px;}
.y104{bottom:357.496971px;}
.y9b{bottom:359.325005px;}
.y64{bottom:364.739662px;}
.ycd{bottom:364.823685px;}
.y73{bottom:366.583969px;}
.y103{bottom:372.490974px;}
.y42{bottom:373.739662px;}
.yb5{bottom:373.739685px;}
.y9a{bottom:377.325005px;}
.ycc{bottom:379.817688px;}
.y63{bottom:382.739662px;}
.y18{bottom:384.041565px;}
.y72{bottom:384.583969px;}
.y102{bottom:387.485001px;}
.y41{bottom:391.739685px;}
.ycb{bottom:394.811691px;}
.y62{bottom:400.739685px;}
.y101{bottom:402.478958px;}
.y71{bottom:402.583969px;}
.y40{bottom:409.739685px;}
.yca{bottom:409.805695px;}
.y100{bottom:417.472961px;}
.y61{bottom:418.739685px;}
.y99{bottom:419.324982px;}
.y70{bottom:420.583969px;}
.yc9{bottom:424.799698px;}
.y3f{bottom:427.739685px;}
.yff{bottom:432.466965px;}
.y60{bottom:436.739685px;}
.y6f{bottom:438.583969px;}
.yc8{bottom:439.793701px;}
.y3e{bottom:445.739685px;}
.yfe{bottom:447.460968px;}
.y17{bottom:450.041565px;}
.y5f{bottom:454.739685px;}
.yc7{bottom:454.787704px;}
.yfd{bottom:462.454971px;}
.y3d{bottom:463.739685px;}
.y16{bottom:468.041565px;}
.yc6{bottom:469.781708px;}
.y86{bottom:475.840805px;}
.yfc{bottom:477.448975px;}
.y3c{bottom:481.739685px;}
.yc5{bottom:484.775665px;}
.y15{bottom:486.041565px;}
.y85{bottom:490.834808px;}
.yfb{bottom:492.442978px;}
.y3b{bottom:499.739685px;}
.yc4{bottom:499.769669px;}
.y14{bottom:504.041565px;}
.y84{bottom:505.828812px;}
.yfa{bottom:507.436981px;}
.yc3{bottom:514.763672px;}
.y3a{bottom:517.739685px;}
.y13{bottom:522.041565px;}
.yf9{bottom:522.430984px;}
.yb4{bottom:523.739685px;}
.yc2{bottom:529.757675px;}
.y39{bottom:535.739685px;}
.yf8{bottom:537.424988px;}
.y12{bottom:540.041565px;}
.yc1{bottom:544.751678px;}
.yf7{bottom:552.418991px;}
.y38{bottom:553.739685px;}
.y11{bottom:558.041565px;}
.yc0{bottom:559.745682px;}
.yf6{bottom:567.412994px;}
.y5e{bottom:571.739685px;}
.ybf{bottom:574.739685px;}
.y10{bottom:576.041565px;}
.y37{bottom:580.739685px;}
.yf5{bottom:582.406998px;}
.y5d{bottom:589.739685px;}
.yf{bottom:594.041565px;}
.yf4{bottom:597.401001px;}
.y36{bottom:598.739685px;}
.y5c{bottom:607.739685px;}
.ye{bottom:612.041565px;}
.yf3{bottom:612.394958px;}
.ybe{bottom:613.739685px;}
.y35{bottom:616.739685px;}
.y5b{bottom:625.739685px;}
.yf2{bottom:627.388962px;}
.yd{bottom:630.041565px;}
.y34{bottom:634.739685px;}
.yf1{bottom:642.382965px;}
.y5a{bottom:643.739685px;}
.yc{bottom:648.041565px;}
.y33{bottom:652.739685px;}
.yf0{bottom:657.376968px;}
.y59{bottom:661.739685px;}
.yb{bottom:666.041565px;}
.y32{bottom:670.739685px;}
.yef{bottom:672.370972px;}
.y58{bottom:679.739685px;}
.ya{bottom:684.041565px;}
.yee{bottom:687.364975px;}
.y31{bottom:688.739685px;}
.y57{bottom:697.739685px;}
.yed{bottom:702.358978px;}
.y30{bottom:706.739685px;}
.y56{bottom:715.739685px;}
.yec{bottom:717.352982px;}
.y2f{bottom:724.739685px;}
.yeb{bottom:732.346985px;}
.y55{bottom:733.739685px;}
.y2e{bottom:742.739685px;}
.yea{bottom:747.340988px;}
.y54{bottom:751.739685px;}
.y9{bottom:756.041565px;}
.y87{bottom:757.739685px;}
.y2d{bottom:760.739685px;}
.yb3{bottom:761.055450px;}
.ye9{bottom:762.334991px;}
.y53{bottom:769.739685px;}
.yb2{bottom:776.049408px;}
.ye8{bottom:777.328949px;}
.y2c{bottom:778.739685px;}
.y52{bottom:787.739685px;}
.yb1{bottom:791.043457px;}
.ye7{bottom:792.322998px;}
.y2b{bottom:796.739685px;}
.y51{bottom:805.739685px;}
.yb0{bottom:806.037415px;}
.ye6{bottom:807.316956px;}
.y8{bottom:810.041565px;}
.y2a{bottom:814.739685px;}
.yaf{bottom:821.031464px;}
.ye5{bottom:822.311005px;}
.y50{bottom:823.739685px;}
.yae{bottom:836.025421px;}
.y7{bottom:837.041565px;}
.ye4{bottom:837.304962px;}
.y29{bottom:841.739685px;}
.yad{bottom:851.019470px;}
.ye3{bottom:852.299011px;}
.y28{bottom:859.739685px;}
.y6{bottom:864.041565px;}
.yac{bottom:866.013428px;}
.ye2{bottom:867.292969px;}
.y27{bottom:877.739685px;}
.yab{bottom:881.007477px;}
.ye1{bottom:882.287018px;}
.y5{bottom:891.041565px;}
.y26{bottom:895.739685px;}
.yaa{bottom:896.001434px;}
.ye0{bottom:897.280975px;}
.y4f{bottom:935.479797px;}
.y25{bottom:935.479980px;}
.y114{bottom:935.785950px;}
.h5{height:42.000000px;}
.h2{height:45.798000px;}
.h7{height:50.400000px;}
.h6{height:53.880000px;}
.h8{height:53.880183px;}
.h3{height:58.800000px;}
.h4{height:67.200000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x2{left:80.787449px;}
.x8{left:93.540796px;}
.x3{left:98.787449px;}
.x7{left:105.777454px;}
.x4{left:109.107445px;}
.x5{left:121.287449px;}
.x6{left:447.010345px;}
.x1{left:565.517715px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760010pt;}
.ls4{letter-spacing:-2.402667pt;}
.ls6{letter-spacing:-1.586667pt;}
.ls5{letter-spacing:-1.450667pt;}
.ls9{letter-spacing:-1.269333pt;}
.lsb{letter-spacing:-0.997333pt;}
.lsc{letter-spacing:-0.816000pt;}
.ls3{letter-spacing:-0.533333pt;}
.lsa{letter-spacing:-0.272000pt;}
.ls2{letter-spacing:-0.045333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.012806pt;}
.ls7{letter-spacing:0.226667pt;}
.ls8{letter-spacing:24.000000pt;}
.ws11{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws19{word-spacing:-12.800000pt;}
.ws7d{word-spacing:-11.560000pt;}
.ws1{word-spacing:-11.333333pt;}
.ws86{word-spacing:-10.064000pt;}
.ws1a{word-spacing:-8.000000pt;}
.ws6c{word-spacing:-7.146667pt;}
.ws79{word-spacing:-5.760000pt;}
.wsbe{word-spacing:-5.666667pt;}
.wsb1{word-spacing:-3.943995pt;}
.ws6e{word-spacing:-3.733333pt;}
.ws5a{word-spacing:-3.520000pt;}
.ws32{word-spacing:-3.360000pt;}
.wse8{word-spacing:-3.037333pt;}
.ws1c{word-spacing:-2.880000pt;}
.ws56{word-spacing:-2.773333pt;}
.wsd8{word-spacing:-2.765333pt;}
.wscd{word-spacing:-2.720000pt;}
.ws75{word-spacing:-2.719995pt;}
.ws28{word-spacing:-2.666667pt;}
.ws15{word-spacing:-2.613333pt;}
.ws7b{word-spacing:-2.560000pt;}
.ws4d{word-spacing:-2.506667pt;}
.ws3{word-spacing:-2.493333pt;}
.ws83{word-spacing:-2.453333pt;}
.wsca{word-spacing:-2.448000pt;}
.ws43{word-spacing:-2.293328pt;}
.ws9a{word-spacing:-2.240000pt;}
.wsc0{word-spacing:-2.221333pt;}
.wsa{word-spacing:-2.186667pt;}
.wsb0{word-spacing:-2.176000pt;}
.ws60{word-spacing:-2.133333pt;}
.wsaf{word-spacing:-2.130667pt;}
.ws9f{word-spacing:-2.085333pt;}
.ws7c{word-spacing:-2.080000pt;}
.ws96{word-spacing:-2.026667pt;}
.ws90{word-spacing:-1.973333pt;}
.wsc1{word-spacing:-1.858667pt;}
.ws10{word-spacing:-1.760000pt;}
.ws3e{word-spacing:-1.706667pt;}
.wsd9{word-spacing:-1.677333pt;}
.ws5f{word-spacing:-1.600000pt;}
.ws93{word-spacing:-1.546667pt;}
.wsed{word-spacing:-1.541333pt;}
.wsf7{word-spacing:-1.496000pt;}
.wsa5{word-spacing:-1.450667pt;}
.wsa1{word-spacing:-1.405333pt;}
.ws24{word-spacing:-1.333333pt;}
.wsab{word-spacing:-1.314667pt;}
.ws71{word-spacing:-1.280000pt;}
.ws67{word-spacing:-1.226667pt;}
.ws16{word-spacing:-1.173333pt;}
.wsf1{word-spacing:-1.133333pt;}
.ws80{word-spacing:-1.120000pt;}
.wsbb{word-spacing:-1.088000pt;}
.ws65{word-spacing:-1.066667pt;}
.wsac{word-spacing:-1.042667pt;}
.ws14{word-spacing:-1.013333pt;}
.ws31{word-spacing:-0.960000pt;}
.wsf4{word-spacing:-0.952000pt;}
.wsce{word-spacing:-0.861333pt;}
.ws4f{word-spacing:-0.853333pt;}
.wsda{word-spacing:-0.816000pt;}
.ws76{word-spacing:-0.800000pt;}
.ws30{word-spacing:-0.746667pt;}
.ws13{word-spacing:-0.693333pt;}
.wsd4{word-spacing:-0.680000pt;}
.wsb{word-spacing:-0.640000pt;}
.wsf8{word-spacing:-0.634667pt;}
.wse4{word-spacing:-0.589333pt;}
.wsd3{word-spacing:-0.544000pt;}
.ws7e{word-spacing:-0.533333pt;}
.wsa0{word-spacing:-0.498667pt;}
.wsae{word-spacing:-0.453333pt;}
.ws2a{word-spacing:-0.426667pt;}
.ws2f{word-spacing:-0.373333pt;}
.ws2d{word-spacing:-0.320000pt;}
.ws61{word-spacing:-0.272000pt;}
.ws73{word-spacing:-0.213333pt;}
.ws4{word-spacing:-0.106667pt;}
.wse6{word-spacing:-0.090667pt;}
.ws63{word-spacing:-0.053333pt;}
.wsa6{word-spacing:-0.045333pt;}
.ws2{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.045333pt;}
.ws1e{word-spacing:0.053333pt;}
.wsb5{word-spacing:0.090667pt;}
.ws89{word-spacing:0.106667pt;}
.ws26{word-spacing:0.213333pt;}
.wsc{word-spacing:0.266667pt;}
.ws95{word-spacing:0.272000pt;}
.ws17{word-spacing:0.320000pt;}
.ws59{word-spacing:0.373333pt;}
.wseb{word-spacing:0.408000pt;}
.ws45{word-spacing:0.480000pt;}
.ws39{word-spacing:0.533333pt;}
.ws25{word-spacing:0.586667pt;}
.wsf0{word-spacing:0.634667pt;}
.ws55{word-spacing:0.640000pt;}
.ws4b{word-spacing:0.693333pt;}
.ws2c{word-spacing:0.746667pt;}
.ws62{word-spacing:0.816000pt;}
.ws54{word-spacing:0.853333pt;}
.ws35{word-spacing:0.906667pt;}
.wsad{word-spacing:0.997333pt;}
.ws4e{word-spacing:1.013333pt;}
.ws7a{word-spacing:1.066667pt;}
.ws6{word-spacing:1.120000pt;}
.ws3d{word-spacing:1.173333pt;}
.wsa2{word-spacing:1.224000pt;}
.wsdf{word-spacing:1.269333pt;}
.ws33{word-spacing:1.280000pt;}
.wse3{word-spacing:1.314667pt;}
.wscf{word-spacing:1.405333pt;}
.ws3f{word-spacing:1.440000pt;}
.ws51{word-spacing:1.450667pt;}
.wscb{word-spacing:1.496000pt;}
.wsf5{word-spacing:1.541333pt;}
.ws5d{word-spacing:1.546667pt;}
.ws64{word-spacing:1.586667pt;}
.ws82{word-spacing:1.600000pt;}
.ws44{word-spacing:1.653333pt;}
.ws2b{word-spacing:1.706667pt;}
.wsc6{word-spacing:1.768000pt;}
.ws88{word-spacing:1.920000pt;}
.ws4a{word-spacing:1.973333pt;}
.ws50{word-spacing:2.026667pt;}
.wsb6{word-spacing:2.040000pt;}
.ws22{word-spacing:2.080000pt;}
.wsa7{word-spacing:2.085333pt;}
.wsf2{word-spacing:2.130667pt;}
.ws3b{word-spacing:2.133333pt;}
.wsef{word-spacing:2.176000pt;}
.ws41{word-spacing:2.186667pt;}
.wsc9{word-spacing:2.221333pt;}
.wsb3{word-spacing:2.266667pt;}
.ws6d{word-spacing:2.293328pt;}
.ws18{word-spacing:2.346667pt;}
.wsea{word-spacing:2.357333pt;}
.ws3a{word-spacing:2.402667pt;}
.ws23{word-spacing:2.453333pt;}
.wsa4{word-spacing:2.493333pt;}
.ws5c{word-spacing:2.506667pt;}
.wsd1{word-spacing:2.538667pt;}
.ws42{word-spacing:2.613333pt;}
.ws5e{word-spacing:2.666667pt;}
.ws7{word-spacing:2.773333pt;}
.ws4c{word-spacing:2.826667pt;}
.wsf9{word-spacing:2.992000pt;}
.ws58{word-spacing:3.040000pt;}
.wsb2{word-spacing:3.082667pt;}
.wse7{word-spacing:3.128000pt;}
.wsdc{word-spacing:3.173333pt;}
.ws9{word-spacing:3.253333pt;}
.wsb4{word-spacing:3.354667pt;}
.ws68{word-spacing:3.413333pt;}
.ws8f{word-spacing:3.466667pt;}
.wsd6{word-spacing:3.490667pt;}
.wsa3{word-spacing:3.536000pt;}
.ws92{word-spacing:3.573333pt;}
.wse0{word-spacing:3.581333pt;}
.ws34{word-spacing:3.626667pt;}
.ws27{word-spacing:3.680000pt;}
.wsa8{word-spacing:3.762667pt;}
.wse1{word-spacing:3.853333pt;}
.ws47{word-spacing:3.893333pt;}
.wsf3{word-spacing:3.898662pt;}
.wsf{word-spacing:4.000000pt;}
.ws12{word-spacing:4.053333pt;}
.ws52{word-spacing:4.160000pt;}
.ws98{word-spacing:4.213333pt;}
.wsb9{word-spacing:4.306667pt;}
.ws29{word-spacing:4.373333pt;}
.wsd{word-spacing:4.480000pt;}
.wsfa{word-spacing:4.533333pt;}
.ws84{word-spacing:4.586661pt;}
.ws8{word-spacing:4.693333pt;}
.ws3c{word-spacing:4.853333pt;}
.wsd5{word-spacing:4.896000pt;}
.ws85{word-spacing:4.906667pt;}
.wsc7{word-spacing:4.941333pt;}
.ws1d{word-spacing:4.960000pt;}
.wsf6{word-spacing:5.032000pt;}
.ws1f{word-spacing:5.066667pt;}
.ws48{word-spacing:5.120000pt;}
.wsec{word-spacing:5.304000pt;}
.ws97{word-spacing:5.333333pt;}
.ws94{word-spacing:5.440000pt;}
.ws8d{word-spacing:5.493333pt;}
.wse5{word-spacing:5.530667pt;}
.wscc{word-spacing:5.576000pt;}
.ws38{word-spacing:5.600000pt;}
.wsc5{word-spacing:5.621333pt;}
.ws2e{word-spacing:5.706667pt;}
.ws6a{word-spacing:5.813333pt;}
.ws72{word-spacing:5.866667pt;}
.ws8b{word-spacing:5.920000pt;}
.ws40{word-spacing:5.973333pt;}
.wsb7{word-spacing:5.984000pt;}
.wsbf{word-spacing:6.074667pt;}
.ws46{word-spacing:6.080000pt;}
.ws78{word-spacing:6.293333pt;}
.wsc2{word-spacing:6.392000pt;}
.ws87{word-spacing:6.400000pt;}
.ws99{word-spacing:6.453333pt;}
.wsdd{word-spacing:6.482667pt;}
.ws9b{word-spacing:6.506667pt;}
.wse2{word-spacing:6.573333pt;}
.ws8c{word-spacing:6.613333pt;}
.ws6f{word-spacing:6.666667pt;}
.ws69{word-spacing:6.720000pt;}
.wsc4{word-spacing:7.208000pt;}
.ws53{word-spacing:7.306667pt;}
.ws91{word-spacing:7.360000pt;}
.ws49{word-spacing:7.786667pt;}
.ws5{word-spacing:7.946667pt;}
.wse9{word-spacing:8.069333pt;}
.wsbc{word-spacing:8.114667pt;}
.ws36{word-spacing:8.213333pt;}
.wsd2{word-spacing:8.386667pt;}
.ws37{word-spacing:8.480000pt;}
.wsaa{word-spacing:8.522667pt;}
.wsd7{word-spacing:8.613333pt;}
.ws8a{word-spacing:8.640000pt;}
.wsb8{word-spacing:8.976000pt;}
.ws21{word-spacing:9.013333pt;}
.ws66{word-spacing:9.066667pt;}
.wsd0{word-spacing:9.248000pt;}
.ws9c{word-spacing:9.600000pt;}
.wsde{word-spacing:9.701333pt;}
.ws77{word-spacing:9.706667pt;}
.ws70{word-spacing:9.920000pt;}
.wsbd{word-spacing:10.018667pt;}
.ws5b{word-spacing:10.133333pt;}
.wsee{word-spacing:10.200000pt;}
.wse{word-spacing:10.346667pt;}
.wsba{word-spacing:10.608000pt;}
.ws8e{word-spacing:10.773333pt;}
.ws6b{word-spacing:11.146667pt;}
.wsa9{word-spacing:11.514667pt;}
.ws9e{word-spacing:11.877333pt;}
.ws20{word-spacing:12.320000pt;}
.ws9d{word-spacing:12.557334pt;}
.wsdb{word-spacing:12.602667pt;}
.ws7f{word-spacing:12.693333pt;}
.wsc3{word-spacing:12.920000pt;}
.ws57{word-spacing:13.120000pt;}
.ws81{word-spacing:13.866667pt;}
.ws74{word-spacing:14.666667pt;}
.wsc8{word-spacing:18.677333pt;}
._17{margin-left:-23.946692pt;}
._10{margin-left:-16.000000pt;}
._7{margin-left:-13.386667pt;}
._9{margin-left:-11.520004pt;}
._c{margin-left:-9.066671pt;}
._e{margin-left:-7.685270pt;}
._15{margin-left:-6.405356pt;}
._3{margin-left:-5.339756pt;}
._5{margin-left:-3.754689pt;}
._2{margin-left:-2.357311pt;}
._1{margin-left:-0.906667pt;}
._0{width:1.677333pt;}
._f{width:2.666667pt;}
._13{width:3.586619pt;}
._8{width:5.066685pt;}
._14{width:6.720000pt;}
._b{width:8.959935pt;}
._16{width:9.962689pt;}
._a{width:12.213323pt;}
._d{width:14.666656pt;}
._11{width:15.754667pt;}
._4{width:18.773328pt;}
._12{width:34.000000pt;}
._6{width:48.000000pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:40.000000pt;}
.fs0{font-size:45.333333pt;}
.fs3{font-size:53.333333pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:49.231598pt;}
.y98{bottom:60.213038pt;}
.y3{bottom:62.559601pt;}
.y83{bottom:69.852402pt;}
.y4e{bottom:73.546402pt;}
.y1{bottom:75.612269pt;}
.y2{bottom:75.887599pt;}
.y97{bottom:76.213038pt;}
.y6e{bottom:84.213069pt;}
.ydf{bottom:84.383718pt;}
.y82{bottom:85.852417pt;}
.y4d{bottom:89.546397pt;}
.y96{bottom:92.213043pt;}
.ya9{bottom:95.400004pt;}
.yde{bottom:97.711721pt;}
.y6d{bottom:100.213064pt;}
.y81{bottom:101.852417pt;}
.y115{bottom:104.527089pt;}
.y4c{bottom:105.546397pt;}
.y24{bottom:107.772003pt;}
.y95{bottom:108.213043pt;}
.ydd{bottom:111.039724pt;}
.ya8{bottom:111.400004pt;}
.y6c{bottom:116.213064pt;}
.y80{bottom:117.852417pt;}
.y113{bottom:117.855092pt;}
.y23{bottom:121.099996pt;}
.y4b{bottom:121.546397pt;}
.y94{bottom:124.213043pt;}
.ydc{bottom:124.367716pt;}
.y11f{bottom:125.890432pt;}
.ya7{bottom:127.400004pt;}
.y112{bottom:131.183095pt;}
.y6b{bottom:132.213064pt;}
.y7f{bottom:133.852417pt;}
.y22{bottom:134.427999pt;}
.y4a{bottom:137.546397pt;}
.ydb{bottom:137.695719pt;}
.y11e{bottom:139.218424pt;}
.y93{bottom:140.213043pt;}
.ya6{bottom:143.400004pt;}
.y111{bottom:144.511098pt;}
.y6a{bottom:148.213064pt;}
.y7e{bottom:149.852417pt;}
.yda{bottom:151.023722pt;}
.y11d{bottom:152.546427pt;}
.y49{bottom:153.546397pt;}
.y92{bottom:156.213043pt;}
.y110{bottom:157.839091pt;}
.ya5{bottom:159.400004pt;}
.ybd{bottom:164.213064pt;}
.yd9{bottom:164.351715pt;}
.y7d{bottom:165.852417pt;}
.y11c{bottom:165.874430pt;}
.y48{bottom:169.546397pt;}
.y10f{bottom:171.167094pt;}
.y91{bottom:172.213033pt;}
.ya4{bottom:175.400004pt;}
.y21{bottom:176.036926pt;}
.yd8{bottom:177.679728pt;}
.y11b{bottom:179.202433pt;}
.ybc{bottom:180.213033pt;}
.y7c{bottom:181.852417pt;}
.y10e{bottom:184.495097pt;}
.y47{bottom:185.546407pt;}
.y90{bottom:188.213033pt;}
.yd7{bottom:191.007711pt;}
.ya3{bottom:191.400004pt;}
.y20{bottom:192.036926pt;}
.y11a{bottom:192.530436pt;}
.y10d{bottom:197.823100pt;}
.y7b{bottom:197.852417pt;}
.y46{bottom:201.546407pt;}
.y8f{bottom:204.213033pt;}
.yd6{bottom:204.335714pt;}
.y119{bottom:205.858419pt;}
.ya2{bottom:207.400004pt;}
.y1f{bottom:208.036926pt;}
.y10c{bottom:211.151103pt;}
.y7a{bottom:213.852417pt;}
.y45{bottom:217.546407pt;}
.yd5{bottom:217.663717pt;}
.y118{bottom:219.186422pt;}
.y8e{bottom:220.213033pt;}
.ya1{bottom:223.400004pt;}
.y1e{bottom:224.036926pt;}
.y10b{bottom:224.479085pt;}
.y79{bottom:229.852417pt;}
.yd4{bottom:230.991720pt;}
.y117{bottom:232.514425pt;}
.y8d{bottom:236.213033pt;}
.ybb{bottom:236.213053pt;}
.y10a{bottom:237.807088pt;}
.ya0{bottom:239.400004pt;}
.y1d{bottom:240.036926pt;}
.y69{bottom:244.213033pt;}
.yd3{bottom:244.319722pt;}
.y116{bottom:245.842428pt;}
.y78{bottom:245.852417pt;}
.y109{bottom:251.135091pt;}
.y8c{bottom:252.213033pt;}
.yba{bottom:252.213053pt;}
.y44{bottom:254.874410pt;}
.y9f{bottom:255.400004pt;}
.y1c{bottom:256.036926pt;}
.yd2{bottom:257.647725pt;}
.y68{bottom:260.213033pt;}
.y77{bottom:261.852417pt;}
.y108{bottom:264.463094pt;}
.y8b{bottom:268.213033pt;}
.yb9{bottom:268.213053pt;}
.yd1{bottom:270.975728pt;}
.y9e{bottom:271.400004pt;}
.y1b{bottom:272.036926pt;}
.y43{bottom:273.546407pt;}
.y67{bottom:276.213033pt;}
.y107{bottom:277.791097pt;}
.y76{bottom:277.852417pt;}
.y8a{bottom:284.213033pt;}
.yb8{bottom:284.213053pt;}
.yd0{bottom:284.303711pt;}
.y9d{bottom:287.400004pt;}
.y1a{bottom:288.036926pt;}
.y106{bottom:291.119100pt;}
.y66{bottom:292.213033pt;}
.y75{bottom:293.852417pt;}
.ycf{bottom:297.631714pt;}
.y89{bottom:300.213033pt;}
.yb7{bottom:300.213053pt;}
.y9c{bottom:303.400004pt;}
.y19{bottom:304.036926pt;}
.y105{bottom:304.447103pt;}
.y65{bottom:308.213033pt;}
.y74{bottom:309.852417pt;}
.yce{bottom:310.959717pt;}
.y88{bottom:316.213033pt;}
.yb6{bottom:316.213053pt;}
.y104{bottom:317.775085pt;}
.y9b{bottom:319.400004pt;}
.y64{bottom:324.213033pt;}
.ycd{bottom:324.287720pt;}
.y73{bottom:325.852417pt;}
.y103{bottom:331.103088pt;}
.y42{bottom:332.213033pt;}
.yb5{bottom:332.213053pt;}
.y9a{bottom:335.400004pt;}
.ycc{bottom:337.615723pt;}
.y63{bottom:340.213033pt;}
.y18{bottom:341.370280pt;}
.y72{bottom:341.852417pt;}
.y102{bottom:344.431112pt;}
.y41{bottom:348.213053pt;}
.ycb{bottom:350.943726pt;}
.y62{bottom:356.213053pt;}
.y101{bottom:357.759074pt;}
.y71{bottom:357.852417pt;}
.y40{bottom:364.213053pt;}
.yca{bottom:364.271729pt;}
.y100{bottom:371.087077pt;}
.y61{bottom:372.213053pt;}
.y99{bottom:372.733317pt;}
.y70{bottom:373.852417pt;}
.yc9{bottom:377.599731pt;}
.y3f{bottom:380.213053pt;}
.yff{bottom:384.415080pt;}
.y60{bottom:388.213053pt;}
.y6f{bottom:389.852417pt;}
.yc8{bottom:390.927734pt;}
.y3e{bottom:396.213053pt;}
.yfe{bottom:397.743083pt;}
.y17{bottom:400.036947pt;}
.y5f{bottom:404.213053pt;}
.yc7{bottom:404.255737pt;}
.yfd{bottom:411.071086pt;}
.y3d{bottom:412.213053pt;}
.y16{bottom:416.036947pt;}
.yc6{bottom:417.583740pt;}
.y86{bottom:422.969604pt;}
.yfc{bottom:424.399089pt;}
.y3c{bottom:428.213053pt;}
.yc5{bottom:430.911702pt;}
.y15{bottom:432.036947pt;}
.y85{bottom:436.297607pt;}
.yfb{bottom:437.727091pt;}
.y3b{bottom:444.213053pt;}
.yc4{bottom:444.239705pt;}
.y14{bottom:448.036947pt;}
.y84{bottom:449.625610pt;}
.yfa{bottom:451.055094pt;}
.yc3{bottom:457.567708pt;}
.y3a{bottom:460.213053pt;}
.y13{bottom:464.036947pt;}
.yf9{bottom:464.383097pt;}
.yb4{bottom:465.546387pt;}
.yc2{bottom:470.895711pt;}
.y39{bottom:476.213053pt;}
.yf8{bottom:477.711100pt;}
.y12{bottom:480.036947pt;}
.yc1{bottom:484.223714pt;}
.yf7{bottom:491.039103pt;}
.y38{bottom:492.213053pt;}
.y11{bottom:496.036947pt;}
.yc0{bottom:497.551717pt;}
.yf6{bottom:504.367106pt;}
.y5e{bottom:508.213053pt;}
.ybf{bottom:510.879720pt;}
.y10{bottom:512.036947pt;}
.y37{bottom:516.213053pt;}
.yf5{bottom:517.695109pt;}
.y5d{bottom:524.213053pt;}
.yf{bottom:528.036947pt;}
.yf4{bottom:531.023112pt;}
.y36{bottom:532.213053pt;}
.y5c{bottom:540.213053pt;}
.ye{bottom:544.036947pt;}
.yf3{bottom:544.351074pt;}
.ybe{bottom:545.546387pt;}
.y35{bottom:548.213053pt;}
.y5b{bottom:556.213053pt;}
.yf2{bottom:557.679077pt;}
.yd{bottom:560.036947pt;}
.y34{bottom:564.213053pt;}
.yf1{bottom:571.007080pt;}
.y5a{bottom:572.213053pt;}
.yc{bottom:576.036947pt;}
.y33{bottom:580.213053pt;}
.yf0{bottom:584.335083pt;}
.y59{bottom:588.213053pt;}
.yb{bottom:592.036947pt;}
.y32{bottom:596.213053pt;}
.yef{bottom:597.663086pt;}
.y58{bottom:604.213053pt;}
.ya{bottom:608.036947pt;}
.yee{bottom:610.991089pt;}
.y31{bottom:612.213053pt;}
.y57{bottom:620.213053pt;}
.yed{bottom:624.319092pt;}
.y30{bottom:628.213053pt;}
.y56{bottom:636.213053pt;}
.yec{bottom:637.647095pt;}
.y2f{bottom:644.213053pt;}
.yeb{bottom:650.975098pt;}
.y55{bottom:652.213053pt;}
.y2e{bottom:660.213053pt;}
.yea{bottom:664.303101pt;}
.y54{bottom:668.213053pt;}
.y9{bottom:672.036947pt;}
.y87{bottom:673.546387pt;}
.y2d{bottom:676.213053pt;}
.yb3{bottom:676.493734pt;}
.ye9{bottom:677.631104pt;}
.y53{bottom:684.213053pt;}
.yb2{bottom:689.821696pt;}
.ye8{bottom:690.959066pt;}
.y2c{bottom:692.213053pt;}
.y52{bottom:700.213053pt;}
.yb1{bottom:703.149740pt;}
.ye7{bottom:704.287109pt;}
.y2b{bottom:708.213053pt;}
.y51{bottom:716.213053pt;}
.yb0{bottom:716.477702pt;}
.ye6{bottom:717.615072pt;}
.y8{bottom:720.036947pt;}
.y2a{bottom:724.213053pt;}
.yaf{bottom:729.805745pt;}
.ye5{bottom:730.943115pt;}
.y50{bottom:732.213053pt;}
.yae{bottom:743.133708pt;}
.y7{bottom:744.036947pt;}
.ye4{bottom:744.271077pt;}
.y29{bottom:748.213053pt;}
.yad{bottom:756.461751pt;}
.ye3{bottom:757.599121pt;}
.y28{bottom:764.213053pt;}
.y6{bottom:768.036947pt;}
.yac{bottom:769.789714pt;}
.ye2{bottom:770.927083pt;}
.y27{bottom:780.213053pt;}
.yab{bottom:783.117757pt;}
.ye1{bottom:784.255127pt;}
.y5{bottom:792.036947pt;}
.y26{bottom:796.213053pt;}
.yaa{bottom:796.445719pt;}
.ye0{bottom:797.583089pt;}
.y4f{bottom:831.537598pt;}
.y25{bottom:831.537760pt;}
.y114{bottom:831.809733pt;}
.h5{height:37.333333pt;}
.h2{height:40.709333pt;}
.h7{height:44.800000pt;}
.h6{height:47.893333pt;}
.h8{height:47.893496pt;}
.h3{height:52.266667pt;}
.h4{height:59.733333pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x2{left:71.811066pt;}
.x8{left:83.147374pt;}
.x3{left:87.811066pt;}
.x7{left:94.024404pt;}
.x4{left:96.984395pt;}
.x5{left:107.811066pt;}
.x6{left:397.342529pt;}
.x1{left:502.682414pt;}
}




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