
    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_e4f045f324a678603e4eb4ba.woff')format("woff");}.ff1{font-family:ff1;line-height:1.006348;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_4cd9a6ecffed0dc638d3a5ab.woff')format("woff");}.ff2{font-family:ff2;line-height:1.006348;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_2a7ddaac33e5b0fc4d0539d5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.006348;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_87b1068cdf40838b9f6a1668.woff')format("woff");}.ff4{font-family:ff4;line-height:1.006348;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_6ea6a03a96167f1bd0f73492.woff')format("woff");}.ff5{font-family:ff5;line-height:0.785645;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_130f76dfb865253d8f9509e3.woff')format("woff");}.ff6{font-family:ff6;line-height:1.006348;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_ea3f962bf7bce6dcf7f0657e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.006348;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_03e986769494b1b16c145dd7.woff')format("woff");}.ff8{font-family:ff8;line-height:1.006348;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_53404d428fe844e7bac1d90c.woff')format("woff");}.ff9{font-family:ff9;line-height:1.006348;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_4cd9a6ecffed0dc638d3a5ab.woff')format("woff");}.ffa{font-family:ffa;line-height:1.006348;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_f07a9ada6d4734ad6d3ae4ef.woff')format("woff");}.ffb{font-family:ffb;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e6a1f585d09cc76f094d0703.woff')format("woff");}.ffc{font-family:ffc;line-height:1.148000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_13b63cec50427374cd349ac2.woff')format("woff");}.ffd{font-family:ffd;line-height:0.775879;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_18cdfadc53ebdce6bde5edf4.woff')format("woff");}.ffe{font-family:ffe;line-height:0.680176;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_8c35d77953f5a2c585984a3b.woff')format("woff");}.fff{font-family:fff;line-height:0.774902;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);}
.v1{vertical-align:-12.434400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.977400px;}
.ls1{letter-spacing:-0.384000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.780000px;}
.ls3{letter-spacing:8.955600px;}
.ls2{letter-spacing:8.956200px;}
.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;}
}
.ws86{word-spacing:-17.160000px;}
.wsbe{word-spacing:-16.380000px;}
.wsbd{word-spacing:-15.600000px;}
.wsb2{word-spacing:-12.804000px;}
.ws1{word-spacing:-12.480000px;}
.ws87{word-spacing:-10.004280px;}
.ws95{word-spacing:-9.306000px;}
.ws6e{word-spacing:-9.174000px;}
.ws3f{word-spacing:-7.392000px;}
.wsb8{word-spacing:-7.326000px;}
.ws6c{word-spacing:-6.732000px;}
.wsae{word-spacing:-5.808000px;}
.wsa1{word-spacing:-5.676000px;}
.ws0{word-spacing:-5.456880px;}
.ws3c{word-spacing:-5.412000px;}
.ws39{word-spacing:-4.620000px;}
.ws46{word-spacing:-4.422000px;}
.wsbb{word-spacing:-4.356000px;}
.ws2d{word-spacing:-4.158000px;}
.ws4a{word-spacing:-4.092000px;}
.ws98{word-spacing:-3.564000px;}
.ws7f{word-spacing:-3.366000px;}
.ws2e{word-spacing:-3.234000px;}
.ws3b{word-spacing:-3.168000px;}
.wsab{word-spacing:-2.970000px;}
.ws4b{word-spacing:-2.838000px;}
.ws9a{word-spacing:-2.640000px;}
.wsc1{word-spacing:-2.580000px;}
.ws20{word-spacing:-2.544000px;}
.wsba{word-spacing:-2.508000px;}
.ws4d{word-spacing:-2.244000px;}
.wsbc{word-spacing:-2.046000px;}
.wsa8{word-spacing:-1.980000px;}
.wsc2{word-spacing:-1.920000px;}
.ws22{word-spacing:-1.872000px;}
.wsb0{word-spacing:-1.782000px;}
.ws8{word-spacing:-1.632000px;}
.ws91{word-spacing:-1.584000px;}
.ws93{word-spacing:-1.452000px;}
.ws1a{word-spacing:-1.440000px;}
.ws5a{word-spacing:-1.386000px;}
.ws88{word-spacing:-1.320000px;}
.ws67{word-spacing:-1.254000px;}
.ws3e{word-spacing:-1.188000px;}
.ws78{word-spacing:-1.122000px;}
.ws13{word-spacing:-1.008000px;}
.ws69{word-spacing:-0.990000px;}
.ws1e{word-spacing:-0.816000px;}
.ws28{word-spacing:-0.792000px;}
.wsb1{word-spacing:-0.594000px;}
.ws10{word-spacing:-0.528000px;}
.ws14{word-spacing:-0.480000px;}
.wsaa{word-spacing:-0.330000px;}
.ws59{word-spacing:-0.264000px;}
.ws9f{word-spacing:-0.198000px;}
.ws7d{word-spacing:-0.132000px;}
.ws34{word-spacing:-0.066000px;}
.ws23{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.wscd{word-spacing:0.060000px;}
.ws54{word-spacing:0.066000px;}
.wsb{word-spacing:0.144000px;}
.ws30{word-spacing:0.198000px;}
.wsc{word-spacing:0.336000px;}
.ws1b{word-spacing:0.384000px;}
.ws5e{word-spacing:0.396000px;}
.wsb6{word-spacing:0.462000px;}
.wsa{word-spacing:0.576000px;}
.ws89{word-spacing:0.594000px;}
.ws3a{word-spacing:0.660000px;}
.wsb5{word-spacing:0.792000px;}
.ws9c{word-spacing:0.990000px;}
.ws5{word-spacing:1.008000px;}
.wsb3{word-spacing:1.056000px;}
.ws99{word-spacing:1.188000px;}
.ws38{word-spacing:1.254000px;}
.wsa6{word-spacing:1.386000px;}
.ws55{word-spacing:1.452000px;}
.ws11{word-spacing:1.488000px;}
.wsaf{word-spacing:1.650000px;}
.ws1d{word-spacing:1.728000px;}
.wsc9{word-spacing:1.740000px;}
.ws9{word-spacing:1.824000px;}
.ws35{word-spacing:1.848000px;}
.ws16{word-spacing:1.920000px;}
.ws19{word-spacing:2.016000px;}
.ws8b{word-spacing:2.046000px;}
.wsa3{word-spacing:2.112000px;}
.ws7{word-spacing:2.160000px;}
.ws29{word-spacing:2.178000px;}
.ws2f{word-spacing:2.244000px;}
.ws17{word-spacing:2.256000px;}
.ws68{word-spacing:2.310000px;}
.ws56{word-spacing:2.508000px;}
.ws27{word-spacing:2.640000px;}
.ws4f{word-spacing:2.772000px;}
.ws80{word-spacing:2.970000px;}
.ws24{word-spacing:3.024000px;}
.ws44{word-spacing:3.036000px;}
.ws97{word-spacing:3.102000px;}
.ws90{word-spacing:3.168000px;}
.ws6f{word-spacing:3.300000px;}
.wscc{word-spacing:3.360000px;}
.ws4e{word-spacing:3.432000px;}
.ws18{word-spacing:3.456000px;}
.wsa2{word-spacing:3.498000px;}
.wsc8{word-spacing:3.540000px;}
.ws41{word-spacing:3.564000px;}
.ws74{word-spacing:3.630000px;}
.ws92{word-spacing:3.696000px;}
.ws82{word-spacing:3.762000px;}
.ws8f{word-spacing:3.960000px;}
.ws4{word-spacing:3.984000px;}
.ws3{word-spacing:4.032000px;}
.ws62{word-spacing:4.092000px;}
.ws8c{word-spacing:4.422000px;}
.ws26{word-spacing:4.488000px;}
.ws7a{word-spacing:4.554000px;}
.ws5b{word-spacing:4.620000px;}
.ws8a{word-spacing:4.752000px;}
.ws77{word-spacing:4.884000px;}
.ws1f{word-spacing:5.088000px;}
.ws71{word-spacing:5.214000px;}
.wsc4{word-spacing:5.220000px;}
.ws9e{word-spacing:5.412000px;}
.ws8d{word-spacing:5.478000px;}
.ws7e{word-spacing:5.610000px;}
.wsb4{word-spacing:5.742000px;}
.wse{word-spacing:5.760000px;}
.ws15{word-spacing:5.904000px;}
.wsa9{word-spacing:5.940000px;}
.ws6a{word-spacing:6.006000px;}
.ws85{word-spacing:6.138000px;}
.ws12{word-spacing:6.144000px;}
.ws96{word-spacing:6.204000px;}
.wsd{word-spacing:6.288000px;}
.ws2a{word-spacing:6.336000px;}
.ws6{word-spacing:6.432000px;}
.ws40{word-spacing:6.468000px;}
.ws60{word-spacing:6.534000px;}
.ws2b{word-spacing:6.666000px;}
.wsc7{word-spacing:6.720000px;}
.ws31{word-spacing:6.732000px;}
.ws72{word-spacing:6.996000px;}
.ws53{word-spacing:7.062000px;}
.ws63{word-spacing:7.128000px;}
.ws76{word-spacing:7.260000px;}
.wsa4{word-spacing:7.326000px;}
.ws33{word-spacing:7.392000px;}
.ws61{word-spacing:7.656000px;}
.ws1c{word-spacing:8.016000px;}
.wsbf{word-spacing:8.100000px;}
.ws52{word-spacing:8.118000px;}
.ws25{word-spacing:8.184000px;}
.wsf{word-spacing:8.208000px;}
.ws48{word-spacing:8.316000px;}
.ws51{word-spacing:8.382000px;}
.ws84{word-spacing:8.448000px;}
.ws6b{word-spacing:8.514000px;}
.ws58{word-spacing:8.580000px;}
.ws4c{word-spacing:8.646000px;}
.ws43{word-spacing:8.844000px;}
.ws70{word-spacing:8.976000px;}
.ws75{word-spacing:9.108000px;}
.ws50{word-spacing:9.306000px;}
.ws5f{word-spacing:9.372000px;}
.ws65{word-spacing:9.504000px;}
.ws66{word-spacing:9.570000px;}
.wsa5{word-spacing:9.636000px;}
.ws79{word-spacing:9.768000px;}
.ws64{word-spacing:10.032000px;}
.ws21{word-spacing:10.560000px;}
.ws6d{word-spacing:10.890000px;}
.wscf{word-spacing:11.340000px;}
.wsb9{word-spacing:11.352000px;}
.ws7c{word-spacing:11.418000px;}
.ws32{word-spacing:11.616000px;}
.ws9b{word-spacing:11.946000px;}
.ws5c{word-spacing:12.078000px;}
.ws73{word-spacing:12.144000px;}
.ws8e{word-spacing:12.408000px;}
.wsc3{word-spacing:12.720000px;}
.wsca{word-spacing:12.900000px;}
.ws37{word-spacing:13.068000px;}
.wsc0{word-spacing:13.080000px;}
.wsa0{word-spacing:13.398000px;}
.ws9d{word-spacing:13.728000px;}
.ws2c{word-spacing:13.794000px;}
.ws49{word-spacing:13.926000px;}
.wscb{word-spacing:14.040000px;}
.wsc5{word-spacing:14.100000px;}
.ws45{word-spacing:14.520000px;}
.ws81{word-spacing:15.180000px;}
.ws7b{word-spacing:15.312000px;}
.ws42{word-spacing:15.906000px;}
.wsc6{word-spacing:16.320000px;}
.wsa7{word-spacing:16.434000px;}
.wsb7{word-spacing:16.764000px;}
.ws94{word-spacing:16.896000px;}
.wsac{word-spacing:16.962000px;}
.wsce{word-spacing:16.980000px;}
.ws57{word-spacing:17.886000px;}
.wsad{word-spacing:18.150000px;}
.ws83{word-spacing:18.678000px;}
.ws3d{word-spacing:19.074000px;}
.ws36{word-spacing:19.338000px;}
.ws47{word-spacing:30.888000px;}
.ws5d{word-spacing:31.614000px;}
._f{margin-left:-7.233600px;}
._6{margin-left:-5.462400px;}
._4{margin-left:-4.406400px;}
._e{margin-left:-2.890800px;}
._1{margin-left:-1.161600px;}
._3{width:1.276800px;}
._2{width:2.467200px;}
._5{width:4.108800px;}
._d{width:5.275800px;}
._b{width:6.375600px;}
._c{width:7.470600px;}
._a{width:8.599800px;}
._8{width:9.649200px;}
._12{width:11.765400px;}
._11{width:13.188600px;}
._9{width:18.790200px;}
._10{width:20.776800px;}
._7{width:34.518000px;}
._13{width:257.800800px;}
._0{width:944.136000px;}
.fc2{color:rgb(77,77,77);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(101,98,99);}
.fs3{font-size:20.988000px;}
.fs4{font-size:36.000000px;}
.fs8{font-size:38.478000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:96.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:45.753450px;}
.y2{bottom:48.862050px;}
.y22{bottom:107.293950px;}
.yf1{bottom:119.055150px;}
.y77{bottom:125.947050px;}
.yf0{bottom:129.555150px;}
.ya5{bottom:133.535550px;}
.yc3{bottom:136.251000px;}
.y21{bottom:137.893950px;}
.yef{bottom:140.055150px;}
.y76{bottom:145.747050px;}
.y20{bottom:152.293950px;}
.ya4{bottom:153.335700px;}
.yee{bottom:153.552150px;}
.yc2{bottom:156.050850px;}
.y14d{bottom:158.625750px;}
.y10d{bottom:160.098900px;}
.y75{bottom:165.547050px;}
.y1f{bottom:166.693950px;}
.yc1{bottom:175.850850px;}
.y128{bottom:177.375750px;}
.y14c{bottom:178.425600px;}
.y10c{bottom:179.898900px;}
.y1e{bottom:181.093950px;}
.ya3{bottom:182.135550px;}
.y74{bottom:185.347050px;}
.y43{bottom:190.275600px;}
.yc0{bottom:195.651000px;}
.y127{bottom:197.175750px;}
.y14b{bottom:198.225750px;}
.ya2{bottom:201.935550px;}
.y73{bottom:205.146900px;}
.ybf{bottom:215.451000px;}
.y126{bottom:216.975750px;}
.y14a{bottom:218.025750px;}
.ya1{bottom:221.735550px;}
.y72{bottom:224.947050px;}
.ybe{bottom:235.251000px;}
.ya{bottom:235.275600px;}
.y125{bottom:236.775750px;}
.yed{bottom:237.050850px;}
.y149{bottom:237.825750px;}
.y10b{bottom:239.298900px;}
.ya0{bottom:241.535550px;}
.y71{bottom:244.747050px;}
.y9{bottom:248.772600px;}
.y10a{bottom:253.098900px;}
.y124{bottom:256.575750px;}
.yec{bottom:256.850850px;}
.y148{bottom:257.625750px;}
.y42{bottom:257.775600px;}
.y9f{bottom:261.335700px;}
.ybd{bottom:264.050850px;}
.y70{bottom:264.547050px;}
.y109{bottom:271.098900px;}
.y123{bottom:276.375750px;}
.yeb{bottom:276.651000px;}
.y147{bottom:277.425600px;}
.y41{bottom:280.275600px;}
.y9e{bottom:281.135550px;}
.ybc{bottom:283.850850px;}
.y6f{bottom:293.347050px;}
.yea{bottom:296.451000px;}
.y146{bottom:297.225750px;}
.y40{bottom:302.775600px;}
.ybb{bottom:303.651000px;}
.y122{bottom:305.175750px;}
.y9d{bottom:309.935550px;}
.y6e{bottom:313.146900px;}
.ye9{bottom:316.251000px;}
.y145{bottom:317.025750px;}
.yba{bottom:323.451000px;}
.y121{bottom:324.975750px;}
.y3f{bottom:325.275600px;}
.y9c{bottom:329.735550px;}
.y6d{bottom:332.947050px;}
.ye8{bottom:336.050850px;}
.y144{bottom:336.825750px;}
.y120{bottom:344.775750px;}
.y3e{bottom:347.775600px;}
.y9b{bottom:349.535550px;}
.yb9{bottom:352.251000px;}
.y6c{bottom:352.747050px;}
.ye7{bottom:355.850850px;}
.y11f{bottom:364.575750px;}
.y143{bottom:365.625750px;}
.y9a{bottom:369.335550px;}
.y3d{bottom:370.275600px;}
.yb8{bottom:372.051000px;}
.y6b{bottom:372.547050px;}
.ye6{bottom:384.651000px;}
.y142{bottom:385.425750px;}
.y99{bottom:389.135550px;}
.yb7{bottom:391.850850px;}
.y6a{bottom:392.347050px;}
.y18{bottom:392.775450px;}
.y3c{bottom:392.775600px;}
.y11e{bottom:393.375750px;}
.ye5{bottom:404.451000px;}
.y141{bottom:405.225750px;}
.y98{bottom:408.935550px;}
.yb6{bottom:411.651000px;}
.y69{bottom:412.147050px;}
.y11d{bottom:413.175750px;}
.y3b{bottom:415.275600px;}
.ye4{bottom:424.251000px;}
.y140{bottom:425.025750px;}
.yb5{bottom:431.451000px;}
.y68{bottom:431.947050px;}
.y11c{bottom:432.975750px;}
.y97{bottom:437.735550px;}
.y17{bottom:437.775450px;}
.y3a{bottom:437.775600px;}
.ye3{bottom:444.051000px;}
.yb4{bottom:451.251000px;}
.y67{bottom:451.747050px;}
.y13f{bottom:453.825750px;}
.y96{bottom:457.535550px;}
.y16{bottom:460.275450px;}
.y39{bottom:460.275600px;}
.y11b{bottom:461.775750px;}
.y108{bottom:462.051000px;}
.ye2{bottom:463.850850px;}
.yb3{bottom:471.051000px;}
.y13e{bottom:473.625750px;}
.y95{bottom:477.335550px;}
.y66{bottom:480.547050px;}
.y11a{bottom:481.575750px;}
.y107{bottom:481.850850px;}
.y15{bottom:482.775450px;}
.y38{bottom:482.775600px;}
.ye1{bottom:483.651000px;}
.y16a{bottom:485.847600px;}
.yb2{bottom:490.850850px;}
.y13d{bottom:493.425750px;}
.y94{bottom:497.135550px;}
.y65{bottom:500.347050px;}
.y119{bottom:501.375750px;}
.y106{bottom:501.651000px;}
.ye0{bottom:503.451000px;}
.y169{bottom:503.847600px;}
.y14{bottom:505.275450px;}
.y37{bottom:505.275600px;}
.yb1{bottom:510.651000px;}
.y13c{bottom:513.225750px;}
.y93{bottom:516.935550px;}
.y64{bottom:520.147050px;}
.y118{bottom:521.175750px;}
.y168{bottom:521.847600px;}
.y13{bottom:527.775450px;}
.yb0{bottom:530.451000px;}
.ydf{bottom:532.251000px;}
.y13b{bottom:533.025750px;}
.y92{bottom:536.735550px;}
.y167{bottom:539.847600px;}
.y63{bottom:539.947050px;}
.y105{bottom:550.251000px;}
.y12{bottom:550.275450px;}
.yde{bottom:552.051000px;}
.y13a{bottom:552.825750px;}
.y91{bottom:556.535550px;}
.y166{bottom:557.847600px;}
.yaf{bottom:559.251000px;}
.y62{bottom:559.747050px;}
.y117{bottom:560.775750px;}
.y36{bottom:563.775600px;}
.y104{bottom:570.051000px;}
.ydd{bottom:571.850850px;}
.y139{bottom:572.625750px;}
.y11{bottom:572.775450px;}
.y90{bottom:576.335550px;}
.yae{bottom:579.051000px;}
.y61{bottom:579.547050px;}
.y165{bottom:588.603450px;}
.y103{bottom:589.850850px;}
.y35{bottom:590.775600px;}
.ydc{bottom:591.651000px;}
.y138{bottom:592.425750px;}
.y10{bottom:595.275450px;}
.y8f{bottom:596.135550px;}
.yad{bottom:598.850850px;}
.y60{bottom:599.347050px;}
.y164{bottom:606.603450px;}
.y102{bottom:609.651000px;}
.ydb{bottom:611.451000px;}
.y137{bottom:612.225750px;}
.y8e{bottom:615.935550px;}
.yf{bottom:617.775450px;}
.y34{bottom:617.775600px;}
.yac{bottom:618.651000px;}
.y5f{bottom:619.147050px;}
.y163{bottom:624.603450px;}
.y101{bottom:629.451000px;}
.yda{bottom:631.251000px;}
.y136{bottom:632.025750px;}
.y8d{bottom:635.735550px;}
.yab{bottom:638.451000px;}
.y5e{bottom:638.947050px;}
.ye{bottom:640.275450px;}
.y100{bottom:649.251000px;}
.yd9{bottom:651.051000px;}
.y135{bottom:651.825750px;}
.y162{bottom:655.359450px;}
.y8c{bottom:655.535550px;}
.yaa{bottom:658.251000px;}
.yd{bottom:662.775450px;}
.y5d{bottom:667.251000px;}
.yff{bottom:669.051000px;}
.yd8{bottom:670.850850px;}
.y134{bottom:671.625750px;}
.y161{bottom:673.359450px;}
.y8b{bottom:675.335550px;}
.ya9{bottom:678.051000px;}
.yc{bottom:685.275450px;}
.y33{bottom:685.275600px;}
.y5c{bottom:687.051000px;}
.yfe{bottom:688.850850px;}
.yd7{bottom:690.651000px;}
.y160{bottom:691.359450px;}
.y133{bottom:691.425750px;}
.ya8{bottom:697.850850px;}
.y8a{bottom:704.135550px;}
.y5b{bottom:706.850850px;}
.yb{bottom:707.775450px;}
.yfd{bottom:708.651000px;}
.yd6{bottom:710.451000px;}
.y132{bottom:711.225750px;}
.ya7{bottom:717.651000px;}
.y15f{bottom:722.115300px;}
.y89{bottom:723.935550px;}
.y5a{bottom:726.651000px;}
.y8{bottom:730.275450px;}
.y32{bottom:730.275600px;}
.y131{bottom:731.025750px;}
.ya6{bottom:737.451000px;}
.yd5{bottom:739.251000px;}
.y15e{bottom:740.115300px;}
.y88{bottom:743.735550px;}
.y59{bottom:746.451000px;}
.y130{bottom:750.825750px;}
.y31{bottom:752.775600px;}
.yfc{bottom:757.251000px;}
.y15d{bottom:758.115300px;}
.yd4{bottom:759.051000px;}
.y87{bottom:763.535550px;}
.y58{bottom:766.251000px;}
.y12f{bottom:770.625750px;}
.y30{bottom:775.275600px;}
.yfb{bottom:777.050850px;}
.yd3{bottom:778.850850px;}
.y86{bottom:783.335700px;}
.y57{bottom:786.050850px;}
.y15c{bottom:788.871300px;}
.y12e{bottom:790.425600px;}
.yfa{bottom:796.850850px;}
.y2f{bottom:797.775600px;}
.yd2{bottom:798.651000px;}
.y85{bottom:803.135550px;}
.y56{bottom:805.850850px;}
.y15b{bottom:806.871300px;}
.y116{bottom:807.975750px;}
.y12d{bottom:810.225750px;}
.yf9{bottom:816.651000px;}
.yd1{bottom:818.451000px;}
.y2e{bottom:820.275600px;}
.y84{bottom:822.935550px;}
.y15a{bottom:824.871300px;}
.y55{bottom:825.651000px;}
.y115{bottom:827.775750px;}
.y12c{bottom:830.025750px;}
.y1d{bottom:835.004550px;}
.yf8{bottom:836.451000px;}
.yd0{bottom:838.251000px;}
.y83{bottom:842.735550px;}
.y2d{bottom:842.775600px;}
.y54{bottom:845.451000px;}
.y114{bottom:847.575750px;}
.y12b{bottom:849.825750px;}
.y1c{bottom:851.204550px;}
.y159{bottom:855.627150px;}
.yf7{bottom:856.251000px;}
.ycf{bottom:858.050850px;}
.y82{bottom:862.535550px;}
.y53{bottom:865.251000px;}
.y2c{bottom:865.275600px;}
.y1b{bottom:867.404550px;}
.y158{bottom:873.627150px;}
.yf6{bottom:876.050850px;}
.y113{bottom:876.375750px;}
.yce{bottom:877.850850px;}
.y12a{bottom:878.625750px;}
.y81{bottom:882.335700px;}
.y1a{bottom:883.604550px;}
.y52{bottom:885.050850px;}
.y2b{bottom:887.775600px;}
.y157{bottom:891.627150px;}
.yf5{bottom:895.850850px;}
.y112{bottom:896.175600px;}
.ycd{bottom:897.650850px;}
.y19{bottom:899.804550px;}
.y51{bottom:904.850850px;}
.y2a{bottom:910.275600px;}
.y80{bottom:911.135700px;}
.yf4{bottom:915.650850px;}
.y111{bottom:915.975600px;}
.y156{bottom:922.383000px;}
.y50{bottom:924.650850px;}
.ycc{bottom:926.450850px;}
.y7f{bottom:930.935700px;}
.y29{bottom:932.775600px;}
.yf3{bottom:935.450850px;}
.y110{bottom:935.775600px;}
.y129{bottom:938.025600px;}
.y155{bottom:940.383000px;}
.y4f{bottom:944.450850px;}
.ycb{bottom:946.250850px;}
.y7e{bottom:950.735700px;}
.yf2{bottom:955.250850px;}
.y28{bottom:955.275600px;}
.y10f{bottom:955.575600px;}
.y154{bottom:958.383000px;}
.y7{bottom:963.730650px;}
.y4e{bottom:964.250850px;}
.yca{bottom:966.050850px;}
.y7d{bottom:970.535700px;}
.y153{bottom:976.383000px;}
.y27{bottom:977.775600px;}
.y4d{bottom:984.050850px;}
.y7c{bottom:994.587600px;}
.yc9{bottom:994.850850px;}
.y6{bottom:999.730650px;}
.y26{bottom:1000.275600px;}
.y10e{bottom:1002.375600px;}
.y4c{bottom:1003.850850px;}
.y152{bottom:1007.139000px;}
.yc8{bottom:1014.650850px;}
.y7b{bottom:1018.639650px;}
.y4b{bottom:1023.650850px;}
.y151{bottom:1025.139000px;}
.yc7{bottom:1034.450850px;}
.y5{bottom:1035.730650px;}
.y4a{bottom:1043.450850px;}
.yc6{bottom:1054.250850px;}
.y150{bottom:1055.894850px;}
.y25{bottom:1058.775600px;}
.y49{bottom:1063.250850px;}
.y4{bottom:1071.730650px;}
.y14f{bottom:1073.894850px;}
.yc5{bottom:1074.050850px;}
.y7a{bottom:1078.039650px;}
.y48{bottom:1083.050850px;}
.y24{bottom:1085.775600px;}
.y14e{bottom:1091.894850px;}
.yc4{bottom:1093.850850px;}
.y79{bottom:1097.839650px;}
.y47{bottom:1102.850850px;}
.y3{bottom:1107.730650px;}
.y23{bottom:1112.775600px;}
.y78{bottom:1117.639650px;}
.y46{bottom:1122.650850px;}
.y45{bottom:1209.895950px;}
.y44{bottom:1224.295950px;}
.h5{height:16.079186px;}
.h6{height:27.580078px;}
.h7{height:36.773438px;}
.h2{height:41.370117px;}
.h8{height:41.897461px;}
.ha{height:42.240000px;}
.hd{height:45.966797px;}
.he{height:50.499023px;}
.hb{height:50.563477px;}
.hc{height:51.455907px;}
.h4{height:55.160156px;}
.h9{height:73.546875px;}
.h3{height:110.320312px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.559100px;}
.x4{left:132.624000px;}
.x5{left:136.499850px;}
.x9{left:142.847400px;}
.x6{left:147.881700px;}
.x8{left:149.131950px;}
.x17{left:159.438900px;}
.xf{left:169.743150px;}
.x10{left:173.059200px;}
.x13{left:177.463950px;}
.x3{left:186.184500px;}
.x18{left:190.409400px;}
.x12{left:211.169400px;}
.x14{left:221.274150px;}
.x15{left:230.892150px;}
.x11{left:246.688200px;}
.x16{left:288.665400px;}
.x1c{left:294.332700px;}
.x1b{left:312.654150px;}
.x7{left:339.035100px;}
.xc{left:480.293850px;}
.x19{left:488.951550px;}
.x1a{left:516.937350px;}
.xb{left:559.461300px;}
.xe{left:563.383500px;}
.xd{left:595.136100px;}
.xa{left:596.856600px;}
.x1d{left:749.916300px;}
.x1{left:757.635300px;}
@media print{
.v1{vertical-align:-11.052800pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.535467pt;}
.ls1{letter-spacing:-0.341333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.693333pt;}
.ls3{letter-spacing:7.960533pt;}
.ls2{letter-spacing:7.961067pt;}
.ws86{word-spacing:-15.253333pt;}
.wsbe{word-spacing:-14.560000pt;}
.wsbd{word-spacing:-13.866667pt;}
.wsb2{word-spacing:-11.381333pt;}
.ws1{word-spacing:-11.093333pt;}
.ws87{word-spacing:-8.892693pt;}
.ws95{word-spacing:-8.272000pt;}
.ws6e{word-spacing:-8.154667pt;}
.ws3f{word-spacing:-6.570667pt;}
.wsb8{word-spacing:-6.512000pt;}
.ws6c{word-spacing:-5.984000pt;}
.wsae{word-spacing:-5.162667pt;}
.wsa1{word-spacing:-5.045333pt;}
.ws0{word-spacing:-4.850560pt;}
.ws3c{word-spacing:-4.810667pt;}
.ws39{word-spacing:-4.106667pt;}
.ws46{word-spacing:-3.930667pt;}
.wsbb{word-spacing:-3.872000pt;}
.ws2d{word-spacing:-3.696000pt;}
.ws4a{word-spacing:-3.637333pt;}
.ws98{word-spacing:-3.168000pt;}
.ws7f{word-spacing:-2.992000pt;}
.ws2e{word-spacing:-2.874667pt;}
.ws3b{word-spacing:-2.816000pt;}
.wsab{word-spacing:-2.640000pt;}
.ws4b{word-spacing:-2.522667pt;}
.ws9a{word-spacing:-2.346667pt;}
.wsc1{word-spacing:-2.293333pt;}
.ws20{word-spacing:-2.261333pt;}
.wsba{word-spacing:-2.229333pt;}
.ws4d{word-spacing:-1.994667pt;}
.wsbc{word-spacing:-1.818667pt;}
.wsa8{word-spacing:-1.760000pt;}
.wsc2{word-spacing:-1.706667pt;}
.ws22{word-spacing:-1.664000pt;}
.wsb0{word-spacing:-1.584000pt;}
.ws8{word-spacing:-1.450667pt;}
.ws91{word-spacing:-1.408000pt;}
.ws93{word-spacing:-1.290667pt;}
.ws1a{word-spacing:-1.280000pt;}
.ws5a{word-spacing:-1.232000pt;}
.ws88{word-spacing:-1.173333pt;}
.ws67{word-spacing:-1.114667pt;}
.ws3e{word-spacing:-1.056000pt;}
.ws78{word-spacing:-0.997333pt;}
.ws13{word-spacing:-0.896000pt;}
.ws69{word-spacing:-0.880000pt;}
.ws1e{word-spacing:-0.725333pt;}
.ws28{word-spacing:-0.704000pt;}
.wsb1{word-spacing:-0.528000pt;}
.ws10{word-spacing:-0.469333pt;}
.ws14{word-spacing:-0.426667pt;}
.wsaa{word-spacing:-0.293333pt;}
.ws59{word-spacing:-0.234667pt;}
.ws9f{word-spacing:-0.176000pt;}
.ws7d{word-spacing:-0.117333pt;}
.ws34{word-spacing:-0.058667pt;}
.ws23{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.wscd{word-spacing:0.053333pt;}
.ws54{word-spacing:0.058667pt;}
.wsb{word-spacing:0.128000pt;}
.ws30{word-spacing:0.176000pt;}
.wsc{word-spacing:0.298667pt;}
.ws1b{word-spacing:0.341333pt;}
.ws5e{word-spacing:0.352000pt;}
.wsb6{word-spacing:0.410667pt;}
.wsa{word-spacing:0.512000pt;}
.ws89{word-spacing:0.528000pt;}
.ws3a{word-spacing:0.586667pt;}
.wsb5{word-spacing:0.704000pt;}
.ws9c{word-spacing:0.880000pt;}
.ws5{word-spacing:0.896000pt;}
.wsb3{word-spacing:0.938667pt;}
.ws99{word-spacing:1.056000pt;}
.ws38{word-spacing:1.114667pt;}
.wsa6{word-spacing:1.232000pt;}
.ws55{word-spacing:1.290667pt;}
.ws11{word-spacing:1.322667pt;}
.wsaf{word-spacing:1.466667pt;}
.ws1d{word-spacing:1.536000pt;}
.wsc9{word-spacing:1.546667pt;}
.ws9{word-spacing:1.621333pt;}
.ws35{word-spacing:1.642667pt;}
.ws16{word-spacing:1.706667pt;}
.ws19{word-spacing:1.792000pt;}
.ws8b{word-spacing:1.818667pt;}
.wsa3{word-spacing:1.877333pt;}
.ws7{word-spacing:1.920000pt;}
.ws29{word-spacing:1.936000pt;}
.ws2f{word-spacing:1.994667pt;}
.ws17{word-spacing:2.005333pt;}
.ws68{word-spacing:2.053333pt;}
.ws56{word-spacing:2.229333pt;}
.ws27{word-spacing:2.346667pt;}
.ws4f{word-spacing:2.464000pt;}
.ws80{word-spacing:2.640000pt;}
.ws24{word-spacing:2.688000pt;}
.ws44{word-spacing:2.698667pt;}
.ws97{word-spacing:2.757333pt;}
.ws90{word-spacing:2.816000pt;}
.ws6f{word-spacing:2.933333pt;}
.wscc{word-spacing:2.986667pt;}
.ws4e{word-spacing:3.050667pt;}
.ws18{word-spacing:3.072000pt;}
.wsa2{word-spacing:3.109333pt;}
.wsc8{word-spacing:3.146667pt;}
.ws41{word-spacing:3.168000pt;}
.ws74{word-spacing:3.226667pt;}
.ws92{word-spacing:3.285333pt;}
.ws82{word-spacing:3.344000pt;}
.ws8f{word-spacing:3.520000pt;}
.ws4{word-spacing:3.541333pt;}
.ws3{word-spacing:3.584000pt;}
.ws62{word-spacing:3.637333pt;}
.ws8c{word-spacing:3.930667pt;}
.ws26{word-spacing:3.989333pt;}
.ws7a{word-spacing:4.048000pt;}
.ws5b{word-spacing:4.106667pt;}
.ws8a{word-spacing:4.224000pt;}
.ws77{word-spacing:4.341333pt;}
.ws1f{word-spacing:4.522667pt;}
.ws71{word-spacing:4.634667pt;}
.wsc4{word-spacing:4.640000pt;}
.ws9e{word-spacing:4.810667pt;}
.ws8d{word-spacing:4.869333pt;}
.ws7e{word-spacing:4.986667pt;}
.wsb4{word-spacing:5.104000pt;}
.wse{word-spacing:5.120000pt;}
.ws15{word-spacing:5.248000pt;}
.wsa9{word-spacing:5.280000pt;}
.ws6a{word-spacing:5.338667pt;}
.ws85{word-spacing:5.456000pt;}
.ws12{word-spacing:5.461333pt;}
.ws96{word-spacing:5.514667pt;}
.wsd{word-spacing:5.589333pt;}
.ws2a{word-spacing:5.632000pt;}
.ws6{word-spacing:5.717333pt;}
.ws40{word-spacing:5.749333pt;}
.ws60{word-spacing:5.808000pt;}
.ws2b{word-spacing:5.925333pt;}
.wsc7{word-spacing:5.973333pt;}
.ws31{word-spacing:5.984000pt;}
.ws72{word-spacing:6.218667pt;}
.ws53{word-spacing:6.277333pt;}
.ws63{word-spacing:6.336000pt;}
.ws76{word-spacing:6.453333pt;}
.wsa4{word-spacing:6.512000pt;}
.ws33{word-spacing:6.570667pt;}
.ws61{word-spacing:6.805333pt;}
.ws1c{word-spacing:7.125333pt;}
.wsbf{word-spacing:7.200000pt;}
.ws52{word-spacing:7.216000pt;}
.ws25{word-spacing:7.274667pt;}
.wsf{word-spacing:7.296000pt;}
.ws48{word-spacing:7.392000pt;}
.ws51{word-spacing:7.450667pt;}
.ws84{word-spacing:7.509333pt;}
.ws6b{word-spacing:7.568000pt;}
.ws58{word-spacing:7.626667pt;}
.ws4c{word-spacing:7.685333pt;}
.ws43{word-spacing:7.861333pt;}
.ws70{word-spacing:7.978667pt;}
.ws75{word-spacing:8.096000pt;}
.ws50{word-spacing:8.272000pt;}
.ws5f{word-spacing:8.330667pt;}
.ws65{word-spacing:8.448000pt;}
.ws66{word-spacing:8.506667pt;}
.wsa5{word-spacing:8.565333pt;}
.ws79{word-spacing:8.682667pt;}
.ws64{word-spacing:8.917333pt;}
.ws21{word-spacing:9.386667pt;}
.ws6d{word-spacing:9.680000pt;}
.wscf{word-spacing:10.080000pt;}
.wsb9{word-spacing:10.090667pt;}
.ws7c{word-spacing:10.149333pt;}
.ws32{word-spacing:10.325333pt;}
.ws9b{word-spacing:10.618667pt;}
.ws5c{word-spacing:10.736000pt;}
.ws73{word-spacing:10.794667pt;}
.ws8e{word-spacing:11.029333pt;}
.wsc3{word-spacing:11.306667pt;}
.wsca{word-spacing:11.466667pt;}
.ws37{word-spacing:11.616000pt;}
.wsc0{word-spacing:11.626667pt;}
.wsa0{word-spacing:11.909333pt;}
.ws9d{word-spacing:12.202667pt;}
.ws2c{word-spacing:12.261333pt;}
.ws49{word-spacing:12.378667pt;}
.wscb{word-spacing:12.480000pt;}
.wsc5{word-spacing:12.533333pt;}
.ws45{word-spacing:12.906667pt;}
.ws81{word-spacing:13.493333pt;}
.ws7b{word-spacing:13.610667pt;}
.ws42{word-spacing:14.138667pt;}
.wsc6{word-spacing:14.506667pt;}
.wsa7{word-spacing:14.608000pt;}
.wsb7{word-spacing:14.901333pt;}
.ws94{word-spacing:15.018667pt;}
.wsac{word-spacing:15.077333pt;}
.wsce{word-spacing:15.093333pt;}
.ws57{word-spacing:15.898667pt;}
.wsad{word-spacing:16.133333pt;}
.ws83{word-spacing:16.602667pt;}
.ws3d{word-spacing:16.954667pt;}
.ws36{word-spacing:17.189333pt;}
.ws47{word-spacing:27.456000pt;}
.ws5d{word-spacing:28.101333pt;}
._f{margin-left:-6.429867pt;}
._6{margin-left:-4.855467pt;}
._4{margin-left:-3.916800pt;}
._e{margin-left:-2.569600pt;}
._1{margin-left:-1.032533pt;}
._3{width:1.134933pt;}
._2{width:2.193067pt;}
._5{width:3.652267pt;}
._d{width:4.689600pt;}
._b{width:5.667200pt;}
._c{width:6.640533pt;}
._a{width:7.644267pt;}
._8{width:8.577067pt;}
._12{width:10.458133pt;}
._11{width:11.723200pt;}
._9{width:16.702400pt;}
._10{width:18.468267pt;}
._7{width:30.682667pt;}
._13{width:229.156267pt;}
._0{width:839.232000pt;}
.fs3{font-size:18.656000pt;}
.fs4{font-size:32.000000pt;}
.fs8{font-size:34.202667pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:85.333333pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:40.669733pt;}
.y2{bottom:43.432933pt;}
.y22{bottom:95.372400pt;}
.yf1{bottom:105.826800pt;}
.y77{bottom:111.952933pt;}
.yf0{bottom:115.160133pt;}
.ya5{bottom:118.698267pt;}
.yc3{bottom:121.112000pt;}
.y21{bottom:122.572400pt;}
.yef{bottom:124.493467pt;}
.y76{bottom:129.552933pt;}
.y20{bottom:135.372400pt;}
.ya4{bottom:136.298400pt;}
.yee{bottom:136.490800pt;}
.yc2{bottom:138.711867pt;}
.y14d{bottom:141.000667pt;}
.y10d{bottom:142.310133pt;}
.y75{bottom:147.152933pt;}
.y1f{bottom:148.172400pt;}
.yc1{bottom:156.311867pt;}
.y128{bottom:157.667333pt;}
.y14c{bottom:158.600533pt;}
.y10c{bottom:159.910133pt;}
.y1e{bottom:160.972400pt;}
.ya3{bottom:161.898267pt;}
.y74{bottom:164.752933pt;}
.y43{bottom:169.133867pt;}
.yc0{bottom:173.912000pt;}
.y127{bottom:175.267333pt;}
.y14b{bottom:176.200667pt;}
.ya2{bottom:179.498267pt;}
.y73{bottom:182.352800pt;}
.ybf{bottom:191.512000pt;}
.y126{bottom:192.867333pt;}
.y14a{bottom:193.800667pt;}
.ya1{bottom:197.098267pt;}
.y72{bottom:199.952933pt;}
.ybe{bottom:209.112000pt;}
.ya{bottom:209.133867pt;}
.y125{bottom:210.467333pt;}
.yed{bottom:210.711867pt;}
.y149{bottom:211.400667pt;}
.y10b{bottom:212.710133pt;}
.ya0{bottom:214.698267pt;}
.y71{bottom:217.552933pt;}
.y9{bottom:221.131200pt;}
.y10a{bottom:224.976800pt;}
.y124{bottom:228.067333pt;}
.yec{bottom:228.311867pt;}
.y148{bottom:229.000667pt;}
.y42{bottom:229.133867pt;}
.y9f{bottom:232.298400pt;}
.ybd{bottom:234.711867pt;}
.y70{bottom:235.152933pt;}
.y109{bottom:240.976800pt;}
.y123{bottom:245.667333pt;}
.yeb{bottom:245.912000pt;}
.y147{bottom:246.600533pt;}
.y41{bottom:249.133867pt;}
.y9e{bottom:249.898267pt;}
.ybc{bottom:252.311867pt;}
.y6f{bottom:260.752933pt;}
.yea{bottom:263.512000pt;}
.y146{bottom:264.200667pt;}
.y40{bottom:269.133867pt;}
.ybb{bottom:269.912000pt;}
.y122{bottom:271.267333pt;}
.y9d{bottom:275.498267pt;}
.y6e{bottom:278.352800pt;}
.ye9{bottom:281.112000pt;}
.y145{bottom:281.800667pt;}
.yba{bottom:287.512000pt;}
.y121{bottom:288.867333pt;}
.y3f{bottom:289.133867pt;}
.y9c{bottom:293.098267pt;}
.y6d{bottom:295.952933pt;}
.ye8{bottom:298.711867pt;}
.y144{bottom:299.400667pt;}
.y120{bottom:306.467333pt;}
.y3e{bottom:309.133867pt;}
.y9b{bottom:310.698267pt;}
.yb9{bottom:313.112000pt;}
.y6c{bottom:313.552933pt;}
.ye7{bottom:316.311867pt;}
.y11f{bottom:324.067333pt;}
.y143{bottom:325.000667pt;}
.y9a{bottom:328.298267pt;}
.y3d{bottom:329.133867pt;}
.yb8{bottom:330.712000pt;}
.y6b{bottom:331.152933pt;}
.ye6{bottom:341.912000pt;}
.y142{bottom:342.600667pt;}
.y99{bottom:345.898267pt;}
.yb7{bottom:348.311867pt;}
.y6a{bottom:348.752933pt;}
.y18{bottom:349.133733pt;}
.y3c{bottom:349.133867pt;}
.y11e{bottom:349.667333pt;}
.ye5{bottom:359.512000pt;}
.y141{bottom:360.200667pt;}
.y98{bottom:363.498267pt;}
.yb6{bottom:365.912000pt;}
.y69{bottom:366.352933pt;}
.y11d{bottom:367.267333pt;}
.y3b{bottom:369.133867pt;}
.ye4{bottom:377.112000pt;}
.y140{bottom:377.800667pt;}
.yb5{bottom:383.512000pt;}
.y68{bottom:383.952933pt;}
.y11c{bottom:384.867333pt;}
.y97{bottom:389.098267pt;}
.y17{bottom:389.133733pt;}
.y3a{bottom:389.133867pt;}
.ye3{bottom:394.712000pt;}
.yb4{bottom:401.112000pt;}
.y67{bottom:401.552933pt;}
.y13f{bottom:403.400667pt;}
.y96{bottom:406.698267pt;}
.y16{bottom:409.133733pt;}
.y39{bottom:409.133867pt;}
.y11b{bottom:410.467333pt;}
.y108{bottom:410.712000pt;}
.ye2{bottom:412.311867pt;}
.yb3{bottom:418.712000pt;}
.y13e{bottom:421.000667pt;}
.y95{bottom:424.298267pt;}
.y66{bottom:427.152933pt;}
.y11a{bottom:428.067333pt;}
.y107{bottom:428.311867pt;}
.y15{bottom:429.133733pt;}
.y38{bottom:429.133867pt;}
.ye1{bottom:429.912000pt;}
.y16a{bottom:431.864533pt;}
.yb2{bottom:436.311867pt;}
.y13d{bottom:438.600667pt;}
.y94{bottom:441.898267pt;}
.y65{bottom:444.752933pt;}
.y119{bottom:445.667333pt;}
.y106{bottom:445.912000pt;}
.ye0{bottom:447.512000pt;}
.y169{bottom:447.864533pt;}
.y14{bottom:449.133733pt;}
.y37{bottom:449.133867pt;}
.yb1{bottom:453.912000pt;}
.y13c{bottom:456.200667pt;}
.y93{bottom:459.498267pt;}
.y64{bottom:462.352933pt;}
.y118{bottom:463.267333pt;}
.y168{bottom:463.864533pt;}
.y13{bottom:469.133733pt;}
.yb0{bottom:471.512000pt;}
.ydf{bottom:473.112000pt;}
.y13b{bottom:473.800667pt;}
.y92{bottom:477.098267pt;}
.y167{bottom:479.864533pt;}
.y63{bottom:479.952933pt;}
.y105{bottom:489.112000pt;}
.y12{bottom:489.133733pt;}
.yde{bottom:490.712000pt;}
.y13a{bottom:491.400667pt;}
.y91{bottom:494.698267pt;}
.y166{bottom:495.864533pt;}
.yaf{bottom:497.112000pt;}
.y62{bottom:497.552933pt;}
.y117{bottom:498.467333pt;}
.y36{bottom:501.133867pt;}
.y104{bottom:506.712000pt;}
.ydd{bottom:508.311867pt;}
.y139{bottom:509.000667pt;}
.y11{bottom:509.133733pt;}
.y90{bottom:512.298267pt;}
.yae{bottom:514.712000pt;}
.y61{bottom:515.152933pt;}
.y165{bottom:523.203067pt;}
.y103{bottom:524.311867pt;}
.y35{bottom:525.133867pt;}
.ydc{bottom:525.912000pt;}
.y138{bottom:526.600667pt;}
.y10{bottom:529.133733pt;}
.y8f{bottom:529.898267pt;}
.yad{bottom:532.311867pt;}
.y60{bottom:532.752933pt;}
.y164{bottom:539.203067pt;}
.y102{bottom:541.912000pt;}
.ydb{bottom:543.512000pt;}
.y137{bottom:544.200667pt;}
.y8e{bottom:547.498267pt;}
.yf{bottom:549.133733pt;}
.y34{bottom:549.133867pt;}
.yac{bottom:549.912000pt;}
.y5f{bottom:550.352933pt;}
.y163{bottom:555.203067pt;}
.y101{bottom:559.512000pt;}
.yda{bottom:561.112000pt;}
.y136{bottom:561.800667pt;}
.y8d{bottom:565.098267pt;}
.yab{bottom:567.512000pt;}
.y5e{bottom:567.952933pt;}
.ye{bottom:569.133733pt;}
.y100{bottom:577.112000pt;}
.yd9{bottom:578.712000pt;}
.y135{bottom:579.400667pt;}
.y162{bottom:582.541733pt;}
.y8c{bottom:582.698267pt;}
.yaa{bottom:585.112000pt;}
.yd{bottom:589.133733pt;}
.y5d{bottom:593.112000pt;}
.yff{bottom:594.712000pt;}
.yd8{bottom:596.311867pt;}
.y134{bottom:597.000667pt;}
.y161{bottom:598.541733pt;}
.y8b{bottom:600.298267pt;}
.ya9{bottom:602.712000pt;}
.yc{bottom:609.133733pt;}
.y33{bottom:609.133867pt;}
.y5c{bottom:610.712000pt;}
.yfe{bottom:612.311867pt;}
.yd7{bottom:613.912000pt;}
.y160{bottom:614.541733pt;}
.y133{bottom:614.600667pt;}
.ya8{bottom:620.311867pt;}
.y8a{bottom:625.898267pt;}
.y5b{bottom:628.311867pt;}
.yb{bottom:629.133733pt;}
.yfd{bottom:629.912000pt;}
.yd6{bottom:631.512000pt;}
.y132{bottom:632.200667pt;}
.ya7{bottom:637.912000pt;}
.y15f{bottom:641.880267pt;}
.y89{bottom:643.498267pt;}
.y5a{bottom:645.912000pt;}
.y8{bottom:649.133733pt;}
.y32{bottom:649.133867pt;}
.y131{bottom:649.800667pt;}
.ya6{bottom:655.512000pt;}
.yd5{bottom:657.112000pt;}
.y15e{bottom:657.880267pt;}
.y88{bottom:661.098267pt;}
.y59{bottom:663.512000pt;}
.y130{bottom:667.400667pt;}
.y31{bottom:669.133867pt;}
.yfc{bottom:673.112000pt;}
.y15d{bottom:673.880267pt;}
.yd4{bottom:674.712000pt;}
.y87{bottom:678.698267pt;}
.y58{bottom:681.112000pt;}
.y12f{bottom:685.000667pt;}
.y30{bottom:689.133867pt;}
.yfb{bottom:690.711867pt;}
.yd3{bottom:692.311867pt;}
.y86{bottom:696.298400pt;}
.y57{bottom:698.711867pt;}
.y15c{bottom:701.218933pt;}
.y12e{bottom:702.600533pt;}
.yfa{bottom:708.311867pt;}
.y2f{bottom:709.133867pt;}
.yd2{bottom:709.912000pt;}
.y85{bottom:713.898267pt;}
.y56{bottom:716.311867pt;}
.y15b{bottom:717.218933pt;}
.y116{bottom:718.200667pt;}
.y12d{bottom:720.200667pt;}
.yf9{bottom:725.912000pt;}
.yd1{bottom:727.512000pt;}
.y2e{bottom:729.133867pt;}
.y84{bottom:731.498267pt;}
.y15a{bottom:733.218933pt;}
.y55{bottom:733.912000pt;}
.y115{bottom:735.800667pt;}
.y12c{bottom:737.800667pt;}
.y1d{bottom:742.226267pt;}
.yf8{bottom:743.512000pt;}
.yd0{bottom:745.112000pt;}
.y83{bottom:749.098267pt;}
.y2d{bottom:749.133867pt;}
.y54{bottom:751.512000pt;}
.y114{bottom:753.400667pt;}
.y12b{bottom:755.400667pt;}
.y1c{bottom:756.626267pt;}
.y159{bottom:760.557467pt;}
.yf7{bottom:761.112000pt;}
.ycf{bottom:762.711867pt;}
.y82{bottom:766.698267pt;}
.y53{bottom:769.112000pt;}
.y2c{bottom:769.133867pt;}
.y1b{bottom:771.026267pt;}
.y158{bottom:776.557467pt;}
.yf6{bottom:778.711867pt;}
.y113{bottom:779.000667pt;}
.yce{bottom:780.311867pt;}
.y12a{bottom:781.000667pt;}
.y81{bottom:784.298400pt;}
.y1a{bottom:785.426267pt;}
.y52{bottom:786.711867pt;}
.y2b{bottom:789.133867pt;}
.y157{bottom:792.557467pt;}
.yf5{bottom:796.311867pt;}
.y112{bottom:796.600533pt;}
.ycd{bottom:797.911867pt;}
.y19{bottom:799.826267pt;}
.y51{bottom:804.311867pt;}
.y2a{bottom:809.133867pt;}
.y80{bottom:809.898400pt;}
.yf4{bottom:813.911867pt;}
.y111{bottom:814.200533pt;}
.y156{bottom:819.896000pt;}
.y50{bottom:821.911867pt;}
.ycc{bottom:823.511867pt;}
.y7f{bottom:827.498400pt;}
.y29{bottom:829.133867pt;}
.yf3{bottom:831.511867pt;}
.y110{bottom:831.800533pt;}
.y129{bottom:833.800533pt;}
.y155{bottom:835.896000pt;}
.y4f{bottom:839.511867pt;}
.ycb{bottom:841.111867pt;}
.y7e{bottom:845.098400pt;}
.yf2{bottom:849.111867pt;}
.y28{bottom:849.133867pt;}
.y10f{bottom:849.400533pt;}
.y154{bottom:851.896000pt;}
.y7{bottom:856.649467pt;}
.y4e{bottom:857.111867pt;}
.yca{bottom:858.711867pt;}
.y7d{bottom:862.698400pt;}
.y153{bottom:867.896000pt;}
.y27{bottom:869.133867pt;}
.y4d{bottom:874.711867pt;}
.y7c{bottom:884.077867pt;}
.yc9{bottom:884.311867pt;}
.y6{bottom:888.649467pt;}
.y26{bottom:889.133867pt;}
.y10e{bottom:891.000533pt;}
.y4c{bottom:892.311867pt;}
.y152{bottom:895.234667pt;}
.yc8{bottom:901.911867pt;}
.y7b{bottom:905.457467pt;}
.y4b{bottom:909.911867pt;}
.y151{bottom:911.234667pt;}
.yc7{bottom:919.511867pt;}
.y5{bottom:920.649467pt;}
.y4a{bottom:927.511867pt;}
.yc6{bottom:937.111867pt;}
.y150{bottom:938.573200pt;}
.y25{bottom:941.133867pt;}
.y49{bottom:945.111867pt;}
.y4{bottom:952.649467pt;}
.y14f{bottom:954.573200pt;}
.yc5{bottom:954.711867pt;}
.y7a{bottom:958.257467pt;}
.y48{bottom:962.711867pt;}
.y24{bottom:965.133867pt;}
.y14e{bottom:970.573200pt;}
.yc4{bottom:972.311867pt;}
.y79{bottom:975.857467pt;}
.y47{bottom:980.311867pt;}
.y3{bottom:984.649467pt;}
.y23{bottom:989.133867pt;}
.y78{bottom:993.457467pt;}
.y46{bottom:997.911867pt;}
.y45{bottom:1075.463067pt;}
.y44{bottom:1088.263067pt;}
.h5{height:14.292609pt;}
.h6{height:24.515625pt;}
.h7{height:32.687500pt;}
.h2{height:36.773438pt;}
.h8{height:37.242188pt;}
.ha{height:37.546667pt;}
.hd{height:40.859375pt;}
.he{height:44.888021pt;}
.hb{height:44.945312pt;}
.hc{height:45.738584pt;}
.h4{height:49.031250pt;}
.h9{height:65.375000pt;}
.h3{height:98.062500pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.385867pt;}
.x4{left:117.888000pt;}
.x5{left:121.333200pt;}
.x9{left:126.975467pt;}
.x6{left:131.450400pt;}
.x8{left:132.561733pt;}
.x17{left:141.723467pt;}
.xf{left:150.882800pt;}
.x10{left:153.830400pt;}
.x13{left:157.745733pt;}
.x3{left:165.497333pt;}
.x18{left:169.252800pt;}
.x12{left:187.706133pt;}
.x14{left:196.688133pt;}
.x15{left:205.237467pt;}
.x11{left:219.278400pt;}
.x16{left:256.591467pt;}
.x1c{left:261.629067pt;}
.x1b{left:277.914800pt;}
.x7{left:301.364533pt;}
.xc{left:426.927867pt;}
.x19{left:434.623600pt;}
.x1a{left:459.499867pt;}
.xb{left:497.298933pt;}
.xe{left:500.785333pt;}
.xd{left:529.009867pt;}
.xa{left:530.539200pt;}
.x1d{left:666.592267pt;}
.x1{left:673.453600pt;}
}




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