
    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_19d652a5936a22a72d1c3cc2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_0d7818087840ffaab7814bf9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_d037a5c1845b3b0d5d2ba72a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938000;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_0ca457875d5482b749054944.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.918000;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_4ba72a56e8f87924548d2a2a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.913000;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_5ea4c0919d5ab4d25c0efc30.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.026000;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_25bd6e2612acb3c32435bffd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.027000;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_b12d68c77a94e73664db2f77.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.887695;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-4.950000px;}
.ls20{letter-spacing:-4.620000px;}
.ls31{letter-spacing:-4.320000px;}
.ls23{letter-spacing:-4.290000px;}
.ls26{letter-spacing:-4.050000px;}
.lsd{letter-spacing:-3.960000px;}
.ls12{letter-spacing:-3.780000px;}
.ls22{letter-spacing:-3.630000px;}
.ls10{letter-spacing:-3.240000px;}
.ls49{letter-spacing:-2.970000px;}
.ls4b{letter-spacing:-2.700000px;}
.ls57{letter-spacing:-2.160000px;}
.ls3e{letter-spacing:-1.980000px;}
.ls58{letter-spacing:-1.944000px;}
.ls18{letter-spacing:-1.890000px;}
.ls1f{letter-spacing:-1.650000px;}
.lsf{letter-spacing:-1.620000px;}
.ls17{letter-spacing:-1.404000px;}
.ls13{letter-spacing:-1.350000px;}
.ls40{letter-spacing:-1.320000px;}
.ls4e{letter-spacing:-1.242000px;}
.ls34{letter-spacing:-1.134000px;}
.ls15{letter-spacing:-1.080000px;}
.lsc{letter-spacing:-0.990000px;}
.ls42{letter-spacing:-0.918000px;}
.ls14{letter-spacing:-0.810000px;}
.lsb{letter-spacing:-0.660000px;}
.ls11{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.384000px;}
.ls21{letter-spacing:-0.330000px;}
.ls48{letter-spacing:-0.270000px;}
.ls0{letter-spacing:0.000000px;}
.ls4d{letter-spacing:0.137400px;}
.ls1b{letter-spacing:0.328800px;}
.ls1a{letter-spacing:0.330000px;}
.ls3a{letter-spacing:0.483600px;}
.ls59{letter-spacing:0.544800px;}
.ls44{letter-spacing:0.610200px;}
.ls3d{letter-spacing:1.014600px;}
.ls3c{letter-spacing:1.015200px;}
.ls32{letter-spacing:1.026000px;}
.ls25{letter-spacing:1.080000px;}
.ls3f{letter-spacing:1.320000px;}
.ls27{letter-spacing:1.350000px;}
.ls4f{letter-spacing:1.459800px;}
.ls28{letter-spacing:1.465800px;}
.ls53{letter-spacing:1.468800px;}
.ls39{letter-spacing:1.525800px;}
.lse{letter-spacing:1.620000px;}
.ls51{letter-spacing:1.783800px;}
.ls8{letter-spacing:1.920000px;}
.ls56{letter-spacing:1.980000px;}
.ls52{letter-spacing:2.160000px;}
.ls2e{letter-spacing:2.253000px;}
.ls2{letter-spacing:2.399400px;}
.ls1{letter-spacing:2.400000px;}
.ls1c{letter-spacing:2.430600px;}
.ls47{letter-spacing:2.515200px;}
.ls38{letter-spacing:2.640000px;}
.ls2c{letter-spacing:2.699400px;}
.ls5{letter-spacing:2.700000px;}
.ls1d{letter-spacing:2.786400px;}
.ls1e{letter-spacing:2.970000px;}
.ls19{letter-spacing:3.000000px;}
.ls6{letter-spacing:3.075000px;}
.ls3{letter-spacing:3.300000px;}
.ls36{letter-spacing:3.390000px;}
.ls24{letter-spacing:3.780000px;}
.ls43{letter-spacing:3.834000px;}
.ls4c{letter-spacing:4.236600px;}
.ls2a{letter-spacing:4.350600px;}
.ls3b{letter-spacing:4.428000px;}
.ls46{letter-spacing:4.620000px;}
.ls37{letter-spacing:4.733400px;}
.ls4{letter-spacing:4.765800px;}
.ls30{letter-spacing:4.860000px;}
.ls41{letter-spacing:5.130000px;}
.ls54{letter-spacing:5.572200px;}
.ls33{letter-spacing:5.808600px;}
.ls7{letter-spacing:5.924400px;}
.ls55{letter-spacing:5.968800px;}
.ls29{letter-spacing:6.604200px;}
.ls16{letter-spacing:6.912000px;}
.ls2b{letter-spacing:7.659000px;}
.ls2f{letter-spacing:7.668000px;}
.ls35{letter-spacing:8.692800px;}
.ls2d{letter-spacing:8.715000px;}
.ls4a{letter-spacing:8.892000px;}
.ls45{letter-spacing:9.321600px;}
.ls50{letter-spacing:11.646000px;}
.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;}
}
.ws0{word-spacing:-18.984000px;}
.ws7b{word-spacing:-17.688000px;}
.ws52{word-spacing:-16.368000px;}
.ws2b{word-spacing:-16.038000px;}
.ws63{word-spacing:-15.708000px;}
.ws35{word-spacing:-14.472000px;}
.ws32{word-spacing:-13.398000px;}
.ws1b{word-spacing:-13.392000px;}
.ws9{word-spacing:-13.068000px;}
.ws9d{word-spacing:-12.852000px;}
.ws2e{word-spacing:-12.738000px;}
.ws13{word-spacing:-12.528000px;}
.ws6{word-spacing:-12.408000px;}
.ws33{word-spacing:-12.312000px;}
.ws7a{word-spacing:-12.078000px;}
.ws38{word-spacing:-12.042000px;}
.ws8{word-spacing:-12.012000px;}
.ws3{word-spacing:-11.904000px;}
.ws74{word-spacing:-11.748000px;}
.ws4{word-spacing:-11.424000px;}
.ws2c{word-spacing:-11.418000px;}
.ws6c{word-spacing:-11.088000px;}
.wse{word-spacing:-10.692000px;}
.wsac{word-spacing:-10.422000px;}
.ws11{word-spacing:-10.152000px;}
.ws14{word-spacing:-9.828000px;}
.ws9c{word-spacing:-9.612000px;}
.ws89{word-spacing:-9.558000px;}
.ws2f{word-spacing:-9.438000px;}
.ws1d{word-spacing:-9.342000px;}
.ws10{word-spacing:-9.288000px;}
.wsa{word-spacing:-9.108000px;}
.ws17{word-spacing:-9.018000px;}
.ws1c{word-spacing:-8.802000px;}
.ws30{word-spacing:-8.778000px;}
.ws18{word-spacing:-8.748000px;}
.ws16{word-spacing:-8.478000px;}
.ws2d{word-spacing:-8.448000px;}
.ws12{word-spacing:-8.208000px;}
.ws5{word-spacing:-8.118000px;}
.ws6e{word-spacing:-7.938000px;}
.ws54{word-spacing:-7.668000px;}
.wsf{word-spacing:-7.452000px;}
.ws29{word-spacing:-6.912000px;}
.ws37{word-spacing:-6.642000px;}
.ws15{word-spacing:-6.048000px;}
.ws76{word-spacing:-5.130000px;}
.ws55{word-spacing:-4.860000px;}
.ws6a{word-spacing:-4.428000px;}
.ws79{word-spacing:-3.834000px;}
.ws1f{word-spacing:-3.300000px;}
.ws39{word-spacing:-3.000000px;}
.ws73{word-spacing:-2.700000px;}
.ws9e{word-spacing:-2.508000px;}
.ws1e{word-spacing:-2.400000px;}
.wsb6{word-spacing:-2.376000px;}
.ws82{word-spacing:-1.944000px;}
.ws99{word-spacing:-1.782000px;}
.wsb{word-spacing:-1.674000px;}
.ws6d{word-spacing:-1.386000px;}
.wsb5{word-spacing:-1.296000px;}
.ws26{word-spacing:-1.188000px;}
.ws36{word-spacing:-1.134000px;}
.ws56{word-spacing:-1.026000px;}
.ws41{word-spacing:-0.540000px;}
.ws22{word-spacing:-0.432000px;}
.ws31{word-spacing:-0.396000px;}
.ws3a{word-spacing:-0.330000px;}
.wsa5{word-spacing:-0.324000px;}
.ws3d{word-spacing:-0.270000px;}
.ws8a{word-spacing:-0.216000px;}
.ws4a{word-spacing:-0.162000px;}
.ws95{word-spacing:-0.108000px;}
.ws7{word-spacing:-0.066000px;}
.wsd{word-spacing:-0.054000px;}
.ws2{word-spacing:-0.048000px;}
.ws1{word-spacing:0.000000px;}
.ws9b{word-spacing:0.108000px;}
.ws3e{word-spacing:0.216000px;}
.ws84{word-spacing:0.264000px;}
.ws8d{word-spacing:0.270000px;}
.ws3c{word-spacing:0.330000px;}
.ws19{word-spacing:0.486000px;}
.ws24{word-spacing:0.540000px;}
.ws75{word-spacing:0.594000px;}
.ws58{word-spacing:0.648000px;}
.ws3b{word-spacing:0.660000px;}
.ws85{word-spacing:0.702000px;}
.ws34{word-spacing:0.756000px;}
.ws51{word-spacing:0.810000px;}
.ws78{word-spacing:0.918000px;}
.ws68{word-spacing:0.924000px;}
.ws21{word-spacing:0.990000px;}
.ws1a{word-spacing:1.026000px;}
.ws7e{word-spacing:1.080000px;}
.ws5f{word-spacing:1.134000px;}
.ws98{word-spacing:1.188000px;}
.ws9a{word-spacing:1.242000px;}
.ws88{word-spacing:1.254000px;}
.ws69{word-spacing:1.296000px;}
.ws7c{word-spacing:1.320000px;}
.ws44{word-spacing:1.350000px;}
.ws2a{word-spacing:1.404000px;}
.ws70{word-spacing:1.512000px;}
.wsad{word-spacing:1.518000px;}
.wsc{word-spacing:1.566000px;}
.ws64{word-spacing:1.584000px;}
.ws81{word-spacing:1.620000px;}
.ws90{word-spacing:1.674000px;}
.ws6f{word-spacing:1.782000px;}
.ws57{word-spacing:1.836000px;}
.ws4d{word-spacing:1.890000px;}
.ws6b{word-spacing:1.914000px;}
.wsb4{word-spacing:1.944000px;}
.ws5c{word-spacing:1.998000px;}
.ws5d{word-spacing:2.052000px;}
.wsae{word-spacing:2.160000px;}
.ws3f{word-spacing:2.214000px;}
.ws7f{word-spacing:2.484000px;}
.ws8e{word-spacing:2.538000px;}
.wsa1{word-spacing:2.640000px;}
.ws27{word-spacing:2.700000px;}
.wsa7{word-spacing:2.754000px;}
.ws25{word-spacing:2.808000px;}
.wsaf{word-spacing:2.916000px;}
.ws8c{word-spacing:2.970000px;}
.ws4c{word-spacing:3.132000px;}
.wsb3{word-spacing:3.294000px;}
.ws86{word-spacing:3.564000px;}
.wsa0{word-spacing:3.630000px;}
.ws92{word-spacing:3.780000px;}
.wsa6{word-spacing:3.834000px;}
.wsaa{word-spacing:3.888000px;}
.ws97{word-spacing:3.894000px;}
.ws49{word-spacing:4.050000px;}
.ws53{word-spacing:4.266000px;}
.wsb0{word-spacing:4.320000px;}
.ws66{word-spacing:4.374000px;}
.ws65{word-spacing:4.554000px;}
.ws87{word-spacing:4.644000px;}
.ws8b{word-spacing:4.698000px;}
.ws23{word-spacing:4.752000px;}
.ws4b{word-spacing:5.022000px;}
.wsb1{word-spacing:5.130000px;}
.ws5e{word-spacing:5.292000px;}
.ws62{word-spacing:5.346000px;}
.wsba{word-spacing:5.400000px;}
.ws4f{word-spacing:5.724000px;}
.ws20{word-spacing:5.940000px;}
.ws48{word-spacing:6.048000px;}
.ws4e{word-spacing:6.264000px;}
.wsb9{word-spacing:6.480000px;}
.ws5a{word-spacing:6.696000px;}
.ws72{word-spacing:6.966000px;}
.ws28{word-spacing:7.020000px;}
.ws93{word-spacing:7.776000px;}
.ws5b{word-spacing:7.992000px;}
.ws47{word-spacing:8.100000px;}
.ws80{word-spacing:8.586000px;}
.ws42{word-spacing:8.748000px;}
.ws8f{word-spacing:8.856000px;}
.ws7d{word-spacing:8.910000px;}
.ws61{word-spacing:9.126000px;}
.ws45{word-spacing:9.180000px;}
.ws9f{word-spacing:9.438000px;}
.ws46{word-spacing:9.720000px;}
.wsb2{word-spacing:9.774000px;}
.ws60{word-spacing:10.206000px;}
.wsa4{word-spacing:10.692000px;}
.wsa3{word-spacing:10.962000px;}
.wsa8{word-spacing:11.448000px;}
.wsa9{word-spacing:11.988000px;}
.wsb7{word-spacing:12.960000px;}
.ws59{word-spacing:13.500000px;}
.ws91{word-spacing:13.824000px;}
.ws50{word-spacing:15.012000px;}
.ws40{word-spacing:15.120000px;}
.wsa2{word-spacing:17.982000px;}
.ws94{word-spacing:21.060000px;}
.ws71{word-spacing:1707.297600px;}
.ws83{word-spacing:1709.277600px;}
.ws96{word-spacing:1709.607600px;}
.ws43{word-spacing:1710.861600px;}
.ws67{word-spacing:1711.191600px;}
.ws77{word-spacing:1712.445600px;}
.wsab{word-spacing:1714.359600px;}
.wsb8{word-spacing:1715.547600px;}
._d{margin-left:-1958.546400px;}
._18{margin-left:-10.573200px;}
._2{margin-left:-7.353600px;}
._a{margin-left:-6.021000px;}
._3{margin-left:-4.284000px;}
._6{margin-left:-3.206400px;}
._1{margin-left:-1.996800px;}
._b{width:1.008600px;}
._4{width:2.400000px;}
._5{width:4.198200px;}
._0{width:5.587200px;}
._9{width:7.111200px;}
._7{width:9.009000px;}
._8{width:10.335600px;}
._e{width:12.012000px;}
._13{width:14.084400px;}
._f{width:15.886800px;}
._10{width:16.900800px;}
._15{width:18.090000px;}
._17{width:23.135400px;}
._c{width:30.888000px;}
._11{width:57.348000px;}
._19{width:159.346800px;}
._16{width:161.062800px;}
._14{width:162.910200px;}
._12{width:170.764800px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:36.000000px;}
.fs3{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:8.040000px;}
.y47{bottom:18.000000px;}
.y46{bottom:30.000000px;}
.y45{bottom:42.000000px;}
.y1d{bottom:46.743750px;}
.y44{bottom:54.000000px;}
.y1c{bottom:63.243750px;}
.y43{bottom:66.000000px;}
.y1a{bottom:69.510000px;}
.ya5{bottom:87.138900px;}
.y19{bottom:91.590000px;}
.y14{bottom:99.795000px;}
.ya4{bottom:103.638900px;}
.yaf{bottom:103.639050px;}
.y6f{bottom:107.336400px;}
.y42{bottom:107.366550px;}
.y18{bottom:113.670000px;}
.ya3{bottom:120.138900px;}
.yae{bottom:120.139050px;}
.y6e{bottom:123.836400px;}
.y41{bottom:123.866550px;}
.y91{bottom:123.866700px;}
.y10{bottom:133.935000px;}
.y17{bottom:135.750000px;}
.yd3{bottom:136.638900px;}
.ya2{bottom:136.639050px;}
.yad{bottom:136.639200px;}
.y6d{bottom:140.336400px;}
.y40{bottom:140.366550px;}
.y90{bottom:140.366700px;}
.ya1{bottom:153.139050px;}
.yac{bottom:153.139200px;}
.y15{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y6c{bottom:156.836400px;}
.y3f{bottom:156.866550px;}
.y8f{bottom:156.866700px;}
.yc8{bottom:156.866850px;}
.y16{bottom:157.830000px;}
.ya0{bottom:169.639050px;}
.yab{bottom:169.639200px;}
.y6b{bottom:173.336400px;}
.y3e{bottom:173.366550px;}
.y8e{bottom:173.366700px;}
.yb4{bottom:173.366850px;}
.y9f{bottom:186.139050px;}
.yaa{bottom:186.139200px;}
.y6a{bottom:189.836400px;}
.y3d{bottom:189.866550px;}
.y81{bottom:189.866700px;}
.yb3{bottom:189.866850px;}
.yb6{bottom:189.867000px;}
.yd2{bottom:202.639050px;}
.y9e{bottom:202.639200px;}
.ya9{bottom:202.639350px;}
.y69{bottom:206.336400px;}
.y3c{bottom:206.366550px;}
.y8d{bottom:206.366700px;}
.y80{bottom:206.366850px;}
.yb5{bottom:206.367000px;}
.ye9{bottom:206.367150px;}
.y9d{bottom:219.139200px;}
.ya8{bottom:219.139350px;}
.y68{bottom:222.836400px;}
.y3b{bottom:222.866550px;}
.y8c{bottom:222.866700px;}
.y7f{bottom:222.866850px;}
.yeb{bottom:222.867000px;}
.ye8{bottom:222.867150px;}
.yc4{bottom:228.521100px;}
.yc7{bottom:228.521250px;}
.y9c{bottom:235.639200px;}
.ya7{bottom:235.639350px;}
.y67{bottom:239.336400px;}
.y3a{bottom:239.366550px;}
.y8b{bottom:239.366700px;}
.y7e{bottom:239.366850px;}
.ye7{bottom:239.367150px;}
.yc3{bottom:248.718600px;}
.yb2{bottom:248.718750px;}
.y9b{bottom:252.139200px;}
.ya6{bottom:252.139350px;}
.y66{bottom:255.836400px;}
.y39{bottom:255.866550px;}
.y8a{bottom:255.866700px;}
.y7d{bottom:255.866850px;}
.ydb{bottom:255.867000px;}
.ye6{bottom:255.867150px;}
.y9a{bottom:268.639200px;}
.yd1{bottom:268.639350px;}
.yc2{bottom:268.916100px;}
.yb1{bottom:268.916250px;}
.y65{bottom:272.336400px;}
.y38{bottom:272.366550px;}
.y89{bottom:272.366700px;}
.y7c{bottom:272.366850px;}
.yda{bottom:272.367000px;}
.ye5{bottom:272.367150px;}
.y64{bottom:288.836400px;}
.y37{bottom:288.866700px;}
.y88{bottom:288.866850px;}
.y7b{bottom:288.867000px;}
.ye4{bottom:288.867150px;}
.yc1{bottom:289.113600px;}
.yb0{bottom:289.113750px;}
.y63{bottom:305.336700px;}
.y36{bottom:305.366700px;}
.y87{bottom:305.366850px;}
.y7a{bottom:305.367000px;}
.ye3{bottom:305.367150px;}
.yea{bottom:305.367300px;}
.y99{bottom:309.311250px;}
.y62{bottom:321.836700px;}
.y35{bottom:321.866700px;}
.y86{bottom:321.866850px;}
.y79{bottom:321.867000px;}
.ye2{bottom:321.867300px;}
.yc0{bottom:329.508600px;}
.y98{bottom:329.508750px;}
.y61{bottom:338.336700px;}
.y34{bottom:338.366700px;}
.y78{bottom:338.367000px;}
.ye1{bottom:338.367300px;}
.ya{bottom:344.680500px;}
.y97{bottom:349.706250px;}
.y60{bottom:354.836850px;}
.y33{bottom:354.866850px;}
.y77{bottom:354.867000px;}
.ye0{bottom:354.867300px;}
.ybf{bottom:369.903600px;}
.y96{bottom:369.903750px;}
.yd9{bottom:369.904950px;}
.y5f{bottom:371.336850px;}
.y32{bottom:371.366850px;}
.y76{bottom:371.367000px;}
.ydf{bottom:371.367300px;}
.yd{bottom:386.490000px;}
.y5e{bottom:387.836850px;}
.y31{bottom:387.866850px;}
.y75{bottom:387.867000px;}
.yde{bottom:387.867300px;}
.ybe{bottom:390.101100px;}
.y95{bottom:390.101250px;}
.yd8{bottom:390.102450px;}
.y9{bottom:395.689500px;}
.y5d{bottom:404.336850px;}
.y74{bottom:404.367000px;}
.ydd{bottom:404.367300px;}
.ybd{bottom:410.298600px;}
.y94{bottom:410.298750px;}
.yd7{bottom:410.299950px;}
.y5c{bottom:420.836850px;}
.y73{bottom:420.867000px;}
.ydc{bottom:420.867450px;}
.yee{bottom:420.945000px;}
.ybc{bottom:430.496100px;}
.y93{bottom:430.496250px;}
.y30{bottom:430.497600px;}
.yb{bottom:434.850000px;}
.y5b{bottom:437.336850px;}
.y85{bottom:437.367000px;}
.yca{bottom:437.367150px;}
.yed{bottom:437.445000px;}
.y8{bottom:446.698500px;}
.y92{bottom:450.693750px;}
.y2f{bottom:450.694950px;}
.y5a{bottom:453.836850px;}
.y84{bottom:453.867000px;}
.yc9{bottom:453.867150px;}
.yec{bottom:453.945000px;}
.y83{bottom:470.367000px;}
.ybb{bottom:470.891100px;}
.y72{bottom:470.891250px;}
.y2e{bottom:470.892450px;}
.y82{bottom:486.867000px;}
.y11{bottom:488.055000px;}
.y71{bottom:491.088750px;}
.y2d{bottom:491.089950px;}
.y7{bottom:497.707500px;}
.yd0{bottom:500.557500px;}
.y59{bottom:511.286250px;}
.y2c{bottom:511.287450px;}
.ycf{bottom:517.057500px;}
.y58{bottom:531.483600px;}
.y2b{bottom:531.484950px;}
.yce{bottom:533.557500px;}
.y12{bottom:538.230000px;}
.y6{bottom:548.716500px;}
.ycd{bottom:550.057500px;}
.yba{bottom:551.681100px;}
.y57{bottom:551.681250px;}
.y2a{bottom:551.682450px;}
.ycc{bottom:566.557500px;}
.yb9{bottom:571.878600px;}
.y56{bottom:571.878750px;}
.yd6{bottom:571.879350px;}
.y29{bottom:571.880100px;}
.ycb{bottom:583.057500px;}
.y1b{bottom:589.605000px;}
.yb8{bottom:592.076100px;}
.y55{bottom:592.076250px;}
.yd5{bottom:592.076850px;}
.y28{bottom:592.077450px;}
.y5{bottom:599.725500px;}
.yb7{bottom:612.273600px;}
.y54{bottom:612.273750px;}
.yd4{bottom:612.274350px;}
.y27{bottom:612.274950px;}
.ye{bottom:631.920000px;}
.y53{bottom:632.471250px;}
.y26{bottom:632.472450px;}
.y52{bottom:652.668750px;}
.y25{bottom:652.669950px;}
.y51{bottom:672.866250px;}
.y24{bottom:672.867450px;}
.y50{bottom:693.063750px;}
.y23{bottom:693.064950px;}
.y4f{bottom:713.261250px;}
.y4e{bottom:733.458750px;}
.yc6{bottom:740.853600px;}
.y22{bottom:753.656250px;}
.yc5{bottom:757.353600px;}
.y4d{bottom:773.853750px;}
.y4{bottom:778.225500px;}
.y4c{bottom:794.051250px;}
.y21{bottom:794.643750px;}
.y4b{bottom:814.248750px;}
.y13{bottom:815.670000px;}
.y20{bottom:824.643750px;}
.y4a{bottom:834.446250px;}
.y1f{bottom:854.643750px;}
.y49{bottom:874.841250px;}
.y1e{bottom:895.038600px;}
.y3{bottom:905.716500px;}
.y48{bottom:935.433150px;}
.y70{bottom:935.463000px;}
.y2{bottom:964.228500px;}
.y1{bottom:989.716500px;}
.h11{height:24.785156px;}
.h4{height:33.000000px;}
.hb{height:33.024000px;}
.hf{height:37.152000px;}
.h10{height:41.904000px;}
.h12{height:43.956000px;}
.hc{height:45.408000px;}
.he{height:51.216000px;}
.h3{height:58.406250px;}
.hd{height:63.936000px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.ha{height:999.000000px;}
.h9{height:999.213000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w9{width:659.055000px;}
.wa{width:659.250000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xa{left:85.039350px;}
.xc{left:102.047250px;}
.x13{left:119.055150px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.xb{left:136.063050px;}
.x14{left:170.078700px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.xf{left:362.679000px;}
.xe{left:438.125970px;}
.x11{left:447.765015px;}
.x10{left:503.699985px;}
.xd{left:522.447000px;}
.x12{left:552.367950px;}
.x15{left:553.919100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-4.400000pt;}
.ls20{letter-spacing:-4.106667pt;}
.ls31{letter-spacing:-3.840000pt;}
.ls23{letter-spacing:-3.813333pt;}
.ls26{letter-spacing:-3.600000pt;}
.lsd{letter-spacing:-3.520000pt;}
.ls12{letter-spacing:-3.360000pt;}
.ls22{letter-spacing:-3.226667pt;}
.ls10{letter-spacing:-2.880000pt;}
.ls49{letter-spacing:-2.640000pt;}
.ls4b{letter-spacing:-2.400000pt;}
.ls57{letter-spacing:-1.920000pt;}
.ls3e{letter-spacing:-1.760000pt;}
.ls58{letter-spacing:-1.728000pt;}
.ls18{letter-spacing:-1.680000pt;}
.ls1f{letter-spacing:-1.466667pt;}
.lsf{letter-spacing:-1.440000pt;}
.ls17{letter-spacing:-1.248000pt;}
.ls13{letter-spacing:-1.200000pt;}
.ls40{letter-spacing:-1.173333pt;}
.ls4e{letter-spacing:-1.104000pt;}
.ls34{letter-spacing:-1.008000pt;}
.ls15{letter-spacing:-0.960000pt;}
.lsc{letter-spacing:-0.880000pt;}
.ls42{letter-spacing:-0.816000pt;}
.ls14{letter-spacing:-0.720000pt;}
.lsb{letter-spacing:-0.586667pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.341333pt;}
.ls21{letter-spacing:-0.293333pt;}
.ls48{letter-spacing:-0.240000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4d{letter-spacing:0.122133pt;}
.ls1b{letter-spacing:0.292267pt;}
.ls1a{letter-spacing:0.293333pt;}
.ls3a{letter-spacing:0.429867pt;}
.ls59{letter-spacing:0.484267pt;}
.ls44{letter-spacing:0.542400pt;}
.ls3d{letter-spacing:0.901867pt;}
.ls3c{letter-spacing:0.902400pt;}
.ls32{letter-spacing:0.912000pt;}
.ls25{letter-spacing:0.960000pt;}
.ls3f{letter-spacing:1.173333pt;}
.ls27{letter-spacing:1.200000pt;}
.ls4f{letter-spacing:1.297600pt;}
.ls28{letter-spacing:1.302933pt;}
.ls53{letter-spacing:1.305600pt;}
.ls39{letter-spacing:1.356267pt;}
.lse{letter-spacing:1.440000pt;}
.ls51{letter-spacing:1.585600pt;}
.ls8{letter-spacing:1.706667pt;}
.ls56{letter-spacing:1.760000pt;}
.ls52{letter-spacing:1.920000pt;}
.ls2e{letter-spacing:2.002667pt;}
.ls2{letter-spacing:2.132800pt;}
.ls1{letter-spacing:2.133333pt;}
.ls1c{letter-spacing:2.160533pt;}
.ls47{letter-spacing:2.235733pt;}
.ls38{letter-spacing:2.346667pt;}
.ls2c{letter-spacing:2.399467pt;}
.ls5{letter-spacing:2.400000pt;}
.ls1d{letter-spacing:2.476800pt;}
.ls1e{letter-spacing:2.640000pt;}
.ls19{letter-spacing:2.666667pt;}
.ls6{letter-spacing:2.733333pt;}
.ls3{letter-spacing:2.933333pt;}
.ls36{letter-spacing:3.013333pt;}
.ls24{letter-spacing:3.360000pt;}
.ls43{letter-spacing:3.408000pt;}
.ls4c{letter-spacing:3.765867pt;}
.ls2a{letter-spacing:3.867200pt;}
.ls3b{letter-spacing:3.936000pt;}
.ls46{letter-spacing:4.106667pt;}
.ls37{letter-spacing:4.207467pt;}
.ls4{letter-spacing:4.236267pt;}
.ls30{letter-spacing:4.320000pt;}
.ls41{letter-spacing:4.560000pt;}
.ls54{letter-spacing:4.953067pt;}
.ls33{letter-spacing:5.163200pt;}
.ls7{letter-spacing:5.266133pt;}
.ls55{letter-spacing:5.305600pt;}
.ls29{letter-spacing:5.870400pt;}
.ls16{letter-spacing:6.144000pt;}
.ls2b{letter-spacing:6.808000pt;}
.ls2f{letter-spacing:6.816000pt;}
.ls35{letter-spacing:7.726933pt;}
.ls2d{letter-spacing:7.746667pt;}
.ls4a{letter-spacing:7.904000pt;}
.ls45{letter-spacing:8.285867pt;}
.ls50{letter-spacing:10.352000pt;}
.ws0{word-spacing:-16.874667pt;}
.ws7b{word-spacing:-15.722667pt;}
.ws52{word-spacing:-14.549333pt;}
.ws2b{word-spacing:-14.256000pt;}
.ws63{word-spacing:-13.962667pt;}
.ws35{word-spacing:-12.864000pt;}
.ws32{word-spacing:-11.909333pt;}
.ws1b{word-spacing:-11.904000pt;}
.ws9{word-spacing:-11.616000pt;}
.ws9d{word-spacing:-11.424000pt;}
.ws2e{word-spacing:-11.322667pt;}
.ws13{word-spacing:-11.136000pt;}
.ws6{word-spacing:-11.029333pt;}
.ws33{word-spacing:-10.944000pt;}
.ws7a{word-spacing:-10.736000pt;}
.ws38{word-spacing:-10.704000pt;}
.ws8{word-spacing:-10.677333pt;}
.ws3{word-spacing:-10.581333pt;}
.ws74{word-spacing:-10.442667pt;}
.ws4{word-spacing:-10.154667pt;}
.ws2c{word-spacing:-10.149333pt;}
.ws6c{word-spacing:-9.856000pt;}
.wse{word-spacing:-9.504000pt;}
.wsac{word-spacing:-9.264000pt;}
.ws11{word-spacing:-9.024000pt;}
.ws14{word-spacing:-8.736000pt;}
.ws9c{word-spacing:-8.544000pt;}
.ws89{word-spacing:-8.496000pt;}
.ws2f{word-spacing:-8.389333pt;}
.ws1d{word-spacing:-8.304000pt;}
.ws10{word-spacing:-8.256000pt;}
.wsa{word-spacing:-8.096000pt;}
.ws17{word-spacing:-8.016000pt;}
.ws1c{word-spacing:-7.824000pt;}
.ws30{word-spacing:-7.802667pt;}
.ws18{word-spacing:-7.776000pt;}
.ws16{word-spacing:-7.536000pt;}
.ws2d{word-spacing:-7.509333pt;}
.ws12{word-spacing:-7.296000pt;}
.ws5{word-spacing:-7.216000pt;}
.ws6e{word-spacing:-7.056000pt;}
.ws54{word-spacing:-6.816000pt;}
.wsf{word-spacing:-6.624000pt;}
.ws29{word-spacing:-6.144000pt;}
.ws37{word-spacing:-5.904000pt;}
.ws15{word-spacing:-5.376000pt;}
.ws76{word-spacing:-4.560000pt;}
.ws55{word-spacing:-4.320000pt;}
.ws6a{word-spacing:-3.936000pt;}
.ws79{word-spacing:-3.408000pt;}
.ws1f{word-spacing:-2.933333pt;}
.ws39{word-spacing:-2.666667pt;}
.ws73{word-spacing:-2.400000pt;}
.ws9e{word-spacing:-2.229333pt;}
.ws1e{word-spacing:-2.133333pt;}
.wsb6{word-spacing:-2.112000pt;}
.ws82{word-spacing:-1.728000pt;}
.ws99{word-spacing:-1.584000pt;}
.wsb{word-spacing:-1.488000pt;}
.ws6d{word-spacing:-1.232000pt;}
.wsb5{word-spacing:-1.152000pt;}
.ws26{word-spacing:-1.056000pt;}
.ws36{word-spacing:-1.008000pt;}
.ws56{word-spacing:-0.912000pt;}
.ws41{word-spacing:-0.480000pt;}
.ws22{word-spacing:-0.384000pt;}
.ws31{word-spacing:-0.352000pt;}
.ws3a{word-spacing:-0.293333pt;}
.wsa5{word-spacing:-0.288000pt;}
.ws3d{word-spacing:-0.240000pt;}
.ws8a{word-spacing:-0.192000pt;}
.ws4a{word-spacing:-0.144000pt;}
.ws95{word-spacing:-0.096000pt;}
.ws7{word-spacing:-0.058667pt;}
.wsd{word-spacing:-0.048000pt;}
.ws2{word-spacing:-0.042667pt;}
.ws1{word-spacing:0.000000pt;}
.ws9b{word-spacing:0.096000pt;}
.ws3e{word-spacing:0.192000pt;}
.ws84{word-spacing:0.234667pt;}
.ws8d{word-spacing:0.240000pt;}
.ws3c{word-spacing:0.293333pt;}
.ws19{word-spacing:0.432000pt;}
.ws24{word-spacing:0.480000pt;}
.ws75{word-spacing:0.528000pt;}
.ws58{word-spacing:0.576000pt;}
.ws3b{word-spacing:0.586667pt;}
.ws85{word-spacing:0.624000pt;}
.ws34{word-spacing:0.672000pt;}
.ws51{word-spacing:0.720000pt;}
.ws78{word-spacing:0.816000pt;}
.ws68{word-spacing:0.821333pt;}
.ws21{word-spacing:0.880000pt;}
.ws1a{word-spacing:0.912000pt;}
.ws7e{word-spacing:0.960000pt;}
.ws5f{word-spacing:1.008000pt;}
.ws98{word-spacing:1.056000pt;}
.ws9a{word-spacing:1.104000pt;}
.ws88{word-spacing:1.114667pt;}
.ws69{word-spacing:1.152000pt;}
.ws7c{word-spacing:1.173333pt;}
.ws44{word-spacing:1.200000pt;}
.ws2a{word-spacing:1.248000pt;}
.ws70{word-spacing:1.344000pt;}
.wsad{word-spacing:1.349333pt;}
.wsc{word-spacing:1.392000pt;}
.ws64{word-spacing:1.408000pt;}
.ws81{word-spacing:1.440000pt;}
.ws90{word-spacing:1.488000pt;}
.ws6f{word-spacing:1.584000pt;}
.ws57{word-spacing:1.632000pt;}
.ws4d{word-spacing:1.680000pt;}
.ws6b{word-spacing:1.701333pt;}
.wsb4{word-spacing:1.728000pt;}
.ws5c{word-spacing:1.776000pt;}
.ws5d{word-spacing:1.824000pt;}
.wsae{word-spacing:1.920000pt;}
.ws3f{word-spacing:1.968000pt;}
.ws7f{word-spacing:2.208000pt;}
.ws8e{word-spacing:2.256000pt;}
.wsa1{word-spacing:2.346667pt;}
.ws27{word-spacing:2.400000pt;}
.wsa7{word-spacing:2.448000pt;}
.ws25{word-spacing:2.496000pt;}
.wsaf{word-spacing:2.592000pt;}
.ws8c{word-spacing:2.640000pt;}
.ws4c{word-spacing:2.784000pt;}
.wsb3{word-spacing:2.928000pt;}
.ws86{word-spacing:3.168000pt;}
.wsa0{word-spacing:3.226667pt;}
.ws92{word-spacing:3.360000pt;}
.wsa6{word-spacing:3.408000pt;}
.wsaa{word-spacing:3.456000pt;}
.ws97{word-spacing:3.461333pt;}
.ws49{word-spacing:3.600000pt;}
.ws53{word-spacing:3.792000pt;}
.wsb0{word-spacing:3.840000pt;}
.ws66{word-spacing:3.888000pt;}
.ws65{word-spacing:4.048000pt;}
.ws87{word-spacing:4.128000pt;}
.ws8b{word-spacing:4.176000pt;}
.ws23{word-spacing:4.224000pt;}
.ws4b{word-spacing:4.464000pt;}
.wsb1{word-spacing:4.560000pt;}
.ws5e{word-spacing:4.704000pt;}
.ws62{word-spacing:4.752000pt;}
.wsba{word-spacing:4.800000pt;}
.ws4f{word-spacing:5.088000pt;}
.ws20{word-spacing:5.280000pt;}
.ws48{word-spacing:5.376000pt;}
.ws4e{word-spacing:5.568000pt;}
.wsb9{word-spacing:5.760000pt;}
.ws5a{word-spacing:5.952000pt;}
.ws72{word-spacing:6.192000pt;}
.ws28{word-spacing:6.240000pt;}
.ws93{word-spacing:6.912000pt;}
.ws5b{word-spacing:7.104000pt;}
.ws47{word-spacing:7.200000pt;}
.ws80{word-spacing:7.632000pt;}
.ws42{word-spacing:7.776000pt;}
.ws8f{word-spacing:7.872000pt;}
.ws7d{word-spacing:7.920000pt;}
.ws61{word-spacing:8.112000pt;}
.ws45{word-spacing:8.160000pt;}
.ws9f{word-spacing:8.389333pt;}
.ws46{word-spacing:8.640000pt;}
.wsb2{word-spacing:8.688000pt;}
.ws60{word-spacing:9.072000pt;}
.wsa4{word-spacing:9.504000pt;}
.wsa3{word-spacing:9.744000pt;}
.wsa8{word-spacing:10.176000pt;}
.wsa9{word-spacing:10.656000pt;}
.wsb7{word-spacing:11.520000pt;}
.ws59{word-spacing:12.000000pt;}
.ws91{word-spacing:12.288000pt;}
.ws50{word-spacing:13.344000pt;}
.ws40{word-spacing:13.440000pt;}
.wsa2{word-spacing:15.984000pt;}
.ws94{word-spacing:18.720000pt;}
.ws71{word-spacing:1517.597867pt;}
.ws83{word-spacing:1519.357867pt;}
.ws96{word-spacing:1519.651200pt;}
.ws43{word-spacing:1520.765867pt;}
.ws67{word-spacing:1521.059200pt;}
.ws77{word-spacing:1522.173867pt;}
.wsab{word-spacing:1523.875200pt;}
.wsb8{word-spacing:1524.931200pt;}
._d{margin-left:-1740.930133pt;}
._18{margin-left:-9.398400pt;}
._2{margin-left:-6.536533pt;}
._a{margin-left:-5.352000pt;}
._3{margin-left:-3.808000pt;}
._6{margin-left:-2.850133pt;}
._1{margin-left:-1.774933pt;}
._b{width:0.896533pt;}
._4{width:2.133333pt;}
._5{width:3.731733pt;}
._0{width:4.966400pt;}
._9{width:6.321067pt;}
._7{width:8.008000pt;}
._8{width:9.187200pt;}
._e{width:10.677333pt;}
._13{width:12.519467pt;}
._f{width:14.121600pt;}
._10{width:15.022933pt;}
._15{width:16.080000pt;}
._17{width:20.564800pt;}
._c{width:27.456000pt;}
._11{width:50.976000pt;}
._19{width:141.641600pt;}
._16{width:143.166933pt;}
._14{width:144.809067pt;}
._12{width:151.790933pt;}
.fs5{font-size:32.000000pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:7.146667pt;}
.y47{bottom:16.000000pt;}
.y46{bottom:26.666667pt;}
.y45{bottom:37.333333pt;}
.y1d{bottom:41.550000pt;}
.y44{bottom:48.000000pt;}
.y1c{bottom:56.216667pt;}
.y43{bottom:58.666667pt;}
.y1a{bottom:61.786667pt;}
.ya5{bottom:77.456800pt;}
.y19{bottom:81.413333pt;}
.y14{bottom:88.706667pt;}
.ya4{bottom:92.123467pt;}
.yaf{bottom:92.123600pt;}
.y6f{bottom:95.410133pt;}
.y42{bottom:95.436933pt;}
.y18{bottom:101.040000pt;}
.ya3{bottom:106.790133pt;}
.yae{bottom:106.790267pt;}
.y6e{bottom:110.076800pt;}
.y41{bottom:110.103600pt;}
.y91{bottom:110.103733pt;}
.y10{bottom:119.053333pt;}
.y17{bottom:120.666667pt;}
.yd3{bottom:121.456800pt;}
.ya2{bottom:121.456933pt;}
.yad{bottom:121.457067pt;}
.y6d{bottom:124.743467pt;}
.y40{bottom:124.770267pt;}
.y90{bottom:124.770400pt;}
.ya1{bottom:136.123600pt;}
.yac{bottom:136.123733pt;}
.y15{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y6c{bottom:139.410133pt;}
.y3f{bottom:139.436933pt;}
.y8f{bottom:139.437067pt;}
.yc8{bottom:139.437200pt;}
.y16{bottom:140.293333pt;}
.ya0{bottom:150.790267pt;}
.yab{bottom:150.790400pt;}
.y6b{bottom:154.076800pt;}
.y3e{bottom:154.103600pt;}
.y8e{bottom:154.103733pt;}
.yb4{bottom:154.103867pt;}
.y9f{bottom:165.456933pt;}
.yaa{bottom:165.457067pt;}
.y6a{bottom:168.743467pt;}
.y3d{bottom:168.770267pt;}
.y81{bottom:168.770400pt;}
.yb3{bottom:168.770533pt;}
.yb6{bottom:168.770667pt;}
.yd2{bottom:180.123600pt;}
.y9e{bottom:180.123733pt;}
.ya9{bottom:180.123867pt;}
.y69{bottom:183.410133pt;}
.y3c{bottom:183.436933pt;}
.y8d{bottom:183.437067pt;}
.y80{bottom:183.437200pt;}
.yb5{bottom:183.437333pt;}
.ye9{bottom:183.437467pt;}
.y9d{bottom:194.790400pt;}
.ya8{bottom:194.790533pt;}
.y68{bottom:198.076800pt;}
.y3b{bottom:198.103600pt;}
.y8c{bottom:198.103733pt;}
.y7f{bottom:198.103867pt;}
.yeb{bottom:198.104000pt;}
.ye8{bottom:198.104133pt;}
.yc4{bottom:203.129867pt;}
.yc7{bottom:203.130000pt;}
.y9c{bottom:209.457067pt;}
.ya7{bottom:209.457200pt;}
.y67{bottom:212.743467pt;}
.y3a{bottom:212.770267pt;}
.y8b{bottom:212.770400pt;}
.y7e{bottom:212.770533pt;}
.ye7{bottom:212.770800pt;}
.yc3{bottom:221.083200pt;}
.yb2{bottom:221.083333pt;}
.y9b{bottom:224.123733pt;}
.ya6{bottom:224.123867pt;}
.y66{bottom:227.410133pt;}
.y39{bottom:227.436933pt;}
.y8a{bottom:227.437067pt;}
.y7d{bottom:227.437200pt;}
.ydb{bottom:227.437333pt;}
.ye6{bottom:227.437467pt;}
.y9a{bottom:238.790400pt;}
.yd1{bottom:238.790533pt;}
.yc2{bottom:239.036533pt;}
.yb1{bottom:239.036667pt;}
.y65{bottom:242.076800pt;}
.y38{bottom:242.103600pt;}
.y89{bottom:242.103733pt;}
.y7c{bottom:242.103867pt;}
.yda{bottom:242.104000pt;}
.ye5{bottom:242.104133pt;}
.y64{bottom:256.743467pt;}
.y37{bottom:256.770400pt;}
.y88{bottom:256.770533pt;}
.y7b{bottom:256.770667pt;}
.ye4{bottom:256.770800pt;}
.yc1{bottom:256.989867pt;}
.yb0{bottom:256.990000pt;}
.y63{bottom:271.410400pt;}
.y36{bottom:271.437067pt;}
.y87{bottom:271.437200pt;}
.y7a{bottom:271.437333pt;}
.ye3{bottom:271.437467pt;}
.yea{bottom:271.437600pt;}
.y99{bottom:274.943333pt;}
.y62{bottom:286.077067pt;}
.y35{bottom:286.103733pt;}
.y86{bottom:286.103867pt;}
.y79{bottom:286.104000pt;}
.ye2{bottom:286.104267pt;}
.yc0{bottom:292.896533pt;}
.y98{bottom:292.896667pt;}
.y61{bottom:300.743733pt;}
.y34{bottom:300.770400pt;}
.y78{bottom:300.770667pt;}
.ye1{bottom:300.770933pt;}
.ya{bottom:306.382667pt;}
.y97{bottom:310.850000pt;}
.y60{bottom:315.410533pt;}
.y33{bottom:315.437200pt;}
.y77{bottom:315.437333pt;}
.ye0{bottom:315.437600pt;}
.ybf{bottom:328.803200pt;}
.y96{bottom:328.803333pt;}
.yd9{bottom:328.804400pt;}
.y5f{bottom:330.077200pt;}
.y32{bottom:330.103867pt;}
.y76{bottom:330.104000pt;}
.ydf{bottom:330.104267pt;}
.yd{bottom:343.546667pt;}
.y5e{bottom:344.743867pt;}
.y31{bottom:344.770533pt;}
.y75{bottom:344.770667pt;}
.yde{bottom:344.770933pt;}
.ybe{bottom:346.756533pt;}
.y95{bottom:346.756667pt;}
.yd8{bottom:346.757733pt;}
.y9{bottom:351.724000pt;}
.y5d{bottom:359.410533pt;}
.y74{bottom:359.437333pt;}
.ydd{bottom:359.437600pt;}
.ybd{bottom:364.709867pt;}
.y94{bottom:364.710000pt;}
.yd7{bottom:364.711067pt;}
.y5c{bottom:374.077200pt;}
.y73{bottom:374.104000pt;}
.ydc{bottom:374.104400pt;}
.yee{bottom:374.173333pt;}
.ybc{bottom:382.663200pt;}
.y93{bottom:382.663333pt;}
.y30{bottom:382.664533pt;}
.yb{bottom:386.533333pt;}
.y5b{bottom:388.743867pt;}
.y85{bottom:388.770667pt;}
.yca{bottom:388.770800pt;}
.yed{bottom:388.840000pt;}
.y8{bottom:397.065333pt;}
.y92{bottom:400.616667pt;}
.y2f{bottom:400.617733pt;}
.y5a{bottom:403.410533pt;}
.y84{bottom:403.437333pt;}
.yc9{bottom:403.437467pt;}
.yec{bottom:403.506667pt;}
.y83{bottom:418.104000pt;}
.ybb{bottom:418.569867pt;}
.y72{bottom:418.570000pt;}
.y2e{bottom:418.571067pt;}
.y82{bottom:432.770667pt;}
.y11{bottom:433.826667pt;}
.y71{bottom:436.523333pt;}
.y2d{bottom:436.524400pt;}
.y7{bottom:442.406667pt;}
.yd0{bottom:444.940000pt;}
.y59{bottom:454.476667pt;}
.y2c{bottom:454.477733pt;}
.ycf{bottom:459.606667pt;}
.y58{bottom:472.429867pt;}
.y2b{bottom:472.431067pt;}
.yce{bottom:474.273333pt;}
.y12{bottom:478.426667pt;}
.y6{bottom:487.748000pt;}
.ycd{bottom:488.940000pt;}
.yba{bottom:490.383200pt;}
.y57{bottom:490.383333pt;}
.y2a{bottom:490.384400pt;}
.ycc{bottom:503.606667pt;}
.yb9{bottom:508.336533pt;}
.y56{bottom:508.336667pt;}
.yd6{bottom:508.337200pt;}
.y29{bottom:508.337867pt;}
.ycb{bottom:518.273333pt;}
.y1b{bottom:524.093333pt;}
.yb8{bottom:526.289867pt;}
.y55{bottom:526.290000pt;}
.yd5{bottom:526.290533pt;}
.y28{bottom:526.291067pt;}
.y5{bottom:533.089333pt;}
.yb7{bottom:544.243200pt;}
.y54{bottom:544.243333pt;}
.yd4{bottom:544.243867pt;}
.y27{bottom:544.244400pt;}
.ye{bottom:561.706667pt;}
.y53{bottom:562.196667pt;}
.y26{bottom:562.197733pt;}
.y52{bottom:580.150000pt;}
.y25{bottom:580.151067pt;}
.y51{bottom:598.103333pt;}
.y24{bottom:598.104400pt;}
.y50{bottom:616.056667pt;}
.y23{bottom:616.057733pt;}
.y4f{bottom:634.010000pt;}
.y4e{bottom:651.963333pt;}
.yc6{bottom:658.536533pt;}
.y22{bottom:669.916667pt;}
.yc5{bottom:673.203200pt;}
.y4d{bottom:687.870000pt;}
.y4{bottom:691.756000pt;}
.y4c{bottom:705.823333pt;}
.y21{bottom:706.350000pt;}
.y4b{bottom:723.776667pt;}
.y13{bottom:725.040000pt;}
.y20{bottom:733.016667pt;}
.y4a{bottom:741.730000pt;}
.y1f{bottom:759.683333pt;}
.y49{bottom:777.636667pt;}
.y1e{bottom:795.589867pt;}
.y3{bottom:805.081333pt;}
.y48{bottom:831.496133pt;}
.y70{bottom:831.522667pt;}
.y2{bottom:857.092000pt;}
.y1{bottom:879.748000pt;}
.h11{height:22.031250pt;}
.h4{height:29.333333pt;}
.hb{height:29.354667pt;}
.hf{height:33.024000pt;}
.h10{height:37.248000pt;}
.h12{height:39.072000pt;}
.hc{height:40.362667pt;}
.he{height:45.525333pt;}
.h3{height:51.916667pt;}
.hd{height:56.832000pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.ha{height:888.000000pt;}
.h9{height:888.189333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w9{width:585.826667pt;}
.wa{width:586.000000pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xa{left:75.590533pt;}
.xc{left:90.708667pt;}
.x13{left:105.826800pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.xb{left:120.944933pt;}
.x14{left:151.181067pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.xf{left:322.381333pt;}
.xe{left:389.445307pt;}
.x11{left:398.013347pt;}
.x10{left:447.733320pt;}
.xd{left:464.397333pt;}
.x12{left:490.993733pt;}
.x15{left:492.372533pt;}
}




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