
    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_2ef2260348ac8afdf762fcf5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904785;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_e31f70e32e920a0f1e321d42.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.734000;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_bb47a688d8e610edadda879d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.951000;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_816d9288a1d8f8ee8d16f369.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b95570a0ee985f3e5ebf2075.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f84743b3473e36dce3432d45.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_dce0cc0d0bc4b8ac2d644008.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.960000;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_c30f4debc366e008d5fc1519.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.158000;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_e60a47f78a106ccb89738876.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.011000;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_080bbc5967922263317f05e2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.943067;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_30fe87e366dfdf99e54a9b31.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.744000;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_5b252b112e6bb669d9e3b2c0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.888672;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_e60a47f78a106ccb89738876.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.011000;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_3133171dd8785de701a32dc8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.904785;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:fff;src:url('chunks/assets/font_ca043bdcfff217055576f66d.woff2')format("woff");}.fff{font-family:fff;line-height:0.719000;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:ff10;src:url('chunks/assets/font_c30f4debc366e008d5fc1519.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.158000;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:ff11;src:url('chunks/assets/font_5b252b112e6bb669d9e3b2c0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.888672;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:ff12;src:url('chunks/assets/font_e70685128fc8f8085a36dacb.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.943067;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:ff13;src:url('chunks/assets/font_e60a47f78a106ccb89738876.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.011000;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:ff14;src:url('chunks/assets/font_e22ac69ad14b85b43c85703f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.904785;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:ff15;src:url('chunks/assets/font_c30f4debc366e008d5fc1519.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.158000;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,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);}
.m3{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;}
.ls6{letter-spacing:-1.080000px;}
.ls1e{letter-spacing:-0.990000px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.033000px;}
.lse{letter-spacing:0.066000px;}
.ls14{letter-spacing:0.099000px;}
.ls12{letter-spacing:0.132000px;}
.ls10{letter-spacing:0.198000px;}
.ls9{letter-spacing:0.264000px;}
.ls11{letter-spacing:0.290400px;}
.ls1a{letter-spacing:0.297000px;}
.ls16{letter-spacing:0.330000px;}
.ls3{letter-spacing:0.378000px;}
.lsb{letter-spacing:0.396000px;}
.ls1c{letter-spacing:0.429000px;}
.ls2{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.462000px;}
.ls8{letter-spacing:0.528000px;}
.lsf{letter-spacing:0.594000px;}
.ls18{letter-spacing:0.660000px;}
.ls17{letter-spacing:0.924000px;}
.ls13{letter-spacing:0.990000px;}
.ls1{letter-spacing:1.026000px;}
.ls1b{letter-spacing:1.056000px;}
.ls21{letter-spacing:1.122000px;}
.ls4{letter-spacing:1.458000px;}
.ls19{letter-spacing:3.234000px;}
.ls15{letter-spacing:3.498000px;}
.ls20{letter-spacing:7.326000px;}
.ls1f{letter-spacing:2038.568400px;}
.lsc{letter-spacing:2071.568400px;}
.ls1d{letter-spacing:2135.886600px;}
.ls7{letter-spacing:2168.886600px;}
.ls0{letter-spacing:2844.088800px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-22.680000px;}
.ws1{word-spacing:-17.010000px;}
.ws17{word-spacing:-16.500000px;}
.ws37{word-spacing:-12.750000px;}
.ws2{word-spacing:-11.340000px;}
.ws75{word-spacing:-1.056000px;}
.ws78{word-spacing:-0.462000px;}
.ws3e{word-spacing:-0.396000px;}
.ws45{word-spacing:-0.264000px;}
.ws41{word-spacing:-0.198000px;}
.ws34{word-spacing:-0.132000px;}
.ws33{word-spacing:-0.066000px;}
.ws38{word-spacing:-0.049500px;}
.ws4{word-spacing:0.000000px;}
.wsa{word-spacing:0.054000px;}
.ws63{word-spacing:0.066000px;}
.ws28{word-spacing:0.132000px;}
.ws10{word-spacing:0.162000px;}
.ws52{word-spacing:0.198000px;}
.ws6e{word-spacing:0.264000px;}
.ws6{word-spacing:0.288000px;}
.ws6d{word-spacing:0.330000px;}
.ws57{word-spacing:0.396000px;}
.ws5d{word-spacing:0.462000px;}
.ws2e{word-spacing:0.528000px;}
.wse{word-spacing:0.594000px;}
.ws29{word-spacing:0.660000px;}
.ws55{word-spacing:0.726000px;}
.ws77{word-spacing:0.792000px;}
.ws3f{word-spacing:0.858000px;}
.ws70{word-spacing:0.924000px;}
.ws1c{word-spacing:0.990000px;}
.ws3{word-spacing:1.026000px;}
.ws7a{word-spacing:1.056000px;}
.ws47{word-spacing:1.122000px;}
.ws56{word-spacing:1.188000px;}
.ws4c{word-spacing:1.254000px;}
.ws53{word-spacing:1.320000px;}
.ws21{word-spacing:1.386000px;}
.ws3d{word-spacing:1.518000px;}
.ws20{word-spacing:1.650000px;}
.ws22{word-spacing:1.716000px;}
.ws5{word-spacing:1.728000px;}
.wsd{word-spacing:1.782000px;}
.ws69{word-spacing:1.848000px;}
.ws24{word-spacing:1.914000px;}
.ws30{word-spacing:1.980000px;}
.ws1a{word-spacing:2.046000px;}
.ws1b{word-spacing:2.112000px;}
.ws12{word-spacing:2.160000px;}
.ws72{word-spacing:2.178000px;}
.ws50{word-spacing:2.244000px;}
.ws42{word-spacing:2.310000px;}
.ws13{word-spacing:2.376000px;}
.ws5f{word-spacing:2.442000px;}
.ws39{word-spacing:2.508000px;}
.ws36{word-spacing:2.574000px;}
.ws66{word-spacing:2.640000px;}
.ws14{word-spacing:2.646000px;}
.ws4b{word-spacing:2.706000px;}
.ws2b{word-spacing:2.772000px;}
.ws2d{word-spacing:2.838000px;}
.ws32{word-spacing:2.904000px;}
.ws1f{word-spacing:2.970000px;}
.ws73{word-spacing:3.036000px;}
.ws48{word-spacing:3.102000px;}
.ws4a{word-spacing:3.168000px;}
.ws16{word-spacing:3.186000px;}
.ws27{word-spacing:3.234000px;}
.ws49{word-spacing:3.300000px;}
.ws5e{word-spacing:3.366000px;}
.ws5b{word-spacing:3.432000px;}
.ws26{word-spacing:3.498000px;}
.ws6a{word-spacing:3.564000px;}
.ws46{word-spacing:3.630000px;}
.ws61{word-spacing:3.696000px;}
.ws62{word-spacing:3.762000px;}
.ws6c{word-spacing:3.828000px;}
.ws40{word-spacing:3.894000px;}
.ws2f{word-spacing:3.960000px;}
.ws64{word-spacing:4.026000px;}
.ws1d{word-spacing:4.092000px;}
.ws71{word-spacing:4.158000px;}
.wsc{word-spacing:4.212000px;}
.ws3c{word-spacing:4.224000px;}
.ws51{word-spacing:4.290000px;}
.ws76{word-spacing:4.356000px;}
.ws1e{word-spacing:4.422000px;}
.ws15{word-spacing:4.482000px;}
.ws3b{word-spacing:4.488000px;}
.ws23{word-spacing:4.554000px;}
.ws74{word-spacing:4.620000px;}
.ws4e{word-spacing:4.686000px;}
.ws5a{word-spacing:4.818000px;}
.ws58{word-spacing:4.884000px;}
.ws31{word-spacing:5.016000px;}
.ws60{word-spacing:5.082000px;}
.ws2a{word-spacing:5.148000px;}
.wsb{word-spacing:5.184000px;}
.ws54{word-spacing:5.214000px;}
.ws3a{word-spacing:5.280000px;}
.ws67{word-spacing:5.346000px;}
.ws59{word-spacing:5.412000px;}
.wsf{word-spacing:5.454000px;}
.ws6f{word-spacing:5.478000px;}
.ws11{word-spacing:5.508000px;}
.ws79{word-spacing:5.544000px;}
.ws7d{word-spacing:5.610000px;}
.ws9{word-spacing:5.670000px;}
.ws68{word-spacing:5.742000px;}
.ws35{word-spacing:5.808000px;}
.ws4d{word-spacing:5.874000px;}
.ws44{word-spacing:5.940000px;}
.ws25{word-spacing:6.006000px;}
.ws43{word-spacing:6.072000px;}
.ws65{word-spacing:6.138000px;}
.ws6b{word-spacing:6.204000px;}
.ws7b{word-spacing:6.336000px;}
.ws2c{word-spacing:6.402000px;}
.ws7c{word-spacing:6.468000px;}
.ws4f{word-spacing:6.666000px;}
.ws7e{word-spacing:6.732000px;}
.ws5c{word-spacing:6.798000px;}
.ws19{word-spacing:6.930000px;}
.ws7{word-spacing:10.656000px;}
.ws18{word-spacing:12.750000px;}
.ws8{word-spacing:13.344000px;}
._2{margin-left:-24.000000px;}
._3{margin-left:-22.705200px;}
._4{margin-left:-17.640000px;}
._6{margin-left:-16.596000px;}
._a{margin-left:-14.256000px;}
._7{margin-left:-1.458000px;}
._8{width:1.056000px;}
._1{width:2.640000px;}
._5{width:4.374000px;}
._9{width:6.402000px;}
._0{width:13.344000px;}
.fc2{color:rgb(96,138,150);}
.fc1{color:rgb(157,194,227);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.000000px;}
.fs9{font-size:49.500000px;}
.fs8{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fsa{font-size:78.000000px;}
.fs4{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.039350px;}
.ybd{bottom:138.827850px;}
.ye8{bottom:138.829350px;}
.y8f{bottom:138.835050px;}
.y61{bottom:138.856950px;}
.y14f{bottom:139.846200px;}
.y8{bottom:140.316450px;}
.y7{bottom:153.108450px;}
.ybc{bottom:159.617850px;}
.ye7{bottom:159.619350px;}
.y8e{bottom:159.625050px;}
.y60{bottom:159.646950px;}
.y14e{bottom:160.636200px;}
.y6{bottom:172.273800px;}
.ybb{bottom:180.407850px;}
.ye6{bottom:180.409350px;}
.y8d{bottom:180.415050px;}
.y5f{bottom:180.436950px;}
.y5{bottom:191.449800px;}
.y14d{bottom:191.821200px;}
.yba{bottom:201.197850px;}
.ye5{bottom:201.199350px;}
.y8c{bottom:201.205050px;}
.y5e{bottom:201.226950px;}
.y4{bottom:204.241800px;}
.y156{bottom:211.594350px;}
.yb9{bottom:221.987850px;}
.ye4{bottom:221.989350px;}
.y8b{bottom:221.995050px;}
.y5d{bottom:222.016950px;}
.y14c{bottom:223.006200px;}
.y3{bottom:223.417800px;}
.y121{bottom:232.382850px;}
.y10b{bottom:232.384350px;}
.y2{bottom:236.209800px;}
.yb8{bottom:242.777850px;}
.ye3{bottom:242.779350px;}
.y8a{bottom:242.785050px;}
.y14b{bottom:243.796200px;}
.y120{bottom:253.172850px;}
.y10a{bottom:253.174350px;}
.y5c{bottom:253.201950px;}
.yb7{bottom:263.567850px;}
.ye2{bottom:263.569350px;}
.y89{bottom:263.575050px;}
.y11f{bottom:273.962850px;}
.y109{bottom:273.964350px;}
.y5b{bottom:273.991950px;}
.y14a{bottom:274.981200px;}
.yb6{bottom:284.357850px;}
.ye1{bottom:284.359350px;}
.y88{bottom:284.365050px;}
.y11e{bottom:294.752850px;}
.y108{bottom:294.754350px;}
.y5a{bottom:294.781950px;}
.yb5{bottom:305.147850px;}
.ye0{bottom:305.149350px;}
.y87{bottom:305.155050px;}
.y149{bottom:306.166200px;}
.y11d{bottom:315.542850px;}
.y107{bottom:315.544350px;}
.y59{bottom:315.571950px;}
.y139{bottom:320.741850px;}
.yb4{bottom:325.937850px;}
.ydf{bottom:325.939350px;}
.y86{bottom:325.945050px;}
.y148{bottom:326.956200px;}
.y11c{bottom:336.332850px;}
.y106{bottom:336.334350px;}
.y58{bottom:336.361950px;}
.y138{bottom:341.531850px;}
.yb3{bottom:346.727850px;}
.yde{bottom:346.729350px;}
.y85{bottom:346.735050px;}
.y11b{bottom:357.122850px;}
.y105{bottom:357.124350px;}
.y57{bottom:357.151950px;}
.y147{bottom:358.141200px;}
.y137{bottom:362.321850px;}
.yb2{bottom:367.517850px;}
.y155{bottom:367.519350px;}
.y11a{bottom:377.912850px;}
.ydd{bottom:377.914350px;}
.y84{bottom:377.920050px;}
.y56{bottom:377.941950px;}
.y146{bottom:378.931200px;}
.y136{bottom:383.111850px;}
.yb1{bottom:388.307850px;}
.y154{bottom:388.309350px;}
.y119{bottom:398.702850px;}
.ydc{bottom:398.704350px;}
.y83{bottom:398.710050px;}
.y55{bottom:398.731950px;}
.y135{bottom:403.901850px;}
.yb0{bottom:409.097850px;}
.y153{bottom:409.099350px;}
.y34{bottom:411.309150px;}
.y29{bottom:411.324150px;}
.y118{bottom:419.492850px;}
.ydb{bottom:419.494350px;}
.y82{bottom:419.500050px;}
.y54{bottom:419.521950px;}
.y134{bottom:424.691850px;}
.y145{bottom:424.993950px;}
.y33{bottom:427.293150px;}
.y28{bottom:427.308150px;}
.yaf{bottom:429.887850px;}
.y117{bottom:440.282850px;}
.yda{bottom:440.284350px;}
.y81{bottom:440.290050px;}
.y53{bottom:440.311950px;}
.y32{bottom:443.277150px;}
.y27{bottom:443.292150px;}
.y133{bottom:445.481850px;}
.yae{bottom:450.677850px;}
.y31{bottom:459.261150px;}
.y26{bottom:459.276150px;}
.y116{bottom:461.072850px;}
.yd9{bottom:461.074350px;}
.y80{bottom:461.080050px;}
.y52{bottom:461.101950px;}
.y132{bottom:466.271850px;}
.yad{bottom:471.467850px;}
.y30{bottom:475.245150px;}
.y115{bottom:481.862850px;}
.yd8{bottom:481.864350px;}
.y7f{bottom:481.870050px;}
.y51{bottom:481.891950px;}
.y25{bottom:483.252150px;}
.y131{bottom:487.061850px;}
.y2f{bottom:491.229150px;}
.yf0{bottom:492.257850px;}
.y152{bottom:492.259350px;}
.yac{bottom:502.652850px;}
.yd7{bottom:502.654350px;}
.y7e{bottom:502.660050px;}
.y50{bottom:502.681950px;}
.y2e{bottom:507.213150px;}
.y130{bottom:507.851850px;}
.yef{bottom:513.047850px;}
.y151{bottom:513.049350px;}
.y2d{bottom:523.197150px;}
.yab{bottom:523.442850px;}
.yd6{bottom:523.444350px;}
.y7d{bottom:523.450050px;}
.y4f{bottom:523.471950px;}
.y12f{bottom:528.641850px;}
.yee{bottom:533.837850px;}
.y104{bottom:533.839350px;}
.y2c{bottom:539.181150px;}
.yaa{bottom:544.232850px;}
.yd5{bottom:544.234350px;}
.y7c{bottom:544.240050px;}
.y4e{bottom:544.261950px;}
.y12e{bottom:549.431850px;}
.y144{bottom:554.627850px;}
.y103{bottom:554.629350px;}
.y2b{bottom:555.165150px;}
.ya9{bottom:565.022850px;}
.yd4{bottom:565.024350px;}
.y7b{bottom:565.030050px;}
.y12d{bottom:570.221850px;}
.y2a{bottom:571.149150px;}
.y143{bottom:575.417850px;}
.y102{bottom:575.419350px;}
.y4d{bottom:575.446950px;}
.ya8{bottom:585.812850px;}
.yd3{bottom:585.814350px;}
.y7a{bottom:585.820050px;}
.y12c{bottom:591.011850px;}
.y142{bottom:596.207850px;}
.y101{bottom:596.209350px;}
.y4c{bottom:596.236950px;}
.ya7{bottom:606.602850px;}
.yd2{bottom:606.604350px;}
.y79{bottom:606.610050px;}
.y12b{bottom:611.801850px;}
.y18{bottom:615.576300px;}
.y24{bottom:615.592650px;}
.y141{bottom:616.997850px;}
.y100{bottom:616.999350px;}
.y4b{bottom:617.026950px;}
.ya6{bottom:627.392850px;}
.yd1{bottom:627.394350px;}
.y78{bottom:627.400050px;}
.y17{bottom:631.560300px;}
.y23{bottom:631.576650px;}
.y12a{bottom:632.591850px;}
.y140{bottom:637.787850px;}
.yff{bottom:637.789350px;}
.y4a{bottom:637.816950px;}
.y16{bottom:647.544300px;}
.y22{bottom:647.560650px;}
.yed{bottom:648.182850px;}
.yd0{bottom:648.184350px;}
.y77{bottom:648.190050px;}
.y129{bottom:653.381850px;}
.ya5{bottom:658.577850px;}
.yfe{bottom:658.579350px;}
.y49{bottom:658.606950px;}
.y15{bottom:663.528300px;}
.y21{bottom:663.544650px;}
.yec{bottom:668.972850px;}
.ycf{bottom:668.974350px;}
.y76{bottom:668.980050px;}
.ya4{bottom:679.367850px;}
.yfd{bottom:679.369350px;}
.y48{bottom:679.396950px;}
.y14{bottom:679.512300px;}
.y20{bottom:679.528650px;}
.yeb{bottom:689.762850px;}
.yce{bottom:689.764350px;}
.y75{bottom:689.770050px;}
.y1f{bottom:695.512650px;}
.ya3{bottom:700.157850px;}
.yfc{bottom:700.159350px;}
.y47{bottom:700.186950px;}
.y13{bottom:703.488300px;}
.yea{bottom:710.552850px;}
.y128{bottom:710.554350px;}
.y1e{bottom:711.496650px;}
.ya2{bottom:720.947850px;}
.ycd{bottom:720.949350px;}
.y74{bottom:720.955050px;}
.y46{bottom:720.976950px;}
.y1d{bottom:727.480650px;}
.y114{bottom:731.342850px;}
.y127{bottom:731.344350px;}
.ya1{bottom:741.737850px;}
.ycc{bottom:741.739350px;}
.y73{bottom:741.745050px;}
.y45{bottom:741.766950px;}
.y1c{bottom:743.464650px;}
.y113{bottom:752.132850px;}
.y126{bottom:752.134350px;}
.y1b{bottom:759.448650px;}
.ya0{bottom:762.527850px;}
.ycb{bottom:762.529350px;}
.y72{bottom:762.535050px;}
.y44{bottom:762.556950px;}
.y112{bottom:772.922850px;}
.y125{bottom:772.924350px;}
.y1a{bottom:775.432650px;}
.y9f{bottom:783.317850px;}
.yca{bottom:783.319350px;}
.y71{bottom:783.325050px;}
.y43{bottom:783.346950px;}
.y19{bottom:791.416650px;}
.y111{bottom:793.712850px;}
.y124{bottom:793.714350px;}
.y9e{bottom:804.107850px;}
.yc9{bottom:804.109350px;}
.y70{bottom:804.115050px;}
.y42{bottom:804.136950px;}
.y13f{bottom:814.502850px;}
.y123{bottom:814.504350px;}
.y9d{bottom:824.897850px;}
.yc8{bottom:824.899350px;}
.y6f{bottom:824.905050px;}
.y41{bottom:824.926950px;}
.y13e{bottom:835.292850px;}
.y122{bottom:835.294350px;}
.y9c{bottom:845.687850px;}
.yc7{bottom:845.689350px;}
.y6e{bottom:845.695050px;}
.y13d{bottom:856.082850px;}
.yfb{bottom:856.084350px;}
.y40{bottom:856.111950px;}
.y9b{bottom:866.477850px;}
.yc6{bottom:866.479350px;}
.y6d{bottom:866.485050px;}
.y13c{bottom:876.872850px;}
.yfa{bottom:876.874350px;}
.y3f{bottom:876.901950px;}
.y9a{bottom:887.267850px;}
.yc5{bottom:887.269350px;}
.y6c{bottom:887.275050px;}
.y13b{bottom:897.662850px;}
.yf9{bottom:897.664350px;}
.y3e{bottom:897.691950px;}
.y12{bottom:897.921450px;}
.y99{bottom:908.057850px;}
.yc4{bottom:908.059350px;}
.y6b{bottom:908.065050px;}
.y13a{bottom:918.452850px;}
.yf8{bottom:918.454350px;}
.y3d{bottom:918.481950px;}
.y11{bottom:918.699150px;}
.y98{bottom:928.847850px;}
.yc3{bottom:928.849350px;}
.y6a{bottom:928.855050px;}
.y110{bottom:939.242850px;}
.yf7{bottom:939.244350px;}
.y3c{bottom:939.271950px;}
.y97{bottom:949.637850px;}
.yc2{bottom:949.639350px;}
.y69{bottom:949.645050px;}
.y10f{bottom:960.032850px;}
.yf6{bottom:960.034350px;}
.y3b{bottom:960.061950px;}
.y10{bottom:963.093150px;}
.y96{bottom:970.427850px;}
.yc1{bottom:970.429350px;}
.y68{bottom:970.435050px;}
.y10e{bottom:980.822850px;}
.yf5{bottom:980.824350px;}
.y3a{bottom:980.851950px;}
.yf{bottom:988.293150px;}
.y95{bottom:991.217850px;}
.yc0{bottom:991.219350px;}
.y67{bottom:991.225050px;}
.y10d{bottom:1001.612850px;}
.yf4{bottom:1001.614350px;}
.y39{bottom:1001.641950px;}
.y94{bottom:1012.007850px;}
.ybf{bottom:1012.009350px;}
.y66{bottom:1012.015050px;}
.y10c{bottom:1022.402850px;}
.yf3{bottom:1022.404350px;}
.y38{bottom:1022.431950px;}
.ye{bottom:1032.678000px;}
.y93{bottom:1032.797850px;}
.ybe{bottom:1032.799350px;}
.y65{bottom:1032.805050px;}
.ye9{bottom:1043.192850px;}
.yf2{bottom:1043.194350px;}
.y37{bottom:1043.221950px;}
.y64{bottom:1053.589350px;}
.y92{bottom:1063.982850px;}
.yf1{bottom:1063.984350px;}
.yd{bottom:1065.078000px;}
.y150{bottom:1074.379350px;}
.y91{bottom:1084.772850px;}
.y63{bottom:1084.774350px;}
.yc{bottom:1097.478000px;}
.y90{bottom:1105.562850px;}
.y62{bottom:1105.564350px;}
.y36{bottom:1106.717850px;}
.yb{bottom:1162.740450px;}
.y35{bottom:1172.229900px;}
.ya{bottom:1193.880450px;}
.y9{bottom:1207.380450px;}
.h4{height:35.328000px;}
.h3{height:35.664000px;}
.h9{height:40.068000px;}
.hc{height:40.545000px;}
.ha{height:42.930000px;}
.h2{height:45.342773px;}
.h8{height:47.700000px;}
.hb{height:50.868000px;}
.hf{height:52.470000px;}
.h10{height:52.492800px;}
.hd{height:56.520000px;}
.h11{height:57.876000px;}
.he{height:62.172000px;}
.h7{height:66.780000px;}
.h6{height:79.128000px;}
.h5{height:101.952000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x13{left:86.972550px;}
.xd{left:93.730800px;}
.x2{left:110.551350px;}
.x14{left:136.057350px;}
.x15{left:137.990550px;}
.x3{left:145.195650px;}
.x4{left:151.195650px;}
.x6{left:191.903550px;}
.xe{left:221.289750px;}
.x10{left:295.257900px;}
.xf{left:299.107200px;}
.xa{left:306.252750px;}
.x7{left:384.452850px;}
.x9{left:410.454750px;}
.x8{left:465.896100px;}
.x12{left:618.932400px;}
.xc{left:624.696600px;}
.xb{left:628.539750px;}
.x11{left:703.835550px;}
.x5{left:733.915650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.960000pt;}
.ls1e{letter-spacing:-0.880000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.029333pt;}
.lse{letter-spacing:0.058667pt;}
.ls14{letter-spacing:0.088000pt;}
.ls12{letter-spacing:0.117333pt;}
.ls10{letter-spacing:0.176000pt;}
.ls9{letter-spacing:0.234667pt;}
.ls11{letter-spacing:0.258133pt;}
.ls1a{letter-spacing:0.264000pt;}
.ls16{letter-spacing:0.293333pt;}
.ls3{letter-spacing:0.336000pt;}
.lsb{letter-spacing:0.352000pt;}
.ls1c{letter-spacing:0.381333pt;}
.ls2{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.410667pt;}
.ls8{letter-spacing:0.469333pt;}
.lsf{letter-spacing:0.528000pt;}
.ls18{letter-spacing:0.586667pt;}
.ls17{letter-spacing:0.821333pt;}
.ls13{letter-spacing:0.880000pt;}
.ls1{letter-spacing:0.912000pt;}
.ls1b{letter-spacing:0.938667pt;}
.ls21{letter-spacing:0.997333pt;}
.ls4{letter-spacing:1.296000pt;}
.ls19{letter-spacing:2.874667pt;}
.ls15{letter-spacing:3.109333pt;}
.ls20{letter-spacing:6.512000pt;}
.ls1f{letter-spacing:1812.060800pt;}
.lsc{letter-spacing:1841.394133pt;}
.ls1d{letter-spacing:1898.565867pt;}
.ls7{letter-spacing:1927.899200pt;}
.ls0{letter-spacing:2528.078933pt;}
.ws0{word-spacing:-20.160000pt;}
.ws1{word-spacing:-15.120000pt;}
.ws17{word-spacing:-14.666667pt;}
.ws37{word-spacing:-11.333333pt;}
.ws2{word-spacing:-10.080000pt;}
.ws75{word-spacing:-0.938667pt;}
.ws78{word-spacing:-0.410667pt;}
.ws3e{word-spacing:-0.352000pt;}
.ws45{word-spacing:-0.234667pt;}
.ws41{word-spacing:-0.176000pt;}
.ws34{word-spacing:-0.117333pt;}
.ws33{word-spacing:-0.058667pt;}
.ws38{word-spacing:-0.044000pt;}
.ws4{word-spacing:0.000000pt;}
.wsa{word-spacing:0.048000pt;}
.ws63{word-spacing:0.058667pt;}
.ws28{word-spacing:0.117333pt;}
.ws10{word-spacing:0.144000pt;}
.ws52{word-spacing:0.176000pt;}
.ws6e{word-spacing:0.234667pt;}
.ws6{word-spacing:0.256000pt;}
.ws6d{word-spacing:0.293333pt;}
.ws57{word-spacing:0.352000pt;}
.ws5d{word-spacing:0.410667pt;}
.ws2e{word-spacing:0.469333pt;}
.wse{word-spacing:0.528000pt;}
.ws29{word-spacing:0.586667pt;}
.ws55{word-spacing:0.645333pt;}
.ws77{word-spacing:0.704000pt;}
.ws3f{word-spacing:0.762667pt;}
.ws70{word-spacing:0.821333pt;}
.ws1c{word-spacing:0.880000pt;}
.ws3{word-spacing:0.912000pt;}
.ws7a{word-spacing:0.938667pt;}
.ws47{word-spacing:0.997333pt;}
.ws56{word-spacing:1.056000pt;}
.ws4c{word-spacing:1.114667pt;}
.ws53{word-spacing:1.173333pt;}
.ws21{word-spacing:1.232000pt;}
.ws3d{word-spacing:1.349333pt;}
.ws20{word-spacing:1.466667pt;}
.ws22{word-spacing:1.525333pt;}
.ws5{word-spacing:1.536000pt;}
.wsd{word-spacing:1.584000pt;}
.ws69{word-spacing:1.642667pt;}
.ws24{word-spacing:1.701333pt;}
.ws30{word-spacing:1.760000pt;}
.ws1a{word-spacing:1.818667pt;}
.ws1b{word-spacing:1.877333pt;}
.ws12{word-spacing:1.920000pt;}
.ws72{word-spacing:1.936000pt;}
.ws50{word-spacing:1.994667pt;}
.ws42{word-spacing:2.053333pt;}
.ws13{word-spacing:2.112000pt;}
.ws5f{word-spacing:2.170667pt;}
.ws39{word-spacing:2.229333pt;}
.ws36{word-spacing:2.288000pt;}
.ws66{word-spacing:2.346667pt;}
.ws14{word-spacing:2.352000pt;}
.ws4b{word-spacing:2.405333pt;}
.ws2b{word-spacing:2.464000pt;}
.ws2d{word-spacing:2.522667pt;}
.ws32{word-spacing:2.581333pt;}
.ws1f{word-spacing:2.640000pt;}
.ws73{word-spacing:2.698667pt;}
.ws48{word-spacing:2.757333pt;}
.ws4a{word-spacing:2.816000pt;}
.ws16{word-spacing:2.832000pt;}
.ws27{word-spacing:2.874667pt;}
.ws49{word-spacing:2.933333pt;}
.ws5e{word-spacing:2.992000pt;}
.ws5b{word-spacing:3.050667pt;}
.ws26{word-spacing:3.109333pt;}
.ws6a{word-spacing:3.168000pt;}
.ws46{word-spacing:3.226667pt;}
.ws61{word-spacing:3.285333pt;}
.ws62{word-spacing:3.344000pt;}
.ws6c{word-spacing:3.402667pt;}
.ws40{word-spacing:3.461333pt;}
.ws2f{word-spacing:3.520000pt;}
.ws64{word-spacing:3.578667pt;}
.ws1d{word-spacing:3.637333pt;}
.ws71{word-spacing:3.696000pt;}
.wsc{word-spacing:3.744000pt;}
.ws3c{word-spacing:3.754667pt;}
.ws51{word-spacing:3.813333pt;}
.ws76{word-spacing:3.872000pt;}
.ws1e{word-spacing:3.930667pt;}
.ws15{word-spacing:3.984000pt;}
.ws3b{word-spacing:3.989333pt;}
.ws23{word-spacing:4.048000pt;}
.ws74{word-spacing:4.106667pt;}
.ws4e{word-spacing:4.165333pt;}
.ws5a{word-spacing:4.282667pt;}
.ws58{word-spacing:4.341333pt;}
.ws31{word-spacing:4.458667pt;}
.ws60{word-spacing:4.517333pt;}
.ws2a{word-spacing:4.576000pt;}
.wsb{word-spacing:4.608000pt;}
.ws54{word-spacing:4.634667pt;}
.ws3a{word-spacing:4.693333pt;}
.ws67{word-spacing:4.752000pt;}
.ws59{word-spacing:4.810667pt;}
.wsf{word-spacing:4.848000pt;}
.ws6f{word-spacing:4.869333pt;}
.ws11{word-spacing:4.896000pt;}
.ws79{word-spacing:4.928000pt;}
.ws7d{word-spacing:4.986667pt;}
.ws9{word-spacing:5.040000pt;}
.ws68{word-spacing:5.104000pt;}
.ws35{word-spacing:5.162667pt;}
.ws4d{word-spacing:5.221333pt;}
.ws44{word-spacing:5.280000pt;}
.ws25{word-spacing:5.338667pt;}
.ws43{word-spacing:5.397333pt;}
.ws65{word-spacing:5.456000pt;}
.ws6b{word-spacing:5.514667pt;}
.ws7b{word-spacing:5.632000pt;}
.ws2c{word-spacing:5.690667pt;}
.ws7c{word-spacing:5.749333pt;}
.ws4f{word-spacing:5.925333pt;}
.ws7e{word-spacing:5.984000pt;}
.ws5c{word-spacing:6.042667pt;}
.ws19{word-spacing:6.160000pt;}
.ws7{word-spacing:9.472000pt;}
.ws18{word-spacing:11.333333pt;}
.ws8{word-spacing:11.861333pt;}
._2{margin-left:-21.333333pt;}
._3{margin-left:-20.182400pt;}
._4{margin-left:-15.680000pt;}
._6{margin-left:-14.752000pt;}
._a{margin-left:-12.672000pt;}
._7{margin-left:-1.296000pt;}
._8{width:0.938667pt;}
._1{width:2.346667pt;}
._5{width:3.888000pt;}
._9{width:5.690667pt;}
._0{width:11.861333pt;}
.fs2{font-size:42.666667pt;}
.fs9{font-size:44.000000pt;}
.fs8{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fsa{font-size:69.333333pt;}
.fs4{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:75.590533pt;}
.ybd{bottom:123.402533pt;}
.ye8{bottom:123.403867pt;}
.y8f{bottom:123.408933pt;}
.y61{bottom:123.428400pt;}
.y14f{bottom:124.307733pt;}
.y8{bottom:124.725733pt;}
.y7{bottom:136.096400pt;}
.ybc{bottom:141.882533pt;}
.ye7{bottom:141.883867pt;}
.y8e{bottom:141.888933pt;}
.y60{bottom:141.908400pt;}
.y14e{bottom:142.787733pt;}
.y6{bottom:153.132267pt;}
.ybb{bottom:160.362533pt;}
.ye6{bottom:160.363867pt;}
.y8d{bottom:160.368933pt;}
.y5f{bottom:160.388400pt;}
.y5{bottom:170.177600pt;}
.y14d{bottom:170.507733pt;}
.yba{bottom:178.842533pt;}
.ye5{bottom:178.843867pt;}
.y8c{bottom:178.848933pt;}
.y5e{bottom:178.868400pt;}
.y4{bottom:181.548267pt;}
.y156{bottom:188.083867pt;}
.yb9{bottom:197.322533pt;}
.ye4{bottom:197.323867pt;}
.y8b{bottom:197.328933pt;}
.y5d{bottom:197.348400pt;}
.y14c{bottom:198.227733pt;}
.y3{bottom:198.593600pt;}
.y121{bottom:206.562533pt;}
.y10b{bottom:206.563867pt;}
.y2{bottom:209.964267pt;}
.yb8{bottom:215.802533pt;}
.ye3{bottom:215.803867pt;}
.y8a{bottom:215.808933pt;}
.y14b{bottom:216.707733pt;}
.y120{bottom:225.042533pt;}
.y10a{bottom:225.043867pt;}
.y5c{bottom:225.068400pt;}
.yb7{bottom:234.282533pt;}
.ye2{bottom:234.283867pt;}
.y89{bottom:234.288933pt;}
.y11f{bottom:243.522533pt;}
.y109{bottom:243.523867pt;}
.y5b{bottom:243.548400pt;}
.y14a{bottom:244.427733pt;}
.yb6{bottom:252.762533pt;}
.ye1{bottom:252.763867pt;}
.y88{bottom:252.768933pt;}
.y11e{bottom:262.002533pt;}
.y108{bottom:262.003867pt;}
.y5a{bottom:262.028400pt;}
.yb5{bottom:271.242533pt;}
.ye0{bottom:271.243867pt;}
.y87{bottom:271.248933pt;}
.y149{bottom:272.147733pt;}
.y11d{bottom:280.482533pt;}
.y107{bottom:280.483867pt;}
.y59{bottom:280.508400pt;}
.y139{bottom:285.103867pt;}
.yb4{bottom:289.722533pt;}
.ydf{bottom:289.723867pt;}
.y86{bottom:289.728933pt;}
.y148{bottom:290.627733pt;}
.y11c{bottom:298.962533pt;}
.y106{bottom:298.963867pt;}
.y58{bottom:298.988400pt;}
.y138{bottom:303.583867pt;}
.yb3{bottom:308.202533pt;}
.yde{bottom:308.203867pt;}
.y85{bottom:308.208933pt;}
.y11b{bottom:317.442533pt;}
.y105{bottom:317.443867pt;}
.y57{bottom:317.468400pt;}
.y147{bottom:318.347733pt;}
.y137{bottom:322.063867pt;}
.yb2{bottom:326.682533pt;}
.y155{bottom:326.683867pt;}
.y11a{bottom:335.922533pt;}
.ydd{bottom:335.923867pt;}
.y84{bottom:335.928933pt;}
.y56{bottom:335.948400pt;}
.y146{bottom:336.827733pt;}
.y136{bottom:340.543867pt;}
.yb1{bottom:345.162533pt;}
.y154{bottom:345.163867pt;}
.y119{bottom:354.402533pt;}
.ydc{bottom:354.403867pt;}
.y83{bottom:354.408933pt;}
.y55{bottom:354.428400pt;}
.y135{bottom:359.023867pt;}
.yb0{bottom:363.642533pt;}
.y153{bottom:363.643867pt;}
.y34{bottom:365.608133pt;}
.y29{bottom:365.621467pt;}
.y118{bottom:372.882533pt;}
.ydb{bottom:372.883867pt;}
.y82{bottom:372.888933pt;}
.y54{bottom:372.908400pt;}
.y134{bottom:377.503867pt;}
.y145{bottom:377.772400pt;}
.y33{bottom:379.816133pt;}
.y28{bottom:379.829467pt;}
.yaf{bottom:382.122533pt;}
.y117{bottom:391.362533pt;}
.yda{bottom:391.363867pt;}
.y81{bottom:391.368933pt;}
.y53{bottom:391.388400pt;}
.y32{bottom:394.024133pt;}
.y27{bottom:394.037467pt;}
.y133{bottom:395.983867pt;}
.yae{bottom:400.602533pt;}
.y31{bottom:408.232133pt;}
.y26{bottom:408.245467pt;}
.y116{bottom:409.842533pt;}
.yd9{bottom:409.843867pt;}
.y80{bottom:409.848933pt;}
.y52{bottom:409.868400pt;}
.y132{bottom:414.463867pt;}
.yad{bottom:419.082533pt;}
.y30{bottom:422.440133pt;}
.y115{bottom:428.322533pt;}
.yd8{bottom:428.323867pt;}
.y7f{bottom:428.328933pt;}
.y51{bottom:428.348400pt;}
.y25{bottom:429.557467pt;}
.y131{bottom:432.943867pt;}
.y2f{bottom:436.648133pt;}
.yf0{bottom:437.562533pt;}
.y152{bottom:437.563867pt;}
.yac{bottom:446.802533pt;}
.yd7{bottom:446.803867pt;}
.y7e{bottom:446.808933pt;}
.y50{bottom:446.828400pt;}
.y2e{bottom:450.856133pt;}
.y130{bottom:451.423867pt;}
.yef{bottom:456.042533pt;}
.y151{bottom:456.043867pt;}
.y2d{bottom:465.064133pt;}
.yab{bottom:465.282533pt;}
.yd6{bottom:465.283867pt;}
.y7d{bottom:465.288933pt;}
.y4f{bottom:465.308400pt;}
.y12f{bottom:469.903867pt;}
.yee{bottom:474.522533pt;}
.y104{bottom:474.523867pt;}
.y2c{bottom:479.272133pt;}
.yaa{bottom:483.762533pt;}
.yd5{bottom:483.763867pt;}
.y7c{bottom:483.768933pt;}
.y4e{bottom:483.788400pt;}
.y12e{bottom:488.383867pt;}
.y144{bottom:493.002533pt;}
.y103{bottom:493.003867pt;}
.y2b{bottom:493.480133pt;}
.ya9{bottom:502.242533pt;}
.yd4{bottom:502.243867pt;}
.y7b{bottom:502.248933pt;}
.y12d{bottom:506.863867pt;}
.y2a{bottom:507.688133pt;}
.y143{bottom:511.482533pt;}
.y102{bottom:511.483867pt;}
.y4d{bottom:511.508400pt;}
.ya8{bottom:520.722533pt;}
.yd3{bottom:520.723867pt;}
.y7a{bottom:520.728933pt;}
.y12c{bottom:525.343867pt;}
.y142{bottom:529.962533pt;}
.y101{bottom:529.963867pt;}
.y4c{bottom:529.988400pt;}
.ya7{bottom:539.202533pt;}
.yd2{bottom:539.203867pt;}
.y79{bottom:539.208933pt;}
.y12b{bottom:543.823867pt;}
.y18{bottom:547.178933pt;}
.y24{bottom:547.193467pt;}
.y141{bottom:548.442533pt;}
.y100{bottom:548.443867pt;}
.y4b{bottom:548.468400pt;}
.ya6{bottom:557.682533pt;}
.yd1{bottom:557.683867pt;}
.y78{bottom:557.688933pt;}
.y17{bottom:561.386933pt;}
.y23{bottom:561.401467pt;}
.y12a{bottom:562.303867pt;}
.y140{bottom:566.922533pt;}
.yff{bottom:566.923867pt;}
.y4a{bottom:566.948400pt;}
.y16{bottom:575.594933pt;}
.y22{bottom:575.609467pt;}
.yed{bottom:576.162533pt;}
.yd0{bottom:576.163867pt;}
.y77{bottom:576.168933pt;}
.y129{bottom:580.783867pt;}
.ya5{bottom:585.402533pt;}
.yfe{bottom:585.403867pt;}
.y49{bottom:585.428400pt;}
.y15{bottom:589.802933pt;}
.y21{bottom:589.817467pt;}
.yec{bottom:594.642533pt;}
.ycf{bottom:594.643867pt;}
.y76{bottom:594.648933pt;}
.ya4{bottom:603.882533pt;}
.yfd{bottom:603.883867pt;}
.y48{bottom:603.908400pt;}
.y14{bottom:604.010933pt;}
.y20{bottom:604.025467pt;}
.yeb{bottom:613.122533pt;}
.yce{bottom:613.123867pt;}
.y75{bottom:613.128933pt;}
.y1f{bottom:618.233467pt;}
.ya3{bottom:622.362533pt;}
.yfc{bottom:622.363867pt;}
.y47{bottom:622.388400pt;}
.y13{bottom:625.322933pt;}
.yea{bottom:631.602533pt;}
.y128{bottom:631.603867pt;}
.y1e{bottom:632.441467pt;}
.ya2{bottom:640.842533pt;}
.ycd{bottom:640.843867pt;}
.y74{bottom:640.848933pt;}
.y46{bottom:640.868400pt;}
.y1d{bottom:646.649467pt;}
.y114{bottom:650.082533pt;}
.y127{bottom:650.083867pt;}
.ya1{bottom:659.322533pt;}
.ycc{bottom:659.323867pt;}
.y73{bottom:659.328933pt;}
.y45{bottom:659.348400pt;}
.y1c{bottom:660.857467pt;}
.y113{bottom:668.562533pt;}
.y126{bottom:668.563867pt;}
.y1b{bottom:675.065467pt;}
.ya0{bottom:677.802533pt;}
.ycb{bottom:677.803867pt;}
.y72{bottom:677.808933pt;}
.y44{bottom:677.828400pt;}
.y112{bottom:687.042533pt;}
.y125{bottom:687.043867pt;}
.y1a{bottom:689.273467pt;}
.y9f{bottom:696.282533pt;}
.yca{bottom:696.283867pt;}
.y71{bottom:696.288933pt;}
.y43{bottom:696.308400pt;}
.y19{bottom:703.481467pt;}
.y111{bottom:705.522533pt;}
.y124{bottom:705.523867pt;}
.y9e{bottom:714.762533pt;}
.yc9{bottom:714.763867pt;}
.y70{bottom:714.768933pt;}
.y42{bottom:714.788400pt;}
.y13f{bottom:724.002533pt;}
.y123{bottom:724.003867pt;}
.y9d{bottom:733.242533pt;}
.yc8{bottom:733.243867pt;}
.y6f{bottom:733.248933pt;}
.y41{bottom:733.268400pt;}
.y13e{bottom:742.482533pt;}
.y122{bottom:742.483867pt;}
.y9c{bottom:751.722533pt;}
.yc7{bottom:751.723867pt;}
.y6e{bottom:751.728933pt;}
.y13d{bottom:760.962533pt;}
.yfb{bottom:760.963867pt;}
.y40{bottom:760.988400pt;}
.y9b{bottom:770.202533pt;}
.yc6{bottom:770.203867pt;}
.y6d{bottom:770.208933pt;}
.y13c{bottom:779.442533pt;}
.yfa{bottom:779.443867pt;}
.y3f{bottom:779.468400pt;}
.y9a{bottom:788.682533pt;}
.yc5{bottom:788.683867pt;}
.y6c{bottom:788.688933pt;}
.y13b{bottom:797.922533pt;}
.yf9{bottom:797.923867pt;}
.y3e{bottom:797.948400pt;}
.y12{bottom:798.152400pt;}
.y99{bottom:807.162533pt;}
.yc4{bottom:807.163867pt;}
.y6b{bottom:807.168933pt;}
.y13a{bottom:816.402533pt;}
.yf8{bottom:816.403867pt;}
.y3d{bottom:816.428400pt;}
.y11{bottom:816.621467pt;}
.y98{bottom:825.642533pt;}
.yc3{bottom:825.643867pt;}
.y6a{bottom:825.648933pt;}
.y110{bottom:834.882533pt;}
.yf7{bottom:834.883867pt;}
.y3c{bottom:834.908400pt;}
.y97{bottom:844.122533pt;}
.yc2{bottom:844.123867pt;}
.y69{bottom:844.128933pt;}
.y10f{bottom:853.362533pt;}
.yf6{bottom:853.363867pt;}
.y3b{bottom:853.388400pt;}
.y10{bottom:856.082800pt;}
.y96{bottom:862.602533pt;}
.yc1{bottom:862.603867pt;}
.y68{bottom:862.608933pt;}
.y10e{bottom:871.842533pt;}
.yf5{bottom:871.843867pt;}
.y3a{bottom:871.868400pt;}
.yf{bottom:878.482800pt;}
.y95{bottom:881.082533pt;}
.yc0{bottom:881.083867pt;}
.y67{bottom:881.088933pt;}
.y10d{bottom:890.322533pt;}
.yf4{bottom:890.323867pt;}
.y39{bottom:890.348400pt;}
.y94{bottom:899.562533pt;}
.ybf{bottom:899.563867pt;}
.y66{bottom:899.568933pt;}
.y10c{bottom:908.802533pt;}
.yf3{bottom:908.803867pt;}
.y38{bottom:908.828400pt;}
.ye{bottom:917.936000pt;}
.y93{bottom:918.042533pt;}
.ybe{bottom:918.043867pt;}
.y65{bottom:918.048933pt;}
.ye9{bottom:927.282533pt;}
.yf2{bottom:927.283867pt;}
.y37{bottom:927.308400pt;}
.y64{bottom:936.523867pt;}
.y92{bottom:945.762533pt;}
.yf1{bottom:945.763867pt;}
.yd{bottom:946.736000pt;}
.y150{bottom:955.003867pt;}
.y91{bottom:964.242533pt;}
.y63{bottom:964.243867pt;}
.yc{bottom:975.536000pt;}
.y90{bottom:982.722533pt;}
.y62{bottom:982.723867pt;}
.y36{bottom:983.749200pt;}
.yb{bottom:1033.547067pt;}
.y35{bottom:1041.982133pt;}
.ya{bottom:1061.227067pt;}
.y9{bottom:1073.227067pt;}
.h4{height:31.402667pt;}
.h3{height:31.701333pt;}
.h9{height:35.616000pt;}
.hc{height:36.040000pt;}
.ha{height:38.160000pt;}
.h2{height:40.304688pt;}
.h8{height:42.400000pt;}
.hb{height:45.216000pt;}
.hf{height:46.640000pt;}
.h10{height:46.660267pt;}
.hd{height:50.240000pt;}
.h11{height:51.445333pt;}
.he{height:55.264000pt;}
.h7{height:59.360000pt;}
.h6{height:70.336000pt;}
.h5{height:90.624000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x13{left:77.308933pt;}
.xd{left:83.316267pt;}
.x2{left:98.267867pt;}
.x14{left:120.939867pt;}
.x15{left:122.658267pt;}
.x3{left:129.062800pt;}
.x4{left:134.396133pt;}
.x6{left:170.580933pt;}
.xe{left:196.702000pt;}
.x10{left:262.451467pt;}
.xf{left:265.873067pt;}
.xa{left:272.224667pt;}
.x7{left:341.735867pt;}
.x9{left:364.848667pt;}
.x8{left:414.129867pt;}
.x12{left:550.162133pt;}
.xc{left:555.285867pt;}
.xb{left:558.702000pt;}
.x11{left:625.631600pt;}
.x5{left:652.369467pt;}
}




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