
    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_20191ed2b6b9f5353a41e51f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_78f0b3783feedb89353cfd12.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165000;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_28f7f1e9234ad1afa2da0da0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.166000;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_5e077456d74724ab48ffb217.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.698000;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_0648d3aedf8ce24a88fb10a5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.200900;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5e077456d74724ab48ffb217.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.698000;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_bdee57e8637df7cbc400b44d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.135000;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_040ecf1cb1f15f309ebd4dc3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.014857;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_6755c972421b53cf2136a0ae.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172000;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_4b69e190a892a16af8428ce5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.014818;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_6c6ad7a59eaafabf7cc95a61.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.701172;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_5a79e20f69664e06ebabdf28.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.184000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_517c730c4f253244e98adf10.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.701172;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_349a5bd51a0550d39d15b375.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.196000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-1.562400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.562400px;}
.v3{vertical-align:63.221400px;}
.v4{vertical-align:64.783800px;}
.ls3c{letter-spacing:-3.132000px;}
.ls24{letter-spacing:-1.785600px;}
.ls3d{letter-spacing:-1.680000px;}
.ls36{letter-spacing:-1.618200px;}
.ls48{letter-spacing:-1.560000px;}
.ls8{letter-spacing:-1.479000px;}
.ls2b{letter-spacing:-1.200000px;}
.ls2f{letter-spacing:-1.080000px;}
.ls2d{letter-spacing:-0.900000px;}
.ls4c{letter-spacing:-0.867000px;}
.ls33{letter-spacing:-0.780000px;}
.ls2e{letter-spacing:-0.720000px;}
.ls2a{letter-spacing:-0.660000px;}
.ls31{letter-spacing:-0.600000px;}
.ls17{letter-spacing:-0.540000px;}
.ls39{letter-spacing:-0.502200px;}
.ls32{letter-spacing:-0.480000px;}
.ls3e{letter-spacing:-0.432000px;}
.ls2c{letter-spacing:-0.420000px;}
.ls30{letter-spacing:-0.360000px;}
.ls27{letter-spacing:-0.300000px;}
.ls4a{letter-spacing:-0.255000px;}
.lsc{letter-spacing:-0.240000px;}
.ls9{letter-spacing:-0.204000px;}
.ls28{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.120000px;}
.lsa{letter-spacing:-0.102000px;}
.ls19{letter-spacing:-0.060000px;}
.ls7{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.060000px;}
.ls1{letter-spacing:0.102000px;}
.ls6{letter-spacing:0.120000px;}
.ls3b{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.153000px;}
.ls35{letter-spacing:0.162000px;}
.ls2{letter-spacing:0.178500px;}
.ls3{letter-spacing:0.180000px;}
.ls38{letter-spacing:0.216000px;}
.lse{letter-spacing:0.222000px;}
.ls14{letter-spacing:0.240000px;}
.ls4{letter-spacing:0.300000px;}
.ls1c{letter-spacing:0.330000px;}
.lsf{letter-spacing:0.333000px;}
.ls13{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.420000px;}
.ls5{letter-spacing:0.480000px;}
.ls37{letter-spacing:0.492000px;}
.ls15{letter-spacing:0.540000px;}
.ls1a{letter-spacing:0.600000px;}
.ls1b{letter-spacing:0.660000px;}
.ls20{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.810000px;}
.ls1d{letter-spacing:0.900000px;}
.ls1e{letter-spacing:0.960000px;}
.ls34{letter-spacing:1.020000px;}
.ls1f{letter-spacing:1.080000px;}
.ls11{letter-spacing:1.140000px;}
.lsb{letter-spacing:1.200000px;}
.ls49{letter-spacing:1.224000px;}
.ls21{letter-spacing:1.242000px;}
.ls25{letter-spacing:1.350000px;}
.ls29{letter-spacing:1.404000px;}
.ls22{letter-spacing:1.512000px;}
.ls3f{letter-spacing:1.728000px;}
.ls23{letter-spacing:1.836000px;}
.ls3a{letter-spacing:1.860000px;}
.ls4b{letter-spacing:2.106000px;}
.ls26{letter-spacing:2.340000px;}
.ls16{letter-spacing:3.948000px;}
.ls46{letter-spacing:302.715000px;}
.ls44{letter-spacing:303.607800px;}
.ls40{letter-spacing:303.831000px;}
.ls43{letter-spacing:304.221600px;}
.ls45{letter-spacing:305.170200px;}
.ls41{letter-spacing:307.513800px;}
.ls47{letter-spacing:308.406600px;}
.ls42{letter-spacing:309.076200px;}
.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;}
}
.ws7d{word-spacing:-60.000000px;}
.wsa8{word-spacing:-14.904000px;}
.ws4c{word-spacing:-14.634000px;}
.ws7c{word-spacing:-14.310000px;}
.ws5f{word-spacing:-14.202000px;}
.ws34{word-spacing:-13.140000px;}
.ws1{word-spacing:-12.540000px;}
.wsa6{word-spacing:-12.495000px;}
.ws98{word-spacing:-12.366000px;}
.ws1c{word-spacing:-12.258000px;}
.ws9e{word-spacing:-11.550600px;}
.ws8c{word-spacing:-11.494800px;}
.ws6b{word-spacing:-11.280000px;}
.ws6c{word-spacing:-11.040000px;}
.ws9f{word-spacing:-10.980000px;}
.wsa9{word-spacing:-10.965000px;}
.ws6d{word-spacing:-10.680000px;}
.wsaa{word-spacing:-10.659000px;}
.ws0{word-spacing:-9.792000px;}
.ws90{word-spacing:-9.600000px;}
.ws5b{word-spacing:-2.340000px;}
.ws61{word-spacing:-2.160000px;}
.ws5d{word-spacing:-2.100000px;}
.ws3e{word-spacing:-2.040000px;}
.ws4b{word-spacing:-1.980000px;}
.ws42{word-spacing:-1.920000px;}
.wsf{word-spacing:-1.860000px;}
.ws33{word-spacing:-1.800000px;}
.ws13{word-spacing:-1.740000px;}
.ws6{word-spacing:-1.683000px;}
.ws75{word-spacing:-1.680000px;}
.ws7{word-spacing:-1.581000px;}
.ws78{word-spacing:-1.560000px;}
.ws9d{word-spacing:-1.500000px;}
.ws40{word-spacing:-1.440000px;}
.ws49{word-spacing:-1.380000px;}
.ws81{word-spacing:-1.320000px;}
.wsb{word-spacing:-1.275000px;}
.ws6a{word-spacing:-1.260000px;}
.ws35{word-spacing:-1.242000px;}
.wsd{word-spacing:-1.200000px;}
.ws3d{word-spacing:-1.140000px;}
.ws12{word-spacing:-1.080000px;}
.ws3a{word-spacing:-1.020000px;}
.ws67{word-spacing:-0.960000px;}
.ws37{word-spacing:-0.900000px;}
.ws58{word-spacing:-0.840000px;}
.ws48{word-spacing:-0.780000px;}
.ws66{word-spacing:-0.720000px;}
.wsae{word-spacing:-0.714000px;}
.ws3c{word-spacing:-0.660000px;}
.ws3b{word-spacing:-0.600000px;}
.ws1e{word-spacing:-0.540000px;}
.ws2f{word-spacing:-0.480000px;}
.ws69{word-spacing:-0.420000px;}
.ws8e{word-spacing:-0.360000px;}
.ws2{word-spacing:-0.355200px;}
.wsac{word-spacing:-0.306000px;}
.ws22{word-spacing:-0.300000px;}
.wsad{word-spacing:-0.255000px;}
.ws16{word-spacing:-0.240000px;}
.ws51{word-spacing:-0.223200px;}
.ws1b{word-spacing:-0.222000px;}
.wsc{word-spacing:-0.204000px;}
.ws94{word-spacing:-0.180000px;}
.ws19{word-spacing:-0.120000px;}
.ws62{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws25{word-spacing:0.060000px;}
.ws84{word-spacing:0.120000px;}
.ws28{word-spacing:0.180000px;}
.ws47{word-spacing:0.240000px;}
.ws59{word-spacing:0.300000px;}
.ws2c{word-spacing:0.360000px;}
.wse{word-spacing:0.420000px;}
.ws2a{word-spacing:0.480000px;}
.ws41{word-spacing:0.540000px;}
.ws74{word-spacing:0.600000px;}
.ws10{word-spacing:0.660000px;}
.ws87{word-spacing:0.720000px;}
.ws2b{word-spacing:0.780000px;}
.ws85{word-spacing:0.840000px;}
.ws9{word-spacing:0.867000px;}
.ws77{word-spacing:0.900000px;}
.ws8{word-spacing:0.918000px;}
.ws39{word-spacing:0.960000px;}
.wsa{word-spacing:0.969000px;}
.ws1f{word-spacing:1.020000px;}
.ws11{word-spacing:1.080000px;}
.ws53{word-spacing:1.140000px;}
.ws43{word-spacing:1.200000px;}
.ws5c{word-spacing:1.260000px;}
.ws45{word-spacing:1.320000px;}
.ws83{word-spacing:1.380000px;}
.ws76{word-spacing:1.500000px;}
.ws55{word-spacing:1.560000px;}
.ws5{word-spacing:1.581000px;}
.ws5a{word-spacing:1.620000px;}
.ws4{word-spacing:1.632000px;}
.ws9b{word-spacing:1.680000px;}
.ws29{word-spacing:1.740000px;}
.ws7a{word-spacing:1.800000px;}
.ws14{word-spacing:1.860000px;}
.ws18{word-spacing:1.920000px;}
.ws68{word-spacing:1.980000px;}
.ws52{word-spacing:2.040000px;}
.ws86{word-spacing:2.100000px;}
.ws38{word-spacing:2.160000px;}
.ws26{word-spacing:2.280000px;}
.ws44{word-spacing:2.340000px;}
.ws1a{word-spacing:2.400000px;}
.ws15{word-spacing:2.520000px;}
.ws82{word-spacing:2.580000px;}
.ws57{word-spacing:2.640000px;}
.ws30{word-spacing:2.700000px;}
.ws4a{word-spacing:2.760000px;}
.ws8d{word-spacing:2.820000px;}
.ws79{word-spacing:2.880000px;}
.ws31{word-spacing:2.940000px;}
.ws3f{word-spacing:3.000000px;}
.ws23{word-spacing:3.060000px;}
.ws32{word-spacing:3.180000px;}
.ws2e{word-spacing:3.240000px;}
.ws27{word-spacing:3.300000px;}
.ws8f{word-spacing:3.360000px;}
.ws2d{word-spacing:3.480000px;}
.ws21{word-spacing:3.540000px;}
.ws96{word-spacing:3.600000px;}
.ws9c{word-spacing:3.660000px;}
.ws17{word-spacing:3.720000px;}
.ws46{word-spacing:3.780000px;}
.ws56{word-spacing:3.900000px;}
.ws9a{word-spacing:3.960000px;}
.ws97{word-spacing:4.020000px;}
.ws65{word-spacing:4.080000px;}
.ws5e{word-spacing:4.140000px;}
.ws24{word-spacing:4.260000px;}
.ws93{word-spacing:4.320000px;}
.ws63{word-spacing:4.380000px;}
.ws7b{word-spacing:4.560000px;}
.ws92{word-spacing:4.680000px;}
.ws7f{word-spacing:4.740000px;}
.ws95{word-spacing:5.040000px;}
.ws64{word-spacing:5.520000px;}
.ws80{word-spacing:6.060000px;}
.ws20{word-spacing:9.300000px;}
.ws4d{word-spacing:36.437400px;}
.ws8a{word-spacing:83.476800px;}
.ws8b{word-spacing:112.325400px;}
.ws4e{word-spacing:124.378200px;}
.ws4f{word-spacing:164.665800px;}
.ws89{word-spacing:195.021000px;}
.ws6e{word-spacing:220.912200px;}
.ws6f{word-spacing:237.484800px;}
.ws71{word-spacing:238.098600px;}
.wsa0{word-spacing:366.661800px;}
.wsa3{word-spacing:537.800400px;}
.ws70{word-spacing:626.857200px;}
.wsa1{word-spacing:664.299000px;}
.ws72{word-spacing:667.312200px;}
.wsab{word-spacing:1001.592000px;}
.ws50{word-spacing:1001.862000px;}
.ws7e{word-spacing:1002.240000px;}
.ws60{word-spacing:1002.294000px;}
.ws99{word-spacing:1004.130000px;}
.ws1d{word-spacing:1004.292000px;}
.wsa4{word-spacing:1057.689000px;}
.wsa2{word-spacing:1061.037000px;}
.wsa5{word-spacing:1169.177400px;}
.wsa7{word-spacing:1713.420000px;}
.ws36{word-spacing:1713.798000px;}
.ws54{word-spacing:1714.176000px;}
.ws88{word-spacing:1716.390000px;}
.ws73{word-spacing:1716.498000px;}
.ws91{word-spacing:1723.140000px;}
._9{margin-left:-1003.564200px;}
._c{margin-left:-1002.117600px;}
._b{margin-left:-1000.879800px;}
._22{margin-left:-13.140000px;}
._1d{margin-left:-12.026400px;}
._23{margin-left:-10.977900px;}
._7{margin-left:-7.609800px;}
._a{margin-left:-6.562200px;}
._5{margin-left:-5.510100px;}
._4{margin-left:-3.652800px;}
._0{margin-left:-2.400000px;}
._3{margin-left:-1.290300px;}
._6{width:1.288200px;}
._1{width:2.325600px;}
._2{width:3.391500px;}
._8{width:4.488000px;}
._24{width:5.675220px;}
._16{width:25.740000px;}
._f{width:26.951400px;}
._15{width:29.760000px;}
._14{width:38.100000px;}
._12{width:51.224400px;}
._27{width:55.478100px;}
._2a{width:63.079800px;}
._25{width:82.361400px;}
._11{width:96.924600px;}
._28{width:113.664600px;}
._d{width:116.845200px;}
._26{width:132.469200px;}
._13{width:141.342000px;}
._10{width:165.956700px;}
._e{width:191.172000px;}
._19{width:249.481800px;}
._2b{width:396.738000px;}
._17{width:415.375800px;}
._20{width:633.274200px;}
._21{width:636.901200px;}
._1a{width:650.683800px;}
._1c{width:655.315200px;}
._1b{width:670.325400px;}
._1e{width:679.420800px;}
._1f{width:680.927400px;}
._18{width:702.187200px;}
._29{width:746.548800px;}
.fc1{color:rgb(123,121,121);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:22.200000px;}
.fs2{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:55.800000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y53{bottom:91.318050px;}
.y26{bottom:91.318200px;}
.y7f{bottom:91.417050px;}
.ybf{bottom:91.979550px;}
.ybe{bottom:109.230300px;}
.y52{bottom:109.768050px;}
.y25{bottom:109.768200px;}
.ybd{bottom:126.481050px;}
.y51{bottom:128.218050px;}
.y24{bottom:128.218200px;}
.ybc{bottom:143.731800px;}
.y50{bottom:146.668050px;}
.y23{bottom:146.668200px;}
.ybb{bottom:160.982550px;}
.y4f{bottom:165.118050px;}
.y22{bottom:165.118200px;}
.yba{bottom:178.233300px;}
.y4e{bottom:183.568050px;}
.y21{bottom:183.568200px;}
.y10d{bottom:198.154800px;}
.y4d{bottom:202.018050px;}
.y20{bottom:202.018200px;}
.yb9{bottom:210.478050px;}
.y10c{bottom:215.405550px;}
.y4c{bottom:220.468050px;}
.y1f{bottom:220.468200px;}
.y4b{bottom:238.918050px;}
.y1e{bottom:238.918200px;}
.y4a{bottom:257.368050px;}
.y1d{bottom:257.368200px;}
.yb8{bottom:260.082750px;}
.y10b{bottom:267.157800px;}
.ye5{bottom:267.183300px;}
.y7e{bottom:271.641150px;}
.y49{bottom:275.818050px;}
.y1c{bottom:275.818200px;}
.yb7{bottom:279.054750px;}
.y10a{bottom:284.408550px;}
.ye4{bottom:284.434050px;}
.y7d{bottom:293.488050px;}
.y48{bottom:294.268050px;}
.y1b{bottom:294.268200px;}
.yb6{bottom:298.026750px;}
.y109{bottom:301.659300px;}
.ye3{bottom:301.684800px;}
.y7c{bottom:312.460050px;}
.y47{bottom:312.718050px;}
.y1a{bottom:312.718200px;}
.yb5{bottom:316.998750px;}
.y108{bottom:318.910050px;}
.ye2{bottom:318.935550px;}
.y46{bottom:331.168050px;}
.y19{bottom:331.168200px;}
.y7b{bottom:331.432050px;}
.yb4{bottom:335.970750px;}
.y107{bottom:336.160800px;}
.ye1{bottom:336.186300px;}
.ya5{bottom:348.629700px;}
.y45{bottom:349.618050px;}
.y18{bottom:349.618200px;}
.y7a{bottom:350.404050px;}
.y106{bottom:353.411550px;}
.ye0{bottom:353.437050px;}
.y44{bottom:368.068050px;}
.y17{bottom:368.068200px;}
.y79{bottom:369.376050px;}
.ya4{bottom:370.573500px;}
.y105{bottom:370.662300px;}
.ydf{bottom:370.687800px;}
.y43{bottom:386.518050px;}
.y16{bottom:386.518200px;}
.ya3{bottom:386.769450px;}
.y104{bottom:387.913050px;}
.yde{bottom:387.938550px;}
.y78{bottom:388.348050px;}
.y42{bottom:404.968050px;}
.y15{bottom:404.968200px;}
.y103{bottom:405.163800px;}
.ydd{bottom:405.189300px;}
.ya2{bottom:405.741450px;}
.y77{bottom:407.320050px;}
.ya1{bottom:421.937400px;}
.y102{bottom:422.414550px;}
.ydc{bottom:422.440050px;}
.y41{bottom:423.418050px;}
.y14{bottom:423.418200px;}
.y76{bottom:426.292050px;}
.y72{bottom:437.492100px;}
.ya0{bottom:438.523950px;}
.y101{bottom:439.665300px;}
.ydb{bottom:439.690800px;}
.y40{bottom:441.868050px;}
.y75{bottom:445.250100px;}
.y100{bottom:456.916050px;}
.yda{bottom:456.941550px;}
.y9f{bottom:457.495950px;}
.y9e{bottom:457.886550px;}
.y71{bottom:459.407100px;}
.y3f{bottom:460.318050px;}
.y13{bottom:460.318200px;}
.y74{bottom:464.598750px;}
.yb3{bottom:473.272950px;}
.y9d{bottom:474.082500px;}
.yff{bottom:474.166800px;}
.yd9{bottom:474.192300px;}
.y70{bottom:475.603050px;}
.y3e{bottom:478.768050px;}
.y73{bottom:483.570750px;}
.yb2{bottom:489.078300px;}
.yfe{bottom:491.417550px;}
.yd8{bottom:491.443050px;}
.y6f{bottom:491.799000px;}
.y9c{bottom:493.054500px;}
.y3d{bottom:497.218050px;}
.yb1{bottom:508.426950px;}
.yfd{bottom:508.668300px;}
.yd7{bottom:508.693800px;}
.y9b{bottom:509.250450px;}
.y6e{bottom:510.771000px;}
.y3c{bottom:515.668050px;}
.y12{bottom:516.406800px;}
.yb0{bottom:524.622900px;}
.y9a{bottom:525.446400px;}
.y99{bottom:525.837000px;}
.yfc{bottom:525.919050px;}
.yd6{bottom:525.944550px;}
.y6d{bottom:526.966950px;}
.y11{bottom:533.657550px;}
.y3b{bottom:534.118050px;}
.y98{bottom:542.032950px;}
.y6c{bottom:543.162900px;}
.yfb{bottom:543.169800px;}
.yd5{bottom:543.195300px;}
.yaf{bottom:543.594900px;}
.y3a{bottom:552.568050px;}
.y6b{bottom:559.358850px;}
.yfa{bottom:560.420550px;}
.yd4{bottom:560.446050px;}
.y97{bottom:561.004950px;}
.yae{bottom:562.566900px;}
.y10{bottom:568.159050px;}
.y39{bottom:571.018050px;}
.y6a{bottom:575.554800px;}
.y96{bottom:577.200900px;}
.yf9{bottom:577.671300px;}
.yd3{bottom:577.696800px;}
.yad{bottom:581.538900px;}
.yf{bottom:585.409800px;}
.y38{bottom:589.468050px;}
.y69{bottom:591.750750px;}
.y95{bottom:593.396850px;}
.yf8{bottom:594.922050px;}
.yd2{bottom:594.947550px;}
.yaa{bottom:600.510900px;}
.ye{bottom:602.660550px;}
.y56{bottom:607.918050px;}
.y68{bottom:607.946700px;}
.y94{bottom:609.592800px;}
.yac{bottom:611.168700px;}
.yf7{bottom:612.172800px;}
.yd1{bottom:612.198300px;}
.ya9{bottom:616.706850px;}
.yd{bottom:619.911300px;}
.y93{bottom:625.788750px;}
.y92{bottom:626.179350px;}
.y37{bottom:626.368050px;}
.y67{bottom:626.918700px;}
.yf6{bottom:629.423550px;}
.yd0{bottom:629.449050px;}
.yab{bottom:630.140700px;}
.ya8{bottom:632.902800px;}
.yc{bottom:637.162050px;}
.y91{bottom:642.375300px;}
.y66{bottom:643.114650px;}
.y55{bottom:644.818050px;}
.yf5{bottom:646.674300px;}
.ycf{bottom:646.699800px;}
.ya7{bottom:649.098750px;}
.yb{bottom:654.412800px;}
.y65{bottom:659.310600px;}
.y8e{bottom:661.333350px;}
.y90{bottom:661.723950px;}
.y54{bottom:663.268050px;}
.yf4{bottom:663.925050px;}
.yce{bottom:663.950550px;}
.ya6{bottom:668.070750px;}
.ya{bottom:671.663550px;}
.y64{bottom:675.506550px;}
.y8d{bottom:677.529300px;}
.y8f{bottom:677.919900px;}
.yf3{bottom:681.175800px;}
.ycd{bottom:681.201300px;}
.y36{bottom:681.718050px;}
.y9{bottom:688.914300px;}
.y63{bottom:691.702500px;}
.y8c{bottom:696.877950px;}
.yf2{bottom:698.426550px;}
.ycc{bottom:698.452050px;}
.y35{bottom:700.168050px;}
.y8{bottom:706.165050px;}
.y62{bottom:710.674500px;}
.y8b{bottom:713.073900px;}
.yf1{bottom:715.677300px;}
.ycb{bottom:715.702800px;}
.y34{bottom:718.618050px;}
.y7{bottom:723.415800px;}
.y8a{bottom:729.269850px;}
.y61{bottom:729.646500px;}
.yf0{bottom:732.928050px;}
.yca{bottom:732.953550px;}
.y33{bottom:737.068050px;}
.y6{bottom:740.666550px;}
.y89{bottom:745.465800px;}
.y60{bottom:745.842450px;}
.yef{bottom:750.178800px;}
.yc9{bottom:750.204300px;}
.y32{bottom:755.518050px;}
.y5{bottom:757.917300px;}
.y5f{bottom:762.038400px;}
.y88{bottom:762.052350px;}
.yee{bottom:767.429550px;}
.yc8{bottom:767.455050px;}
.y31{bottom:773.968050px;}
.y4{bottom:775.168050px;}
.y5e{bottom:778.234350px;}
.y87{bottom:781.024350px;}
.yed{bottom:784.680300px;}
.yc7{bottom:784.705800px;}
.y30{bottom:792.418050px;}
.y5d{bottom:794.430300px;}
.y86{bottom:797.220300px;}
.yec{bottom:801.931050px;}
.yc6{bottom:801.956550px;}
.y5c{bottom:810.626250px;}
.y2f{bottom:810.868050px;}
.y85{bottom:813.416250px;}
.yeb{bottom:819.181800px;}
.yc5{bottom:819.207300px;}
.y3{bottom:826.768050px;}
.y2e{bottom:829.318050px;}
.y5b{bottom:829.598250px;}
.y84{bottom:829.612200px;}
.yea{bottom:836.432550px;}
.yc4{bottom:836.458050px;}
.y81{bottom:845.417550px;}
.y5a{bottom:845.794200px;}
.y83{bottom:845.808150px;}
.y2d{bottom:847.768050px;}
.ye9{bottom:853.683300px;}
.yc3{bottom:853.708800px;}
.y28{bottom:857.391000px;}
.y80{bottom:861.613500px;}
.y59{bottom:861.990150px;}
.y82{bottom:862.004100px;}
.y27{bottom:864.889050px;}
.y2c{bottom:866.218050px;}
.y2{bottom:870.815700px;}
.ye8{bottom:870.934050px;}
.yc2{bottom:870.959550px;}
.y58{bottom:880.962150px;}
.y2b{bottom:884.668050px;}
.ye7{bottom:888.184800px;}
.yc1{bottom:888.210300px;}
.y1{bottom:896.303700px;}
.y57{bottom:899.934150px;}
.y2a{bottom:903.118050px;}
.ye6{bottom:905.435550px;}
.yc0{bottom:905.461050px;}
.y29{bottom:955.942350px;}
.h8{height:15.295800px;}
.hb{height:42.408000px;}
.h13{height:45.543000px;}
.hd{height:45.696000px;}
.h5{height:45.900000px;}
.h14{height:46.614000px;}
.h4{height:48.195000px;}
.ha{height:48.378600px;}
.hc{height:49.996800px;}
.h9{height:50.868000px;}
.hf{height:51.559200px;}
.h7{height:54.000000px;}
.h10{height:54.840000px;}
.he{height:56.520000px;}
.h6{height:56.700000px;}
.h3{height:67.824000px;}
.h2{height:90.720000px;}
.h11{height:113.218200px;}
.h12{height:114.780600px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x8{left:25.966350px;}
.x7{left:28.835700px;}
.x5{left:72.283500px;}
.x1{left:80.787450px;}
.x13{left:85.039350px;}
.x6{left:93.538500px;}
.x2{left:102.042450px;}
.xa{left:123.297450px;}
.xc{left:148.235700px;}
.xe{left:149.533050px;}
.xb{left:152.747100px;}
.x9{left:229.918500px;}
.xf{left:232.144950px;}
.x10{left:267.067950px;}
.x15{left:353.414100px;}
.x11{left:361.924950px;}
.x14{left:366.164100px;}
.x12{left:374.674950px;}
.xd{left:390.742500px;}
.x4{left:651.643500px;}
.x3{left:654.512850px;}
@media print{
.v2{vertical-align:-1.388800pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.388800pt;}
.v3{vertical-align:56.196800pt;}
.v4{vertical-align:57.585600pt;}
.ls3c{letter-spacing:-2.784000pt;}
.ls24{letter-spacing:-1.587200pt;}
.ls3d{letter-spacing:-1.493333pt;}
.ls36{letter-spacing:-1.438400pt;}
.ls48{letter-spacing:-1.386667pt;}
.ls8{letter-spacing:-1.314667pt;}
.ls2b{letter-spacing:-1.066667pt;}
.ls2f{letter-spacing:-0.960000pt;}
.ls2d{letter-spacing:-0.800000pt;}
.ls4c{letter-spacing:-0.770667pt;}
.ls33{letter-spacing:-0.693333pt;}
.ls2e{letter-spacing:-0.640000pt;}
.ls2a{letter-spacing:-0.586667pt;}
.ls31{letter-spacing:-0.533333pt;}
.ls17{letter-spacing:-0.480000pt;}
.ls39{letter-spacing:-0.446400pt;}
.ls32{letter-spacing:-0.426667pt;}
.ls3e{letter-spacing:-0.384000pt;}
.ls2c{letter-spacing:-0.373333pt;}
.ls30{letter-spacing:-0.320000pt;}
.ls27{letter-spacing:-0.266667pt;}
.ls4a{letter-spacing:-0.226667pt;}
.lsc{letter-spacing:-0.213333pt;}
.ls9{letter-spacing:-0.181333pt;}
.ls28{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.106667pt;}
.lsa{letter-spacing:-0.090667pt;}
.ls19{letter-spacing:-0.053333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.053333pt;}
.ls1{letter-spacing:0.090667pt;}
.ls6{letter-spacing:0.106667pt;}
.ls3b{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.136000pt;}
.ls35{letter-spacing:0.144000pt;}
.ls2{letter-spacing:0.158667pt;}
.ls3{letter-spacing:0.160000pt;}
.ls38{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.197333pt;}
.ls14{letter-spacing:0.213333pt;}
.ls4{letter-spacing:0.266667pt;}
.ls1c{letter-spacing:0.293333pt;}
.lsf{letter-spacing:0.296000pt;}
.ls13{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.373333pt;}
.ls5{letter-spacing:0.426667pt;}
.ls37{letter-spacing:0.437333pt;}
.ls15{letter-spacing:0.480000pt;}
.ls1a{letter-spacing:0.533333pt;}
.ls1b{letter-spacing:0.586667pt;}
.ls20{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.720000pt;}
.ls1d{letter-spacing:0.800000pt;}
.ls1e{letter-spacing:0.853333pt;}
.ls34{letter-spacing:0.906667pt;}
.ls1f{letter-spacing:0.960000pt;}
.ls11{letter-spacing:1.013333pt;}
.lsb{letter-spacing:1.066667pt;}
.ls49{letter-spacing:1.088000pt;}
.ls21{letter-spacing:1.104000pt;}
.ls25{letter-spacing:1.200000pt;}
.ls29{letter-spacing:1.248000pt;}
.ls22{letter-spacing:1.344000pt;}
.ls3f{letter-spacing:1.536000pt;}
.ls23{letter-spacing:1.632000pt;}
.ls3a{letter-spacing:1.653333pt;}
.ls4b{letter-spacing:1.872000pt;}
.ls26{letter-spacing:2.080000pt;}
.ls16{letter-spacing:3.509333pt;}
.ls46{letter-spacing:269.080000pt;}
.ls44{letter-spacing:269.873600pt;}
.ls40{letter-spacing:270.072000pt;}
.ls43{letter-spacing:270.419200pt;}
.ls45{letter-spacing:271.262400pt;}
.ls41{letter-spacing:273.345600pt;}
.ls47{letter-spacing:274.139200pt;}
.ls42{letter-spacing:274.734400pt;}
.ws7d{word-spacing:-53.333333pt;}
.wsa8{word-spacing:-13.248000pt;}
.ws4c{word-spacing:-13.008000pt;}
.ws7c{word-spacing:-12.720000pt;}
.ws5f{word-spacing:-12.624000pt;}
.ws34{word-spacing:-11.680000pt;}
.ws1{word-spacing:-11.146667pt;}
.wsa6{word-spacing:-11.106667pt;}
.ws98{word-spacing:-10.992000pt;}
.ws1c{word-spacing:-10.896000pt;}
.ws9e{word-spacing:-10.267200pt;}
.ws8c{word-spacing:-10.217600pt;}
.ws6b{word-spacing:-10.026667pt;}
.ws6c{word-spacing:-9.813333pt;}
.ws9f{word-spacing:-9.760000pt;}
.wsa9{word-spacing:-9.746667pt;}
.ws6d{word-spacing:-9.493333pt;}
.wsaa{word-spacing:-9.474667pt;}
.ws0{word-spacing:-8.704000pt;}
.ws90{word-spacing:-8.533333pt;}
.ws5b{word-spacing:-2.080000pt;}
.ws61{word-spacing:-1.920000pt;}
.ws5d{word-spacing:-1.866667pt;}
.ws3e{word-spacing:-1.813333pt;}
.ws4b{word-spacing:-1.760000pt;}
.ws42{word-spacing:-1.706667pt;}
.wsf{word-spacing:-1.653333pt;}
.ws33{word-spacing:-1.600000pt;}
.ws13{word-spacing:-1.546667pt;}
.ws6{word-spacing:-1.496000pt;}
.ws75{word-spacing:-1.493333pt;}
.ws7{word-spacing:-1.405333pt;}
.ws78{word-spacing:-1.386667pt;}
.ws9d{word-spacing:-1.333333pt;}
.ws40{word-spacing:-1.280000pt;}
.ws49{word-spacing:-1.226667pt;}
.ws81{word-spacing:-1.173333pt;}
.wsb{word-spacing:-1.133333pt;}
.ws6a{word-spacing:-1.120000pt;}
.ws35{word-spacing:-1.104000pt;}
.wsd{word-spacing:-1.066667pt;}
.ws3d{word-spacing:-1.013333pt;}
.ws12{word-spacing:-0.960000pt;}
.ws3a{word-spacing:-0.906667pt;}
.ws67{word-spacing:-0.853333pt;}
.ws37{word-spacing:-0.800000pt;}
.ws58{word-spacing:-0.746667pt;}
.ws48{word-spacing:-0.693333pt;}
.ws66{word-spacing:-0.640000pt;}
.wsae{word-spacing:-0.634667pt;}
.ws3c{word-spacing:-0.586667pt;}
.ws3b{word-spacing:-0.533333pt;}
.ws1e{word-spacing:-0.480000pt;}
.ws2f{word-spacing:-0.426667pt;}
.ws69{word-spacing:-0.373333pt;}
.ws8e{word-spacing:-0.320000pt;}
.ws2{word-spacing:-0.315733pt;}
.wsac{word-spacing:-0.272000pt;}
.ws22{word-spacing:-0.266667pt;}
.wsad{word-spacing:-0.226667pt;}
.ws16{word-spacing:-0.213333pt;}
.ws51{word-spacing:-0.198400pt;}
.ws1b{word-spacing:-0.197333pt;}
.wsc{word-spacing:-0.181333pt;}
.ws94{word-spacing:-0.160000pt;}
.ws19{word-spacing:-0.106667pt;}
.ws62{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws25{word-spacing:0.053333pt;}
.ws84{word-spacing:0.106667pt;}
.ws28{word-spacing:0.160000pt;}
.ws47{word-spacing:0.213333pt;}
.ws59{word-spacing:0.266667pt;}
.ws2c{word-spacing:0.320000pt;}
.wse{word-spacing:0.373333pt;}
.ws2a{word-spacing:0.426667pt;}
.ws41{word-spacing:0.480000pt;}
.ws74{word-spacing:0.533333pt;}
.ws10{word-spacing:0.586667pt;}
.ws87{word-spacing:0.640000pt;}
.ws2b{word-spacing:0.693333pt;}
.ws85{word-spacing:0.746667pt;}
.ws9{word-spacing:0.770667pt;}
.ws77{word-spacing:0.800000pt;}
.ws8{word-spacing:0.816000pt;}
.ws39{word-spacing:0.853333pt;}
.wsa{word-spacing:0.861333pt;}
.ws1f{word-spacing:0.906667pt;}
.ws11{word-spacing:0.960000pt;}
.ws53{word-spacing:1.013333pt;}
.ws43{word-spacing:1.066667pt;}
.ws5c{word-spacing:1.120000pt;}
.ws45{word-spacing:1.173333pt;}
.ws83{word-spacing:1.226667pt;}
.ws76{word-spacing:1.333333pt;}
.ws55{word-spacing:1.386667pt;}
.ws5{word-spacing:1.405333pt;}
.ws5a{word-spacing:1.440000pt;}
.ws4{word-spacing:1.450667pt;}
.ws9b{word-spacing:1.493333pt;}
.ws29{word-spacing:1.546667pt;}
.ws7a{word-spacing:1.600000pt;}
.ws14{word-spacing:1.653333pt;}
.ws18{word-spacing:1.706667pt;}
.ws68{word-spacing:1.760000pt;}
.ws52{word-spacing:1.813333pt;}
.ws86{word-spacing:1.866667pt;}
.ws38{word-spacing:1.920000pt;}
.ws26{word-spacing:2.026667pt;}
.ws44{word-spacing:2.080000pt;}
.ws1a{word-spacing:2.133333pt;}
.ws15{word-spacing:2.240000pt;}
.ws82{word-spacing:2.293333pt;}
.ws57{word-spacing:2.346667pt;}
.ws30{word-spacing:2.400000pt;}
.ws4a{word-spacing:2.453333pt;}
.ws8d{word-spacing:2.506667pt;}
.ws79{word-spacing:2.560000pt;}
.ws31{word-spacing:2.613333pt;}
.ws3f{word-spacing:2.666667pt;}
.ws23{word-spacing:2.720000pt;}
.ws32{word-spacing:2.826667pt;}
.ws2e{word-spacing:2.880000pt;}
.ws27{word-spacing:2.933333pt;}
.ws8f{word-spacing:2.986667pt;}
.ws2d{word-spacing:3.093333pt;}
.ws21{word-spacing:3.146667pt;}
.ws96{word-spacing:3.200000pt;}
.ws9c{word-spacing:3.253333pt;}
.ws17{word-spacing:3.306667pt;}
.ws46{word-spacing:3.360000pt;}
.ws56{word-spacing:3.466667pt;}
.ws9a{word-spacing:3.520000pt;}
.ws97{word-spacing:3.573333pt;}
.ws65{word-spacing:3.626667pt;}
.ws5e{word-spacing:3.680000pt;}
.ws24{word-spacing:3.786667pt;}
.ws93{word-spacing:3.840000pt;}
.ws63{word-spacing:3.893333pt;}
.ws7b{word-spacing:4.053333pt;}
.ws92{word-spacing:4.160000pt;}
.ws7f{word-spacing:4.213333pt;}
.ws95{word-spacing:4.480000pt;}
.ws64{word-spacing:4.906667pt;}
.ws80{word-spacing:5.386667pt;}
.ws20{word-spacing:8.266667pt;}
.ws4d{word-spacing:32.388800pt;}
.ws8a{word-spacing:74.201600pt;}
.ws8b{word-spacing:99.844800pt;}
.ws4e{word-spacing:110.558400pt;}
.ws4f{word-spacing:146.369600pt;}
.ws89{word-spacing:173.352000pt;}
.ws6e{word-spacing:196.366400pt;}
.ws6f{word-spacing:211.097600pt;}
.ws71{word-spacing:211.643200pt;}
.wsa0{word-spacing:325.921600pt;}
.wsa3{word-spacing:478.044800pt;}
.ws70{word-spacing:557.206400pt;}
.wsa1{word-spacing:590.488000pt;}
.ws72{word-spacing:593.166400pt;}
.wsab{word-spacing:890.304000pt;}
.ws50{word-spacing:890.544000pt;}
.ws7e{word-spacing:890.880000pt;}
.ws60{word-spacing:890.928000pt;}
.ws99{word-spacing:892.560000pt;}
.ws1d{word-spacing:892.704000pt;}
.wsa4{word-spacing:940.168000pt;}
.wsa2{word-spacing:943.144000pt;}
.wsa5{word-spacing:1039.268800pt;}
.wsa7{word-spacing:1523.040000pt;}
.ws36{word-spacing:1523.376000pt;}
.ws54{word-spacing:1523.712000pt;}
.ws88{word-spacing:1525.680000pt;}
.ws73{word-spacing:1525.776000pt;}
.ws91{word-spacing:1531.680000pt;}
._9{margin-left:-892.057067pt;}
._c{margin-left:-890.771200pt;}
._b{margin-left:-889.670933pt;}
._22{margin-left:-11.680000pt;}
._1d{margin-left:-10.690133pt;}
._23{margin-left:-9.758133pt;}
._7{margin-left:-6.764267pt;}
._a{margin-left:-5.833067pt;}
._5{margin-left:-4.897867pt;}
._4{margin-left:-3.246933pt;}
._0{margin-left:-2.133333pt;}
._3{margin-left:-1.146933pt;}
._6{width:1.145067pt;}
._1{width:2.067200pt;}
._2{width:3.014667pt;}
._8{width:3.989333pt;}
._24{width:5.044640pt;}
._16{width:22.880000pt;}
._f{width:23.956800pt;}
._15{width:26.453333pt;}
._14{width:33.866667pt;}
._12{width:45.532800pt;}
._27{width:49.313867pt;}
._2a{width:56.070933pt;}
._25{width:73.210133pt;}
._11{width:86.155200pt;}
._28{width:101.035200pt;}
._d{width:103.862400pt;}
._26{width:117.750400pt;}
._13{width:125.637333pt;}
._10{width:147.517067pt;}
._e{width:169.930667pt;}
._19{width:221.761600pt;}
._2b{width:352.656000pt;}
._17{width:369.222933pt;}
._20{width:562.910400pt;}
._21{width:566.134400pt;}
._1a{width:578.385600pt;}
._1c{width:582.502400pt;}
._1b{width:595.844800pt;}
._1e{width:603.929600pt;}
._1f{width:605.268800pt;}
._18{width:624.166400pt;}
._29{width:663.598933pt;}
.fs4{font-size:19.733333pt;}
.fs2{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:49.600000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:81.171600pt;}
.y26{bottom:81.171733pt;}
.y7f{bottom:81.259600pt;}
.ybf{bottom:81.759600pt;}
.ybe{bottom:97.093600pt;}
.y52{bottom:97.571600pt;}
.y25{bottom:97.571733pt;}
.ybd{bottom:112.427600pt;}
.y51{bottom:113.971600pt;}
.y24{bottom:113.971733pt;}
.ybc{bottom:127.761600pt;}
.y50{bottom:130.371600pt;}
.y23{bottom:130.371733pt;}
.ybb{bottom:143.095600pt;}
.y4f{bottom:146.771600pt;}
.y22{bottom:146.771733pt;}
.yba{bottom:158.429600pt;}
.y4e{bottom:163.171600pt;}
.y21{bottom:163.171733pt;}
.y10d{bottom:176.137600pt;}
.y4d{bottom:179.571600pt;}
.y20{bottom:179.571733pt;}
.yb9{bottom:187.091600pt;}
.y10c{bottom:191.471600pt;}
.y4c{bottom:195.971600pt;}
.y1f{bottom:195.971733pt;}
.y4b{bottom:212.371600pt;}
.y1e{bottom:212.371733pt;}
.y4a{bottom:228.771600pt;}
.y1d{bottom:228.771733pt;}
.yb8{bottom:231.184667pt;}
.y10b{bottom:237.473600pt;}
.ye5{bottom:237.496267pt;}
.y7e{bottom:241.458800pt;}
.y49{bottom:245.171600pt;}
.y1c{bottom:245.171733pt;}
.yb7{bottom:248.048667pt;}
.y10a{bottom:252.807600pt;}
.ye4{bottom:252.830267pt;}
.y7d{bottom:260.878267pt;}
.y48{bottom:261.571600pt;}
.y1b{bottom:261.571733pt;}
.yb6{bottom:264.912667pt;}
.y109{bottom:268.141600pt;}
.ye3{bottom:268.164267pt;}
.y7c{bottom:277.742267pt;}
.y47{bottom:277.971600pt;}
.y1a{bottom:277.971733pt;}
.yb5{bottom:281.776667pt;}
.y108{bottom:283.475600pt;}
.ye2{bottom:283.498267pt;}
.y46{bottom:294.371600pt;}
.y19{bottom:294.371733pt;}
.y7b{bottom:294.606267pt;}
.yb4{bottom:298.640667pt;}
.y107{bottom:298.809600pt;}
.ye1{bottom:298.832267pt;}
.ya5{bottom:309.893067pt;}
.y45{bottom:310.771600pt;}
.y18{bottom:310.771733pt;}
.y7a{bottom:311.470267pt;}
.y106{bottom:314.143600pt;}
.ye0{bottom:314.166267pt;}
.y44{bottom:327.171600pt;}
.y17{bottom:327.171733pt;}
.y79{bottom:328.334267pt;}
.ya4{bottom:329.398667pt;}
.y105{bottom:329.477600pt;}
.ydf{bottom:329.500267pt;}
.y43{bottom:343.571600pt;}
.y16{bottom:343.571733pt;}
.ya3{bottom:343.795067pt;}
.y104{bottom:344.811600pt;}
.yde{bottom:344.834267pt;}
.y78{bottom:345.198267pt;}
.y42{bottom:359.971600pt;}
.y15{bottom:359.971733pt;}
.y103{bottom:360.145600pt;}
.ydd{bottom:360.168267pt;}
.ya2{bottom:360.659067pt;}
.y77{bottom:362.062267pt;}
.ya1{bottom:375.055467pt;}
.y102{bottom:375.479600pt;}
.ydc{bottom:375.502267pt;}
.y41{bottom:376.371600pt;}
.y14{bottom:376.371733pt;}
.y76{bottom:378.926267pt;}
.y72{bottom:388.881867pt;}
.ya0{bottom:389.799067pt;}
.y101{bottom:390.813600pt;}
.ydb{bottom:390.836267pt;}
.y40{bottom:392.771600pt;}
.y75{bottom:395.777867pt;}
.y100{bottom:406.147600pt;}
.yda{bottom:406.170267pt;}
.y9f{bottom:406.663067pt;}
.y9e{bottom:407.010267pt;}
.y71{bottom:408.361867pt;}
.y3f{bottom:409.171600pt;}
.y13{bottom:409.171733pt;}
.y74{bottom:412.976667pt;}
.yb3{bottom:420.687067pt;}
.y9d{bottom:421.406667pt;}
.yff{bottom:421.481600pt;}
.yd9{bottom:421.504267pt;}
.y70{bottom:422.758267pt;}
.y3e{bottom:425.571600pt;}
.y73{bottom:429.840667pt;}
.yb2{bottom:434.736267pt;}
.yfe{bottom:436.815600pt;}
.yd8{bottom:436.838267pt;}
.y6f{bottom:437.154667pt;}
.y9c{bottom:438.270667pt;}
.y3d{bottom:441.971600pt;}
.yb1{bottom:451.935067pt;}
.yfd{bottom:452.149600pt;}
.yd7{bottom:452.172267pt;}
.y9b{bottom:452.667067pt;}
.y6e{bottom:454.018667pt;}
.y3c{bottom:458.371600pt;}
.y12{bottom:459.028267pt;}
.yb0{bottom:466.331467pt;}
.y9a{bottom:467.063467pt;}
.y99{bottom:467.410667pt;}
.yfc{bottom:467.483600pt;}
.yd6{bottom:467.506267pt;}
.y6d{bottom:468.415067pt;}
.y11{bottom:474.362267pt;}
.y3b{bottom:474.771600pt;}
.y98{bottom:481.807067pt;}
.y6c{bottom:482.811467pt;}
.yfb{bottom:482.817600pt;}
.yd5{bottom:482.840267pt;}
.yaf{bottom:483.195467pt;}
.y3a{bottom:491.171600pt;}
.y6b{bottom:497.207867pt;}
.yfa{bottom:498.151600pt;}
.yd4{bottom:498.174267pt;}
.y97{bottom:498.671067pt;}
.yae{bottom:500.059467pt;}
.y10{bottom:505.030267pt;}
.y39{bottom:507.571600pt;}
.y6a{bottom:511.604267pt;}
.y96{bottom:513.067467pt;}
.yf9{bottom:513.485600pt;}
.yd3{bottom:513.508267pt;}
.yad{bottom:516.923467pt;}
.yf{bottom:520.364267pt;}
.y38{bottom:523.971600pt;}
.y69{bottom:526.000667pt;}
.y95{bottom:527.463867pt;}
.yf8{bottom:528.819600pt;}
.yd2{bottom:528.842267pt;}
.yaa{bottom:533.787467pt;}
.ye{bottom:535.698267pt;}
.y56{bottom:540.371600pt;}
.y68{bottom:540.397067pt;}
.y94{bottom:541.860267pt;}
.yac{bottom:543.261067pt;}
.yf7{bottom:544.153600pt;}
.yd1{bottom:544.176267pt;}
.ya9{bottom:548.183867pt;}
.yd{bottom:551.032267pt;}
.y93{bottom:556.256667pt;}
.y92{bottom:556.603867pt;}
.y37{bottom:556.771600pt;}
.y67{bottom:557.261067pt;}
.yf6{bottom:559.487600pt;}
.yd0{bottom:559.510267pt;}
.yab{bottom:560.125067pt;}
.ya8{bottom:562.580267pt;}
.yc{bottom:566.366267pt;}
.y91{bottom:571.000267pt;}
.y66{bottom:571.657467pt;}
.y55{bottom:573.171600pt;}
.yf5{bottom:574.821600pt;}
.ycf{bottom:574.844267pt;}
.ya7{bottom:576.976667pt;}
.yb{bottom:581.700267pt;}
.y65{bottom:586.053867pt;}
.y8e{bottom:587.851867pt;}
.y90{bottom:588.199067pt;}
.y54{bottom:589.571600pt;}
.yf4{bottom:590.155600pt;}
.yce{bottom:590.178267pt;}
.ya6{bottom:593.840667pt;}
.ya{bottom:597.034267pt;}
.y64{bottom:600.450267pt;}
.y8d{bottom:602.248267pt;}
.y8f{bottom:602.595467pt;}
.yf3{bottom:605.489600pt;}
.ycd{bottom:605.512267pt;}
.y36{bottom:605.971600pt;}
.y9{bottom:612.368267pt;}
.y63{bottom:614.846667pt;}
.y8c{bottom:619.447067pt;}
.yf2{bottom:620.823600pt;}
.ycc{bottom:620.846267pt;}
.y35{bottom:622.371600pt;}
.y8{bottom:627.702267pt;}
.y62{bottom:631.710667pt;}
.y8b{bottom:633.843467pt;}
.yf1{bottom:636.157600pt;}
.ycb{bottom:636.180267pt;}
.y34{bottom:638.771600pt;}
.y7{bottom:643.036267pt;}
.y8a{bottom:648.239867pt;}
.y61{bottom:648.574667pt;}
.yf0{bottom:651.491600pt;}
.yca{bottom:651.514267pt;}
.y33{bottom:655.171600pt;}
.y6{bottom:658.370267pt;}
.y89{bottom:662.636267pt;}
.y60{bottom:662.971067pt;}
.yef{bottom:666.825600pt;}
.yc9{bottom:666.848267pt;}
.y32{bottom:671.571600pt;}
.y5{bottom:673.704267pt;}
.y5f{bottom:677.367467pt;}
.y88{bottom:677.379867pt;}
.yee{bottom:682.159600pt;}
.yc8{bottom:682.182267pt;}
.y31{bottom:687.971600pt;}
.y4{bottom:689.038267pt;}
.y5e{bottom:691.763867pt;}
.y87{bottom:694.243867pt;}
.yed{bottom:697.493600pt;}
.yc7{bottom:697.516267pt;}
.y30{bottom:704.371600pt;}
.y5d{bottom:706.160267pt;}
.y86{bottom:708.640267pt;}
.yec{bottom:712.827600pt;}
.yc6{bottom:712.850267pt;}
.y5c{bottom:720.556667pt;}
.y2f{bottom:720.771600pt;}
.y85{bottom:723.036667pt;}
.yeb{bottom:728.161600pt;}
.yc5{bottom:728.184267pt;}
.y3{bottom:734.904933pt;}
.y2e{bottom:737.171600pt;}
.y5b{bottom:737.420667pt;}
.y84{bottom:737.433067pt;}
.yea{bottom:743.495600pt;}
.yc4{bottom:743.518267pt;}
.y81{bottom:751.482267pt;}
.y5a{bottom:751.817067pt;}
.y83{bottom:751.829467pt;}
.y2d{bottom:753.571600pt;}
.ye9{bottom:758.829600pt;}
.yc3{bottom:758.852267pt;}
.y28{bottom:762.125333pt;}
.y80{bottom:765.878667pt;}
.y59{bottom:766.213467pt;}
.y82{bottom:766.225867pt;}
.y27{bottom:768.790267pt;}
.y2c{bottom:769.971600pt;}
.y2{bottom:774.058400pt;}
.ye8{bottom:774.163600pt;}
.yc2{bottom:774.186267pt;}
.y58{bottom:783.077467pt;}
.y2b{bottom:786.371600pt;}
.ye7{bottom:789.497600pt;}
.yc1{bottom:789.520267pt;}
.y1{bottom:796.714400pt;}
.y57{bottom:799.941467pt;}
.y2a{bottom:802.771600pt;}
.ye6{bottom:804.831600pt;}
.yc0{bottom:804.854267pt;}
.y29{bottom:849.726533pt;}
.h8{height:13.596267pt;}
.hb{height:37.696000pt;}
.h13{height:40.482667pt;}
.hd{height:40.618667pt;}
.h5{height:40.800000pt;}
.h14{height:41.434667pt;}
.h4{height:42.840000pt;}
.ha{height:43.003200pt;}
.hc{height:44.441600pt;}
.h9{height:45.216000pt;}
.hf{height:45.830400pt;}
.h7{height:48.000000pt;}
.h10{height:48.746667pt;}
.he{height:50.240000pt;}
.h6{height:50.400000pt;}
.h3{height:60.288000pt;}
.h2{height:80.640000pt;}
.h11{height:100.638400pt;}
.h12{height:102.027200pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x8{left:23.081200pt;}
.x7{left:25.631733pt;}
.x5{left:64.252000pt;}
.x1{left:71.811067pt;}
.x13{left:75.590533pt;}
.x6{left:83.145333pt;}
.x2{left:90.704400pt;}
.xa{left:109.597733pt;}
.xc{left:131.765067pt;}
.xe{left:132.918267pt;}
.xb{left:135.775200pt;}
.x9{left:204.372000pt;}
.xf{left:206.351067pt;}
.x10{left:237.393733pt;}
.x15{left:314.145867pt;}
.x11{left:321.711067pt;}
.x14{left:325.479200pt;}
.x12{left:333.044400pt;}
.xd{left:347.326667pt;}
.x4{left:579.238667pt;}
.x3{left:581.789200pt;}
}




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