
    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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;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_b02957a2f3a68380540373a8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_0c0e640fc9c321f7a1f412eb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_4af7167214e4afa740333ee1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.871094;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_6f75c2da237d74e730f09854.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e744f16c638991643beddefd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_e9aed68a096042f3f967073e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.002930;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_c627e64db27d4e2e1bccf5ca.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_32da0842cf4309423a0ad23a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.002930;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_25f365fd747df04fdd25d9fc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.002930;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_c627e64db27d4e2e1bccf5ca.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5445436b5e4625c074a82ce4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.002930;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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_30b3f6c62dfa1b6022571d71.woff2')format("woff");}.fff{font-family:fff;line-height:0.882324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-30.240000px;}
.v1{vertical-align:-1.800000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:30.240000px;}
.v2{vertical-align:33.120000px;}
.ls1d{letter-spacing:-0.936000px;}
.ls5e{letter-spacing:-0.864000px;}
.ls1c{letter-spacing:-0.792000px;}
.ls1e{letter-spacing:-0.648000px;}
.ls23{letter-spacing:-0.576000px;}
.ls21{letter-spacing:-0.504000px;}
.ls20{letter-spacing:-0.360000px;}
.ls54{letter-spacing:-0.358560px;}
.ls4{letter-spacing:-0.336960px;}
.ls51{letter-spacing:-0.292320px;}
.ls2a{letter-spacing:-0.287280px;}
.ls52{letter-spacing:-0.272160px;}
.ls5{letter-spacing:-0.270000px;}
.lsa{letter-spacing:-0.252720px;}
.ls1{letter-spacing:-0.240480px;}
.ls53{letter-spacing:-0.239040px;}
.ls1f{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.168480px;}
.ls22{letter-spacing:-0.144000px;}
.ls2d{letter-spacing:-0.119520px;}
.ls9{letter-spacing:-0.084240px;}
.ls42{letter-spacing:-0.072000px;}
.lsf{letter-spacing:-0.065880px;}
.ls2c{letter-spacing:-0.059760px;}
.ls0{letter-spacing:0.000000px;}
.ls50{letter-spacing:0.048240px;}
.ls29{letter-spacing:0.059760px;}
.lsb{letter-spacing:0.063720px;}
.lsc{letter-spacing:0.065880px;}
.ls16{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.084240px;}
.ls7{letter-spacing:0.090000px;}
.ls10{letter-spacing:0.095760px;}
.lse{letter-spacing:0.120240px;}
.ls28{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.168480px;}
.ls30{letter-spacing:0.179280px;}
.ls6{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.197640px;}
.ls26{letter-spacing:0.216000px;}
.ls2b{letter-spacing:0.239760px;}
.ls3b{letter-spacing:0.287280px;}
.ls14{letter-spacing:0.288000px;}
.ls2f{letter-spacing:0.298800px;}
.ls4d{letter-spacing:0.302400px;}
.ls1b{letter-spacing:0.360000px;}
.ls17{letter-spacing:1.008000px;}
.ls27{letter-spacing:1.728000px;}
.ls32{letter-spacing:2.448000px;}
.ls3d{letter-spacing:3.168000px;}
.ls49{letter-spacing:3.888000px;}
.ls4a{letter-spacing:4.608000px;}
.ls34{letter-spacing:6.048000px;}
.ls33{letter-spacing:6.062400px;}
.ls43{letter-spacing:6.768000px;}
.ls3e{letter-spacing:7.488000px;}
.ls37{letter-spacing:8.208000px;}
.ls13{letter-spacing:8.928000px;}
.ls12{letter-spacing:9.648000px;}
.ls31{letter-spacing:10.368000px;}
.ls11{letter-spacing:11.088000px;}
.ls5f{letter-spacing:11.095200px;}
.ls18{letter-spacing:11.808000px;}
.ls39{letter-spacing:11.815200px;}
.ls24{letter-spacing:12.542400px;}
.ls40{letter-spacing:13.248000px;}
.ls44{letter-spacing:13.968000px;}
.ls4e{letter-spacing:14.688000px;}
.ls3a{letter-spacing:15.408000px;}
.ls35{letter-spacing:16.128000px;}
.ls15{letter-spacing:18.288000px;}
.ls41{letter-spacing:19.008000px;}
.ls5b{letter-spacing:19.015200px;}
.ls5a{letter-spacing:19.728000px;}
.ls25{letter-spacing:21.168000px;}
.ls4c{letter-spacing:21.888000px;}
.ls48{letter-spacing:23.328000px;}
.ls5c{letter-spacing:24.048000px;}
.ls5d{letter-spacing:24.768000px;}
.ls1a{letter-spacing:25.488000px;}
.ls46{letter-spacing:26.208000px;}
.ls4f{letter-spacing:26.928000px;}
.ls3f{letter-spacing:28.944000px;}
.ls58{letter-spacing:30.528000px;}
.ls4b{letter-spacing:32.544000px;}
.ls59{letter-spacing:33.264000px;}
.ls19{letter-spacing:34.128000px;}
.ls38{letter-spacing:34.704000px;}
.ls3c{letter-spacing:45.648000px;}
.ls56{letter-spacing:46.368000px;}
.ls57{letter-spacing:47.088000px;}
.ls47{letter-spacing:49.968000px;}
.ls55{letter-spacing:54.144000px;}
.ls45{letter-spacing:60.048000px;}
.ls2e{letter-spacing:410.551200px;}
.ls36{letter-spacing:849.029760px;}
.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;}
}
.ws57{word-spacing:-54.425520px;}
.ws17{word-spacing:-21.737520px;}
.ws56{word-spacing:-21.354480px;}
.ws1{word-spacing:-20.520000px;}
.ws2{word-spacing:-20.340000px;}
.ws0{word-spacing:-20.070000px;}
.ws3{word-spacing:-18.954000px;}
.ws11{word-spacing:-16.667640px;}
.ws1d{word-spacing:-16.632000px;}
.ws10{word-spacing:-16.535880px;}
.ws62{word-spacing:-16.488000px;}
.ws12{word-spacing:-16.470000px;}
.ws42{word-spacing:-16.416000px;}
.wsf{word-spacing:-16.404120px;}
.ws18{word-spacing:-16.344000px;}
.ws1c{word-spacing:-16.272000px;}
.ws6e{word-spacing:-16.200000px;}
.wsa6{word-spacing:-16.128000px;}
.ws19{word-spacing:-16.056000px;}
.ws1a{word-spacing:-15.912000px;}
.ws1b{word-spacing:-15.768000px;}
.ws41{word-spacing:-15.624000px;}
.ws1e{word-spacing:-15.480000px;}
.wse{word-spacing:-15.150240px;}
.ws5c{word-spacing:-13.804560px;}
.ws58{word-spacing:-13.565520px;}
.ws59{word-spacing:-13.446000px;}
.ws90{word-spacing:-10.950480px;}
.ws91{word-spacing:-9.145440px;}
.ws92{word-spacing:-8.514720px;}
.ws51{word-spacing:-0.792000px;}
.wsb{word-spacing:-0.505440px;}
.ws78{word-spacing:-0.504000px;}
.ws7{word-spacing:-0.421200px;}
.ws9{word-spacing:-0.360000px;}
.ws66{word-spacing:-0.287280px;}
.wsa{word-spacing:-0.270000px;}
.wsc{word-spacing:-0.252720px;}
.ws5{word-spacing:-0.240480px;}
.ws9d{word-spacing:-0.216000px;}
.ws14{word-spacing:-0.197640px;}
.ws8{word-spacing:-0.180000px;}
.ws6{word-spacing:-0.168480px;}
.ws72{word-spacing:-0.144000px;}
.ws15{word-spacing:-0.131760px;}
.ws2d{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.ws5a{word-spacing:0.059760px;}
.ws95{word-spacing:0.072000px;}
.ws5b{word-spacing:0.119520px;}
.ws13{word-spacing:0.131760px;}
.wsa5{word-spacing:0.132480px;}
.ws38{word-spacing:0.144000px;}
.ws2a{word-spacing:0.216000px;}
.ws5d{word-spacing:0.239040px;}
.wsd{word-spacing:0.252720px;}
.ws8e{word-spacing:0.360000px;}
.wsa3{word-spacing:0.418320px;}
.wsa4{word-spacing:0.537840px;}
.ws3a{word-spacing:0.576000px;}
.ws2f{word-spacing:0.648000px;}
.ws24{word-spacing:0.792000px;}
.wsb9{word-spacing:0.864000px;}
.ws2e{word-spacing:0.936000px;}
.ws9e{word-spacing:1.080000px;}
.ws27{word-spacing:1.368000px;}
.ws26{word-spacing:1.656000px;}
.ws99{word-spacing:2.088000px;}
.ws75{word-spacing:2.232000px;}
.ws8c{word-spacing:2.304000px;}
.ws3e{word-spacing:2.376000px;}
.wsb1{word-spacing:2.664000px;}
.ws16{word-spacing:2.701080px;}
.ws84{word-spacing:2.808000px;}
.ws50{word-spacing:3.096000px;}
.wsa1{word-spacing:3.528000px;}
.ws8a{word-spacing:3.744000px;}
.ws52{word-spacing:3.816000px;}
.wsb8{word-spacing:3.960000px;}
.ws4f{word-spacing:4.248000px;}
.ws39{word-spacing:4.536000px;}
.ws22{word-spacing:4.968000px;}
.wsa9{word-spacing:5.112000px;}
.ws3b{word-spacing:5.256000px;}
.ws48{word-spacing:5.688000px;}
.ws5f{word-spacing:5.976000px;}
.ws4c{word-spacing:6.408000px;}
.ws4d{word-spacing:6.624000px;}
.ws30{word-spacing:6.696000px;}
.ws61{word-spacing:6.840000px;}
.ws55{word-spacing:7.128000px;}
.wsbe{word-spacing:7.344000px;}
.ws4e{word-spacing:7.416000px;}
.ws77{word-spacing:7.560000px;}
.ws8f{word-spacing:7.848000px;}
.ws54{word-spacing:8.136000px;}
.ws25{word-spacing:8.568000px;}
.ws69{word-spacing:8.856000px;}
.ws8d{word-spacing:9.288000px;}
.ws7a{word-spacing:9.432000px;}
.ws23{word-spacing:9.576000px;}
.wsb7{word-spacing:9.720000px;}
.wsae{word-spacing:10.008000px;}
.ws5e{word-spacing:10.224000px;}
.ws21{word-spacing:10.296000px;}
.wsa2{word-spacing:10.338480px;}
.ws20{word-spacing:10.728000px;}
.wsaf{word-spacing:10.944000px;}
.ws1f{word-spacing:11.016000px;}
.ws29{word-spacing:11.448000px;}
.wsa8{word-spacing:11.736000px;}
.ws33{word-spacing:12.024000px;}
.ws6a{word-spacing:12.168000px;}
.ws44{word-spacing:12.456000px;}
.ws83{word-spacing:12.888000px;}
.ws45{word-spacing:13.176000px;}
.ws9f{word-spacing:13.320000px;}
.ws34{word-spacing:13.608000px;}
.ws35{word-spacing:13.896000px;}
.ws4a{word-spacing:14.328000px;}
.ws9a{word-spacing:14.544000px;}
.ws43{word-spacing:14.616000px;}
.ws9b{word-spacing:14.760000px;}
.ws60{word-spacing:15.048000px;}
.ws4b{word-spacing:15.336000px;}
.ws6b{word-spacing:15.768000px;}
.ws28{word-spacing:16.056000px;}
.ws63{word-spacing:16.183440px;}
.wsad{word-spacing:16.776000px;}
.ws76{word-spacing:17.208000px;}
.ws2c{word-spacing:17.496000px;}
.ws2b{word-spacing:17.928000px;}
.ws73{word-spacing:18.144000px;}
.ws79{word-spacing:18.216000px;}
.ws71{word-spacing:18.648000px;}
.ws7b{word-spacing:18.936000px;}
.wsbd{word-spacing:19.368000px;}
.wsa0{word-spacing:19.656000px;}
.ws93{word-spacing:20.088000px;}
.ws8b{word-spacing:20.376000px;}
.ws97{word-spacing:20.808000px;}
.ws94{word-spacing:21.096000px;}
.ws49{word-spacing:21.528000px;}
.ws36{word-spacing:21.816000px;}
.ws98{word-spacing:21.960000px;}
.ws47{word-spacing:22.248000px;}
.wsbb{word-spacing:22.464000px;}
.ws46{word-spacing:22.536000px;}
.wsba{word-spacing:22.968000px;}
.ws87{word-spacing:23.256000px;}
.wsb3{word-spacing:23.688000px;}
.wsb6{word-spacing:23.904000px;}
.wsb5{word-spacing:23.976000px;}
.ws40{word-spacing:24.408000px;}
.wsb4{word-spacing:24.696000px;}
.ws3f{word-spacing:25.416000px;}
.ws81{word-spacing:25.848000px;}
.ws6c{word-spacing:26.136000px;}
.ws6d{word-spacing:26.568000px;}
.ws82{word-spacing:26.856000px;}
.ws32{word-spacing:28.008000px;}
.ws37{word-spacing:29.448000px;}
.wsbc{word-spacing:29.736000px;}
.wsac{word-spacing:30.384000px;}
.wsab{word-spacing:30.456000px;}
.ws9c{word-spacing:31.176000px;}
.ws89{word-spacing:31.313520px;}
.wsb2{word-spacing:31.608000px;}
.wsb0{word-spacing:31.896000px;}
.ws7c{word-spacing:32.616000px;}
.ws3d{word-spacing:33.048000px;}
.ws74{word-spacing:33.768000px;}
.ws3c{word-spacing:34.056000px;}
.ws80{word-spacing:34.488000px;}
.ws7f{word-spacing:34.776000px;}
.ws68{word-spacing:35.208000px;}
.ws53{word-spacing:35.928000px;}
.ws67{word-spacing:36.216000px;}
.wsa7{word-spacing:37.656000px;}
.ws31{word-spacing:39.096000px;}
.ws65{word-spacing:43.570800px;}
.ws64{word-spacing:44.145360px;}
.ws6f{word-spacing:45.576000px;}
.ws70{word-spacing:46.008000px;}
.wsaa{word-spacing:47.016000px;}
.ws96{word-spacing:48.456000px;}
.ws86{word-spacing:49.176000px;}
.ws85{word-spacing:49.608000px;}
.ws7e{word-spacing:51.048000px;}
.ws88{word-spacing:54.391680px;}
.ws7d{word-spacing:59.976000px;}
._9{margin-left:-40.039920px;}
._14{margin-left:-11.989440px;}
._b{margin-left:-9.072000px;}
._a{margin-left:-4.103136px;}
._1{margin-left:-1.204632px;}
._0{width:1.046088px;}
._d{width:2.438352px;}
._f{width:3.576456px;}
._11{width:4.813056px;}
._7{width:6.019632px;}
._c{width:7.881912px;}
._2{width:9.825264px;}
._18{width:10.866528px;}
._4{width:11.875176px;}
._5{width:13.707792px;}
._12{width:14.729688px;}
._3{width:18.205056px;}
._15{width:19.329912px;}
._13{width:21.129264px;}
._16{width:22.957056px;}
._17{width:24.685056px;}
._10{width:25.992000px;}
._6{width:28.980216px;}
._e{width:33.964632px;}
._8{width:847.044216px;}
.fc3{color:rgb(31,73,125);}
.fc2{color:rgb(54,95,145);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:38.880000px;}
.fsc{font-size:41.760000px;}
.fsd{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fsa{font-size:59.760000px;}
.fs8{font-size:60.120000px;}
.fs7{font-size:63.000000px;}
.fs6{font-size:65.880000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs5{font-size:90.000000px;}
.fs2{font-size:95.760000px;}
.fs1{font-size:120.240000px;}
.fsb{font-size:239.760000px;}
.y0{bottom:0.000000px;}
.y41{bottom:14.040000px;}
.y9b{bottom:14.760000px;}
.y83{bottom:15.660000px;}
.y99{bottom:57.780000px;}
.y5e{bottom:77.040000px;}
.y98{bottom:77.398740px;}
.y40{bottom:79.380000px;}
.y9a{bottom:79.740000px;}
.y82{bottom:83.520000px;}
.y97{bottom:95.760000px;}
.y7e{bottom:96.480000px;}
.y96{bottom:112.865040px;}
.y3e{bottom:126.616590px;}
.y95{bottom:131.761440px;}
.y94{bottom:144.540000px;}
.y3d{bottom:146.150010px;}
.y7d{bottom:150.660000px;}
.y5d{bottom:155.700000px;}
.y19{bottom:159.120000px;}
.y100{bottom:166.140000px;}
.y3c{bottom:169.455060px;}
.y113{bottom:175.680000px;}
.yff{bottom:176.758740px;}
.yd6{bottom:178.380000px;}
.yf3{bottom:181.440000px;}
.y7c{bottom:183.600000px;}
.y18{bottom:183.960000px;}
.y3b{bottom:188.444970px;}
.y5c{bottom:188.640000px;}
.yc1{bottom:195.300000px;}
.y93{bottom:198.898920px;}
.yfe{bottom:202.680000px;}
.y17{bottom:205.920000px;}
.y3a{bottom:207.352530px;}
.yd5{bottom:211.320000px;}
.y101{bottom:214.020000px;}
.yf2{bottom:214.380000px;}
.y7b{bottom:216.540000px;}
.y5b{bottom:221.580000px;}
.y112{bottom:226.260000px;}
.y39{bottom:226.342440px;}
.y16{bottom:228.593520px;}
.ye1{bottom:238.500000px;}
.yd4{bottom:244.260000px;}
.y38{bottom:245.332350px;}
.yc0{bottom:246.240000px;}
.yf1{bottom:247.320000px;}
.y7a{bottom:249.480000px;}
.y111{bottom:253.440000px;}
.y12a{bottom:253.980000px;}
.y15{bottom:254.328840px;}
.y5a{bottom:254.520000px;}
.yfd{bottom:259.200000px;}
.y37{bottom:264.322260px;}
.yd3{bottom:277.200000px;}
.ybf{bottom:279.180000px;}
.y14{bottom:279.895680px;}
.yf0{bottom:280.260000px;}
.y79{bottom:282.420000px;}
.y36{bottom:283.312170px;}
.y59{bottom:287.640000px;}
.yfc{bottom:292.140000px;}
.ye0{bottom:295.200000px;}
.y35{bottom:302.302080px;}
.y110{bottom:304.380000px;}
.y129{bottom:304.920000px;}
.y13{bottom:305.631000px;}
.yd2{bottom:310.140000px;}
.ybe{bottom:312.300000px;}
.yef{bottom:313.200000px;}
.y78{bottom:315.540000px;}
.y92{bottom:317.700000px;}
.y58{bottom:320.580000px;}
.yfb{bottom:325.260000px;}
.ydf{bottom:328.140000px;}
.y12{bottom:331.197840px;}
.y10f{bottom:337.320000px;}
.y128{bottom:337.860000px;}
.yd1{bottom:343.260000px;}
.ybd{bottom:345.240000px;}
.yee{bottom:346.140000px;}
.y77{bottom:348.480000px;}
.y57{bottom:353.520000px;}
.y11{bottom:356.764680px;}
.yfa{bottom:358.200000px;}
.y34{bottom:360.540000px;}
.yde{bottom:361.260000px;}
.y10e{bottom:370.260000px;}
.y127{bottom:370.800000px;}
.yd0{bottom:376.200000px;}
.ybc{bottom:378.180000px;}
.yed{bottom:379.260000px;}
.y76{bottom:381.420000px;}
.y10{bottom:382.500000px;}
.y56{bottom:386.460000px;}
.yf9{bottom:391.140000px;}
.ydd{bottom:394.200000px;}
.y33{bottom:400.761000px;}
.y10d{bottom:403.200000px;}
.y126{bottom:403.740000px;}
.y91{bottom:408.780000px;}
.ycf{bottom:409.140000px;}
.ybb{bottom:411.120000px;}
.yec{bottom:412.200000px;}
.y75{bottom:414.360000px;}
.y55{bottom:419.400000px;}
.y32{bottom:420.295500px;}
.yf{bottom:423.540000px;}
.yf8{bottom:424.080000px;}
.ydc{bottom:427.140000px;}
.y10c{bottom:436.140000px;}
.y31{bottom:439.830000px;}
.yce{bottom:442.080000px;}
.yba{bottom:444.060000px;}
.yeb{bottom:445.140000px;}
.y74{bottom:447.300000px;}
.y54{bottom:452.340000px;}
.y125{bottom:454.680000px;}
.y30{bottom:459.270000px;}
.y90{bottom:459.900000px;}
.ydb{bottom:460.080000px;}
.ye{bottom:466.380000px;}
.ycd{bottom:475.020000px;}
.yb9{bottom:477.000000px;}
.yea{bottom:478.080000px;}
.y2f{bottom:479.250000px;}
.y73{bottom:480.240000px;}
.y53{bottom:485.280000px;}
.y124{bottom:487.620000px;}
.y10b{bottom:487.980000px;}
.yda{bottom:493.020000px;}
.y2e{bottom:499.230000px;}
.yd{bottom:507.600000px;}
.ycc{bottom:507.960000px;}
.y8f{bottom:510.840000px;}
.ye9{bottom:511.020000px;}
.y72{bottom:513.180000px;}
.y2d{bottom:518.220000px;}
.y123{bottom:520.560000px;}
.y10a{bottom:521.100000px;}
.yd9{bottom:525.960000px;}
.yb8{bottom:527.940000px;}
.y2c{bottom:537.746580px;}
.ycb{bottom:540.900000px;}
.ye8{bottom:543.960000px;}
.y71{bottom:546.120000px;}
.yc{bottom:549.900000px;}
.y52{bottom:551.160000px;}
.y122{bottom:553.680000px;}
.y109{bottom:554.040000px;}
.y2b{bottom:557.730000px;}
.yd8{bottom:558.900000px;}
.yb7{bottom:560.880000px;}
.y8e{bottom:561.780000px;}
.yca{bottom:573.840000px;}
.y2a{bottom:576.553500px;}
.ye7{bottom:576.900000px;}
.y70{bottom:579.060000px;}
.y51{bottom:584.100000px;}
.y121{bottom:586.620000px;}
.y108{bottom:586.980000px;}
.yd7{bottom:591.840000px;}
.yb{bottom:592.740000px;}
.yb6{bottom:593.820000px;}
.y29{bottom:596.083500px;}
.yf7{bottom:606.780000px;}
.ye6{bottom:609.840000px;}
.y6f{bottom:612.000000px;}
.y8d{bottom:612.720000px;}
.y50{bottom:617.220000px;}
.y120{bottom:619.560000px;}
.yc9{bottom:624.780000px;}
.yb5{bottom:626.760000px;}
.ya{bottom:635.040000px;}
.ya7{bottom:637.200000px;}
.y107{bottom:638.820000px;}
.yf6{bottom:639.900000px;}
.ye5{bottom:642.780000px;}
.y6e{bottom:645.120000px;}
.y28{bottom:649.176750px;}
.y4f{bottom:650.160000px;}
.y11f{bottom:652.500000px;}
.yc8{bottom:657.900000px;}
.yb4{bottom:659.880000px;}
.y9{bottom:663.484680px;}
.y8c{bottom:663.660000px;}
.y106{bottom:671.760000px;}
.yf5{bottom:672.840000px;}
.ya6{bottom:675.900000px;}
.y6d{bottom:678.060000px;}
.y4e{bottom:683.100000px;}
.y11e{bottom:685.440000px;}
.y8{bottom:689.217840px;}
.yc7{bottom:690.840000px;}
.yb3{bottom:692.820000px;}
.y27{bottom:700.474500px;}
.y105{bottom:704.700000px;}
.ya5{bottom:708.840000px;}
.y6c{bottom:711.000000px;}
.y8b{bottom:714.600000px;}
.y7{bottom:714.784680px;}
.y4d{bottom:716.040000px;}
.y11d{bottom:718.380000px;}
.y26{bottom:720.004500px;}
.yc6{bottom:723.780000px;}
.yb2{bottom:725.760000px;}
.y104{bottom:737.820000px;}
.y25{bottom:739.440000px;}
.y6{bottom:740.520000px;}
.ya4{bottom:741.780000px;}
.y6b{bottom:743.940000px;}
.y4c{bottom:748.980000px;}
.y11c{bottom:751.320000px;}
.yc5{bottom:756.720000px;}
.yb1{bottom:758.700000px;}
.y24{bottom:758.970000px;}
.y8a{bottom:765.540000px;}
.y103{bottom:770.760000px;}
.ya3{bottom:774.720000px;}
.y6a{bottom:776.880000px;}
.y5{bottom:781.560000px;}
.y11b{bottom:784.260000px;}
.yc4{bottom:789.660000px;}
.y4b{bottom:790.920000px;}
.yb0{bottom:791.640000px;}
.y23{bottom:797.391090px;}
.ya2{bottom:807.660000px;}
.y69{bottom:809.820000px;}
.y89{bottom:816.480000px;}
.y11a{bottom:817.200000px;}
.yc3{bottom:822.600000px;}
.yaf{bottom:824.580000px;}
.y4{bottom:830.880000px;}
.y4a{bottom:832.860000px;}
.y22{bottom:835.552080px;}
.ya1{bottom:840.600000px;}
.y68{bottom:842.760000px;}
.y119{bottom:850.320000px;}
.yc2{bottom:855.540000px;}
.yae{bottom:857.520000px;}
.y49{bottom:865.800000px;}
.y88{bottom:867.420000px;}
.y3{bottom:873.540000px;}
.y21{bottom:873.713070px;}
.y67{bottom:875.700000px;}
.y118{bottom:883.260000px;}
.yf4{bottom:888.480000px;}
.yad{bottom:890.460000px;}
.y48{bottom:898.740000px;}
.y2{bottom:900.720000px;}
.ya0{bottom:906.480000px;}
.y66{bottom:908.640000px;}
.y20{bottom:911.874060px;}
.y117{bottom:916.200000px;}
.y87{bottom:918.360000px;}
.y102{bottom:921.420000px;}
.yac{bottom:923.400000px;}
.y47{bottom:931.860000px;}
.y9f{bottom:939.420000px;}
.y65{bottom:941.760000px;}
.y116{bottom:949.140000px;}
.y1f{bottom:950.035050px;}
.yab{bottom:956.520000px;}
.y46{bottom:964.800000px;}
.y86{bottom:969.480000px;}
.y9e{bottom:972.360000px;}
.y64{bottom:974.700000px;}
.ye4{bottom:977.740200px;}
.y115{bottom:982.080000px;}
.y1e{bottom:988.196040px;}
.y45{bottom:997.740000px;}
.y9d{bottom:1005.480000px;}
.yaa{bottom:1007.079120px;}
.y63{bottom:1007.640000px;}
.y114{bottom:1015.020000px;}
.y85{bottom:1020.420000px;}
.ye3{bottom:1021.670100px;}
.y1d{bottom:1026.357030px;}
.y44{bottom:1030.680000px;}
.ya9{bottom:1036.429560px;}
.y9c{bottom:1038.420000px;}
.y62{bottom:1040.580000px;}
.y1c{bottom:1064.518020px;}
.ye2{bottom:1065.600000px;}
.ya8{bottom:1065.780000px;}
.y84{bottom:1071.360000px;}
.y43{bottom:1072.620000px;}
.y61{bottom:1073.520000px;}
.y81{bottom:1093.146480px;}
.y1b{bottom:1102.679010px;}
.y60{bottom:1106.460000px;}
.y80{bottom:1113.300000px;}
.y42{bottom:1133.460000px;}
.y5f{bottom:1139.400000px;}
.y1{bottom:1139.760000px;}
.y1a{bottom:1140.840000px;}
.y7f{bottom:1149.660000px;}
.y3f{bottom:1194.300000px;}
.h1e{height:32.064609px;}
.h18{height:34.439766px;}
.h19{height:37.440000px;}
.h15{height:38.520000px;}
.h11{height:42.480000px;}
.ha{height:43.909277px;}
.h14{height:49.284492px;}
.h9{height:49.886719px;}
.hf{height:52.998047px;}
.h10{height:54.628594px;}
.h8{height:58.367461px;}
.h13{height:59.378906px;}
.hb{height:61.831055px;}
.hc{height:62.857617px;}
.he{height:64.657617px;}
.hd{height:64.671297px;}
.h1d{height:64.679766px;}
.h5{height:69.473320px;}
.h6{height:69.481960px;}
.h2{height:70.628906px;}
.h1c{height:72.903867px;}
.h7{height:74.223633px;}
.h1b{height:75.093750px;}
.h4{height:78.973945px;}
.h12{height:80.140430px;}
.h3{height:99.162773px;}
.h1a{height:99.874688px;}
.h17{height:197.731758px;}
.h16{height:250.062187px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:95.760000px;}
.w4{width:119.700000px;}
.w2{width:177.480000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:10.800000px;}
.x20{left:37.620000px;}
.x22{left:101.700000px;}
.x1c{left:106.380000px;}
.x6{left:127.626840px;}
.x1e{left:133.200000px;}
.x14{left:145.620900px;}
.x18{left:148.860000px;}
.x1{left:154.440000px;}
.xa{left:157.320000px;}
.x26{left:159.480000px;}
.x7{left:167.051160px;}
.x1b{left:170.280000px;}
.x16{left:175.680000px;}
.x5{left:186.300000px;}
.x2a{left:187.380000px;}
.xb{left:192.600000px;}
.x19{left:201.960000px;}
.x1a{left:212.760000px;}
.x27{left:229.320000px;}
.x28{left:257.040000px;}
.xd{left:274.508280px;}
.x29{left:283.860000px;}
.x3{left:292.860000px;}
.x15{left:309.870000px;}
.x8{left:320.213160px;}
.xc{left:341.100000px;}
.x11{left:343.079640px;}
.x10{left:348.302520px;}
.x21{left:354.600000px;}
.x13{left:370.532250px;}
.x9{left:381.420000px;}
.x12{left:397.980000px;}
.xf{left:403.921980px;}
.x1d{left:438.660000px;}
.xe{left:446.400000px;}
.x4{left:459.900000px;}
.x25{left:557.273520px;}
.x2{left:584.820000px;}
.x17{left:608.760000px;}
.x1f{left:712.620000px;}
.x24{left:744.120000px;}
@media print{
.v4{vertical-align:-26.880000pt;}
.v1{vertical-align:-1.600000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:26.880000pt;}
.v2{vertical-align:29.440000pt;}
.ls1d{letter-spacing:-0.832000pt;}
.ls5e{letter-spacing:-0.768000pt;}
.ls1c{letter-spacing:-0.704000pt;}
.ls1e{letter-spacing:-0.576000pt;}
.ls23{letter-spacing:-0.512000pt;}
.ls21{letter-spacing:-0.448000pt;}
.ls20{letter-spacing:-0.320000pt;}
.ls54{letter-spacing:-0.318720pt;}
.ls4{letter-spacing:-0.299520pt;}
.ls51{letter-spacing:-0.259840pt;}
.ls2a{letter-spacing:-0.255360pt;}
.ls52{letter-spacing:-0.241920pt;}
.ls5{letter-spacing:-0.240000pt;}
.lsa{letter-spacing:-0.224640pt;}
.ls1{letter-spacing:-0.213760pt;}
.ls53{letter-spacing:-0.212480pt;}
.ls1f{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.149760pt;}
.ls22{letter-spacing:-0.128000pt;}
.ls2d{letter-spacing:-0.106240pt;}
.ls9{letter-spacing:-0.074880pt;}
.ls42{letter-spacing:-0.064000pt;}
.lsf{letter-spacing:-0.058560pt;}
.ls2c{letter-spacing:-0.053120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls50{letter-spacing:0.042880pt;}
.ls29{letter-spacing:0.053120pt;}
.lsb{letter-spacing:0.056640pt;}
.lsc{letter-spacing:0.058560pt;}
.ls16{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.074880pt;}
.ls7{letter-spacing:0.080000pt;}
.ls10{letter-spacing:0.085120pt;}
.lse{letter-spacing:0.106880pt;}
.ls28{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.149760pt;}
.ls30{letter-spacing:0.159360pt;}
.ls6{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.175680pt;}
.ls26{letter-spacing:0.192000pt;}
.ls2b{letter-spacing:0.213120pt;}
.ls3b{letter-spacing:0.255360pt;}
.ls14{letter-spacing:0.256000pt;}
.ls2f{letter-spacing:0.265600pt;}
.ls4d{letter-spacing:0.268800pt;}
.ls1b{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.896000pt;}
.ls27{letter-spacing:1.536000pt;}
.ls32{letter-spacing:2.176000pt;}
.ls3d{letter-spacing:2.816000pt;}
.ls49{letter-spacing:3.456000pt;}
.ls4a{letter-spacing:4.096000pt;}
.ls34{letter-spacing:5.376000pt;}
.ls33{letter-spacing:5.388800pt;}
.ls43{letter-spacing:6.016000pt;}
.ls3e{letter-spacing:6.656000pt;}
.ls37{letter-spacing:7.296000pt;}
.ls13{letter-spacing:7.936000pt;}
.ls12{letter-spacing:8.576000pt;}
.ls31{letter-spacing:9.216000pt;}
.ls11{letter-spacing:9.856000pt;}
.ls5f{letter-spacing:9.862400pt;}
.ls18{letter-spacing:10.496000pt;}
.ls39{letter-spacing:10.502400pt;}
.ls24{letter-spacing:11.148800pt;}
.ls40{letter-spacing:11.776000pt;}
.ls44{letter-spacing:12.416000pt;}
.ls4e{letter-spacing:13.056000pt;}
.ls3a{letter-spacing:13.696000pt;}
.ls35{letter-spacing:14.336000pt;}
.ls15{letter-spacing:16.256000pt;}
.ls41{letter-spacing:16.896000pt;}
.ls5b{letter-spacing:16.902400pt;}
.ls5a{letter-spacing:17.536000pt;}
.ls25{letter-spacing:18.816000pt;}
.ls4c{letter-spacing:19.456000pt;}
.ls48{letter-spacing:20.736000pt;}
.ls5c{letter-spacing:21.376000pt;}
.ls5d{letter-spacing:22.016000pt;}
.ls1a{letter-spacing:22.656000pt;}
.ls46{letter-spacing:23.296000pt;}
.ls4f{letter-spacing:23.936000pt;}
.ls3f{letter-spacing:25.728000pt;}
.ls58{letter-spacing:27.136000pt;}
.ls4b{letter-spacing:28.928000pt;}
.ls59{letter-spacing:29.568000pt;}
.ls19{letter-spacing:30.336000pt;}
.ls38{letter-spacing:30.848000pt;}
.ls3c{letter-spacing:40.576000pt;}
.ls56{letter-spacing:41.216000pt;}
.ls57{letter-spacing:41.856000pt;}
.ls47{letter-spacing:44.416000pt;}
.ls55{letter-spacing:48.128000pt;}
.ls45{letter-spacing:53.376000pt;}
.ls2e{letter-spacing:364.934400pt;}
.ls36{letter-spacing:754.693120pt;}
.ws57{word-spacing:-48.378240pt;}
.ws17{word-spacing:-19.322240pt;}
.ws56{word-spacing:-18.981760pt;}
.ws1{word-spacing:-18.240000pt;}
.ws2{word-spacing:-18.080000pt;}
.ws0{word-spacing:-17.840000pt;}
.ws3{word-spacing:-16.848000pt;}
.ws11{word-spacing:-14.815680pt;}
.ws1d{word-spacing:-14.784000pt;}
.ws10{word-spacing:-14.698560pt;}
.ws62{word-spacing:-14.656000pt;}
.ws12{word-spacing:-14.640000pt;}
.ws42{word-spacing:-14.592000pt;}
.wsf{word-spacing:-14.581440pt;}
.ws18{word-spacing:-14.528000pt;}
.ws1c{word-spacing:-14.464000pt;}
.ws6e{word-spacing:-14.400000pt;}
.wsa6{word-spacing:-14.336000pt;}
.ws19{word-spacing:-14.272000pt;}
.ws1a{word-spacing:-14.144000pt;}
.ws1b{word-spacing:-14.016000pt;}
.ws41{word-spacing:-13.888000pt;}
.ws1e{word-spacing:-13.760000pt;}
.wse{word-spacing:-13.466880pt;}
.ws5c{word-spacing:-12.270720pt;}
.ws58{word-spacing:-12.058240pt;}
.ws59{word-spacing:-11.952000pt;}
.ws90{word-spacing:-9.733760pt;}
.ws91{word-spacing:-8.129280pt;}
.ws92{word-spacing:-7.568640pt;}
.ws51{word-spacing:-0.704000pt;}
.wsb{word-spacing:-0.449280pt;}
.ws78{word-spacing:-0.448000pt;}
.ws7{word-spacing:-0.374400pt;}
.ws9{word-spacing:-0.320000pt;}
.ws66{word-spacing:-0.255360pt;}
.wsa{word-spacing:-0.240000pt;}
.wsc{word-spacing:-0.224640pt;}
.ws5{word-spacing:-0.213760pt;}
.ws9d{word-spacing:-0.192000pt;}
.ws14{word-spacing:-0.175680pt;}
.ws8{word-spacing:-0.160000pt;}
.ws6{word-spacing:-0.149760pt;}
.ws72{word-spacing:-0.128000pt;}
.ws15{word-spacing:-0.117120pt;}
.ws2d{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.ws5a{word-spacing:0.053120pt;}
.ws95{word-spacing:0.064000pt;}
.ws5b{word-spacing:0.106240pt;}
.ws13{word-spacing:0.117120pt;}
.wsa5{word-spacing:0.117760pt;}
.ws38{word-spacing:0.128000pt;}
.ws2a{word-spacing:0.192000pt;}
.ws5d{word-spacing:0.212480pt;}
.wsd{word-spacing:0.224640pt;}
.ws8e{word-spacing:0.320000pt;}
.wsa3{word-spacing:0.371840pt;}
.wsa4{word-spacing:0.478080pt;}
.ws3a{word-spacing:0.512000pt;}
.ws2f{word-spacing:0.576000pt;}
.ws24{word-spacing:0.704000pt;}
.wsb9{word-spacing:0.768000pt;}
.ws2e{word-spacing:0.832000pt;}
.ws9e{word-spacing:0.960000pt;}
.ws27{word-spacing:1.216000pt;}
.ws26{word-spacing:1.472000pt;}
.ws99{word-spacing:1.856000pt;}
.ws75{word-spacing:1.984000pt;}
.ws8c{word-spacing:2.048000pt;}
.ws3e{word-spacing:2.112000pt;}
.wsb1{word-spacing:2.368000pt;}
.ws16{word-spacing:2.400960pt;}
.ws84{word-spacing:2.496000pt;}
.ws50{word-spacing:2.752000pt;}
.wsa1{word-spacing:3.136000pt;}
.ws8a{word-spacing:3.328000pt;}
.ws52{word-spacing:3.392000pt;}
.wsb8{word-spacing:3.520000pt;}
.ws4f{word-spacing:3.776000pt;}
.ws39{word-spacing:4.032000pt;}
.ws22{word-spacing:4.416000pt;}
.wsa9{word-spacing:4.544000pt;}
.ws3b{word-spacing:4.672000pt;}
.ws48{word-spacing:5.056000pt;}
.ws5f{word-spacing:5.312000pt;}
.ws4c{word-spacing:5.696000pt;}
.ws4d{word-spacing:5.888000pt;}
.ws30{word-spacing:5.952000pt;}
.ws61{word-spacing:6.080000pt;}
.ws55{word-spacing:6.336000pt;}
.wsbe{word-spacing:6.528000pt;}
.ws4e{word-spacing:6.592000pt;}
.ws77{word-spacing:6.720000pt;}
.ws8f{word-spacing:6.976000pt;}
.ws54{word-spacing:7.232000pt;}
.ws25{word-spacing:7.616000pt;}
.ws69{word-spacing:7.872000pt;}
.ws8d{word-spacing:8.256000pt;}
.ws7a{word-spacing:8.384000pt;}
.ws23{word-spacing:8.512000pt;}
.wsb7{word-spacing:8.640000pt;}
.wsae{word-spacing:8.896000pt;}
.ws5e{word-spacing:9.088000pt;}
.ws21{word-spacing:9.152000pt;}
.wsa2{word-spacing:9.189760pt;}
.ws20{word-spacing:9.536000pt;}
.wsaf{word-spacing:9.728000pt;}
.ws1f{word-spacing:9.792000pt;}
.ws29{word-spacing:10.176000pt;}
.wsa8{word-spacing:10.432000pt;}
.ws33{word-spacing:10.688000pt;}
.ws6a{word-spacing:10.816000pt;}
.ws44{word-spacing:11.072000pt;}
.ws83{word-spacing:11.456000pt;}
.ws45{word-spacing:11.712000pt;}
.ws9f{word-spacing:11.840000pt;}
.ws34{word-spacing:12.096000pt;}
.ws35{word-spacing:12.352000pt;}
.ws4a{word-spacing:12.736000pt;}
.ws9a{word-spacing:12.928000pt;}
.ws43{word-spacing:12.992000pt;}
.ws9b{word-spacing:13.120000pt;}
.ws60{word-spacing:13.376000pt;}
.ws4b{word-spacing:13.632000pt;}
.ws6b{word-spacing:14.016000pt;}
.ws28{word-spacing:14.272000pt;}
.ws63{word-spacing:14.385280pt;}
.wsad{word-spacing:14.912000pt;}
.ws76{word-spacing:15.296000pt;}
.ws2c{word-spacing:15.552000pt;}
.ws2b{word-spacing:15.936000pt;}
.ws73{word-spacing:16.128000pt;}
.ws79{word-spacing:16.192000pt;}
.ws71{word-spacing:16.576000pt;}
.ws7b{word-spacing:16.832000pt;}
.wsbd{word-spacing:17.216000pt;}
.wsa0{word-spacing:17.472000pt;}
.ws93{word-spacing:17.856000pt;}
.ws8b{word-spacing:18.112000pt;}
.ws97{word-spacing:18.496000pt;}
.ws94{word-spacing:18.752000pt;}
.ws49{word-spacing:19.136000pt;}
.ws36{word-spacing:19.392000pt;}
.ws98{word-spacing:19.520000pt;}
.ws47{word-spacing:19.776000pt;}
.wsbb{word-spacing:19.968000pt;}
.ws46{word-spacing:20.032000pt;}
.wsba{word-spacing:20.416000pt;}
.ws87{word-spacing:20.672000pt;}
.wsb3{word-spacing:21.056000pt;}
.wsb6{word-spacing:21.248000pt;}
.wsb5{word-spacing:21.312000pt;}
.ws40{word-spacing:21.696000pt;}
.wsb4{word-spacing:21.952000pt;}
.ws3f{word-spacing:22.592000pt;}
.ws81{word-spacing:22.976000pt;}
.ws6c{word-spacing:23.232000pt;}
.ws6d{word-spacing:23.616000pt;}
.ws82{word-spacing:23.872000pt;}
.ws32{word-spacing:24.896000pt;}
.ws37{word-spacing:26.176000pt;}
.wsbc{word-spacing:26.432000pt;}
.wsac{word-spacing:27.008000pt;}
.wsab{word-spacing:27.072000pt;}
.ws9c{word-spacing:27.712000pt;}
.ws89{word-spacing:27.834240pt;}
.wsb2{word-spacing:28.096000pt;}
.wsb0{word-spacing:28.352000pt;}
.ws7c{word-spacing:28.992000pt;}
.ws3d{word-spacing:29.376000pt;}
.ws74{word-spacing:30.016000pt;}
.ws3c{word-spacing:30.272000pt;}
.ws80{word-spacing:30.656000pt;}
.ws7f{word-spacing:30.912000pt;}
.ws68{word-spacing:31.296000pt;}
.ws53{word-spacing:31.936000pt;}
.ws67{word-spacing:32.192000pt;}
.wsa7{word-spacing:33.472000pt;}
.ws31{word-spacing:34.752000pt;}
.ws65{word-spacing:38.729600pt;}
.ws64{word-spacing:39.240320pt;}
.ws6f{word-spacing:40.512000pt;}
.ws70{word-spacing:40.896000pt;}
.wsaa{word-spacing:41.792000pt;}
.ws96{word-spacing:43.072000pt;}
.ws86{word-spacing:43.712000pt;}
.ws85{word-spacing:44.096000pt;}
.ws7e{word-spacing:45.376000pt;}
.ws88{word-spacing:48.348160pt;}
.ws7d{word-spacing:53.312000pt;}
._9{margin-left:-35.591040pt;}
._14{margin-left:-10.657280pt;}
._b{margin-left:-8.064000pt;}
._a{margin-left:-3.647232pt;}
._1{margin-left:-1.070784pt;}
._0{width:0.929856pt;}
._d{width:2.167424pt;}
._f{width:3.179072pt;}
._11{width:4.278272pt;}
._7{width:5.350784pt;}
._c{width:7.006144pt;}
._2{width:8.733568pt;}
._18{width:9.659136pt;}
._4{width:10.555712pt;}
._5{width:12.184704pt;}
._12{width:13.093056pt;}
._3{width:16.182272pt;}
._15{width:17.182144pt;}
._13{width:18.781568pt;}
._16{width:20.406272pt;}
._17{width:21.942272pt;}
._10{width:23.104000pt;}
._6{width:25.760192pt;}
._e{width:30.190784pt;}
._8{width:752.928192pt;}
.fse{font-size:34.560000pt;}
.fsc{font-size:37.120000pt;}
.fsd{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fsa{font-size:53.120000pt;}
.fs8{font-size:53.440000pt;}
.fs7{font-size:56.000000pt;}
.fs6{font-size:58.560000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs5{font-size:80.000000pt;}
.fs2{font-size:85.120000pt;}
.fs1{font-size:106.880000pt;}
.fsb{font-size:213.120000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:12.480000pt;}
.y9b{bottom:13.120000pt;}
.y83{bottom:13.920000pt;}
.y99{bottom:51.360000pt;}
.y5e{bottom:68.480000pt;}
.y98{bottom:68.798880pt;}
.y40{bottom:70.560000pt;}
.y9a{bottom:70.880000pt;}
.y82{bottom:74.240000pt;}
.y97{bottom:85.120000pt;}
.y7e{bottom:85.760000pt;}
.y96{bottom:100.324480pt;}
.y3e{bottom:112.548080pt;}
.y95{bottom:117.121280pt;}
.y94{bottom:128.480000pt;}
.y3d{bottom:129.911120pt;}
.y7d{bottom:133.920000pt;}
.y5d{bottom:138.400000pt;}
.y19{bottom:141.440000pt;}
.y100{bottom:147.680000pt;}
.y3c{bottom:150.626720pt;}
.y113{bottom:156.160000pt;}
.yff{bottom:157.118880pt;}
.yd6{bottom:158.560000pt;}
.yf3{bottom:161.280000pt;}
.y7c{bottom:163.200000pt;}
.y18{bottom:163.520000pt;}
.y3b{bottom:167.506640pt;}
.y5c{bottom:167.680000pt;}
.yc1{bottom:173.600000pt;}
.y93{bottom:176.799040pt;}
.yfe{bottom:180.160000pt;}
.y17{bottom:183.040000pt;}
.y3a{bottom:184.313360pt;}
.yd5{bottom:187.840000pt;}
.y101{bottom:190.240000pt;}
.yf2{bottom:190.560000pt;}
.y7b{bottom:192.480000pt;}
.y5b{bottom:196.960000pt;}
.y112{bottom:201.120000pt;}
.y39{bottom:201.193280pt;}
.y16{bottom:203.194240pt;}
.ye1{bottom:212.000000pt;}
.yd4{bottom:217.120000pt;}
.y38{bottom:218.073200pt;}
.yc0{bottom:218.880000pt;}
.yf1{bottom:219.840000pt;}
.y7a{bottom:221.760000pt;}
.y111{bottom:225.280000pt;}
.y12a{bottom:225.760000pt;}
.y15{bottom:226.070080pt;}
.y5a{bottom:226.240000pt;}
.yfd{bottom:230.400000pt;}
.y37{bottom:234.953120pt;}
.yd3{bottom:246.400000pt;}
.ybf{bottom:248.160000pt;}
.y14{bottom:248.796160pt;}
.yf0{bottom:249.120000pt;}
.y79{bottom:251.040000pt;}
.y36{bottom:251.833040pt;}
.y59{bottom:255.680000pt;}
.yfc{bottom:259.680000pt;}
.ye0{bottom:262.400000pt;}
.y35{bottom:268.712960pt;}
.y110{bottom:270.560000pt;}
.y129{bottom:271.040000pt;}
.y13{bottom:271.672000pt;}
.yd2{bottom:275.680000pt;}
.ybe{bottom:277.600000pt;}
.yef{bottom:278.400000pt;}
.y78{bottom:280.480000pt;}
.y92{bottom:282.400000pt;}
.y58{bottom:284.960000pt;}
.yfb{bottom:289.120000pt;}
.ydf{bottom:291.680000pt;}
.y12{bottom:294.398080pt;}
.y10f{bottom:299.840000pt;}
.y128{bottom:300.320000pt;}
.yd1{bottom:305.120000pt;}
.ybd{bottom:306.880000pt;}
.yee{bottom:307.680000pt;}
.y77{bottom:309.760000pt;}
.y57{bottom:314.240000pt;}
.y11{bottom:317.124160pt;}
.yfa{bottom:318.400000pt;}
.y34{bottom:320.480000pt;}
.yde{bottom:321.120000pt;}
.y10e{bottom:329.120000pt;}
.y127{bottom:329.600000pt;}
.yd0{bottom:334.400000pt;}
.ybc{bottom:336.160000pt;}
.yed{bottom:337.120000pt;}
.y76{bottom:339.040000pt;}
.y10{bottom:340.000000pt;}
.y56{bottom:343.520000pt;}
.yf9{bottom:347.680000pt;}
.ydd{bottom:350.400000pt;}
.y33{bottom:356.232000pt;}
.y10d{bottom:358.400000pt;}
.y126{bottom:358.880000pt;}
.y91{bottom:363.360000pt;}
.ycf{bottom:363.680000pt;}
.ybb{bottom:365.440000pt;}
.yec{bottom:366.400000pt;}
.y75{bottom:368.320000pt;}
.y55{bottom:372.800000pt;}
.y32{bottom:373.596000pt;}
.yf{bottom:376.480000pt;}
.yf8{bottom:376.960000pt;}
.ydc{bottom:379.680000pt;}
.y10c{bottom:387.680000pt;}
.y31{bottom:390.960000pt;}
.yce{bottom:392.960000pt;}
.yba{bottom:394.720000pt;}
.yeb{bottom:395.680000pt;}
.y74{bottom:397.600000pt;}
.y54{bottom:402.080000pt;}
.y125{bottom:404.160000pt;}
.y30{bottom:408.240000pt;}
.y90{bottom:408.800000pt;}
.ydb{bottom:408.960000pt;}
.ye{bottom:414.560000pt;}
.ycd{bottom:422.240000pt;}
.yb9{bottom:424.000000pt;}
.yea{bottom:424.960000pt;}
.y2f{bottom:426.000000pt;}
.y73{bottom:426.880000pt;}
.y53{bottom:431.360000pt;}
.y124{bottom:433.440000pt;}
.y10b{bottom:433.760000pt;}
.yda{bottom:438.240000pt;}
.y2e{bottom:443.760000pt;}
.yd{bottom:451.200000pt;}
.ycc{bottom:451.520000pt;}
.y8f{bottom:454.080000pt;}
.ye9{bottom:454.240000pt;}
.y72{bottom:456.160000pt;}
.y2d{bottom:460.640000pt;}
.y123{bottom:462.720000pt;}
.y10a{bottom:463.200000pt;}
.yd9{bottom:467.520000pt;}
.yb8{bottom:469.280000pt;}
.y2c{bottom:477.996960pt;}
.ycb{bottom:480.800000pt;}
.ye8{bottom:483.520000pt;}
.y71{bottom:485.440000pt;}
.yc{bottom:488.800000pt;}
.y52{bottom:489.920000pt;}
.y122{bottom:492.160000pt;}
.y109{bottom:492.480000pt;}
.y2b{bottom:495.760000pt;}
.yd8{bottom:496.800000pt;}
.yb7{bottom:498.560000pt;}
.y8e{bottom:499.360000pt;}
.yca{bottom:510.080000pt;}
.y2a{bottom:512.492000pt;}
.ye7{bottom:512.800000pt;}
.y70{bottom:514.720000pt;}
.y51{bottom:519.200000pt;}
.y121{bottom:521.440000pt;}
.y108{bottom:521.760000pt;}
.yd7{bottom:526.080000pt;}
.yb{bottom:526.880000pt;}
.yb6{bottom:527.840000pt;}
.y29{bottom:529.852000pt;}
.yf7{bottom:539.360000pt;}
.ye6{bottom:542.080000pt;}
.y6f{bottom:544.000000pt;}
.y8d{bottom:544.640000pt;}
.y50{bottom:548.640000pt;}
.y120{bottom:550.720000pt;}
.yc9{bottom:555.360000pt;}
.yb5{bottom:557.120000pt;}
.ya{bottom:564.480000pt;}
.ya7{bottom:566.400000pt;}
.y107{bottom:567.840000pt;}
.yf6{bottom:568.800000pt;}
.ye5{bottom:571.360000pt;}
.y6e{bottom:573.440000pt;}
.y28{bottom:577.046000pt;}
.y4f{bottom:577.920000pt;}
.y11f{bottom:580.000000pt;}
.yc8{bottom:584.800000pt;}
.yb4{bottom:586.560000pt;}
.y9{bottom:589.764160pt;}
.y8c{bottom:589.920000pt;}
.y106{bottom:597.120000pt;}
.yf5{bottom:598.080000pt;}
.ya6{bottom:600.800000pt;}
.y6d{bottom:602.720000pt;}
.y4e{bottom:607.200000pt;}
.y11e{bottom:609.280000pt;}
.y8{bottom:612.638080pt;}
.yc7{bottom:614.080000pt;}
.yb3{bottom:615.840000pt;}
.y27{bottom:622.644000pt;}
.y105{bottom:626.400000pt;}
.ya5{bottom:630.080000pt;}
.y6c{bottom:632.000000pt;}
.y8b{bottom:635.200000pt;}
.y7{bottom:635.364160pt;}
.y4d{bottom:636.480000pt;}
.y11d{bottom:638.560000pt;}
.y26{bottom:640.004000pt;}
.yc6{bottom:643.360000pt;}
.yb2{bottom:645.120000pt;}
.y104{bottom:655.840000pt;}
.y25{bottom:657.280000pt;}
.y6{bottom:658.240000pt;}
.ya4{bottom:659.360000pt;}
.y6b{bottom:661.280000pt;}
.y4c{bottom:665.760000pt;}
.y11c{bottom:667.840000pt;}
.yc5{bottom:672.640000pt;}
.yb1{bottom:674.400000pt;}
.y24{bottom:674.640000pt;}
.y8a{bottom:680.480000pt;}
.y103{bottom:685.120000pt;}
.ya3{bottom:688.640000pt;}
.y6a{bottom:690.560000pt;}
.y5{bottom:694.720000pt;}
.y11b{bottom:697.120000pt;}
.yc4{bottom:701.920000pt;}
.y4b{bottom:703.040000pt;}
.yb0{bottom:703.680000pt;}
.y23{bottom:708.792080pt;}
.ya2{bottom:717.920000pt;}
.y69{bottom:719.840000pt;}
.y89{bottom:725.760000pt;}
.y11a{bottom:726.400000pt;}
.yc3{bottom:731.200000pt;}
.yaf{bottom:732.960000pt;}
.y4{bottom:738.560000pt;}
.y4a{bottom:740.320000pt;}
.y22{bottom:742.712960pt;}
.ya1{bottom:747.200000pt;}
.y68{bottom:749.120000pt;}
.y119{bottom:755.840000pt;}
.yc2{bottom:760.480000pt;}
.yae{bottom:762.240000pt;}
.y49{bottom:769.600000pt;}
.y88{bottom:771.040000pt;}
.y3{bottom:776.480000pt;}
.y21{bottom:776.633840pt;}
.y67{bottom:778.400000pt;}
.y118{bottom:785.120000pt;}
.yf4{bottom:789.760000pt;}
.yad{bottom:791.520000pt;}
.y48{bottom:798.880000pt;}
.y2{bottom:800.640000pt;}
.ya0{bottom:805.760000pt;}
.y66{bottom:807.680000pt;}
.y20{bottom:810.554720pt;}
.y117{bottom:814.400000pt;}
.y87{bottom:816.320000pt;}
.y102{bottom:819.040000pt;}
.yac{bottom:820.800000pt;}
.y47{bottom:828.320000pt;}
.y9f{bottom:835.040000pt;}
.y65{bottom:837.120000pt;}
.y116{bottom:843.680000pt;}
.y1f{bottom:844.475600pt;}
.yab{bottom:850.240000pt;}
.y46{bottom:857.600000pt;}
.y86{bottom:861.760000pt;}
.y9e{bottom:864.320000pt;}
.y64{bottom:866.400000pt;}
.ye4{bottom:869.102400pt;}
.y115{bottom:872.960000pt;}
.y1e{bottom:878.396480pt;}
.y45{bottom:886.880000pt;}
.y9d{bottom:893.760000pt;}
.yaa{bottom:895.181440pt;}
.y63{bottom:895.680000pt;}
.y114{bottom:902.240000pt;}
.y85{bottom:907.040000pt;}
.ye3{bottom:908.151200pt;}
.y1d{bottom:912.317360pt;}
.y44{bottom:916.160000pt;}
.ya9{bottom:921.270720pt;}
.y9c{bottom:923.040000pt;}
.y62{bottom:924.960000pt;}
.y1c{bottom:946.238240pt;}
.ye2{bottom:947.200000pt;}
.ya8{bottom:947.360000pt;}
.y84{bottom:952.320000pt;}
.y43{bottom:953.440000pt;}
.y61{bottom:954.240000pt;}
.y81{bottom:971.685760pt;}
.y1b{bottom:980.159120pt;}
.y60{bottom:983.520000pt;}
.y80{bottom:989.600000pt;}
.y42{bottom:1007.520000pt;}
.y5f{bottom:1012.800000pt;}
.y1{bottom:1013.120000pt;}
.y1a{bottom:1014.080000pt;}
.y7f{bottom:1021.920000pt;}
.y3f{bottom:1061.600000pt;}
.h1e{height:28.501875pt;}
.h18{height:30.613125pt;}
.h19{height:33.280000pt;}
.h15{height:34.240000pt;}
.h11{height:37.760000pt;}
.ha{height:39.030469pt;}
.h14{height:43.808438pt;}
.h9{height:44.343750pt;}
.hf{height:47.109375pt;}
.h10{height:48.558750pt;}
.h8{height:51.882187pt;}
.h13{height:52.781250pt;}
.hb{height:54.960938pt;}
.hc{height:55.873437pt;}
.he{height:57.473437pt;}
.hd{height:57.485598pt;}
.h1d{height:57.493125pt;}
.h5{height:61.754062pt;}
.h6{height:61.761742pt;}
.h2{height:62.781250pt;}
.h1c{height:64.803437pt;}
.h7{height:65.976562pt;}
.h1b{height:66.750000pt;}
.h4{height:70.199062pt;}
.h12{height:71.235937pt;}
.h3{height:88.144687pt;}
.h1a{height:88.777500pt;}
.h17{height:175.761562pt;}
.h16{height:222.277500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:85.120000pt;}
.w4{width:106.400000pt;}
.w2{width:157.760000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:9.600000pt;}
.x20{left:33.440000pt;}
.x22{left:90.400000pt;}
.x1c{left:94.560000pt;}
.x6{left:113.446080pt;}
.x1e{left:118.400000pt;}
.x14{left:129.440800pt;}
.x18{left:132.320000pt;}
.x1{left:137.280000pt;}
.xa{left:139.840000pt;}
.x26{left:141.760000pt;}
.x7{left:148.489920pt;}
.x1b{left:151.360000pt;}
.x16{left:156.160000pt;}
.x5{left:165.600000pt;}
.x2a{left:166.560000pt;}
.xb{left:171.200000pt;}
.x19{left:179.520000pt;}
.x1a{left:189.120000pt;}
.x27{left:203.840000pt;}
.x28{left:228.480000pt;}
.xd{left:244.007360pt;}
.x29{left:252.320000pt;}
.x3{left:260.320000pt;}
.x15{left:275.440000pt;}
.x8{left:284.633920pt;}
.xc{left:303.200000pt;}
.x11{left:304.959680pt;}
.x10{left:309.602240pt;}
.x21{left:315.200000pt;}
.x13{left:329.362000pt;}
.x9{left:339.040000pt;}
.x12{left:353.760000pt;}
.xf{left:359.041760pt;}
.x1d{left:389.920000pt;}
.xe{left:396.800000pt;}
.x4{left:408.800000pt;}
.x25{left:495.354240pt;}
.x2{left:519.840000pt;}
.x17{left:541.120000pt;}
.x1f{left:633.440000pt;}
.x24{left:661.440000pt;}
}




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