
    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_a99ae43f77deacd1753a2c28.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958008;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_d25518e4297d2033cc224d60.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064000;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_dfe976b85ffc67fd9ce9c198.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_6d77a1a28b9990ecee325aee.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.870117;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_25b23ffe44a765d275b9a632.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.935547;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_0e066277e427009a86510bc1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.926758;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_61bc87ce8ac8a831f80fd704.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.968000;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_a5a9149e30cae743f1b061a6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948730;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_2c1f5b421764277c52fa3454.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.719727;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.m0{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v2{vertical-align:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.786000px;}
.ls3f{letter-spacing:-3.780000px;}
.ls31{letter-spacing:-3.420000px;}
.ls2f{letter-spacing:-2.760000px;}
.ls1c{letter-spacing:-1.056000px;}
.ls8{letter-spacing:-0.924000px;}
.ls9{letter-spacing:-0.858000px;}
.ls1a{letter-spacing:-0.810000px;}
.ls24{letter-spacing:-0.792000px;}
.ls34{letter-spacing:-0.780000px;}
.ls6{letter-spacing:-0.660000px;}
.ls2{letter-spacing:-0.600000px;}
.ls7{letter-spacing:-0.594000px;}
.lsf{letter-spacing:-0.528000px;}
.lsc{letter-spacing:-0.462000px;}
.ls40{letter-spacing:-0.420000px;}
.ls1d{letter-spacing:-0.396000px;}
.ls38{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.330000px;}
.ls18{letter-spacing:-0.300000px;}
.lse{letter-spacing:-0.264000px;}
.ls4{letter-spacing:-0.240000px;}
.lsd{letter-spacing:-0.198000px;}
.ls39{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.132000px;}
.ls5{letter-spacing:-0.120000px;}
.lsa{letter-spacing:-0.066000px;}
.ls3{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.060000px;}
.ls19{letter-spacing:0.066000px;}
.ls1{letter-spacing:0.072000px;}
.ls17{letter-spacing:0.120000px;}
.ls35{letter-spacing:0.180000px;}
.ls28{letter-spacing:0.198000px;}
.ls3b{letter-spacing:0.240000px;}
.ls10{letter-spacing:0.264000px;}
.ls29{letter-spacing:0.270000px;}
.ls15{letter-spacing:0.300000px;}
.ls1b{letter-spacing:0.324000px;}
.ls16{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.396000px;}
.ls36{letter-spacing:0.420000px;}
.ls2c{letter-spacing:0.480000px;}
.ls22{letter-spacing:0.482520px;}
.ls3a{letter-spacing:0.540000px;}
.ls13{letter-spacing:0.594000px;}
.ls32{letter-spacing:0.600000px;}
.ls20{letter-spacing:0.660000px;}
.ls2d{letter-spacing:0.720000px;}
.ls30{letter-spacing:0.780000px;}
.ls2a{letter-spacing:0.840000px;}
.ls1f{letter-spacing:0.858000px;}
.ls2b{letter-spacing:0.900000px;}
.ls21{letter-spacing:0.924000px;}
.ls3d{letter-spacing:0.960000px;}
.ls1e{letter-spacing:0.990000px;}
.ls27{letter-spacing:1.048920px;}
.ls14{letter-spacing:1.140000px;}
.ls25{letter-spacing:1.320000px;}
.ls26{letter-spacing:1.320120px;}
.ls3c{letter-spacing:1.380000px;}
.ls33{letter-spacing:1.620000px;}
.ls23{letter-spacing:1.776120px;}
.ls2e{letter-spacing:2.040000px;}
.ls3e{letter-spacing:2.340000px;}
.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;}
}
.wsae{word-spacing:-13.740000px;}
.ws97{word-spacing:-13.440000px;}
.ws4a{word-spacing:-13.068000px;}
.ws98{word-spacing:-13.020000px;}
.wsab{word-spacing:-12.480000px;}
.ws6c{word-spacing:-12.474000px;}
.ws96{word-spacing:-11.880000px;}
.ws99{word-spacing:-11.580000px;}
.wsac{word-spacing:-11.520000px;}
.wsad{word-spacing:-10.800000px;}
.ws80{word-spacing:-10.584000px;}
.ws7f{word-spacing:-5.950800px;}
.wsb2{word-spacing:-3.780000px;}
.wsaf{word-spacing:-3.660000px;}
.ws87{word-spacing:-3.432000px;}
.wsbb{word-spacing:-3.360000px;}
.ws7c{word-spacing:-3.300000px;}
.ws95{word-spacing:-3.234000px;}
.ws16{word-spacing:-3.168000px;}
.ws3{word-spacing:-3.120000px;}
.ws18{word-spacing:-3.102000px;}
.ws62{word-spacing:-3.036000px;}
.ws21{word-spacing:-2.970000px;}
.ws42{word-spacing:-2.904000px;}
.ws6{word-spacing:-2.880000px;}
.ws41{word-spacing:-2.838000px;}
.wsd{word-spacing:-2.820000px;}
.ws2e{word-spacing:-2.772000px;}
.ws2a{word-spacing:-2.706000px;}
.ws70{word-spacing:-2.640000px;}
.ws59{word-spacing:-2.574000px;}
.wsa9{word-spacing:-2.520000px;}
.ws7d{word-spacing:-2.508000px;}
.wsba{word-spacing:-2.460000px;}
.ws1a{word-spacing:-2.442000px;}
.wsb9{word-spacing:-2.400000px;}
.ws26{word-spacing:-2.376000px;}
.ws20{word-spacing:-2.310000px;}
.ws9b{word-spacing:-2.244000px;}
.ws14{word-spacing:-2.184000px;}
.ws36{word-spacing:-2.178000px;}
.ws1f{word-spacing:-2.112000px;}
.ws5f{word-spacing:-2.100000px;}
.wsa3{word-spacing:-2.040000px;}
.ws19{word-spacing:-1.980000px;}
.ws5a{word-spacing:-1.914000px;}
.ws82{word-spacing:-1.848000px;}
.ws25{word-spacing:-1.782000px;}
.ws7{word-spacing:-1.740000px;}
.ws86{word-spacing:-1.650000px;}
.wsb1{word-spacing:-1.620000px;}
.ws33{word-spacing:-1.584000px;}
.ws17{word-spacing:-1.518000px;}
.ws1b{word-spacing:-1.452000px;}
.wsf{word-spacing:-1.440000px;}
.ws44{word-spacing:-1.386000px;}
.ws15{word-spacing:-1.320000px;}
.wsa7{word-spacing:-1.260000px;}
.ws28{word-spacing:-1.254000px;}
.ws50{word-spacing:-1.188000px;}
.ws27{word-spacing:-1.122000px;}
.ws5e{word-spacing:-1.080000px;}
.ws7a{word-spacing:-1.056000px;}
.ws3b{word-spacing:-0.990000px;}
.ws67{word-spacing:-0.924000px;}
.ws9c{word-spacing:-0.900000px;}
.ws8c{word-spacing:-0.858000px;}
.wsa4{word-spacing:-0.840000px;}
.ws63{word-spacing:-0.792000px;}
.wsa0{word-spacing:-0.780000px;}
.ws9e{word-spacing:-0.720000px;}
.ws35{word-spacing:-0.660000px;}
.wsa2{word-spacing:-0.600000px;}
.ws1c{word-spacing:-0.594000px;}
.wsb3{word-spacing:-0.540000px;}
.ws34{word-spacing:-0.528000px;}
.ws9d{word-spacing:-0.480000px;}
.ws4f{word-spacing:-0.462000px;}
.ws2b{word-spacing:-0.396000px;}
.wsb{word-spacing:-0.360000px;}
.ws4e{word-spacing:-0.330000px;}
.ws66{word-spacing:-0.324000px;}
.ws94{word-spacing:-0.270000px;}
.ws49{word-spacing:-0.264000px;}
.ws48{word-spacing:-0.198000px;}
.ws89{word-spacing:-0.162000px;}
.ws53{word-spacing:-0.132000px;}
.ws2{word-spacing:-0.120000px;}
.ws1{word-spacing:-0.072000px;}
.ws4b{word-spacing:-0.066000px;}
.wsaa{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.wsbf{word-spacing:0.060000px;}
.ws58{word-spacing:0.066000px;}
.ws2c{word-spacing:0.132000px;}
.wsc2{word-spacing:0.180000px;}
.ws40{word-spacing:0.198000px;}
.ws8f{word-spacing:0.264000px;}
.ws6e{word-spacing:0.330000px;}
.ws8e{word-spacing:0.396000px;}
.wsa8{word-spacing:0.420000px;}
.ws12{word-spacing:0.462000px;}
.ws8b{word-spacing:0.528000px;}
.ws37{word-spacing:0.594000px;}
.ws60{word-spacing:0.660000px;}
.ws22{word-spacing:0.726000px;}
.ws5c{word-spacing:0.756000px;}
.ws78{word-spacing:0.792000px;}
.wsa{word-spacing:0.840000px;}
.ws10{word-spacing:0.858000px;}
.ws8{word-spacing:0.900000px;}
.ws3a{word-spacing:0.924000px;}
.ws30{word-spacing:0.990000px;}
.ws3e{word-spacing:1.056000px;}
.ws6f{word-spacing:1.122000px;}
.wsbd{word-spacing:1.200000px;}
.ws2f{word-spacing:1.254000px;}
.wsbe{word-spacing:1.260000px;}
.ws90{word-spacing:1.320000px;}
.ws51{word-spacing:1.386000px;}
.wsb7{word-spacing:1.440000px;}
.ws68{word-spacing:1.452000px;}
.ws65{word-spacing:1.518000px;}
.ws32{word-spacing:1.584000px;}
.ws2d{word-spacing:1.650000px;}
.ws23{word-spacing:1.716000px;}
.ws9{word-spacing:1.740000px;}
.ws61{word-spacing:1.782000px;}
.wsc0{word-spacing:1.800000px;}
.ws38{word-spacing:1.848000px;}
.ws64{word-spacing:1.914000px;}
.ws77{word-spacing:1.980000px;}
.wsb4{word-spacing:2.040000px;}
.ws6b{word-spacing:2.046000px;}
.wsb5{word-spacing:2.100000px;}
.ws79{word-spacing:2.112000px;}
.ws1d{word-spacing:2.178000px;}
.ws69{word-spacing:2.244000px;}
.ws1e{word-spacing:2.310000px;}
.ws6a{word-spacing:2.508000px;}
.ws6d{word-spacing:2.574000px;}
.ws46{word-spacing:2.640000px;}
.ws13{word-spacing:2.646000px;}
.wsb0{word-spacing:2.700000px;}
.ws76{word-spacing:2.706000px;}
.ws9f{word-spacing:2.760000px;}
.ws4c{word-spacing:2.772000px;}
.ws3f{word-spacing:2.838000px;}
.ws47{word-spacing:2.904000px;}
.wsb8{word-spacing:2.940000px;}
.ws43{word-spacing:2.970000px;}
.ws57{word-spacing:3.036000px;}
.ws7e{word-spacing:3.102000px;}
.ws75{word-spacing:3.168000px;}
.ws24{word-spacing:3.234000px;}
.ws74{word-spacing:3.300000px;}
.ws73{word-spacing:3.366000px;}
.wsa1{word-spacing:3.420000px;}
.ws54{word-spacing:3.432000px;}
.ws5b{word-spacing:3.498000px;}
.ws88{word-spacing:3.510000px;}
.ws81{word-spacing:3.564000px;}
.wsc1{word-spacing:3.600000px;}
.ws71{word-spacing:3.630000px;}
.ws9a{word-spacing:3.696000px;}
.ws52{word-spacing:3.762000px;}
.wsbc{word-spacing:3.780000px;}
.ws45{word-spacing:3.828000px;}
.ws8d{word-spacing:3.894000px;}
.wsc{word-spacing:3.900000px;}
.ws39{word-spacing:4.092000px;}
.wse{word-spacing:4.140000px;}
.ws3c{word-spacing:4.290000px;}
.ws29{word-spacing:4.356000px;}
.ws8a{word-spacing:4.488000px;}
.ws85{word-spacing:4.686000px;}
.wsa6{word-spacing:4.740000px;}
.ws84{word-spacing:4.884000px;}
.ws56{word-spacing:4.950000px;}
.ws4{word-spacing:4.980000px;}
.wsb6{word-spacing:5.040000px;}
.ws31{word-spacing:5.082000px;}
.ws83{word-spacing:5.148000px;}
.ws5{word-spacing:5.160000px;}
.ws4d{word-spacing:5.214000px;}
.ws55{word-spacing:5.280000px;}
.ws72{word-spacing:5.676000px;}
.ws5d{word-spacing:5.700000px;}
.ws7b{word-spacing:5.742000px;}
.wsa5{word-spacing:5.760000px;}
.ws3d{word-spacing:5.874000px;}
.ws11{word-spacing:6.270000px;}
.ws93{word-spacing:8.316000px;}
.ws92{word-spacing:8.478000px;}
.ws91{word-spacing:15.876000px;}
._9{margin-left:-7.592400px;}
._7{margin-left:-5.742000px;}
._6{margin-left:-4.694880px;}
._2{margin-left:-3.636360px;}
._4{margin-left:-2.253840px;}
._0{margin-left:-1.134000px;}
._1{width:1.670760px;}
._3{width:2.692080px;}
._5{width:3.709440px;}
._8{width:4.724520px;}
._c{width:5.897280px;}
._d{width:7.123200px;}
._b{width:39.365880px;}
._a{width:42.875880px;}
.fc1{color:rgb(146,146,146);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:31.320000px;}
.fs7{font-size:38.280000px;}
.fs5{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:75.600000px;}
.y0{bottom:0.000000px;}
.y20{bottom:70.883850px;}
.y1f{bottom:99.911250px;}
.yd8{bottom:99.924450px;}
.y4e{bottom:102.416400px;}
.y72{bottom:103.425000px;}
.y101{bottom:103.437000px;}
.yaf{bottom:103.450500px;}
.ye5{bottom:104.376450px;}
.y1e{bottom:111.912750px;}
.y9c{bottom:113.473500px;}
.yd7{bottom:114.922950px;}
.ye4{bottom:117.052050px;}
.y4d{bottom:120.417900px;}
.y71{bottom:121.426500px;}
.y100{bottom:121.438500px;}
.yae{bottom:121.452000px;}
.y11a{bottom:121.476000px;}
.y1d{bottom:123.914250px;}
.y9b{bottom:131.475000px;}
.ye3{bottom:132.050550px;}
.yd6{bottom:134.376450px;}
.y1c{bottom:135.915750px;}
.y119{bottom:137.976000px;}
.y4c{bottom:138.419400px;}
.y70{bottom:139.428000px;}
.yff{bottom:139.440000px;}
.yad{bottom:139.453500px;}
.ye2{bottom:147.049050px;}
.y9a{bottom:149.476500px;}
.yd5{bottom:151.502550px;}
.y1b{bottom:152.169750px;}
.y118{bottom:154.476000px;}
.y4b{bottom:156.420900px;}
.y6f{bottom:157.429500px;}
.yfe{bottom:157.441500px;}
.yac{bottom:157.455000px;}
.y1a{bottom:164.171250px;}
.ye1{bottom:166.502550px;}
.y99{bottom:167.478000px;}
.y117{bottom:170.976000px;}
.y4a{bottom:174.422400px;}
.y6e{bottom:175.431000px;}
.yfd{bottom:175.443000px;}
.yab{bottom:175.456500px;}
.y19{bottom:180.425250px;}
.y98{bottom:185.479500px;}
.y145{bottom:185.999400px;}
.y116{bottom:187.476000px;}
.y49{bottom:192.423900px;}
.y6d{bottom:193.432500px;}
.yfc{bottom:193.444500px;}
.yaa{bottom:193.458000px;}
.y144{bottom:202.499400px;}
.y97{bottom:203.481000px;}
.y115{bottom:203.976000px;}
.y48{bottom:210.425400px;}
.yd4{bottom:210.473400px;}
.y6c{bottom:211.434000px;}
.yfb{bottom:211.446000px;}
.ya9{bottom:211.459500px;}
.y143{bottom:218.999400px;}
.y114{bottom:220.476000px;}
.y96{bottom:221.482500px;}
.y47{bottom:228.426900px;}
.ye0{bottom:228.470400px;}
.yd3{bottom:228.474900px;}
.y6b{bottom:229.435500px;}
.yfa{bottom:229.447500px;}
.ya8{bottom:229.461000px;}
.y18{bottom:231.704550px;}
.y142{bottom:235.499400px;}
.y113{bottom:236.976000px;}
.y95{bottom:239.484000px;}
.y46{bottom:246.428400px;}
.ydf{bottom:246.471900px;}
.yd2{bottom:246.476400px;}
.y6a{bottom:247.437000px;}
.yf9{bottom:247.449000px;}
.ya7{bottom:247.462500px;}
.y17{bottom:249.706050px;}
.y141{bottom:251.999400px;}
.y112{bottom:253.476000px;}
.y94{bottom:257.485500px;}
.y45{bottom:264.429900px;}
.yde{bottom:264.473400px;}
.yd1{bottom:264.477900px;}
.y69{bottom:265.438500px;}
.yf8{bottom:265.450500px;}
.ya6{bottom:265.464000px;}
.y16{bottom:267.707550px;}
.y140{bottom:268.499400px;}
.y111{bottom:269.976000px;}
.y93{bottom:275.487000px;}
.y44{bottom:282.431400px;}
.ydd{bottom:282.474900px;}
.yd0{bottom:282.479400px;}
.y68{bottom:283.440000px;}
.yf7{bottom:283.452000px;}
.ya5{bottom:283.465500px;}
.y13f{bottom:284.999400px;}
.y110{bottom:286.476000px;}
.y92{bottom:293.488500px;}
.y15{bottom:294.708900px;}
.y43{bottom:300.432900px;}
.ydc{bottom:300.476400px;}
.ycf{bottom:300.480900px;}
.y67{bottom:301.441500px;}
.yf6{bottom:301.453500px;}
.ya4{bottom:301.467000px;}
.y13e{bottom:301.499400px;}
.y10f{bottom:302.976000px;}
.y91{bottom:311.490000px;}
.y14{bottom:312.708900px;}
.y13d{bottom:317.999400px;}
.y42{bottom:318.434400px;}
.yce{bottom:318.435900px;}
.ydb{bottom:318.477900px;}
.y66{bottom:319.443000px;}
.yf5{bottom:319.455000px;}
.ya3{bottom:319.468500px;}
.y10e{bottom:319.476000px;}
.y90{bottom:329.491500px;}
.y13{bottom:330.708900px;}
.y13c{bottom:334.499400px;}
.y10d{bottom:335.976000px;}
.y41{bottom:336.435900px;}
.ycd{bottom:336.437400px;}
.yda{bottom:336.479400px;}
.y65{bottom:337.444500px;}
.yf4{bottom:337.456500px;}
.ya2{bottom:337.470000px;}
.y12{bottom:348.708900px;}
.y13b{bottom:350.999400px;}
.y10c{bottom:352.476000px;}
.y40{bottom:354.437400px;}
.ycc{bottom:354.438900px;}
.yd9{bottom:354.480900px;}
.y64{bottom:355.446000px;}
.yf3{bottom:355.458000px;}
.ya1{bottom:355.471500px;}
.y8f{bottom:356.986200px;}
.y11{bottom:366.708900px;}
.y13a{bottom:367.499400px;}
.y10b{bottom:368.976000px;}
.y3f{bottom:372.438900px;}
.ycb{bottom:372.440400px;}
.y63{bottom:373.447500px;}
.yf2{bottom:373.459500px;}
.ya0{bottom:373.473000px;}
.y139{bottom:383.999400px;}
.y10{bottom:384.708900px;}
.y10a{bottom:385.476000px;}
.y3e{bottom:390.440400px;}
.yca{bottom:390.441900px;}
.y62{bottom:391.449000px;}
.yf1{bottom:391.461000px;}
.y9f{bottom:391.474500px;}
.y8e{bottom:400.469550px;}
.y138{bottom:400.499400px;}
.y109{bottom:401.976000px;}
.yf{bottom:402.708900px;}
.y3d{bottom:408.441900px;}
.yc9{bottom:408.443400px;}
.y61{bottom:409.450500px;}
.yf0{bottom:409.462500px;}
.y9e{bottom:409.476000px;}
.y137{bottom:416.999400px;}
.y8d{bottom:418.471050px;}
.y108{bottom:418.476000px;}
.ye{bottom:420.708900px;}
.y3c{bottom:426.443400px;}
.yc8{bottom:426.444900px;}
.y60{bottom:427.452000px;}
.yef{bottom:427.464000px;}
.y136{bottom:433.499400px;}
.y107{bottom:434.976000px;}
.y8c{bottom:436.472550px;}
.y9d{bottom:436.970550px;}
.yd{bottom:438.708900px;}
.y3b{bottom:444.444900px;}
.yc7{bottom:444.446400px;}
.y5f{bottom:445.453500px;}
.yee{bottom:445.465500px;}
.y135{bottom:449.999400px;}
.y106{bottom:451.476000px;}
.y8b{bottom:454.474050px;}
.yc{bottom:456.708900px;}
.y3a{bottom:462.446400px;}
.yc6{bottom:462.447900px;}
.y5e{bottom:463.455000px;}
.yed{bottom:463.467000px;}
.y134{bottom:466.499400px;}
.y105{bottom:467.976000px;}
.y8a{bottom:472.475550px;}
.yb{bottom:474.708900px;}
.y39{bottom:480.447900px;}
.yc5{bottom:480.449400px;}
.y5d{bottom:481.456500px;}
.yec{bottom:481.468500px;}
.y133{bottom:482.999400px;}
.y104{bottom:484.476000px;}
.y89{bottom:490.477050px;}
.ya{bottom:492.708900px;}
.y38{bottom:498.449400px;}
.yc4{bottom:498.450900px;}
.y5c{bottom:499.458000px;}
.yeb{bottom:499.470000px;}
.y132{bottom:499.499400px;}
.y103{bottom:500.976000px;}
.y88{bottom:508.478550px;}
.y9{bottom:510.708900px;}
.y131{bottom:515.999400px;}
.y37{bottom:516.450900px;}
.yc3{bottom:516.452400px;}
.y5b{bottom:517.459500px;}
.yea{bottom:517.471500px;}
.y87{bottom:526.480050px;}
.y102{bottom:526.970550px;}
.y8{bottom:528.708900px;}
.y130{bottom:532.499400px;}
.y36{bottom:534.452400px;}
.yc2{bottom:534.453900px;}
.y5a{bottom:535.461000px;}
.ye9{bottom:535.473000px;}
.y86{bottom:544.481550px;}
.y7{bottom:546.708900px;}
.y12f{bottom:548.999400px;}
.y35{bottom:552.453900px;}
.yc1{bottom:552.455400px;}
.y59{bottom:553.462500px;}
.ye8{bottom:553.474500px;}
.y85{bottom:562.483050px;}
.y6{bottom:564.708900px;}
.y12e{bottom:565.499400px;}
.y34{bottom:570.455400px;}
.yc0{bottom:570.456900px;}
.y58{bottom:571.464000px;}
.ye7{bottom:571.476000px;}
.y84{bottom:580.484550px;}
.y12d{bottom:581.999400px;}
.y5{bottom:582.708900px;}
.y33{bottom:588.456900px;}
.ybf{bottom:588.458400px;}
.y57{bottom:589.465500px;}
.y83{bottom:598.486050px;}
.y12c{bottom:598.499400px;}
.ye6{bottom:598.970550px;}
.y32{bottom:606.458400px;}
.ybe{bottom:606.459900px;}
.y56{bottom:607.467000px;}
.y12b{bottom:614.999400px;}
.y82{bottom:616.487550px;}
.y4{bottom:619.203600px;}
.y31{bottom:624.459900px;}
.ybd{bottom:624.461400px;}
.y55{bottom:625.468500px;}
.y12a{bottom:631.499400px;}
.y81{bottom:634.489050px;}
.y30{bottom:642.461400px;}
.ybc{bottom:642.462900px;}
.y54{bottom:643.470000px;}
.y129{bottom:647.999400px;}
.y80{bottom:652.490550px;}
.y2f{bottom:660.462900px;}
.ybb{bottom:660.464400px;}
.y53{bottom:661.471500px;}
.y128{bottom:664.499400px;}
.y7f{bottom:670.492050px;}
.y2e{bottom:678.464400px;}
.yba{bottom:678.465900px;}
.y52{bottom:679.473000px;}
.y127{bottom:680.999400px;}
.y7e{bottom:688.493550px;}
.y2d{bottom:696.465900px;}
.yb9{bottom:696.467400px;}
.y51{bottom:697.474500px;}
.y126{bottom:697.499400px;}
.y7d{bottom:706.495050px;}
.y125{bottom:713.999400px;}
.y2c{bottom:714.467400px;}
.yb8{bottom:714.468900px;}
.y50{bottom:715.476000px;}
.y7c{bottom:724.496550px;}
.y124{bottom:730.499400px;}
.y2b{bottom:732.468900px;}
.yb7{bottom:732.470400px;}
.y7b{bottom:742.498050px;}
.y4f{bottom:742.970550px;}
.y123{bottom:746.999400px;}
.y2a{bottom:750.470400px;}
.yb6{bottom:750.471900px;}
.y122{bottom:763.499400px;}
.y29{bottom:768.471900px;}
.yb5{bottom:768.473400px;}
.y7a{bottom:769.499400px;}
.y121{bottom:779.999400px;}
.y28{bottom:786.473400px;}
.yb4{bottom:786.474900px;}
.y79{bottom:787.499400px;}
.y120{bottom:796.499400px;}
.y27{bottom:804.474900px;}
.yb3{bottom:804.476400px;}
.y78{bottom:805.499400px;}
.y11f{bottom:812.999400px;}
.y26{bottom:822.476400px;}
.yb2{bottom:822.477900px;}
.y77{bottom:823.499400px;}
.y11e{bottom:829.499400px;}
.y3{bottom:835.215300px;}
.y25{bottom:840.477900px;}
.yb1{bottom:840.479400px;}
.y76{bottom:841.499400px;}
.y11d{bottom:845.999400px;}
.y24{bottom:858.479400px;}
.yb0{bottom:858.480900px;}
.y75{bottom:859.499400px;}
.y11c{bottom:862.499400px;}
.y2{bottom:864.725550px;}
.y23{bottom:876.480900px;}
.y74{bottom:877.499400px;}
.y11b{bottom:878.999400px;}
.y1{bottom:889.919250px;}
.y22{bottom:894.482400px;}
.y73{bottom:895.499400px;}
.y21{bottom:934.435800px;}
.he{height:25.164000px;}
.h8{height:30.597656px;}
.h7{height:30.618164px;}
.ha{height:33.156738px;}
.hb{height:39.287109px;}
.h4{height:39.788086px;}
.hf{height:42.984000px;}
.h9{height:44.208984px;}
.h5{height:47.760000px;}
.h6{height:52.536000px;}
.hc{height:52.542000px;}
.h11{height:52.584000px;}
.h10{height:52.710000px;}
.hd{height:52.722000px;}
.h2{height:55.703320px;}
.h3{height:57.312000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x3{left:85.039350px;}
.x6{left:102.050400px;}
.x1{left:106.299150px;}
.x7{left:123.310200px;}
.x2{left:127.559100px;}
.x5{left:277.657950px;}
.x4{left:578.591100px;}
@media print{
.v2{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.365333pt;}
.ls3f{letter-spacing:-3.360000pt;}
.ls31{letter-spacing:-3.040000pt;}
.ls2f{letter-spacing:-2.453333pt;}
.ls1c{letter-spacing:-0.938667pt;}
.ls8{letter-spacing:-0.821333pt;}
.ls9{letter-spacing:-0.762667pt;}
.ls1a{letter-spacing:-0.720000pt;}
.ls24{letter-spacing:-0.704000pt;}
.ls34{letter-spacing:-0.693333pt;}
.ls6{letter-spacing:-0.586667pt;}
.ls2{letter-spacing:-0.533333pt;}
.ls7{letter-spacing:-0.528000pt;}
.lsf{letter-spacing:-0.469333pt;}
.lsc{letter-spacing:-0.410667pt;}
.ls40{letter-spacing:-0.373333pt;}
.ls1d{letter-spacing:-0.352000pt;}
.ls38{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.293333pt;}
.ls18{letter-spacing:-0.266667pt;}
.lse{letter-spacing:-0.234667pt;}
.ls4{letter-spacing:-0.213333pt;}
.lsd{letter-spacing:-0.176000pt;}
.ls39{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.117333pt;}
.ls5{letter-spacing:-0.106667pt;}
.lsa{letter-spacing:-0.058667pt;}
.ls3{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.053333pt;}
.ls19{letter-spacing:0.058667pt;}
.ls1{letter-spacing:0.064000pt;}
.ls17{letter-spacing:0.106667pt;}
.ls35{letter-spacing:0.160000pt;}
.ls28{letter-spacing:0.176000pt;}
.ls3b{letter-spacing:0.213333pt;}
.ls10{letter-spacing:0.234667pt;}
.ls29{letter-spacing:0.240000pt;}
.ls15{letter-spacing:0.266667pt;}
.ls1b{letter-spacing:0.288000pt;}
.ls16{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.352000pt;}
.ls36{letter-spacing:0.373333pt;}
.ls2c{letter-spacing:0.426667pt;}
.ls22{letter-spacing:0.428907pt;}
.ls3a{letter-spacing:0.480000pt;}
.ls13{letter-spacing:0.528000pt;}
.ls32{letter-spacing:0.533333pt;}
.ls20{letter-spacing:0.586667pt;}
.ls2d{letter-spacing:0.640000pt;}
.ls30{letter-spacing:0.693333pt;}
.ls2a{letter-spacing:0.746667pt;}
.ls1f{letter-spacing:0.762667pt;}
.ls2b{letter-spacing:0.800000pt;}
.ls21{letter-spacing:0.821333pt;}
.ls3d{letter-spacing:0.853333pt;}
.ls1e{letter-spacing:0.880000pt;}
.ls27{letter-spacing:0.932373pt;}
.ls14{letter-spacing:1.013333pt;}
.ls25{letter-spacing:1.173333pt;}
.ls26{letter-spacing:1.173440pt;}
.ls3c{letter-spacing:1.226667pt;}
.ls33{letter-spacing:1.440000pt;}
.ls23{letter-spacing:1.578773pt;}
.ls2e{letter-spacing:1.813333pt;}
.ls3e{letter-spacing:2.080000pt;}
.wsae{word-spacing:-12.213333pt;}
.ws97{word-spacing:-11.946667pt;}
.ws4a{word-spacing:-11.616000pt;}
.ws98{word-spacing:-11.573333pt;}
.wsab{word-spacing:-11.093333pt;}
.ws6c{word-spacing:-11.088000pt;}
.ws96{word-spacing:-10.560000pt;}
.ws99{word-spacing:-10.293333pt;}
.wsac{word-spacing:-10.240000pt;}
.wsad{word-spacing:-9.600000pt;}
.ws80{word-spacing:-9.408000pt;}
.ws7f{word-spacing:-5.289600pt;}
.wsb2{word-spacing:-3.360000pt;}
.wsaf{word-spacing:-3.253333pt;}
.ws87{word-spacing:-3.050667pt;}
.wsbb{word-spacing:-2.986667pt;}
.ws7c{word-spacing:-2.933333pt;}
.ws95{word-spacing:-2.874667pt;}
.ws16{word-spacing:-2.816000pt;}
.ws3{word-spacing:-2.773333pt;}
.ws18{word-spacing:-2.757333pt;}
.ws62{word-spacing:-2.698667pt;}
.ws21{word-spacing:-2.640000pt;}
.ws42{word-spacing:-2.581333pt;}
.ws6{word-spacing:-2.560000pt;}
.ws41{word-spacing:-2.522667pt;}
.wsd{word-spacing:-2.506667pt;}
.ws2e{word-spacing:-2.464000pt;}
.ws2a{word-spacing:-2.405333pt;}
.ws70{word-spacing:-2.346667pt;}
.ws59{word-spacing:-2.288000pt;}
.wsa9{word-spacing:-2.240000pt;}
.ws7d{word-spacing:-2.229333pt;}
.wsba{word-spacing:-2.186667pt;}
.ws1a{word-spacing:-2.170667pt;}
.wsb9{word-spacing:-2.133333pt;}
.ws26{word-spacing:-2.112000pt;}
.ws20{word-spacing:-2.053333pt;}
.ws9b{word-spacing:-1.994667pt;}
.ws14{word-spacing:-1.941333pt;}
.ws36{word-spacing:-1.936000pt;}
.ws1f{word-spacing:-1.877333pt;}
.ws5f{word-spacing:-1.866667pt;}
.wsa3{word-spacing:-1.813333pt;}
.ws19{word-spacing:-1.760000pt;}
.ws5a{word-spacing:-1.701333pt;}
.ws82{word-spacing:-1.642667pt;}
.ws25{word-spacing:-1.584000pt;}
.ws7{word-spacing:-1.546667pt;}
.ws86{word-spacing:-1.466667pt;}
.wsb1{word-spacing:-1.440000pt;}
.ws33{word-spacing:-1.408000pt;}
.ws17{word-spacing:-1.349333pt;}
.ws1b{word-spacing:-1.290667pt;}
.wsf{word-spacing:-1.280000pt;}
.ws44{word-spacing:-1.232000pt;}
.ws15{word-spacing:-1.173333pt;}
.wsa7{word-spacing:-1.120000pt;}
.ws28{word-spacing:-1.114667pt;}
.ws50{word-spacing:-1.056000pt;}
.ws27{word-spacing:-0.997333pt;}
.ws5e{word-spacing:-0.960000pt;}
.ws7a{word-spacing:-0.938667pt;}
.ws3b{word-spacing:-0.880000pt;}
.ws67{word-spacing:-0.821333pt;}
.ws9c{word-spacing:-0.800000pt;}
.ws8c{word-spacing:-0.762667pt;}
.wsa4{word-spacing:-0.746667pt;}
.ws63{word-spacing:-0.704000pt;}
.wsa0{word-spacing:-0.693333pt;}
.ws9e{word-spacing:-0.640000pt;}
.ws35{word-spacing:-0.586667pt;}
.wsa2{word-spacing:-0.533333pt;}
.ws1c{word-spacing:-0.528000pt;}
.wsb3{word-spacing:-0.480000pt;}
.ws34{word-spacing:-0.469333pt;}
.ws9d{word-spacing:-0.426667pt;}
.ws4f{word-spacing:-0.410667pt;}
.ws2b{word-spacing:-0.352000pt;}
.wsb{word-spacing:-0.320000pt;}
.ws4e{word-spacing:-0.293333pt;}
.ws66{word-spacing:-0.288000pt;}
.ws94{word-spacing:-0.240000pt;}
.ws49{word-spacing:-0.234667pt;}
.ws48{word-spacing:-0.176000pt;}
.ws89{word-spacing:-0.144000pt;}
.ws53{word-spacing:-0.117333pt;}
.ws2{word-spacing:-0.106667pt;}
.ws1{word-spacing:-0.064000pt;}
.ws4b{word-spacing:-0.058667pt;}
.wsaa{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.wsbf{word-spacing:0.053333pt;}
.ws58{word-spacing:0.058667pt;}
.ws2c{word-spacing:0.117333pt;}
.wsc2{word-spacing:0.160000pt;}
.ws40{word-spacing:0.176000pt;}
.ws8f{word-spacing:0.234667pt;}
.ws6e{word-spacing:0.293333pt;}
.ws8e{word-spacing:0.352000pt;}
.wsa8{word-spacing:0.373333pt;}
.ws12{word-spacing:0.410667pt;}
.ws8b{word-spacing:0.469333pt;}
.ws37{word-spacing:0.528000pt;}
.ws60{word-spacing:0.586667pt;}
.ws22{word-spacing:0.645333pt;}
.ws5c{word-spacing:0.672000pt;}
.ws78{word-spacing:0.704000pt;}
.wsa{word-spacing:0.746667pt;}
.ws10{word-spacing:0.762667pt;}
.ws8{word-spacing:0.800000pt;}
.ws3a{word-spacing:0.821333pt;}
.ws30{word-spacing:0.880000pt;}
.ws3e{word-spacing:0.938667pt;}
.ws6f{word-spacing:0.997333pt;}
.wsbd{word-spacing:1.066667pt;}
.ws2f{word-spacing:1.114667pt;}
.wsbe{word-spacing:1.120000pt;}
.ws90{word-spacing:1.173333pt;}
.ws51{word-spacing:1.232000pt;}
.wsb7{word-spacing:1.280000pt;}
.ws68{word-spacing:1.290667pt;}
.ws65{word-spacing:1.349333pt;}
.ws32{word-spacing:1.408000pt;}
.ws2d{word-spacing:1.466667pt;}
.ws23{word-spacing:1.525333pt;}
.ws9{word-spacing:1.546667pt;}
.ws61{word-spacing:1.584000pt;}
.wsc0{word-spacing:1.600000pt;}
.ws38{word-spacing:1.642667pt;}
.ws64{word-spacing:1.701333pt;}
.ws77{word-spacing:1.760000pt;}
.wsb4{word-spacing:1.813333pt;}
.ws6b{word-spacing:1.818667pt;}
.wsb5{word-spacing:1.866667pt;}
.ws79{word-spacing:1.877333pt;}
.ws1d{word-spacing:1.936000pt;}
.ws69{word-spacing:1.994667pt;}
.ws1e{word-spacing:2.053333pt;}
.ws6a{word-spacing:2.229333pt;}
.ws6d{word-spacing:2.288000pt;}
.ws46{word-spacing:2.346667pt;}
.ws13{word-spacing:2.352000pt;}
.wsb0{word-spacing:2.400000pt;}
.ws76{word-spacing:2.405333pt;}
.ws9f{word-spacing:2.453333pt;}
.ws4c{word-spacing:2.464000pt;}
.ws3f{word-spacing:2.522667pt;}
.ws47{word-spacing:2.581333pt;}
.wsb8{word-spacing:2.613333pt;}
.ws43{word-spacing:2.640000pt;}
.ws57{word-spacing:2.698667pt;}
.ws7e{word-spacing:2.757333pt;}
.ws75{word-spacing:2.816000pt;}
.ws24{word-spacing:2.874667pt;}
.ws74{word-spacing:2.933333pt;}
.ws73{word-spacing:2.992000pt;}
.wsa1{word-spacing:3.040000pt;}
.ws54{word-spacing:3.050667pt;}
.ws5b{word-spacing:3.109333pt;}
.ws88{word-spacing:3.120000pt;}
.ws81{word-spacing:3.168000pt;}
.wsc1{word-spacing:3.200000pt;}
.ws71{word-spacing:3.226667pt;}
.ws9a{word-spacing:3.285333pt;}
.ws52{word-spacing:3.344000pt;}
.wsbc{word-spacing:3.360000pt;}
.ws45{word-spacing:3.402667pt;}
.ws8d{word-spacing:3.461333pt;}
.wsc{word-spacing:3.466667pt;}
.ws39{word-spacing:3.637333pt;}
.wse{word-spacing:3.680000pt;}
.ws3c{word-spacing:3.813333pt;}
.ws29{word-spacing:3.872000pt;}
.ws8a{word-spacing:3.989333pt;}
.ws85{word-spacing:4.165333pt;}
.wsa6{word-spacing:4.213333pt;}
.ws84{word-spacing:4.341333pt;}
.ws56{word-spacing:4.400000pt;}
.ws4{word-spacing:4.426667pt;}
.wsb6{word-spacing:4.480000pt;}
.ws31{word-spacing:4.517333pt;}
.ws83{word-spacing:4.576000pt;}
.ws5{word-spacing:4.586667pt;}
.ws4d{word-spacing:4.634667pt;}
.ws55{word-spacing:4.693333pt;}
.ws72{word-spacing:5.045333pt;}
.ws5d{word-spacing:5.066667pt;}
.ws7b{word-spacing:5.104000pt;}
.wsa5{word-spacing:5.120000pt;}
.ws3d{word-spacing:5.221333pt;}
.ws11{word-spacing:5.573333pt;}
.ws93{word-spacing:7.392000pt;}
.ws92{word-spacing:7.536000pt;}
.ws91{word-spacing:14.112000pt;}
._9{margin-left:-6.748800pt;}
._7{margin-left:-5.104000pt;}
._6{margin-left:-4.173227pt;}
._2{margin-left:-3.232320pt;}
._4{margin-left:-2.003413pt;}
._0{margin-left:-1.008000pt;}
._1{width:1.485120pt;}
._3{width:2.392960pt;}
._5{width:3.297280pt;}
._8{width:4.199573pt;}
._c{width:5.242027pt;}
._d{width:6.331733pt;}
._b{width:34.991893pt;}
._a{width:38.111893pt;}
.fs8{font-size:27.840000pt;}
.fs7{font-size:34.026667pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:67.200000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:63.007867pt;}
.y1f{bottom:88.810000pt;}
.yd8{bottom:88.821733pt;}
.y4e{bottom:91.036800pt;}
.y72{bottom:91.933333pt;}
.y101{bottom:91.944000pt;}
.yaf{bottom:91.956000pt;}
.ye5{bottom:92.779067pt;}
.y1e{bottom:99.478000pt;}
.y9c{bottom:100.865333pt;}
.yd7{bottom:102.153733pt;}
.ye4{bottom:104.046267pt;}
.y4d{bottom:107.038133pt;}
.y71{bottom:107.934667pt;}
.y100{bottom:107.945333pt;}
.yae{bottom:107.957333pt;}
.y11a{bottom:107.978667pt;}
.y1d{bottom:110.146000pt;}
.y9b{bottom:116.866667pt;}
.ye3{bottom:117.378267pt;}
.yd6{bottom:119.445733pt;}
.y1c{bottom:120.814000pt;}
.y119{bottom:122.645333pt;}
.y4c{bottom:123.039467pt;}
.y70{bottom:123.936000pt;}
.yff{bottom:123.946667pt;}
.yad{bottom:123.958667pt;}
.ye2{bottom:130.710267pt;}
.y9a{bottom:132.868000pt;}
.yd5{bottom:134.668933pt;}
.y1b{bottom:135.262000pt;}
.y118{bottom:137.312000pt;}
.y4b{bottom:139.040800pt;}
.y6f{bottom:139.937333pt;}
.yfe{bottom:139.948000pt;}
.yac{bottom:139.960000pt;}
.y1a{bottom:145.930000pt;}
.ye1{bottom:148.002267pt;}
.y99{bottom:148.869333pt;}
.y117{bottom:151.978667pt;}
.y4a{bottom:155.042133pt;}
.y6e{bottom:155.938667pt;}
.yfd{bottom:155.949333pt;}
.yab{bottom:155.961333pt;}
.y19{bottom:160.378000pt;}
.y98{bottom:164.870667pt;}
.y145{bottom:165.332800pt;}
.y116{bottom:166.645333pt;}
.y49{bottom:171.043467pt;}
.y6d{bottom:171.940000pt;}
.yfc{bottom:171.950667pt;}
.yaa{bottom:171.962667pt;}
.y144{bottom:179.999467pt;}
.y97{bottom:180.872000pt;}
.y115{bottom:181.312000pt;}
.y48{bottom:187.044800pt;}
.yd4{bottom:187.087467pt;}
.y6c{bottom:187.941333pt;}
.yfb{bottom:187.952000pt;}
.ya9{bottom:187.964000pt;}
.y143{bottom:194.666133pt;}
.y114{bottom:195.978667pt;}
.y96{bottom:196.873333pt;}
.y47{bottom:203.046133pt;}
.ye0{bottom:203.084800pt;}
.yd3{bottom:203.088800pt;}
.y6b{bottom:203.942667pt;}
.yfa{bottom:203.953333pt;}
.ya8{bottom:203.965333pt;}
.y18{bottom:205.959600pt;}
.y142{bottom:209.332800pt;}
.y113{bottom:210.645333pt;}
.y95{bottom:212.874667pt;}
.y46{bottom:219.047467pt;}
.ydf{bottom:219.086133pt;}
.yd2{bottom:219.090133pt;}
.y6a{bottom:219.944000pt;}
.yf9{bottom:219.954667pt;}
.ya7{bottom:219.966667pt;}
.y17{bottom:221.960933pt;}
.y141{bottom:223.999467pt;}
.y112{bottom:225.312000pt;}
.y94{bottom:228.876000pt;}
.y45{bottom:235.048800pt;}
.yde{bottom:235.087467pt;}
.yd1{bottom:235.091467pt;}
.y69{bottom:235.945333pt;}
.yf8{bottom:235.956000pt;}
.ya6{bottom:235.968000pt;}
.y16{bottom:237.962267pt;}
.y140{bottom:238.666133pt;}
.y111{bottom:239.978667pt;}
.y93{bottom:244.877333pt;}
.y44{bottom:251.050133pt;}
.ydd{bottom:251.088800pt;}
.yd0{bottom:251.092800pt;}
.y68{bottom:251.946667pt;}
.yf7{bottom:251.957333pt;}
.ya5{bottom:251.969333pt;}
.y13f{bottom:253.332800pt;}
.y110{bottom:254.645333pt;}
.y92{bottom:260.878667pt;}
.y15{bottom:261.963467pt;}
.y43{bottom:267.051467pt;}
.ydc{bottom:267.090133pt;}
.ycf{bottom:267.094133pt;}
.y67{bottom:267.948000pt;}
.yf6{bottom:267.958667pt;}
.ya4{bottom:267.970667pt;}
.y13e{bottom:267.999467pt;}
.y10f{bottom:269.312000pt;}
.y91{bottom:276.880000pt;}
.y14{bottom:277.963467pt;}
.y13d{bottom:282.666133pt;}
.y42{bottom:283.052800pt;}
.yce{bottom:283.054133pt;}
.ydb{bottom:283.091467pt;}
.y66{bottom:283.949333pt;}
.yf5{bottom:283.960000pt;}
.ya3{bottom:283.972000pt;}
.y10e{bottom:283.978667pt;}
.y90{bottom:292.881333pt;}
.y13{bottom:293.963467pt;}
.y13c{bottom:297.332800pt;}
.y10d{bottom:298.645333pt;}
.y41{bottom:299.054133pt;}
.ycd{bottom:299.055467pt;}
.yda{bottom:299.092800pt;}
.y65{bottom:299.950667pt;}
.yf4{bottom:299.961333pt;}
.ya2{bottom:299.973333pt;}
.y12{bottom:309.963467pt;}
.y13b{bottom:311.999467pt;}
.y10c{bottom:313.312000pt;}
.y40{bottom:315.055467pt;}
.ycc{bottom:315.056800pt;}
.yd9{bottom:315.094133pt;}
.y64{bottom:315.952000pt;}
.yf3{bottom:315.962667pt;}
.ya1{bottom:315.974667pt;}
.y8f{bottom:317.321067pt;}
.y11{bottom:325.963467pt;}
.y13a{bottom:326.666133pt;}
.y10b{bottom:327.978667pt;}
.y3f{bottom:331.056800pt;}
.ycb{bottom:331.058133pt;}
.y63{bottom:331.953333pt;}
.yf2{bottom:331.964000pt;}
.ya0{bottom:331.976000pt;}
.y139{bottom:341.332800pt;}
.y10{bottom:341.963467pt;}
.y10a{bottom:342.645333pt;}
.y3e{bottom:347.058133pt;}
.yca{bottom:347.059467pt;}
.y62{bottom:347.954667pt;}
.yf1{bottom:347.965333pt;}
.y9f{bottom:347.977333pt;}
.y8e{bottom:355.972933pt;}
.y138{bottom:355.999467pt;}
.y109{bottom:357.312000pt;}
.yf{bottom:357.963467pt;}
.y3d{bottom:363.059467pt;}
.yc9{bottom:363.060800pt;}
.y61{bottom:363.956000pt;}
.yf0{bottom:363.966667pt;}
.y9e{bottom:363.978667pt;}
.y137{bottom:370.666133pt;}
.y8d{bottom:371.974267pt;}
.y108{bottom:371.978667pt;}
.ye{bottom:373.963467pt;}
.y3c{bottom:379.060800pt;}
.yc8{bottom:379.062133pt;}
.y60{bottom:379.957333pt;}
.yef{bottom:379.968000pt;}
.y136{bottom:385.332800pt;}
.y107{bottom:386.645333pt;}
.y8c{bottom:387.975600pt;}
.y9d{bottom:388.418267pt;}
.yd{bottom:389.963467pt;}
.y3b{bottom:395.062133pt;}
.yc7{bottom:395.063467pt;}
.y5f{bottom:395.958667pt;}
.yee{bottom:395.969333pt;}
.y135{bottom:399.999467pt;}
.y106{bottom:401.312000pt;}
.y8b{bottom:403.976933pt;}
.yc{bottom:405.963467pt;}
.y3a{bottom:411.063467pt;}
.yc6{bottom:411.064800pt;}
.y5e{bottom:411.960000pt;}
.yed{bottom:411.970667pt;}
.y134{bottom:414.666133pt;}
.y105{bottom:415.978667pt;}
.y8a{bottom:419.978267pt;}
.yb{bottom:421.963467pt;}
.y39{bottom:427.064800pt;}
.yc5{bottom:427.066133pt;}
.y5d{bottom:427.961333pt;}
.yec{bottom:427.972000pt;}
.y133{bottom:429.332800pt;}
.y104{bottom:430.645333pt;}
.y89{bottom:435.979600pt;}
.ya{bottom:437.963467pt;}
.y38{bottom:443.066133pt;}
.yc4{bottom:443.067467pt;}
.y5c{bottom:443.962667pt;}
.yeb{bottom:443.973333pt;}
.y132{bottom:443.999467pt;}
.y103{bottom:445.312000pt;}
.y88{bottom:451.980933pt;}
.y9{bottom:453.963467pt;}
.y131{bottom:458.666133pt;}
.y37{bottom:459.067467pt;}
.yc3{bottom:459.068800pt;}
.y5b{bottom:459.964000pt;}
.yea{bottom:459.974667pt;}
.y87{bottom:467.982267pt;}
.y102{bottom:468.418267pt;}
.y8{bottom:469.963467pt;}
.y130{bottom:473.332800pt;}
.y36{bottom:475.068800pt;}
.yc2{bottom:475.070133pt;}
.y5a{bottom:475.965333pt;}
.ye9{bottom:475.976000pt;}
.y86{bottom:483.983600pt;}
.y7{bottom:485.963467pt;}
.y12f{bottom:487.999467pt;}
.y35{bottom:491.070133pt;}
.yc1{bottom:491.071467pt;}
.y59{bottom:491.966667pt;}
.ye8{bottom:491.977333pt;}
.y85{bottom:499.984933pt;}
.y6{bottom:501.963467pt;}
.y12e{bottom:502.666133pt;}
.y34{bottom:507.071467pt;}
.yc0{bottom:507.072800pt;}
.y58{bottom:507.968000pt;}
.ye7{bottom:507.978667pt;}
.y84{bottom:515.986267pt;}
.y12d{bottom:517.332800pt;}
.y5{bottom:517.963467pt;}
.y33{bottom:523.072800pt;}
.ybf{bottom:523.074133pt;}
.y57{bottom:523.969333pt;}
.y83{bottom:531.987600pt;}
.y12c{bottom:531.999467pt;}
.ye6{bottom:532.418267pt;}
.y32{bottom:539.074133pt;}
.ybe{bottom:539.075467pt;}
.y56{bottom:539.970667pt;}
.y12b{bottom:546.666133pt;}
.y82{bottom:547.988933pt;}
.y4{bottom:550.403200pt;}
.y31{bottom:555.075467pt;}
.ybd{bottom:555.076800pt;}
.y55{bottom:555.972000pt;}
.y12a{bottom:561.332800pt;}
.y81{bottom:563.990267pt;}
.y30{bottom:571.076800pt;}
.ybc{bottom:571.078133pt;}
.y54{bottom:571.973333pt;}
.y129{bottom:575.999467pt;}
.y80{bottom:579.991600pt;}
.y2f{bottom:587.078133pt;}
.ybb{bottom:587.079467pt;}
.y53{bottom:587.974667pt;}
.y128{bottom:590.666133pt;}
.y7f{bottom:595.992933pt;}
.y2e{bottom:603.079467pt;}
.yba{bottom:603.080800pt;}
.y52{bottom:603.976000pt;}
.y127{bottom:605.332800pt;}
.y7e{bottom:611.994267pt;}
.y2d{bottom:619.080800pt;}
.yb9{bottom:619.082133pt;}
.y51{bottom:619.977333pt;}
.y126{bottom:619.999467pt;}
.y7d{bottom:627.995600pt;}
.y125{bottom:634.666133pt;}
.y2c{bottom:635.082133pt;}
.yb8{bottom:635.083467pt;}
.y50{bottom:635.978667pt;}
.y7c{bottom:643.996933pt;}
.y124{bottom:649.332800pt;}
.y2b{bottom:651.083467pt;}
.yb7{bottom:651.084800pt;}
.y7b{bottom:659.998267pt;}
.y4f{bottom:660.418267pt;}
.y123{bottom:663.999467pt;}
.y2a{bottom:667.084800pt;}
.yb6{bottom:667.086133pt;}
.y122{bottom:678.666133pt;}
.y29{bottom:683.086133pt;}
.yb5{bottom:683.087467pt;}
.y7a{bottom:683.999467pt;}
.y121{bottom:693.332800pt;}
.y28{bottom:699.087467pt;}
.yb4{bottom:699.088800pt;}
.y79{bottom:699.999467pt;}
.y120{bottom:707.999467pt;}
.y27{bottom:715.088800pt;}
.yb3{bottom:715.090133pt;}
.y78{bottom:715.999467pt;}
.y11f{bottom:722.666133pt;}
.y26{bottom:731.090133pt;}
.yb2{bottom:731.091467pt;}
.y77{bottom:731.999467pt;}
.y11e{bottom:737.332800pt;}
.y3{bottom:742.413600pt;}
.y25{bottom:747.091467pt;}
.yb1{bottom:747.092800pt;}
.y76{bottom:747.999467pt;}
.y11d{bottom:751.999467pt;}
.y24{bottom:763.092800pt;}
.yb0{bottom:763.094133pt;}
.y75{bottom:763.999467pt;}
.y11c{bottom:766.666133pt;}
.y2{bottom:768.644933pt;}
.y23{bottom:779.094133pt;}
.y74{bottom:779.999467pt;}
.y11b{bottom:781.332800pt;}
.y1{bottom:791.039333pt;}
.y22{bottom:795.095467pt;}
.y73{bottom:795.999467pt;}
.y21{bottom:830.609600pt;}
.he{height:22.368000pt;}
.h8{height:27.197917pt;}
.h7{height:27.216146pt;}
.ha{height:29.472656pt;}
.hb{height:34.921875pt;}
.h4{height:35.367188pt;}
.hf{height:38.208000pt;}
.h9{height:39.296875pt;}
.h5{height:42.453333pt;}
.h6{height:46.698667pt;}
.hc{height:46.704000pt;}
.h11{height:46.741333pt;}
.h10{height:46.853333pt;}
.hd{height:46.864000pt;}
.h2{height:49.514062pt;}
.h3{height:50.944000pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x3{left:75.590533pt;}
.x6{left:90.711467pt;}
.x1{left:94.488133pt;}
.x7{left:109.609067pt;}
.x2{left:113.385867pt;}
.x5{left:246.807067pt;}
.x4{left:514.303200pt;}
}




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