
    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_6f346c5e7d5b3d655e51fc82.woff2')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_a8d5b91a35ce3e7f180aa23f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.836000;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_a39f0d7fba701963b9456e68.woff2')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_19780157f9af7324b9ad55b4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d0a4e8268433f72badf1e6d7.woff2')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_b67c133011de3113afeb1752.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.836000;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_91c547e955bb5cf4b2b17e7d.woff2')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_2d676a70f5bace0de948764b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.725000;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_788f15810aaaf80bfd70d5c6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.901000;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_262261c7e1a84f72a6817e1d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.909000;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_97affe8343d55d774a971769.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908000;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_9259c88ee2733194cc4ace37.woff2')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_bb7dcd59964729cde3ae9c30.woff2')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_ea8972aed89979a27743bf0a.woff2')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;}
.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;}
.ls22{letter-spacing:-3.744000px;}
.ls2e{letter-spacing:-2.700000px;}
.lsc{letter-spacing:-2.214000px;}
.lsf{letter-spacing:-1.512000px;}
.ls26{letter-spacing:-1.392000px;}
.ls31{letter-spacing:-1.188000px;}
.ls32{letter-spacing:-1.134000px;}
.ls10{letter-spacing:-1.026000px;}
.ls9{letter-spacing:-0.756000px;}
.ls12{letter-spacing:-0.648000px;}
.ls13{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.486000px;}
.ls20{letter-spacing:-0.432000px;}
.ls2c{letter-spacing:-0.378000px;}
.ls2d{letter-spacing:-0.324000px;}
.ls14{letter-spacing:-0.300000px;}
.ls25{letter-spacing:-0.288000px;}
.ls24{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.162000px;}
.lsa{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.054000px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.054000px;}
.ls4{letter-spacing:0.102000px;}
.lsb{letter-spacing:0.108000px;}
.ls2f{letter-spacing:0.216000px;}
.ls28{letter-spacing:0.226200px;}
.ls15{letter-spacing:0.240000px;}
.ls1b{letter-spacing:0.242400px;}
.ls8{letter-spacing:0.270000px;}
.ls35{letter-spacing:0.324000px;}
.ls34{letter-spacing:0.378000px;}
.ls17{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.480000px;}
.ls1d{letter-spacing:0.486000px;}
.ls1f{letter-spacing:0.528000px;}
.ls2b{letter-spacing:0.540000px;}
.ls23{letter-spacing:0.594000px;}
.ls1c{letter-spacing:0.756000px;}
.ls16{letter-spacing:0.768000px;}
.ls2a{letter-spacing:0.918000px;}
.ls29{letter-spacing:0.972000px;}
.ls5{letter-spacing:1.170000px;}
.ls30{letter-spacing:1.296000px;}
.ls21{letter-spacing:1.404000px;}
.ls1e{letter-spacing:1.458000px;}
.ls2{letter-spacing:2.034060px;}
.ls0{letter-spacing:4.320000px;}
.ls3{letter-spacing:8.478012px;}
.ls19{letter-spacing:13.824000px;}
.ls18{letter-spacing:14.928000px;}
.ls27{letter-spacing:1884.624000px;}
.ls33{letter-spacing:1884.672000px;}
.ls36{letter-spacing:1884.720000px;}
.ls1a{letter-spacing:1888.560000px;}
.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;}
}
.ws3f{word-spacing:-54.000000px;}
.wsa{word-spacing:-20.736000px;}
.ws9{word-spacing:-18.360000px;}
.ws3a{word-spacing:-16.380000px;}
.ws5{word-spacing:-16.146000px;}
.ws57{word-spacing:-12.096000px;}
.ws82{word-spacing:-11.556000px;}
.ws3b{word-spacing:-11.232000px;}
.ws56{word-spacing:-11.016000px;}
.ws40{word-spacing:-10.908000px;}
.ws2{word-spacing:-10.854000px;}
.ws7{word-spacing:-10.800000px;}
.ws3d{word-spacing:-10.746000px;}
.ws3e{word-spacing:-10.584000px;}
.ws55{word-spacing:-10.476000px;}
.ws54{word-spacing:-10.422000px;}
.ws3c{word-spacing:-9.936000px;}
.ws38{word-spacing:-9.744000px;}
.ws59{word-spacing:-9.666000px;}
.ws39{word-spacing:-9.648000px;}
.ws8{word-spacing:-9.504000px;}
.ws5a{word-spacing:-9.342000px;}
.ws3{word-spacing:-9.288000px;}
.ws0{word-spacing:-9.216000px;}
.ws6{word-spacing:-9.180000px;}
.ws8d{word-spacing:-9.000000px;}
.ws1{word-spacing:-8.820000px;}
.ws41{word-spacing:-8.784000px;}
.wsb{word-spacing:-8.640000px;}
.ws4{word-spacing:-8.586000px;}
.ws58{word-spacing:-8.208000px;}
.ws8e{word-spacing:-7.695000px;}
.ws42{word-spacing:-7.680000px;}
.ws76{word-spacing:-2.106000px;}
.ws9d{word-spacing:-2.025000px;}
.ws78{word-spacing:-1.998000px;}
.ws1f{word-spacing:-1.944000px;}
.ws7c{word-spacing:-1.890000px;}
.ws22{word-spacing:-1.836000px;}
.ws6e{word-spacing:-1.782000px;}
.ws26{word-spacing:-1.674000px;}
.ws5f{word-spacing:-1.620000px;}
.ws28{word-spacing:-1.512000px;}
.wsa4{word-spacing:-1.440000px;}
.ws6f{word-spacing:-1.404000px;}
.wsa3{word-spacing:-1.395000px;}
.ws70{word-spacing:-1.350000px;}
.wsa1{word-spacing:-1.305000px;}
.ws7e{word-spacing:-1.296000px;}
.ws7f{word-spacing:-1.242000px;}
.ws75{word-spacing:-1.188000px;}
.wsb7{word-spacing:-1.125000px;}
.wsa2{word-spacing:-1.080000px;}
.ws91{word-spacing:-1.035000px;}
.ws5b{word-spacing:-1.026000px;}
.ws10{word-spacing:-0.972000px;}
.ws65{word-spacing:-0.918000px;}
.ws92{word-spacing:-0.855000px;}
.ws37{word-spacing:-0.768000px;}
.wsa7{word-spacing:-0.675000px;}
.ws67{word-spacing:-0.648000px;}
.wsa6{word-spacing:-0.630000px;}
.ws8b{word-spacing:-0.624000px;}
.wsd{word-spacing:-0.540000px;}
.ws80{word-spacing:-0.486000px;}
.ws53{word-spacing:-0.480000px;}
.ws19{word-spacing:-0.432000px;}
.ws23{word-spacing:-0.378000px;}
.ws5c{word-spacing:-0.324000px;}
.ws94{word-spacing:-0.315000px;}
.ws68{word-spacing:-0.270000px;}
.wsf{word-spacing:-0.216000px;}
.ws4b{word-spacing:-0.162000px;}
.ws18{word-spacing:-0.108000px;}
.wsa5{word-spacing:-0.090000px;}
.wse{word-spacing:-0.054000px;}
.wsc{word-spacing:0.000000px;}
.ws2c{word-spacing:0.054000px;}
.ws11{word-spacing:0.108000px;}
.wsa0{word-spacing:0.135000px;}
.ws1e{word-spacing:0.162000px;}
.ws1d{word-spacing:0.270000px;}
.ws96{word-spacing:0.315000px;}
.ws7d{word-spacing:0.378000px;}
.ws44{word-spacing:0.432000px;}
.wsb2{word-spacing:0.450000px;}
.ws33{word-spacing:0.486000px;}
.ws36{word-spacing:0.540000px;}
.wsa8{word-spacing:0.585000px;}
.ws4c{word-spacing:0.594000px;}
.ws35{word-spacing:0.648000px;}
.wsb8{word-spacing:0.675000px;}
.ws2a{word-spacing:0.756000px;}
.ws21{word-spacing:0.810000px;}
.wsb5{word-spacing:0.855000px;}
.ws95{word-spacing:0.900000px;}
.ws46{word-spacing:0.972000px;}
.ws2d{word-spacing:1.026000px;}
.ws48{word-spacing:1.080000px;}
.ws69{word-spacing:1.134000px;}
.ws63{word-spacing:1.188000px;}
.ws97{word-spacing:1.260000px;}
.ws25{word-spacing:1.296000px;}
.ws87{word-spacing:1.350000px;}
.ws29{word-spacing:1.404000px;}
.ws27{word-spacing:1.512000px;}
.wsb1{word-spacing:1.575000px;}
.ws6a{word-spacing:1.620000px;}
.ws24{word-spacing:1.674000px;}
.ws8f{word-spacing:1.710000px;}
.ws6b{word-spacing:1.728000px;}
.ws90{word-spacing:1.755000px;}
.ws66{word-spacing:1.836000px;}
.ws77{word-spacing:1.890000px;}
.wsa9{word-spacing:1.935000px;}
.wsaa{word-spacing:1.980000px;}
.ws84{word-spacing:1.998000px;}
.ws93{word-spacing:2.025000px;}
.ws74{word-spacing:2.052000px;}
.ws6d{word-spacing:2.106000px;}
.ws2b{word-spacing:2.160000px;}
.ws9e{word-spacing:2.205000px;}
.ws9f{word-spacing:2.250000px;}
.ws1a{word-spacing:2.268000px;}
.wsae{word-spacing:2.295000px;}
.ws79{word-spacing:2.322000px;}
.ws86{word-spacing:2.376000px;}
.ws85{word-spacing:2.430000px;}
.ws12{word-spacing:2.538000px;}
.ws15{word-spacing:2.592000px;}
.ws16{word-spacing:2.646000px;}
.wsb6{word-spacing:2.655000px;}
.ws2f{word-spacing:2.700000px;}
.ws8a{word-spacing:2.862000px;}
.ws89{word-spacing:2.916000px;}
.ws17{word-spacing:3.024000px;}
.ws64{word-spacing:3.078000px;}
.ws71{word-spacing:3.132000px;}
.ws81{word-spacing:3.186000px;}
.ws1c{word-spacing:3.240000px;}
.ws13{word-spacing:3.348000px;}
.ws2e{word-spacing:3.402000px;}
.ws72{word-spacing:3.456000px;}
.ws6c{word-spacing:3.510000px;}
.ws51{word-spacing:3.834000px;}
.wsb3{word-spacing:3.870000px;}
.ws7b{word-spacing:3.942000px;}
.wsb4{word-spacing:3.960000px;}
.ws73{word-spacing:3.996000px;}
.ws52{word-spacing:4.158000px;}
.ws8c{word-spacing:4.266000px;}
.ws88{word-spacing:4.320000px;}
.ws50{word-spacing:4.428000px;}
.ws47{word-spacing:4.536000px;}
.ws99{word-spacing:4.635000px;}
.ws20{word-spacing:4.644000px;}
.ws4a{word-spacing:4.806000px;}
.wsab{word-spacing:4.815000px;}
.wsac{word-spacing:4.905000px;}
.ws1b{word-spacing:5.076000px;}
.ws14{word-spacing:5.400000px;}
.ws7a{word-spacing:5.454000px;}
.ws83{word-spacing:5.508000px;}
.wsaf{word-spacing:5.580000px;}
.wsb0{word-spacing:5.670000px;}
.ws31{word-spacing:5.724000px;}
.ws9a{word-spacing:5.760000px;}
.ws30{word-spacing:5.832000px;}
.ws32{word-spacing:5.940000px;}
.ws49{word-spacing:6.048000px;}
.ws45{word-spacing:6.210000px;}
.ws98{word-spacing:6.300000px;}
.ws9b{word-spacing:6.660000px;}
.ws9c{word-spacing:6.795000px;}
.ws4d{word-spacing:7.074000px;}
.wsad{word-spacing:7.515000px;}
.ws5d{word-spacing:7.830000px;}
.ws4f{word-spacing:8.046000px;}
.ws4e{word-spacing:8.100000px;}
.ws5e{word-spacing:10.530000px;}
.ws60{word-spacing:12.690000px;}
.ws62{word-spacing:12.906000px;}
.ws43{word-spacing:14.400000px;}
.ws61{word-spacing:15.606000px;}
.ws34{word-spacing:25.200000px;}
._9{margin-left:-25.200000px;}
._a{margin-left:-14.400000px;}
._8{margin-left:-6.377928px;}
._6{margin-left:-5.112024px;}
._d{margin-left:-3.693000px;}
._1{margin-left:-2.604000px;}
._0{margin-left:-1.188000px;}
._2{width:1.092000px;}
._3{width:2.801958px;}
._5{width:4.260042px;}
._c{width:5.343000px;}
._7{width:6.491988px;}
._4{width:8.478000px;}
._b{width:13.836000px;}
._e{width:38.642400px;}
.fc3{color:rgb(0,103,104);}
.fc2{color:rgb(0,93,145);}
.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;}
.y3d{bottom:37.986600px;}
.y4{bottom:75.486600px;}
.y8d{bottom:94.058700px;}
.yaa{bottom:98.723100px;}
.y34{bottom:101.608350px;}
.yc{bottom:101.692350px;}
.y8c{bottom:111.311700px;}
.yb{bottom:114.292350px;}
.yf0{bottom:114.438450px;}
.ya9{bottom:115.976100px;}
.y33{bottom:118.861350px;}
.ya{bottom:126.892350px;}
.y8b{bottom:128.564700px;}
.yef{bottom:129.434700px;}
.y32{bottom:136.114350px;}
.ya8{bottom:137.724600px;}
.y9{bottom:139.492350px;}
.yee{bottom:144.430950px;}
.y8a{bottom:145.817700px;}
.y31{bottom:153.367350px;}
.ya7{bottom:154.977600px;}
.yed{bottom:159.427200px;}
.y89{bottom:163.070700px;}
.y30{bottom:170.620350px;}
.ya6{bottom:172.230600px;}
.yec{bottom:174.423450px;}
.y88{bottom:180.323700px;}
.y2f{bottom:187.873350px;}
.y8{bottom:188.092350px;}
.yeb{bottom:189.419700px;}
.ya5{bottom:193.979100px;}
.y87{bottom:197.576700px;}
.y7{bottom:201.592350px;}
.yea{bottom:204.415950px;}
.y2e{bottom:205.126350px;}
.ya4{bottom:211.232100px;}
.y86{bottom:214.829700px;}
.y6{bottom:215.092350px;}
.ye9{bottom:219.412200px;}
.y2d{bottom:222.379350px;}
.y5{bottom:228.592350px;}
.y85{bottom:232.082700px;}
.ya3{bottom:232.980600px;}
.ye8{bottom:234.408450px;}
.y2c{bottom:239.632350px;}
.y84{bottom:249.335700px;}
.ye7{bottom:249.404700px;}
.ya2{bottom:250.233600px;}
.y2b{bottom:256.885350px;}
.ye6{bottom:264.400950px;}
.y83{bottom:266.588700px;}
.ya1{bottom:271.983600px;}
.y2a{bottom:274.138350px;}
.ye5{bottom:279.397200px;}
.y82{bottom:283.841700px;}
.y29{bottom:291.391350px;}
.ye4{bottom:294.393450px;}
.y81{bottom:301.094700px;}
.y28{bottom:308.644350px;}
.ye3{bottom:309.389700px;}
.y80{bottom:318.347700px;}
.ya0{bottom:322.227600px;}
.ye2{bottom:324.385950px;}
.y27{bottom:325.897350px;}
.y7f{bottom:335.600700px;}
.ye1{bottom:339.382200px;}
.y9f{bottom:339.480600px;}
.y26{bottom:343.150350px;}
.y7e{bottom:352.853700px;}
.ye0{bottom:354.378450px;}
.y9e{bottom:356.733600px;}
.y25{bottom:360.403350px;}
.ydf{bottom:369.374700px;}
.y7d{bottom:370.106700px;}
.y24{bottom:377.656350px;}
.y9d{bottom:378.483600px;}
.yde{bottom:384.370950px;}
.y7c{bottom:387.359700px;}
.y23{bottom:394.909350px;}
.ydd{bottom:399.367200px;}
.y7b{bottom:404.612700px;}
.y22{bottom:412.162350px;}
.ydc{bottom:414.363450px;}
.y7a{bottom:421.865700px;}
.y9c{bottom:428.691600px;}
.ydb{bottom:429.359700px;}
.y21{bottom:429.415350px;}
.y79{bottom:439.118700px;}
.yda{bottom:444.355950px;}
.y9b{bottom:445.944600px;}
.y20{bottom:446.668350px;}
.y78{bottom:456.371700px;}
.yd9{bottom:459.352200px;}
.y9a{bottom:463.197600px;}
.y1f{bottom:463.921350px;}
.y77{bottom:473.624700px;}
.yd8{bottom:474.348450px;}
.y99{bottom:480.450600px;}
.y1e{bottom:481.174350px;}
.yd7{bottom:489.344700px;}
.y76{bottom:490.877700px;}
.y98{bottom:497.703600px;}
.y1d{bottom:498.427350px;}
.yd6{bottom:504.340950px;}
.y75{bottom:508.130700px;}
.y97{bottom:514.956600px;}
.y1c{bottom:515.680350px;}
.yd5{bottom:519.337200px;}
.y74{bottom:525.383700px;}
.y96{bottom:532.209600px;}
.y1b{bottom:532.933350px;}
.yd4{bottom:534.333450px;}
.y73{bottom:542.636700px;}
.yd3{bottom:549.329700px;}
.y95{bottom:549.462600px;}
.y1a{bottom:550.186350px;}
.y72{bottom:559.889700px;}
.yd2{bottom:564.325950px;}
.y94{bottom:566.715600px;}
.y19{bottom:567.439350px;}
.y71{bottom:577.142700px;}
.yd1{bottom:579.322200px;}
.y93{bottom:583.968600px;}
.y18{bottom:584.692350px;}
.yd0{bottom:594.318450px;}
.y70{bottom:594.395700px;}
.y92{bottom:601.221600px;}
.y17{bottom:606.442350px;}
.ycf{bottom:609.314700px;}
.y6f{bottom:611.648700px;}
.y91{bottom:618.474600px;}
.yce{bottom:624.310950px;}
.y6e{bottom:628.901700px;}
.y90{bottom:635.727600px;}
.ycd{bottom:639.307200px;}
.y6d{bottom:646.154700px;}
.y8f{bottom:652.980600px;}
.ycc{bottom:654.303450px;}
.y16{bottom:655.172850px;}
.y6c{bottom:663.407700px;}
.ycb{bottom:669.299700px;}
.y8e{bottom:670.233600px;}
.y15{bottom:672.425850px;}
.y6b{bottom:680.660700px;}
.yca{bottom:684.295950px;}
.y14{bottom:689.678850px;}
.y53{bottom:690.209700px;}
.y6a{bottom:697.913700px;}
.yc9{bottom:699.292200px;}
.y52{bottom:705.209700px;}
.yc8{bottom:714.288450px;}
.y69{bottom:715.166700px;}
.yaf{bottom:716.358600px;}
.y13{bottom:718.933350px;}
.y51{bottom:720.209700px;}
.yc7{bottom:729.284700px;}
.yae{bottom:731.358600px;}
.y36{bottom:732.380250px;}
.y68{bottom:732.419700px;}
.y50{bottom:735.209700px;}
.yc6{bottom:744.280950px;}
.y12{bottom:745.177350px;}
.yad{bottom:746.358600px;}
.y4f{bottom:750.209700px;}
.y35{bottom:751.730250px;}
.y67{bottom:754.169700px;}
.yc5{bottom:759.277200px;}
.yac{bottom:761.358600px;}
.y11{bottom:762.430350px;}
.yc4{bottom:774.273450px;}
.yab{bottom:776.358600px;}
.y10{bottom:779.683350px;}
.yc3{bottom:789.269700px;}
.y4e{bottom:795.203700px;}
.yf{bottom:796.936350px;}
.yc2{bottom:804.265950px;}
.y66{bottom:810.370200px;}
.y4d{bottom:812.456700px;}
.ye{bottom:814.189350px;}
.yc1{bottom:819.262200px;}
.y65{bottom:827.623200px;}
.y4c{bottom:829.714200px;}
.yd{bottom:831.442500px;}
.yc0{bottom:834.258450px;}
.y64{bottom:844.876200px;}
.ybf{bottom:849.254700px;}
.y4b{bottom:851.462700px;}
.y63{bottom:862.129200px;}
.ybe{bottom:864.250950px;}
.y4a{bottom:867.959700px;}
.ybd{bottom:879.247200px;}
.y62{bottom:879.382200px;}
.y3c{bottom:892.567350px;}
.ybc{bottom:894.243450px;}
.y61{bottom:896.635200px;}
.y49{bottom:905.459700px;}
.ybb{bottom:909.239700px;}
.y60{bottom:913.888200px;}
.y3b{bottom:916.567350px;}
.yba{bottom:924.235950px;}
.y5f{bottom:931.141200px;}
.yb9{bottom:939.232200px;}
.y3a{bottom:946.567350px;}
.y5e{bottom:948.394200px;}
.yb8{bottom:954.228450px;}
.y48{bottom:961.685700px;}
.y5d{bottom:965.647200px;}
.yb7{bottom:969.224700px;}
.y47{bottom:978.938700px;}
.y39{bottom:981.067350px;}
.y5c{bottom:982.900200px;}
.yb6{bottom:984.220950px;}
.y46{bottom:996.191700px;}
.yb5{bottom:999.217200px;}
.y5b{bottom:1000.153200px;}
.y45{bottom:1013.444700px;}
.y38{bottom:1013.467350px;}
.yb4{bottom:1014.213450px;}
.y5a{bottom:1017.406200px;}
.yb3{bottom:1029.209700px;}
.y44{bottom:1030.697700px;}
.y59{bottom:1034.659200px;}
.y37{bottom:1045.867350px;}
.y43{bottom:1047.950700px;}
.yb2{bottom:1053.209700px;}
.y58{bottom:1056.407700px;}
.y42{bottom:1065.203700px;}
.y57{bottom:1073.660700px;}
.y41{bottom:1082.456700px;}
.y56{bottom:1090.913700px;}
.y40{bottom:1099.709700px;}
.y3{bottom:1103.439450px;}
.y55{bottom:1108.166700px;}
.yb1{bottom:1109.456700px;}
.y3f{bottom:1121.459700px;}
.y54{bottom:1125.419700px;}
.yb0{bottom:1126.709700px;}
.y2{bottom:1136.834700px;}
.y1{bottom:1154.654700px;}
.y3e{bottom:1179.366450px;}
.h6{height:30.030000px;}
.h5{height:32.175000px;}
.h4{height:34.320000px;}
.hb{height:37.800000px;}
.h3{height:38.610000px;}
.hf{height:38.652000px;}
.hc{height:41.184000px;}
.he{height:41.202000px;}
.h2{height:42.471000px;}
.hd{height:42.714844px;}
.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;}
.x7{left:-337.606350px;}
.x8{left:-270.843300px;}
.x0{left:0.000000px;}
.x4{left:81.000000px;}
.x2{left:93.134850px;}
.x5{left:288.000000px;}
.x6{left:306.009000px;}
.x1{left:715.606200px;}
.x3{left:791.244000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls22{letter-spacing:-3.328000pt;}
.ls2e{letter-spacing:-2.400000pt;}
.lsc{letter-spacing:-1.968000pt;}
.lsf{letter-spacing:-1.344000pt;}
.ls26{letter-spacing:-1.237333pt;}
.ls31{letter-spacing:-1.056000pt;}
.ls32{letter-spacing:-1.008000pt;}
.ls10{letter-spacing:-0.912000pt;}
.ls9{letter-spacing:-0.672000pt;}
.ls12{letter-spacing:-0.576000pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.432000pt;}
.ls20{letter-spacing:-0.384000pt;}
.ls2c{letter-spacing:-0.336000pt;}
.ls2d{letter-spacing:-0.288000pt;}
.ls14{letter-spacing:-0.266667pt;}
.ls25{letter-spacing:-0.256000pt;}
.ls24{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.144000pt;}
.lsa{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.048000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.048000pt;}
.ls4{letter-spacing:0.090667pt;}
.lsb{letter-spacing:0.096000pt;}
.ls2f{letter-spacing:0.192000pt;}
.ls28{letter-spacing:0.201067pt;}
.ls15{letter-spacing:0.213333pt;}
.ls1b{letter-spacing:0.215467pt;}
.ls8{letter-spacing:0.240000pt;}
.ls35{letter-spacing:0.288000pt;}
.ls34{letter-spacing:0.336000pt;}
.ls17{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.426667pt;}
.ls1d{letter-spacing:0.432000pt;}
.ls1f{letter-spacing:0.469333pt;}
.ls2b{letter-spacing:0.480000pt;}
.ls23{letter-spacing:0.528000pt;}
.ls1c{letter-spacing:0.672000pt;}
.ls16{letter-spacing:0.682667pt;}
.ls2a{letter-spacing:0.816000pt;}
.ls29{letter-spacing:0.864000pt;}
.ls5{letter-spacing:1.040000pt;}
.ls30{letter-spacing:1.152000pt;}
.ls21{letter-spacing:1.248000pt;}
.ls1e{letter-spacing:1.296000pt;}
.ls2{letter-spacing:1.808053pt;}
.ls0{letter-spacing:3.840000pt;}
.ls3{letter-spacing:7.536011pt;}
.ls19{letter-spacing:12.288000pt;}
.ls18{letter-spacing:13.269333pt;}
.ls27{letter-spacing:1675.221333pt;}
.ls33{letter-spacing:1675.264000pt;}
.ls36{letter-spacing:1675.306667pt;}
.ls1a{letter-spacing:1678.720000pt;}
.ws3f{word-spacing:-48.000000pt;}
.wsa{word-spacing:-18.432000pt;}
.ws9{word-spacing:-16.320000pt;}
.ws3a{word-spacing:-14.560000pt;}
.ws5{word-spacing:-14.352000pt;}
.ws57{word-spacing:-10.752000pt;}
.ws82{word-spacing:-10.272000pt;}
.ws3b{word-spacing:-9.984000pt;}
.ws56{word-spacing:-9.792000pt;}
.ws40{word-spacing:-9.696000pt;}
.ws2{word-spacing:-9.648000pt;}
.ws7{word-spacing:-9.600000pt;}
.ws3d{word-spacing:-9.552000pt;}
.ws3e{word-spacing:-9.408000pt;}
.ws55{word-spacing:-9.312000pt;}
.ws54{word-spacing:-9.264000pt;}
.ws3c{word-spacing:-8.832000pt;}
.ws38{word-spacing:-8.661333pt;}
.ws59{word-spacing:-8.592000pt;}
.ws39{word-spacing:-8.576000pt;}
.ws8{word-spacing:-8.448000pt;}
.ws5a{word-spacing:-8.304000pt;}
.ws3{word-spacing:-8.256000pt;}
.ws0{word-spacing:-8.192000pt;}
.ws6{word-spacing:-8.160000pt;}
.ws8d{word-spacing:-8.000000pt;}
.ws1{word-spacing:-7.840000pt;}
.ws41{word-spacing:-7.808000pt;}
.wsb{word-spacing:-7.680000pt;}
.ws4{word-spacing:-7.632000pt;}
.ws58{word-spacing:-7.296000pt;}
.ws8e{word-spacing:-6.840000pt;}
.ws42{word-spacing:-6.826667pt;}
.ws76{word-spacing:-1.872000pt;}
.ws9d{word-spacing:-1.800000pt;}
.ws78{word-spacing:-1.776000pt;}
.ws1f{word-spacing:-1.728000pt;}
.ws7c{word-spacing:-1.680000pt;}
.ws22{word-spacing:-1.632000pt;}
.ws6e{word-spacing:-1.584000pt;}
.ws26{word-spacing:-1.488000pt;}
.ws5f{word-spacing:-1.440000pt;}
.ws28{word-spacing:-1.344000pt;}
.wsa4{word-spacing:-1.280000pt;}
.ws6f{word-spacing:-1.248000pt;}
.wsa3{word-spacing:-1.240000pt;}
.ws70{word-spacing:-1.200000pt;}
.wsa1{word-spacing:-1.160000pt;}
.ws7e{word-spacing:-1.152000pt;}
.ws7f{word-spacing:-1.104000pt;}
.ws75{word-spacing:-1.056000pt;}
.wsb7{word-spacing:-1.000000pt;}
.wsa2{word-spacing:-0.960000pt;}
.ws91{word-spacing:-0.920000pt;}
.ws5b{word-spacing:-0.912000pt;}
.ws10{word-spacing:-0.864000pt;}
.ws65{word-spacing:-0.816000pt;}
.ws92{word-spacing:-0.760000pt;}
.ws37{word-spacing:-0.682667pt;}
.wsa7{word-spacing:-0.600000pt;}
.ws67{word-spacing:-0.576000pt;}
.wsa6{word-spacing:-0.560000pt;}
.ws8b{word-spacing:-0.554667pt;}
.wsd{word-spacing:-0.480000pt;}
.ws80{word-spacing:-0.432000pt;}
.ws53{word-spacing:-0.426667pt;}
.ws19{word-spacing:-0.384000pt;}
.ws23{word-spacing:-0.336000pt;}
.ws5c{word-spacing:-0.288000pt;}
.ws94{word-spacing:-0.280000pt;}
.ws68{word-spacing:-0.240000pt;}
.wsf{word-spacing:-0.192000pt;}
.ws4b{word-spacing:-0.144000pt;}
.ws18{word-spacing:-0.096000pt;}
.wsa5{word-spacing:-0.080000pt;}
.wse{word-spacing:-0.048000pt;}
.wsc{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.048000pt;}
.ws11{word-spacing:0.096000pt;}
.wsa0{word-spacing:0.120000pt;}
.ws1e{word-spacing:0.144000pt;}
.ws1d{word-spacing:0.240000pt;}
.ws96{word-spacing:0.280000pt;}
.ws7d{word-spacing:0.336000pt;}
.ws44{word-spacing:0.384000pt;}
.wsb2{word-spacing:0.400000pt;}
.ws33{word-spacing:0.432000pt;}
.ws36{word-spacing:0.480000pt;}
.wsa8{word-spacing:0.520000pt;}
.ws4c{word-spacing:0.528000pt;}
.ws35{word-spacing:0.576000pt;}
.wsb8{word-spacing:0.600000pt;}
.ws2a{word-spacing:0.672000pt;}
.ws21{word-spacing:0.720000pt;}
.wsb5{word-spacing:0.760000pt;}
.ws95{word-spacing:0.800000pt;}
.ws46{word-spacing:0.864000pt;}
.ws2d{word-spacing:0.912000pt;}
.ws48{word-spacing:0.960000pt;}
.ws69{word-spacing:1.008000pt;}
.ws63{word-spacing:1.056000pt;}
.ws97{word-spacing:1.120000pt;}
.ws25{word-spacing:1.152000pt;}
.ws87{word-spacing:1.200000pt;}
.ws29{word-spacing:1.248000pt;}
.ws27{word-spacing:1.344000pt;}
.wsb1{word-spacing:1.400000pt;}
.ws6a{word-spacing:1.440000pt;}
.ws24{word-spacing:1.488000pt;}
.ws8f{word-spacing:1.520000pt;}
.ws6b{word-spacing:1.536000pt;}
.ws90{word-spacing:1.560000pt;}
.ws66{word-spacing:1.632000pt;}
.ws77{word-spacing:1.680000pt;}
.wsa9{word-spacing:1.720000pt;}
.wsaa{word-spacing:1.760000pt;}
.ws84{word-spacing:1.776000pt;}
.ws93{word-spacing:1.800000pt;}
.ws74{word-spacing:1.824000pt;}
.ws6d{word-spacing:1.872000pt;}
.ws2b{word-spacing:1.920000pt;}
.ws9e{word-spacing:1.960000pt;}
.ws9f{word-spacing:2.000000pt;}
.ws1a{word-spacing:2.016000pt;}
.wsae{word-spacing:2.040000pt;}
.ws79{word-spacing:2.064000pt;}
.ws86{word-spacing:2.112000pt;}
.ws85{word-spacing:2.160000pt;}
.ws12{word-spacing:2.256000pt;}
.ws15{word-spacing:2.304000pt;}
.ws16{word-spacing:2.352000pt;}
.wsb6{word-spacing:2.360000pt;}
.ws2f{word-spacing:2.400000pt;}
.ws8a{word-spacing:2.544000pt;}
.ws89{word-spacing:2.592000pt;}
.ws17{word-spacing:2.688000pt;}
.ws64{word-spacing:2.736000pt;}
.ws71{word-spacing:2.784000pt;}
.ws81{word-spacing:2.832000pt;}
.ws1c{word-spacing:2.880000pt;}
.ws13{word-spacing:2.976000pt;}
.ws2e{word-spacing:3.024000pt;}
.ws72{word-spacing:3.072000pt;}
.ws6c{word-spacing:3.120000pt;}
.ws51{word-spacing:3.408000pt;}
.wsb3{word-spacing:3.440000pt;}
.ws7b{word-spacing:3.504000pt;}
.wsb4{word-spacing:3.520000pt;}
.ws73{word-spacing:3.552000pt;}
.ws52{word-spacing:3.696000pt;}
.ws8c{word-spacing:3.792000pt;}
.ws88{word-spacing:3.840000pt;}
.ws50{word-spacing:3.936000pt;}
.ws47{word-spacing:4.032000pt;}
.ws99{word-spacing:4.120000pt;}
.ws20{word-spacing:4.128000pt;}
.ws4a{word-spacing:4.272000pt;}
.wsab{word-spacing:4.280000pt;}
.wsac{word-spacing:4.360000pt;}
.ws1b{word-spacing:4.512000pt;}
.ws14{word-spacing:4.800000pt;}
.ws7a{word-spacing:4.848000pt;}
.ws83{word-spacing:4.896000pt;}
.wsaf{word-spacing:4.960000pt;}
.wsb0{word-spacing:5.040000pt;}
.ws31{word-spacing:5.088000pt;}
.ws9a{word-spacing:5.120000pt;}
.ws30{word-spacing:5.184000pt;}
.ws32{word-spacing:5.280000pt;}
.ws49{word-spacing:5.376000pt;}
.ws45{word-spacing:5.520000pt;}
.ws98{word-spacing:5.600000pt;}
.ws9b{word-spacing:5.920000pt;}
.ws9c{word-spacing:6.040000pt;}
.ws4d{word-spacing:6.288000pt;}
.wsad{word-spacing:6.680000pt;}
.ws5d{word-spacing:6.960000pt;}
.ws4f{word-spacing:7.152000pt;}
.ws4e{word-spacing:7.200000pt;}
.ws5e{word-spacing:9.360000pt;}
.ws60{word-spacing:11.280000pt;}
.ws62{word-spacing:11.472000pt;}
.ws43{word-spacing:12.800000pt;}
.ws61{word-spacing:13.872000pt;}
.ws34{word-spacing:22.400000pt;}
._9{margin-left:-22.400000pt;}
._a{margin-left:-12.800000pt;}
._8{margin-left:-5.669269pt;}
._6{margin-left:-4.544021pt;}
._d{margin-left:-3.282667pt;}
._1{margin-left:-2.314667pt;}
._0{margin-left:-1.056000pt;}
._2{width:0.970667pt;}
._3{width:2.490629pt;}
._5{width:3.786704pt;}
._c{width:4.749333pt;}
._7{width:5.770656pt;}
._4{width:7.536000pt;}
._b{width:12.298667pt;}
._e{width:34.348800pt;}
.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;}
.y3d{bottom:33.765867pt;}
.y4{bottom:67.099200pt;}
.y8d{bottom:83.607733pt;}
.yaa{bottom:87.753867pt;}
.y34{bottom:90.318533pt;}
.yc{bottom:90.393200pt;}
.y8c{bottom:98.943733pt;}
.yb{bottom:101.593200pt;}
.yf0{bottom:101.723067pt;}
.ya9{bottom:103.089867pt;}
.y33{bottom:105.654533pt;}
.ya{bottom:112.793200pt;}
.y8b{bottom:114.279733pt;}
.yef{bottom:115.053067pt;}
.y32{bottom:120.990533pt;}
.ya8{bottom:122.421867pt;}
.y9{bottom:123.993200pt;}
.yee{bottom:128.383067pt;}
.y8a{bottom:129.615733pt;}
.y31{bottom:136.326533pt;}
.ya7{bottom:137.757867pt;}
.yed{bottom:141.713067pt;}
.y89{bottom:144.951733pt;}
.y30{bottom:151.662533pt;}
.ya6{bottom:153.093867pt;}
.yec{bottom:155.043067pt;}
.y88{bottom:160.287733pt;}
.y2f{bottom:166.998533pt;}
.y8{bottom:167.193200pt;}
.yeb{bottom:168.373067pt;}
.ya5{bottom:172.425867pt;}
.y87{bottom:175.623733pt;}
.y7{bottom:179.193200pt;}
.yea{bottom:181.703067pt;}
.y2e{bottom:182.334533pt;}
.ya4{bottom:187.761867pt;}
.y86{bottom:190.959733pt;}
.y6{bottom:191.193200pt;}
.ye9{bottom:195.033067pt;}
.y2d{bottom:197.670533pt;}
.y5{bottom:203.193200pt;}
.y85{bottom:206.295733pt;}
.ya3{bottom:207.093867pt;}
.ye8{bottom:208.363067pt;}
.y2c{bottom:213.006533pt;}
.y84{bottom:221.631733pt;}
.ye7{bottom:221.693067pt;}
.ya2{bottom:222.429867pt;}
.y2b{bottom:228.342533pt;}
.ye6{bottom:235.023067pt;}
.y83{bottom:236.967733pt;}
.ya1{bottom:241.763200pt;}
.y2a{bottom:243.678533pt;}
.ye5{bottom:248.353067pt;}
.y82{bottom:252.303733pt;}
.y29{bottom:259.014533pt;}
.ye4{bottom:261.683067pt;}
.y81{bottom:267.639733pt;}
.y28{bottom:274.350533pt;}
.ye3{bottom:275.013067pt;}
.y80{bottom:282.975733pt;}
.ya0{bottom:286.424533pt;}
.ye2{bottom:288.343067pt;}
.y27{bottom:289.686533pt;}
.y7f{bottom:298.311733pt;}
.ye1{bottom:301.673067pt;}
.y9f{bottom:301.760533pt;}
.y26{bottom:305.022533pt;}
.y7e{bottom:313.647733pt;}
.ye0{bottom:315.003067pt;}
.y9e{bottom:317.096533pt;}
.y25{bottom:320.358533pt;}
.ydf{bottom:328.333067pt;}
.y7d{bottom:328.983733pt;}
.y24{bottom:335.694533pt;}
.y9d{bottom:336.429867pt;}
.yde{bottom:341.663067pt;}
.y7c{bottom:344.319733pt;}
.y23{bottom:351.030533pt;}
.ydd{bottom:354.993067pt;}
.y7b{bottom:359.655733pt;}
.y22{bottom:366.366533pt;}
.ydc{bottom:368.323067pt;}
.y7a{bottom:374.991733pt;}
.y9c{bottom:381.059200pt;}
.ydb{bottom:381.653067pt;}
.y21{bottom:381.702533pt;}
.y79{bottom:390.327733pt;}
.yda{bottom:394.983067pt;}
.y9b{bottom:396.395200pt;}
.y20{bottom:397.038533pt;}
.y78{bottom:405.663733pt;}
.yd9{bottom:408.313067pt;}
.y9a{bottom:411.731200pt;}
.y1f{bottom:412.374533pt;}
.y77{bottom:420.999733pt;}
.yd8{bottom:421.643067pt;}
.y99{bottom:427.067200pt;}
.y1e{bottom:427.710533pt;}
.yd7{bottom:434.973067pt;}
.y76{bottom:436.335733pt;}
.y98{bottom:442.403200pt;}
.y1d{bottom:443.046533pt;}
.yd6{bottom:448.303067pt;}
.y75{bottom:451.671733pt;}
.y97{bottom:457.739200pt;}
.y1c{bottom:458.382533pt;}
.yd5{bottom:461.633067pt;}
.y74{bottom:467.007733pt;}
.y96{bottom:473.075200pt;}
.y1b{bottom:473.718533pt;}
.yd4{bottom:474.963067pt;}
.y73{bottom:482.343733pt;}
.yd3{bottom:488.293067pt;}
.y95{bottom:488.411200pt;}
.y1a{bottom:489.054533pt;}
.y72{bottom:497.679733pt;}
.yd2{bottom:501.623067pt;}
.y94{bottom:503.747200pt;}
.y19{bottom:504.390533pt;}
.y71{bottom:513.015733pt;}
.yd1{bottom:514.953067pt;}
.y93{bottom:519.083200pt;}
.y18{bottom:519.726533pt;}
.yd0{bottom:528.283067pt;}
.y70{bottom:528.351733pt;}
.y92{bottom:534.419200pt;}
.y17{bottom:539.059867pt;}
.ycf{bottom:541.613067pt;}
.y6f{bottom:543.687733pt;}
.y91{bottom:549.755200pt;}
.yce{bottom:554.943067pt;}
.y6e{bottom:559.023733pt;}
.y90{bottom:565.091200pt;}
.ycd{bottom:568.273067pt;}
.y6d{bottom:574.359733pt;}
.y8f{bottom:580.427200pt;}
.ycc{bottom:581.603067pt;}
.y16{bottom:582.375867pt;}
.y6c{bottom:589.695733pt;}
.ycb{bottom:594.933067pt;}
.y8e{bottom:595.763200pt;}
.y15{bottom:597.711867pt;}
.y6b{bottom:605.031733pt;}
.yca{bottom:608.263067pt;}
.y14{bottom:613.047867pt;}
.y53{bottom:613.519733pt;}
.y6a{bottom:620.367733pt;}
.yc9{bottom:621.593067pt;}
.y52{bottom:626.853067pt;}
.yc8{bottom:634.923067pt;}
.y69{bottom:635.703733pt;}
.yaf{bottom:636.763200pt;}
.y13{bottom:639.051867pt;}
.y51{bottom:640.186400pt;}
.yc7{bottom:648.253067pt;}
.yae{bottom:650.096533pt;}
.y36{bottom:651.004667pt;}
.y68{bottom:651.039733pt;}
.y50{bottom:653.519733pt;}
.yc6{bottom:661.583067pt;}
.y12{bottom:662.379867pt;}
.yad{bottom:663.429867pt;}
.y4f{bottom:666.853067pt;}
.y35{bottom:668.204667pt;}
.y67{bottom:670.373067pt;}
.yc5{bottom:674.913067pt;}
.yac{bottom:676.763200pt;}
.y11{bottom:677.715867pt;}
.yc4{bottom:688.243067pt;}
.yab{bottom:690.096533pt;}
.y10{bottom:693.051867pt;}
.yc3{bottom:701.573067pt;}
.y4e{bottom:706.847733pt;}
.yf{bottom:708.387867pt;}
.yc2{bottom:714.903067pt;}
.y66{bottom:720.329067pt;}
.y4d{bottom:722.183733pt;}
.ye{bottom:723.723867pt;}
.yc1{bottom:728.233067pt;}
.y65{bottom:735.665067pt;}
.y4c{bottom:737.523733pt;}
.yd{bottom:739.060000pt;}
.yc0{bottom:741.563067pt;}
.y64{bottom:751.001067pt;}
.ybf{bottom:754.893067pt;}
.y4b{bottom:756.855733pt;}
.y63{bottom:766.337067pt;}
.ybe{bottom:768.223067pt;}
.y4a{bottom:771.519733pt;}
.ybd{bottom:781.553067pt;}
.y62{bottom:781.673067pt;}
.y3c{bottom:793.393200pt;}
.ybc{bottom:794.883067pt;}
.y61{bottom:797.009067pt;}
.y49{bottom:804.853067pt;}
.ybb{bottom:808.213067pt;}
.y60{bottom:812.345067pt;}
.y3b{bottom:814.726533pt;}
.yba{bottom:821.543067pt;}
.y5f{bottom:827.681067pt;}
.yb9{bottom:834.873067pt;}
.y3a{bottom:841.393200pt;}
.y5e{bottom:843.017067pt;}
.yb8{bottom:848.203067pt;}
.y48{bottom:854.831733pt;}
.y5d{bottom:858.353067pt;}
.yb7{bottom:861.533067pt;}
.y47{bottom:870.167733pt;}
.y39{bottom:872.059867pt;}
.y5c{bottom:873.689067pt;}
.yb6{bottom:874.863067pt;}
.y46{bottom:885.503733pt;}
.yb5{bottom:888.193067pt;}
.y5b{bottom:889.025067pt;}
.y45{bottom:900.839733pt;}
.y38{bottom:900.859867pt;}
.yb4{bottom:901.523067pt;}
.y5a{bottom:904.361067pt;}
.yb3{bottom:914.853067pt;}
.y44{bottom:916.175733pt;}
.y59{bottom:919.697067pt;}
.y37{bottom:929.659867pt;}
.y43{bottom:931.511733pt;}
.yb2{bottom:936.186400pt;}
.y58{bottom:939.029067pt;}
.y42{bottom:946.847733pt;}
.y57{bottom:954.365067pt;}
.y41{bottom:962.183733pt;}
.y56{bottom:969.701067pt;}
.y40{bottom:977.519733pt;}
.y3{bottom:980.835067pt;}
.y55{bottom:985.037067pt;}
.yb1{bottom:986.183733pt;}
.y3f{bottom:996.853067pt;}
.y54{bottom:1000.373067pt;}
.yb0{bottom:1001.519733pt;}
.y2{bottom:1010.519733pt;}
.y1{bottom:1026.359733pt;}
.y3e{bottom:1048.325733pt;}
.h6{height:26.693333pt;}
.h5{height:28.600000pt;}
.h4{height:30.506667pt;}
.hb{height:33.600000pt;}
.h3{height:34.320000pt;}
.hf{height:34.357333pt;}
.hc{height:36.608000pt;}
.he{height:36.624000pt;}
.h2{height:37.752000pt;}
.hd{height:37.968750pt;}
.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;}
.x7{left:-300.094533pt;}
.x8{left:-240.749600pt;}
.x0{left:0.000000pt;}
.x4{left:72.000000pt;}
.x2{left:82.786533pt;}
.x5{left:256.000000pt;}
.x6{left:272.008000pt;}
.x1{left:636.094400pt;}
.x3{left:703.328000pt;}
}




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