
    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_a8f72a4b79ed9d194b4bab97.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_70234fa27492d3eea37192f4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_ce4e11c0081da370cbacf00f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_56ec8adfb6a179eb75bbfc8f.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_ea0e072b18fe894a259c13ac.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.281250;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_fc946530c584e11822927419.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v1{vertical-align:-96.454800px;}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-1.440000px;}
.ls18{letter-spacing:-1.008000px;}
.ls27{letter-spacing:-0.936000px;}
.ls35{letter-spacing:-0.720000px;}
.ls42{letter-spacing:-0.648000px;}
.ls31{letter-spacing:-0.504000px;}
.ls2{letter-spacing:-0.336960px;}
.lsd{letter-spacing:-0.288000px;}
.ls26{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.168480px;}
.ls10{letter-spacing:-0.144000px;}
.ls32{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.084240px;}
.lse{letter-spacing:0.144000px;}
.ls3d{letter-spacing:0.151200px;}
.ls45{letter-spacing:0.191520px;}
.ls8{letter-spacing:0.216000px;}
.ls23{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.336960px;}
.ls3f{letter-spacing:0.385920px;}
.ls34{letter-spacing:0.432000px;}
.ls1c{letter-spacing:0.504000px;}
.ls2c{letter-spacing:0.720000px;}
.ls44{letter-spacing:0.727200px;}
.ls2e{letter-spacing:0.792000px;}
.ls3e{letter-spacing:0.864000px;}
.ls25{letter-spacing:1.224000px;}
.ls2a{letter-spacing:1.440000px;}
.ls3b{letter-spacing:2.160000px;}
.ls40{letter-spacing:2.872800px;}
.ls14{letter-spacing:2.880000px;}
.ls36{letter-spacing:2.887200px;}
.ls30{letter-spacing:3.600000px;}
.ls2f{letter-spacing:4.320000px;}
.ls15{letter-spacing:5.040000px;}
.ls38{letter-spacing:5.047200px;}
.ls13{letter-spacing:5.760000px;}
.ls37{letter-spacing:6.480000px;}
.ls1b{letter-spacing:7.200000px;}
.ls22{letter-spacing:7.920000px;}
.lsa{letter-spacing:10.800000px;}
.ls9{letter-spacing:11.520000px;}
.ls1d{letter-spacing:11.527200px;}
.ls28{letter-spacing:12.240000px;}
.ls29{letter-spacing:12.960000px;}
.ls41{letter-spacing:14.400000px;}
.ls19{letter-spacing:15.120000px;}
.ls12{letter-spacing:15.840000px;}
.ls3a{letter-spacing:16.560000px;}
.ls21{letter-spacing:17.280000px;}
.ls1e{letter-spacing:18.720000px;}
.ls33{letter-spacing:19.440000px;}
.ls24{letter-spacing:23.040000px;}
.ls3c{letter-spacing:27.360000px;}
.ls17{letter-spacing:28.080000px;}
.ls39{letter-spacing:30.240000px;}
.ls1f{letter-spacing:30.960000px;}
.lsb{letter-spacing:32.400000px;}
.ls1a{letter-spacing:33.120000px;}
.ls16{letter-spacing:41.767200px;}
.ls20{letter-spacing:44.784000px;}
.ls7{letter-spacing:54.864000px;}
.lsc{letter-spacing:64.224000px;}
.ls2d{letter-spacing:136.736640px;}
.ls43{letter-spacing:147.600000px;}
.ls1{letter-spacing:967.496400px;}
.ls2b{letter-spacing:2460.960000px;}
.ls5{letter-spacing:2496.960000px;}
.ls46{letter-spacing:4110.480000px;}
.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;}
}
.ws6f{word-spacing:-59.760000px;}
.ws7{word-spacing:-21.396960px;}
.ws2{word-spacing:-21.144240px;}
.ws1{word-spacing:-21.060000px;}
.ws0{word-spacing:-20.723040px;}
.ws70{word-spacing:-18.792000px;}
.wsd{word-spacing:-18.144000px;}
.ws5c{word-spacing:-18.072000px;}
.wsb{word-spacing:-18.000000px;}
.ws72{word-spacing:-17.928000px;}
.wsc{word-spacing:-17.856000px;}
.ws5a{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.ws84{word-spacing:-17.280000px;}
.ws5b{word-spacing:-17.064000px;}
.ws9{word-spacing:-1.263600px;}
.ws5{word-spacing:-0.505440px;}
.ws78{word-spacing:-0.432000px;}
.wsab{word-spacing:-0.383040px;}
.ws65{word-spacing:-0.288000px;}
.wse{word-spacing:-0.216000px;}
.ws89{word-spacing:-0.192960px;}
.wsaa{word-spacing:-0.191520px;}
.ws8{word-spacing:-0.168480px;}
.ws10{word-spacing:-0.144000px;}
.ws11{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.ws13{word-spacing:0.144000px;}
.ws3{word-spacing:0.168480px;}
.ws14{word-spacing:0.288000px;}
.ws6{word-spacing:0.336960px;}
.ws75{word-spacing:0.504000px;}
.ws8f{word-spacing:0.648000px;}
.ws55{word-spacing:0.720000px;}
.ws12{word-spacing:1.008000px;}
.ws44{word-spacing:1.296000px;}
.ws43{word-spacing:1.440000px;}
.ws3a{word-spacing:1.728000px;}
.ws60{word-spacing:2.160000px;}
.ws6e{word-spacing:2.448000px;}
.ws7f{word-spacing:2.736000px;}
.ws2d{word-spacing:2.808000px;}
.ws2f{word-spacing:2.880000px;}
.ws2c{word-spacing:3.168000px;}
.ws67{word-spacing:3.600000px;}
.ws22{word-spacing:3.888000px;}
.ws58{word-spacing:4.176000px;}
.ws57{word-spacing:4.320000px;}
.ws73{word-spacing:4.608000px;}
.ws2e{word-spacing:5.040000px;}
.wsf{word-spacing:5.328000px;}
.ws46{word-spacing:5.616000px;}
.ws2a{word-spacing:5.760000px;}
.ws2b{word-spacing:6.048000px;}
.ws27{word-spacing:6.480000px;}
.ws26{word-spacing:6.768000px;}
.ws51{word-spacing:7.200000px;}
.ws52{word-spacing:7.488000px;}
.ws4c{word-spacing:7.920000px;}
.ws86{word-spacing:8.208000px;}
.ws4a{word-spacing:8.640000px;}
.ws33{word-spacing:8.928000px;}
.ws6d{word-spacing:9.360000px;}
.ws87{word-spacing:9.648000px;}
.wsa8{word-spacing:9.936000px;}
.ws90{word-spacing:10.080000px;}
.ws63{word-spacing:10.368000px;}
.ws19{word-spacing:10.800000px;}
.ws1a{word-spacing:11.088000px;}
.ws8a{word-spacing:11.376000px;}
.ws16{word-spacing:11.520000px;}
.ws15{word-spacing:11.808000px;}
.ws8c{word-spacing:12.096000px;}
.ws5e{word-spacing:12.240000px;}
.ws1f{word-spacing:12.528000px;}
.ws77{word-spacing:12.816000px;}
.ws1e{word-spacing:12.960000px;}
.ws35{word-spacing:13.248000px;}
.ws36{word-spacing:13.680000px;}
.ws6b{word-spacing:13.968000px;}
.ws68{word-spacing:14.256000px;}
.ws83{word-spacing:14.400000px;}
.ws3b{word-spacing:14.688000px;}
.ws64{word-spacing:14.976000px;}
.ws3f{word-spacing:15.120000px;}
.ws40{word-spacing:15.408000px;}
.wsa9{word-spacing:15.696000px;}
.ws3e{word-spacing:15.840000px;}
.ws28{word-spacing:16.128000px;}
.ws37{word-spacing:16.560000px;}
.ws69{word-spacing:16.848000px;}
.ws71{word-spacing:17.136000px;}
.ws4d{word-spacing:17.280000px;}
.ws4f{word-spacing:17.568000px;}
.ws8d{word-spacing:17.856000px;}
.ws66{word-spacing:18.000000px;}
.ws4e{word-spacing:18.288000px;}
.ws8b{word-spacing:18.576000px;}
.ws47{word-spacing:18.720000px;}
.ws48{word-spacing:19.008000px;}
.ws30{word-spacing:19.440000px;}
.ws50{word-spacing:19.728000px;}
.ws54{word-spacing:20.160000px;}
.ws53{word-spacing:20.448000px;}
.wsa0{word-spacing:20.880000px;}
.ws5d{word-spacing:21.168000px;}
.ws82{word-spacing:21.456000px;}
.ws18{word-spacing:21.600000px;}
.ws17{word-spacing:21.888000px;}
.ws76{word-spacing:22.176000px;}
.wsa2{word-spacing:22.320000px;}
.ws1b{word-spacing:22.608000px;}
.ws56{word-spacing:23.040000px;}
.ws94{word-spacing:23.328000px;}
.ws3d{word-spacing:23.616000px;}
.ws5f{word-spacing:23.760000px;}
.ws3c{word-spacing:24.048000px;}
.ws4b{word-spacing:24.480000px;}
.ws34{word-spacing:24.768000px;}
.ws29{word-spacing:25.200000px;}
.ws59{word-spacing:25.488000px;}
.ws23{word-spacing:26.208000px;}
.ws93{word-spacing:26.928000px;}
.ws61{word-spacing:27.360000px;}
.ws62{word-spacing:27.648000px;}
.ws39{word-spacing:28.080000px;}
.ws38{word-spacing:28.368000px;}
.ws9b{word-spacing:28.800000px;}
.ws7b{word-spacing:29.088000px;}
.ws88{word-spacing:29.520000px;}
.ws6a{word-spacing:29.808000px;}
.ws6c{word-spacing:30.240000px;}
.ws85{word-spacing:30.528000px;}
.ws24{word-spacing:30.960000px;}
.ws49{word-spacing:31.248000px;}
.ws25{word-spacing:31.968000px;}
.ws1c{word-spacing:32.400000px;}
.ws1d{word-spacing:32.688000px;}
.ws45{word-spacing:32.976000px;}
.ws20{word-spacing:33.120000px;}
.ws21{word-spacing:33.408000px;}
.ws41{word-spacing:34.560000px;}
.ws98{word-spacing:34.848000px;}
.ws81{word-spacing:35.136000px;}
.ws80{word-spacing:35.280000px;}
.ws8e{word-spacing:35.568000px;}
.ws7a{word-spacing:37.440000px;}
.ws42{word-spacing:39.168000px;}
.ws7d{word-spacing:40.320000px;}
.ws32{word-spacing:42.048000px;}
.ws31{word-spacing:42.480000px;}
.ws9f{word-spacing:42.768000px;}
.ws9a{word-spacing:43.488000px;}
.wsa5{word-spacing:46.800000px;}
.wsa4{word-spacing:47.088000px;}
.wsa3{word-spacing:47.520000px;}
.ws79{word-spacing:49.680000px;}
.wsa1{word-spacing:52.128000px;}
.ws96{word-spacing:54.000000px;}
.ws74{word-spacing:54.144000px;}
.ws97{word-spacing:56.880000px;}
.wsa6{word-spacing:60.768000px;}
.ws9c{word-spacing:68.400000px;}
.ws91{word-spacing:74.160000px;}
.ws9e{word-spacing:75.600000px;}
.ws7c{word-spacing:111.600000px;}
.ws99{word-spacing:112.176000px;}
.ws95{word-spacing:116.640000px;}
.ws7e{word-spacing:118.368000px;}
.ws9d{word-spacing:124.560000px;}
.wsa7{word-spacing:130.176000px;}
.ws92{word-spacing:147.888000px;}
._12{margin-left:-14.780880px;}
._11{margin-left:-7.901136px;}
._2{margin-left:-2.771496px;}
._1{margin-left:-1.389960px;}
._0{width:1.322568px;}
._a{width:3.216888px;}
._3{width:5.421960px;}
._8{width:6.741432px;}
._14{width:7.794864px;}
._e{width:10.245960px;}
._5{width:12.459456px;}
._16{width:14.184000px;}
._9{width:16.358616px;}
._15{width:20.265120px;}
._4{width:22.392000px;}
._c{width:24.574320px;}
._10{width:26.685432px;}
._d{width:28.485432px;}
._f{width:30.185352px;}
._7{width:31.485960px;}
._6{width:32.539392px;}
._b{width:38.720592px;}
._18{width:42.645960px;}
._13{width:54.875160px;}
._17{width:118.981728px;}
._1d{width:304.421040px;}
._1a{width:1462.320000px;}
._1c{width:3339.360000px;}
._1b{width:3784.320000px;}
._19{width:4129.920000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ybe{bottom:4.500000px;}
.y12f{bottom:14.220000px;}
.y76{bottom:14.580000px;}
.yd7{bottom:14.760000px;}
.y1e{bottom:17.100000px;}
.y20{bottom:17.280000px;}
.ybd{bottom:25.200000px;}
.ya5{bottom:30.060000px;}
.y7a{bottom:45.720000px;}
.yc0{bottom:45.900000px;}
.y32{bottom:57.780000px;}
.ya7{bottom:69.480000px;}
.y7d{bottom:76.680000px;}
.y78{bottom:76.860000px;}
.y81{bottom:107.820000px;}
.y127{bottom:113.400000px;}
.yd5{bottom:114.840000px;}
.y12c{bottom:115.200000px;}
.ya0{bottom:115.560000px;}
.y116{bottom:119.880000px;}
.y53{bottom:127.260000px;}
.y15b{bottom:128.880000px;}
.yd6{bottom:129.600000px;}
.y147{bottom:129.780000px;}
.yba{bottom:131.220000px;}
.y18f{bottom:133.560000px;}
.y74{bottom:136.260000px;}
.y8a{bottom:137.700000px;}
.y18d{bottom:138.060000px;}
.yde{bottom:138.780000px;}
.ye3{bottom:138.960000px;}
.y170{bottom:141.300000px;}
.y15d{bottom:143.640000px;}
.y126{bottom:144.360000px;}
.y18c{bottom:144.900000px;}
.y12b{bottom:146.340000px;}
.y9c{bottom:146.700000px;}
.y115{bottom:151.020000px;}
.y183{bottom:153.720000px;}
.y17d{bottom:154.260000px;}
.y1c{bottom:154.275300px;}
.y17b{bottom:154.980000px;}
.y52{bottom:158.220000px;}
.y17f{bottom:158.760000px;}
.y195{bottom:160.920000px;}
.yb9{bottom:163.620000px;}
.y73{bottom:167.400000px;}
.y89{bottom:168.840000px;}
.ydd{bottom:169.920000px;}
.y16f{bottom:172.260000px;}
.yf3{bottom:172.440000px;}
.y182{bottom:174.420000px;}
.y15c{bottom:174.600000px;}
.y17e{bottom:174.960000px;}
.y125{bottom:175.500000px;}
.y17a{bottom:175.680000px;}
.y12a{bottom:177.300000px;}
.y9b{bottom:177.660000px;}
.y194{bottom:181.620000px;}
.y114{bottom:181.980000px;}
.y51{bottom:189.360000px;}
.yd4{bottom:192.420000px;}
.yb8{bottom:194.760000px;}
.y181{bottom:195.120000px;}
.y179{bottom:196.380000px;}
.y72{bottom:199.620000px;}
.y88{bottom:199.800000px;}
.y156{bottom:200.880000px;}
.y193{bottom:202.320000px;}
.y1b{bottom:202.502700px;}
.yf2{bottom:203.400000px;}
.y124{bottom:206.460000px;}
.y9a{bottom:208.800000px;}
.y178{bottom:212.580000px;}
.y113{bottom:213.120000px;}
.y180{bottom:215.820000px;}
.y50{bottom:220.320000px;}
.yf0{bottom:220.680000px;}
.y159{bottom:222.840000px;}
.y192{bottom:223.020000px;}
.y1a{bottom:226.805940px;}
.yb7{bottom:226.980000px;}
.y71{bottom:230.760000px;}
.ydb{bottom:232.020000px;}
.y87{bottom:232.920000px;}
.y16e{bottom:234.360000px;}
.yf1{bottom:235.260000px;}
.y123{bottom:237.600000px;}
.y99{bottom:239.760000px;}
.y191{bottom:243.720000px;}
.y112{bottom:244.080000px;}
.y19{bottom:250.919640px;}
.y4f{bottom:251.460000px;}
.y130{bottom:254.700000px;}
.yd3{bottom:254.880000px;}
.yb6{bottom:258.120000px;}
.y190{bottom:259.920000px;}
.y70{bottom:261.720000px;}
.y13f{bottom:262.980000px;}
.y16d{bottom:265.500000px;}
.y86{bottom:267.120000px;}
.y122{bottom:268.560000px;}
.y146{bottom:269.280000px;}
.y18{bottom:270.000000px;}
.y98{bottom:270.900000px;}
.y111{bottom:275.220000px;}
.y4e{bottom:282.420000px;}
.yd2{bottom:286.200000px;}
.yb5{bottom:290.520000px;}
.y6f{bottom:294.120000px;}
.y16c{bottom:296.460000px;}
.y85{bottom:298.080000px;}
.y121{bottom:299.700000px;}
.y145{bottom:300.420000px;}
.y97{bottom:301.860000px;}
.y110{bottom:306.180000px;}
.y4d{bottom:313.560000px;}
.yec{bottom:314.460000px;}
.y80{bottom:315.180000px;}
.yd1{bottom:317.340000px;}
.yb4{bottom:322.920000px;}
.y6e{bottom:325.080000px;}
.y16b{bottom:327.600000px;}
.yef{bottom:329.220000px;}
.y84{bottom:329.940000px;}
.y120{bottom:330.300000px;}
.y15a{bottom:330.660000px;}
.y144{bottom:331.380000px;}
.yf6{bottom:332.640000px;}
.y96{bottom:333.000000px;}
.y10f{bottom:337.320000px;}
.y4c{bottom:344.520000px;}
.y31{bottom:347.940000px;}
.yd0{bottom:348.300000px;}
.yb3{bottom:355.320000px;}
.y6d{bottom:356.220000px;}
.y16a{bottom:359.820000px;}
.yee{bottom:360.180000px;}
.y83{bottom:360.900000px;}
.y11f{bottom:361.440000px;}
.y9f{bottom:363.600000px;}
.y95{bottom:363.960000px;}
.y10e{bottom:368.280000px;}
.y4b{bottom:375.660000px;}
.ycf{bottom:379.440000px;}
.y30{bottom:384.300000px;}
.y149{bottom:387.180000px;}
.y6c{bottom:387.360000px;}
.yb2{bottom:387.720000px;}
.y169{bottom:390.960000px;}
.y82{bottom:392.040000px;}
.y11e{bottom:392.400000px;}
.y143{bottom:393.480000px;}
.y94{bottom:395.100000px;}
.y10d{bottom:399.420000px;}
.y4a{bottom:406.620000px;}
.yce{bottom:410.400000px;}
.y13c{bottom:418.320000px;}
.y6b{bottom:419.580000px;}
.yb1{bottom:420.120000px;}
.y2f{bottom:420.480000px;}
.y168{bottom:421.920000px;}
.y11d{bottom:423.900000px;}
.y142{bottom:424.620000px;}
.y17{bottom:425.203380px;}
.y93{bottom:426.060000px;}
.y10c{bottom:430.380000px;}
.y49{bottom:437.760000px;}
.y7c{bottom:440.280000px;}
.ycd{bottom:441.180000px;}
.y10b{bottom:447.480000px;}
.y13b{bottom:449.280000px;}
.y16{bottom:449.317080px;}
.y6a{bottom:450.720000px;}
.yb0{bottom:452.340000px;}
.y167{bottom:453.060000px;}
.yed{bottom:453.420000px;}
.y7f{bottom:454.860000px;}
.y141{bottom:455.580000px;}
.y2e{bottom:456.660000px;}
.y92{bottom:457.020000px;}
.y48{bottom:468.720000px;}
.y10a{bottom:468.900000px;}
.ycc{bottom:472.140000px;}
.y15{bottom:473.430780px;}
.y137{bottom:480.420000px;}
.y69{bottom:481.680000px;}
.yaf{bottom:483.480000px;}
.y166{bottom:484.020000px;}
.y7e{bottom:485.820000px;}
.y140{bottom:486.720000px;}
.yf5{bottom:487.800000px;}
.y91{bottom:488.160000px;}
.y2d{bottom:492.840000px;}
.y14{bottom:497.544480px;}
.y47{bottom:499.860000px;}
.ye7{bottom:501.480000px;}
.y155{bottom:503.100000px;}
.ycb{bottom:503.640000px;}
.y136{bottom:511.380000px;}
.y68{bottom:512.820000px;}
.y165{bottom:515.160000px;}
.yae{bottom:515.880000px;}
.yeb{bottom:516.240000px;}
.y11c{bottom:516.960000px;}
.y13e{bottom:517.680000px;}
.yf4{bottom:518.760000px;}
.y90{bottom:519.120000px;}
.y13{bottom:521.847720px;}
.y109{bottom:525.420000px;}
.y2c{bottom:529.200000px;}
.y46{bottom:532.980000px;}
.y77{bottom:534.060000px;}
.yca{bottom:534.600000px;}
.y135{bottom:542.340000px;}
.y67{bottom:545.040000px;}
.y12{bottom:545.961420px;}
.y164{bottom:546.120000px;}
.yea{bottom:547.200000px;}
.y11b{bottom:547.920000px;}
.yad{bottom:548.280000px;}
.y7b{bottom:548.820000px;}
.y8f{bottom:550.260000px;}
.yc8{bottom:551.700000px;}
.y108{bottom:556.920000px;}
.y18b{bottom:562.195800px;}
.y2b{bottom:565.380000px;}
.y45{bottom:566.640000px;}
.y11{bottom:570.075120px;}
.y66{bottom:576.180000px;}
.yc9{bottom:576.900000px;}
.y163{bottom:577.260000px;}
.ye9{bottom:578.340000px;}
.y11a{bottom:578.700000px;}
.yac{bottom:579.240000px;}
.y79{bottom:579.780000px;}
.y8e{bottom:581.220000px;}
.y1b1{bottom:581.400000px;}
.y107{bottom:587.880000px;}
.y18a{bottom:589.726800px;}
.y10{bottom:594.188820px;}
.y119{bottom:596.160000px;}
.y44{bottom:598.140000px;}
.y2a{bottom:601.560000px;}
.y1b0{bottom:602.100000px;}
.y133{bottom:604.440000px;}
.y65{bottom:609.300000px;}
.y162{bottom:609.480000px;}
.y158{bottom:610.920000px;}
.yab{bottom:611.640000px;}
.y129{bottom:612.000000px;}
.y8d{bottom:612.360000px;}
.yc6{bottom:614.700000px;}
.y189{bottom:617.257800px;}
.y118{bottom:617.580000px;}
.y106{bottom:619.020000px;}
.y176{bottom:622.260000px;}
.y17c{bottom:622.620000px;}
.y1af{bottom:622.800000px;}
.y75{bottom:628.020000px;}
.yf{bottom:630.011880px;}
.y43{bottom:630.540000px;}
.y132{bottom:635.580000px;}
.y29{bottom:637.740000px;}
.yc7{bottom:639.900000px;}
.ye8{bottom:640.440000px;}
.y161{bottom:640.620000px;}
.y13d{bottom:641.880000px;}
.yaa{bottom:642.600000px;}
.y128{bottom:642.960000px;}
.y64{bottom:643.320000px;}
.y1ae{bottom:643.500000px;}
.y105{bottom:649.980000px;}
.y175{bottom:658.267740px;}
.y188{bottom:658.290960px;}
.ya4{bottom:662.400000px;}
.y42{bottom:662.760000px;}
.y1ad{bottom:664.200000px;}
.ye{bottom:666.361440px;}
.y131{bottom:666.540000px;}
.y157{bottom:673.020000px;}
.y28{bottom:674.100000px;}
.y63{bottom:674.460000px;}
.yc4{bottom:677.520000px;}
.y104{bottom:681.120000px;}
.y1ac{bottom:684.900000px;}
.ya9{bottom:687.780000px;}
.ye2{bottom:688.500000px;}
.y41{bottom:695.160000px;}
.y174{bottom:699.660000px;}
.y187{bottom:699.683220px;}
.y1b4{bottom:700.380000px;}
.yd{bottom:702.542520px;}
.yc5{bottom:702.720000px;}
.ye6{bottom:703.260000px;}
.y138{bottom:703.980000px;}
.y117{bottom:705.060000px;}
.y62{bottom:705.420000px;}
.y1ab{bottom:705.600000px;}
.ya8{bottom:709.920000px;}
.y27{bottom:710.280000px;}
.y103{bottom:711.720000px;}
.y1b3{bottom:721.080000px;}
.y40{bottom:725.760000px;}
.y1aa{bottom:726.300000px;}
.y18e{bottom:728.460000px;}
.ya6{bottom:731.880000px;}
.ye5{bottom:734.220000px;}
.y13a{bottom:735.120000px;}
.ya2{bottom:736.200000px;}
.y61{bottom:736.560000px;}
.y1b2{bottom:737.280000px;}
.yc{bottom:738.723600px;}
.yc2{bottom:740.340000px;}
.y186{bottom:741.075480px;}
.y102{bottom:743.220000px;}
.y26{bottom:746.460000px;}
.y1a9{bottom:747.000000px;}
.y177{bottom:749.160000px;}
.y148{bottom:752.220000px;}
.y3f{bottom:756.900000px;}
.yc3{bottom:765.540000px;}
.y160{bottom:765.720000px;}
.y139{bottom:766.080000px;}
.y154{bottom:766.800000px;}
.y60{bottom:767.520000px;}
.y1a8{bottom:767.700000px;}
.y101{bottom:774.180000px;}
.yb{bottom:774.904680px;}
.y185{bottom:782.467740px;}
.y25{bottom:782.640000px;}
.y3e{bottom:788.220000px;}
.y1a7{bottom:788.400000px;}
.ye4{bottom:796.320000px;}
.y15f{bottom:796.680000px;}
.y153{bottom:797.940000px;}
.y5f{bottom:798.660000px;}
.ybf{bottom:803.160000px;}
.y100{bottom:805.140000px;}
.y1a6{bottom:809.100000px;}
.ya{bottom:811.085760px;}
.y24{bottom:818.820000px;}
.y3d{bottom:819.360000px;}
.y184{bottom:823.860000px;}
.y134{bottom:828.180000px;}
.yc1{bottom:828.360000px;}
.y152{bottom:828.900000px;}
.y8c{bottom:829.260000px;}
.y5e{bottom:829.620000px;}
.y1a5{bottom:829.800000px;}
.yff{bottom:836.280000px;}
.yda{bottom:844.560000px;}
.y15e{bottom:845.280000px;}
.y9{bottom:847.435320px;}
.y3c{bottom:850.320000px;}
.y1a4{bottom:850.500000px;}
.y23{bottom:855.180000px;}
.ye1{bottom:859.140000px;}
.y151{bottom:860.040000px;}
.y8b{bottom:860.400000px;}
.y5d{bottom:860.760000px;}
.ybc{bottom:865.980000px;}
.yfe{bottom:867.240000px;}
.y1a3{bottom:871.200000px;}
.y3b{bottom:881.460000px;}
.y8{bottom:883.616400px;}
.ye0{bottom:890.280000px;}
.y150{bottom:891.000000px;}
.y22{bottom:891.360000px;}
.y5c{bottom:891.720000px;}
.y1a2{bottom:891.900000px;}
.yfd{bottom:898.380000px;}
.y3a{bottom:912.420000px;}
.y1a1{bottom:912.600000px;}
.y7{bottom:919.797480px;}
.ydf{bottom:921.240000px;}
.y14f{bottom:922.140000px;}
.ya3{bottom:922.500000px;}
.y5b{bottom:922.860000px;}
.y21{bottom:927.540000px;}
.yfc{bottom:929.340000px;}
.y1a0{bottom:933.300000px;}
.y12e{bottom:938.520000px;}
.y39{bottom:943.200000px;}
.y14e{bottom:953.100000px;}
.y5a{bottom:953.820000px;}
.y19f{bottom:954.000000px;}
.yfb{bottom:955.620000px;}
.y6{bottom:955.978560px;}
.y1f{bottom:963.720000px;}
.yfa{bottom:967.320000px;}
.y38{bottom:974.160000px;}
.y19e{bottom:974.700000px;}
.y14d{bottom:984.240000px;}
.y12d{bottom:984.600000px;}
.y59{bottom:984.960000px;}
.y5{bottom:992.328120px;}
.y19d{bottom:995.400000px;}
.yf9{bottom:999.000000px;}
.y1d{bottom:1000.080000px;}
.y37{bottom:1005.660000px;}
.y14c{bottom:1015.200000px;}
.y9e{bottom:1015.560000px;}
.y58{bottom:1015.920000px;}
.y19c{bottom:1016.100000px;}
.y4{bottom:1028.509200px;}
.yf8{bottom:1030.860000px;}
.y36{bottom:1036.620000px;}
.y19b{bottom:1036.800000px;}
.ydc{bottom:1045.440000px;}
.y14b{bottom:1046.340000px;}
.y9d{bottom:1046.700000px;}
.y57{bottom:1047.060000px;}
.y19a{bottom:1057.500000px;}
.yf7{bottom:1062.720000px;}
.y3{bottom:1064.690280px;}
.y35{bottom:1067.760000px;}
.y173{bottom:1076.760000px;}
.y14a{bottom:1077.300000px;}
.y56{bottom:1078.020000px;}
.y199{bottom:1078.200000px;}
.yd8{bottom:1093.680000px;}
.y198{bottom:1098.900000px;}
.y2{bottom:1100.871360px;}
.y34{bottom:1100.878920px;}
.y172{bottom:1107.900000px;}
.yd9{bottom:1108.440000px;}
.ya1{bottom:1108.800000px;}
.y55{bottom:1109.160000px;}
.y197{bottom:1119.600000px;}
.y33{bottom:1137.060000px;}
.y1{bottom:1137.600000px;}
.y171{bottom:1138.860000px;}
.ybb{bottom:1139.760000px;}
.y54{bottom:1140.120000px;}
.y196{bottom:1140.300000px;}
.h1b{height:20.700000px;}
.ha{height:30.960000px;}
.h18{height:30.961500px;}
.h17{height:31.140000px;}
.h4{height:36.180000px;}
.h5{height:36.360000px;}
.h6{height:36.361500px;}
.h11{height:41.398500px;}
.h1a{height:41.400000px;}
.h19{height:47.344922px;}
.hf{height:58.651172px;}
.h12{height:62.100000px;}
.h10{height:62.327813px;}
.h7{height:70.664062px;}
.h8{height:72.562500px;}
.h9{height:75.093750px;}
.h2{height:82.676953px;}
.h3{height:84.898125px;}
.he{height:87.120000px;}
.h16{height:93.060000px;}
.hc{height:93.061500px;}
.h1f{height:93.238500px;}
.hb{height:93.240000px;}
.h24{height:93.983203px;}
.h21{height:96.508125px;}
.hd{height:124.200000px;}
.h14{height:155.340000px;}
.h15{height:186.300000px;}
.h13{height:248.400000px;}
.h1e{height:279.360000px;}
.h20{height:310.500000px;}
.h1d{height:403.560000px;}
.h1c{height:682.918500px;}
.h22{height:892.980000px;}
.h23{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:2.700000px;}
.wf{width:89.280000px;}
.w10{width:89.281500px;}
.w11{width:90.900000px;}
.w3{width:97.921500px;}
.wc{width:116.458500px;}
.w4{width:139.501500px;}
.wd{width:161.280000px;}
.we{width:161.460000px;}
.w9{width:219.060000px;}
.wb{width:323.280000px;}
.wa{width:323.460000px;}
.w8{width:332.281500px;}
.w5{width:379.800000px;}
.w7{width:491.580000px;}
.w2{width:550.260000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w12{width:1262.880000px;}
.w13{width:1263.000000px;}
.x0{left:0.000000px;}
.x1a{left:1.080000px;}
.xb{left:8.100000px;}
.x3a{left:14.040000px;}
.x39{left:15.660000px;}
.x37{left:21.600000px;}
.x3c{left:24.660000px;}
.x15{left:29.700000px;}
.x3e{left:35.640000px;}
.x31{left:38.880000px;}
.x3d{left:40.140000px;}
.x42{left:44.820000px;}
.x41{left:47.880000px;}
.x2e{left:51.480000px;}
.x34{left:64.800000px;}
.xf{left:68.760000px;}
.x32{left:71.460000px;}
.x1d{left:73.260000px;}
.x33{left:76.140000px;}
.xe{left:79.380000px;}
.x22{left:83.160000px;}
.xd{left:89.820000px;}
.x2a{left:91.620000px;}
.x4a{left:106.380000px;}
.x24{left:109.620000px;}
.x20{left:116.100000px;}
.xa{left:119.520000px;}
.x2{left:127.627560px;}
.x19{left:128.700000px;}
.x46{left:130.320000px;}
.x1c{left:133.740000px;}
.x44{left:139.500000px;}
.x1e{left:145.800000px;}
.x48{left:147.960000px;}
.x43{left:153.000000px;}
.x10{left:154.620000px;}
.x45{left:156.780000px;}
.x1b{left:161.820000px;}
.x11{left:181.620000px;}
.x13{left:186.480000px;}
.x23{left:188.820000px;}
.x47{left:205.020000px;}
.x16{left:208.620000px;}
.x2b{left:213.660000px;}
.x3{left:216.016380px;}
.x17{left:235.620000px;}
.x40{left:236.700000px;}
.x1f{left:242.460000px;}
.x5{left:244.089360px;}
.x6{left:248.764680px;}
.x1{left:253.440000px;}
.x2d{left:262.440000px;}
.x12{left:265.680000px;}
.x18{left:270.900000px;}
.x27{left:279.180000px;}
.x3f{left:287.280000px;}
.x35{left:291.060000px;}
.x2c{left:297.180000px;}
.x36{left:302.040000px;}
.x4e{left:314.447580px;}
.x14{left:326.700000px;}
.x4{left:333.552240px;}
.x7{left:345.430080px;}
.x38{left:356.040000px;}
.x4d{left:386.100000px;}
.x4b{left:390.780000px;}
.x49{left:395.460000px;}
.x2f{left:424.440000px;}
.x28{left:444.060000px;}
.x8{left:446.412780px;}
.x29{left:451.800000px;}
.x21{left:514.080000px;}
.x3b{left:536.040000px;}
.x9{left:543.960000px;}
.x30{left:586.440000px;}
.x25{left:607.140000px;}
.x26{left:611.640000px;}
.xc{left:669.780000px;}
.x4f{left:1004.940000px;}
.x4c{left:1156.140000px;}
@media print{
.v1{vertical-align:-85.737600pt;}
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-1.280000pt;}
.ls18{letter-spacing:-0.896000pt;}
.ls27{letter-spacing:-0.832000pt;}
.ls35{letter-spacing:-0.640000pt;}
.ls42{letter-spacing:-0.576000pt;}
.ls31{letter-spacing:-0.448000pt;}
.ls2{letter-spacing:-0.299520pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls26{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.149760pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls32{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.074880pt;}
.lse{letter-spacing:0.128000pt;}
.ls3d{letter-spacing:0.134400pt;}
.ls45{letter-spacing:0.170240pt;}
.ls8{letter-spacing:0.192000pt;}
.ls23{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.299520pt;}
.ls3f{letter-spacing:0.343040pt;}
.ls34{letter-spacing:0.384000pt;}
.ls1c{letter-spacing:0.448000pt;}
.ls2c{letter-spacing:0.640000pt;}
.ls44{letter-spacing:0.646400pt;}
.ls2e{letter-spacing:0.704000pt;}
.ls3e{letter-spacing:0.768000pt;}
.ls25{letter-spacing:1.088000pt;}
.ls2a{letter-spacing:1.280000pt;}
.ls3b{letter-spacing:1.920000pt;}
.ls40{letter-spacing:2.553600pt;}
.ls14{letter-spacing:2.560000pt;}
.ls36{letter-spacing:2.566400pt;}
.ls30{letter-spacing:3.200000pt;}
.ls2f{letter-spacing:3.840000pt;}
.ls15{letter-spacing:4.480000pt;}
.ls38{letter-spacing:4.486400pt;}
.ls13{letter-spacing:5.120000pt;}
.ls37{letter-spacing:5.760000pt;}
.ls1b{letter-spacing:6.400000pt;}
.ls22{letter-spacing:7.040000pt;}
.lsa{letter-spacing:9.600000pt;}
.ls9{letter-spacing:10.240000pt;}
.ls1d{letter-spacing:10.246400pt;}
.ls28{letter-spacing:10.880000pt;}
.ls29{letter-spacing:11.520000pt;}
.ls41{letter-spacing:12.800000pt;}
.ls19{letter-spacing:13.440000pt;}
.ls12{letter-spacing:14.080000pt;}
.ls3a{letter-spacing:14.720000pt;}
.ls21{letter-spacing:15.360000pt;}
.ls1e{letter-spacing:16.640000pt;}
.ls33{letter-spacing:17.280000pt;}
.ls24{letter-spacing:20.480000pt;}
.ls3c{letter-spacing:24.320000pt;}
.ls17{letter-spacing:24.960000pt;}
.ls39{letter-spacing:26.880000pt;}
.ls1f{letter-spacing:27.520000pt;}
.lsb{letter-spacing:28.800000pt;}
.ls1a{letter-spacing:29.440000pt;}
.ls16{letter-spacing:37.126400pt;}
.ls20{letter-spacing:39.808000pt;}
.ls7{letter-spacing:48.768000pt;}
.lsc{letter-spacing:57.088000pt;}
.ls2d{letter-spacing:121.543680pt;}
.ls43{letter-spacing:131.200000pt;}
.ls1{letter-spacing:859.996800pt;}
.ls2b{letter-spacing:2187.520000pt;}
.ls5{letter-spacing:2219.520000pt;}
.ls46{letter-spacing:3653.760000pt;}
.ws6f{word-spacing:-53.120000pt;}
.ws7{word-spacing:-19.019520pt;}
.ws2{word-spacing:-18.794880pt;}
.ws1{word-spacing:-18.720000pt;}
.ws0{word-spacing:-18.420480pt;}
.ws70{word-spacing:-16.704000pt;}
.wsd{word-spacing:-16.128000pt;}
.ws5c{word-spacing:-16.064000pt;}
.wsb{word-spacing:-16.000000pt;}
.ws72{word-spacing:-15.936000pt;}
.wsc{word-spacing:-15.872000pt;}
.ws5a{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws84{word-spacing:-15.360000pt;}
.ws5b{word-spacing:-15.168000pt;}
.ws9{word-spacing:-1.123200pt;}
.ws5{word-spacing:-0.449280pt;}
.ws78{word-spacing:-0.384000pt;}
.wsab{word-spacing:-0.340480pt;}
.ws65{word-spacing:-0.256000pt;}
.wse{word-spacing:-0.192000pt;}
.ws89{word-spacing:-0.171520pt;}
.wsaa{word-spacing:-0.170240pt;}
.ws8{word-spacing:-0.149760pt;}
.ws10{word-spacing:-0.128000pt;}
.ws11{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.ws13{word-spacing:0.128000pt;}
.ws3{word-spacing:0.149760pt;}
.ws14{word-spacing:0.256000pt;}
.ws6{word-spacing:0.299520pt;}
.ws75{word-spacing:0.448000pt;}
.ws8f{word-spacing:0.576000pt;}
.ws55{word-spacing:0.640000pt;}
.ws12{word-spacing:0.896000pt;}
.ws44{word-spacing:1.152000pt;}
.ws43{word-spacing:1.280000pt;}
.ws3a{word-spacing:1.536000pt;}
.ws60{word-spacing:1.920000pt;}
.ws6e{word-spacing:2.176000pt;}
.ws7f{word-spacing:2.432000pt;}
.ws2d{word-spacing:2.496000pt;}
.ws2f{word-spacing:2.560000pt;}
.ws2c{word-spacing:2.816000pt;}
.ws67{word-spacing:3.200000pt;}
.ws22{word-spacing:3.456000pt;}
.ws58{word-spacing:3.712000pt;}
.ws57{word-spacing:3.840000pt;}
.ws73{word-spacing:4.096000pt;}
.ws2e{word-spacing:4.480000pt;}
.wsf{word-spacing:4.736000pt;}
.ws46{word-spacing:4.992000pt;}
.ws2a{word-spacing:5.120000pt;}
.ws2b{word-spacing:5.376000pt;}
.ws27{word-spacing:5.760000pt;}
.ws26{word-spacing:6.016000pt;}
.ws51{word-spacing:6.400000pt;}
.ws52{word-spacing:6.656000pt;}
.ws4c{word-spacing:7.040000pt;}
.ws86{word-spacing:7.296000pt;}
.ws4a{word-spacing:7.680000pt;}
.ws33{word-spacing:7.936000pt;}
.ws6d{word-spacing:8.320000pt;}
.ws87{word-spacing:8.576000pt;}
.wsa8{word-spacing:8.832000pt;}
.ws90{word-spacing:8.960000pt;}
.ws63{word-spacing:9.216000pt;}
.ws19{word-spacing:9.600000pt;}
.ws1a{word-spacing:9.856000pt;}
.ws8a{word-spacing:10.112000pt;}
.ws16{word-spacing:10.240000pt;}
.ws15{word-spacing:10.496000pt;}
.ws8c{word-spacing:10.752000pt;}
.ws5e{word-spacing:10.880000pt;}
.ws1f{word-spacing:11.136000pt;}
.ws77{word-spacing:11.392000pt;}
.ws1e{word-spacing:11.520000pt;}
.ws35{word-spacing:11.776000pt;}
.ws36{word-spacing:12.160000pt;}
.ws6b{word-spacing:12.416000pt;}
.ws68{word-spacing:12.672000pt;}
.ws83{word-spacing:12.800000pt;}
.ws3b{word-spacing:13.056000pt;}
.ws64{word-spacing:13.312000pt;}
.ws3f{word-spacing:13.440000pt;}
.ws40{word-spacing:13.696000pt;}
.wsa9{word-spacing:13.952000pt;}
.ws3e{word-spacing:14.080000pt;}
.ws28{word-spacing:14.336000pt;}
.ws37{word-spacing:14.720000pt;}
.ws69{word-spacing:14.976000pt;}
.ws71{word-spacing:15.232000pt;}
.ws4d{word-spacing:15.360000pt;}
.ws4f{word-spacing:15.616000pt;}
.ws8d{word-spacing:15.872000pt;}
.ws66{word-spacing:16.000000pt;}
.ws4e{word-spacing:16.256000pt;}
.ws8b{word-spacing:16.512000pt;}
.ws47{word-spacing:16.640000pt;}
.ws48{word-spacing:16.896000pt;}
.ws30{word-spacing:17.280000pt;}
.ws50{word-spacing:17.536000pt;}
.ws54{word-spacing:17.920000pt;}
.ws53{word-spacing:18.176000pt;}
.wsa0{word-spacing:18.560000pt;}
.ws5d{word-spacing:18.816000pt;}
.ws82{word-spacing:19.072000pt;}
.ws18{word-spacing:19.200000pt;}
.ws17{word-spacing:19.456000pt;}
.ws76{word-spacing:19.712000pt;}
.wsa2{word-spacing:19.840000pt;}
.ws1b{word-spacing:20.096000pt;}
.ws56{word-spacing:20.480000pt;}
.ws94{word-spacing:20.736000pt;}
.ws3d{word-spacing:20.992000pt;}
.ws5f{word-spacing:21.120000pt;}
.ws3c{word-spacing:21.376000pt;}
.ws4b{word-spacing:21.760000pt;}
.ws34{word-spacing:22.016000pt;}
.ws29{word-spacing:22.400000pt;}
.ws59{word-spacing:22.656000pt;}
.ws23{word-spacing:23.296000pt;}
.ws93{word-spacing:23.936000pt;}
.ws61{word-spacing:24.320000pt;}
.ws62{word-spacing:24.576000pt;}
.ws39{word-spacing:24.960000pt;}
.ws38{word-spacing:25.216000pt;}
.ws9b{word-spacing:25.600000pt;}
.ws7b{word-spacing:25.856000pt;}
.ws88{word-spacing:26.240000pt;}
.ws6a{word-spacing:26.496000pt;}
.ws6c{word-spacing:26.880000pt;}
.ws85{word-spacing:27.136000pt;}
.ws24{word-spacing:27.520000pt;}
.ws49{word-spacing:27.776000pt;}
.ws25{word-spacing:28.416000pt;}
.ws1c{word-spacing:28.800000pt;}
.ws1d{word-spacing:29.056000pt;}
.ws45{word-spacing:29.312000pt;}
.ws20{word-spacing:29.440000pt;}
.ws21{word-spacing:29.696000pt;}
.ws41{word-spacing:30.720000pt;}
.ws98{word-spacing:30.976000pt;}
.ws81{word-spacing:31.232000pt;}
.ws80{word-spacing:31.360000pt;}
.ws8e{word-spacing:31.616000pt;}
.ws7a{word-spacing:33.280000pt;}
.ws42{word-spacing:34.816000pt;}
.ws7d{word-spacing:35.840000pt;}
.ws32{word-spacing:37.376000pt;}
.ws31{word-spacing:37.760000pt;}
.ws9f{word-spacing:38.016000pt;}
.ws9a{word-spacing:38.656000pt;}
.wsa5{word-spacing:41.600000pt;}
.wsa4{word-spacing:41.856000pt;}
.wsa3{word-spacing:42.240000pt;}
.ws79{word-spacing:44.160000pt;}
.wsa1{word-spacing:46.336000pt;}
.ws96{word-spacing:48.000000pt;}
.ws74{word-spacing:48.128000pt;}
.ws97{word-spacing:50.560000pt;}
.wsa6{word-spacing:54.016000pt;}
.ws9c{word-spacing:60.800000pt;}
.ws91{word-spacing:65.920000pt;}
.ws9e{word-spacing:67.200000pt;}
.ws7c{word-spacing:99.200000pt;}
.ws99{word-spacing:99.712000pt;}
.ws95{word-spacing:103.680000pt;}
.ws7e{word-spacing:105.216000pt;}
.ws9d{word-spacing:110.720000pt;}
.wsa7{word-spacing:115.712000pt;}
.ws92{word-spacing:131.456000pt;}
._12{margin-left:-13.138560pt;}
._11{margin-left:-7.023232pt;}
._2{margin-left:-2.463552pt;}
._1{margin-left:-1.235520pt;}
._0{width:1.175616pt;}
._a{width:2.859456pt;}
._3{width:4.819520pt;}
._8{width:5.992384pt;}
._14{width:6.928768pt;}
._e{width:9.107520pt;}
._5{width:11.075072pt;}
._16{width:12.608000pt;}
._9{width:14.540992pt;}
._15{width:18.013440pt;}
._4{width:19.904000pt;}
._c{width:21.843840pt;}
._10{width:23.720384pt;}
._d{width:25.320384pt;}
._f{width:26.831424pt;}
._7{width:27.987520pt;}
._6{width:28.923904pt;}
._b{width:34.418304pt;}
._18{width:37.907520pt;}
._13{width:48.777920pt;}
._17{width:105.761536pt;}
._1d{width:270.596480pt;}
._1a{width:1299.840000pt;}
._1c{width:2968.320000pt;}
._1b{width:3363.840000pt;}
._19{width:3671.040000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ybe{bottom:4.000000pt;}
.y12f{bottom:12.640000pt;}
.y76{bottom:12.960000pt;}
.yd7{bottom:13.120000pt;}
.y1e{bottom:15.200000pt;}
.y20{bottom:15.360000pt;}
.ybd{bottom:22.400000pt;}
.ya5{bottom:26.720000pt;}
.y7a{bottom:40.640000pt;}
.yc0{bottom:40.800000pt;}
.y32{bottom:51.360000pt;}
.ya7{bottom:61.760000pt;}
.y7d{bottom:68.160000pt;}
.y78{bottom:68.320000pt;}
.y81{bottom:95.840000pt;}
.y127{bottom:100.800000pt;}
.yd5{bottom:102.080000pt;}
.y12c{bottom:102.400000pt;}
.ya0{bottom:102.720000pt;}
.y116{bottom:106.560000pt;}
.y53{bottom:113.120000pt;}
.y15b{bottom:114.560000pt;}
.yd6{bottom:115.200000pt;}
.y147{bottom:115.360000pt;}
.yba{bottom:116.640000pt;}
.y18f{bottom:118.720000pt;}
.y74{bottom:121.120000pt;}
.y8a{bottom:122.400000pt;}
.y18d{bottom:122.720000pt;}
.yde{bottom:123.360000pt;}
.ye3{bottom:123.520000pt;}
.y170{bottom:125.600000pt;}
.y15d{bottom:127.680000pt;}
.y126{bottom:128.320000pt;}
.y18c{bottom:128.800000pt;}
.y12b{bottom:130.080000pt;}
.y9c{bottom:130.400000pt;}
.y115{bottom:134.240000pt;}
.y183{bottom:136.640000pt;}
.y17d{bottom:137.120000pt;}
.y1c{bottom:137.133600pt;}
.y17b{bottom:137.760000pt;}
.y52{bottom:140.640000pt;}
.y17f{bottom:141.120000pt;}
.y195{bottom:143.040000pt;}
.yb9{bottom:145.440000pt;}
.y73{bottom:148.800000pt;}
.y89{bottom:150.080000pt;}
.ydd{bottom:151.040000pt;}
.y16f{bottom:153.120000pt;}
.yf3{bottom:153.280000pt;}
.y182{bottom:155.040000pt;}
.y15c{bottom:155.200000pt;}
.y17e{bottom:155.520000pt;}
.y125{bottom:156.000000pt;}
.y17a{bottom:156.160000pt;}
.y12a{bottom:157.600000pt;}
.y9b{bottom:157.920000pt;}
.y194{bottom:161.440000pt;}
.y114{bottom:161.760000pt;}
.y51{bottom:168.320000pt;}
.yd4{bottom:171.040000pt;}
.yb8{bottom:173.120000pt;}
.y181{bottom:173.440000pt;}
.y179{bottom:174.560000pt;}
.y72{bottom:177.440000pt;}
.y88{bottom:177.600000pt;}
.y156{bottom:178.560000pt;}
.y193{bottom:179.840000pt;}
.y1b{bottom:180.002400pt;}
.yf2{bottom:180.800000pt;}
.y124{bottom:183.520000pt;}
.y9a{bottom:185.600000pt;}
.y178{bottom:188.960000pt;}
.y113{bottom:189.440000pt;}
.y180{bottom:191.840000pt;}
.y50{bottom:195.840000pt;}
.yf0{bottom:196.160000pt;}
.y159{bottom:198.080000pt;}
.y192{bottom:198.240000pt;}
.y1a{bottom:201.605280pt;}
.yb7{bottom:201.760000pt;}
.y71{bottom:205.120000pt;}
.ydb{bottom:206.240000pt;}
.y87{bottom:207.040000pt;}
.y16e{bottom:208.320000pt;}
.yf1{bottom:209.120000pt;}
.y123{bottom:211.200000pt;}
.y99{bottom:213.120000pt;}
.y191{bottom:216.640000pt;}
.y112{bottom:216.960000pt;}
.y19{bottom:223.039680pt;}
.y4f{bottom:223.520000pt;}
.y130{bottom:226.400000pt;}
.yd3{bottom:226.560000pt;}
.yb6{bottom:229.440000pt;}
.y190{bottom:231.040000pt;}
.y70{bottom:232.640000pt;}
.y13f{bottom:233.760000pt;}
.y16d{bottom:236.000000pt;}
.y86{bottom:237.440000pt;}
.y122{bottom:238.720000pt;}
.y146{bottom:239.360000pt;}
.y18{bottom:240.000000pt;}
.y98{bottom:240.800000pt;}
.y111{bottom:244.640000pt;}
.y4e{bottom:251.040000pt;}
.yd2{bottom:254.400000pt;}
.yb5{bottom:258.240000pt;}
.y6f{bottom:261.440000pt;}
.y16c{bottom:263.520000pt;}
.y85{bottom:264.960000pt;}
.y121{bottom:266.400000pt;}
.y145{bottom:267.040000pt;}
.y97{bottom:268.320000pt;}
.y110{bottom:272.160000pt;}
.y4d{bottom:278.720000pt;}
.yec{bottom:279.520000pt;}
.y80{bottom:280.160000pt;}
.yd1{bottom:282.080000pt;}
.yb4{bottom:287.040000pt;}
.y6e{bottom:288.960000pt;}
.y16b{bottom:291.200000pt;}
.yef{bottom:292.640000pt;}
.y84{bottom:293.280000pt;}
.y120{bottom:293.600000pt;}
.y15a{bottom:293.920000pt;}
.y144{bottom:294.560000pt;}
.yf6{bottom:295.680000pt;}
.y96{bottom:296.000000pt;}
.y10f{bottom:299.840000pt;}
.y4c{bottom:306.240000pt;}
.y31{bottom:309.280000pt;}
.yd0{bottom:309.600000pt;}
.yb3{bottom:315.840000pt;}
.y6d{bottom:316.640000pt;}
.y16a{bottom:319.840000pt;}
.yee{bottom:320.160000pt;}
.y83{bottom:320.800000pt;}
.y11f{bottom:321.280000pt;}
.y9f{bottom:323.200000pt;}
.y95{bottom:323.520000pt;}
.y10e{bottom:327.360000pt;}
.y4b{bottom:333.920000pt;}
.ycf{bottom:337.280000pt;}
.y30{bottom:341.600000pt;}
.y149{bottom:344.160000pt;}
.y6c{bottom:344.320000pt;}
.yb2{bottom:344.640000pt;}
.y169{bottom:347.520000pt;}
.y82{bottom:348.480000pt;}
.y11e{bottom:348.800000pt;}
.y143{bottom:349.760000pt;}
.y94{bottom:351.200000pt;}
.y10d{bottom:355.040000pt;}
.y4a{bottom:361.440000pt;}
.yce{bottom:364.800000pt;}
.y13c{bottom:371.840000pt;}
.y6b{bottom:372.960000pt;}
.yb1{bottom:373.440000pt;}
.y2f{bottom:373.760000pt;}
.y168{bottom:375.040000pt;}
.y11d{bottom:376.800000pt;}
.y142{bottom:377.440000pt;}
.y17{bottom:377.958560pt;}
.y93{bottom:378.720000pt;}
.y10c{bottom:382.560000pt;}
.y49{bottom:389.120000pt;}
.y7c{bottom:391.360000pt;}
.ycd{bottom:392.160000pt;}
.y10b{bottom:397.760000pt;}
.y13b{bottom:399.360000pt;}
.y16{bottom:399.392960pt;}
.y6a{bottom:400.640000pt;}
.yb0{bottom:402.080000pt;}
.y167{bottom:402.720000pt;}
.yed{bottom:403.040000pt;}
.y7f{bottom:404.320000pt;}
.y141{bottom:404.960000pt;}
.y2e{bottom:405.920000pt;}
.y92{bottom:406.240000pt;}
.y48{bottom:416.640000pt;}
.y10a{bottom:416.800000pt;}
.ycc{bottom:419.680000pt;}
.y15{bottom:420.827360pt;}
.y137{bottom:427.040000pt;}
.y69{bottom:428.160000pt;}
.yaf{bottom:429.760000pt;}
.y166{bottom:430.240000pt;}
.y7e{bottom:431.840000pt;}
.y140{bottom:432.640000pt;}
.yf5{bottom:433.600000pt;}
.y91{bottom:433.920000pt;}
.y2d{bottom:438.080000pt;}
.y14{bottom:442.261760pt;}
.y47{bottom:444.320000pt;}
.ye7{bottom:445.760000pt;}
.y155{bottom:447.200000pt;}
.ycb{bottom:447.680000pt;}
.y136{bottom:454.560000pt;}
.y68{bottom:455.840000pt;}
.y165{bottom:457.920000pt;}
.yae{bottom:458.560000pt;}
.yeb{bottom:458.880000pt;}
.y11c{bottom:459.520000pt;}
.y13e{bottom:460.160000pt;}
.yf4{bottom:461.120000pt;}
.y90{bottom:461.440000pt;}
.y13{bottom:463.864640pt;}
.y109{bottom:467.040000pt;}
.y2c{bottom:470.400000pt;}
.y46{bottom:473.760000pt;}
.y77{bottom:474.720000pt;}
.yca{bottom:475.200000pt;}
.y135{bottom:482.080000pt;}
.y67{bottom:484.480000pt;}
.y12{bottom:485.299040pt;}
.y164{bottom:485.440000pt;}
.yea{bottom:486.400000pt;}
.y11b{bottom:487.040000pt;}
.yad{bottom:487.360000pt;}
.y7b{bottom:487.840000pt;}
.y8f{bottom:489.120000pt;}
.yc8{bottom:490.400000pt;}
.y108{bottom:495.040000pt;}
.y18b{bottom:499.729600pt;}
.y2b{bottom:502.560000pt;}
.y45{bottom:503.680000pt;}
.y11{bottom:506.733440pt;}
.y66{bottom:512.160000pt;}
.yc9{bottom:512.800000pt;}
.y163{bottom:513.120000pt;}
.ye9{bottom:514.080000pt;}
.y11a{bottom:514.400000pt;}
.yac{bottom:514.880000pt;}
.y79{bottom:515.360000pt;}
.y8e{bottom:516.640000pt;}
.y1b1{bottom:516.800000pt;}
.y107{bottom:522.560000pt;}
.y18a{bottom:524.201600pt;}
.y10{bottom:528.167840pt;}
.y119{bottom:529.920000pt;}
.y44{bottom:531.680000pt;}
.y2a{bottom:534.720000pt;}
.y1b0{bottom:535.200000pt;}
.y133{bottom:537.280000pt;}
.y65{bottom:541.600000pt;}
.y162{bottom:541.760000pt;}
.y158{bottom:543.040000pt;}
.yab{bottom:543.680000pt;}
.y129{bottom:544.000000pt;}
.y8d{bottom:544.320000pt;}
.yc6{bottom:546.400000pt;}
.y189{bottom:548.673600pt;}
.y118{bottom:548.960000pt;}
.y106{bottom:550.240000pt;}
.y176{bottom:553.120000pt;}
.y17c{bottom:553.440000pt;}
.y1af{bottom:553.600000pt;}
.y75{bottom:558.240000pt;}
.yf{bottom:560.010560pt;}
.y43{bottom:560.480000pt;}
.y132{bottom:564.960000pt;}
.y29{bottom:566.880000pt;}
.yc7{bottom:568.800000pt;}
.ye8{bottom:569.280000pt;}
.y161{bottom:569.440000pt;}
.y13d{bottom:570.560000pt;}
.yaa{bottom:571.200000pt;}
.y128{bottom:571.520000pt;}
.y64{bottom:571.840000pt;}
.y1ae{bottom:572.000000pt;}
.y105{bottom:577.760000pt;}
.y175{bottom:585.126880pt;}
.y188{bottom:585.147520pt;}
.ya4{bottom:588.800000pt;}
.y42{bottom:589.120000pt;}
.y1ad{bottom:590.400000pt;}
.ye{bottom:592.321280pt;}
.y131{bottom:592.480000pt;}
.y157{bottom:598.240000pt;}
.y28{bottom:599.200000pt;}
.y63{bottom:599.520000pt;}
.yc4{bottom:602.240000pt;}
.y104{bottom:605.440000pt;}
.y1ac{bottom:608.800000pt;}
.ya9{bottom:611.360000pt;}
.ye2{bottom:612.000000pt;}
.y41{bottom:617.920000pt;}
.y174{bottom:621.920000pt;}
.y187{bottom:621.940640pt;}
.y1b4{bottom:622.560000pt;}
.yd{bottom:624.482240pt;}
.yc5{bottom:624.640000pt;}
.ye6{bottom:625.120000pt;}
.y138{bottom:625.760000pt;}
.y117{bottom:626.720000pt;}
.y62{bottom:627.040000pt;}
.y1ab{bottom:627.200000pt;}
.ya8{bottom:631.040000pt;}
.y27{bottom:631.360000pt;}
.y103{bottom:632.640000pt;}
.y1b3{bottom:640.960000pt;}
.y40{bottom:645.120000pt;}
.y1aa{bottom:645.600000pt;}
.y18e{bottom:647.520000pt;}
.ya6{bottom:650.560000pt;}
.ye5{bottom:652.640000pt;}
.y13a{bottom:653.440000pt;}
.ya2{bottom:654.400000pt;}
.y61{bottom:654.720000pt;}
.y1b2{bottom:655.360000pt;}
.yc{bottom:656.643200pt;}
.yc2{bottom:658.080000pt;}
.y186{bottom:658.733760pt;}
.y102{bottom:660.640000pt;}
.y26{bottom:663.520000pt;}
.y1a9{bottom:664.000000pt;}
.y177{bottom:665.920000pt;}
.y148{bottom:668.640000pt;}
.y3f{bottom:672.800000pt;}
.yc3{bottom:680.480000pt;}
.y160{bottom:680.640000pt;}
.y139{bottom:680.960000pt;}
.y154{bottom:681.600000pt;}
.y60{bottom:682.240000pt;}
.y1a8{bottom:682.400000pt;}
.y101{bottom:688.160000pt;}
.yb{bottom:688.804160pt;}
.y185{bottom:695.526880pt;}
.y25{bottom:695.680000pt;}
.y3e{bottom:700.640000pt;}
.y1a7{bottom:700.800000pt;}
.ye4{bottom:707.840000pt;}
.y15f{bottom:708.160000pt;}
.y153{bottom:709.280000pt;}
.y5f{bottom:709.920000pt;}
.ybf{bottom:713.920000pt;}
.y100{bottom:715.680000pt;}
.y1a6{bottom:719.200000pt;}
.ya{bottom:720.965120pt;}
.y24{bottom:727.840000pt;}
.y3d{bottom:728.320000pt;}
.y184{bottom:732.320000pt;}
.y134{bottom:736.160000pt;}
.yc1{bottom:736.320000pt;}
.y152{bottom:736.800000pt;}
.y8c{bottom:737.120000pt;}
.y5e{bottom:737.440000pt;}
.y1a5{bottom:737.600000pt;}
.yff{bottom:743.360000pt;}
.yda{bottom:750.720000pt;}
.y15e{bottom:751.360000pt;}
.y9{bottom:753.275840pt;}
.y3c{bottom:755.840000pt;}
.y1a4{bottom:756.000000pt;}
.y23{bottom:760.160000pt;}
.ye1{bottom:763.680000pt;}
.y151{bottom:764.480000pt;}
.y8b{bottom:764.800000pt;}
.y5d{bottom:765.120000pt;}
.ybc{bottom:769.760000pt;}
.yfe{bottom:770.880000pt;}
.y1a3{bottom:774.400000pt;}
.y3b{bottom:783.520000pt;}
.y8{bottom:785.436800pt;}
.ye0{bottom:791.360000pt;}
.y150{bottom:792.000000pt;}
.y22{bottom:792.320000pt;}
.y5c{bottom:792.640000pt;}
.y1a2{bottom:792.800000pt;}
.yfd{bottom:798.560000pt;}
.y3a{bottom:811.040000pt;}
.y1a1{bottom:811.200000pt;}
.y7{bottom:817.597760pt;}
.ydf{bottom:818.880000pt;}
.y14f{bottom:819.680000pt;}
.ya3{bottom:820.000000pt;}
.y5b{bottom:820.320000pt;}
.y21{bottom:824.480000pt;}
.yfc{bottom:826.080000pt;}
.y1a0{bottom:829.600000pt;}
.y12e{bottom:834.240000pt;}
.y39{bottom:838.400000pt;}
.y14e{bottom:847.200000pt;}
.y5a{bottom:847.840000pt;}
.y19f{bottom:848.000000pt;}
.yfb{bottom:849.440000pt;}
.y6{bottom:849.758720pt;}
.y1f{bottom:856.640000pt;}
.yfa{bottom:859.840000pt;}
.y38{bottom:865.920000pt;}
.y19e{bottom:866.400000pt;}
.y14d{bottom:874.880000pt;}
.y12d{bottom:875.200000pt;}
.y59{bottom:875.520000pt;}
.y5{bottom:882.069440pt;}
.y19d{bottom:884.800000pt;}
.yf9{bottom:888.000000pt;}
.y1d{bottom:888.960000pt;}
.y37{bottom:893.920000pt;}
.y14c{bottom:902.400000pt;}
.y9e{bottom:902.720000pt;}
.y58{bottom:903.040000pt;}
.y19c{bottom:903.200000pt;}
.y4{bottom:914.230400pt;}
.yf8{bottom:916.320000pt;}
.y36{bottom:921.440000pt;}
.y19b{bottom:921.600000pt;}
.ydc{bottom:929.280000pt;}
.y14b{bottom:930.080000pt;}
.y9d{bottom:930.400000pt;}
.y57{bottom:930.720000pt;}
.y19a{bottom:940.000000pt;}
.yf7{bottom:944.640000pt;}
.y3{bottom:946.391360pt;}
.y35{bottom:949.120000pt;}
.y173{bottom:957.120000pt;}
.y14a{bottom:957.600000pt;}
.y56{bottom:958.240000pt;}
.y199{bottom:958.400000pt;}
.yd8{bottom:972.160000pt;}
.y198{bottom:976.800000pt;}
.y2{bottom:978.552320pt;}
.y34{bottom:978.559040pt;}
.y172{bottom:984.800000pt;}
.yd9{bottom:985.280000pt;}
.ya1{bottom:985.600000pt;}
.y55{bottom:985.920000pt;}
.y197{bottom:995.200000pt;}
.y33{bottom:1010.720000pt;}
.y1{bottom:1011.200000pt;}
.y171{bottom:1012.320000pt;}
.ybb{bottom:1013.120000pt;}
.y54{bottom:1013.440000pt;}
.y196{bottom:1013.600000pt;}
.h1b{height:18.400000pt;}
.ha{height:27.520000pt;}
.h18{height:27.521333pt;}
.h17{height:27.680000pt;}
.h4{height:32.160000pt;}
.h5{height:32.320000pt;}
.h6{height:32.321333pt;}
.h11{height:36.798667pt;}
.h1a{height:36.800000pt;}
.h19{height:42.084375pt;}
.hf{height:52.134375pt;}
.h12{height:55.200000pt;}
.h10{height:55.402500pt;}
.h7{height:62.812500pt;}
.h8{height:64.500000pt;}
.h9{height:66.750000pt;}
.h2{height:73.490625pt;}
.h3{height:75.465000pt;}
.he{height:77.440000pt;}
.h16{height:82.720000pt;}
.hc{height:82.721333pt;}
.h1f{height:82.878667pt;}
.hb{height:82.880000pt;}
.h24{height:83.540625pt;}
.h21{height:85.785000pt;}
.hd{height:110.400000pt;}
.h14{height:138.080000pt;}
.h15{height:165.600000pt;}
.h13{height:220.800000pt;}
.h1e{height:248.320000pt;}
.h20{height:276.000000pt;}
.h1d{height:358.720000pt;}
.h1c{height:607.038667pt;}
.h22{height:793.760000pt;}
.h23{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:2.400000pt;}
.wf{width:79.360000pt;}
.w10{width:79.361333pt;}
.w11{width:80.800000pt;}
.w3{width:87.041333pt;}
.wc{width:103.518667pt;}
.w4{width:124.001333pt;}
.wd{width:143.360000pt;}
.we{width:143.520000pt;}
.w9{width:194.720000pt;}
.wb{width:287.360000pt;}
.wa{width:287.520000pt;}
.w8{width:295.361333pt;}
.w5{width:337.600000pt;}
.w7{width:436.960000pt;}
.w2{width:489.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w12{width:1122.560000pt;}
.w13{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1a{left:0.960000pt;}
.xb{left:7.200000pt;}
.x3a{left:12.480000pt;}
.x39{left:13.920000pt;}
.x37{left:19.200000pt;}
.x3c{left:21.920000pt;}
.x15{left:26.400000pt;}
.x3e{left:31.680000pt;}
.x31{left:34.560000pt;}
.x3d{left:35.680000pt;}
.x42{left:39.840000pt;}
.x41{left:42.560000pt;}
.x2e{left:45.760000pt;}
.x34{left:57.600000pt;}
.xf{left:61.120000pt;}
.x32{left:63.520000pt;}
.x1d{left:65.120000pt;}
.x33{left:67.680000pt;}
.xe{left:70.560000pt;}
.x22{left:73.920000pt;}
.xd{left:79.840000pt;}
.x2a{left:81.440000pt;}
.x4a{left:94.560000pt;}
.x24{left:97.440000pt;}
.x20{left:103.200000pt;}
.xa{left:106.240000pt;}
.x2{left:113.446720pt;}
.x19{left:114.400000pt;}
.x46{left:115.840000pt;}
.x1c{left:118.880000pt;}
.x44{left:124.000000pt;}
.x1e{left:129.600000pt;}
.x48{left:131.520000pt;}
.x43{left:136.000000pt;}
.x10{left:137.440000pt;}
.x45{left:139.360000pt;}
.x1b{left:143.840000pt;}
.x11{left:161.440000pt;}
.x13{left:165.760000pt;}
.x23{left:167.840000pt;}
.x47{left:182.240000pt;}
.x16{left:185.440000pt;}
.x2b{left:189.920000pt;}
.x3{left:192.014560pt;}
.x17{left:209.440000pt;}
.x40{left:210.400000pt;}
.x1f{left:215.520000pt;}
.x5{left:216.968320pt;}
.x6{left:221.124160pt;}
.x1{left:225.280000pt;}
.x2d{left:233.280000pt;}
.x12{left:236.160000pt;}
.x18{left:240.800000pt;}
.x27{left:248.160000pt;}
.x3f{left:255.360000pt;}
.x35{left:258.720000pt;}
.x2c{left:264.160000pt;}
.x36{left:268.480000pt;}
.x4e{left:279.508960pt;}
.x14{left:290.400000pt;}
.x4{left:296.490880pt;}
.x7{left:307.048960pt;}
.x38{left:316.480000pt;}
.x4d{left:343.200000pt;}
.x4b{left:347.360000pt;}
.x49{left:351.520000pt;}
.x2f{left:377.280000pt;}
.x28{left:394.720000pt;}
.x8{left:396.811360pt;}
.x29{left:401.600000pt;}
.x21{left:456.960000pt;}
.x3b{left:476.480000pt;}
.x9{left:483.520000pt;}
.x30{left:521.280000pt;}
.x25{left:539.680000pt;}
.x26{left:543.680000pt;}
.xc{left:595.360000pt;}
.x4f{left:893.280000pt;}
.x4c{left:1027.680000pt;}
}




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