
    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_b6f3ad280ad7db4a408cecd7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.933000;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_881da23c76eeb99c05778403.woff')format("woff");}.ff2{font-family:ff2;line-height:0.934000;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_567fedd8264c3e7080f0cd8e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.934000;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_76bc7b156e99988277dc16e2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.934000;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_f47d1eae1bfa512d631664c5.woff')format("woff");}.ff5{font-family:ff5;line-height:0.933000;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_30a5f31178ff6879e6f29e40.woff')format("woff");}.ff6{font-family:ff6;line-height:0.933000;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_5c7490a6eaed1dbcd28868b6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.931000;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_8c98e15cbaa1ae1a1ffba207.woff')format("woff");}.ff8{font-family:ff8;line-height:0.715000;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_ad04f89799553368b04e1b95.woff')format("woff");}.ff9{font-family:ff9;line-height:0.700000;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_092ee93cb4f3af9f7bb988b1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.721000;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_f4947e6f1d9cc04f776f5550.woff')format("woff");}.ffb{font-family:ffb;line-height:0.830078;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_b8ef11597e8256c8247b599f.woff')format("woff");}.ffc{font-family:ffc;line-height:0.710000;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_8f069bb4a9fd2bef74f649a7.woff')format("woff");}.ffd{font-family:ffd;line-height:0.842000;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_b0b06fc8cee8e1d22bbfc9ad.woff')format("woff");}.ffe{font-family:ffe;line-height:1.005371;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;}
.m3{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls24{letter-spacing:-8.532000px;}
.ls20{letter-spacing:-3.744000px;}
.ls11{letter-spacing:-2.430000px;}
.ls33{letter-spacing:-2.214000px;}
.ls29{letter-spacing:-1.392000px;}
.ls9{letter-spacing:-1.134000px;}
.ls31{letter-spacing:-1.026000px;}
.ls10{letter-spacing:-0.972000px;}
.ls16{letter-spacing:-0.864000px;}
.ls27{letter-spacing:-0.810000px;}
.ls8{letter-spacing:-0.756000px;}
.ls12{letter-spacing:-0.540000px;}
.ls2c{letter-spacing:-0.432000px;}
.ls32{letter-spacing:-0.378000px;}
.ls30{letter-spacing:-0.324000px;}
.ls17{letter-spacing:-0.300000px;}
.ls28{letter-spacing:-0.288000px;}
.ls26{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.162000px;}
.ls15{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.054000px;}
.ls6{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.054000px;}
.ls2{letter-spacing:0.081000px;}
.ls1c{letter-spacing:0.096000px;}
.lsd{letter-spacing:0.108000px;}
.ls2d{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.162000px;}
.ls2a{letter-spacing:0.192000px;}
.ls2f{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.240000px;}
.ls7{letter-spacing:0.270000px;}
.ls25{letter-spacing:0.324000px;}
.lse{letter-spacing:0.378000px;}
.ls34{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.480000px;}
.ls1f{letter-spacing:0.486000px;}
.ls18{letter-spacing:0.528000px;}
.ls21{letter-spacing:0.540000px;}
.ls23{letter-spacing:0.594000px;}
.ls13{letter-spacing:0.648000px;}
.ls1d{letter-spacing:0.738600px;}
.ls35{letter-spacing:0.756000px;}
.ls19{letter-spacing:0.768000px;}
.ls22{letter-spacing:0.810000px;}
.ls1e{letter-spacing:0.972000px;}
.ls2b{letter-spacing:1.056000px;}
.ls3{letter-spacing:1.170000px;}
.ls14{letter-spacing:1.404000px;}
.ls0{letter-spacing:4.320000px;}
.ls2e{letter-spacing:10.800000px;}
.ls1b{letter-spacing:13.824000px;}
.ls1a{letter-spacing:14.928000px;}
.ls1{letter-spacing:2854.800000px;}
.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;}
}
.ws41{word-spacing:-54.000000px;}
.ws3d{word-spacing:-45.468000px;}
.ws7f{word-spacing:-20.250000px;}
.ws85{word-spacing:-18.900000px;}
.ws87{word-spacing:-18.468000px;}
.ws8a{word-spacing:-18.360000px;}
.ws6{word-spacing:-16.380000px;}
.ws82{word-spacing:-16.254000px;}
.ws2{word-spacing:-16.146000px;}
.ws84{word-spacing:-14.310000px;}
.ws8f{word-spacing:-11.556000px;}
.ws5{word-spacing:-11.448000px;}
.ws3b{word-spacing:-11.232000px;}
.ws8e{word-spacing:-11.070000px;}
.ws40{word-spacing:-10.962000px;}
.ws1{word-spacing:-10.854000px;}
.ws6e{word-spacing:-10.800000px;}
.ws3c{word-spacing:-10.746000px;}
.ws3f{word-spacing:-10.584000px;}
.ws5a{word-spacing:-10.128000px;}
.ws44{word-spacing:-10.080000px;}
.ws42{word-spacing:-9.990000px;}
.ws7c{word-spacing:-9.936000px;}
.ws55{word-spacing:-9.552000px;}
.ws5e{word-spacing:-9.360000px;}
.ws3a{word-spacing:-9.312000px;}
.ws4{word-spacing:-9.288000px;}
.ws57{word-spacing:-9.264000px;}
.ws58{word-spacing:-9.168000px;}
.ws90{word-spacing:-9.000000px;}
.ws54{word-spacing:-8.928000px;}
.ws0{word-spacing:-8.820000px;}
.ws43{word-spacing:-8.784000px;}
.ws8{word-spacing:-8.688000px;}
.ws3e{word-spacing:-8.640000px;}
.ws3{word-spacing:-8.478000px;}
.ws91{word-spacing:-7.695000px;}
.ws56{word-spacing:-7.680000px;}
.ws7{word-spacing:-6.996000px;}
.ws83{word-spacing:-6.210000px;}
.ws59{word-spacing:-5.328000px;}
.ws36{word-spacing:-2.580000px;}
.ws37{word-spacing:-2.340000px;}
.ws4d{word-spacing:-2.160000px;}
.ws7a{word-spacing:-1.998000px;}
.ws49{word-spacing:-1.890000px;}
.ws72{word-spacing:-1.836000px;}
.wsa0{word-spacing:-1.665000px;}
.ws31{word-spacing:-1.404000px;}
.ws47{word-spacing:-1.350000px;}
.ws66{word-spacing:-1.296000px;}
.ws9f{word-spacing:-1.260000px;}
.wsa2{word-spacing:-1.170000px;}
.wsa1{word-spacing:-1.125000px;}
.ws2c{word-spacing:-1.026000px;}
.ws2b{word-spacing:-0.972000px;}
.ws1e{word-spacing:-0.918000px;}
.ws95{word-spacing:-0.864000px;}
.ws15{word-spacing:-0.702000px;}
.ws1d{word-spacing:-0.648000px;}
.ws97{word-spacing:-0.624000px;}
.ws14{word-spacing:-0.594000px;}
.wsa{word-spacing:-0.540000px;}
.ws39{word-spacing:-0.528000px;}
.wsac{word-spacing:-0.495000px;}
.ws65{word-spacing:-0.486000px;}
.ws53{word-spacing:-0.480000px;}
.ws9a{word-spacing:-0.450000px;}
.ws8c{word-spacing:-0.432000px;}
.ws99{word-spacing:-0.405000px;}
.ws67{word-spacing:-0.378000px;}
.ws9b{word-spacing:-0.360000px;}
.ws2f{word-spacing:-0.324000px;}
.wsa4{word-spacing:-0.315000px;}
.ws38{word-spacing:-0.288000px;}
.wsb{word-spacing:-0.270000px;}
.ws46{word-spacing:-0.240000px;}
.wsa5{word-spacing:-0.225000px;}
.ws86{word-spacing:-0.216000px;}
.wsa6{word-spacing:-0.180000px;}
.wse{word-spacing:-0.162000px;}
.wsf{word-spacing:-0.108000px;}
.ws5b{word-spacing:-0.096000px;}
.ws7b{word-spacing:-0.054000px;}
.ws9{word-spacing:0.000000px;}
.wsd{word-spacing:0.054000px;}
.ws33{word-spacing:0.108000px;}
.wsc{word-spacing:0.162000px;}
.ws1b{word-spacing:0.216000px;}
.ws23{word-spacing:0.270000px;}
.ws1c{word-spacing:0.324000px;}
.ws1a{word-spacing:0.378000px;}
.ws81{word-spacing:0.432000px;}
.ws1f{word-spacing:0.486000px;}
.ws2a{word-spacing:0.540000px;}
.ws20{word-spacing:0.594000px;}
.ws4b{word-spacing:0.648000px;}
.ws4a{word-spacing:0.702000px;}
.ws34{word-spacing:0.756000px;}
.ws35{word-spacing:0.864000px;}
.ws5d{word-spacing:0.912000px;}
.ws9e{word-spacing:0.945000px;}
.ws7d{word-spacing:0.972000px;}
.ws10{word-spacing:1.026000px;}
.ws11{word-spacing:1.134000px;}
.ws8d{word-spacing:1.242000px;}
.ws60{word-spacing:1.296000px;}
.ws17{word-spacing:1.350000px;}
.ws5c{word-spacing:1.392000px;}
.ws62{word-spacing:1.404000px;}
.ws25{word-spacing:1.512000px;}
.ws48{word-spacing:1.566000px;}
.ws18{word-spacing:1.674000px;}
.ws16{word-spacing:1.728000px;}
.ws26{word-spacing:1.782000px;}
.ws63{word-spacing:1.836000px;}
.wsa3{word-spacing:1.845000px;}
.ws6d{word-spacing:1.890000px;}
.ws22{word-spacing:1.944000px;}
.ws2e{word-spacing:1.998000px;}
.ws9c{word-spacing:2.025000px;}
.ws9d{word-spacing:2.070000px;}
.ws19{word-spacing:2.160000px;}
.ws88{word-spacing:2.214000px;}
.wsa7{word-spacing:2.250000px;}
.ws64{word-spacing:2.268000px;}
.wsa8{word-spacing:2.295000px;}
.ws24{word-spacing:2.430000px;}
.ws5f{word-spacing:2.484000px;}
.ws89{word-spacing:2.538000px;}
.ws21{word-spacing:2.592000px;}
.ws71{word-spacing:2.646000px;}
.ws73{word-spacing:2.700000px;}
.ws27{word-spacing:2.754000px;}
.ws2d{word-spacing:2.808000px;}
.ws94{word-spacing:2.862000px;}
.ws52{word-spacing:2.916000px;}
.ws61{word-spacing:2.970000px;}
.ws28{word-spacing:3.024000px;}
.ws51{word-spacing:3.132000px;}
.ws12{word-spacing:3.240000px;}
.ws76{word-spacing:3.348000px;}
.wsa9{word-spacing:3.420000px;}
.wsaa{word-spacing:3.465000px;}
.ws13{word-spacing:3.510000px;}
.ws7e{word-spacing:3.618000px;}
.wsab{word-spacing:3.690000px;}
.ws6b{word-spacing:3.780000px;}
.ws4e{word-spacing:3.834000px;}
.ws98{word-spacing:3.888000px;}
.ws4f{word-spacing:3.942000px;}
.ws79{word-spacing:4.104000px;}
.ws4c{word-spacing:4.158000px;}
.ws6a{word-spacing:4.212000px;}
.ws8b{word-spacing:4.266000px;}
.ws77{word-spacing:4.320000px;}
.ws74{word-spacing:4.428000px;}
.ws68{word-spacing:4.482000px;}
.ws78{word-spacing:4.590000px;}
.ws70{word-spacing:4.644000px;}
.ws6c{word-spacing:5.076000px;}
.ws69{word-spacing:5.130000px;}
.ws75{word-spacing:5.238000px;}
.ws50{word-spacing:5.292000px;}
.ws96{word-spacing:5.346000px;}
.ws29{word-spacing:5.400000px;}
.ws30{word-spacing:5.454000px;}
.ws93{word-spacing:5.994000px;}
.ws80{word-spacing:6.048000px;}
.ws6f{word-spacing:6.156000px;}
.ws92{word-spacing:7.020000px;}
.ws45{word-spacing:14.400000px;}
.ws32{word-spacing:25.200000px;}
._5{margin-left:-25.200000px;}
._8{margin-left:-14.400000px;}
._1c{margin-left:-11.265000px;}
._15{margin-left:-9.103800px;}
._11{margin-left:-7.283400px;}
._6{margin-left:-5.073600px;}
._4{margin-left:-3.971400px;}
._1{margin-left:-2.604000px;}
._0{margin-left:-1.188000px;}
._2{width:1.092000px;}
._3{width:2.568000px;}
._c{width:4.071600px;}
._b{width:5.343000px;}
._18{width:6.654000px;}
._7{width:8.160000px;}
._16{width:9.624000px;}
._9{width:13.740000px;}
._1b{width:17.849400px;}
._19{width:20.117400px;}
._12{width:23.382000px;}
._1a{width:25.596000px;}
._14{width:26.676000px;}
._13{width:29.538000px;}
._17{width:31.320000px;}
._10{width:35.478000px;}
._1d{width:39.139800px;}
._d{width:1826.652000px;}
._f{width:1828.428000px;}
._a{width:1831.212000px;}
._e{width:1833.900000px;}
.fc3{color:rgb(0,103,104);}
.fc2{color:rgb(77,77,79);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:34.980000px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:43.200000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.400000px;}
.fs8{font-size:60.000000px;}
.fs5{font-size:78.000000px;}
.fs6{font-size:84.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y39{bottom:37.986600px;}
.y4{bottom:75.486600px;}
.y9f{bottom:88.685250px;}
.yd2{bottom:90.219300px;}
.y10b{bottom:96.947700px;}
.y86{bottom:98.771850px;}
.y56{bottom:100.242450px;}
.y9e{bottom:105.938250px;}
.yd1{bottom:107.472300px;}
.y10a{bottom:114.200700px;}
.y85{bottom:116.024850px;}
.y55{bottom:117.495450px;}
.y9d{bottom:123.191250px;}
.y13d{bottom:124.042200px;}
.yd0{bottom:124.725300px;}
.y109{bottom:131.453700px;}
.y84{bottom:133.277850px;}
.y54{bottom:134.748450px;}
.y31{bottom:134.815350px;}
.yc{bottom:134.842350px;}
.y13c{bottom:139.038450px;}
.y9c{bottom:140.444250px;}
.ycf{bottom:141.978300px;}
.yb{bottom:147.442350px;}
.y108{bottom:148.706700px;}
.y83{bottom:150.530850px;}
.y53{bottom:152.001450px;}
.y30{bottom:152.068350px;}
.y13b{bottom:154.034700px;}
.y9b{bottom:157.697250px;}
.yce{bottom:159.231300px;}
.ya{bottom:160.042350px;}
.y107{bottom:165.959700px;}
.y82{bottom:167.783850px;}
.y13a{bottom:169.030950px;}
.y52{bottom:169.254450px;}
.y2f{bottom:169.321350px;}
.y9{bottom:172.642350px;}
.y9a{bottom:174.950250px;}
.ycd{bottom:176.484300px;}
.y139{bottom:184.027200px;}
.y81{bottom:185.036850px;}
.y51{bottom:186.507450px;}
.y2e{bottom:186.574350px;}
.y106{bottom:187.709700px;}
.y99{bottom:192.203250px;}
.ycc{bottom:193.737300px;}
.y138{bottom:199.023450px;}
.y80{bottom:202.289850px;}
.y50{bottom:203.760450px;}
.y2d{bottom:203.827350px;}
.y98{bottom:209.456250px;}
.ycb{bottom:210.990300px;}
.y137{bottom:214.019700px;}
.y7f{bottom:219.542850px;}
.y4f{bottom:221.013450px;}
.y2c{bottom:221.080350px;}
.y8{bottom:221.242350px;}
.y97{bottom:226.709250px;}
.yca{bottom:228.243300px;}
.y136{bottom:229.015950px;}
.y7{bottom:234.742350px;}
.y7e{bottom:236.795850px;}
.y4e{bottom:238.266450px;}
.y2b{bottom:238.333350px;}
.y105{bottom:243.890700px;}
.y96{bottom:243.962250px;}
.y135{bottom:244.012200px;}
.y6{bottom:248.242350px;}
.yc9{bottom:249.991800px;}
.y7d{bottom:254.048850px;}
.y4d{bottom:255.519450px;}
.y2a{bottom:255.586350px;}
.y134{bottom:259.008450px;}
.y104{bottom:261.143700px;}
.y95{bottom:261.215250px;}
.y5{bottom:261.742350px;}
.yc8{bottom:267.244800px;}
.y7c{bottom:271.301850px;}
.y29{bottom:272.839350px;}
.y133{bottom:274.004700px;}
.y4c{bottom:277.267950px;}
.y103{bottom:278.396700px;}
.y94{bottom:278.468250px;}
.y7b{bottom:288.554850px;}
.yc7{bottom:288.993300px;}
.y132{bottom:289.000950px;}
.y28{bottom:290.092350px;}
.y4b{bottom:294.520950px;}
.y102{bottom:295.649700px;}
.y93{bottom:295.721250px;}
.y131{bottom:303.997200px;}
.y7a{bottom:305.807850px;}
.yc6{bottom:306.246300px;}
.y4a{bottom:311.773950px;}
.y27{bottom:311.842350px;}
.y92{bottom:312.974250px;}
.y101{bottom:317.398200px;}
.y130{bottom:318.993450px;}
.y79{bottom:323.060850px;}
.yc5{bottom:327.994800px;}
.y49{bottom:329.022450px;}
.y91{bottom:330.227250px;}
.y12f{bottom:333.989700px;}
.y100{bottom:334.651200px;}
.y78{bottom:340.313850px;}
.yc4{bottom:345.247800px;}
.y90{bottom:347.480250px;}
.y12e{bottom:348.985950px;}
.y48{bottom:350.770950px;}
.yff{bottom:356.399700px;}
.y77{bottom:357.566850px;}
.y12d{bottom:363.982200px;}
.y8f{bottom:364.733250px;}
.yc3{bottom:366.996300px;}
.y47{bottom:368.023950px;}
.y26{bottom:368.041350px;}
.yfe{bottom:373.652700px;}
.y76{bottom:374.819850px;}
.y12c{bottom:378.978450px;}
.yc2{bottom:384.249300px;}
.y45{bottom:385.273950px;}
.y46{bottom:385.276950px;}
.y25{bottom:385.294350px;}
.y12b{bottom:393.974700px;}
.yfd{bottom:395.401200px;}
.yc1{bottom:401.502300px;}
.y44{bottom:402.526950px;}
.y24{bottom:402.547350px;}
.y12a{bottom:408.970950px;}
.yad{bottom:410.858250px;}
.yfc{bottom:412.654200px;}
.yc0{bottom:418.755300px;}
.y23{bottom:419.800350px;}
.y8e{bottom:420.944850px;}
.y129{bottom:423.967200px;}
.yac{bottom:425.858250px;}
.yfb{bottom:434.402700px;}
.y8d{bottom:435.944850px;}
.ybf{bottom:436.008300px;}
.y22{bottom:437.053350px;}
.y128{bottom:438.963450px;}
.y43{bottom:440.029950px;}
.yab{bottom:440.858250px;}
.y8c{bottom:450.944850px;}
.yfa{bottom:451.655700px;}
.ybe{bottom:453.261300px;}
.y127{bottom:453.959700px;}
.y21{bottom:454.306350px;}
.yaa{bottom:455.858250px;}
.y42{bottom:456.526950px;}
.y8b{bottom:465.944850px;}
.yf9{bottom:468.908700px;}
.ybd{bottom:470.514300px;}
.ya9{bottom:470.858250px;}
.y20{bottom:471.559350px;}
.y126{bottom:477.959700px;}
.y8a{bottom:480.944850px;}
.ya8{bottom:485.858250px;}
.yf8{bottom:486.161700px;}
.ybc{bottom:487.767300px;}
.y1f{bottom:488.812350px;}
.y41{bottom:494.026950px;}
.y89{bottom:495.944850px;}
.ya7{bottom:500.858250px;}
.y1e{bottom:506.065350px;}
.yf7{bottom:507.910200px;}
.ybb{bottom:509.515800px;}
.y88{bottom:510.944850px;}
.ya6{bottom:515.858250px;}
.y1d{bottom:523.318350px;}
.yf6{bottom:525.163200px;}
.y87{bottom:525.944850px;}
.yba{bottom:526.768800px;}
.ya5{bottom:530.858250px;}
.y125{bottom:534.208200px;}
.y1c{bottom:540.571350px;}
.yf5{bottom:542.416200px;}
.yb9{bottom:544.021800px;}
.ya4{bottom:545.858250px;}
.y40{bottom:550.261950px;}
.y124{bottom:551.461200px;}
.y1b{bottom:557.824350px;}
.ya3{bottom:560.858250px;}
.yb8{bottom:561.274800px;}
.yf4{bottom:564.164700px;}
.y3f{bottom:567.514950px;}
.y123{bottom:573.206700px;}
.y1a{bottom:575.077350px;}
.ya2{bottom:575.858250px;}
.yb7{bottom:578.527800px;}
.yf3{bottom:581.417700px;}
.y3e{bottom:584.767950px;}
.y75{bottom:584.929200px;}
.y122{bottom:590.441700px;}
.ya1{bottom:590.858250px;}
.y19{bottom:592.330350px;}
.yb6{bottom:595.780800px;}
.yf2{bottom:598.670700px;}
.y74{bottom:599.929200px;}
.y3d{bottom:602.020950px;}
.ya0{bottom:605.858250px;}
.y121{bottom:607.694700px;}
.y18{bottom:609.583350px;}
.yb5{bottom:613.033800px;}
.y73{bottom:614.929200px;}
.yf1{bottom:615.923700px;}
.y3c{bottom:619.273950px;}
.y17{bottom:626.836350px;}
.y120{bottom:629.443200px;}
.y72{bottom:629.929200px;}
.yb4{bottom:630.286800px;}
.yf0{bottom:633.176700px;}
.y3b{bottom:636.526950px;}
.y16{bottom:644.089350px;}
.y71{bottom:644.929200px;}
.y11f{bottom:646.696200px;}
.yb3{bottom:647.539800px;}
.yef{bottom:654.925200px;}
.y70{bottom:659.929200px;}
.y15{bottom:661.342350px;}
.y11e{bottom:663.949200px;}
.yb2{bottom:664.792800px;}
.yee{bottom:672.178200px;}
.y6f{bottom:674.929200px;}
.y11d{bottom:681.202200px;}
.yb1{bottom:682.045800px;}
.y5f{bottom:682.651950px;}
.y14{bottom:683.092350px;}
.y6e{bottom:689.929200px;}
.yed{bottom:693.926700px;}
.y5e{bottom:697.651950px;}
.yb0{bottom:699.298800px;}
.y11c{bottom:702.950700px;}
.y6d{bottom:704.929200px;}
.yec{bottom:711.179700px;}
.y5d{bottom:712.651950px;}
.yaf{bottom:716.551800px;}
.y6c{bottom:719.929200px;}
.y11b{bottom:720.203700px;}
.y5c{bottom:727.651950px;}
.yeb{bottom:728.432700px;}
.y33{bottom:732.380250px;}
.yae{bottom:733.804800px;}
.y6b{bottom:734.929200px;}
.y11a{bottom:737.456700px;}
.y13{bottom:739.331850px;}
.y5b{bottom:742.651950px;}
.yea{bottom:745.685700px;}
.y6a{bottom:749.929200px;}
.y32{bottom:751.730250px;}
.y12{bottom:756.584850px;}
.y5a{bottom:757.651950px;}
.y119{bottom:759.205200px;}
.y69{bottom:764.929200px;}
.ye9{bottom:767.434200px;}
.y59{bottom:772.651950px;}
.y118{bottom:776.458200px;}
.y68{bottom:779.929200px;}
.yd5{bottom:779.929800px;}
.ye8{bottom:784.687200px;}
.y11{bottom:785.839350px;}
.y58{bottom:787.651950px;}
.y67{bottom:794.929200px;}
.yd4{bottom:794.929800px;}
.y117{bottom:798.206700px;}
.y57{bottom:802.651950px;}
.ye7{bottom:806.435700px;}
.yd3{bottom:809.929800px;}
.y10{bottom:812.083350px;}
.y116{bottom:815.459700px;}
.ye6{bottom:823.688700px;}
.yf{bottom:829.336350px;}
.y115{bottom:837.209700px;}
.y66{bottom:839.934450px;}
.ye5{bottom:840.941700px;}
.ye{bottom:846.589350px;}
.y65{bottom:854.934450px;}
.ye4{bottom:858.194700px;}
.yd{bottom:863.842350px;}
.y64{bottom:869.934450px;}
.ye3{bottom:879.943200px;}
.y63{bottom:884.934450px;}
.y114{bottom:893.450700px;}
.ye2{bottom:897.196200px;}
.y62{bottom:899.934450px;}
.y113{bottom:910.703700px;}
.y61{bottom:914.934450px;}
.ye1{bottom:918.944700px;}
.y38{bottom:924.967350px;}
.y112{bottom:927.956700px;}
.y60{bottom:929.934450px;}
.ye0{bottom:936.197700px;}
.y111{bottom:945.209700px;}
.y37{bottom:948.967350px;}
.ydf{bottom:957.946200px;}
.y110{bottom:966.959700px;}
.yde{bottom:975.199200px;}
.y36{bottom:978.967350px;}
.ydd{bottom:992.452200px;}
.y35{bottom:1013.467350px;}
.ydc{bottom:1014.200700px;}
.y10f{bottom:1023.191700px;}
.ydb{bottom:1031.453700px;}
.y10e{bottom:1040.444700px;}
.y34{bottom:1045.867350px;}
.yda{bottom:1053.202200px;}
.y10d{bottom:1057.697700px;}
.yd9{bottom:1070.455200px;}
.y10c{bottom:1074.950700px;}
.yd8{bottom:1092.203700px;}
.y3{bottom:1103.439450px;}
.yd7{bottom:1109.456700px;}
.yd6{bottom:1126.709700px;}
.y2{bottom:1136.834700px;}
.y1{bottom:1154.654700px;}
.y3a{bottom:1179.366450px;}
.h6{height:30.030000px;}
.h5{height:32.175000px;}
.h4{height:34.320000px;}
.h3{height:38.610000px;}
.hf{height:38.622000px;}
.he{height:38.682000px;}
.hc{height:41.220000px;}
.h2{height:42.471000px;}
.hd{height:42.714844px;}
.hb{height:43.374023px;}
.ha{height:44.990700px;}
.h7{height:55.770000px;}
.h8{height:60.060000px;}
.h9{height:77.220000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x6{left:-337.606350px;}
.x7{left:-85.039350px;}
.x0{left:0.000000px;}
.x3{left:81.000000px;}
.x2{left:93.134850px;}
.x4{left:288.000000px;}
.x5{left:305.995500px;}
.xb{left:323.937000px;}
.xa{left:325.530000px;}
.x8{left:394.993200px;}
.x9{left:507.034500px;}
.x1{left:715.606200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls24{letter-spacing:-7.584000pt;}
.ls20{letter-spacing:-3.328000pt;}
.ls11{letter-spacing:-2.160000pt;}
.ls33{letter-spacing:-1.968000pt;}
.ls29{letter-spacing:-1.237333pt;}
.ls9{letter-spacing:-1.008000pt;}
.ls31{letter-spacing:-0.912000pt;}
.ls10{letter-spacing:-0.864000pt;}
.ls16{letter-spacing:-0.768000pt;}
.ls27{letter-spacing:-0.720000pt;}
.ls8{letter-spacing:-0.672000pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls2c{letter-spacing:-0.384000pt;}
.ls32{letter-spacing:-0.336000pt;}
.ls30{letter-spacing:-0.288000pt;}
.ls17{letter-spacing:-0.266667pt;}
.ls28{letter-spacing:-0.256000pt;}
.ls26{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.144000pt;}
.ls15{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.048000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.048000pt;}
.ls2{letter-spacing:0.072000pt;}
.ls1c{letter-spacing:0.085333pt;}
.lsd{letter-spacing:0.096000pt;}
.ls2d{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.144000pt;}
.ls2a{letter-spacing:0.170667pt;}
.ls2f{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.213333pt;}
.ls7{letter-spacing:0.240000pt;}
.ls25{letter-spacing:0.288000pt;}
.lse{letter-spacing:0.336000pt;}
.ls34{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.426667pt;}
.ls1f{letter-spacing:0.432000pt;}
.ls18{letter-spacing:0.469333pt;}
.ls21{letter-spacing:0.480000pt;}
.ls23{letter-spacing:0.528000pt;}
.ls13{letter-spacing:0.576000pt;}
.ls1d{letter-spacing:0.656533pt;}
.ls35{letter-spacing:0.672000pt;}
.ls19{letter-spacing:0.682667pt;}
.ls22{letter-spacing:0.720000pt;}
.ls1e{letter-spacing:0.864000pt;}
.ls2b{letter-spacing:0.938667pt;}
.ls3{letter-spacing:1.040000pt;}
.ls14{letter-spacing:1.248000pt;}
.ls0{letter-spacing:3.840000pt;}
.ls2e{letter-spacing:9.600000pt;}
.ls1b{letter-spacing:12.288000pt;}
.ls1a{letter-spacing:13.269333pt;}
.ls1{letter-spacing:2537.600000pt;}
.ws41{word-spacing:-48.000000pt;}
.ws3d{word-spacing:-40.416000pt;}
.ws7f{word-spacing:-18.000000pt;}
.ws85{word-spacing:-16.800000pt;}
.ws87{word-spacing:-16.416000pt;}
.ws8a{word-spacing:-16.320000pt;}
.ws6{word-spacing:-14.560000pt;}
.ws82{word-spacing:-14.448000pt;}
.ws2{word-spacing:-14.352000pt;}
.ws84{word-spacing:-12.720000pt;}
.ws8f{word-spacing:-10.272000pt;}
.ws5{word-spacing:-10.176000pt;}
.ws3b{word-spacing:-9.984000pt;}
.ws8e{word-spacing:-9.840000pt;}
.ws40{word-spacing:-9.744000pt;}
.ws1{word-spacing:-9.648000pt;}
.ws6e{word-spacing:-9.600000pt;}
.ws3c{word-spacing:-9.552000pt;}
.ws3f{word-spacing:-9.408000pt;}
.ws5a{word-spacing:-9.002667pt;}
.ws44{word-spacing:-8.960000pt;}
.ws42{word-spacing:-8.880000pt;}
.ws7c{word-spacing:-8.832000pt;}
.ws55{word-spacing:-8.490667pt;}
.ws5e{word-spacing:-8.320000pt;}
.ws3a{word-spacing:-8.277333pt;}
.ws4{word-spacing:-8.256000pt;}
.ws57{word-spacing:-8.234667pt;}
.ws58{word-spacing:-8.149333pt;}
.ws90{word-spacing:-8.000000pt;}
.ws54{word-spacing:-7.936000pt;}
.ws0{word-spacing:-7.840000pt;}
.ws43{word-spacing:-7.808000pt;}
.ws8{word-spacing:-7.722667pt;}
.ws3e{word-spacing:-7.680000pt;}
.ws3{word-spacing:-7.536000pt;}
.ws91{word-spacing:-6.840000pt;}
.ws56{word-spacing:-6.826667pt;}
.ws7{word-spacing:-6.218667pt;}
.ws83{word-spacing:-5.520000pt;}
.ws59{word-spacing:-4.736000pt;}
.ws36{word-spacing:-2.293333pt;}
.ws37{word-spacing:-2.080000pt;}
.ws4d{word-spacing:-1.920000pt;}
.ws7a{word-spacing:-1.776000pt;}
.ws49{word-spacing:-1.680000pt;}
.ws72{word-spacing:-1.632000pt;}
.wsa0{word-spacing:-1.480000pt;}
.ws31{word-spacing:-1.248000pt;}
.ws47{word-spacing:-1.200000pt;}
.ws66{word-spacing:-1.152000pt;}
.ws9f{word-spacing:-1.120000pt;}
.wsa2{word-spacing:-1.040000pt;}
.wsa1{word-spacing:-1.000000pt;}
.ws2c{word-spacing:-0.912000pt;}
.ws2b{word-spacing:-0.864000pt;}
.ws1e{word-spacing:-0.816000pt;}
.ws95{word-spacing:-0.768000pt;}
.ws15{word-spacing:-0.624000pt;}
.ws1d{word-spacing:-0.576000pt;}
.ws97{word-spacing:-0.554667pt;}
.ws14{word-spacing:-0.528000pt;}
.wsa{word-spacing:-0.480000pt;}
.ws39{word-spacing:-0.469333pt;}
.wsac{word-spacing:-0.440000pt;}
.ws65{word-spacing:-0.432000pt;}
.ws53{word-spacing:-0.426667pt;}
.ws9a{word-spacing:-0.400000pt;}
.ws8c{word-spacing:-0.384000pt;}
.ws99{word-spacing:-0.360000pt;}
.ws67{word-spacing:-0.336000pt;}
.ws9b{word-spacing:-0.320000pt;}
.ws2f{word-spacing:-0.288000pt;}
.wsa4{word-spacing:-0.280000pt;}
.ws38{word-spacing:-0.256000pt;}
.wsb{word-spacing:-0.240000pt;}
.ws46{word-spacing:-0.213333pt;}
.wsa5{word-spacing:-0.200000pt;}
.ws86{word-spacing:-0.192000pt;}
.wsa6{word-spacing:-0.160000pt;}
.wse{word-spacing:-0.144000pt;}
.wsf{word-spacing:-0.096000pt;}
.ws5b{word-spacing:-0.085333pt;}
.ws7b{word-spacing:-0.048000pt;}
.ws9{word-spacing:0.000000pt;}
.wsd{word-spacing:0.048000pt;}
.ws33{word-spacing:0.096000pt;}
.wsc{word-spacing:0.144000pt;}
.ws1b{word-spacing:0.192000pt;}
.ws23{word-spacing:0.240000pt;}
.ws1c{word-spacing:0.288000pt;}
.ws1a{word-spacing:0.336000pt;}
.ws81{word-spacing:0.384000pt;}
.ws1f{word-spacing:0.432000pt;}
.ws2a{word-spacing:0.480000pt;}
.ws20{word-spacing:0.528000pt;}
.ws4b{word-spacing:0.576000pt;}
.ws4a{word-spacing:0.624000pt;}
.ws34{word-spacing:0.672000pt;}
.ws35{word-spacing:0.768000pt;}
.ws5d{word-spacing:0.810667pt;}
.ws9e{word-spacing:0.840000pt;}
.ws7d{word-spacing:0.864000pt;}
.ws10{word-spacing:0.912000pt;}
.ws11{word-spacing:1.008000pt;}
.ws8d{word-spacing:1.104000pt;}
.ws60{word-spacing:1.152000pt;}
.ws17{word-spacing:1.200000pt;}
.ws5c{word-spacing:1.237333pt;}
.ws62{word-spacing:1.248000pt;}
.ws25{word-spacing:1.344000pt;}
.ws48{word-spacing:1.392000pt;}
.ws18{word-spacing:1.488000pt;}
.ws16{word-spacing:1.536000pt;}
.ws26{word-spacing:1.584000pt;}
.ws63{word-spacing:1.632000pt;}
.wsa3{word-spacing:1.640000pt;}
.ws6d{word-spacing:1.680000pt;}
.ws22{word-spacing:1.728000pt;}
.ws2e{word-spacing:1.776000pt;}
.ws9c{word-spacing:1.800000pt;}
.ws9d{word-spacing:1.840000pt;}
.ws19{word-spacing:1.920000pt;}
.ws88{word-spacing:1.968000pt;}
.wsa7{word-spacing:2.000000pt;}
.ws64{word-spacing:2.016000pt;}
.wsa8{word-spacing:2.040000pt;}
.ws24{word-spacing:2.160000pt;}
.ws5f{word-spacing:2.208000pt;}
.ws89{word-spacing:2.256000pt;}
.ws21{word-spacing:2.304000pt;}
.ws71{word-spacing:2.352000pt;}
.ws73{word-spacing:2.400000pt;}
.ws27{word-spacing:2.448000pt;}
.ws2d{word-spacing:2.496000pt;}
.ws94{word-spacing:2.544000pt;}
.ws52{word-spacing:2.592000pt;}
.ws61{word-spacing:2.640000pt;}
.ws28{word-spacing:2.688000pt;}
.ws51{word-spacing:2.784000pt;}
.ws12{word-spacing:2.880000pt;}
.ws76{word-spacing:2.976000pt;}
.wsa9{word-spacing:3.040000pt;}
.wsaa{word-spacing:3.080000pt;}
.ws13{word-spacing:3.120000pt;}
.ws7e{word-spacing:3.216000pt;}
.wsab{word-spacing:3.280000pt;}
.ws6b{word-spacing:3.360000pt;}
.ws4e{word-spacing:3.408000pt;}
.ws98{word-spacing:3.456000pt;}
.ws4f{word-spacing:3.504000pt;}
.ws79{word-spacing:3.648000pt;}
.ws4c{word-spacing:3.696000pt;}
.ws6a{word-spacing:3.744000pt;}
.ws8b{word-spacing:3.792000pt;}
.ws77{word-spacing:3.840000pt;}
.ws74{word-spacing:3.936000pt;}
.ws68{word-spacing:3.984000pt;}
.ws78{word-spacing:4.080000pt;}
.ws70{word-spacing:4.128000pt;}
.ws6c{word-spacing:4.512000pt;}
.ws69{word-spacing:4.560000pt;}
.ws75{word-spacing:4.656000pt;}
.ws50{word-spacing:4.704000pt;}
.ws96{word-spacing:4.752000pt;}
.ws29{word-spacing:4.800000pt;}
.ws30{word-spacing:4.848000pt;}
.ws93{word-spacing:5.328000pt;}
.ws80{word-spacing:5.376000pt;}
.ws6f{word-spacing:5.472000pt;}
.ws92{word-spacing:6.240000pt;}
.ws45{word-spacing:12.800000pt;}
.ws32{word-spacing:22.400000pt;}
._5{margin-left:-22.400000pt;}
._8{margin-left:-12.800000pt;}
._1c{margin-left:-10.013333pt;}
._15{margin-left:-8.092267pt;}
._11{margin-left:-6.474133pt;}
._6{margin-left:-4.509867pt;}
._4{margin-left:-3.530133pt;}
._1{margin-left:-2.314667pt;}
._0{margin-left:-1.056000pt;}
._2{width:0.970667pt;}
._3{width:2.282667pt;}
._c{width:3.619200pt;}
._b{width:4.749333pt;}
._18{width:5.914667pt;}
._7{width:7.253333pt;}
._16{width:8.554667pt;}
._9{width:12.213333pt;}
._1b{width:15.866133pt;}
._19{width:17.882133pt;}
._12{width:20.784000pt;}
._1a{width:22.752000pt;}
._14{width:23.712000pt;}
._13{width:26.256000pt;}
._17{width:27.840000pt;}
._10{width:31.536000pt;}
._1d{width:34.790933pt;}
._d{width:1623.690667pt;}
._f{width:1625.269333pt;}
._a{width:1627.744000pt;}
._e{width:1630.133333pt;}
.fs9{font-size:31.093333pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:38.400000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:52.800000pt;}
.fs8{font-size:53.333333pt;}
.fs5{font-size:69.333333pt;}
.fs6{font-size:74.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:33.765867pt;}
.y4{bottom:67.099200pt;}
.y9f{bottom:78.831333pt;}
.yd2{bottom:80.194933pt;}
.y10b{bottom:86.175733pt;}
.y86{bottom:87.797200pt;}
.y56{bottom:89.104400pt;}
.y9e{bottom:94.167333pt;}
.yd1{bottom:95.530933pt;}
.y10a{bottom:101.511733pt;}
.y85{bottom:103.133200pt;}
.y55{bottom:104.440400pt;}
.y9d{bottom:109.503333pt;}
.y13d{bottom:110.259733pt;}
.yd0{bottom:110.866933pt;}
.y109{bottom:116.847733pt;}
.y84{bottom:118.469200pt;}
.y54{bottom:119.776400pt;}
.y31{bottom:119.835867pt;}
.yc{bottom:119.859867pt;}
.y13c{bottom:123.589733pt;}
.y9c{bottom:124.839333pt;}
.ycf{bottom:126.202933pt;}
.yb{bottom:131.059867pt;}
.y108{bottom:132.183733pt;}
.y83{bottom:133.805200pt;}
.y53{bottom:135.112400pt;}
.y30{bottom:135.171867pt;}
.y13b{bottom:136.919733pt;}
.y9b{bottom:140.175333pt;}
.yce{bottom:141.538933pt;}
.ya{bottom:142.259867pt;}
.y107{bottom:147.519733pt;}
.y82{bottom:149.141200pt;}
.y13a{bottom:150.249733pt;}
.y52{bottom:150.448400pt;}
.y2f{bottom:150.507867pt;}
.y9{bottom:153.459867pt;}
.y9a{bottom:155.511333pt;}
.ycd{bottom:156.874933pt;}
.y139{bottom:163.579733pt;}
.y81{bottom:164.477200pt;}
.y51{bottom:165.784400pt;}
.y2e{bottom:165.843867pt;}
.y106{bottom:166.853067pt;}
.y99{bottom:170.847333pt;}
.ycc{bottom:172.210933pt;}
.y138{bottom:176.909733pt;}
.y80{bottom:179.813200pt;}
.y50{bottom:181.120400pt;}
.y2d{bottom:181.179867pt;}
.y98{bottom:186.183333pt;}
.ycb{bottom:187.546933pt;}
.y137{bottom:190.239733pt;}
.y7f{bottom:195.149200pt;}
.y4f{bottom:196.456400pt;}
.y2c{bottom:196.515867pt;}
.y8{bottom:196.659867pt;}
.y97{bottom:201.519333pt;}
.yca{bottom:202.882933pt;}
.y136{bottom:203.569733pt;}
.y7{bottom:208.659867pt;}
.y7e{bottom:210.485200pt;}
.y4e{bottom:211.792400pt;}
.y2b{bottom:211.851867pt;}
.y105{bottom:216.791733pt;}
.y96{bottom:216.855333pt;}
.y135{bottom:216.899733pt;}
.y6{bottom:220.659867pt;}
.yc9{bottom:222.214933pt;}
.y7d{bottom:225.821200pt;}
.y4d{bottom:227.128400pt;}
.y2a{bottom:227.187867pt;}
.y134{bottom:230.229733pt;}
.y104{bottom:232.127733pt;}
.y95{bottom:232.191333pt;}
.y5{bottom:232.659867pt;}
.yc8{bottom:237.550933pt;}
.y7c{bottom:241.157200pt;}
.y29{bottom:242.523867pt;}
.y133{bottom:243.559733pt;}
.y4c{bottom:246.460400pt;}
.y103{bottom:247.463733pt;}
.y94{bottom:247.527333pt;}
.y7b{bottom:256.493200pt;}
.yc7{bottom:256.882933pt;}
.y132{bottom:256.889733pt;}
.y28{bottom:257.859867pt;}
.y4b{bottom:261.796400pt;}
.y102{bottom:262.799733pt;}
.y93{bottom:262.863333pt;}
.y131{bottom:270.219733pt;}
.y7a{bottom:271.829200pt;}
.yc6{bottom:272.218933pt;}
.y4a{bottom:277.132400pt;}
.y27{bottom:277.193200pt;}
.y92{bottom:278.199333pt;}
.y101{bottom:282.131733pt;}
.y130{bottom:283.549733pt;}
.y79{bottom:287.165200pt;}
.yc5{bottom:291.550933pt;}
.y49{bottom:292.464400pt;}
.y91{bottom:293.535333pt;}
.y12f{bottom:296.879733pt;}
.y100{bottom:297.467733pt;}
.y78{bottom:302.501200pt;}
.yc4{bottom:306.886933pt;}
.y90{bottom:308.871333pt;}
.y12e{bottom:310.209733pt;}
.y48{bottom:311.796400pt;}
.yff{bottom:316.799733pt;}
.y77{bottom:317.837200pt;}
.y12d{bottom:323.539733pt;}
.y8f{bottom:324.207333pt;}
.yc3{bottom:326.218933pt;}
.y47{bottom:327.132400pt;}
.y26{bottom:327.147867pt;}
.yfe{bottom:332.135733pt;}
.y76{bottom:333.173200pt;}
.y12c{bottom:336.869733pt;}
.yc2{bottom:341.554933pt;}
.y45{bottom:342.465733pt;}
.y46{bottom:342.468400pt;}
.y25{bottom:342.483867pt;}
.y12b{bottom:350.199733pt;}
.yfd{bottom:351.467733pt;}
.yc1{bottom:356.890933pt;}
.y44{bottom:357.801733pt;}
.y24{bottom:357.819867pt;}
.y12a{bottom:363.529733pt;}
.yad{bottom:365.207333pt;}
.yfc{bottom:366.803733pt;}
.yc0{bottom:372.226933pt;}
.y23{bottom:373.155867pt;}
.y8e{bottom:374.173200pt;}
.y129{bottom:376.859733pt;}
.yac{bottom:378.540667pt;}
.yfb{bottom:386.135733pt;}
.y8d{bottom:387.506533pt;}
.ybf{bottom:387.562933pt;}
.y22{bottom:388.491867pt;}
.y128{bottom:390.189733pt;}
.y43{bottom:391.137733pt;}
.yab{bottom:391.874000pt;}
.y8c{bottom:400.839867pt;}
.yfa{bottom:401.471733pt;}
.ybe{bottom:402.898933pt;}
.y127{bottom:403.519733pt;}
.y21{bottom:403.827867pt;}
.yaa{bottom:405.207333pt;}
.y42{bottom:405.801733pt;}
.y8b{bottom:414.173200pt;}
.yf9{bottom:416.807733pt;}
.ybd{bottom:418.234933pt;}
.ya9{bottom:418.540667pt;}
.y20{bottom:419.163867pt;}
.y126{bottom:424.853067pt;}
.y8a{bottom:427.506533pt;}
.ya8{bottom:431.874000pt;}
.yf8{bottom:432.143733pt;}
.ybc{bottom:433.570933pt;}
.y1f{bottom:434.499867pt;}
.y41{bottom:439.135067pt;}
.y89{bottom:440.839867pt;}
.ya7{bottom:445.207333pt;}
.y1e{bottom:449.835867pt;}
.yf7{bottom:451.475733pt;}
.ybb{bottom:452.902933pt;}
.y88{bottom:454.173200pt;}
.ya6{bottom:458.540667pt;}
.y1d{bottom:465.171867pt;}
.yf6{bottom:466.811733pt;}
.y87{bottom:467.506533pt;}
.yba{bottom:468.238933pt;}
.ya5{bottom:471.874000pt;}
.y125{bottom:474.851733pt;}
.y1c{bottom:480.507867pt;}
.yf5{bottom:482.147733pt;}
.yb9{bottom:483.574933pt;}
.ya4{bottom:485.207333pt;}
.y40{bottom:489.121733pt;}
.y124{bottom:490.187733pt;}
.y1b{bottom:495.843867pt;}
.ya3{bottom:498.540667pt;}
.yb8{bottom:498.910933pt;}
.yf4{bottom:501.479733pt;}
.y3f{bottom:504.457733pt;}
.y123{bottom:509.517067pt;}
.y1a{bottom:511.179867pt;}
.ya2{bottom:511.874000pt;}
.yb7{bottom:514.246933pt;}
.yf3{bottom:516.815733pt;}
.y3e{bottom:519.793733pt;}
.y75{bottom:519.937067pt;}
.y122{bottom:524.837067pt;}
.ya1{bottom:525.207333pt;}
.y19{bottom:526.515867pt;}
.yb6{bottom:529.582933pt;}
.yf2{bottom:532.151733pt;}
.y74{bottom:533.270400pt;}
.y3d{bottom:535.129733pt;}
.ya0{bottom:538.540667pt;}
.y121{bottom:540.173067pt;}
.y18{bottom:541.851867pt;}
.yb5{bottom:544.918933pt;}
.y73{bottom:546.603733pt;}
.yf1{bottom:547.487733pt;}
.y3c{bottom:550.465733pt;}
.y17{bottom:557.187867pt;}
.y120{bottom:559.505067pt;}
.y72{bottom:559.937067pt;}
.yb4{bottom:560.254933pt;}
.yf0{bottom:562.823733pt;}
.y3b{bottom:565.801733pt;}
.y16{bottom:572.523867pt;}
.y71{bottom:573.270400pt;}
.y11f{bottom:574.841067pt;}
.yb3{bottom:575.590933pt;}
.yef{bottom:582.155733pt;}
.y70{bottom:586.603733pt;}
.y15{bottom:587.859867pt;}
.y11e{bottom:590.177067pt;}
.yb2{bottom:590.926933pt;}
.yee{bottom:597.491733pt;}
.y6f{bottom:599.937067pt;}
.y11d{bottom:605.513067pt;}
.yb1{bottom:606.262933pt;}
.y5f{bottom:606.801733pt;}
.y14{bottom:607.193200pt;}
.y6e{bottom:613.270400pt;}
.yed{bottom:616.823733pt;}
.y5e{bottom:620.135067pt;}
.yb0{bottom:621.598933pt;}
.y11c{bottom:624.845067pt;}
.y6d{bottom:626.603733pt;}
.yec{bottom:632.159733pt;}
.y5d{bottom:633.468400pt;}
.yaf{bottom:636.934933pt;}
.y6c{bottom:639.937067pt;}
.y11b{bottom:640.181067pt;}
.y5c{bottom:646.801733pt;}
.yeb{bottom:647.495733pt;}
.y33{bottom:651.004667pt;}
.yae{bottom:652.270933pt;}
.y6b{bottom:653.270400pt;}
.y11a{bottom:655.517067pt;}
.y13{bottom:657.183867pt;}
.y5b{bottom:660.135067pt;}
.yea{bottom:662.831733pt;}
.y6a{bottom:666.603733pt;}
.y32{bottom:668.204667pt;}
.y12{bottom:672.519867pt;}
.y5a{bottom:673.468400pt;}
.y119{bottom:674.849067pt;}
.y69{bottom:679.937067pt;}
.ye9{bottom:682.163733pt;}
.y59{bottom:686.801733pt;}
.y118{bottom:690.185067pt;}
.y68{bottom:693.270400pt;}
.yd5{bottom:693.270933pt;}
.ye8{bottom:697.499733pt;}
.y11{bottom:698.523867pt;}
.y58{bottom:700.135067pt;}
.y67{bottom:706.603733pt;}
.yd4{bottom:706.604267pt;}
.y117{bottom:709.517067pt;}
.y57{bottom:713.468400pt;}
.ye7{bottom:716.831733pt;}
.yd3{bottom:719.937600pt;}
.y10{bottom:721.851867pt;}
.y116{bottom:724.853067pt;}
.ye6{bottom:732.167733pt;}
.yf{bottom:737.187867pt;}
.y115{bottom:744.186400pt;}
.y66{bottom:746.608400pt;}
.ye5{bottom:747.503733pt;}
.ye{bottom:752.523867pt;}
.y65{bottom:759.941733pt;}
.ye4{bottom:762.839733pt;}
.yd{bottom:767.859867pt;}
.y64{bottom:773.275067pt;}
.ye3{bottom:782.171733pt;}
.y63{bottom:786.608400pt;}
.y114{bottom:794.178400pt;}
.ye2{bottom:797.507733pt;}
.y62{bottom:799.941733pt;}
.y113{bottom:809.514400pt;}
.y61{bottom:813.275067pt;}
.ye1{bottom:816.839733pt;}
.y38{bottom:822.193200pt;}
.y112{bottom:824.850400pt;}
.y60{bottom:826.608400pt;}
.ye0{bottom:832.175733pt;}
.y111{bottom:840.186400pt;}
.y37{bottom:843.526533pt;}
.ydf{bottom:851.507733pt;}
.y110{bottom:859.519733pt;}
.yde{bottom:866.843733pt;}
.y36{bottom:870.193200pt;}
.ydd{bottom:882.179733pt;}
.y35{bottom:900.859867pt;}
.ydc{bottom:901.511733pt;}
.y10f{bottom:909.503733pt;}
.ydb{bottom:916.847733pt;}
.y10e{bottom:924.839733pt;}
.y34{bottom:929.659867pt;}
.yda{bottom:936.179733pt;}
.y10d{bottom:940.175733pt;}
.yd9{bottom:951.515733pt;}
.y10c{bottom:955.511733pt;}
.yd8{bottom:970.847733pt;}
.y3{bottom:980.835067pt;}
.yd7{bottom:986.183733pt;}
.yd6{bottom:1001.519733pt;}
.y2{bottom:1010.519733pt;}
.y1{bottom:1026.359733pt;}
.y3a{bottom:1048.325733pt;}
.h6{height:26.693333pt;}
.h5{height:28.600000pt;}
.h4{height:30.506667pt;}
.h3{height:34.320000pt;}
.hf{height:34.330667pt;}
.he{height:34.384000pt;}
.hc{height:36.640000pt;}
.h2{height:37.752000pt;}
.hd{height:37.968750pt;}
.hb{height:38.554688pt;}
.ha{height:39.991733pt;}
.h7{height:49.573333pt;}
.h8{height:53.386667pt;}
.h9{height:68.640000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x6{left:-300.094533pt;}
.x7{left:-75.590533pt;}
.x0{left:0.000000pt;}
.x3{left:72.000000pt;}
.x2{left:82.786533pt;}
.x4{left:256.000000pt;}
.x5{left:271.996000pt;}
.xb{left:287.944000pt;}
.xa{left:289.360000pt;}
.x8{left:351.105067pt;}
.x9{left:450.697333pt;}
.x1{left:636.094400pt;}
}




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