
    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_a42d75b4bd0933e16aa386bc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_af6a8acb8a44808d23849c67.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_9715928031fbc53ce9a08243.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.190918;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_fc40f3f05e582a4c9e3ffbdf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.190918;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_4dd71f1d56285499eb3dfd2a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_4539f8f6e4adb4ecd0e456f0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.191406;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_cacfeb07f89c9d8d7ebef158.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.191406;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_9ad2cfa8be353b1827cc1560.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.384000;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_ba4617f1f108d4679b119a54.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.349000;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_71672c4fd677baf1aece7931.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.362000;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_ff92875fecdd7e0eb8c35554.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.940000;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_6265309acb25d2fcbab354ee.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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);}
.v7{vertical-align:-18.899780px;}
.v4{vertical-align:-17.849991px;}
.v5{vertical-align:-10.806110px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:14.704819px;}
.v3{vertical-align:18.653927px;}
.v2{vertical-align:21.000000px;}
.ls2a{letter-spacing:-5.124000px;}
.ls27{letter-spacing:-4.074000px;}
.ls4c{letter-spacing:-2.700000px;}
.ls28{letter-spacing:-1.092000px;}
.ls29{letter-spacing:-1.050000px;}
.ls1f{letter-spacing:-0.810000px;}
.ls31{letter-spacing:-0.798000px;}
.ls47{letter-spacing:-0.630000px;}
.ls32{letter-spacing:-0.546000px;}
.ls30{letter-spacing:-0.486000px;}
.ls21{letter-spacing:-0.378000px;}
.lsd{letter-spacing:-0.324000px;}
.ls10{letter-spacing:-0.270000px;}
.ls34{letter-spacing:-0.245700px;}
.lsf{letter-spacing:-0.216000px;}
.ls24{letter-spacing:-0.210000px;}
.ls2f{letter-spacing:-0.175500px;}
.ls35{letter-spacing:-0.162000px;}
.ls4d{letter-spacing:-0.135000px;}
.ls26{letter-spacing:-0.126000px;}
.ls49{letter-spacing:-0.090000px;}
.ls11{letter-spacing:-0.054000px;}
.lsc{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.000055px;}
.ls3{letter-spacing:0.006552px;}
.ls2{letter-spacing:0.013040px;}
.ls1{letter-spacing:0.013223px;}
.ls39{letter-spacing:0.016172px;}
.ls4{letter-spacing:0.016208px;}
.lsb{letter-spacing:0.018028px;}
.ls8{letter-spacing:0.043192px;}
.ls48{letter-spacing:0.045000px;}
.ls1c{letter-spacing:0.054000px;}
.ls7{letter-spacing:0.070200px;}
.ls4b{letter-spacing:0.090000px;}
.ls33{letter-spacing:0.105300px;}
.ls12{letter-spacing:0.108000px;}
.lsa{letter-spacing:0.125927px;}
.ls17{letter-spacing:0.129590px;}
.ls3e{letter-spacing:0.135000px;}
.ls20{letter-spacing:0.140400px;}
.ls2c{letter-spacing:0.157950px;}
.ls6{letter-spacing:0.159019px;}
.ls19{letter-spacing:0.162000px;}
.ls9{letter-spacing:0.175500px;}
.ls44{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.189000px;}
.ls15{letter-spacing:0.192619px;}
.ls3d{letter-spacing:0.202500px;}
.ls5{letter-spacing:0.216000px;}
.ls3b{letter-spacing:0.221400px;}
.ls41{letter-spacing:0.225000px;}
.ls1a{letter-spacing:0.243000px;}
.ls3c{letter-spacing:0.264000px;}
.lse{letter-spacing:0.270000px;}
.ls2d{letter-spacing:0.280800px;}
.ls42{letter-spacing:0.315000px;}
.ls3a{letter-spacing:0.323992px;}
.ls1e{letter-spacing:0.324000px;}
.ls43{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.378000px;}
.ls46{letter-spacing:0.405000px;}
.ls22{letter-spacing:0.432000px;}
.ls23{letter-spacing:0.486000px;}
.ls4e{letter-spacing:0.495000px;}
.ls2b{letter-spacing:0.540000px;}
.ls4a{letter-spacing:0.585000px;}
.ls2e{letter-spacing:0.594000px;}
.ls3f{letter-spacing:0.630000px;}
.ls1d{letter-spacing:0.648000px;}
.ls1b{letter-spacing:0.756000px;}
.ls37{letter-spacing:0.777000px;}
.ls14{letter-spacing:0.864000px;}
.ls36{letter-spacing:1.188000px;}
.ls38{letter-spacing:1.296000px;}
.ls45{letter-spacing:1.395000px;}
.ls40{letter-spacing:1.628993px;}
.ls0{letter-spacing:3.000000px;}
.ls13{letter-spacing:8.718450px;}
.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;}
}
.ws1{word-spacing:-15.000000px;}
.ws60{word-spacing:-13.860000px;}
.ws14{word-spacing:-13.596000px;}
.ws15{word-spacing:-13.014000px;}
.ws9{word-spacing:-12.528000px;}
.ws16{word-spacing:-12.258000px;}
.ws41{word-spacing:-11.880000px;}
.ws39{word-spacing:-11.772000px;}
.ws80{word-spacing:-11.718000px;}
.ws1d{word-spacing:-11.448000px;}
.ws3{word-spacing:-11.394000px;}
.ws63{word-spacing:-10.530000px;}
.ws64{word-spacing:-10.417500px;}
.ws65{word-spacing:-10.350000px;}
.ws62{word-spacing:-10.215000px;}
.ws27{word-spacing:-9.990000px;}
.ws61{word-spacing:-9.675000px;}
.ws0{word-spacing:-9.600000px;}
.ws18{word-spacing:-9.114000px;}
.ws29{word-spacing:-8.988000px;}
.ws28{word-spacing:-8.904000px;}
.ws11{word-spacing:-8.718450px;}
.ws31{word-spacing:-8.248500px;}
.ws33{word-spacing:-8.143200px;}
.ws13{word-spacing:-8.108100px;}
.ws3d{word-spacing:-8.073000px;}
.ws2{word-spacing:-8.034000px;}
.ws4{word-spacing:-7.967700px;}
.ws32{word-spacing:-7.792200px;}
.ws3e{word-spacing:-7.722000px;}
.ws5{word-spacing:-6.630000px;}
.ws7f{word-spacing:-6.210000px;}
.ws7a{word-spacing:-6.030000px;}
.ws77{word-spacing:-5.940000px;}
.ws26{word-spacing:-5.508000px;}
.ws2f{word-spacing:-4.284000px;}
.ws30{word-spacing:-3.864000px;}
.ws58{word-spacing:-1.998000px;}
.ws45{word-spacing:-1.566000px;}
.ws4c{word-spacing:-1.404000px;}
.wsa{word-spacing:-1.242000px;}
.ws1e{word-spacing:-1.188000px;}
.ws57{word-spacing:-1.080000px;}
.ws6f{word-spacing:-1.035000px;}
.ws6a{word-spacing:-1.026000px;}
.ws74{word-spacing:-0.990000px;}
.ws38{word-spacing:-0.972000px;}
.ws54{word-spacing:-0.918000px;}
.ws3a{word-spacing:-0.864000px;}
.ws81{word-spacing:-0.855000px;}
.ws70{word-spacing:-0.810000px;}
.ws6b{word-spacing:-0.765000px;}
.ws7d{word-spacing:-0.720000px;}
.ws1a{word-spacing:-0.702000px;}
.ws8{word-spacing:-0.648000px;}
.wsf{word-spacing:-0.612000px;}
.ws73{word-spacing:-0.585000px;}
.ws6d{word-spacing:-0.540000px;}
.ws7e{word-spacing:-0.495000px;}
.ws82{word-spacing:-0.450000px;}
.ws69{word-spacing:-0.432000px;}
.ws44{word-spacing:-0.378000px;}
.ws6e{word-spacing:-0.360000px;}
.ws7b{word-spacing:-0.315000px;}
.ws55{word-spacing:-0.270000px;}
.ws83{word-spacing:-0.264000px;}
.ws78{word-spacing:-0.225000px;}
.ws7{word-spacing:-0.216000px;}
.ws6c{word-spacing:-0.180000px;}
.ws4b{word-spacing:-0.162000px;}
.ws37{word-spacing:-0.108000px;}
.ws3f{word-spacing:-0.105300px;}
.ws6{word-spacing:0.000000px;}
.ws10{word-spacing:0.153000px;}
.ws76{word-spacing:0.180000px;}
.ws35{word-spacing:0.216000px;}
.ws12{word-spacing:0.364650px;}
.ws21{word-spacing:0.378000px;}
.ws42{word-spacing:0.486000px;}
.wsb{word-spacing:0.540000px;}
.ws24{word-spacing:0.594000px;}
.ws67{word-spacing:0.648000px;}
.ws1f{word-spacing:0.702000px;}
.ws23{word-spacing:0.756000px;}
.ws3c{word-spacing:0.798000px;}
.ws3b{word-spacing:0.864000px;}
.ws4e{word-spacing:0.918000px;}
.ws40{word-spacing:0.972000px;}
.ws7c{word-spacing:0.990000px;}
.wsd{word-spacing:1.026000px;}
.ws79{word-spacing:1.035000px;}
.wsc{word-spacing:1.080000px;}
.ws1b{word-spacing:1.188000px;}
.ws1c{word-spacing:1.242000px;}
.ws25{word-spacing:1.296000px;}
.ws20{word-spacing:1.350000px;}
.ws68{word-spacing:1.458000px;}
.ws36{word-spacing:1.512000px;}
.ws71{word-spacing:1.530000px;}
.ws72{word-spacing:1.575000px;}
.ws4d{word-spacing:1.782000px;}
.ws22{word-spacing:1.944000px;}
.ws88{word-spacing:2.052000px;}
.ws46{word-spacing:2.106000px;}
.ws51{word-spacing:2.214000px;}
.ws66{word-spacing:2.268000px;}
.ws19{word-spacing:2.484000px;}
.ws49{word-spacing:2.538000px;}
.ws59{word-spacing:2.592000px;}
.ws75{word-spacing:2.700000px;}
.ws84{word-spacing:3.024000px;}
.ws85{word-spacing:3.132000px;}
.ws56{word-spacing:3.456000px;}
.ws43{word-spacing:3.564000px;}
.ws47{word-spacing:3.834000px;}
.ws48{word-spacing:3.942000px;}
.ws5c{word-spacing:4.158000px;}
.ws5d{word-spacing:4.374000px;}
.ws52{word-spacing:4.428000px;}
.ws5b{word-spacing:4.536000px;}
.ws50{word-spacing:4.860000px;}
.ws5a{word-spacing:4.914000px;}
.ws4a{word-spacing:5.022000px;}
.ws53{word-spacing:5.130000px;}
.ws5e{word-spacing:5.562000px;}
.ws89{word-spacing:5.670000px;}
.ws8a{word-spacing:6.264000px;}
.ws86{word-spacing:6.480000px;}
.ws87{word-spacing:6.750000px;}
.ws4f{word-spacing:7.128000px;}
.wse{word-spacing:7.497000px;}
.ws5f{word-spacing:15.282000px;}
.ws2e{word-spacing:240.407994px;}
.ws2a{word-spacing:244.019994px;}
.ws17{word-spacing:279.257992px;}
.ws2b{word-spacing:293.579994px;}
.ws2c{word-spacing:319.073994px;}
.ws2d{word-spacing:324.029994px;}
.ws34{word-spacing:456.917985px;}
._59{margin-left:-20.952007px;}
._58{margin-left:-18.102047px;}
._55{margin-left:-16.278600px;}
._49{margin-left:-14.753436px;}
._e{margin-left:-13.685400px;}
._6{margin-left:-11.912399px;}
._f{margin-left:-10.705200px;}
._4b{margin-left:-9.444076px;}
._56{margin-left:-8.439570px;}
._4a{margin-left:-7.020000px;}
._2{margin-left:-5.725200px;}
._3{margin-left:-3.806400px;}
._0{margin-left:-1.876800px;}
._7{width:1.037400px;}
._4{width:2.143800px;}
._15{width:3.874200px;}
._14{width:4.981800px;}
._5c{width:6.471300px;}
._5d{width:7.746300px;}
._13{width:8.938604px;}
._c{width:11.227800px;}
._12{width:12.240552px;}
._11{width:14.051023px;}
._10{width:15.320225px;}
._5a{width:16.515000px;}
._5b{width:18.315000px;}
._54{width:46.815577px;}
._57{width:48.124186px;}
._46{width:50.714989px;}
._42{width:54.784200px;}
._2e{width:56.308782px;}
._d{width:62.942399px;}
._a{width:66.344399px;}
._9{width:71.096399px;}
._3d{width:74.802000px;}
._4f{width:75.852000px;}
._8{width:88.057797px;}
._3c{width:90.720000px;}
._5{width:92.804399px;}
._37{width:94.889399px;}
._50{width:98.896785px;}
._b{width:104.077199px;}
._38{width:111.007201px;}
._35{width:115.122000px;}
._4d{width:120.246000px;}
._40{width:131.040000px;}
._53{width:142.925985px;}
._31{width:145.894794px;}
._30{width:155.484000px;}
._45{width:160.468794px;}
._47{width:163.912794px;}
._43{width:167.104794px;}
._44{width:170.800794px;}
._48{width:193.955994px;}
._2f{width:237.804000px;}
._34{width:247.548000px;}
._3b{width:267.708000px;}
._39{width:275.603994px;}
._19{width:287.951994px;}
._1c{width:292.613994px;}
._32{width:299.249982px;}
._3e{width:302.945994px;}
._28{width:306.208800px;}
._1f{width:308.111994px;}
._41{width:309.329994px;}
._18{width:315.881992px;}
._3f{width:319.409982px;}
._1b{width:320.543992px;}
._51{width:322.685385px;}
._2d{width:328.271994px;}
._33{width:332.009990px;}
._1e{width:336.041992px;}
._1{width:339.028800px;}
._16{width:349.729794px;}
._3a{width:352.169990px;}
._4e{width:356.579985px;}
._36{width:360.486000px;}
._27{width:362.152800px;}
._4c{width:381.565786px;}
._52{width:384.463786px;}
._21{width:488.362800px;}
._29{width:503.411990px;}
._26{width:512.554800px;}
._20{width:520.563600px;}
._23{width:556.584000px;}
._25{width:578.565600px;}
._24{width:581.715600px;}
._2a{width:654.808800px;}
._22{width:713.915400px;}
._2b{width:750.456000px;}
._1a{width:754.852800px;}
._17{width:773.262000px;}
._2c{width:798.840000px;}
._1d{width:815.346000px;}
.fc4{color:rgb(245,130,31);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fsb{font-size:27.300000px;}
.fs7{font-size:33.150000px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:39.000000px;}
.fsa{font-size:42.000000px;}
.fsc{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.yaf{bottom:3.199200px;}
.y33{bottom:3.199350px;}
.yed{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.y32{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.yb0{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.yd8{bottom:67.822647px;}
.y31{bottom:68.037452px;}
.y5b{bottom:68.899652px;}
.y184{bottom:70.387648px;}
.y76{bottom:75.026095px;}
.y13d{bottom:75.030750px;}
.yd7{bottom:82.821147px;}
.y30{bottom:83.037452px;}
.y183{bottom:83.133898px;}
.y5a{bottom:83.898152px;}
.y75{bottom:90.024595px;}
.y13c{bottom:90.029250px;}
.y182{bottom:95.880148px;}
.yd6{bottom:97.819647px;}
.y2f{bottom:98.031452px;}
.y2e{bottom:98.037452px;}
.y59{bottom:98.896652px;}
.y74{bottom:105.023095px;}
.y12d{bottom:107.004148px;}
.y181{bottom:108.626398px;}
.yd5{bottom:112.818147px;}
.y2d{bottom:113.043452px;}
.y58{bottom:113.895152px;}
.y73{bottom:120.021595px;}
.y180{bottom:121.372648px;}
.y12c{bottom:122.002648px;}
.y13b{bottom:123.036750px;}
.yd4{bottom:127.816647px;}
.y2c{bottom:128.037452px;}
.y57{bottom:128.893652px;}
.y17f{bottom:134.118898px;}
.y12b{bottom:137.001148px;}
.y13a{bottom:138.035250px;}
.yd3{bottom:142.816647px;}
.y2b{bottom:143.037452px;}
.y56{bottom:143.892152px;}
.y17e{bottom:146.865148px;}
.yae{bottom:151.894380px;}
.y12a{bottom:151.999648px;}
.y139{bottom:153.033750px;}
.yd2{bottom:157.822647px;}
.y55{bottom:158.890652px;}
.y17d{bottom:159.611398px;}
.y2a{bottom:162.493950px;}
.y129{bottom:166.998148px;}
.y138{bottom:168.032250px;}
.yad{bottom:169.429380px;}
.y17c{bottom:172.357648px;}
.yd1{bottom:172.821147px;}
.y54{bottom:173.889152px;}
.y128{bottom:181.996648px;}
.y137{bottom:183.030750px;}
.y17b{bottom:185.103898px;}
.yac{bottom:186.964380px;}
.yd0{bottom:187.819647px;}
.y53{bottom:188.887652px;}
.y1b7{bottom:196.848907px;}
.y127{bottom:196.995148px;}
.y17a{bottom:197.850148px;}
.y136{bottom:198.032250px;}
.ycf{bottom:202.818147px;}
.y52{bottom:203.886152px;}
.yab{bottom:204.499380px;}
.y179{bottom:210.596398px;}
.y126{bottom:211.993648px;}
.y135{bottom:213.030750px;}
.y1b6{bottom:214.848907px;}
.yce{bottom:217.816647px;}
.y51{bottom:218.884652px;}
.yaa{bottom:222.034380px;}
.y178{bottom:223.342648px;}
.y28{bottom:225.072305px;}
.y125{bottom:226.992148px;}
.y134{bottom:228.036750px;}
.ycd{bottom:232.818147px;}
.y50{bottom:233.883152px;}
.y177{bottom:236.088898px;}
.ya9{bottom:239.569380px;}
.y27{bottom:240.070805px;}
.y124{bottom:241.990648px;}
.y133{bottom:243.035250px;}
.ycc{bottom:247.816647px;}
.y1b5{bottom:247.841403px;}
.y176{bottom:248.835148px;}
.y4f{bottom:248.881652px;}
.y26{bottom:255.070805px;}
.y123{bottom:256.989148px;}
.ya8{bottom:257.104380px;}
.y132{bottom:258.033750px;}
.y175{bottom:261.581398px;}
.ycb{bottom:262.816647px;}
.y4e{bottom:263.880152px;}
.y25{bottom:270.070805px;}
.y122{bottom:271.987648px;}
.y131{bottom:273.032250px;}
.y174{bottom:274.327648px;}
.ya7{bottom:274.639380px;}
.y1b4{bottom:275.148903px;}
.yca{bottom:277.816647px;}
.y4d{bottom:278.878652px;}
.y24{bottom:285.072305px;}
.y121{bottom:286.986148px;}
.y173{bottom:287.073898px;}
.y130{bottom:288.030750px;}
.ya6{bottom:292.174380px;}
.yc9{bottom:292.816647px;}
.y4c{bottom:293.877152px;}
.y172{bottom:299.820148px;}
.y23{bottom:300.070805px;}
.y120{bottom:301.984648px;}
.y12f{bottom:303.030750px;}
.yc8{bottom:307.821147px;}
.y1b3{bottom:308.162244px;}
.y4b{bottom:308.875652px;}
.ya5{bottom:309.709380px;}
.y171{bottom:312.566398px;}
.y22{bottom:315.130815px;}
.y11f{bottom:316.983148px;}
.y12e{bottom:318.029250px;}
.yc7{bottom:322.819647px;}
.y4a{bottom:323.874152px;}
.y170{bottom:325.312648px;}
.ya4{bottom:327.244380px;}
.y21{bottom:330.129315px;}
.y11e{bottom:331.981648px;}
.yc6{bottom:337.818147px;}
.y16f{bottom:338.058898px;}
.y1b2{bottom:338.159243px;}
.y49{bottom:338.872652px;}
.ya3{bottom:344.779380px;}
.y11d{bottom:346.980148px;}
.y16e{bottom:350.805148px;}
.yc5{bottom:352.816647px;}
.y1b1{bottom:353.157743px;}
.y48{bottom:353.871152px;}
.ya2{bottom:362.314380px;}
.y20{bottom:363.123315px;}
.y16d{bottom:363.551398px;}
.yc4{bottom:367.831670px;}
.y1b0{bottom:368.156243px;}
.y47{bottom:368.886129px;}
.y16c{bottom:376.297648px;}
.y1f{bottom:378.121815px;}
.ya1{bottom:379.849380px;}
.y11c{bottom:379.999648px;}
.yc3{bottom:382.830170px;}
.y1af{bottom:383.154743px;}
.y46{bottom:383.884629px;}
.y13e{bottom:386.431503px;}
.y16b{bottom:389.043898px;}
.y1e{bottom:393.120315px;}
.y11b{bottom:394.998148px;}
.ya0{bottom:397.384380px;}
.yc2{bottom:397.828670px;}
.y1ae{bottom:398.153243px;}
.y45{bottom:398.883129px;}
.y16a{bottom:401.790148px;}
.y1d{bottom:408.118815px;}
.y11a{bottom:409.996648px;}
.yc1{bottom:412.827170px;}
.y1ad{bottom:413.151743px;}
.y44{bottom:413.881629px;}
.y169{bottom:414.536398px;}
.y9f{bottom:414.919380px;}
.y1c{bottom:423.117315px;}
.y119{bottom:424.995148px;}
.y168{bottom:427.282648px;}
.yc0{bottom:427.825670px;}
.y1ac{bottom:428.150243px;}
.y43{bottom:428.880129px;}
.y9e{bottom:432.454380px;}
.y1b{bottom:438.115815px;}
.y118{bottom:439.993648px;}
.y167{bottom:440.028898px;}
.ybf{bottom:442.824170px;}
.y1ab{bottom:443.148743px;}
.y42{bottom:443.878629px;}
.y9d{bottom:449.989380px;}
.y166{bottom:452.775148px;}
.y1a{bottom:453.114315px;}
.y117{bottom:454.992148px;}
.ybe{bottom:457.822670px;}
.y41{bottom:458.877129px;}
.y165{bottom:465.521398px;}
.y1aa{bottom:465.641243px;}
.y9c{bottom:467.524380px;}
.y116{bottom:469.990648px;}
.ybd{bottom:472.821170px;}
.y40{bottom:473.875629px;}
.y164{bottom:478.267648px;}
.y1a9{bottom:480.639743px;}
.y115{bottom:484.989148px;}
.y9b{bottom:485.059380px;}
.ybc{bottom:487.819670px;}
.y3f{bottom:488.874129px;}
.y163{bottom:491.013898px;}
.y19{bottom:498.258315px;}
.y114{bottom:499.987648px;}
.y9a{bottom:502.594380px;}
.ybb{bottom:502.818170px;}
.y1a8{bottom:503.144243px;}
.y162{bottom:503.760148px;}
.y3e{bottom:503.872629px;}
.y18{bottom:514.755315px;}
.y113{bottom:514.986148px;}
.y161{bottom:516.506398px;}
.yba{bottom:517.816670px;}
.y3d{bottom:518.871129px;}
.y99{bottom:520.129380px;}
.y1a7{bottom:525.648743px;}
.y160{bottom:529.252648px;}
.y112{bottom:529.984648px;}
.y17{bottom:531.252315px;}
.yb9{bottom:532.818170px;}
.y3c{bottom:533.869629px;}
.y98{bottom:537.664380px;}
.y1a6{bottom:540.648743px;}
.y15f{bottom:541.998898px;}
.y111{bottom:544.983148px;}
.y16{bottom:547.749315px;}
.yb8{bottom:547.816670px;}
.y3b{bottom:548.869629px;}
.y15e{bottom:554.745148px;}
.y97{bottom:555.199380px;}
.y110{bottom:559.981648px;}
.yb7{bottom:562.815170px;}
.y15{bottom:564.246315px;}
.y15d{bottom:567.491398px;}
.y1a5{bottom:570.648743px;}
.y96{bottom:572.734380px;}
.y10f{bottom:574.981648px;}
.yb6{bottom:577.815170px;}
.y15c{bottom:580.237648px;}
.y14{bottom:580.743315px;}
.y3a{bottom:581.871129px;}
.y1a4{bottom:585.648743px;}
.y10e{bottom:589.980148px;}
.y95{bottom:590.269380px;}
.y15b{bottom:592.983898px;}
.y39{bottom:596.872629px;}
.y13{bottom:597.240315px;}
.y10d{bottom:604.980148px;}
.y15a{bottom:605.730148px;}
.y94{bottom:607.804380px;}
.yb5{bottom:610.819670px;}
.y38{bottom:611.871129px;}
.y12{bottom:613.737315px;}
.y1a3{bottom:617.123238px;}
.y159{bottom:618.480148px;}
.y93{bottom:625.339380px;}
.yb4{bottom:625.818170px;}
.y37{bottom:626.872629px;}
.y11{bottom:630.234315px;}
.y1a2{bottom:632.121738px;}
.y10c{bottom:638.001194px;}
.yb3{bottom:640.816670px;}
.y36{bottom:641.871129px;}
.y92{bottom:642.874380px;}
.y10{bottom:646.731315px;}
.y1a1{bottom:647.120238px;}
.y10b{bottom:652.999694px;}
.yb2{bottom:655.815170px;}
.y35{bottom:656.869629px;}
.y91{bottom:660.409380px;}
.y1a0{bottom:662.118738px;}
.yf{bottom:663.228315px;}
.y158{bottom:667.980148px;}
.y10a{bottom:667.998194px;}
.y19f{bottom:677.117238px;}
.y90{bottom:677.944380px;}
.ye{bottom:679.725315px;}
.y109{bottom:682.996694px;}
.y19e{bottom:692.115738px;}
.y8f{bottom:695.479380px;}
.yd{bottom:696.222315px;}
.y108{bottom:697.995194px;}
.y157{bottom:698.019194px;}
.y19d{bottom:707.115738px;}
.yc{bottom:712.719315px;}
.y107{bottom:712.993694px;}
.y8e{bottom:713.014380px;}
.y156{bottom:713.017694px;}
.y60{bottom:714.026106px;}
.ye0{bottom:721.227602px;}
.y106{bottom:727.992194px;}
.y155{bottom:728.016194px;}
.y5f{bottom:729.024606px;}
.y8d{bottom:730.549380px;}
.ydf{bottom:736.226102px;}
.y19c{bottom:737.124784px;}
.yb{bottom:742.719315px;}
.y105{bottom:742.990694px;}
.y154{bottom:743.014694px;}
.y5e{bottom:744.023106px;}
.y8c{bottom:748.084380px;}
.yde{bottom:751.224602px;}
.y19b{bottom:752.123284px;}
.y104{bottom:757.989194px;}
.y153{bottom:758.013194px;}
.y5d{bottom:759.023106px;}
.ya{bottom:760.719269px;}
.y8b{bottom:765.619380px;}
.ydd{bottom:766.223102px;}
.y19a{bottom:767.121784px;}
.y103{bottom:772.987694px;}
.y152{bottom:773.011694px;}
.y5c{bottom:774.021606px;}
.y9{bottom:778.719269px;}
.ydc{bottom:781.221602px;}
.y199{bottom:782.120284px;}
.y8a{bottom:783.154380px;}
.y102{bottom:787.986194px;}
.y151{bottom:788.010194px;}
.ydb{bottom:796.220102px;}
.y198{bottom:797.118784px;}
.y89{bottom:800.689380px;}
.y101{bottom:802.984694px;}
.y150{bottom:803.008694px;}
.y71{bottom:805.663788px;}
.yda{bottom:811.218602px;}
.y8{bottom:811.701269px;}
.y197{bottom:812.117284px;}
.y100{bottom:817.983194px;}
.y14f{bottom:818.007194px;}
.y88{bottom:818.224380px;}
.y70{bottom:823.197144px;}
.yd9{bottom:826.217102px;}
.y196{bottom:827.115784px;}
.yff{bottom:832.981694px;}
.y14e{bottom:833.005694px;}
.y87{bottom:835.759380px;}
.y6f{bottom:840.730499px;}
.y195{bottom:842.115784px;}
.yfe{bottom:847.983194px;}
.y14d{bottom:848.004194px;}
.y86{bottom:853.294380px;}
.y7{bottom:856.707269px;}
.yec{bottom:857.829642px;}
.y6e{bottom:858.264038px;}
.yfd{bottom:862.981694px;}
.y14c{bottom:863.002694px;}
.y85{bottom:870.829380px;}
.y194{bottom:872.120284px;}
.yeb{bottom:875.364642px;}
.y6d{bottom:875.797394px;}
.yfc{bottom:877.998194px;}
.y14b{bottom:878.001194px;}
.y193{bottom:887.118784px;}
.y84{bottom:888.359077px;}
.yea{bottom:892.899642px;}
.yfb{bottom:892.996694px;}
.y14a{bottom:892.999694px;}
.y6c{bottom:893.330658px;}
.y6{bottom:901.713269px;}
.y192{bottom:902.117284px;}
.y83{bottom:905.894077px;}
.yfa{bottom:907.995194px;}
.y149{bottom:907.998194px;}
.ye9{bottom:910.434642px;}
.y6b{bottom:910.864014px;}
.y191{bottom:917.115784px;}
.yf9{bottom:922.993694px;}
.y148{bottom:922.996694px;}
.y82{bottom:923.429077px;}
.ye8{bottom:927.969642px;}
.y6a{bottom:928.397552px;}
.y190{bottom:932.115784px;}
.yf8{bottom:937.992194px;}
.y147{bottom:937.995194px;}
.y81{bottom:940.964077px;}
.ye7{bottom:945.504642px;}
.y69{bottom:945.930908px;}
.y5{bottom:946.719269px;}
.yf7{bottom:952.990694px;}
.y146{bottom:952.993694px;}
.y29{bottom:954.366760px;}
.y80{bottom:958.499077px;}
.y18f{bottom:962.153284px;}
.ye6{bottom:963.039642px;}
.y68{bottom:963.464264px;}
.yf6{bottom:967.989194px;}
.y145{bottom:967.992194px;}
.y18e{bottom:974.899534px;}
.y7f{bottom:976.034077px;}
.ye5{bottom:980.988486px;}
.y67{bottom:980.997711px;}
.yf5{bottom:982.987694px;}
.y144{bottom:982.990694px;}
.y18d{bottom:987.645784px;}
.y7e{bottom:993.569077px;}
.yf4{bottom:997.986194px;}
.y143{bottom:997.989194px;}
.ye4{bottom:998.523486px;}
.y66{bottom:998.531067px;}
.y18c{bottom:1000.392034px;}
.y7d{bottom:1011.104077px;}
.yf3{bottom:1012.984694px;}
.y142{bottom:1012.987694px;}
.y18b{bottom:1013.138284px;}
.ye3{bottom:1016.058486px;}
.y65{bottom:1016.064423px;}
.y18a{bottom:1025.884534px;}
.yf2{bottom:1027.983194px;}
.y141{bottom:1027.986194px;}
.y7c{bottom:1028.639077px;}
.ye2{bottom:1033.593486px;}
.y64{bottom:1033.597778px;}
.y189{bottom:1038.630784px;}
.yf1{bottom:1042.981694px;}
.y140{bottom:1042.984694px;}
.y7b{bottom:1046.174077px;}
.ye1{bottom:1051.128486px;}
.y63{bottom:1051.131317px;}
.y188{bottom:1051.377034px;}
.yf0{bottom:1057.981694px;}
.y13f{bottom:1057.983194px;}
.y77{bottom:1063.698578px;}
.y7a{bottom:1063.709077px;}
.y187{bottom:1064.123284px;}
.y62{bottom:1068.663486px;}
.yef{bottom:1072.981694px;}
.y79{bottom:1074.954577px;}
.y186{bottom:1076.869534px;}
.y61{bottom:1086.198486px;}
.y78{bottom:1086.200077px;}
.yee{bottom:1087.980194px;}
.y185{bottom:1089.615784px;}
.y72{bottom:1140.640320px;}
.yb1{bottom:1140.746521px;}
.y34{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.h10{height:23.842749px;}
.h2{height:34.523438px;}
.h2c{height:35.411133px;}
.h9{height:38.838867px;}
.h1d{height:41.538000px;}
.h1c{height:41.699407px;}
.h1a{height:41.699773px;}
.h1b{height:41.700506px;}
.h19{height:41.704519px;}
.h18{height:43.008000px;}
.h1e{height:43.029213px;}
.h2f{height:44.505000px;}
.h2d{height:45.090000px;}
.h3{height:45.679688px;}
.h2e{height:46.080000px;}
.h14{height:47.469727px;}
.h11{height:48.534668px;}
.h6{height:49.050293px;}
.h7{height:49.050476px;}
.h12{height:49.373525px;}
.h30{height:50.439000px;}
.ha{height:51.416016px;}
.hc{height:53.406000px;}
.h26{height:53.541680px;}
.h1f{height:53.547863px;}
.h16{height:53.547955px;}
.h29{height:53.583868px;}
.h23{height:53.583909px;}
.h2b{height:53.583914px;}
.h20{height:53.589955px;}
.h17{height:53.595863px;}
.h27{height:53.601680px;}
.hd{height:53.601863px;}
.h2a{height:53.601868px;}
.h22{height:53.601955px;}
.h13{height:53.602046px;}
.h25{height:53.607680px;}
.he{height:53.607863px;}
.h28{height:53.607868px;}
.h24{height:53.607909px;}
.h21{height:53.607955px;}
.h15{height:54.108000px;}
.hb{height:55.296000px;}
.h4{height:57.099609px;}
.h8{height:58.133789px;}
.hf{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.228350px;}
.x3{left:61.653603px;}
.x6{left:141.395702px;}
.x5{left:233.858253px;}
.xa{left:238.573318px;}
.x8{left:251.858253px;}
.xe{left:254.108391px;}
.xf{left:302.498840px;}
.xc{left:333.092857px;}
.x9{left:474.739334px;}
.x4{left:586.814117px;}
.xd{left:598.154851px;}
.xb{left:797.390808px;}
.x2{left:798.901611px;}
.x1{left:825.001190px;}
@media print{
.v7{vertical-align:-16.799805pt;}
.v4{vertical-align:-15.866659pt;}
.v5{vertical-align:-9.605431pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:13.070951pt;}
.v3{vertical-align:16.581268pt;}
.v2{vertical-align:18.666667pt;}
.ls2a{letter-spacing:-4.554667pt;}
.ls27{letter-spacing:-3.621333pt;}
.ls4c{letter-spacing:-2.400000pt;}
.ls28{letter-spacing:-0.970667pt;}
.ls29{letter-spacing:-0.933333pt;}
.ls1f{letter-spacing:-0.720000pt;}
.ls31{letter-spacing:-0.709333pt;}
.ls47{letter-spacing:-0.560000pt;}
.ls32{letter-spacing:-0.485333pt;}
.ls30{letter-spacing:-0.432000pt;}
.ls21{letter-spacing:-0.336000pt;}
.lsd{letter-spacing:-0.288000pt;}
.ls10{letter-spacing:-0.240000pt;}
.ls34{letter-spacing:-0.218400pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls24{letter-spacing:-0.186667pt;}
.ls2f{letter-spacing:-0.156000pt;}
.ls35{letter-spacing:-0.144000pt;}
.ls4d{letter-spacing:-0.120000pt;}
.ls26{letter-spacing:-0.112000pt;}
.ls49{letter-spacing:-0.080000pt;}
.ls11{letter-spacing:-0.048000pt;}
.lsc{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.000049pt;}
.ls3{letter-spacing:0.005824pt;}
.ls2{letter-spacing:0.011591pt;}
.ls1{letter-spacing:0.011754pt;}
.ls39{letter-spacing:0.014375pt;}
.ls4{letter-spacing:0.014407pt;}
.lsb{letter-spacing:0.016025pt;}
.ls8{letter-spacing:0.038393pt;}
.ls48{letter-spacing:0.040000pt;}
.ls1c{letter-spacing:0.048000pt;}
.ls7{letter-spacing:0.062400pt;}
.ls4b{letter-spacing:0.080000pt;}
.ls33{letter-spacing:0.093600pt;}
.ls12{letter-spacing:0.096000pt;}
.lsa{letter-spacing:0.111935pt;}
.ls17{letter-spacing:0.115191pt;}
.ls3e{letter-spacing:0.120000pt;}
.ls20{letter-spacing:0.124800pt;}
.ls2c{letter-spacing:0.140400pt;}
.ls6{letter-spacing:0.141350pt;}
.ls19{letter-spacing:0.144000pt;}
.ls9{letter-spacing:0.156000pt;}
.ls44{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.168000pt;}
.ls15{letter-spacing:0.171217pt;}
.ls3d{letter-spacing:0.180000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls3b{letter-spacing:0.196800pt;}
.ls41{letter-spacing:0.200000pt;}
.ls1a{letter-spacing:0.216000pt;}
.ls3c{letter-spacing:0.234667pt;}
.lse{letter-spacing:0.240000pt;}
.ls2d{letter-spacing:0.249600pt;}
.ls42{letter-spacing:0.280000pt;}
.ls3a{letter-spacing:0.287993pt;}
.ls1e{letter-spacing:0.288000pt;}
.ls43{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.336000pt;}
.ls46{letter-spacing:0.360000pt;}
.ls22{letter-spacing:0.384000pt;}
.ls23{letter-spacing:0.432000pt;}
.ls4e{letter-spacing:0.440000pt;}
.ls2b{letter-spacing:0.480000pt;}
.ls4a{letter-spacing:0.520000pt;}
.ls2e{letter-spacing:0.528000pt;}
.ls3f{letter-spacing:0.560000pt;}
.ls1d{letter-spacing:0.576000pt;}
.ls1b{letter-spacing:0.672000pt;}
.ls37{letter-spacing:0.690667pt;}
.ls14{letter-spacing:0.768000pt;}
.ls36{letter-spacing:1.056000pt;}
.ls38{letter-spacing:1.152000pt;}
.ls45{letter-spacing:1.240000pt;}
.ls40{letter-spacing:1.447994pt;}
.ls0{letter-spacing:2.666667pt;}
.ls13{letter-spacing:7.749733pt;}
.ws1{word-spacing:-13.333333pt;}
.ws60{word-spacing:-12.320000pt;}
.ws14{word-spacing:-12.085333pt;}
.ws15{word-spacing:-11.568000pt;}
.ws9{word-spacing:-11.136000pt;}
.ws16{word-spacing:-10.896000pt;}
.ws41{word-spacing:-10.560000pt;}
.ws39{word-spacing:-10.464000pt;}
.ws80{word-spacing:-10.416000pt;}
.ws1d{word-spacing:-10.176000pt;}
.ws3{word-spacing:-10.128000pt;}
.ws63{word-spacing:-9.360000pt;}
.ws64{word-spacing:-9.260000pt;}
.ws65{word-spacing:-9.200000pt;}
.ws62{word-spacing:-9.080000pt;}
.ws27{word-spacing:-8.880000pt;}
.ws61{word-spacing:-8.600000pt;}
.ws0{word-spacing:-8.533333pt;}
.ws18{word-spacing:-8.101333pt;}
.ws29{word-spacing:-7.989333pt;}
.ws28{word-spacing:-7.914667pt;}
.ws11{word-spacing:-7.749733pt;}
.ws31{word-spacing:-7.332000pt;}
.ws33{word-spacing:-7.238400pt;}
.ws13{word-spacing:-7.207200pt;}
.ws3d{word-spacing:-7.176000pt;}
.ws2{word-spacing:-7.141333pt;}
.ws4{word-spacing:-7.082400pt;}
.ws32{word-spacing:-6.926400pt;}
.ws3e{word-spacing:-6.864000pt;}
.ws5{word-spacing:-5.893333pt;}
.ws7f{word-spacing:-5.520000pt;}
.ws7a{word-spacing:-5.360000pt;}
.ws77{word-spacing:-5.280000pt;}
.ws26{word-spacing:-4.896000pt;}
.ws2f{word-spacing:-3.808000pt;}
.ws30{word-spacing:-3.434667pt;}
.ws58{word-spacing:-1.776000pt;}
.ws45{word-spacing:-1.392000pt;}
.ws4c{word-spacing:-1.248000pt;}
.wsa{word-spacing:-1.104000pt;}
.ws1e{word-spacing:-1.056000pt;}
.ws57{word-spacing:-0.960000pt;}
.ws6f{word-spacing:-0.920000pt;}
.ws6a{word-spacing:-0.912000pt;}
.ws74{word-spacing:-0.880000pt;}
.ws38{word-spacing:-0.864000pt;}
.ws54{word-spacing:-0.816000pt;}
.ws3a{word-spacing:-0.768000pt;}
.ws81{word-spacing:-0.760000pt;}
.ws70{word-spacing:-0.720000pt;}
.ws6b{word-spacing:-0.680000pt;}
.ws7d{word-spacing:-0.640000pt;}
.ws1a{word-spacing:-0.624000pt;}
.ws8{word-spacing:-0.576000pt;}
.wsf{word-spacing:-0.544000pt;}
.ws73{word-spacing:-0.520000pt;}
.ws6d{word-spacing:-0.480000pt;}
.ws7e{word-spacing:-0.440000pt;}
.ws82{word-spacing:-0.400000pt;}
.ws69{word-spacing:-0.384000pt;}
.ws44{word-spacing:-0.336000pt;}
.ws6e{word-spacing:-0.320000pt;}
.ws7b{word-spacing:-0.280000pt;}
.ws55{word-spacing:-0.240000pt;}
.ws83{word-spacing:-0.234667pt;}
.ws78{word-spacing:-0.200000pt;}
.ws7{word-spacing:-0.192000pt;}
.ws6c{word-spacing:-0.160000pt;}
.ws4b{word-spacing:-0.144000pt;}
.ws37{word-spacing:-0.096000pt;}
.ws3f{word-spacing:-0.093600pt;}
.ws6{word-spacing:0.000000pt;}
.ws10{word-spacing:0.136000pt;}
.ws76{word-spacing:0.160000pt;}
.ws35{word-spacing:0.192000pt;}
.ws12{word-spacing:0.324133pt;}
.ws21{word-spacing:0.336000pt;}
.ws42{word-spacing:0.432000pt;}
.wsb{word-spacing:0.480000pt;}
.ws24{word-spacing:0.528000pt;}
.ws67{word-spacing:0.576000pt;}
.ws1f{word-spacing:0.624000pt;}
.ws23{word-spacing:0.672000pt;}
.ws3c{word-spacing:0.709333pt;}
.ws3b{word-spacing:0.768000pt;}
.ws4e{word-spacing:0.816000pt;}
.ws40{word-spacing:0.864000pt;}
.ws7c{word-spacing:0.880000pt;}
.wsd{word-spacing:0.912000pt;}
.ws79{word-spacing:0.920000pt;}
.wsc{word-spacing:0.960000pt;}
.ws1b{word-spacing:1.056000pt;}
.ws1c{word-spacing:1.104000pt;}
.ws25{word-spacing:1.152000pt;}
.ws20{word-spacing:1.200000pt;}
.ws68{word-spacing:1.296000pt;}
.ws36{word-spacing:1.344000pt;}
.ws71{word-spacing:1.360000pt;}
.ws72{word-spacing:1.400000pt;}
.ws4d{word-spacing:1.584000pt;}
.ws22{word-spacing:1.728000pt;}
.ws88{word-spacing:1.824000pt;}
.ws46{word-spacing:1.872000pt;}
.ws51{word-spacing:1.968000pt;}
.ws66{word-spacing:2.016000pt;}
.ws19{word-spacing:2.208000pt;}
.ws49{word-spacing:2.256000pt;}
.ws59{word-spacing:2.304000pt;}
.ws75{word-spacing:2.400000pt;}
.ws84{word-spacing:2.688000pt;}
.ws85{word-spacing:2.784000pt;}
.ws56{word-spacing:3.072000pt;}
.ws43{word-spacing:3.168000pt;}
.ws47{word-spacing:3.408000pt;}
.ws48{word-spacing:3.504000pt;}
.ws5c{word-spacing:3.696000pt;}
.ws5d{word-spacing:3.888000pt;}
.ws52{word-spacing:3.936000pt;}
.ws5b{word-spacing:4.032000pt;}
.ws50{word-spacing:4.320000pt;}
.ws5a{word-spacing:4.368000pt;}
.ws4a{word-spacing:4.464000pt;}
.ws53{word-spacing:4.560000pt;}
.ws5e{word-spacing:4.944000pt;}
.ws89{word-spacing:5.040000pt;}
.ws8a{word-spacing:5.568000pt;}
.ws86{word-spacing:5.760000pt;}
.ws87{word-spacing:6.000000pt;}
.ws4f{word-spacing:6.336000pt;}
.wse{word-spacing:6.664000pt;}
.ws5f{word-spacing:13.584000pt;}
.ws2e{word-spacing:213.695995pt;}
.ws2a{word-spacing:216.906661pt;}
.ws17{word-spacing:248.229326pt;}
.ws2b{word-spacing:260.959995pt;}
.ws2c{word-spacing:283.621328pt;}
.ws2d{word-spacing:288.026661pt;}
.ws34{word-spacing:406.149320pt;}
._59{margin-left:-18.624006pt;}
._58{margin-left:-16.090709pt;}
._55{margin-left:-14.469867pt;}
._49{margin-left:-13.114165pt;}
._e{margin-left:-12.164800pt;}
._6{margin-left:-10.588799pt;}
._f{margin-left:-9.515733pt;}
._4b{margin-left:-8.394734pt;}
._56{margin-left:-7.501840pt;}
._4a{margin-left:-6.240000pt;}
._2{margin-left:-5.089067pt;}
._3{margin-left:-3.383467pt;}
._0{margin-left:-1.668267pt;}
._7{width:0.922133pt;}
._4{width:1.905600pt;}
._15{width:3.443734pt;}
._14{width:4.428266pt;}
._5c{width:5.752267pt;}
._5d{width:6.885600pt;}
._13{width:7.945426pt;}
._c{width:9.980267pt;}
._12{width:10.880491pt;}
._11{width:12.489798pt;}
._10{width:13.617978pt;}
._5a{width:14.680000pt;}
._5b{width:16.280000pt;}
._54{width:41.613846pt;}
._57{width:42.777054pt;}
._46{width:45.079990pt;}
._42{width:48.697067pt;}
._2e{width:50.052251pt;}
._d{width:55.948799pt;}
._a{width:58.972799pt;}
._9{width:63.196799pt;}
._3d{width:66.490667pt;}
._4f{width:67.424000pt;}
._8{width:78.273598pt;}
._3c{width:80.640000pt;}
._5{width:82.492799pt;}
._37{width:84.346133pt;}
._50{width:87.908253pt;}
._b{width:92.513065pt;}
._38{width:98.673068pt;}
._35{width:102.330667pt;}
._4d{width:106.885333pt;}
._40{width:116.480000pt;}
._53{width:127.045320pt;}
._31{width:129.684261pt;}
._30{width:138.208000pt;}
._45{width:142.638928pt;}
._47{width:145.700261pt;}
._43{width:148.537595pt;}
._44{width:151.822928pt;}
._48{width:172.405328pt;}
._2f{width:211.381333pt;}
._34{width:220.042667pt;}
._3b{width:237.962667pt;}
._39{width:244.981328pt;}
._19{width:255.957328pt;}
._1c{width:260.101328pt;}
._32{width:265.999984pt;}
._3e{width:269.285328pt;}
._28{width:272.185600pt;}
._1f{width:273.877328pt;}
._41{width:274.959995pt;}
._18{width:280.783993pt;}
._3f{width:283.919984pt;}
._1b{width:284.927993pt;}
._51{width:286.831454pt;}
._2d{width:291.797328pt;}
._33{width:295.119991pt;}
._1e{width:298.703993pt;}
._1{width:301.358933pt;}
._16{width:310.870928pt;}
._3a{width:313.039991pt;}
._4e{width:316.959987pt;}
._36{width:320.432000pt;}
._27{width:321.913600pt;}
._4c{width:339.169587pt;}
._52{width:341.745587pt;}
._21{width:434.100267pt;}
._29{width:447.477324pt;}
._26{width:455.604267pt;}
._20{width:462.723200pt;}
._23{width:494.741333pt;}
._25{width:514.280533pt;}
._24{width:517.080533pt;}
._2a{width:582.052267pt;}
._22{width:634.591467pt;}
._2b{width:667.072000pt;}
._1a{width:670.980267pt;}
._17{width:687.344000pt;}
._2c{width:710.080000pt;}
._1d{width:724.752000pt;}
.fsb{font-size:24.266667pt;}
.fs7{font-size:29.466667pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:34.666667pt;}
.fsa{font-size:37.333333pt;}
.fsc{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.yaf{bottom:2.843733pt;}
.y33{bottom:2.843867pt;}
.yed{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.y32{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.yb0{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.yd8{bottom:60.286798pt;}
.y31{bottom:60.477735pt;}
.y5b{bottom:61.244135pt;}
.y184{bottom:62.566799pt;}
.y76{bottom:66.689862pt;}
.y13d{bottom:66.694000pt;}
.yd7{bottom:73.618798pt;}
.y30{bottom:73.811069pt;}
.y183{bottom:73.896799pt;}
.y5a{bottom:74.576135pt;}
.y75{bottom:80.021862pt;}
.y13c{bottom:80.026000pt;}
.y182{bottom:85.226799pt;}
.yd6{bottom:86.950798pt;}
.y2f{bottom:87.139069pt;}
.y2e{bottom:87.144402pt;}
.y59{bottom:87.908135pt;}
.y74{bottom:93.353862pt;}
.y12d{bottom:95.114799pt;}
.y181{bottom:96.556799pt;}
.yd5{bottom:100.282798pt;}
.y2d{bottom:100.483069pt;}
.y58{bottom:101.240135pt;}
.y73{bottom:106.685862pt;}
.y180{bottom:107.886799pt;}
.y12c{bottom:108.446799pt;}
.y13b{bottom:109.366000pt;}
.yd4{bottom:113.614798pt;}
.y2c{bottom:113.811069pt;}
.y57{bottom:114.572135pt;}
.y17f{bottom:119.216799pt;}
.y12b{bottom:121.778799pt;}
.y13a{bottom:122.698000pt;}
.yd3{bottom:126.948131pt;}
.y2b{bottom:127.144402pt;}
.y56{bottom:127.904135pt;}
.y17e{bottom:130.546799pt;}
.yae{bottom:135.017227pt;}
.y12a{bottom:135.110799pt;}
.y139{bottom:136.030000pt;}
.yd2{bottom:140.286798pt;}
.y55{bottom:141.236135pt;}
.y17d{bottom:141.876799pt;}
.y2a{bottom:144.439067pt;}
.y129{bottom:148.442799pt;}
.y138{bottom:149.362000pt;}
.yad{bottom:150.603893pt;}
.y17c{bottom:153.206799pt;}
.yd1{bottom:153.618798pt;}
.y54{bottom:154.568135pt;}
.y128{bottom:161.774799pt;}
.y137{bottom:162.694000pt;}
.y17b{bottom:164.536799pt;}
.yac{bottom:166.190560pt;}
.yd0{bottom:166.950798pt;}
.y53{bottom:167.900135pt;}
.y1b7{bottom:174.976807pt;}
.y127{bottom:175.106799pt;}
.y17a{bottom:175.866799pt;}
.y136{bottom:176.028667pt;}
.ycf{bottom:180.282798pt;}
.y52{bottom:181.232135pt;}
.yab{bottom:181.777227pt;}
.y179{bottom:187.196799pt;}
.y126{bottom:188.438799pt;}
.y135{bottom:189.360667pt;}
.y1b6{bottom:190.976807pt;}
.yce{bottom:193.614798pt;}
.y51{bottom:194.564135pt;}
.yaa{bottom:197.363893pt;}
.y178{bottom:198.526799pt;}
.y28{bottom:200.064271pt;}
.y125{bottom:201.770799pt;}
.y134{bottom:202.699333pt;}
.ycd{bottom:206.949464pt;}
.y50{bottom:207.896135pt;}
.y177{bottom:209.856799pt;}
.ya9{bottom:212.950560pt;}
.y27{bottom:213.396271pt;}
.y124{bottom:215.102799pt;}
.y133{bottom:216.031333pt;}
.ycc{bottom:220.281464pt;}
.y1b5{bottom:220.303469pt;}
.y176{bottom:221.186799pt;}
.y4f{bottom:221.228135pt;}
.y26{bottom:226.729605pt;}
.y123{bottom:228.434799pt;}
.ya8{bottom:228.537227pt;}
.y132{bottom:229.363333pt;}
.y175{bottom:232.516799pt;}
.ycb{bottom:233.614798pt;}
.y4e{bottom:234.560135pt;}
.y25{bottom:240.062938pt;}
.y122{bottom:241.766799pt;}
.y131{bottom:242.695333pt;}
.y174{bottom:243.846799pt;}
.ya7{bottom:244.123893pt;}
.y1b4{bottom:244.576803pt;}
.yca{bottom:246.948131pt;}
.y4d{bottom:247.892135pt;}
.y24{bottom:253.397605pt;}
.y121{bottom:255.098799pt;}
.y173{bottom:255.176799pt;}
.y130{bottom:256.027333pt;}
.ya6{bottom:259.710560pt;}
.yc9{bottom:260.281464pt;}
.y4c{bottom:261.224135pt;}
.y172{bottom:266.506799pt;}
.y23{bottom:266.729605pt;}
.y120{bottom:268.430799pt;}
.y12f{bottom:269.360667pt;}
.yc8{bottom:273.618798pt;}
.y1b3{bottom:273.921995pt;}
.y4b{bottom:274.556135pt;}
.ya5{bottom:275.297227pt;}
.y171{bottom:277.836799pt;}
.y22{bottom:280.116280pt;}
.y11f{bottom:281.762799pt;}
.y12e{bottom:282.692667pt;}
.yc7{bottom:286.950798pt;}
.y4a{bottom:287.888135pt;}
.y170{bottom:289.166799pt;}
.ya4{bottom:290.883893pt;}
.y21{bottom:293.448280pt;}
.y11e{bottom:295.094799pt;}
.yc6{bottom:300.282798pt;}
.y16f{bottom:300.496799pt;}
.y1b2{bottom:300.585993pt;}
.y49{bottom:301.220135pt;}
.ya3{bottom:306.470560pt;}
.y11d{bottom:308.426799pt;}
.y16e{bottom:311.826799pt;}
.yc5{bottom:313.614798pt;}
.y1b1{bottom:313.917993pt;}
.y48{bottom:314.552135pt;}
.ya2{bottom:322.057227pt;}
.y20{bottom:322.776280pt;}
.y16d{bottom:323.156799pt;}
.yc4{bottom:326.961485pt;}
.y1b0{bottom:327.249993pt;}
.y47{bottom:327.898781pt;}
.y16c{bottom:334.486799pt;}
.y1f{bottom:336.108280pt;}
.ya1{bottom:337.643893pt;}
.y11c{bottom:337.777465pt;}
.yc3{bottom:340.293485pt;}
.y1af{bottom:340.581993pt;}
.y46{bottom:341.230781pt;}
.y13e{bottom:343.494670pt;}
.y16b{bottom:345.816799pt;}
.y1e{bottom:349.440280pt;}
.y11b{bottom:351.109465pt;}
.ya0{bottom:353.230560pt;}
.yc2{bottom:353.625485pt;}
.y1ae{bottom:353.913993pt;}
.y45{bottom:354.562781pt;}
.y16a{bottom:357.146799pt;}
.y1d{bottom:362.772280pt;}
.y11a{bottom:364.441465pt;}
.yc1{bottom:366.957485pt;}
.y1ad{bottom:367.245993pt;}
.y44{bottom:367.894781pt;}
.y169{bottom:368.476799pt;}
.y9f{bottom:368.817227pt;}
.y1c{bottom:376.104280pt;}
.y119{bottom:377.773465pt;}
.y168{bottom:379.806799pt;}
.yc0{bottom:380.289485pt;}
.y1ac{bottom:380.577993pt;}
.y43{bottom:381.226781pt;}
.y9e{bottom:384.403893pt;}
.y1b{bottom:389.436280pt;}
.y118{bottom:391.105465pt;}
.y167{bottom:391.136799pt;}
.ybf{bottom:393.621485pt;}
.y1ab{bottom:393.909993pt;}
.y42{bottom:394.558781pt;}
.y9d{bottom:399.990560pt;}
.y166{bottom:402.466799pt;}
.y1a{bottom:402.768280pt;}
.y117{bottom:404.437465pt;}
.ybe{bottom:406.953485pt;}
.y41{bottom:407.890781pt;}
.y165{bottom:413.796799pt;}
.y1aa{bottom:413.903327pt;}
.y9c{bottom:415.577227pt;}
.y116{bottom:417.769465pt;}
.ybd{bottom:420.285485pt;}
.y40{bottom:421.222781pt;}
.y164{bottom:425.126799pt;}
.y1a9{bottom:427.235327pt;}
.y115{bottom:431.101465pt;}
.y9b{bottom:431.163893pt;}
.ybc{bottom:433.617485pt;}
.y3f{bottom:434.554781pt;}
.y163{bottom:436.456799pt;}
.y19{bottom:442.896280pt;}
.y114{bottom:444.433465pt;}
.y9a{bottom:446.750560pt;}
.ybb{bottom:446.949485pt;}
.y1a8{bottom:447.239327pt;}
.y162{bottom:447.786799pt;}
.y3e{bottom:447.886781pt;}
.y18{bottom:457.560280pt;}
.y113{bottom:457.765465pt;}
.y161{bottom:459.116799pt;}
.yba{bottom:460.281485pt;}
.y3d{bottom:461.218781pt;}
.y99{bottom:462.337227pt;}
.y1a7{bottom:467.243327pt;}
.y160{bottom:470.446799pt;}
.y112{bottom:471.097465pt;}
.y17{bottom:472.224280pt;}
.yb9{bottom:473.616151pt;}
.y3c{bottom:474.550781pt;}
.y98{bottom:477.923893pt;}
.y1a6{bottom:480.576660pt;}
.y15f{bottom:481.776799pt;}
.y111{bottom:484.429465pt;}
.y16{bottom:486.888280pt;}
.yb8{bottom:486.948151pt;}
.y3b{bottom:487.884115pt;}
.y15e{bottom:493.106799pt;}
.y97{bottom:493.510560pt;}
.y110{bottom:497.761465pt;}
.yb7{bottom:500.280151pt;}
.y15{bottom:501.552280pt;}
.y15d{bottom:504.436799pt;}
.y1a5{bottom:507.243327pt;}
.y96{bottom:509.097227pt;}
.y10f{bottom:511.094799pt;}
.yb6{bottom:513.613485pt;}
.y15c{bottom:515.766799pt;}
.y14{bottom:516.216280pt;}
.y3a{bottom:517.218781pt;}
.y1a4{bottom:520.576660pt;}
.y10e{bottom:524.426799pt;}
.y95{bottom:524.683893pt;}
.y15b{bottom:527.096799pt;}
.y39{bottom:530.553448pt;}
.y13{bottom:530.880280pt;}
.y10d{bottom:537.760132pt;}
.y15a{bottom:538.426799pt;}
.y94{bottom:540.270560pt;}
.yb5{bottom:542.950818pt;}
.y38{bottom:543.885448pt;}
.y12{bottom:545.544280pt;}
.y1a3{bottom:548.553989pt;}
.y159{bottom:549.760132pt;}
.y93{bottom:555.857227pt;}
.yb4{bottom:556.282818pt;}
.y37{bottom:557.220115pt;}
.y11{bottom:560.208280pt;}
.y1a2{bottom:561.885989pt;}
.y10c{bottom:567.112173pt;}
.yb3{bottom:569.614818pt;}
.y36{bottom:570.552115pt;}
.y92{bottom:571.443893pt;}
.y10{bottom:574.872280pt;}
.y1a1{bottom:575.217989pt;}
.y10b{bottom:580.444173pt;}
.yb2{bottom:582.946818pt;}
.y35{bottom:583.884115pt;}
.y91{bottom:587.030560pt;}
.y1a0{bottom:588.549989pt;}
.yf{bottom:589.536280pt;}
.y158{bottom:593.760132pt;}
.y10a{bottom:593.776173pt;}
.y19f{bottom:601.881989pt;}
.y90{bottom:602.617227pt;}
.ye{bottom:604.200280pt;}
.y109{bottom:607.108173pt;}
.y19e{bottom:615.213989pt;}
.y8f{bottom:618.203893pt;}
.yd{bottom:618.864280pt;}
.y108{bottom:620.440173pt;}
.y157{bottom:620.461506pt;}
.y19d{bottom:628.547323pt;}
.yc{bottom:633.528280pt;}
.y107{bottom:633.772173pt;}
.y8e{bottom:633.790560pt;}
.y156{bottom:633.793506pt;}
.y60{bottom:634.689872pt;}
.ye0{bottom:641.091202pt;}
.y106{bottom:647.104173pt;}
.y155{bottom:647.125506pt;}
.y5f{bottom:648.021872pt;}
.y8d{bottom:649.377227pt;}
.ydf{bottom:654.423202pt;}
.y19c{bottom:655.222030pt;}
.yb{bottom:660.194946pt;}
.y105{bottom:660.436173pt;}
.y154{bottom:660.457506pt;}
.y5e{bottom:661.353872pt;}
.y8c{bottom:664.963893pt;}
.yde{bottom:667.755202pt;}
.y19b{bottom:668.554030pt;}
.y104{bottom:673.768173pt;}
.y153{bottom:673.789506pt;}
.y5d{bottom:674.687206pt;}
.ya{bottom:676.194906pt;}
.y8b{bottom:680.550560pt;}
.ydd{bottom:681.087202pt;}
.y19a{bottom:681.886030pt;}
.y103{bottom:687.100173pt;}
.y152{bottom:687.121506pt;}
.y5c{bottom:688.019206pt;}
.y9{bottom:692.194906pt;}
.ydc{bottom:694.419202pt;}
.y199{bottom:695.218030pt;}
.y8a{bottom:696.137227pt;}
.y102{bottom:700.432173pt;}
.y151{bottom:700.453506pt;}
.ydb{bottom:707.751202pt;}
.y198{bottom:708.550030pt;}
.y89{bottom:711.723893pt;}
.y101{bottom:713.764173pt;}
.y150{bottom:713.785506pt;}
.y71{bottom:716.145589pt;}
.yda{bottom:721.083202pt;}
.y8{bottom:721.512239pt;}
.y197{bottom:721.882030pt;}
.y100{bottom:727.096173pt;}
.y14f{bottom:727.117506pt;}
.y88{bottom:727.310560pt;}
.y70{bottom:731.730794pt;}
.yd9{bottom:734.415202pt;}
.y196{bottom:735.214030pt;}
.yff{bottom:740.428173pt;}
.y14e{bottom:740.449506pt;}
.y87{bottom:742.897227pt;}
.y6f{bottom:747.315999pt;}
.y195{bottom:748.547363pt;}
.yfe{bottom:753.762839pt;}
.y14d{bottom:753.781506pt;}
.y86{bottom:758.483893pt;}
.y7{bottom:761.517572pt;}
.yec{bottom:762.515238pt;}
.y6e{bottom:762.901367pt;}
.yfd{bottom:767.094839pt;}
.y14c{bottom:767.113506pt;}
.y85{bottom:774.070560pt;}
.y194{bottom:775.218030pt;}
.yeb{bottom:778.101904pt;}
.y6d{bottom:778.486572pt;}
.yfc{bottom:780.442839pt;}
.y14b{bottom:780.445506pt;}
.y193{bottom:788.550030pt;}
.y84{bottom:789.652513pt;}
.yea{bottom:793.688571pt;}
.yfb{bottom:793.774839pt;}
.y14a{bottom:793.777506pt;}
.y6c{bottom:794.071696pt;}
.y6{bottom:801.522906pt;}
.y192{bottom:801.882030pt;}
.y83{bottom:805.239179pt;}
.yfa{bottom:807.106839pt;}
.y149{bottom:807.109506pt;}
.ye9{bottom:809.275238pt;}
.y6b{bottom:809.656901pt;}
.y191{bottom:815.214030pt;}
.yf9{bottom:820.438839pt;}
.y148{bottom:820.441506pt;}
.y82{bottom:820.825846pt;}
.ye8{bottom:824.861904pt;}
.y6a{bottom:825.242269pt;}
.y190{bottom:828.547363pt;}
.yf8{bottom:833.770839pt;}
.y147{bottom:833.773506pt;}
.y81{bottom:836.412513pt;}
.ye7{bottom:840.448571pt;}
.y69{bottom:840.827474pt;}
.y5{bottom:841.528239pt;}
.yf7{bottom:847.102839pt;}
.y146{bottom:847.105506pt;}
.y29{bottom:848.326009pt;}
.y80{bottom:851.999179pt;}
.y18f{bottom:855.247363pt;}
.ye6{bottom:856.035238pt;}
.y68{bottom:856.412679pt;}
.yf6{bottom:860.434839pt;}
.y145{bottom:860.437506pt;}
.y18e{bottom:866.577363pt;}
.y7f{bottom:867.585846pt;}
.ye5{bottom:871.989766pt;}
.y67{bottom:871.997965pt;}
.yf5{bottom:873.766839pt;}
.y144{bottom:873.769506pt;}
.y18d{bottom:877.907363pt;}
.y7e{bottom:883.172513pt;}
.yf4{bottom:887.098839pt;}
.y143{bottom:887.101506pt;}
.ye4{bottom:887.576432pt;}
.y66{bottom:887.583171pt;}
.y18c{bottom:889.237363pt;}
.y7d{bottom:898.759179pt;}
.yf3{bottom:900.430839pt;}
.y142{bottom:900.433506pt;}
.y18b{bottom:900.567363pt;}
.ye3{bottom:903.163099pt;}
.y65{bottom:903.168376pt;}
.y18a{bottom:911.897363pt;}
.yf2{bottom:913.762839pt;}
.y141{bottom:913.765506pt;}
.y7c{bottom:914.345846pt;}
.ye2{bottom:918.749766pt;}
.y64{bottom:918.753581pt;}
.y189{bottom:923.227363pt;}
.yf1{bottom:927.094839pt;}
.y140{bottom:927.097506pt;}
.y7b{bottom:929.932513pt;}
.ye1{bottom:934.336432pt;}
.y63{bottom:934.338949pt;}
.y188{bottom:934.557363pt;}
.yf0{bottom:940.428173pt;}
.y13f{bottom:940.429506pt;}
.y77{bottom:945.509847pt;}
.y7a{bottom:945.519179pt;}
.y187{bottom:945.887363pt;}
.y62{bottom:949.923099pt;}
.yef{bottom:953.761506pt;}
.y79{bottom:955.515179pt;}
.y186{bottom:957.217363pt;}
.y61{bottom:965.509766pt;}
.y78{bottom:965.511179pt;}
.yee{bottom:967.093506pt;}
.y185{bottom:968.547363pt;}
.y72{bottom:1013.902507pt;}
.yb1{bottom:1013.996908pt;}
.y34{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.h10{height:21.193555pt;}
.h2{height:30.687500pt;}
.h2c{height:31.476562pt;}
.h9{height:34.523438pt;}
.h1d{height:36.922667pt;}
.h1c{height:37.066140pt;}
.h1a{height:37.066465pt;}
.h1b{height:37.067116pt;}
.h19{height:37.070684pt;}
.h18{height:38.229333pt;}
.h1e{height:38.248190pt;}
.h2f{height:39.560000pt;}
.h2d{height:40.080000pt;}
.h3{height:40.604167pt;}
.h2e{height:40.960000pt;}
.h14{height:42.195312pt;}
.h11{height:43.141927pt;}
.h6{height:43.600260pt;}
.h7{height:43.600423pt;}
.h12{height:43.887578pt;}
.h30{height:44.834667pt;}
.ha{height:45.703125pt;}
.hc{height:47.472000pt;}
.h26{height:47.592605pt;}
.h1f{height:47.598101pt;}
.h16{height:47.598182pt;}
.h29{height:47.630105pt;}
.h23{height:47.630141pt;}
.h2b{height:47.630145pt;}
.h20{height:47.635515pt;}
.h17{height:47.640767pt;}
.h27{height:47.645938pt;}
.hd{height:47.646101pt;}
.h2a{height:47.646105pt;}
.h22{height:47.646182pt;}
.h13{height:47.646264pt;}
.h25{height:47.651271pt;}
.he{height:47.651434pt;}
.h28{height:47.651438pt;}
.h24{height:47.651475pt;}
.h21{height:47.651515pt;}
.h15{height:48.096000pt;}
.hb{height:49.152000pt;}
.h4{height:50.755208pt;}
.h8{height:51.674479pt;}
.hf{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.425200pt;}
.x3{left:54.803202pt;}
.x6{left:125.685069pt;}
.x5{left:207.874003pt;}
.xa{left:212.065172pt;}
.x8{left:223.874003pt;}
.xe{left:225.874125pt;}
.xf{left:268.887858pt;}
.xc{left:296.082540pt;}
.x9{left:421.990519pt;}
.x4{left:521.612549pt;}
.xd{left:531.693200pt;}
.xb{left:708.791829pt;}
.x2{left:710.134766pt;}
.x1{left:733.334391pt;}
}




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