
    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_c54e2f3d90c84236d6089a08.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916504;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_5b4626300fedc201aeefe512.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.970215;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_53f1b6dacc58fbbf7d223f62.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_1b4f11f4faf394398f2a636a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.843750;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_5d92863789fcfcd3343e4f00.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.712000;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_5330ad379698530e8aad497f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.955000;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_0fae0c0092ec932cb44523f8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.117676;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_e51787af01ff2399104f428c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_a59a385220c0c1146204a72a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f4ef48bc5e8a6993517fa5ec.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_778404afc4622e0dbb7ef5c1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_321b0f3612c369156569b5d7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8562a254ac00fd4fc93caae8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2f{letter-spacing:-0.927360px;}
.ls3b{letter-spacing:-0.861120px;}
.ls3d{letter-spacing:-0.728640px;}
.lsb{letter-spacing:-0.662400px;}
.ls2d{letter-spacing:-0.633600px;}
.ls32{letter-spacing:-0.596160px;}
.ls3c{letter-spacing:-0.529920px;}
.ls26{letter-spacing:-0.432000px;}
.lsd{letter-spacing:-0.397440px;}
.ls28{letter-spacing:-0.378000px;}
.ls16{letter-spacing:-0.331200px;}
.ls2b{letter-spacing:-0.324000px;}
.ls1a{letter-spacing:-0.298800px;}
.ls25{letter-spacing:-0.270000px;}
.ls18{letter-spacing:-0.264960px;}
.ls14{letter-spacing:-0.239040px;}
.lse{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.198720px;}
.ls13{letter-spacing:-0.179280px;}
.ls2a{letter-spacing:-0.162000px;}
.ls1c{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.132480px;}
.ls1e{letter-spacing:-0.119520px;}
.ls19{letter-spacing:-0.072000px;}
.ls33{letter-spacing:-0.066240px;}
.ls12{letter-spacing:-0.059760px;}
.ls29{letter-spacing:-0.054000px;}
.lsa{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.054000px;}
.ls5{letter-spacing:0.059760px;}
.ls34{letter-spacing:0.063360px;}
.lsc{letter-spacing:0.066240px;}
.ls30{letter-spacing:0.080640px;}
.ls11{letter-spacing:0.095760px;}
.ls2{letter-spacing:0.108000px;}
.ls35{letter-spacing:0.118080px;}
.ls4{letter-spacing:0.119520px;}
.ls10{letter-spacing:0.132480px;}
.ls6{letter-spacing:0.179280px;}
.ls17{letter-spacing:0.198720px;}
.ls1d{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.239040px;}
.ls2e{letter-spacing:0.264960px;}
.ls2c{letter-spacing:0.270000px;}
.ls1f{letter-spacing:0.288000px;}
.ls36{letter-spacing:0.317952px;}
.ls27{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.331200px;}
.ls21{letter-spacing:0.378000px;}
.ls3a{letter-spacing:0.380160px;}
.ls7{letter-spacing:0.507960px;}
.ls3{letter-spacing:0.653760px;}
.ls24{letter-spacing:0.927360px;}
.ls8{letter-spacing:2.270880px;}
.ls23{letter-spacing:2.384640px;}
.ls38{letter-spacing:3.815424px;}
.ls22{letter-spacing:7.418880px;}
.ls31{letter-spacing:25.153920px;}
.ls39{letter-spacing:37.028160px;}
.ls1{letter-spacing:43.632000px;}
.ls37{letter-spacing:59.351040px;}
.ls9{letter-spacing:849.070080px;}
.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;}
}
.ws93{word-spacing:-66.240000px;}
.ws4d{word-spacing:-18.584640px;}
.ws7{word-spacing:-16.427520px;}
.wsd{word-spacing:-16.361280px;}
.wsc{word-spacing:-16.295040px;}
.wsa6{word-spacing:-15.523200px;}
.wsa7{word-spacing:-15.143040px;}
.ws10{word-spacing:-14.832000px;}
.ws3{word-spacing:-14.639040px;}
.ws4{word-spacing:-14.572800px;}
.ws4e{word-spacing:-14.509440px;}
.ws2{word-spacing:-14.175360px;}
.ws1{word-spacing:-13.910400px;}
.ws51{word-spacing:-13.711680px;}
.wse{word-spacing:-13.645440px;}
.ws6{word-spacing:-13.579200px;}
.ws5{word-spacing:-13.446720px;}
.ws50{word-spacing:-13.314240px;}
.ws4f{word-spacing:-13.181760px;}
.wsb2{word-spacing:-12.916800px;}
.wsb3{word-spacing:-12.850560px;}
.wsf{word-spacing:-12.370320px;}
.wsb{word-spacing:-12.310560px;}
.ws11{word-spacing:-12.250800px;}
.ws4b{word-spacing:-12.204000px;}
.wsa{word-spacing:-12.131280px;}
.ws9{word-spacing:-12.071520px;}
.ws8{word-spacing:-11.892240px;}
.ws47{word-spacing:-11.880000px;}
.ws4a{word-spacing:-11.826000px;}
.ws49{word-spacing:-11.610000px;}
.ws48{word-spacing:-11.502000px;}
.ws46{word-spacing:-11.448000px;}
.ws4c{word-spacing:-11.070000px;}
.ws59{word-spacing:-2.782080px;}
.ws6d{word-spacing:-2.517120px;}
.wsac{word-spacing:-2.252160px;}
.ws9a{word-spacing:-2.053440px;}
.wsb0{word-spacing:-1.788480px;}
.ws87{word-spacing:-1.656000px;}
.ws91{word-spacing:-1.523520px;}
.ws97{word-spacing:-1.324800px;}
.ws32{word-spacing:-1.254960px;}
.ws5b{word-spacing:-1.059840px;}
.ws13{word-spacing:-0.957600px;}
.ws9d{word-spacing:-0.927360px;}
.ws31{word-spacing:-0.836640px;}
.ws98{word-spacing:-0.823680px;}
.ws79{word-spacing:-0.794880px;}
.ws37{word-spacing:-0.776880px;}
.wsba{word-spacing:-0.728640px;}
.ws30{word-spacing:-0.717120px;}
.ws7f{word-spacing:-0.596160px;}
.ws38{word-spacing:-0.537840px;}
.ws57{word-spacing:-0.432000px;}
.ws20{word-spacing:-0.331200px;}
.ws53{word-spacing:-0.324000px;}
.ws14{word-spacing:-0.264960px;}
.ws54{word-spacing:-0.216000px;}
.ws16{word-spacing:-0.198720px;}
.ws23{word-spacing:-0.179280px;}
.ws27{word-spacing:-0.144000px;}
.ws82{word-spacing:-0.132480px;}
.ws85{word-spacing:-0.126720px;}
.ws29{word-spacing:-0.119520px;}
.ws1c{word-spacing:-0.108000px;}
.ws1e{word-spacing:-0.095760px;}
.ws15{word-spacing:-0.066240px;}
.ws0{word-spacing:-0.059760px;}
.ws12{word-spacing:0.000000px;}
.ws56{word-spacing:0.054000px;}
.ws44{word-spacing:0.059760px;}
.ws24{word-spacing:0.066240px;}
.ws1f{word-spacing:0.132480px;}
.ws2a{word-spacing:0.144000px;}
.ws21{word-spacing:0.179280px;}
.ws26{word-spacing:0.198720px;}
.ws19{word-spacing:0.216000px;}
.ws74{word-spacing:0.264960px;}
.ws22{word-spacing:0.298800px;}
.ws5a{word-spacing:0.331200px;}
.ws25{word-spacing:0.397440px;}
.ws28{word-spacing:0.418320px;}
.ws18{word-spacing:0.463680px;}
.ws73{word-spacing:0.529920px;}
.ws17{word-spacing:0.594000px;}
.wsad{word-spacing:0.596160px;}
.ws2d{word-spacing:0.597600px;}
.ws52{word-spacing:0.648000px;}
.ws55{word-spacing:0.702000px;}
.wsbd{word-spacing:0.728640px;}
.ws6a{word-spacing:0.794880px;}
.ws7c{word-spacing:0.861120px;}
.ws2e{word-spacing:0.896400px;}
.wsa0{word-spacing:0.927360px;}
.ws39{word-spacing:1.015920px;}
.ws58{word-spacing:1.059840px;}
.ws76{word-spacing:1.192320px;}
.ws2f{word-spacing:1.314720px;}
.ws6b{word-spacing:1.324800px;}
.ws69{word-spacing:1.523520px;}
.ws41{word-spacing:1.613520px;}
.ws89{word-spacing:1.788480px;}
.ws7e{word-spacing:1.920960px;}
.ws3d{word-spacing:2.091600px;}
.ws65{word-spacing:2.252160px;}
.ws3c{word-spacing:2.450160px;}
.ws64{word-spacing:2.517120px;}
.ws1d{word-spacing:2.777040px;}
.ws6f{word-spacing:2.980800px;}
.ws6c{word-spacing:3.245760px;}
.ws75{word-spacing:3.378240px;}
.ws70{word-spacing:3.510720px;}
.ws7a{word-spacing:3.709440px;}
.ws7b{word-spacing:3.974400px;}
.ws71{word-spacing:4.040640px;}
.ws5c{word-spacing:4.106880px;}
.ws45{word-spacing:4.183200px;}
.wsaa{word-spacing:4.239360px;}
.ws61{word-spacing:4.438080px;}
.ws3a{word-spacing:4.482000px;}
.ws60{word-spacing:4.703040px;}
.ws72{word-spacing:4.769280px;}
.wsaf{word-spacing:4.835520px;}
.ws96{word-spacing:4.968000px;}
.ws8a{word-spacing:5.166720px;}
.ws3e{word-spacing:5.318640px;}
.ws62{word-spacing:5.431680px;}
.ws8c{word-spacing:5.564160px;}
.ws9c{word-spacing:5.696640px;}
.ws8b{word-spacing:5.895360px;}
.ws7d{word-spacing:6.160320px;}
.ws77{word-spacing:6.292800px;}
.wsae{word-spacing:6.359040px;}
.ws63{word-spacing:6.822720px;}
.ws5d{word-spacing:6.955200px;}
.ws36{word-spacing:7.051680px;}
.ws5f{word-spacing:7.087680px;}
.ws5e{word-spacing:7.551360px;}
.wsa9{word-spacing:7.683840px;}
.ws2c{word-spacing:7.768800px;}
.ws43{word-spacing:7.888320px;}
.ws80{word-spacing:8.015040px;}
.ws33{word-spacing:8.067600px;}
.ws42{word-spacing:8.127360px;}
.ws88{word-spacing:8.544960px;}
.ws94{word-spacing:9.008640px;}
.ws3b{word-spacing:9.561600px;}
.ws81{word-spacing:9.737280px;}
.wsa2{word-spacing:10.465920px;}
.wsa1{word-spacing:10.598400px;}
.ws86{word-spacing:10.730880px;}
.ws9e{word-spacing:10.929600px;}
.ws40{word-spacing:10.995840px;}
.ws3f{word-spacing:11.055600px;}
.ws6e{word-spacing:11.194560px;}
.ws78{word-spacing:11.327040px;}
.ws66{word-spacing:11.658240px;}
.wsa8{word-spacing:12.320640px;}
.ws9f{word-spacing:12.585600px;}
.ws99{word-spacing:13.314240px;}
.wsb4{word-spacing:14.904000px;}
.ws95{word-spacing:15.235200px;}
.ws2b{word-spacing:15.298560px;}
.ws67{word-spacing:15.500160px;}
.ws92{word-spacing:15.963840px;}
.ws34{word-spacing:16.434000px;}
.ws35{word-spacing:16.732800px;}
.wsa3{word-spacing:16.957440px;}
.wsab{word-spacing:17.089920px;}
.ws8d{word-spacing:17.156160px;}
.ws8e{word-spacing:17.619840px;}
.wsb1{word-spacing:18.480960px;}
.ws68{word-spacing:18.613440px;}
.wsa4{word-spacing:19.209600px;}
.wsa5{word-spacing:19.540800px;}
.ws8f{word-spacing:22.919040px;}
.ws90{word-spacing:24.111360px;}
.ws84{word-spacing:24.456960px;}
.ws83{word-spacing:25.090560px;}
.ws9b{word-spacing:30.602880px;}
.wsb7{word-spacing:35.372160px;}
.wsb5{word-spacing:36.100800px;}
.wsb6{word-spacing:36.498240px;}
.ws1a{word-spacing:43.524000px;}
.ws1b{word-spacing:43.848000px;}
.wsbc{word-spacing:51.799680px;}
.wsbb{word-spacing:53.058240px;}
.wsb8{word-spacing:131.883840px;}
.wsb9{word-spacing:132.281280px;}
._7{margin-left:-2.284992px;}
._0{margin-left:-1.225728px;}
._1{width:1.803168px;}
._5{width:4.162464px;}
._4{width:15.908832px;}
._8{width:37.054944px;}
._2{width:43.772832px;}
._9{width:51.902784px;}
._3{width:708.536160px;}
._6{width:1262.401920px;}
.fc5{color:rgb(35,130,170);}
.fc3{color:rgb(0,112,192);}
.fc4{color:rgb(35,31,32);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(25,100,125);}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs0{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y45{bottom:0.900000px;}
.y7{bottom:4.680000px;}
.y9{bottom:10.620000px;}
.y4a{bottom:57.960000px;}
.y5{bottom:60.664500px;}
.y8{bottom:63.720000px;}
.ya{bottom:74.340000px;}
.y4{bottom:76.500000px;}
.y4b{bottom:77.040000px;}
.y49{bottom:77.940000px;}
.y4c{bottom:87.660000px;}
.y48{bottom:94.320000px;}
.y3{bottom:95.220000px;}
.y47{bottom:118.260000px;}
.y43{bottom:155.156220px;}
.yd5{bottom:156.918960px;}
.yaa{bottom:158.919840px;}
.y7b{bottom:161.956080px;}
.yd4{bottom:179.606160px;}
.y42{bottom:180.353520px;}
.ya9{bottom:181.607040px;}
.y7a{bottom:184.643280px;}
.yf6{bottom:184.981680px;}
.y116{bottom:197.098560px;}
.yd3{bottom:202.293360px;}
.y41{bottom:202.853160px;}
.ya8{bottom:204.459840px;}
.yf5{bottom:207.834480px;}
.y79{bottom:216.322560px;}
.y40{bottom:223.560000px;}
.yd2{bottom:225.146160px;}
.ya7{bottom:227.147040px;}
.y115{bottom:228.960000px;}
.yf4{bottom:230.521680px;}
.y78{bottom:239.009760px;}
.y3f{bottom:246.240000px;}
.yf3{bottom:253.208880px;}
.yd1{bottom:256.825440px;}
.ya6{bottom:258.826320px;}
.y77{bottom:261.862560px;}
.y114{bottom:263.160000px;}
.y3e{bottom:266.753160px;}
.yd0{bottom:279.678240px;}
.ya5{bottom:281.679120px;}
.y76{bottom:284.549760px;}
.yf2{bottom:285.070320px;}
.y3d{bottom:287.460000px;}
.ya4{bottom:304.366320px;}
.y113{bottom:307.206720px;}
.y75{bottom:307.236960px;}
.yf1{bottom:307.757520px;}
.ycf{bottom:312.798240px;}
.y3c{bottom:319.500000px;}
.ya3{bottom:327.053520px;}
.y112{bottom:330.059520px;}
.y74{bottom:330.089760px;}
.yf0{bottom:330.444720px;}
.yce{bottom:335.485440px;}
.ya2{bottom:349.906320px;}
.y3b{bottom:351.891360px;}
.y111{bottom:352.746720px;}
.y73{bottom:352.776960px;}
.yef{bottom:362.306160px;}
.ycd{bottom:368.787600px;}
.ya1{bottom:372.593520px;}
.y3a{bottom:373.853160px;}
.y110{bottom:375.433920px;}
.y72{bottom:375.464160px;}
.yee{bottom:384.993360px;}
.ycc{bottom:391.474800px;}
.y39{bottom:395.994240px;}
.ya0{bottom:404.272800px;}
.y10f{bottom:407.295360px;}
.y71{bottom:407.325600px;}
.yed{bottom:407.680560px;}
.y38{bottom:417.956040px;}
.y31{bottom:418.662000px;}
.ycb{bottom:424.594800px;}
.y9f{bottom:427.125600px;}
.y10e{bottom:429.982560px;}
.y70{bottom:430.012800px;}
.yec{bottom:430.533360px;}
.y37{bottom:440.097120px;}
.yca{bottom:447.447600px;}
.y30{bottom:447.466320px;}
.y9e{bottom:449.812800px;}
.y10d{bottom:452.669760px;}
.y6f{bottom:452.700000px;}
.y36{bottom:462.058920px;}
.yeb{bottom:462.212640px;}
.y9d{bottom:472.500000px;}
.y10c{bottom:475.522560px;}
.y6e{bottom:475.552800px;}
.y2f{bottom:476.270640px;}
.yc9{bottom:480.567600px;}
.y35{bottom:484.200000px;}
.yea{bottom:484.899840px;}
.y10b{bottom:498.209760px;}
.y6d{bottom:498.240000px;}
.y9c{bottom:504.352800px;}
.y2e{bottom:505.074960px;}
.y34{bottom:506.161800px;}
.ye9{bottom:507.752640px;}
.yc8{bottom:512.246880px;}
.y10a{bottom:520.896960px;}
.y9b{bottom:527.040000px;}
.y33{bottom:528.302880px;}
.y6c{bottom:529.920000px;}
.ye8{bottom:530.439840px;}
.y2d{bottom:533.700000px;}
.yc7{bottom:535.099680px;}
.y9a{bottom:549.727200px;}
.y32{bottom:550.264680px;}
.y109{bottom:552.758400px;}
.y6b{bottom:552.772800px;}
.ye7{bottom:553.127040px;}
.yc6{bottom:568.219680px;}
.y99{bottom:572.580000px;}
.y2c{bottom:573.840000px;}
.y108{bottom:575.445600px;}
.y6a{bottom:575.460000px;}
.ye6{bottom:575.979840px;}
.yc5{bottom:591.072480px;}
.y69{bottom:598.132800px;}
.ye5{bottom:598.667040px;}
.y98{bottom:604.252800px;}
.y2b{bottom:607.853880px;}
.y68{bottom:620.985600px;}
.yc4{bottom:624.192480px;}
.y97{bottom:626.940000px;}
.ye4{bottom:630.346320px;}
.y2a{bottom:638.809560px;}
.y67{bottom:643.672800px;}
.yc3{bottom:646.879680px;}
.y96{bottom:649.792800px;}
.ye3{bottom:653.199120px;}
.y29{bottom:660.771360px;}
.y66{bottom:666.360000px;}
.y95{bottom:672.480000px;}
.yc2{bottom:680.181840px;}
.y28{bottom:682.912440px;}
.ye2{bottom:684.878400px;}
.y94{bottom:695.167200px;}
.y65{bottom:698.205600px;}
.y1f{bottom:698.916960px;}
.y107{bottom:700.740000px;}
.y27{bottom:704.874240px;}
.yc1{bottom:711.861120px;}
.ye1{bottom:716.557680px;}
.y93{bottom:718.020000px;}
.y64{bottom:720.892800px;}
.y26{bottom:727.015320px;}
.y1e{bottom:727.542000px;}
.yc0{bottom:734.548320px;}
.y92{bottom:740.700000px;}
.y63{bottom:743.580000px;}
.y106{bottom:744.804720px;}
.ye0{bottom:748.419120px;}
.y25{bottom:748.977120px;}
.y1d{bottom:756.346320px;}
.ybf{bottom:766.409760px;}
.y62{bottom:766.432800px;}
.y105{bottom:767.491920px;}
.y24{bottom:770.938920px;}
.y91{bottom:772.372800px;}
.ydf{bottom:780.098400px;}
.y1c{bottom:785.150640px;}
.ybe{bottom:789.096960px;}
.y61{bottom:789.120000px;}
.y104{bottom:790.344720px;}
.y23{bottom:793.080000px;}
.y90{bottom:795.225600px;}
.yde{bottom:802.785600px;}
.y60{bottom:811.777680px;}
.ybd{bottom:811.784160px;}
.y103{bottom:813.031920px;}
.y1b{bottom:813.775680px;}
.y22{bottom:815.041800px;}
.y8f{bottom:817.912800px;}
.ydd{bottom:834.647040px;}
.y102{bottom:835.719120px;}
.y21{bottom:837.003600px;}
.y8e{bottom:840.600000px;}
.y1a{bottom:842.580000px;}
.y5f{bottom:843.639120px;}
.ybc{bottom:843.645600px;}
.ydc{bottom:857.334240px;}
.y101{bottom:858.571920px;}
.y20{bottom:859.144680px;}
.y5e{bottom:866.326320px;}
.ybb{bottom:866.332800px;}
.y8d{bottom:874.984320px;}
.y19{bottom:882.720000px;}
.y5d{bottom:889.013520px;}
.yba{bottom:889.020000px;}
.y100{bottom:890.251200px;}
.y8c{bottom:900.360000px;}
.y5c{bottom:911.866320px;}
.yb9{bottom:911.872800px;}
.yff{bottom:912.938400px;}
.y122{bottom:913.319280px;}
.y18{bottom:915.840000px;}
.yb8{bottom:934.560000px;}
.yfe{bottom:935.791200px;}
.y5b{bottom:943.545600px;}
.y8b{bottom:944.805600px;}
.y121{bottom:944.998560px;}
.y17{bottom:945.362340px;}
.yfd{bottom:958.478400px;}
.y16{bottom:964.620000px;}
.y5a{bottom:966.232800px;}
.y8a{bottom:967.492800px;}
.yb7{bottom:968.760000px;}
.y120{bottom:976.860000px;}
.y15{bottom:982.800000px;}
.y59{bottom:989.085600px;}
.yfc{bottom:990.157680px;}
.y89{bottom:990.180000px;}
.y11f{bottom:1008.540000px;}
.y58{bottom:1011.772800px;}
.y14{bottom:1012.682340px;}
.yfb{bottom:1013.010480px;}
.yb6{bottom:1013.027040px;}
.y88{bottom:1022.025600px;}
.y11e{bottom:1031.392080px;}
.y13{bottom:1031.940000px;}
.y57{bottom:1034.460000px;}
.yfa{bottom:1035.697680px;}
.yb5{bottom:1035.714240px;}
.y87{bottom:1044.712800px;}
.y12{bottom:1050.300000px;}
.y11d{bottom:1054.079280px;}
.ydb{bottom:1057.312800px;}
.yf9{bottom:1058.384880px;}
.yb4{bottom:1058.401440px;}
.y56{bottom:1066.320000px;}
.y86{bottom:1067.400000px;}
.yda{bottom:1080.000000px;}
.y11{bottom:1080.182340px;}
.yb3{bottom:1081.254240px;}
.y11c{bottom:1085.758560px;}
.y55{bottom:1088.986320px;}
.yf8{bottom:1090.246320px;}
.y85{bottom:1090.252800px;}
.y10{bottom:1099.440000px;}
.y54{bottom:1111.673520px;}
.yb2{bottom:1112.933520px;}
.y84{bottom:1112.940000px;}
.yd9{bottom:1114.200000px;}
.y11b{bottom:1117.620000px;}
.yf{bottom:1117.800000px;}
.y83{bottom:1135.620000px;}
.yb1{bottom:1135.620720px;}
.y53{bottom:1143.352800px;}
.y11a{bottom:1149.307200px;}
.yd8{bottom:1158.456960px;}
.yb0{bottom:1158.473520px;}
.ye{bottom:1162.450980px;}
.y52{bottom:1166.205600px;}
.y82{bottom:1167.458400px;}
.y119{bottom:1172.160000px;}
.yd7{bottom:1181.144160px;}
.yaf{bottom:1181.160720px;}
.y51{bottom:1188.892800px;}
.y81{bottom:1190.145600px;}
.yf7{bottom:1190.152800px;}
.yd{bottom:1195.560000px;}
.yd6{bottom:1203.831360px;}
.y118{bottom:1203.832800px;}
.y50{bottom:1211.580000px;}
.y80{bottom:1212.832800px;}
.yae{bottom:1212.840000px;}
.y117{bottom:1226.520000px;}
.y4f{bottom:1234.432800px;}
.y7f{bottom:1235.685600px;}
.yad{bottom:1235.692800px;}
.yc{bottom:1238.940000px;}
.y4e{bottom:1257.120000px;}
.y7e{bottom:1258.372800px;}
.yac{bottom:1258.380000px;}
.y44{bottom:1261.440000px;}
.yb{bottom:1276.200000px;}
.y7d{bottom:1281.060000px;}
.yab{bottom:1281.067200px;}
.y4d{bottom:1291.500000px;}
.y7c{bottom:1303.920000px;}
.y6{bottom:1304.100000px;}
.y2{bottom:1306.980000px;}
.y1{bottom:1328.040000px;}
.y46{bottom:1335.780000px;}
.h6{height:19.800000px;}
.h13{height:34.918500px;}
.h7{height:34.920000px;}
.h5{height:38.206055px;}
.h12{height:39.240000px;}
.h4{height:40.500000px;}
.he{height:42.429600px;}
.h9{height:44.820000px;}
.h2{height:46.639687px;}
.h11{height:46.665608px;}
.h3{height:49.680000px;}
.h18{height:49.708800px;}
.h1a{height:49.711680px;}
.h15{height:49.734720px;}
.h17{height:49.737600px;}
.h16{height:49.769280px;}
.h10{height:51.120000px;}
.hf{height:54.000000px;}
.hd{height:57.765937px;}
.h8{height:67.032000px;}
.h1{height:67.424766px;}
.hc{height:67.989600px;}
.h19{height:68.326470px;}
.h14{height:68.343750px;}
.ha{height:76.680000px;}
.hb{height:81.000000px;}
.h0{height:1404.000000px;}
.w2{width:48.418500px;}
.w3{width:130.680000px;}
.w1{width:142.918500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:10.800000px;}
.x2{left:84.960000px;}
.x1{left:102.960000px;}
.xf{left:106.020000px;}
.x12{left:111.936240px;}
.xd{left:118.800000px;}
.x9{left:127.440000px;}
.x11{left:134.995500px;}
.xa{left:138.615120px;}
.xb{left:263.520000px;}
.x3{left:525.240000px;}
.xc{left:715.320000px;}
.x5{left:719.100000px;}
.x10{left:741.240000px;}
.x4{left:828.720000px;}
.xe{left:832.860000px;}
.x7{left:842.760000px;}
.x8{left:853.920000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2f{letter-spacing:-0.824320pt;}
.ls3b{letter-spacing:-0.765440pt;}
.ls3d{letter-spacing:-0.647680pt;}
.lsb{letter-spacing:-0.588800pt;}
.ls2d{letter-spacing:-0.563200pt;}
.ls32{letter-spacing:-0.529920pt;}
.ls3c{letter-spacing:-0.471040pt;}
.ls26{letter-spacing:-0.384000pt;}
.lsd{letter-spacing:-0.353280pt;}
.ls28{letter-spacing:-0.336000pt;}
.ls16{letter-spacing:-0.294400pt;}
.ls2b{letter-spacing:-0.288000pt;}
.ls1a{letter-spacing:-0.265600pt;}
.ls25{letter-spacing:-0.240000pt;}
.ls18{letter-spacing:-0.235520pt;}
.ls14{letter-spacing:-0.212480pt;}
.lse{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.176640pt;}
.ls13{letter-spacing:-0.159360pt;}
.ls2a{letter-spacing:-0.144000pt;}
.ls1c{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.117760pt;}
.ls1e{letter-spacing:-0.106240pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls33{letter-spacing:-0.058880pt;}
.ls12{letter-spacing:-0.053120pt;}
.ls29{letter-spacing:-0.048000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.048000pt;}
.ls5{letter-spacing:0.053120pt;}
.ls34{letter-spacing:0.056320pt;}
.lsc{letter-spacing:0.058880pt;}
.ls30{letter-spacing:0.071680pt;}
.ls11{letter-spacing:0.085120pt;}
.ls2{letter-spacing:0.096000pt;}
.ls35{letter-spacing:0.104960pt;}
.ls4{letter-spacing:0.106240pt;}
.ls10{letter-spacing:0.117760pt;}
.ls6{letter-spacing:0.159360pt;}
.ls17{letter-spacing:0.176640pt;}
.ls1d{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.212480pt;}
.ls2e{letter-spacing:0.235520pt;}
.ls2c{letter-spacing:0.240000pt;}
.ls1f{letter-spacing:0.256000pt;}
.ls36{letter-spacing:0.282624pt;}
.ls27{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.294400pt;}
.ls21{letter-spacing:0.336000pt;}
.ls3a{letter-spacing:0.337920pt;}
.ls7{letter-spacing:0.451520pt;}
.ls3{letter-spacing:0.581120pt;}
.ls24{letter-spacing:0.824320pt;}
.ls8{letter-spacing:2.018560pt;}
.ls23{letter-spacing:2.119680pt;}
.ls38{letter-spacing:3.391488pt;}
.ls22{letter-spacing:6.594560pt;}
.ls31{letter-spacing:22.359040pt;}
.ls39{letter-spacing:32.913920pt;}
.ls1{letter-spacing:38.784000pt;}
.ls37{letter-spacing:52.756480pt;}
.ls9{letter-spacing:754.728960pt;}
.ws93{word-spacing:-58.880000pt;}
.ws4d{word-spacing:-16.519680pt;}
.ws7{word-spacing:-14.602240pt;}
.wsd{word-spacing:-14.543360pt;}
.wsc{word-spacing:-14.484480pt;}
.wsa6{word-spacing:-13.798400pt;}
.wsa7{word-spacing:-13.460480pt;}
.ws10{word-spacing:-13.184000pt;}
.ws3{word-spacing:-13.012480pt;}
.ws4{word-spacing:-12.953600pt;}
.ws4e{word-spacing:-12.897280pt;}
.ws2{word-spacing:-12.600320pt;}
.ws1{word-spacing:-12.364800pt;}
.ws51{word-spacing:-12.188160pt;}
.wse{word-spacing:-12.129280pt;}
.ws6{word-spacing:-12.070400pt;}
.ws5{word-spacing:-11.952640pt;}
.ws50{word-spacing:-11.834880pt;}
.ws4f{word-spacing:-11.717120pt;}
.wsb2{word-spacing:-11.481600pt;}
.wsb3{word-spacing:-11.422720pt;}
.wsf{word-spacing:-10.995840pt;}
.wsb{word-spacing:-10.942720pt;}
.ws11{word-spacing:-10.889600pt;}
.ws4b{word-spacing:-10.848000pt;}
.wsa{word-spacing:-10.783360pt;}
.ws9{word-spacing:-10.730240pt;}
.ws8{word-spacing:-10.570880pt;}
.ws47{word-spacing:-10.560000pt;}
.ws4a{word-spacing:-10.512000pt;}
.ws49{word-spacing:-10.320000pt;}
.ws48{word-spacing:-10.224000pt;}
.ws46{word-spacing:-10.176000pt;}
.ws4c{word-spacing:-9.840000pt;}
.ws59{word-spacing:-2.472960pt;}
.ws6d{word-spacing:-2.237440pt;}
.wsac{word-spacing:-2.001920pt;}
.ws9a{word-spacing:-1.825280pt;}
.wsb0{word-spacing:-1.589760pt;}
.ws87{word-spacing:-1.472000pt;}
.ws91{word-spacing:-1.354240pt;}
.ws97{word-spacing:-1.177600pt;}
.ws32{word-spacing:-1.115520pt;}
.ws5b{word-spacing:-0.942080pt;}
.ws13{word-spacing:-0.851200pt;}
.ws9d{word-spacing:-0.824320pt;}
.ws31{word-spacing:-0.743680pt;}
.ws98{word-spacing:-0.732160pt;}
.ws79{word-spacing:-0.706560pt;}
.ws37{word-spacing:-0.690560pt;}
.wsba{word-spacing:-0.647680pt;}
.ws30{word-spacing:-0.637440pt;}
.ws7f{word-spacing:-0.529920pt;}
.ws38{word-spacing:-0.478080pt;}
.ws57{word-spacing:-0.384000pt;}
.ws20{word-spacing:-0.294400pt;}
.ws53{word-spacing:-0.288000pt;}
.ws14{word-spacing:-0.235520pt;}
.ws54{word-spacing:-0.192000pt;}
.ws16{word-spacing:-0.176640pt;}
.ws23{word-spacing:-0.159360pt;}
.ws27{word-spacing:-0.128000pt;}
.ws82{word-spacing:-0.117760pt;}
.ws85{word-spacing:-0.112640pt;}
.ws29{word-spacing:-0.106240pt;}
.ws1c{word-spacing:-0.096000pt;}
.ws1e{word-spacing:-0.085120pt;}
.ws15{word-spacing:-0.058880pt;}
.ws0{word-spacing:-0.053120pt;}
.ws12{word-spacing:0.000000pt;}
.ws56{word-spacing:0.048000pt;}
.ws44{word-spacing:0.053120pt;}
.ws24{word-spacing:0.058880pt;}
.ws1f{word-spacing:0.117760pt;}
.ws2a{word-spacing:0.128000pt;}
.ws21{word-spacing:0.159360pt;}
.ws26{word-spacing:0.176640pt;}
.ws19{word-spacing:0.192000pt;}
.ws74{word-spacing:0.235520pt;}
.ws22{word-spacing:0.265600pt;}
.ws5a{word-spacing:0.294400pt;}
.ws25{word-spacing:0.353280pt;}
.ws28{word-spacing:0.371840pt;}
.ws18{word-spacing:0.412160pt;}
.ws73{word-spacing:0.471040pt;}
.ws17{word-spacing:0.528000pt;}
.wsad{word-spacing:0.529920pt;}
.ws2d{word-spacing:0.531200pt;}
.ws52{word-spacing:0.576000pt;}
.ws55{word-spacing:0.624000pt;}
.wsbd{word-spacing:0.647680pt;}
.ws6a{word-spacing:0.706560pt;}
.ws7c{word-spacing:0.765440pt;}
.ws2e{word-spacing:0.796800pt;}
.wsa0{word-spacing:0.824320pt;}
.ws39{word-spacing:0.903040pt;}
.ws58{word-spacing:0.942080pt;}
.ws76{word-spacing:1.059840pt;}
.ws2f{word-spacing:1.168640pt;}
.ws6b{word-spacing:1.177600pt;}
.ws69{word-spacing:1.354240pt;}
.ws41{word-spacing:1.434240pt;}
.ws89{word-spacing:1.589760pt;}
.ws7e{word-spacing:1.707520pt;}
.ws3d{word-spacing:1.859200pt;}
.ws65{word-spacing:2.001920pt;}
.ws3c{word-spacing:2.177920pt;}
.ws64{word-spacing:2.237440pt;}
.ws1d{word-spacing:2.468480pt;}
.ws6f{word-spacing:2.649600pt;}
.ws6c{word-spacing:2.885120pt;}
.ws75{word-spacing:3.002880pt;}
.ws70{word-spacing:3.120640pt;}
.ws7a{word-spacing:3.297280pt;}
.ws7b{word-spacing:3.532800pt;}
.ws71{word-spacing:3.591680pt;}
.ws5c{word-spacing:3.650560pt;}
.ws45{word-spacing:3.718400pt;}
.wsaa{word-spacing:3.768320pt;}
.ws61{word-spacing:3.944960pt;}
.ws3a{word-spacing:3.984000pt;}
.ws60{word-spacing:4.180480pt;}
.ws72{word-spacing:4.239360pt;}
.wsaf{word-spacing:4.298240pt;}
.ws96{word-spacing:4.416000pt;}
.ws8a{word-spacing:4.592640pt;}
.ws3e{word-spacing:4.727680pt;}
.ws62{word-spacing:4.828160pt;}
.ws8c{word-spacing:4.945920pt;}
.ws9c{word-spacing:5.063680pt;}
.ws8b{word-spacing:5.240320pt;}
.ws7d{word-spacing:5.475840pt;}
.ws77{word-spacing:5.593600pt;}
.wsae{word-spacing:5.652480pt;}
.ws63{word-spacing:6.064640pt;}
.ws5d{word-spacing:6.182400pt;}
.ws36{word-spacing:6.268160pt;}
.ws5f{word-spacing:6.300160pt;}
.ws5e{word-spacing:6.712320pt;}
.wsa9{word-spacing:6.830080pt;}
.ws2c{word-spacing:6.905600pt;}
.ws43{word-spacing:7.011840pt;}
.ws80{word-spacing:7.124480pt;}
.ws33{word-spacing:7.171200pt;}
.ws42{word-spacing:7.224320pt;}
.ws88{word-spacing:7.595520pt;}
.ws94{word-spacing:8.007680pt;}
.ws3b{word-spacing:8.499200pt;}
.ws81{word-spacing:8.655360pt;}
.wsa2{word-spacing:9.303040pt;}
.wsa1{word-spacing:9.420800pt;}
.ws86{word-spacing:9.538560pt;}
.ws9e{word-spacing:9.715200pt;}
.ws40{word-spacing:9.774080pt;}
.ws3f{word-spacing:9.827200pt;}
.ws6e{word-spacing:9.950720pt;}
.ws78{word-spacing:10.068480pt;}
.ws66{word-spacing:10.362880pt;}
.wsa8{word-spacing:10.951680pt;}
.ws9f{word-spacing:11.187200pt;}
.ws99{word-spacing:11.834880pt;}
.wsb4{word-spacing:13.248000pt;}
.ws95{word-spacing:13.542400pt;}
.ws2b{word-spacing:13.598720pt;}
.ws67{word-spacing:13.777920pt;}
.ws92{word-spacing:14.190080pt;}
.ws34{word-spacing:14.608000pt;}
.ws35{word-spacing:14.873600pt;}
.wsa3{word-spacing:15.073280pt;}
.wsab{word-spacing:15.191040pt;}
.ws8d{word-spacing:15.249920pt;}
.ws8e{word-spacing:15.662080pt;}
.wsb1{word-spacing:16.427520pt;}
.ws68{word-spacing:16.545280pt;}
.wsa4{word-spacing:17.075200pt;}
.wsa5{word-spacing:17.369600pt;}
.ws8f{word-spacing:20.372480pt;}
.ws90{word-spacing:21.432320pt;}
.ws84{word-spacing:21.739520pt;}
.ws83{word-spacing:22.302720pt;}
.ws9b{word-spacing:27.202560pt;}
.wsb7{word-spacing:31.441920pt;}
.wsb5{word-spacing:32.089600pt;}
.wsb6{word-spacing:32.442880pt;}
.ws1a{word-spacing:38.688000pt;}
.ws1b{word-spacing:38.976000pt;}
.wsbc{word-spacing:46.044160pt;}
.wsbb{word-spacing:47.162880pt;}
.wsb8{word-spacing:117.230080pt;}
.wsb9{word-spacing:117.583360pt;}
._7{margin-left:-2.031104pt;}
._0{margin-left:-1.089536pt;}
._1{width:1.602816pt;}
._5{width:3.699968pt;}
._4{width:14.141184pt;}
._8{width:32.937728pt;}
._2{width:38.909184pt;}
._9{width:46.135808pt;}
._3{width:629.809920pt;}
._6{width:1122.135040pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs0{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:0.800000pt;}
.y7{bottom:4.160000pt;}
.y9{bottom:9.440000pt;}
.y4a{bottom:51.520000pt;}
.y5{bottom:53.924000pt;}
.y8{bottom:56.640000pt;}
.ya{bottom:66.080000pt;}
.y4{bottom:68.000000pt;}
.y4b{bottom:68.480000pt;}
.y49{bottom:69.280000pt;}
.y4c{bottom:77.920000pt;}
.y48{bottom:83.840000pt;}
.y3{bottom:84.640000pt;}
.y47{bottom:105.120000pt;}
.y43{bottom:137.916640pt;}
.yd5{bottom:139.483520pt;}
.yaa{bottom:141.262080pt;}
.y7b{bottom:143.960960pt;}
.yd4{bottom:159.649920pt;}
.y42{bottom:160.314240pt;}
.ya9{bottom:161.428480pt;}
.y7a{bottom:164.127360pt;}
.yf6{bottom:164.428160pt;}
.y116{bottom:175.198720pt;}
.yd3{bottom:179.816320pt;}
.y41{bottom:180.313920pt;}
.ya8{bottom:181.742080pt;}
.yf5{bottom:184.741760pt;}
.y79{bottom:192.286720pt;}
.y40{bottom:198.720000pt;}
.yd2{bottom:200.129920pt;}
.ya7{bottom:201.908480pt;}
.y115{bottom:203.520000pt;}
.yf4{bottom:204.908160pt;}
.y78{bottom:212.453120pt;}
.y3f{bottom:218.880000pt;}
.yf3{bottom:225.074560pt;}
.yd1{bottom:228.289280pt;}
.ya6{bottom:230.067840pt;}
.y77{bottom:232.766720pt;}
.y114{bottom:233.920000pt;}
.y3e{bottom:237.113920pt;}
.yd0{bottom:248.602880pt;}
.ya5{bottom:250.381440pt;}
.y76{bottom:252.933120pt;}
.yf2{bottom:253.395840pt;}
.y3d{bottom:255.520000pt;}
.ya4{bottom:270.547840pt;}
.y113{bottom:273.072640pt;}
.y75{bottom:273.099520pt;}
.yf1{bottom:273.562240pt;}
.ycf{bottom:278.042880pt;}
.y3c{bottom:284.000000pt;}
.ya3{bottom:290.714240pt;}
.y112{bottom:293.386240pt;}
.y74{bottom:293.413120pt;}
.yf0{bottom:293.728640pt;}
.yce{bottom:298.209280pt;}
.ya2{bottom:311.027840pt;}
.y3b{bottom:312.792320pt;}
.y111{bottom:313.552640pt;}
.y73{bottom:313.579520pt;}
.yef{bottom:322.049920pt;}
.ycd{bottom:327.811200pt;}
.ya1{bottom:331.194240pt;}
.y3a{bottom:332.313920pt;}
.y110{bottom:333.719040pt;}
.y72{bottom:333.745920pt;}
.yee{bottom:342.216320pt;}
.ycc{bottom:347.977600pt;}
.y39{bottom:351.994880pt;}
.ya0{bottom:359.353600pt;}
.y10f{bottom:362.040320pt;}
.y71{bottom:362.067200pt;}
.yed{bottom:362.382720pt;}
.y38{bottom:371.516480pt;}
.y31{bottom:372.144000pt;}
.ycb{bottom:377.417600pt;}
.y9f{bottom:379.667200pt;}
.y10e{bottom:382.206720pt;}
.y70{bottom:382.233600pt;}
.yec{bottom:382.696320pt;}
.y37{bottom:391.197440pt;}
.yca{bottom:397.731200pt;}
.y30{bottom:397.747840pt;}
.y9e{bottom:399.833600pt;}
.y10d{bottom:402.373120pt;}
.y6f{bottom:402.400000pt;}
.y36{bottom:410.719040pt;}
.yeb{bottom:410.855680pt;}
.y9d{bottom:420.000000pt;}
.y10c{bottom:422.686720pt;}
.y6e{bottom:422.713600pt;}
.y2f{bottom:423.351680pt;}
.yc9{bottom:427.171200pt;}
.y35{bottom:430.400000pt;}
.yea{bottom:431.022080pt;}
.y10b{bottom:442.853120pt;}
.y6d{bottom:442.880000pt;}
.y9c{bottom:448.313600pt;}
.y2e{bottom:448.955520pt;}
.y34{bottom:449.921600pt;}
.ye9{bottom:451.335680pt;}
.yc8{bottom:455.330560pt;}
.y10a{bottom:463.019520pt;}
.y9b{bottom:468.480000pt;}
.y33{bottom:469.602560pt;}
.y6c{bottom:471.040000pt;}
.ye8{bottom:471.502080pt;}
.y2d{bottom:474.400000pt;}
.yc7{bottom:475.644160pt;}
.y9a{bottom:488.646400pt;}
.y32{bottom:489.124160pt;}
.y109{bottom:491.340800pt;}
.y6b{bottom:491.353600pt;}
.ye7{bottom:491.668480pt;}
.yc6{bottom:505.084160pt;}
.y99{bottom:508.960000pt;}
.y2c{bottom:510.080000pt;}
.y108{bottom:511.507200pt;}
.y6a{bottom:511.520000pt;}
.ye6{bottom:511.982080pt;}
.yc5{bottom:525.397760pt;}
.y69{bottom:531.673600pt;}
.ye5{bottom:532.148480pt;}
.y98{bottom:537.113600pt;}
.y2b{bottom:540.314560pt;}
.y68{bottom:551.987200pt;}
.yc4{bottom:554.837760pt;}
.y97{bottom:557.280000pt;}
.ye4{bottom:560.307840pt;}
.y2a{bottom:567.830720pt;}
.y67{bottom:572.153600pt;}
.yc3{bottom:575.004160pt;}
.y96{bottom:577.593600pt;}
.ye3{bottom:580.621440pt;}
.y29{bottom:587.352320pt;}
.y66{bottom:592.320000pt;}
.y95{bottom:597.760000pt;}
.yc2{bottom:604.606080pt;}
.y28{bottom:607.033280pt;}
.ye2{bottom:608.780800pt;}
.y94{bottom:617.926400pt;}
.y65{bottom:620.627200pt;}
.y1f{bottom:621.259520pt;}
.y107{bottom:622.880000pt;}
.y27{bottom:626.554880pt;}
.yc1{bottom:632.765440pt;}
.ye1{bottom:636.940160pt;}
.y93{bottom:638.240000pt;}
.y64{bottom:640.793600pt;}
.y26{bottom:646.235840pt;}
.y1e{bottom:646.704000pt;}
.yc0{bottom:652.931840pt;}
.y92{bottom:658.400000pt;}
.y63{bottom:660.960000pt;}
.y106{bottom:662.048640pt;}
.ye0{bottom:665.261440pt;}
.y25{bottom:665.757440pt;}
.y1d{bottom:672.307840pt;}
.ybf{bottom:681.253120pt;}
.y62{bottom:681.273600pt;}
.y105{bottom:682.215040pt;}
.y24{bottom:685.279040pt;}
.y91{bottom:686.553600pt;}
.ydf{bottom:693.420800pt;}
.y1c{bottom:697.911680pt;}
.ybe{bottom:701.419520pt;}
.y61{bottom:701.440000pt;}
.y104{bottom:702.528640pt;}
.y23{bottom:704.960000pt;}
.y90{bottom:706.867200pt;}
.yde{bottom:713.587200pt;}
.y60{bottom:721.580160pt;}
.ybd{bottom:721.585920pt;}
.y103{bottom:722.695040pt;}
.y1b{bottom:723.356160pt;}
.y22{bottom:724.481600pt;}
.y8f{bottom:727.033600pt;}
.ydd{bottom:741.908480pt;}
.y102{bottom:742.861440pt;}
.y21{bottom:744.003200pt;}
.y8e{bottom:747.200000pt;}
.y1a{bottom:748.960000pt;}
.y5f{bottom:749.901440pt;}
.ybc{bottom:749.907200pt;}
.ydc{bottom:762.074880pt;}
.y101{bottom:763.175040pt;}
.y20{bottom:763.684160pt;}
.y5e{bottom:770.067840pt;}
.ybb{bottom:770.073600pt;}
.y8d{bottom:777.763840pt;}
.y19{bottom:784.640000pt;}
.y5d{bottom:790.234240pt;}
.yba{bottom:790.240000pt;}
.y100{bottom:791.334400pt;}
.y8c{bottom:800.320000pt;}
.y5c{bottom:810.547840pt;}
.yb9{bottom:810.553600pt;}
.yff{bottom:811.500800pt;}
.y122{bottom:811.839360pt;}
.y18{bottom:814.080000pt;}
.yb8{bottom:830.720000pt;}
.yfe{bottom:831.814400pt;}
.y5b{bottom:838.707200pt;}
.y8b{bottom:839.827200pt;}
.y121{bottom:839.998720pt;}
.y17{bottom:840.322080pt;}
.yfd{bottom:851.980800pt;}
.y16{bottom:857.440000pt;}
.y5a{bottom:858.873600pt;}
.y8a{bottom:859.993600pt;}
.yb7{bottom:861.120000pt;}
.y120{bottom:868.320000pt;}
.y15{bottom:873.600000pt;}
.y59{bottom:879.187200pt;}
.yfc{bottom:880.140160pt;}
.y89{bottom:880.160000pt;}
.y11f{bottom:896.480000pt;}
.y58{bottom:899.353600pt;}
.y14{bottom:900.162080pt;}
.yfb{bottom:900.453760pt;}
.yb6{bottom:900.468480pt;}
.y88{bottom:908.467200pt;}
.y11e{bottom:916.792960pt;}
.y13{bottom:917.280000pt;}
.y57{bottom:919.520000pt;}
.yfa{bottom:920.620160pt;}
.yb5{bottom:920.634880pt;}
.y87{bottom:928.633600pt;}
.y12{bottom:933.600000pt;}
.y11d{bottom:936.959360pt;}
.ydb{bottom:939.833600pt;}
.yf9{bottom:940.786560pt;}
.yb4{bottom:940.801280pt;}
.y56{bottom:947.840000pt;}
.y86{bottom:948.800000pt;}
.yda{bottom:960.000000pt;}
.y11{bottom:960.162080pt;}
.yb3{bottom:961.114880pt;}
.y11c{bottom:965.118720pt;}
.y55{bottom:967.987840pt;}
.yf8{bottom:969.107840pt;}
.y85{bottom:969.113600pt;}
.y10{bottom:977.280000pt;}
.y54{bottom:988.154240pt;}
.yb2{bottom:989.274240pt;}
.y84{bottom:989.280000pt;}
.yd9{bottom:990.400000pt;}
.y11b{bottom:993.440000pt;}
.yf{bottom:993.600000pt;}
.y83{bottom:1009.440000pt;}
.yb1{bottom:1009.440640pt;}
.y53{bottom:1016.313600pt;}
.y11a{bottom:1021.606400pt;}
.yd8{bottom:1029.739520pt;}
.yb0{bottom:1029.754240pt;}
.ye{bottom:1033.289760pt;}
.y52{bottom:1036.627200pt;}
.y82{bottom:1037.740800pt;}
.y119{bottom:1041.920000pt;}
.yd7{bottom:1049.905920pt;}
.yaf{bottom:1049.920640pt;}
.y51{bottom:1056.793600pt;}
.y81{bottom:1057.907200pt;}
.yf7{bottom:1057.913600pt;}
.yd{bottom:1062.720000pt;}
.yd6{bottom:1070.072320pt;}
.y118{bottom:1070.073600pt;}
.y50{bottom:1076.960000pt;}
.y80{bottom:1078.073600pt;}
.yae{bottom:1078.080000pt;}
.y117{bottom:1090.240000pt;}
.y4f{bottom:1097.273600pt;}
.y7f{bottom:1098.387200pt;}
.yad{bottom:1098.393600pt;}
.yc{bottom:1101.280000pt;}
.y4e{bottom:1117.440000pt;}
.y7e{bottom:1118.553600pt;}
.yac{bottom:1118.560000pt;}
.y44{bottom:1121.280000pt;}
.yb{bottom:1134.400000pt;}
.y7d{bottom:1138.720000pt;}
.yab{bottom:1138.726400pt;}
.y4d{bottom:1148.000000pt;}
.y7c{bottom:1159.040000pt;}
.y6{bottom:1159.200000pt;}
.y2{bottom:1161.760000pt;}
.y1{bottom:1180.480000pt;}
.y46{bottom:1187.360000pt;}
.h6{height:17.600000pt;}
.h13{height:31.038667pt;}
.h7{height:31.040000pt;}
.h5{height:33.960938pt;}
.h12{height:34.880000pt;}
.h4{height:36.000000pt;}
.he{height:37.715200pt;}
.h9{height:39.840000pt;}
.h2{height:41.457500pt;}
.h11{height:41.480540pt;}
.h3{height:44.160000pt;}
.h18{height:44.185600pt;}
.h1a{height:44.188160pt;}
.h15{height:44.208640pt;}
.h17{height:44.211200pt;}
.h16{height:44.239360pt;}
.h10{height:45.440000pt;}
.hf{height:48.000000pt;}
.hd{height:51.347500pt;}
.h8{height:59.584000pt;}
.h1{height:59.933125pt;}
.hc{height:60.435200pt;}
.h19{height:60.734640pt;}
.h14{height:60.750000pt;}
.ha{height:68.160000pt;}
.hb{height:72.000000pt;}
.h0{height:1248.000000pt;}
.w2{width:43.038667pt;}
.w3{width:116.160000pt;}
.w1{width:127.038667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:9.600000pt;}
.x2{left:75.520000pt;}
.x1{left:91.520000pt;}
.xf{left:94.240000pt;}
.x12{left:99.498880pt;}
.xd{left:105.600000pt;}
.x9{left:113.280000pt;}
.x11{left:119.996000pt;}
.xa{left:123.213440pt;}
.xb{left:234.240000pt;}
.x3{left:466.880000pt;}
.xc{left:635.840000pt;}
.x5{left:639.200000pt;}
.x10{left:658.880000pt;}
.x4{left:736.640000pt;}
.xe{left:740.320000pt;}
.x7{left:749.120000pt;}
.x8{left:759.040000pt;}
}




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