
    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_3f5a49d9b9e7c07455078ef9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167000;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_f66beaaa11f4005e2e1bbe67.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.174000;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_f16b3f48cf1afe9143bf01d5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.168000;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_db7d3a175d0ff4620f7fe70c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.200900;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_0810b84cbdf3f0ef059fcba7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.184000;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_51842a1bab1875e64c6cdb08.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.143048;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_ea0504d6ca5f6de5484bb4de.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.181000;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_6448a59f019164bc3576168b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.160000;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_f58361eda1d37362141249be.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.196000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980600px;}
.ls16{letter-spacing:-4.200000px;}
.ls1e{letter-spacing:-2.100000px;}
.ls31{letter-spacing:-1.618200px;}
.ls37{letter-spacing:-1.296000px;}
.ls2a{letter-spacing:-1.260000px;}
.ls42{letter-spacing:-1.188000px;}
.ls3b{letter-spacing:-1.140000px;}
.ls32{letter-spacing:-0.840000px;}
.ls2b{letter-spacing:-0.780000px;}
.ls2e{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.714000px;}
.ls29{letter-spacing:-0.660000px;}
.ls18{letter-spacing:-0.600000px;}
.ls3f{letter-spacing:-0.594000px;}
.ls7{letter-spacing:-0.561000px;}
.ls17{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.510000px;}
.lse{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.300000px;}
.ls15{letter-spacing:-0.240000px;}
.ls1f{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.153000px;}
.lsc{letter-spacing:-0.120000px;}
.ls28{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.060000px;}
.ls3{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.030000px;}
.ls1b{letter-spacing:0.060000px;}
.ls11{letter-spacing:0.120000px;}
.ls38{letter-spacing:0.150000px;}
.ls12{letter-spacing:0.180000px;}
.ls34{letter-spacing:0.210000px;}
.ls0{letter-spacing:0.240000px;}
.ls35{letter-spacing:0.270000px;}
.lsf{letter-spacing:0.300000px;}
.ls4{letter-spacing:0.306000px;}
.ls1{letter-spacing:0.360000px;}
.ls44{letter-spacing:0.378000px;}
.ls23{letter-spacing:0.420000px;}
.ls1a{letter-spacing:0.450000px;}
.ls24{letter-spacing:0.480000px;}
.ls19{letter-spacing:0.540000px;}
.ls2{letter-spacing:0.600000px;}
.ls41{letter-spacing:0.660000px;}
.ls10{letter-spacing:0.720000px;}
.ls2d{letter-spacing:0.756000px;}
.ls3e{letter-spacing:0.780000px;}
.ls33{letter-spacing:0.840000px;}
.ls20{letter-spacing:0.900000px;}
.ls14{letter-spacing:0.918000px;}
.ls3c{letter-spacing:0.960000px;}
.ls8{letter-spacing:0.969000px;}
.ls3d{letter-spacing:0.990000px;}
.ls1c{letter-spacing:1.080000px;}
.ls2c{letter-spacing:1.140000px;}
.lsa{letter-spacing:1.200000px;}
.ls3a{letter-spacing:1.296000px;}
.ls21{letter-spacing:1.566000px;}
.ls27{letter-spacing:1.728000px;}
.ls25{letter-spacing:1.740000px;}
.ls1d{letter-spacing:1.782000px;}
.ls30{letter-spacing:1.890000px;}
.ls36{letter-spacing:1.980000px;}
.ls26{letter-spacing:2.004000px;}
.ls13{letter-spacing:2.214000px;}
.ls40{letter-spacing:2.340000px;}
.ls43{letter-spacing:2.754000px;}
.ls39{letter-spacing:4.152000px;}
.ls2f{letter-spacing:5.880000px;}
.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;}
}
.ws19{word-spacing:-15.012000px;}
.ws7e{word-spacing:-14.688000px;}
.ws60{word-spacing:-14.580000px;}
.ws3c{word-spacing:-14.526000px;}
.ws99{word-spacing:-14.094000px;}
.wsb7{word-spacing:-14.025000px;}
.ws2{word-spacing:-12.540000px;}
.ws1{word-spacing:-12.240000px;}
.ws73{word-spacing:-11.997000px;}
.ws2b{word-spacing:-11.730000px;}
.wsb6{word-spacing:-11.610000px;}
.ws0{word-spacing:-11.577000px;}
.ws8a{word-spacing:-11.520000px;}
.ws2c{word-spacing:-11.280000px;}
.ws1a{word-spacing:-11.040000px;}
.ws2a{word-spacing:-10.980000px;}
.wsb8{word-spacing:-10.965000px;}
.ws61{word-spacing:-10.920000px;}
.wsbd{word-spacing:-10.659000px;}
.ws9b{word-spacing:-8.901000px;}
.ws9a{word-spacing:-7.310820px;}
.ws5a{word-spacing:-4.740000px;}
.ws1f{word-spacing:-2.820000px;}
.ws18{word-spacing:-2.760000px;}
.ws17{word-spacing:-2.400000px;}
.wsb0{word-spacing:-2.340000px;}
.ws98{word-spacing:-2.100000px;}
.ws29{word-spacing:-2.040000px;}
.ws9f{word-spacing:-1.980000px;}
.ws1c{word-spacing:-1.920000px;}
.wsd{word-spacing:-1.860000px;}
.ws14{word-spacing:-1.800000px;}
.ws7c{word-spacing:-1.740000px;}
.wse{word-spacing:-1.680000px;}
.ws28{word-spacing:-1.620000px;}
.ws5{word-spacing:-1.581000px;}
.ws69{word-spacing:-1.560000px;}
.ws24{word-spacing:-1.500000px;}
.ws37{word-spacing:-1.440000px;}
.ws63{word-spacing:-1.380000px;}
.ws6{word-spacing:-1.377000px;}
.ws94{word-spacing:-1.320000px;}
.ws23{word-spacing:-1.260000px;}
.wsa{word-spacing:-1.200000px;}
.ws92{word-spacing:-1.140000px;}
.ws2d{word-spacing:-1.080000px;}
.ws6b{word-spacing:-1.020000px;}
.ws5f{word-spacing:-0.960000px;}
.ws43{word-spacing:-0.900000px;}
.ws3b{word-spacing:-0.840000px;}
.ws6e{word-spacing:-0.780000px;}
.ws68{word-spacing:-0.720000px;}
.wsbc{word-spacing:-0.714000px;}
.ws4{word-spacing:-0.663000px;}
.ws1e{word-spacing:-0.540000px;}
.ws11{word-spacing:-0.480000px;}
.ws15{word-spacing:-0.420000px;}
.ws6c{word-spacing:-0.360000px;}
.ws47{word-spacing:-0.300000px;}
.ws10{word-spacing:-0.240000px;}
.ws50{word-spacing:-0.223200px;}
.ws9{word-spacing:-0.204000px;}
.ws39{word-spacing:-0.180000px;}
.ws30{word-spacing:-0.120000px;}
.ws3a{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws26{word-spacing:0.060000px;}
.ws32{word-spacing:0.120000px;}
.ws5b{word-spacing:0.180000px;}
.wsa4{word-spacing:0.240000px;}
.ws64{word-spacing:0.300000px;}
.ws59{word-spacing:0.360000px;}
.ws4d{word-spacing:0.420000px;}
.ws79{word-spacing:0.480000px;}
.ws7{word-spacing:0.510000px;}
.wsa0{word-spacing:0.540000px;}
.ws5c{word-spacing:0.600000px;}
.ws93{word-spacing:0.660000px;}
.ws6d{word-spacing:0.720000px;}
.ws8{word-spacing:0.765000px;}
.ws45{word-spacing:0.840000px;}
.ws13{word-spacing:0.900000px;}
.ws65{word-spacing:0.960000px;}
.ws57{word-spacing:1.080000px;}
.ws4e{word-spacing:1.140000px;}
.ws5e{word-spacing:1.200000px;}
.ws7a{word-spacing:1.320000px;}
.ws16{word-spacing:1.440000px;}
.ws6a{word-spacing:1.500000px;}
.ws36{word-spacing:1.560000px;}
.ws2f{word-spacing:1.620000px;}
.ws22{word-spacing:1.680000px;}
.ws44{word-spacing:1.740000px;}
.wsb4{word-spacing:1.800000px;}
.wsf{word-spacing:1.860000px;}
.wsb{word-spacing:1.920000px;}
.ws20{word-spacing:1.980000px;}
.ws5d{word-spacing:2.040000px;}
.ws40{word-spacing:2.100000px;}
.ws46{word-spacing:2.160000px;}
.ws1d{word-spacing:2.220000px;}
.ws27{word-spacing:2.280000px;}
.ws38{word-spacing:2.340000px;}
.wsa1{word-spacing:2.400000px;}
.ws48{word-spacing:2.460000px;}
.ws6f{word-spacing:2.580000px;}
.ws4c{word-spacing:2.700000px;}
.wsa2{word-spacing:2.760000px;}
.wsb1{word-spacing:2.820000px;}
.wsc{word-spacing:2.880000px;}
.ws4b{word-spacing:2.940000px;}
.ws78{word-spacing:3.000000px;}
.ws51{word-spacing:3.120000px;}
.ws31{word-spacing:3.180000px;}
.ws95{word-spacing:3.240000px;}
.wsb2{word-spacing:3.300000px;}
.wsa7{word-spacing:3.360000px;}
.ws4a{word-spacing:3.420000px;}
.wsb5{word-spacing:3.480000px;}
.ws4f{word-spacing:3.540000px;}
.ws35{word-spacing:3.600000px;}
.ws9d{word-spacing:3.660000px;}
.ws89{word-spacing:3.720000px;}
.ws49{word-spacing:3.840000px;}
.wsbb{word-spacing:3.900000px;}
.wsa3{word-spacing:3.960000px;}
.ws9e{word-spacing:4.020000px;}
.ws25{word-spacing:4.200000px;}
.ws34{word-spacing:4.380000px;}
.ws88{word-spacing:4.560000px;}
.ws42{word-spacing:4.620000px;}
.ws12{word-spacing:4.800000px;}
.ws33{word-spacing:4.860000px;}
.wsba{word-spacing:5.340000px;}
.wsb3{word-spacing:5.640000px;}
.ws21{word-spacing:5.820000px;}
.wsaf{word-spacing:7.380000px;}
.ws41{word-spacing:7.440000px;}
.wsa5{word-spacing:9.120000px;}
.wsa6{word-spacing:10.800000px;}
.ws96{word-spacing:13.860000px;}
.ws87{word-spacing:13.920000px;}
.ws66{word-spacing:14.520000px;}
.ws7b{word-spacing:14.700000px;}
.ws52{word-spacing:20.700000px;}
.ws85{word-spacing:65.007000px;}
.ws77{word-spacing:89.100000px;}
.ws7d{word-spacing:89.520000px;}
.ws67{word-spacing:89.700000px;}
.ws58{word-spacing:90.120000px;}
.ws82{word-spacing:95.697000px;}
.ws83{word-spacing:96.924600px;}
.ws84{word-spacing:101.723400px;}
.ws91{word-spacing:106.500000px;}
.ws97{word-spacing:106.560000px;}
.ws8f{word-spacing:108.698400px;}
.ws81{word-spacing:109.926000px;}
.ws80{word-spacing:115.952400px;}
.ws8e{word-spacing:121.420800px;}
.ws74{word-spacing:124.266600px;}
.ws71{word-spacing:151.050600px;}
.ws72{word-spacing:151.664400px;}
.ws8c{word-spacing:151.887600px;}
.ws8d{word-spacing:153.561600px;}
.wsa9{word-spacing:178.839000px;}
.wsad{word-spacing:181.238400px;}
.ws53{word-spacing:189.162000px;}
.wsac{word-spacing:190.054800px;}
.wsaa{word-spacing:211.928400px;}
.wsab{word-spacing:242.618400px;}
.ws54{word-spacing:480.996000px;}
.ws3d{word-spacing:486.185400px;}
.ws55{word-spacing:512.913600px;}
.ws3e{word-spacing:593.935200px;}
.ws75{word-spacing:704.865600px;}
.ws70{word-spacing:726.460200px;}
.ws8b{word-spacing:825.951600px;}
.ws7f{word-spacing:937.998000px;}
.wsa8{word-spacing:972.649800px;}
.ws1b{word-spacing:1261.926000px;}
.ws86{word-spacing:1262.304000px;}
.ws62{word-spacing:1262.358000px;}
.ws3f{word-spacing:1262.466000px;}
.ws9c{word-spacing:1262.898000px;}
.wsb9{word-spacing:1265.382000px;}
.ws2e{word-spacing:1659.690000px;}
.ws76{word-spacing:1661.742000px;}
.wsbe{word-spacing:1662.498000px;}
.ws56{word-spacing:1663.470000px;}
.wsae{word-spacing:1664.442000px;}
.ws90{word-spacing:1665.846000px;}
._63{margin-left:-1265.178600px;}
._16{margin-left:-1262.317800px;}
._9{margin-left:-1261.169700px;}
._51{margin-left:-108.705900px;}
._45{margin-left:-85.845900px;}
._a{margin-left:-14.891400px;}
._e{margin-left:-13.200000px;}
._7{margin-left:-7.439100px;}
._13{margin-left:-6.363900px;}
._0{margin-left:-4.800000px;}
._5{margin-left:-3.434400px;}
._1{margin-left:-2.400000px;}
._4{margin-left:-1.094100px;}
._2{width:1.430400px;}
._6{width:2.580900px;}
._3{width:3.593100px;}
._8{width:5.016000px;}
._10{width:7.560000px;}
._11{width:8.640000px;}
._15{width:11.294100px;}
._12{width:14.760000px;}
._d{width:17.700000px;}
._b{width:22.560000px;}
._14{width:24.660000px;}
._5a{width:57.640800px;}
._50{width:83.030400px;}
._f{width:87.420000px;}
._c{width:89.760000px;}
._47{width:97.538400px;}
._48{width:100.886400px;}
._53{width:102.225600px;}
._54{width:110.707200px;}
._49{width:113.720400px;}
._4b{width:120.639600px;}
._34{width:123.094800px;}
._4d{width:125.494200px;}
._33{width:128.507400px;}
._36{width:131.576400px;}
._59{width:133.417800px;}
._56{width:136.989000px;}
._35{width:138.607200px;}
._4c{width:146.642400px;}
._43{width:150.994800px;}
._2d{width:158.472000px;}
._2f{width:164.442600px;}
._37{width:166.953600px;}
._3b{width:168.181200px;}
._23{width:169.241400px;}
._2e{width:170.469000px;}
._42{width:172.701000px;}
._4a{width:177.332400px;}
._38{width:182.577600px;}
._4e{width:185.702400px;}
._39{width:188.213400px;}
._5d{width:189.442200px;}
._3e{width:193.235400px;}
._24{width:195.132600px;}
._3d{width:197.643600px;}
._2a{width:199.931400px;}
._22{width:201.159000px;}
._26{width:202.386600px;}
._3f{width:208.524600px;}
._3c{width:213.267600px;}
._40{width:217.062000px;}
._55{width:223.591800px;}
._2b{width:225.822600px;}
._5c{width:230.599500px;}
._29{width:231.849000px;}
._27{width:237.819600px;}
._62{width:247.696200px;}
._5e{width:260.586000px;}
._5f{width:263.431800px;}
._57{width:278.610000px;}
._30{width:285.169800px;}
._3a{width:302.659200px;}
._20{width:339.040800px;}
._2c{width:340.556700px;}
._5b{width:385.075800px;}
._46{width:409.683600px;}
._1e{width:410.812200px;}
._18{width:428.544000px;}
._44{width:467.381400px;}
._52{width:482.893200px;}
._60{width:507.335400px;}
._31{width:514.309200px;}
._1a{width:528.872400px;}
._41{width:541.737000px;}
._21{width:544.285200px;}
._32{width:547.509600px;}
._25{width:564.640200px;}
._58{width:693.457200px;}
._1f{width:703.337100px;}
._61{width:754.170900px;}
._17{width:759.133800px;}
._4f{width:812.813400px;}
._19{width:877.566600px;}
._28{width:910.265400px;}
._1b{width:921.035400px;}
._1d{width:953.764200px;}
._1c{width:997.815600px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:34.980000px;}
.fs7{font-size:41.400000px;}
.fs2{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:55.800000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y8a{bottom:88.594200px;}
.y8b{bottom:90.567000px;}
.y23{bottom:91.318050px;}
.y75{bottom:91.318200px;}
.y22{bottom:109.768050px;}
.y74{bottom:109.768200px;}
.yaf{bottom:110.495550px;}
.ya3{bottom:110.508300px;}
.y89{bottom:112.107000px;}
.yae{bottom:127.746300px;}
.ya2{bottom:127.759050px;}
.y3a{bottom:128.218050px;}
.y73{bottom:128.218200px;}
.y88{bottom:132.278700px;}
.yad{bottom:144.997050px;}
.ya1{bottom:145.009800px;}
.y21{bottom:146.668050px;}
.y72{bottom:146.668200px;}
.y87{bottom:152.450400px;}
.yac{bottom:162.247800px;}
.ya0{bottom:162.260550px;}
.y20{bottom:165.118050px;}
.y71{bottom:165.118200px;}
.y86{bottom:170.571450px;}
.yab{bottom:179.498550px;}
.y9f{bottom:179.511300px;}
.y39{bottom:183.568050px;}
.y70{bottom:183.568200px;}
.y85{bottom:187.074300px;}
.yaa{bottom:196.749300px;}
.y9e{bottom:196.762050px;}
.y38{bottom:202.018050px;}
.y6f{bottom:202.018200px;}
.y84{bottom:207.246000px;}
.ya9{bottom:214.000050px;}
.y9d{bottom:214.012800px;}
.y4a{bottom:220.233300px;}
.y1f{bottom:220.468050px;}
.y96{bottom:220.468200px;}
.ya8{bottom:231.250800px;}
.y9c{bottom:231.263550px;}
.y1e{bottom:238.918050px;}
.y6e{bottom:238.918200px;}
.y49{bottom:242.140500px;}
.ya7{bottom:248.501550px;}
.y9b{bottom:248.514300px;}
.y42{bottom:256.161600px;}
.y1d{bottom:257.368050px;}
.y6d{bottom:257.368200px;}
.y48{bottom:260.889300px;}
.ya6{bottom:265.752300px;}
.y9a{bottom:265.765050px;}
.y1c{bottom:275.818050px;}
.y6c{bottom:275.818200px;}
.y41{bottom:278.010750px;}
.y47{bottom:279.638100px;}
.ya5{bottom:283.003050px;}
.y99{bottom:283.015800px;}
.y1b{bottom:294.268050px;}
.y6b{bottom:294.268200px;}
.y40{bottom:296.982750px;}
.y46{bottom:298.386900px;}
.ya4{bottom:300.253800px;}
.y98{bottom:300.266550px;}
.y1a{bottom:312.718050px;}
.y6a{bottom:312.718200px;}
.y3f{bottom:315.954750px;}
.y45{bottom:317.135700px;}
.y19{bottom:331.168050px;}
.y69{bottom:331.168200px;}
.y97{bottom:334.768050px;}
.y3e{bottom:334.926750px;}
.y44{bottom:335.884500px;}
.y18{bottom:349.618050px;}
.y68{bottom:349.618200px;}
.y3d{bottom:353.898750px;}
.y43{bottom:354.633300px;}
.y17{bottom:368.068050px;}
.y67{bottom:368.068200px;}
.y83{bottom:372.778050px;}
.y3c{bottom:372.870750px;}
.y16{bottom:386.518050px;}
.y66{bottom:386.518200px;}
.y82{bottom:397.304850px;}
.y15{bottom:404.968050px;}
.y65{bottom:404.968200px;}
.y81{bottom:416.262900px;}
.y14{bottom:423.418050px;}
.y95{bottom:423.418200px;}
.y80{bottom:432.765750px;}
.y13{bottom:441.868050px;}
.y64{bottom:441.868200px;}
.y7f{bottom:451.723800px;}
.y12{bottom:460.318050px;}
.y63{bottom:460.318200px;}
.y7e{bottom:468.226650px;}
.y11{bottom:478.768050px;}
.y62{bottom:478.768200px;}
.y7d{bottom:487.184700px;}
.y10{bottom:497.218050px;}
.y61{bottom:497.218200px;}
.y7c{bottom:503.687550px;}
.yf{bottom:515.668050px;}
.y60{bottom:515.668200px;}
.y94{bottom:518.543850px;}
.y7b{bottom:520.190400px;}
.y37{bottom:534.118050px;}
.y5f{bottom:534.118200px;}
.y7a{bottom:539.148450px;}
.y93{bottom:540.450300px;}
.ye{bottom:552.568050px;}
.y5e{bottom:552.568200px;}
.y79{bottom:555.651300px;}
.y92{bottom:556.953150px;}
.y36{bottom:571.018050px;}
.y5d{bottom:571.018200px;}
.y78{bottom:574.623300px;}
.y91{bottom:578.547750px;}
.y35{bottom:589.468050px;}
.y5c{bottom:589.468200px;}
.y77{bottom:591.126150px;}
.yd{bottom:595.546200px;}
.y90{bottom:600.142350px;}
.y3b{bottom:607.918050px;}
.y76{bottom:612.720750px;}
.yc{bottom:612.796950px;}
.y8f{bottom:621.736950px;}
.y34{bottom:626.368050px;}
.yb{bottom:630.047700px;}
.y8e{bottom:643.331550px;}
.y5b{bottom:643.825650px;}
.y33{bottom:644.818050px;}
.y32{bottom:663.268050px;}
.ya{bottom:664.549200px;}
.y8d{bottom:664.926150px;}
.y5a{bottom:665.716650px;}
.y31{bottom:681.718050px;}
.y9{bottom:681.799950px;}
.y59{bottom:684.688650px;}
.y8c{bottom:686.520750px;}
.y8{bottom:699.050700px;}
.y30{bottom:700.168050px;}
.y58{bottom:703.646700px;}
.yb9{bottom:715.702800px;}
.y7{bottom:716.301450px;}
.y2f{bottom:718.618050px;}
.y57{bottom:720.149550px;}
.yb8{bottom:732.953550px;}
.y6{bottom:733.552200px;}
.y2e{bottom:737.068050px;}
.y56{bottom:739.107600px;}
.yb7{bottom:750.204300px;}
.y5{bottom:750.802950px;}
.y2d{bottom:755.518050px;}
.y55{bottom:755.610450px;}
.yb6{bottom:767.455050px;}
.y4{bottom:768.053700px;}
.y2c{bottom:773.968050px;}
.y53{bottom:774.568500px;}
.y52{bottom:791.071200px;}
.y54{bottom:791.071350px;}
.y2b{bottom:792.418050px;}
.y51{bottom:810.043200px;}
.y2a{bottom:810.868050px;}
.yb5{bottom:819.207300px;}
.y3{bottom:819.803700px;}
.y4f{bottom:829.001250px;}
.y29{bottom:829.318050px;}
.yb4{bottom:836.458050px;}
.y4e{bottom:845.487300px;}
.y50{bottom:845.504100px;}
.y28{bottom:847.768050px;}
.yb3{bottom:853.708800px;}
.y4d{bottom:864.459300px;}
.y27{bottom:866.218050px;}
.y2{bottom:870.815700px;}
.yb2{bottom:870.959550px;}
.y4c{bottom:880.962150px;}
.y26{bottom:884.668050px;}
.yb1{bottom:888.210300px;}
.y1{bottom:896.303700px;}
.y4b{bottom:899.934150px;}
.y25{bottom:903.118050px;}
.yb0{bottom:905.461050px;}
.y24{bottom:955.942350px;}
.h12{height:45.543000px;}
.h11{height:45.696000px;}
.h5{height:46.002000px;}
.hd{height:46.563000px;}
.h13{height:46.614000px;}
.h4{height:48.195000px;}
.hc{height:49.996800px;}
.hf{height:50.052600px;}
.h8{height:50.868000px;}
.hb{height:50.945400px;}
.ha{height:53.880000px;}
.h7{height:54.120000px;}
.h10{height:54.120600px;}
.h9{height:54.840000px;}
.he{height:56.520000px;}
.h6{height:56.700000px;}
.h3{height:67.824000px;}
.h2{height:90.720000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x3{left:72.283500px;}
.x1{left:80.787450px;}
.x1d{left:85.033500px;}
.x4{left:93.538500px;}
.x2{left:102.042450px;}
.x8{left:119.053500px;}
.x15{left:123.298500px;}
.x7{left:127.557450px;}
.x16{left:131.822250px;}
.x5{left:134.173500px;}
.x6{left:135.628500px;}
.x9{left:235.465050px;}
.xd{left:253.446450px;}
.xe{left:261.118950px;}
.x17{left:281.248800px;}
.xf{left:301.914450px;}
.x13{left:305.039250px;}
.x14{left:312.711750px;}
.x1b{left:323.684850px;}
.x1c{left:338.137050px;}
.x1e{left:353.433750px;}
.x20{left:361.918050px;}
.x1f{left:366.183750px;}
.xa{left:370.180200px;}
.x21{left:374.668050px;}
.x18{left:387.254850px;}
.x10{left:397.764900px;}
.xb{left:433.708500px;}
.x19{left:463.352100px;}
.x11{left:466.998750px;}
.x12{left:562.179600px;}
.x1a{left:571.897050px;}
.xc{left:573.069000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760533pt;}
.ls16{letter-spacing:-3.733333pt;}
.ls1e{letter-spacing:-1.866667pt;}
.ls31{letter-spacing:-1.438400pt;}
.ls37{letter-spacing:-1.152000pt;}
.ls2a{letter-spacing:-1.120000pt;}
.ls42{letter-spacing:-1.056000pt;}
.ls3b{letter-spacing:-1.013333pt;}
.ls32{letter-spacing:-0.746667pt;}
.ls2b{letter-spacing:-0.693333pt;}
.ls2e{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.634667pt;}
.ls29{letter-spacing:-0.586667pt;}
.ls18{letter-spacing:-0.533333pt;}
.ls3f{letter-spacing:-0.528000pt;}
.ls7{letter-spacing:-0.498667pt;}
.ls17{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.453333pt;}
.lse{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.266667pt;}
.ls15{letter-spacing:-0.213333pt;}
.ls1f{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.136000pt;}
.lsc{letter-spacing:-0.106667pt;}
.ls28{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.053333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.026667pt;}
.ls1b{letter-spacing:0.053333pt;}
.ls11{letter-spacing:0.106667pt;}
.ls38{letter-spacing:0.133333pt;}
.ls12{letter-spacing:0.160000pt;}
.ls34{letter-spacing:0.186667pt;}
.ls0{letter-spacing:0.213333pt;}
.ls35{letter-spacing:0.240000pt;}
.lsf{letter-spacing:0.266667pt;}
.ls4{letter-spacing:0.272000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls44{letter-spacing:0.336000pt;}
.ls23{letter-spacing:0.373333pt;}
.ls1a{letter-spacing:0.400000pt;}
.ls24{letter-spacing:0.426667pt;}
.ls19{letter-spacing:0.480000pt;}
.ls2{letter-spacing:0.533333pt;}
.ls41{letter-spacing:0.586667pt;}
.ls10{letter-spacing:0.640000pt;}
.ls2d{letter-spacing:0.672000pt;}
.ls3e{letter-spacing:0.693333pt;}
.ls33{letter-spacing:0.746667pt;}
.ls20{letter-spacing:0.800000pt;}
.ls14{letter-spacing:0.816000pt;}
.ls3c{letter-spacing:0.853333pt;}
.ls8{letter-spacing:0.861333pt;}
.ls3d{letter-spacing:0.880000pt;}
.ls1c{letter-spacing:0.960000pt;}
.ls2c{letter-spacing:1.013333pt;}
.lsa{letter-spacing:1.066667pt;}
.ls3a{letter-spacing:1.152000pt;}
.ls21{letter-spacing:1.392000pt;}
.ls27{letter-spacing:1.536000pt;}
.ls25{letter-spacing:1.546667pt;}
.ls1d{letter-spacing:1.584000pt;}
.ls30{letter-spacing:1.680000pt;}
.ls36{letter-spacing:1.760000pt;}
.ls26{letter-spacing:1.781333pt;}
.ls13{letter-spacing:1.968000pt;}
.ls40{letter-spacing:2.080000pt;}
.ls43{letter-spacing:2.448000pt;}
.ls39{letter-spacing:3.690667pt;}
.ls2f{letter-spacing:5.226667pt;}
.ws19{word-spacing:-13.344000pt;}
.ws7e{word-spacing:-13.056000pt;}
.ws60{word-spacing:-12.960000pt;}
.ws3c{word-spacing:-12.912000pt;}
.ws99{word-spacing:-12.528000pt;}
.wsb7{word-spacing:-12.466667pt;}
.ws2{word-spacing:-11.146667pt;}
.ws1{word-spacing:-10.880000pt;}
.ws73{word-spacing:-10.664000pt;}
.ws2b{word-spacing:-10.426667pt;}
.wsb6{word-spacing:-10.320000pt;}
.ws0{word-spacing:-10.290667pt;}
.ws8a{word-spacing:-10.240000pt;}
.ws2c{word-spacing:-10.026667pt;}
.ws1a{word-spacing:-9.813333pt;}
.ws2a{word-spacing:-9.760000pt;}
.wsb8{word-spacing:-9.746667pt;}
.ws61{word-spacing:-9.706667pt;}
.wsbd{word-spacing:-9.474667pt;}
.ws9b{word-spacing:-7.912000pt;}
.ws9a{word-spacing:-6.498507pt;}
.ws5a{word-spacing:-4.213333pt;}
.ws1f{word-spacing:-2.506667pt;}
.ws18{word-spacing:-2.453333pt;}
.ws17{word-spacing:-2.133333pt;}
.wsb0{word-spacing:-2.080000pt;}
.ws98{word-spacing:-1.866667pt;}
.ws29{word-spacing:-1.813333pt;}
.ws9f{word-spacing:-1.760000pt;}
.ws1c{word-spacing:-1.706667pt;}
.wsd{word-spacing:-1.653333pt;}
.ws14{word-spacing:-1.600000pt;}
.ws7c{word-spacing:-1.546667pt;}
.wse{word-spacing:-1.493333pt;}
.ws28{word-spacing:-1.440000pt;}
.ws5{word-spacing:-1.405333pt;}
.ws69{word-spacing:-1.386667pt;}
.ws24{word-spacing:-1.333333pt;}
.ws37{word-spacing:-1.280000pt;}
.ws63{word-spacing:-1.226667pt;}
.ws6{word-spacing:-1.224000pt;}
.ws94{word-spacing:-1.173333pt;}
.ws23{word-spacing:-1.120000pt;}
.wsa{word-spacing:-1.066667pt;}
.ws92{word-spacing:-1.013333pt;}
.ws2d{word-spacing:-0.960000pt;}
.ws6b{word-spacing:-0.906667pt;}
.ws5f{word-spacing:-0.853333pt;}
.ws43{word-spacing:-0.800000pt;}
.ws3b{word-spacing:-0.746667pt;}
.ws6e{word-spacing:-0.693333pt;}
.ws68{word-spacing:-0.640000pt;}
.wsbc{word-spacing:-0.634667pt;}
.ws4{word-spacing:-0.589333pt;}
.ws1e{word-spacing:-0.480000pt;}
.ws11{word-spacing:-0.426667pt;}
.ws15{word-spacing:-0.373333pt;}
.ws6c{word-spacing:-0.320000pt;}
.ws47{word-spacing:-0.266667pt;}
.ws10{word-spacing:-0.213333pt;}
.ws50{word-spacing:-0.198400pt;}
.ws9{word-spacing:-0.181333pt;}
.ws39{word-spacing:-0.160000pt;}
.ws30{word-spacing:-0.106667pt;}
.ws3a{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws26{word-spacing:0.053333pt;}
.ws32{word-spacing:0.106667pt;}
.ws5b{word-spacing:0.160000pt;}
.wsa4{word-spacing:0.213333pt;}
.ws64{word-spacing:0.266667pt;}
.ws59{word-spacing:0.320000pt;}
.ws4d{word-spacing:0.373333pt;}
.ws79{word-spacing:0.426667pt;}
.ws7{word-spacing:0.453333pt;}
.wsa0{word-spacing:0.480000pt;}
.ws5c{word-spacing:0.533333pt;}
.ws93{word-spacing:0.586667pt;}
.ws6d{word-spacing:0.640000pt;}
.ws8{word-spacing:0.680000pt;}
.ws45{word-spacing:0.746667pt;}
.ws13{word-spacing:0.800000pt;}
.ws65{word-spacing:0.853333pt;}
.ws57{word-spacing:0.960000pt;}
.ws4e{word-spacing:1.013333pt;}
.ws5e{word-spacing:1.066667pt;}
.ws7a{word-spacing:1.173333pt;}
.ws16{word-spacing:1.280000pt;}
.ws6a{word-spacing:1.333333pt;}
.ws36{word-spacing:1.386667pt;}
.ws2f{word-spacing:1.440000pt;}
.ws22{word-spacing:1.493333pt;}
.ws44{word-spacing:1.546667pt;}
.wsb4{word-spacing:1.600000pt;}
.wsf{word-spacing:1.653333pt;}
.wsb{word-spacing:1.706667pt;}
.ws20{word-spacing:1.760000pt;}
.ws5d{word-spacing:1.813333pt;}
.ws40{word-spacing:1.866667pt;}
.ws46{word-spacing:1.920000pt;}
.ws1d{word-spacing:1.973333pt;}
.ws27{word-spacing:2.026667pt;}
.ws38{word-spacing:2.080000pt;}
.wsa1{word-spacing:2.133333pt;}
.ws48{word-spacing:2.186667pt;}
.ws6f{word-spacing:2.293333pt;}
.ws4c{word-spacing:2.400000pt;}
.wsa2{word-spacing:2.453333pt;}
.wsb1{word-spacing:2.506667pt;}
.wsc{word-spacing:2.560000pt;}
.ws4b{word-spacing:2.613333pt;}
.ws78{word-spacing:2.666667pt;}
.ws51{word-spacing:2.773333pt;}
.ws31{word-spacing:2.826667pt;}
.ws95{word-spacing:2.880000pt;}
.wsb2{word-spacing:2.933333pt;}
.wsa7{word-spacing:2.986667pt;}
.ws4a{word-spacing:3.040000pt;}
.wsb5{word-spacing:3.093333pt;}
.ws4f{word-spacing:3.146667pt;}
.ws35{word-spacing:3.200000pt;}
.ws9d{word-spacing:3.253333pt;}
.ws89{word-spacing:3.306667pt;}
.ws49{word-spacing:3.413333pt;}
.wsbb{word-spacing:3.466667pt;}
.wsa3{word-spacing:3.520000pt;}
.ws9e{word-spacing:3.573333pt;}
.ws25{word-spacing:3.733333pt;}
.ws34{word-spacing:3.893333pt;}
.ws88{word-spacing:4.053333pt;}
.ws42{word-spacing:4.106667pt;}
.ws12{word-spacing:4.266667pt;}
.ws33{word-spacing:4.320000pt;}
.wsba{word-spacing:4.746667pt;}
.wsb3{word-spacing:5.013333pt;}
.ws21{word-spacing:5.173333pt;}
.wsaf{word-spacing:6.560000pt;}
.ws41{word-spacing:6.613333pt;}
.wsa5{word-spacing:8.106667pt;}
.wsa6{word-spacing:9.600000pt;}
.ws96{word-spacing:12.320000pt;}
.ws87{word-spacing:12.373333pt;}
.ws66{word-spacing:12.906667pt;}
.ws7b{word-spacing:13.066667pt;}
.ws52{word-spacing:18.400000pt;}
.ws85{word-spacing:57.784000pt;}
.ws77{word-spacing:79.200000pt;}
.ws7d{word-spacing:79.573333pt;}
.ws67{word-spacing:79.733333pt;}
.ws58{word-spacing:80.106667pt;}
.ws82{word-spacing:85.064000pt;}
.ws83{word-spacing:86.155200pt;}
.ws84{word-spacing:90.420800pt;}
.ws91{word-spacing:94.666667pt;}
.ws97{word-spacing:94.720000pt;}
.ws8f{word-spacing:96.620800pt;}
.ws81{word-spacing:97.712000pt;}
.ws80{word-spacing:103.068800pt;}
.ws8e{word-spacing:107.929600pt;}
.ws74{word-spacing:110.459200pt;}
.ws71{word-spacing:134.267200pt;}
.ws72{word-spacing:134.812800pt;}
.ws8c{word-spacing:135.011200pt;}
.ws8d{word-spacing:136.499200pt;}
.wsa9{word-spacing:158.968000pt;}
.wsad{word-spacing:161.100800pt;}
.ws53{word-spacing:168.144000pt;}
.wsac{word-spacing:168.937600pt;}
.wsaa{word-spacing:188.380800pt;}
.wsab{word-spacing:215.660800pt;}
.ws54{word-spacing:427.552000pt;}
.ws3d{word-spacing:432.164800pt;}
.ws55{word-spacing:455.923200pt;}
.ws3e{word-spacing:527.942400pt;}
.ws75{word-spacing:626.547200pt;}
.ws70{word-spacing:645.742400pt;}
.ws8b{word-spacing:734.179200pt;}
.ws7f{word-spacing:833.776000pt;}
.wsa8{word-spacing:864.577600pt;}
.ws1b{word-spacing:1121.712000pt;}
.ws86{word-spacing:1122.048000pt;}
.ws62{word-spacing:1122.096000pt;}
.ws3f{word-spacing:1122.192000pt;}
.ws9c{word-spacing:1122.576000pt;}
.wsb9{word-spacing:1124.784000pt;}
.ws2e{word-spacing:1475.280000pt;}
.ws76{word-spacing:1477.104000pt;}
.wsbe{word-spacing:1477.776000pt;}
.ws56{word-spacing:1478.640000pt;}
.wsae{word-spacing:1479.504000pt;}
.ws90{word-spacing:1480.752000pt;}
._63{margin-left:-1124.603200pt;}
._16{margin-left:-1122.060267pt;}
._9{margin-left:-1121.039733pt;}
._51{margin-left:-96.627467pt;}
._45{margin-left:-76.307467pt;}
._a{margin-left:-13.236800pt;}
._e{margin-left:-11.733333pt;}
._7{margin-left:-6.612533pt;}
._13{margin-left:-5.656800pt;}
._0{margin-left:-4.266667pt;}
._5{margin-left:-3.052800pt;}
._1{margin-left:-2.133333pt;}
._4{margin-left:-0.972533pt;}
._2{width:1.271467pt;}
._6{width:2.294133pt;}
._3{width:3.193867pt;}
._8{width:4.458667pt;}
._10{width:6.720000pt;}
._11{width:7.680000pt;}
._15{width:10.039200pt;}
._12{width:13.120000pt;}
._d{width:15.733333pt;}
._b{width:20.053333pt;}
._14{width:21.920000pt;}
._5a{width:51.236267pt;}
._50{width:73.804800pt;}
._f{width:77.706667pt;}
._c{width:79.786667pt;}
._47{width:86.700800pt;}
._48{width:89.676800pt;}
._53{width:90.867200pt;}
._54{width:98.406400pt;}
._49{width:101.084800pt;}
._4b{width:107.235200pt;}
._34{width:109.417600pt;}
._4d{width:111.550400pt;}
._33{width:114.228800pt;}
._36{width:116.956800pt;}
._59{width:118.593600pt;}
._56{width:121.768000pt;}
._35{width:123.206400pt;}
._4c{width:130.348800pt;}
._43{width:134.217600pt;}
._2d{width:140.864000pt;}
._2f{width:146.171200pt;}
._37{width:148.403200pt;}
._3b{width:149.494400pt;}
._23{width:150.436800pt;}
._2e{width:151.528000pt;}
._42{width:153.512000pt;}
._4a{width:157.628800pt;}
._38{width:162.291200pt;}
._4e{width:165.068800pt;}
._39{width:167.300800pt;}
._5d{width:168.393067pt;}
._3e{width:171.764800pt;}
._24{width:173.451200pt;}
._3d{width:175.683200pt;}
._2a{width:177.716800pt;}
._22{width:178.808000pt;}
._26{width:179.899200pt;}
._3f{width:185.355200pt;}
._3c{width:189.571200pt;}
._40{width:192.944000pt;}
._55{width:198.748267pt;}
._2b{width:200.731200pt;}
._5c{width:204.977333pt;}
._29{width:206.088000pt;}
._27{width:211.395200pt;}
._62{width:220.174400pt;}
._5e{width:231.632000pt;}
._5f{width:234.161600pt;}
._57{width:247.653333pt;}
._30{width:253.484267pt;}
._3a{width:269.030400pt;}
._20{width:301.369600pt;}
._2c{width:302.717067pt;}
._5b{width:342.289600pt;}
._46{width:364.163200pt;}
._1e{width:365.166400pt;}
._18{width:380.928000pt;}
._44{width:415.450133pt;}
._52{width:429.238400pt;}
._60{width:450.964800pt;}
._31{width:457.163733pt;}
._1a{width:470.108800pt;}
._41{width:481.544000pt;}
._21{width:483.809067pt;}
._32{width:486.675200pt;}
._25{width:501.902400pt;}
._58{width:616.406400pt;}
._1f{width:625.188533pt;}
._61{width:670.374133pt;}
._17{width:674.785600pt;}
._4f{width:722.500800pt;}
._19{width:780.059200pt;}
._28{width:809.124800pt;}
._1b{width:818.698133pt;}
._1d{width:847.790400pt;}
._1c{width:886.947200pt;}
.fs6{font-size:31.093333pt;}
.fs7{font-size:36.800000pt;}
.fs2{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:49.600000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y8a{bottom:78.750400pt;}
.y8b{bottom:80.504000pt;}
.y23{bottom:81.171600pt;}
.y75{bottom:81.171733pt;}
.y22{bottom:97.571600pt;}
.y74{bottom:97.571733pt;}
.yaf{bottom:98.218267pt;}
.ya3{bottom:98.229600pt;}
.y89{bottom:99.650667pt;}
.yae{bottom:113.552267pt;}
.ya2{bottom:113.563600pt;}
.y3a{bottom:113.971600pt;}
.y73{bottom:113.971733pt;}
.y88{bottom:117.581067pt;}
.yad{bottom:128.886267pt;}
.ya1{bottom:128.897600pt;}
.y21{bottom:130.371600pt;}
.y72{bottom:130.371733pt;}
.y87{bottom:135.511467pt;}
.yac{bottom:144.220267pt;}
.ya0{bottom:144.231600pt;}
.y20{bottom:146.771600pt;}
.y71{bottom:146.771733pt;}
.y86{bottom:151.619067pt;}
.yab{bottom:159.554267pt;}
.y9f{bottom:159.565600pt;}
.y39{bottom:163.171600pt;}
.y70{bottom:163.171733pt;}
.y85{bottom:166.288267pt;}
.yaa{bottom:174.888267pt;}
.y9e{bottom:174.899600pt;}
.y38{bottom:179.571600pt;}
.y6f{bottom:179.571733pt;}
.y84{bottom:184.218667pt;}
.ya9{bottom:190.222267pt;}
.y9d{bottom:190.233600pt;}
.y4a{bottom:195.762933pt;}
.y1f{bottom:195.971600pt;}
.y96{bottom:195.971733pt;}
.ya8{bottom:205.556267pt;}
.y9c{bottom:205.567600pt;}
.y1e{bottom:212.371600pt;}
.y6e{bottom:212.371733pt;}
.y49{bottom:215.236000pt;}
.ya7{bottom:220.890267pt;}
.y9b{bottom:220.901600pt;}
.y42{bottom:227.699200pt;}
.y1d{bottom:228.771600pt;}
.y6d{bottom:228.771733pt;}
.y48{bottom:231.901600pt;}
.ya6{bottom:236.224267pt;}
.y9a{bottom:236.235600pt;}
.y1c{bottom:245.171600pt;}
.y6c{bottom:245.171733pt;}
.y41{bottom:247.120667pt;}
.y47{bottom:248.567200pt;}
.ya5{bottom:251.558267pt;}
.y99{bottom:251.569600pt;}
.y1b{bottom:261.571600pt;}
.y6b{bottom:261.571733pt;}
.y40{bottom:263.984667pt;}
.y46{bottom:265.232800pt;}
.ya4{bottom:266.892267pt;}
.y98{bottom:266.903600pt;}
.y1a{bottom:277.971600pt;}
.y6a{bottom:277.971733pt;}
.y3f{bottom:280.848667pt;}
.y45{bottom:281.898400pt;}
.y19{bottom:294.371600pt;}
.y69{bottom:294.371733pt;}
.y97{bottom:297.571600pt;}
.y3e{bottom:297.712667pt;}
.y44{bottom:298.564000pt;}
.y18{bottom:310.771600pt;}
.y68{bottom:310.771733pt;}
.y3d{bottom:314.576667pt;}
.y43{bottom:315.229600pt;}
.y17{bottom:327.171600pt;}
.y67{bottom:327.171733pt;}
.y83{bottom:331.358267pt;}
.y3c{bottom:331.440667pt;}
.y16{bottom:343.571600pt;}
.y66{bottom:343.571733pt;}
.y82{bottom:353.159867pt;}
.y15{bottom:359.971600pt;}
.y65{bottom:359.971733pt;}
.y81{bottom:370.011467pt;}
.y14{bottom:376.371600pt;}
.y95{bottom:376.371733pt;}
.y80{bottom:384.680667pt;}
.y13{bottom:392.771600pt;}
.y64{bottom:392.771733pt;}
.y7f{bottom:401.532267pt;}
.y12{bottom:409.171600pt;}
.y63{bottom:409.171733pt;}
.y7e{bottom:416.201467pt;}
.y11{bottom:425.571600pt;}
.y62{bottom:425.571733pt;}
.y7d{bottom:433.053067pt;}
.y10{bottom:441.971600pt;}
.y61{bottom:441.971733pt;}
.y7c{bottom:447.722267pt;}
.yf{bottom:458.371600pt;}
.y60{bottom:458.371733pt;}
.y94{bottom:460.927867pt;}
.y7b{bottom:462.391467pt;}
.y37{bottom:474.771600pt;}
.y5f{bottom:474.771733pt;}
.y7a{bottom:479.243067pt;}
.y93{bottom:480.400267pt;}
.ye{bottom:491.171600pt;}
.y5e{bottom:491.171733pt;}
.y79{bottom:493.912267pt;}
.y92{bottom:495.069467pt;}
.y36{bottom:507.571600pt;}
.y5d{bottom:507.571733pt;}
.y78{bottom:510.776267pt;}
.y91{bottom:514.264667pt;}
.y35{bottom:523.971600pt;}
.y5c{bottom:523.971733pt;}
.y77{bottom:525.445467pt;}
.yd{bottom:529.374400pt;}
.y90{bottom:533.459867pt;}
.y3b{bottom:540.371600pt;}
.y76{bottom:544.640667pt;}
.yc{bottom:544.708400pt;}
.y8f{bottom:552.655067pt;}
.y34{bottom:556.771600pt;}
.yb{bottom:560.042400pt;}
.y8e{bottom:571.850267pt;}
.y5b{bottom:572.289467pt;}
.y33{bottom:573.171600pt;}
.y32{bottom:589.571600pt;}
.ya{bottom:590.710400pt;}
.y8d{bottom:591.045467pt;}
.y5a{bottom:591.748133pt;}
.y31{bottom:605.971600pt;}
.y9{bottom:606.044400pt;}
.y59{bottom:608.612133pt;}
.y8c{bottom:610.240667pt;}
.y8{bottom:621.378400pt;}
.y30{bottom:622.371600pt;}
.y58{bottom:625.463733pt;}
.yb9{bottom:636.180267pt;}
.y7{bottom:636.712400pt;}
.y2f{bottom:638.771600pt;}
.y57{bottom:640.132933pt;}
.yb8{bottom:651.514267pt;}
.y6{bottom:652.046400pt;}
.y2e{bottom:655.171600pt;}
.y56{bottom:656.984533pt;}
.yb7{bottom:666.848267pt;}
.y5{bottom:667.380400pt;}
.y2d{bottom:671.571600pt;}
.y55{bottom:671.653733pt;}
.yb6{bottom:682.182267pt;}
.y4{bottom:682.714400pt;}
.y2c{bottom:687.971600pt;}
.y53{bottom:688.505333pt;}
.y52{bottom:703.174400pt;}
.y54{bottom:703.174533pt;}
.y2b{bottom:704.371600pt;}
.y51{bottom:720.038400pt;}
.y2a{bottom:720.771600pt;}
.yb5{bottom:728.184267pt;}
.y3{bottom:728.714400pt;}
.y4f{bottom:736.890000pt;}
.y29{bottom:737.171600pt;}
.yb4{bottom:743.518267pt;}
.y4e{bottom:751.544267pt;}
.y50{bottom:751.559200pt;}
.y28{bottom:753.571600pt;}
.yb3{bottom:758.852267pt;}
.y4d{bottom:768.408267pt;}
.y27{bottom:769.971600pt;}
.y2{bottom:774.058400pt;}
.yb2{bottom:774.186267pt;}
.y4c{bottom:783.077467pt;}
.y26{bottom:786.371600pt;}
.yb1{bottom:789.520267pt;}
.y1{bottom:796.714400pt;}
.y4b{bottom:799.941467pt;}
.y25{bottom:802.771600pt;}
.yb0{bottom:804.854267pt;}
.y24{bottom:849.726533pt;}
.h12{height:40.482667pt;}
.h11{height:40.618667pt;}
.h5{height:40.890667pt;}
.hd{height:41.389333pt;}
.h13{height:41.434667pt;}
.h4{height:42.840000pt;}
.hc{height:44.441600pt;}
.hf{height:44.491200pt;}
.h8{height:45.216000pt;}
.hb{height:45.284800pt;}
.ha{height:47.893333pt;}
.h7{height:48.106667pt;}
.h10{height:48.107200pt;}
.h9{height:48.746667pt;}
.he{height:50.240000pt;}
.h6{height:50.400000pt;}
.h3{height:60.288000pt;}
.h2{height:80.640000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x3{left:64.252000pt;}
.x1{left:71.811067pt;}
.x1d{left:75.585333pt;}
.x4{left:83.145333pt;}
.x2{left:90.704400pt;}
.x8{left:105.825333pt;}
.x15{left:109.598667pt;}
.x7{left:113.384400pt;}
.x16{left:117.175333pt;}
.x5{left:119.265333pt;}
.x6{left:120.558667pt;}
.x9{left:209.302267pt;}
.xd{left:225.285733pt;}
.xe{left:232.105733pt;}
.x17{left:249.998933pt;}
.xf{left:268.368400pt;}
.x13{left:271.146000pt;}
.x14{left:277.966000pt;}
.x1b{left:287.719867pt;}
.x1c{left:300.566267pt;}
.x1e{left:314.163333pt;}
.x20{left:321.704933pt;}
.x1f{left:325.496667pt;}
.xa{left:329.049067pt;}
.x21{left:333.038267pt;}
.x18{left:344.226533pt;}
.x10{left:353.568800pt;}
.xb{left:385.518667pt;}
.x19{left:411.868533pt;}
.x11{left:415.110000pt;}
.x12{left:499.715200pt;}
.x1a{left:508.352933pt;}
.xc{left:509.394667pt;}
}




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