
    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_b519958d99f8e6105f55f502.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.998000;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_bcd7f74c899cdc2233fdab2c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.944000;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_b3b3f6e66e79cb1aa2a14dbf.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5275b9f368fc5e044de9a858.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.100000;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_c7a6e728f7cb03c3b350c9e0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.115000;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_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_25393f6cfe661f896e137cd0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.023000;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ea0e072b18fe894a259c13ac.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls20{letter-spacing:-4.824000px;}
.ls21{letter-spacing:-2.448000px;}
.ls2b{letter-spacing:-1.584000px;}
.ls2c{letter-spacing:-1.224000px;}
.ls59{letter-spacing:-0.900000px;}
.ls17{letter-spacing:-0.864000px;}
.ls5a{letter-spacing:-0.660000px;}
.ls15{letter-spacing:-0.576000px;}
.ls64{letter-spacing:-0.540000px;}
.ls69{letter-spacing:-0.528000px;}
.ls18{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.480000px;}
.ls13{letter-spacing:-0.432000px;}
.ls27{letter-spacing:-0.420000px;}
.ls1e{letter-spacing:-0.360000px;}
.ls66{letter-spacing:-0.330000px;}
.ls1d{letter-spacing:-0.300000px;}
.ls16{letter-spacing:-0.288000px;}
.ls65{letter-spacing:-0.240000px;}
.ls29{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.180000px;}
.ls12{letter-spacing:-0.168000px;}
.ls45{letter-spacing:-0.144000px;}
.ls68{letter-spacing:-0.132000px;}
.lsc{letter-spacing:-0.120000px;}
.ls14{letter-spacing:-0.072000px;}
.ls6a{letter-spacing:-0.066000px;}
.ls58{letter-spacing:-0.060000px;}
.lse{letter-spacing:0.000000px;}
.ls40{letter-spacing:0.057600px;}
.ls1c{letter-spacing:0.060000px;}
.ls49{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.120000px;}
.ls2d{letter-spacing:0.144000px;}
.ls39{letter-spacing:0.151200px;}
.ls46{letter-spacing:0.158400px;}
.ls5d{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.240000px;}
.ls3e{letter-spacing:0.266400px;}
.ls48{letter-spacing:0.273600px;}
.ls19{letter-spacing:0.288000px;}
.ls5b{letter-spacing:0.300000px;}
.ls62{letter-spacing:0.330000px;}
.ls5{letter-spacing:0.360000px;}
.ls67{letter-spacing:0.396000px;}
.ls5c{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.482400px;}
.ls6{letter-spacing:0.504000px;}
.ls33{letter-spacing:0.532800px;}
.ls1a{letter-spacing:0.540000px;}
.ls30{letter-spacing:0.576000px;}
.ls54{letter-spacing:0.633600px;}
.ls7{letter-spacing:0.780000px;}
.ls23{letter-spacing:0.784800px;}
.ls50{letter-spacing:0.864000px;}
.ls8{letter-spacing:0.900000px;}
.ls35{letter-spacing:1.152000px;}
.ls5e{letter-spacing:1.194000px;}
.ls3b{letter-spacing:1.368000px;}
.ls47{letter-spacing:1.512000px;}
.ls34{letter-spacing:2.376000px;}
.ls26{letter-spacing:3.362400px;}
.ls3d{letter-spacing:3.384000px;}
.ls24{letter-spacing:3.600000px;}
.ls63{letter-spacing:4.092000px;}
.ls44{letter-spacing:4.608000px;}
.ls25{letter-spacing:4.752000px;}
.ls4e{letter-spacing:5.976000px;}
.ls52{letter-spacing:6.984000px;}
.ls1f{letter-spacing:7.200000px;}
.ls2a{letter-spacing:8.352000px;}
.ls38{letter-spacing:9.360000px;}
.ls9{letter-spacing:9.576000px;}
.ls57{letter-spacing:10.380000px;}
.ls41{letter-spacing:10.584000px;}
.lsb{letter-spacing:10.800000px;}
.ls3a{letter-spacing:11.808000px;}
.ls28{letter-spacing:11.952000px;}
.lsa{letter-spacing:13.176000px;}
.ls5f{letter-spacing:13.980000px;}
.ls31{letter-spacing:14.400000px;}
.ls61{letter-spacing:14.784000px;}
.ls2f{letter-spacing:18.000000px;}
.ls53{letter-spacing:20.160000px;}
.ls43{letter-spacing:20.376000px;}
.ls3c{letter-spacing:21.384000px;}
.ls55{letter-spacing:22.920000px;}
.ls37{letter-spacing:25.560000px;}
.ls56{letter-spacing:25.980000px;}
.ls32{letter-spacing:28.008000px;}
.ls36{letter-spacing:28.800000px;}
.ls4a{letter-spacing:29.160000px;}
.ls3f{letter-spacing:32.184000px;}
.ls4f{letter-spacing:33.984000px;}
.ls42{letter-spacing:37.008000px;}
.ls51{letter-spacing:41.184000px;}
.ls4b{letter-spacing:95.184000px;}
.ls60{letter-spacing:119.580000px;}
.ls4c{letter-spacing:156.120000px;}
.ls4d{letter-spacing:159.720000px;}
.ls3{letter-spacing:593.580000px;}
.ls2e{letter-spacing:627.180000px;}
.ls2{letter-spacing:688.380000px;}
.ls1{letter-spacing:691.980000px;}
.ls22{letter-spacing:835.800000px;}
.ls0{letter-spacing:1218.780000px;}
.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:-19.584000px;}
.ws7a{word-spacing:-19.440000px;}
.ws2d{word-spacing:-19.368000px;}
.wsa9{word-spacing:-19.296000px;}
.ws2{word-spacing:-19.224000px;}
.wsbf{word-spacing:-19.152000px;}
.wsa8{word-spacing:-19.008000px;}
.ws79{word-spacing:-18.936000px;}
.ws6a{word-spacing:-18.792000px;}
.wsba{word-spacing:-18.720000px;}
.ws2a{word-spacing:-18.648000px;}
.ws3{word-spacing:-18.360000px;}
.ws2c{word-spacing:-18.216000px;}
.wsc0{word-spacing:-18.144000px;}
.wsee{word-spacing:-18.018000px;}
.ws51{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.928000px;}
.ws2b{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.640000px;}
.wsed{word-spacing:-17.094000px;}
.wseb{word-spacing:-17.028000px;}
.wsea{word-spacing:-16.920000px;}
.ws4{word-spacing:-16.560000px;}
.wsda{word-spacing:-16.500000px;}
.wsec{word-spacing:-16.368000px;}
.wsd5{word-spacing:-16.260000px;}
.wsdb{word-spacing:-16.200000px;}
.ws4b{word-spacing:-16.140000px;}
.wsd3{word-spacing:-16.080000px;}
.wsd4{word-spacing:-16.020000px;}
.wsd7{word-spacing:-15.960000px;}
.wse9{word-spacing:-15.780000px;}
.wsd2{word-spacing:-15.720000px;}
.wsd6{word-spacing:-15.600000px;}
.ws0{word-spacing:-15.540000px;}
.wsd9{word-spacing:-15.360000px;}
.wsd8{word-spacing:-15.120000px;}
.wsd1{word-spacing:-14.700000px;}
.wse8{word-spacing:-14.640000px;}
.ws69{word-spacing:-14.400000px;}
.ws2f{word-spacing:-11.952000px;}
.ws44{word-spacing:-9.576000px;}
.ws32{word-spacing:-8.352000px;}
.ws1f{word-spacing:-7.200000px;}
.wscf{word-spacing:-5.040000px;}
.ws73{word-spacing:-4.752000px;}
.ws45{word-spacing:-4.392000px;}
.ws4e{word-spacing:-3.816000px;}
.wsc2{word-spacing:-3.600000px;}
.ws54{word-spacing:-3.528000px;}
.ws34{word-spacing:-3.312000px;}
.wscb{word-spacing:-3.240000px;}
.ws1b{word-spacing:-3.168000px;}
.wsb1{word-spacing:-3.096000px;}
.ws1c{word-spacing:-3.024000px;}
.ws88{word-spacing:-2.880000px;}
.ws55{word-spacing:-2.736000px;}
.ws59{word-spacing:-2.376000px;}
.ws78{word-spacing:-2.160000px;}
.ws33{word-spacing:-2.016000px;}
.ws6f{word-spacing:-1.944000px;}
.ws20{word-spacing:-1.872000px;}
.ws8f{word-spacing:-1.800000px;}
.wsa0{word-spacing:-1.512000px;}
.wsef{word-spacing:-1.500000px;}
.ws98{word-spacing:-1.440000px;}
.ws8e{word-spacing:-1.296000px;}
.wse6{word-spacing:-1.200000px;}
.ws4a{word-spacing:-1.152000px;}
.wse7{word-spacing:-1.140000px;}
.wsa1{word-spacing:-1.080000px;}
.ws61{word-spacing:-0.936000px;}
.wsc3{word-spacing:-0.864000px;}
.ws3b{word-spacing:-0.792000px;}
.ws15{word-spacing:-0.660000px;}
.ws1e{word-spacing:-0.648000px;}
.wsa3{word-spacing:-0.576000px;}
.wsa{word-spacing:-0.540000px;}
.ws57{word-spacing:-0.504000px;}
.ws16{word-spacing:-0.480000px;}
.wsc{word-spacing:-0.420000px;}
.ws10{word-spacing:-0.360000px;}
.ws7{word-spacing:-0.300000px;}
.ws14{word-spacing:-0.288000px;}
.ws4c{word-spacing:-0.240000px;}
.wsd{word-spacing:-0.216000px;}
.ws19{word-spacing:-0.120000px;}
.ws97{word-spacing:-0.072000px;}
.wse4{word-spacing:-0.060000px;}
.ws8{word-spacing:0.000000px;}
.ws9{word-spacing:0.060000px;}
.wsf3{word-spacing:0.066000px;}
.ws11{word-spacing:0.072000px;}
.ws64{word-spacing:0.144000px;}
.wsb2{word-spacing:0.216000px;}
.ws13{word-spacing:0.288000px;}
.ws18{word-spacing:0.300000px;}
.ws1a{word-spacing:0.360000px;}
.wsf7{word-spacing:0.396000px;}
.ws2e{word-spacing:0.420000px;}
.wsf{word-spacing:0.432000px;}
.wsf6{word-spacing:0.462000px;}
.ws17{word-spacing:0.480000px;}
.wse{word-spacing:0.504000px;}
.wsf5{word-spacing:0.528000px;}
.ws12{word-spacing:0.576000px;}
.ws7b{word-spacing:0.864000px;}
.ws3d{word-spacing:0.936000px;}
.wsb{word-spacing:0.960000px;}
.ws39{word-spacing:1.224000px;}
.wse2{word-spacing:1.260000px;}
.ws6e{word-spacing:1.584000px;}
.ws66{word-spacing:1.656000px;}
.ws3e{word-spacing:1.728000px;}
.wse0{word-spacing:1.740000px;}
.wsc8{word-spacing:2.088000px;}
.ws38{word-spacing:2.160000px;}
.ws29{word-spacing:2.448000px;}
.ws87{word-spacing:2.520000px;}
.ws65{word-spacing:2.592000px;}
.ws30{word-spacing:2.664000px;}
.ws6d{word-spacing:2.808000px;}
.wsc5{word-spacing:2.880000px;}
.ws26{word-spacing:2.952000px;}
.ws68{word-spacing:3.024000px;}
.wsac{word-spacing:3.312000px;}
.wsb7{word-spacing:3.384000px;}
.wsc6{word-spacing:3.528000px;}
.wsf4{word-spacing:3.564000px;}
.ws1d{word-spacing:3.672000px;}
.ws3f{word-spacing:4.032000px;}
.ws36{word-spacing:4.176000px;}
.ws48{word-spacing:4.464000px;}
.ws5b{word-spacing:4.536000px;}
.ws9d{word-spacing:4.752000px;}
.ws28{word-spacing:4.824000px;}
.ws49{word-spacing:5.040000px;}
.ws6b{word-spacing:5.184000px;}
.wscc{word-spacing:5.256000px;}
.ws4d{word-spacing:5.328000px;}
.ws37{word-spacing:5.688000px;}
.wsce{word-spacing:5.760000px;}
.wse5{word-spacing:6.000000px;}
.wsaf{word-spacing:6.048000px;}
.wscd{word-spacing:6.120000px;}
.ws67{word-spacing:6.264000px;}
.wsaa{word-spacing:6.408000px;}
.ws3a{word-spacing:6.480000px;}
.wsab{word-spacing:6.552000px;}
.wsc4{word-spacing:6.624000px;}
.ws5d{word-spacing:6.912000px;}
.wsa6{word-spacing:6.984000px;}
.wsc9{word-spacing:7.128000px;}
.wsdc{word-spacing:7.272000px;}
.ws63{word-spacing:7.416000px;}
.wsca{word-spacing:7.704000px;}
.ws5c{word-spacing:7.776000px;}
.ws92{word-spacing:8.136000px;}
.wsb0{word-spacing:8.424000px;}
.ws21{word-spacing:8.640000px;}
.ws83{word-spacing:8.856000px;}
.ws22{word-spacing:8.928000px;}
.ws7f{word-spacing:9.000000px;}
.ws35{word-spacing:9.648000px;}
.ws23{word-spacing:10.008000px;}
.wse3{word-spacing:10.140000px;}
.ws5a{word-spacing:10.152000px;}
.ws4f{word-spacing:10.872000px;}
.ws8d{word-spacing:10.944000px;}
.ws47{word-spacing:11.232000px;}
.ws46{word-spacing:11.376000px;}
.ws80{word-spacing:11.448000px;}
.ws81{word-spacing:11.736000px;}
.ws3c{word-spacing:12.024000px;}
.ws31{word-spacing:12.168000px;}
.wsa4{word-spacing:12.240000px;}
.ws8c{word-spacing:12.312000px;}
.ws70{word-spacing:12.384000px;}
.ws71{word-spacing:12.528000px;}
.ws27{word-spacing:12.888000px;}
.ws7d{word-spacing:12.960000px;}
.wsdd{word-spacing:13.248000px;}
.ws84{word-spacing:13.752000px;}
.wsf2{word-spacing:14.454000px;}
.wsf1{word-spacing:14.850000px;}
.ws40{word-spacing:14.976000px;}
.ws25{word-spacing:15.336000px;}
.ws85{word-spacing:15.624000px;}
.ws6c{word-spacing:15.840000px;}
.ws86{word-spacing:15.984000px;}
.ws24{word-spacing:16.128000px;}
.ws9f{word-spacing:16.488000px;}
.ws9e{word-spacing:16.848000px;}
.wsb8{word-spacing:17.064000px;}
.ws58{word-spacing:17.352000px;}
.ws90{word-spacing:18.072000px;}
.ws93{word-spacing:18.432000px;}
.ws52{word-spacing:18.576000px;}
.wsc7{word-spacing:18.648000px;}
.wsbc{word-spacing:19.224000px;}
.wsde{word-spacing:19.260000px;}
.ws53{word-spacing:19.656000px;}
.wsa2{word-spacing:19.728000px;}
.ws94{word-spacing:20.088000px;}
.ws95{word-spacing:20.160000px;}
.ws9b{word-spacing:20.448000px;}
.ws96{word-spacing:20.808000px;}
.ws77{word-spacing:20.952000px;}
.ws60{word-spacing:21.384000px;}
.ws5f{word-spacing:21.672000px;}
.wsc1{word-spacing:21.888000px;}
.ws82{word-spacing:21.960000px;}
.ws5e{word-spacing:22.032000px;}
.ws74{word-spacing:22.176000px;}
.wsd0{word-spacing:22.536000px;}
.ws9c{word-spacing:22.824000px;}
.wsb6{word-spacing:23.184000px;}
.ws62{word-spacing:23.328000px;}
.ws72{word-spacing:24.048000px;}
.wsbe{word-spacing:24.984000px;}
.ws99{word-spacing:25.632000px;}
.ws9a{word-spacing:25.704000px;}
.wsae{word-spacing:26.424000px;}
.wsad{word-spacing:26.928000px;}
.ws89{word-spacing:28.224000px;}
.wsb5{word-spacing:28.584000px;}
.wsb3{word-spacing:28.872000px;}
.wsb4{word-spacing:29.016000px;}
.ws7e{word-spacing:29.376000px;}
.wsdf{word-spacing:30.060000px;}
.wsbd{word-spacing:30.456000px;}
.ws56{word-spacing:30.528000px;}
.ws75{word-spacing:31.608000px;}
.wsb9{word-spacing:31.752000px;}
.ws8b{word-spacing:32.688000px;}
.ws8a{word-spacing:32.760000px;}
.wsa5{word-spacing:32.832000px;}
.ws7c{word-spacing:34.128000px;}
.ws91{word-spacing:36.720000px;}
.wsa7{word-spacing:46.152000px;}
.wsbb{word-spacing:48.528000px;}
.wse1{word-spacing:50.460000px;}
.ws50{word-spacing:50.976000px;}
.ws76{word-spacing:51.624000px;}
.ws43{word-spacing:51.984000px;}
.ws42{word-spacing:52.056000px;}
.ws41{word-spacing:52.128000px;}
.wsf0{word-spacing:119.700000px;}
._1e{margin-left:-19.389600px;}
._1d{margin-left:-17.712000px;}
._20{margin-left:-16.466400px;}
._24{margin-left:-14.997600px;}
._21{margin-left:-13.752000px;}
._18{margin-left:-12.528000px;}
._19{margin-left:-11.404800px;}
._1a{margin-left:-10.101600px;}
._e{margin-left:-8.546400px;}
._c{margin-left:-6.912000px;}
._10{margin-left:-5.378400px;}
._2a{margin-left:-4.356000px;}
._8{margin-left:-3.264000px;}
._2{margin-left:-1.560000px;}
._0{width:1.140000px;}
._7{width:2.160000px;}
._b{width:3.302400px;}
._9{width:4.425600px;}
._a{width:5.517600px;}
._d{width:6.602400px;}
._f{width:8.013600px;}
._14{width:9.100800px;}
._5{width:10.104000px;}
._6{width:11.275200px;}
._13{width:12.960000px;}
._11{width:14.796000px;}
._12{width:16.154400px;}
._1f{width:17.611200px;}
._28{width:20.743200px;}
._22{width:21.924000px;}
._23{width:23.728800px;}
._26{width:24.962400px;}
._27{width:26.143200px;}
._15{width:30.141600px;}
._1c{width:33.100800px;}
._1b{width:34.288800px;}
._17{width:37.375200px;}
._25{width:39.187200px;}
._2b{width:41.078400px;}
._29{width:45.616800px;}
._2d{width:119.466000px;}
._2c{width:120.480000px;}
._3{width:643.860000px;}
._1{width:683.820000px;}
._4{width:775.980000px;}
._16{width:788.100000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:24.000000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.300000px;}
.y7{bottom:5.100000px;}
.ya{bottom:5.700000px;}
.y91{bottom:28.200000px;}
.y4{bottom:67.800000px;}
.y13e{bottom:97.212000px;}
.y8d{bottom:97.230000px;}
.y66{bottom:97.272000px;}
.ye9{bottom:99.300000px;}
.y36{bottom:101.118000px;}
.yae{bottom:102.630000px;}
.y113{bottom:105.030000px;}
.yea{bottom:105.096000px;}
.y169{bottom:119.700000px;}
.y13d{bottom:120.612000px;}
.y8c{bottom:120.630000px;}
.y65{bottom:120.672000px;}
.ye8{bottom:122.700000px;}
.y35{bottom:124.518000px;}
.yad{bottom:126.030000px;}
.y112{bottom:128.124000px;}
.ycc{bottom:128.190000px;}
.ye2{bottom:135.942000px;}
.y168{bottom:138.900000px;}
.y13c{bottom:143.706000px;}
.y8b{bottom:143.724000px;}
.y64{bottom:143.766000px;}
.ye7{bottom:144.000000px;}
.y34{bottom:147.612000px;}
.yac{bottom:149.430000px;}
.y111{bottom:151.524000px;}
.ycb{bottom:151.590000px;}
.ye5{bottom:156.300000px;}
.y167{bottom:158.400000px;}
.ye1{bottom:159.342000px;}
.ye6{bottom:161.400000px;}
.y13b{bottom:167.106000px;}
.y8a{bottom:167.124000px;}
.y63{bottom:167.166000px;}
.y33{bottom:171.012000px;}
.yab{bottom:172.524000px;}
.y110{bottom:174.924000px;}
.yca{bottom:174.990000px;}
.y166{bottom:177.900000px;}
.ye4{bottom:179.700000px;}
.ye0{bottom:182.742000px;}
.y13a{bottom:190.200000px;}
.y89{bottom:190.218000px;}
.y62{bottom:190.260000px;}
.y32{bottom:194.412000px;}
.yaa{bottom:195.924000px;}
.y165{bottom:197.100000px;}
.y10f{bottom:198.018000px;}
.yc9{bottom:198.084000px;}
.ydf{bottom:205.836000px;}
.y139{bottom:213.600000px;}
.y88{bottom:213.618000px;}
.y61{bottom:213.660000px;}
.y164{bottom:216.600000px;}
.y31{bottom:217.506000px;}
.ya9{bottom:219.324000px;}
.y10e{bottom:221.418000px;}
.yc8{bottom:221.484000px;}
.yde{bottom:229.236000px;}
.y138{bottom:235.200000px;}
.y163{bottom:236.100000px;}
.y87{bottom:237.018000px;}
.y60{bottom:237.060000px;}
.y30{bottom:240.906000px;}
.ya8{bottom:242.418000px;}
.y10d{bottom:244.818000px;}
.yc7{bottom:244.884000px;}
.ydd{bottom:252.636000px;}
.y137{bottom:252.678000px;}
.y162{bottom:255.300000px;}
.y86{bottom:260.112000px;}
.y5f{bottom:260.154000px;}
.y2f{bottom:264.000000px;}
.ya7{bottom:265.818000px;}
.y10c{bottom:267.912000px;}
.yc6{bottom:267.978000px;}
.y161{bottom:274.800000px;}
.ydc{bottom:275.730000px;}
.y136{bottom:275.772000px;}
.y85{bottom:283.512000px;}
.y5e{bottom:283.554000px;}
.y2e{bottom:287.400000px;}
.ya6{bottom:289.218000px;}
.y10b{bottom:291.312000px;}
.yc5{bottom:291.378000px;}
.y160{bottom:294.300000px;}
.ydb{bottom:299.130000px;}
.y135{bottom:299.172000px;}
.y84{bottom:306.912000px;}
.y5d{bottom:306.954000px;}
.y2d{bottom:310.800000px;}
.ya5{bottom:312.312000px;}
.y15f{bottom:313.800000px;}
.y10a{bottom:314.712000px;}
.yc4{bottom:314.778000px;}
.yda{bottom:322.224000px;}
.y134{bottom:322.266000px;}
.y83{bottom:330.006000px;}
.y5c{bottom:330.048000px;}
.y2c{bottom:330.600000px;}
.y15e{bottom:333.000000px;}
.ya4{bottom:335.712000px;}
.y109{bottom:337.806000px;}
.yc3{bottom:337.872000px;}
.y2b{bottom:341.700000px;}
.yd9{bottom:345.624000px;}
.y133{bottom:345.666000px;}
.y15d{bottom:352.500000px;}
.y82{bottom:353.406000px;}
.y5b{bottom:353.448000px;}
.ya3{bottom:359.112000px;}
.y108{bottom:361.206000px;}
.yc2{bottom:361.272000px;}
.y2a{bottom:365.100000px;}
.yd8{bottom:369.024000px;}
.y132{bottom:369.066000px;}
.y15c{bottom:372.000000px;}
.y81{bottom:376.806000px;}
.y5a{bottom:376.848000px;}
.ya2{bottom:382.206000px;}
.y107{bottom:384.300000px;}
.yc1{bottom:384.366000px;}
.y29{bottom:386.700000px;}
.y15b{bottom:391.200000px;}
.yd7{bottom:392.118000px;}
.y131{bottom:392.160000px;}
.y80{bottom:399.900000px;}
.y59{bottom:399.942000px;}
.y28{bottom:403.830000px;}
.ya1{bottom:405.606000px;}
.y106{bottom:407.700000px;}
.yc0{bottom:407.766000px;}
.y15a{bottom:410.700000px;}
.yd6{bottom:415.518000px;}
.y130{bottom:415.560000px;}
.y7f{bottom:421.500000px;}
.y58{bottom:423.342000px;}
.y27{bottom:427.230000px;}
.ya0{bottom:428.700000px;}
.y159{bottom:430.200000px;}
.y105{bottom:431.100000px;}
.ybf{bottom:431.166000px;}
.yd5{bottom:438.918000px;}
.y7e{bottom:438.936000px;}
.y12f{bottom:438.960000px;}
.y57{bottom:446.742000px;}
.y9f{bottom:448.800000px;}
.y158{bottom:449.400000px;}
.y26{bottom:450.630000px;}
.y104{bottom:454.200000px;}
.ybe{bottom:454.260000px;}
.y9e{bottom:459.924000px;}
.yd4{bottom:462.012000px;}
.y7d{bottom:462.030000px;}
.y12e{bottom:462.054000px;}
.y157{bottom:468.900000px;}
.y56{bottom:469.836000px;}
.y25{bottom:473.724000px;}
.y103{bottom:477.600000px;}
.ybd{bottom:477.660000px;}
.y9d{bottom:483.324000px;}
.yd3{bottom:485.412000px;}
.y7c{bottom:485.430000px;}
.y12d{bottom:485.454000px;}
.y156{bottom:488.400000px;}
.y55{bottom:493.236000px;}
.y24{bottom:497.124000px;}
.y102{bottom:501.006000px;}
.ybc{bottom:501.060000px;}
.y9c{bottom:506.418000px;}
.ye3{bottom:507.000000px;}
.y155{bottom:507.900000px;}
.yd2{bottom:508.812000px;}
.y7b{bottom:508.830000px;}
.y12c{bottom:508.854000px;}
.y54{bottom:516.330000px;}
.y23{bottom:520.218000px;}
.y101{bottom:524.100000px;}
.ybb{bottom:524.154000px;}
.y154{bottom:527.100000px;}
.y9b{bottom:529.818000px;}
.yd1{bottom:531.906000px;}
.y7a{bottom:531.924000px;}
.y12b{bottom:531.948000px;}
.y53{bottom:539.730000px;}
.y22{bottom:543.618000px;}
.y153{bottom:546.600000px;}
.y100{bottom:547.500000px;}
.yba{bottom:547.554000px;}
.y9a{bottom:553.218000px;}
.yd0{bottom:555.306000px;}
.y79{bottom:555.324000px;}
.y12a{bottom:555.348000px;}
.y52{bottom:563.130000px;}
.y152{bottom:566.100000px;}
.y21{bottom:567.018000px;}
.yff{bottom:570.906000px;}
.yb9{bottom:570.954000px;}
.y99{bottom:576.312000px;}
.ycf{bottom:578.400000px;}
.y78{bottom:578.418000px;}
.y129{bottom:578.442000px;}
.y151{bottom:585.300000px;}
.y51{bottom:586.224000px;}
.y20{bottom:590.112000px;}
.yfe{bottom:594.000000px;}
.yb8{bottom:594.048000px;}
.y98{bottom:599.712000px;}
.yce{bottom:601.800000px;}
.y77{bottom:601.818000px;}
.y128{bottom:601.842000px;}
.y150{bottom:604.800000px;}
.y50{bottom:609.624000px;}
.y1f{bottom:613.512000px;}
.yfd{bottom:617.406000px;}
.yb7{bottom:617.448000px;}
.y97{bottom:622.806000px;}
.ycd{bottom:623.400000px;}
.y14f{bottom:624.300000px;}
.y76{bottom:625.218000px;}
.y127{bottom:625.242000px;}
.y4f{bottom:633.024000px;}
.y1e{bottom:636.912000px;}
.yfc{bottom:640.806000px;}
.yb6{bottom:640.848000px;}
.y14e{bottom:643.500000px;}
.y96{bottom:646.206000px;}
.y75{bottom:648.312000px;}
.y126{bottom:648.336000px;}
.y4e{bottom:656.118000px;}
.y1d{bottom:660.006000px;}
.y14d{bottom:663.000000px;}
.yfb{bottom:663.900000px;}
.yb5{bottom:663.942000px;}
.y95{bottom:669.606000px;}
.y74{bottom:671.712000px;}
.y125{bottom:671.736000px;}
.y4d{bottom:679.518000px;}
.y14c{bottom:682.500000px;}
.y1c{bottom:683.406000px;}
.yfa{bottom:687.306000px;}
.yb4{bottom:687.342000px;}
.y94{bottom:692.700000px;}
.y73{bottom:695.112000px;}
.y124{bottom:695.136000px;}
.y14b{bottom:702.000000px;}
.y4c{bottom:702.918000px;}
.y1b{bottom:706.806000px;}
.yf9{bottom:710.400000px;}
.yb3{bottom:710.436000px;}
.y93{bottom:714.300000px;}
.y72{bottom:718.206000px;}
.y123{bottom:718.230000px;}
.y14a{bottom:721.200000px;}
.y4b{bottom:726.012000px;}
.y90{bottom:726.600000px;}
.y1a{bottom:729.900000px;}
.y92{bottom:731.700000px;}
.yf8{bottom:733.806000px;}
.yb2{bottom:733.836000px;}
.y149{bottom:740.700000px;}
.y71{bottom:741.606000px;}
.y122{bottom:741.630000px;}
.y4a{bottom:749.412000px;}
.y19{bottom:753.300000px;}
.yf7{bottom:757.206000px;}
.yb1{bottom:757.236000px;}
.y17c{bottom:759.000000px;}
.y148{bottom:760.200000px;}
.y70{bottom:765.006000px;}
.y121{bottom:765.030000px;}
.y49{bottom:772.506000px;}
.y8f{bottom:773.100000px;}
.y18{bottom:774.900000px;}
.y17b{bottom:778.800000px;}
.y147{bottom:779.400000px;}
.yf6{bottom:780.300000px;}
.yb0{bottom:780.330000px;}
.y6f{bottom:788.100000px;}
.y120{bottom:788.124000px;}
.y17{bottom:791.100000px;}
.y48{bottom:795.906000px;}
.y146{bottom:798.900000px;}
.yf5{bottom:803.700000px;}
.yaf{bottom:803.730000px;}
.y6e{bottom:809.700000px;}
.y11f{bottom:811.524000px;}
.y16{bottom:813.600000px;}
.y17a{bottom:815.692500px;}
.y145{bottom:818.400000px;}
.y47{bottom:819.306000px;}
.yf4{bottom:827.100000px;}
.y6d{bottom:827.130000px;}
.y15{bottom:834.300000px;}
.y11e{bottom:834.924000px;}
.y179{bottom:836.994000px;}
.y144{bottom:837.600000px;}
.y46{bottom:842.400000px;}
.yf3{bottom:850.200000px;}
.y6c{bottom:850.224000px;}
.y14{bottom:850.800000px;}
.y143{bottom:857.100000px;}
.y11d{bottom:858.018000px;}
.y178{bottom:858.592500px;}
.y45{bottom:865.800000px;}
.y13{bottom:870.300000px;}
.yf2{bottom:873.600000px;}
.y6b{bottom:873.624000px;}
.y142{bottom:876.600000px;}
.y11c{bottom:881.418000px;}
.y177{bottom:884.398500px;}
.y44{bottom:889.200000px;}
.y12{bottom:890.400000px;}
.y141{bottom:896.100000px;}
.yf1{bottom:897.006000px;}
.y6a{bottom:897.024000px;}
.y11b{bottom:904.512000px;}
.y43{bottom:910.500000px;}
.y11{bottom:913.800000px;}
.y140{bottom:915.300000px;}
.yf0{bottom:920.100000px;}
.y69{bottom:920.118000px;}
.y176{bottom:927.298500px;}
.y42{bottom:927.900000px;}
.y11a{bottom:927.912000px;}
.y13f{bottom:933.900000px;}
.y10{bottom:937.200000px;}
.yef{bottom:943.506000px;}
.y68{bottom:943.518000px;}
.y175{bottom:948.600000px;}
.y41{bottom:951.300000px;}
.y119{bottom:951.312000px;}
.yf{bottom:960.300000px;}
.yee{bottom:966.600000px;}
.y67{bottom:966.612000px;}
.y174{bottom:968.700000px;}
.y40{bottom:972.600000px;}
.y118{bottom:974.406000px;}
.ye{bottom:983.700000px;}
.y173{bottom:985.200000px;}
.yed{bottom:990.006000px;}
.y3f{bottom:990.012000px;}
.y117{bottom:997.806000px;}
.y172{bottom:1004.700000px;}
.yd{bottom:1007.694000px;}
.yec{bottom:1013.406000px;}
.y3e{bottom:1013.412000px;}
.y116{bottom:1021.206000px;}
.y171{bottom:1024.200000px;}
.yc{bottom:1034.700000px;}
.yeb{bottom:1036.500000px;}
.y3d{bottom:1036.506000px;}
.y170{bottom:1042.500000px;}
.y115{bottom:1044.300000px;}
.y16f{bottom:1059.000000px;}
.y3c{bottom:1059.906000px;}
.yb{bottom:1062.000000px;}
.y114{bottom:1067.700000px;}
.y16e{bottom:1078.500000px;}
.y8{bottom:1083.300000px;}
.y3b{bottom:1083.306000px;}
.y8e{bottom:1089.300000px;}
.y16d{bottom:1097.700000px;}
.y3a{bottom:1106.400000px;}
.y6{bottom:1107.300000px;}
.y16c{bottom:1117.200000px;}
.y39{bottom:1129.800000px;}
.y5{bottom:1132.500000px;}
.y16b{bottom:1136.700000px;}
.y3{bottom:1144.800000px;}
.y38{bottom:1153.200000px;}
.y16a{bottom:1156.200000px;}
.y2{bottom:1164.300000px;}
.y37{bottom:1183.500000px;}
.y1{bottom:1183.800000px;}
.h4{height:20.880000px;}
.h14{height:23.400000px;}
.h5{height:23.401500px;}
.h8{height:24.000000px;}
.hd{height:41.760000px;}
.h15{height:42.840000px;}
.h12{height:46.500000px;}
.h2{height:46.680000px;}
.h7{height:47.401500px;}
.h6{height:51.408000px;}
.hc{height:52.200000px;}
.he{height:56.016000px;}
.h17{height:57.420000px;}
.hf{height:58.857422px;}
.ha{height:59.976000px;}
.h16{height:62.578125px;}
.hb{height:62.640000px;}
.h3{height:70.664062px;}
.h9{height:73.080000px;}
.h10{height:75.093750px;}
.h11{height:312.898500px;}
.h13{height:324.000000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:127.500000px;}
.w3{width:127.800000px;}
.w2{width:478.200000px;}
.w5{width:709.200000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x17{left:76.500000px;}
.x3{left:79.800000px;}
.x1f{left:89.718000px;}
.x1{left:91.500000px;}
.x1e{left:102.300000px;}
.x1c{left:113.700000px;}
.x1a{left:118.500000px;}
.x8{left:123.000000px;}
.x6{left:125.100000px;}
.x9{left:134.991000px;}
.x13{left:144.600000px;}
.x20{left:172.828500px;}
.xe{left:184.800000px;}
.x18{left:190.200000px;}
.x12{left:208.500000px;}
.xf{left:255.900000px;}
.xc{left:260.700000px;}
.xd{left:262.782000px;}
.xb{left:264.900000px;}
.xa{left:271.800000px;}
.x10{left:374.100000px;}
.x21{left:442.200000px;}
.x2{left:446.400000px;}
.x11{left:457.200000px;}
.x14{left:467.700000px;}
.x15{left:473.100000px;}
.x5{left:558.000000px;}
.x19{left:610.500000px;}
.x1b{left:659.400000px;}
.x7{left:685.800000px;}
.x1d{left:687.300000px;}
.x16{left:689.400000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls20{letter-spacing:-4.288000pt;}
.ls21{letter-spacing:-2.176000pt;}
.ls2b{letter-spacing:-1.408000pt;}
.ls2c{letter-spacing:-1.088000pt;}
.ls59{letter-spacing:-0.800000pt;}
.ls17{letter-spacing:-0.768000pt;}
.ls5a{letter-spacing:-0.586667pt;}
.ls15{letter-spacing:-0.512000pt;}
.ls64{letter-spacing:-0.480000pt;}
.ls69{letter-spacing:-0.469333pt;}
.ls18{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.426667pt;}
.ls13{letter-spacing:-0.384000pt;}
.ls27{letter-spacing:-0.373333pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls66{letter-spacing:-0.293333pt;}
.ls1d{letter-spacing:-0.266667pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls65{letter-spacing:-0.213333pt;}
.ls29{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.160000pt;}
.ls12{letter-spacing:-0.149333pt;}
.ls45{letter-spacing:-0.128000pt;}
.ls68{letter-spacing:-0.117333pt;}
.lsc{letter-spacing:-0.106667pt;}
.ls14{letter-spacing:-0.064000pt;}
.ls6a{letter-spacing:-0.058667pt;}
.ls58{letter-spacing:-0.053333pt;}
.lse{letter-spacing:0.000000pt;}
.ls40{letter-spacing:0.051200pt;}
.ls1c{letter-spacing:0.053333pt;}
.ls49{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.106667pt;}
.ls2d{letter-spacing:0.128000pt;}
.ls39{letter-spacing:0.134400pt;}
.ls46{letter-spacing:0.140800pt;}
.ls5d{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.213333pt;}
.ls3e{letter-spacing:0.236800pt;}
.ls48{letter-spacing:0.243200pt;}
.ls19{letter-spacing:0.256000pt;}
.ls5b{letter-spacing:0.266667pt;}
.ls62{letter-spacing:0.293333pt;}
.ls5{letter-spacing:0.320000pt;}
.ls67{letter-spacing:0.352000pt;}
.ls5c{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.428800pt;}
.ls6{letter-spacing:0.448000pt;}
.ls33{letter-spacing:0.473600pt;}
.ls1a{letter-spacing:0.480000pt;}
.ls30{letter-spacing:0.512000pt;}
.ls54{letter-spacing:0.563200pt;}
.ls7{letter-spacing:0.693333pt;}
.ls23{letter-spacing:0.697600pt;}
.ls50{letter-spacing:0.768000pt;}
.ls8{letter-spacing:0.800000pt;}
.ls35{letter-spacing:1.024000pt;}
.ls5e{letter-spacing:1.061333pt;}
.ls3b{letter-spacing:1.216000pt;}
.ls47{letter-spacing:1.344000pt;}
.ls34{letter-spacing:2.112000pt;}
.ls26{letter-spacing:2.988800pt;}
.ls3d{letter-spacing:3.008000pt;}
.ls24{letter-spacing:3.200000pt;}
.ls63{letter-spacing:3.637333pt;}
.ls44{letter-spacing:4.096000pt;}
.ls25{letter-spacing:4.224000pt;}
.ls4e{letter-spacing:5.312000pt;}
.ls52{letter-spacing:6.208000pt;}
.ls1f{letter-spacing:6.400000pt;}
.ls2a{letter-spacing:7.424000pt;}
.ls38{letter-spacing:8.320000pt;}
.ls9{letter-spacing:8.512000pt;}
.ls57{letter-spacing:9.226667pt;}
.ls41{letter-spacing:9.408000pt;}
.lsb{letter-spacing:9.600000pt;}
.ls3a{letter-spacing:10.496000pt;}
.ls28{letter-spacing:10.624000pt;}
.lsa{letter-spacing:11.712000pt;}
.ls5f{letter-spacing:12.426667pt;}
.ls31{letter-spacing:12.800000pt;}
.ls61{letter-spacing:13.141333pt;}
.ls2f{letter-spacing:16.000000pt;}
.ls53{letter-spacing:17.920000pt;}
.ls43{letter-spacing:18.112000pt;}
.ls3c{letter-spacing:19.008000pt;}
.ls55{letter-spacing:20.373333pt;}
.ls37{letter-spacing:22.720000pt;}
.ls56{letter-spacing:23.093333pt;}
.ls32{letter-spacing:24.896000pt;}
.ls36{letter-spacing:25.600000pt;}
.ls4a{letter-spacing:25.920000pt;}
.ls3f{letter-spacing:28.608000pt;}
.ls4f{letter-spacing:30.208000pt;}
.ls42{letter-spacing:32.896000pt;}
.ls51{letter-spacing:36.608000pt;}
.ls4b{letter-spacing:84.608000pt;}
.ls60{letter-spacing:106.293333pt;}
.ls4c{letter-spacing:138.773333pt;}
.ls4d{letter-spacing:141.973333pt;}
.ls3{letter-spacing:527.626667pt;}
.ls2e{letter-spacing:557.493333pt;}
.ls2{letter-spacing:611.893333pt;}
.ls1{letter-spacing:615.093333pt;}
.ls22{letter-spacing:742.933333pt;}
.ls0{letter-spacing:1083.360000pt;}
.ws1{word-spacing:-17.408000pt;}
.ws7a{word-spacing:-17.280000pt;}
.ws2d{word-spacing:-17.216000pt;}
.wsa9{word-spacing:-17.152000pt;}
.ws2{word-spacing:-17.088000pt;}
.wsbf{word-spacing:-17.024000pt;}
.wsa8{word-spacing:-16.896000pt;}
.ws79{word-spacing:-16.832000pt;}
.ws6a{word-spacing:-16.704000pt;}
.wsba{word-spacing:-16.640000pt;}
.ws2a{word-spacing:-16.576000pt;}
.ws3{word-spacing:-16.320000pt;}
.ws2c{word-spacing:-16.192000pt;}
.wsc0{word-spacing:-16.128000pt;}
.wsee{word-spacing:-16.016000pt;}
.ws51{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.936000pt;}
.ws2b{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.680000pt;}
.wsed{word-spacing:-15.194667pt;}
.wseb{word-spacing:-15.136000pt;}
.wsea{word-spacing:-15.040000pt;}
.ws4{word-spacing:-14.720000pt;}
.wsda{word-spacing:-14.666667pt;}
.wsec{word-spacing:-14.549333pt;}
.wsd5{word-spacing:-14.453333pt;}
.wsdb{word-spacing:-14.400000pt;}
.ws4b{word-spacing:-14.346667pt;}
.wsd3{word-spacing:-14.293333pt;}
.wsd4{word-spacing:-14.240000pt;}
.wsd7{word-spacing:-14.186667pt;}
.wse9{word-spacing:-14.026667pt;}
.wsd2{word-spacing:-13.973333pt;}
.wsd6{word-spacing:-13.866667pt;}
.ws0{word-spacing:-13.813333pt;}
.wsd9{word-spacing:-13.653333pt;}
.wsd8{word-spacing:-13.440000pt;}
.wsd1{word-spacing:-13.066667pt;}
.wse8{word-spacing:-13.013333pt;}
.ws69{word-spacing:-12.800000pt;}
.ws2f{word-spacing:-10.624000pt;}
.ws44{word-spacing:-8.512000pt;}
.ws32{word-spacing:-7.424000pt;}
.ws1f{word-spacing:-6.400000pt;}
.wscf{word-spacing:-4.480000pt;}
.ws73{word-spacing:-4.224000pt;}
.ws45{word-spacing:-3.904000pt;}
.ws4e{word-spacing:-3.392000pt;}
.wsc2{word-spacing:-3.200000pt;}
.ws54{word-spacing:-3.136000pt;}
.ws34{word-spacing:-2.944000pt;}
.wscb{word-spacing:-2.880000pt;}
.ws1b{word-spacing:-2.816000pt;}
.wsb1{word-spacing:-2.752000pt;}
.ws1c{word-spacing:-2.688000pt;}
.ws88{word-spacing:-2.560000pt;}
.ws55{word-spacing:-2.432000pt;}
.ws59{word-spacing:-2.112000pt;}
.ws78{word-spacing:-1.920000pt;}
.ws33{word-spacing:-1.792000pt;}
.ws6f{word-spacing:-1.728000pt;}
.ws20{word-spacing:-1.664000pt;}
.ws8f{word-spacing:-1.600000pt;}
.wsa0{word-spacing:-1.344000pt;}
.wsef{word-spacing:-1.333333pt;}
.ws98{word-spacing:-1.280000pt;}
.ws8e{word-spacing:-1.152000pt;}
.wse6{word-spacing:-1.066667pt;}
.ws4a{word-spacing:-1.024000pt;}
.wse7{word-spacing:-1.013333pt;}
.wsa1{word-spacing:-0.960000pt;}
.ws61{word-spacing:-0.832000pt;}
.wsc3{word-spacing:-0.768000pt;}
.ws3b{word-spacing:-0.704000pt;}
.ws15{word-spacing:-0.586667pt;}
.ws1e{word-spacing:-0.576000pt;}
.wsa3{word-spacing:-0.512000pt;}
.wsa{word-spacing:-0.480000pt;}
.ws57{word-spacing:-0.448000pt;}
.ws16{word-spacing:-0.426667pt;}
.wsc{word-spacing:-0.373333pt;}
.ws10{word-spacing:-0.320000pt;}
.ws7{word-spacing:-0.266667pt;}
.ws14{word-spacing:-0.256000pt;}
.ws4c{word-spacing:-0.213333pt;}
.wsd{word-spacing:-0.192000pt;}
.ws19{word-spacing:-0.106667pt;}
.ws97{word-spacing:-0.064000pt;}
.wse4{word-spacing:-0.053333pt;}
.ws8{word-spacing:0.000000pt;}
.ws9{word-spacing:0.053333pt;}
.wsf3{word-spacing:0.058667pt;}
.ws11{word-spacing:0.064000pt;}
.ws64{word-spacing:0.128000pt;}
.wsb2{word-spacing:0.192000pt;}
.ws13{word-spacing:0.256000pt;}
.ws18{word-spacing:0.266667pt;}
.ws1a{word-spacing:0.320000pt;}
.wsf7{word-spacing:0.352000pt;}
.ws2e{word-spacing:0.373333pt;}
.wsf{word-spacing:0.384000pt;}
.wsf6{word-spacing:0.410667pt;}
.ws17{word-spacing:0.426667pt;}
.wse{word-spacing:0.448000pt;}
.wsf5{word-spacing:0.469333pt;}
.ws12{word-spacing:0.512000pt;}
.ws7b{word-spacing:0.768000pt;}
.ws3d{word-spacing:0.832000pt;}
.wsb{word-spacing:0.853333pt;}
.ws39{word-spacing:1.088000pt;}
.wse2{word-spacing:1.120000pt;}
.ws6e{word-spacing:1.408000pt;}
.ws66{word-spacing:1.472000pt;}
.ws3e{word-spacing:1.536000pt;}
.wse0{word-spacing:1.546667pt;}
.wsc8{word-spacing:1.856000pt;}
.ws38{word-spacing:1.920000pt;}
.ws29{word-spacing:2.176000pt;}
.ws87{word-spacing:2.240000pt;}
.ws65{word-spacing:2.304000pt;}
.ws30{word-spacing:2.368000pt;}
.ws6d{word-spacing:2.496000pt;}
.wsc5{word-spacing:2.560000pt;}
.ws26{word-spacing:2.624000pt;}
.ws68{word-spacing:2.688000pt;}
.wsac{word-spacing:2.944000pt;}
.wsb7{word-spacing:3.008000pt;}
.wsc6{word-spacing:3.136000pt;}
.wsf4{word-spacing:3.168000pt;}
.ws1d{word-spacing:3.264000pt;}
.ws3f{word-spacing:3.584000pt;}
.ws36{word-spacing:3.712000pt;}
.ws48{word-spacing:3.968000pt;}
.ws5b{word-spacing:4.032000pt;}
.ws9d{word-spacing:4.224000pt;}
.ws28{word-spacing:4.288000pt;}
.ws49{word-spacing:4.480000pt;}
.ws6b{word-spacing:4.608000pt;}
.wscc{word-spacing:4.672000pt;}
.ws4d{word-spacing:4.736000pt;}
.ws37{word-spacing:5.056000pt;}
.wsce{word-spacing:5.120000pt;}
.wse5{word-spacing:5.333333pt;}
.wsaf{word-spacing:5.376000pt;}
.wscd{word-spacing:5.440000pt;}
.ws67{word-spacing:5.568000pt;}
.wsaa{word-spacing:5.696000pt;}
.ws3a{word-spacing:5.760000pt;}
.wsab{word-spacing:5.824000pt;}
.wsc4{word-spacing:5.888000pt;}
.ws5d{word-spacing:6.144000pt;}
.wsa6{word-spacing:6.208000pt;}
.wsc9{word-spacing:6.336000pt;}
.wsdc{word-spacing:6.464000pt;}
.ws63{word-spacing:6.592000pt;}
.wsca{word-spacing:6.848000pt;}
.ws5c{word-spacing:6.912000pt;}
.ws92{word-spacing:7.232000pt;}
.wsb0{word-spacing:7.488000pt;}
.ws21{word-spacing:7.680000pt;}
.ws83{word-spacing:7.872000pt;}
.ws22{word-spacing:7.936000pt;}
.ws7f{word-spacing:8.000000pt;}
.ws35{word-spacing:8.576000pt;}
.ws23{word-spacing:8.896000pt;}
.wse3{word-spacing:9.013333pt;}
.ws5a{word-spacing:9.024000pt;}
.ws4f{word-spacing:9.664000pt;}
.ws8d{word-spacing:9.728000pt;}
.ws47{word-spacing:9.984000pt;}
.ws46{word-spacing:10.112000pt;}
.ws80{word-spacing:10.176000pt;}
.ws81{word-spacing:10.432000pt;}
.ws3c{word-spacing:10.688000pt;}
.ws31{word-spacing:10.816000pt;}
.wsa4{word-spacing:10.880000pt;}
.ws8c{word-spacing:10.944000pt;}
.ws70{word-spacing:11.008000pt;}
.ws71{word-spacing:11.136000pt;}
.ws27{word-spacing:11.456000pt;}
.ws7d{word-spacing:11.520000pt;}
.wsdd{word-spacing:11.776000pt;}
.ws84{word-spacing:12.224000pt;}
.wsf2{word-spacing:12.848000pt;}
.wsf1{word-spacing:13.200000pt;}
.ws40{word-spacing:13.312000pt;}
.ws25{word-spacing:13.632000pt;}
.ws85{word-spacing:13.888000pt;}
.ws6c{word-spacing:14.080000pt;}
.ws86{word-spacing:14.208000pt;}
.ws24{word-spacing:14.336000pt;}
.ws9f{word-spacing:14.656000pt;}
.ws9e{word-spacing:14.976000pt;}
.wsb8{word-spacing:15.168000pt;}
.ws58{word-spacing:15.424000pt;}
.ws90{word-spacing:16.064000pt;}
.ws93{word-spacing:16.384000pt;}
.ws52{word-spacing:16.512000pt;}
.wsc7{word-spacing:16.576000pt;}
.wsbc{word-spacing:17.088000pt;}
.wsde{word-spacing:17.120000pt;}
.ws53{word-spacing:17.472000pt;}
.wsa2{word-spacing:17.536000pt;}
.ws94{word-spacing:17.856000pt;}
.ws95{word-spacing:17.920000pt;}
.ws9b{word-spacing:18.176000pt;}
.ws96{word-spacing:18.496000pt;}
.ws77{word-spacing:18.624000pt;}
.ws60{word-spacing:19.008000pt;}
.ws5f{word-spacing:19.264000pt;}
.wsc1{word-spacing:19.456000pt;}
.ws82{word-spacing:19.520000pt;}
.ws5e{word-spacing:19.584000pt;}
.ws74{word-spacing:19.712000pt;}
.wsd0{word-spacing:20.032000pt;}
.ws9c{word-spacing:20.288000pt;}
.wsb6{word-spacing:20.608000pt;}
.ws62{word-spacing:20.736000pt;}
.ws72{word-spacing:21.376000pt;}
.wsbe{word-spacing:22.208000pt;}
.ws99{word-spacing:22.784000pt;}
.ws9a{word-spacing:22.848000pt;}
.wsae{word-spacing:23.488000pt;}
.wsad{word-spacing:23.936000pt;}
.ws89{word-spacing:25.088000pt;}
.wsb5{word-spacing:25.408000pt;}
.wsb3{word-spacing:25.664000pt;}
.wsb4{word-spacing:25.792000pt;}
.ws7e{word-spacing:26.112000pt;}
.wsdf{word-spacing:26.720000pt;}
.wsbd{word-spacing:27.072000pt;}
.ws56{word-spacing:27.136000pt;}
.ws75{word-spacing:28.096000pt;}
.wsb9{word-spacing:28.224000pt;}
.ws8b{word-spacing:29.056000pt;}
.ws8a{word-spacing:29.120000pt;}
.wsa5{word-spacing:29.184000pt;}
.ws7c{word-spacing:30.336000pt;}
.ws91{word-spacing:32.640000pt;}
.wsa7{word-spacing:41.024000pt;}
.wsbb{word-spacing:43.136000pt;}
.wse1{word-spacing:44.853333pt;}
.ws50{word-spacing:45.312000pt;}
.ws76{word-spacing:45.888000pt;}
.ws43{word-spacing:46.208000pt;}
.ws42{word-spacing:46.272000pt;}
.ws41{word-spacing:46.336000pt;}
.wsf0{word-spacing:106.400000pt;}
._1e{margin-left:-17.235200pt;}
._1d{margin-left:-15.744000pt;}
._20{margin-left:-14.636800pt;}
._24{margin-left:-13.331200pt;}
._21{margin-left:-12.224000pt;}
._18{margin-left:-11.136000pt;}
._19{margin-left:-10.137600pt;}
._1a{margin-left:-8.979200pt;}
._e{margin-left:-7.596800pt;}
._c{margin-left:-6.144000pt;}
._10{margin-left:-4.780800pt;}
._2a{margin-left:-3.872000pt;}
._8{margin-left:-2.901333pt;}
._2{margin-left:-1.386667pt;}
._0{width:1.013333pt;}
._7{width:1.920000pt;}
._b{width:2.935467pt;}
._9{width:3.933867pt;}
._a{width:4.904533pt;}
._d{width:5.868800pt;}
._f{width:7.123200pt;}
._14{width:8.089600pt;}
._5{width:8.981333pt;}
._6{width:10.022400pt;}
._13{width:11.520000pt;}
._11{width:13.152000pt;}
._12{width:14.359467pt;}
._1f{width:15.654400pt;}
._28{width:18.438400pt;}
._22{width:19.488000pt;}
._23{width:21.092267pt;}
._26{width:22.188800pt;}
._27{width:23.238400pt;}
._15{width:26.792533pt;}
._1c{width:29.422933pt;}
._1b{width:30.478933pt;}
._17{width:33.222400pt;}
._25{width:34.833067pt;}
._2b{width:36.514133pt;}
._29{width:40.548267pt;}
._2d{width:106.192000pt;}
._2c{width:107.093333pt;}
._3{width:572.320000pt;}
._1{width:607.840000pt;}
._4{width:689.760000pt;}
._16{width:700.533333pt;}
.fs2{font-size:21.333333pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.933333pt;}
.y7{bottom:4.533333pt;}
.ya{bottom:5.066667pt;}
.y91{bottom:25.066667pt;}
.y4{bottom:60.266667pt;}
.y13e{bottom:86.410667pt;}
.y8d{bottom:86.426667pt;}
.y66{bottom:86.464000pt;}
.ye9{bottom:88.266667pt;}
.y36{bottom:89.882667pt;}
.yae{bottom:91.226667pt;}
.y113{bottom:93.360000pt;}
.yea{bottom:93.418667pt;}
.y169{bottom:106.400000pt;}
.y13d{bottom:107.210667pt;}
.y8c{bottom:107.226667pt;}
.y65{bottom:107.264000pt;}
.ye8{bottom:109.066667pt;}
.y35{bottom:110.682667pt;}
.yad{bottom:112.026667pt;}
.y112{bottom:113.888000pt;}
.ycc{bottom:113.946667pt;}
.ye2{bottom:120.837333pt;}
.y168{bottom:123.466667pt;}
.y13c{bottom:127.738667pt;}
.y8b{bottom:127.754667pt;}
.y64{bottom:127.792000pt;}
.ye7{bottom:128.000000pt;}
.y34{bottom:131.210667pt;}
.yac{bottom:132.826667pt;}
.y111{bottom:134.688000pt;}
.ycb{bottom:134.746667pt;}
.ye5{bottom:138.933333pt;}
.y167{bottom:140.800000pt;}
.ye1{bottom:141.637333pt;}
.ye6{bottom:143.466667pt;}
.y13b{bottom:148.538667pt;}
.y8a{bottom:148.554667pt;}
.y63{bottom:148.592000pt;}
.y33{bottom:152.010667pt;}
.yab{bottom:153.354667pt;}
.y110{bottom:155.488000pt;}
.yca{bottom:155.546667pt;}
.y166{bottom:158.133333pt;}
.ye4{bottom:159.733333pt;}
.ye0{bottom:162.437333pt;}
.y13a{bottom:169.066667pt;}
.y89{bottom:169.082667pt;}
.y62{bottom:169.120000pt;}
.y32{bottom:172.810667pt;}
.yaa{bottom:174.154667pt;}
.y165{bottom:175.200000pt;}
.y10f{bottom:176.016000pt;}
.yc9{bottom:176.074667pt;}
.ydf{bottom:182.965333pt;}
.y139{bottom:189.866667pt;}
.y88{bottom:189.882667pt;}
.y61{bottom:189.920000pt;}
.y164{bottom:192.533333pt;}
.y31{bottom:193.338667pt;}
.ya9{bottom:194.954667pt;}
.y10e{bottom:196.816000pt;}
.yc8{bottom:196.874667pt;}
.yde{bottom:203.765333pt;}
.y138{bottom:209.066667pt;}
.y163{bottom:209.866667pt;}
.y87{bottom:210.682667pt;}
.y60{bottom:210.720000pt;}
.y30{bottom:214.138667pt;}
.ya8{bottom:215.482667pt;}
.y10d{bottom:217.616000pt;}
.yc7{bottom:217.674667pt;}
.ydd{bottom:224.565333pt;}
.y137{bottom:224.602667pt;}
.y162{bottom:226.933333pt;}
.y86{bottom:231.210667pt;}
.y5f{bottom:231.248000pt;}
.y2f{bottom:234.666667pt;}
.ya7{bottom:236.282667pt;}
.y10c{bottom:238.144000pt;}
.yc6{bottom:238.202667pt;}
.y161{bottom:244.266667pt;}
.ydc{bottom:245.093333pt;}
.y136{bottom:245.130667pt;}
.y85{bottom:252.010667pt;}
.y5e{bottom:252.048000pt;}
.y2e{bottom:255.466667pt;}
.ya6{bottom:257.082667pt;}
.y10b{bottom:258.944000pt;}
.yc5{bottom:259.002667pt;}
.y160{bottom:261.600000pt;}
.ydb{bottom:265.893333pt;}
.y135{bottom:265.930667pt;}
.y84{bottom:272.810667pt;}
.y5d{bottom:272.848000pt;}
.y2d{bottom:276.266667pt;}
.ya5{bottom:277.610667pt;}
.y15f{bottom:278.933333pt;}
.y10a{bottom:279.744000pt;}
.yc4{bottom:279.802667pt;}
.yda{bottom:286.421333pt;}
.y134{bottom:286.458667pt;}
.y83{bottom:293.338667pt;}
.y5c{bottom:293.376000pt;}
.y2c{bottom:293.866667pt;}
.y15e{bottom:296.000000pt;}
.ya4{bottom:298.410667pt;}
.y109{bottom:300.272000pt;}
.yc3{bottom:300.330667pt;}
.y2b{bottom:303.733333pt;}
.yd9{bottom:307.221333pt;}
.y133{bottom:307.258667pt;}
.y15d{bottom:313.333333pt;}
.y82{bottom:314.138667pt;}
.y5b{bottom:314.176000pt;}
.ya3{bottom:319.210667pt;}
.y108{bottom:321.072000pt;}
.yc2{bottom:321.130667pt;}
.y2a{bottom:324.533333pt;}
.yd8{bottom:328.021333pt;}
.y132{bottom:328.058667pt;}
.y15c{bottom:330.666667pt;}
.y81{bottom:334.938667pt;}
.y5a{bottom:334.976000pt;}
.ya2{bottom:339.738667pt;}
.y107{bottom:341.600000pt;}
.yc1{bottom:341.658667pt;}
.y29{bottom:343.733333pt;}
.y15b{bottom:347.733333pt;}
.yd7{bottom:348.549333pt;}
.y131{bottom:348.586667pt;}
.y80{bottom:355.466667pt;}
.y59{bottom:355.504000pt;}
.y28{bottom:358.960000pt;}
.ya1{bottom:360.538667pt;}
.y106{bottom:362.400000pt;}
.yc0{bottom:362.458667pt;}
.y15a{bottom:365.066667pt;}
.yd6{bottom:369.349333pt;}
.y130{bottom:369.386667pt;}
.y7f{bottom:374.666667pt;}
.y58{bottom:376.304000pt;}
.y27{bottom:379.760000pt;}
.ya0{bottom:381.066667pt;}
.y159{bottom:382.400000pt;}
.y105{bottom:383.200000pt;}
.ybf{bottom:383.258667pt;}
.yd5{bottom:390.149333pt;}
.y7e{bottom:390.165333pt;}
.y12f{bottom:390.186667pt;}
.y57{bottom:397.104000pt;}
.y9f{bottom:398.933333pt;}
.y158{bottom:399.466667pt;}
.y26{bottom:400.560000pt;}
.y104{bottom:403.733333pt;}
.ybe{bottom:403.786667pt;}
.y9e{bottom:408.821333pt;}
.yd4{bottom:410.677333pt;}
.y7d{bottom:410.693333pt;}
.y12e{bottom:410.714667pt;}
.y157{bottom:416.800000pt;}
.y56{bottom:417.632000pt;}
.y25{bottom:421.088000pt;}
.y103{bottom:424.533333pt;}
.ybd{bottom:424.586667pt;}
.y9d{bottom:429.621333pt;}
.yd3{bottom:431.477333pt;}
.y7c{bottom:431.493333pt;}
.y12d{bottom:431.514667pt;}
.y156{bottom:434.133333pt;}
.y55{bottom:438.432000pt;}
.y24{bottom:441.888000pt;}
.y102{bottom:445.338667pt;}
.ybc{bottom:445.386667pt;}
.y9c{bottom:450.149333pt;}
.ye3{bottom:450.666667pt;}
.y155{bottom:451.466667pt;}
.yd2{bottom:452.277333pt;}
.y7b{bottom:452.293333pt;}
.y12c{bottom:452.314667pt;}
.y54{bottom:458.960000pt;}
.y23{bottom:462.416000pt;}
.y101{bottom:465.866667pt;}
.ybb{bottom:465.914667pt;}
.y154{bottom:468.533333pt;}
.y9b{bottom:470.949333pt;}
.yd1{bottom:472.805333pt;}
.y7a{bottom:472.821333pt;}
.y12b{bottom:472.842667pt;}
.y53{bottom:479.760000pt;}
.y22{bottom:483.216000pt;}
.y153{bottom:485.866667pt;}
.y100{bottom:486.666667pt;}
.yba{bottom:486.714667pt;}
.y9a{bottom:491.749333pt;}
.yd0{bottom:493.605333pt;}
.y79{bottom:493.621333pt;}
.y12a{bottom:493.642667pt;}
.y52{bottom:500.560000pt;}
.y152{bottom:503.200000pt;}
.y21{bottom:504.016000pt;}
.yff{bottom:507.472000pt;}
.yb9{bottom:507.514667pt;}
.y99{bottom:512.277333pt;}
.ycf{bottom:514.133333pt;}
.y78{bottom:514.149333pt;}
.y129{bottom:514.170667pt;}
.y151{bottom:520.266667pt;}
.y51{bottom:521.088000pt;}
.y20{bottom:524.544000pt;}
.yfe{bottom:528.000000pt;}
.yb8{bottom:528.042667pt;}
.y98{bottom:533.077333pt;}
.yce{bottom:534.933333pt;}
.y77{bottom:534.949333pt;}
.y128{bottom:534.970667pt;}
.y150{bottom:537.600000pt;}
.y50{bottom:541.888000pt;}
.y1f{bottom:545.344000pt;}
.yfd{bottom:548.805333pt;}
.yb7{bottom:548.842667pt;}
.y97{bottom:553.605333pt;}
.ycd{bottom:554.133333pt;}
.y14f{bottom:554.933333pt;}
.y76{bottom:555.749333pt;}
.y127{bottom:555.770667pt;}
.y4f{bottom:562.688000pt;}
.y1e{bottom:566.144000pt;}
.yfc{bottom:569.605333pt;}
.yb6{bottom:569.642667pt;}
.y14e{bottom:572.000000pt;}
.y96{bottom:574.405333pt;}
.y75{bottom:576.277333pt;}
.y126{bottom:576.298667pt;}
.y4e{bottom:583.216000pt;}
.y1d{bottom:586.672000pt;}
.y14d{bottom:589.333333pt;}
.yfb{bottom:590.133333pt;}
.yb5{bottom:590.170667pt;}
.y95{bottom:595.205333pt;}
.y74{bottom:597.077333pt;}
.y125{bottom:597.098667pt;}
.y4d{bottom:604.016000pt;}
.y14c{bottom:606.666667pt;}
.y1c{bottom:607.472000pt;}
.yfa{bottom:610.938667pt;}
.yb4{bottom:610.970667pt;}
.y94{bottom:615.733333pt;}
.y73{bottom:617.877333pt;}
.y124{bottom:617.898667pt;}
.y14b{bottom:624.000000pt;}
.y4c{bottom:624.816000pt;}
.y1b{bottom:628.272000pt;}
.yf9{bottom:631.466667pt;}
.yb3{bottom:631.498667pt;}
.y93{bottom:634.933333pt;}
.y72{bottom:638.405333pt;}
.y123{bottom:638.426667pt;}
.y14a{bottom:641.066667pt;}
.y4b{bottom:645.344000pt;}
.y90{bottom:645.866667pt;}
.y1a{bottom:648.800000pt;}
.y92{bottom:650.400000pt;}
.yf8{bottom:652.272000pt;}
.yb2{bottom:652.298667pt;}
.y149{bottom:658.400000pt;}
.y71{bottom:659.205333pt;}
.y122{bottom:659.226667pt;}
.y4a{bottom:666.144000pt;}
.y19{bottom:669.600000pt;}
.yf7{bottom:673.072000pt;}
.yb1{bottom:673.098667pt;}
.y17c{bottom:674.666667pt;}
.y148{bottom:675.733333pt;}
.y70{bottom:680.005333pt;}
.y121{bottom:680.026667pt;}
.y49{bottom:686.672000pt;}
.y8f{bottom:687.200000pt;}
.y18{bottom:688.800000pt;}
.y17b{bottom:692.266667pt;}
.y147{bottom:692.800000pt;}
.yf6{bottom:693.600000pt;}
.yb0{bottom:693.626667pt;}
.y6f{bottom:700.533333pt;}
.y120{bottom:700.554667pt;}
.y17{bottom:703.200000pt;}
.y48{bottom:707.472000pt;}
.y146{bottom:710.133333pt;}
.yf5{bottom:714.400000pt;}
.yaf{bottom:714.426667pt;}
.y6e{bottom:719.733333pt;}
.y11f{bottom:721.354667pt;}
.y16{bottom:723.200000pt;}
.y17a{bottom:725.060000pt;}
.y145{bottom:727.466667pt;}
.y47{bottom:728.272000pt;}
.yf4{bottom:735.200000pt;}
.y6d{bottom:735.226667pt;}
.y15{bottom:741.600000pt;}
.y11e{bottom:742.154667pt;}
.y179{bottom:743.994667pt;}
.y144{bottom:744.533333pt;}
.y46{bottom:748.800000pt;}
.yf3{bottom:755.733333pt;}
.y6c{bottom:755.754667pt;}
.y14{bottom:756.266667pt;}
.y143{bottom:761.866667pt;}
.y11d{bottom:762.682667pt;}
.y178{bottom:763.193333pt;}
.y45{bottom:769.600000pt;}
.y13{bottom:773.600000pt;}
.yf2{bottom:776.533333pt;}
.y6b{bottom:776.554667pt;}
.y142{bottom:779.200000pt;}
.y11c{bottom:783.482667pt;}
.y177{bottom:786.132000pt;}
.y44{bottom:790.400000pt;}
.y12{bottom:791.466667pt;}
.y141{bottom:796.533333pt;}
.yf1{bottom:797.338667pt;}
.y6a{bottom:797.354667pt;}
.y11b{bottom:804.010667pt;}
.y43{bottom:809.333333pt;}
.y11{bottom:812.266667pt;}
.y140{bottom:813.600000pt;}
.yf0{bottom:817.866667pt;}
.y69{bottom:817.882667pt;}
.y176{bottom:824.265333pt;}
.y42{bottom:824.800000pt;}
.y11a{bottom:824.810667pt;}
.y13f{bottom:830.133333pt;}
.y10{bottom:833.066667pt;}
.yef{bottom:838.672000pt;}
.y68{bottom:838.682667pt;}
.y175{bottom:843.200000pt;}
.y41{bottom:845.600000pt;}
.y119{bottom:845.610667pt;}
.yf{bottom:853.600000pt;}
.yee{bottom:859.200000pt;}
.y67{bottom:859.210667pt;}
.y174{bottom:861.066667pt;}
.y40{bottom:864.533333pt;}
.y118{bottom:866.138667pt;}
.ye{bottom:874.400000pt;}
.y173{bottom:875.733333pt;}
.yed{bottom:880.005333pt;}
.y3f{bottom:880.010667pt;}
.y117{bottom:886.938667pt;}
.y172{bottom:893.066667pt;}
.yd{bottom:895.728000pt;}
.yec{bottom:900.805333pt;}
.y3e{bottom:900.810667pt;}
.y116{bottom:907.738667pt;}
.y171{bottom:910.400000pt;}
.yc{bottom:919.733333pt;}
.yeb{bottom:921.333333pt;}
.y3d{bottom:921.338667pt;}
.y170{bottom:926.666667pt;}
.y115{bottom:928.266667pt;}
.y16f{bottom:941.333333pt;}
.y3c{bottom:942.138667pt;}
.yb{bottom:944.000000pt;}
.y114{bottom:949.066667pt;}
.y16e{bottom:958.666667pt;}
.y8{bottom:962.933333pt;}
.y3b{bottom:962.938667pt;}
.y8e{bottom:968.266667pt;}
.y16d{bottom:975.733333pt;}
.y3a{bottom:983.466667pt;}
.y6{bottom:984.266667pt;}
.y16c{bottom:993.066667pt;}
.y39{bottom:1004.266667pt;}
.y5{bottom:1006.666667pt;}
.y16b{bottom:1010.400000pt;}
.y3{bottom:1017.600000pt;}
.y38{bottom:1025.066667pt;}
.y16a{bottom:1027.733333pt;}
.y2{bottom:1034.933333pt;}
.y37{bottom:1052.000000pt;}
.y1{bottom:1052.266667pt;}
.h4{height:18.560000pt;}
.h14{height:20.800000pt;}
.h5{height:20.801333pt;}
.h8{height:21.333333pt;}
.hd{height:37.120000pt;}
.h15{height:38.080000pt;}
.h12{height:41.333333pt;}
.h2{height:41.493333pt;}
.h7{height:42.134667pt;}
.h6{height:45.696000pt;}
.hc{height:46.400000pt;}
.he{height:49.792000pt;}
.h17{height:51.040000pt;}
.hf{height:52.317708pt;}
.ha{height:53.312000pt;}
.h16{height:55.625000pt;}
.hb{height:55.680000pt;}
.h3{height:62.812500pt;}
.h9{height:64.960000pt;}
.h10{height:66.750000pt;}
.h11{height:278.132000pt;}
.h13{height:288.000000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:113.333333pt;}
.w3{width:113.600000pt;}
.w2{width:425.066667pt;}
.w5{width:630.400000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x17{left:68.000000pt;}
.x3{left:70.933333pt;}
.x1f{left:79.749333pt;}
.x1{left:81.333333pt;}
.x1e{left:90.933333pt;}
.x1c{left:101.066667pt;}
.x1a{left:105.333333pt;}
.x8{left:109.333333pt;}
.x6{left:111.200000pt;}
.x9{left:119.992000pt;}
.x13{left:128.533333pt;}
.x20{left:153.625333pt;}
.xe{left:164.266667pt;}
.x18{left:169.066667pt;}
.x12{left:185.333333pt;}
.xf{left:227.466667pt;}
.xc{left:231.733333pt;}
.xd{left:233.584000pt;}
.xb{left:235.466667pt;}
.xa{left:241.600000pt;}
.x10{left:332.533333pt;}
.x21{left:393.066667pt;}
.x2{left:396.800000pt;}
.x11{left:406.400000pt;}
.x14{left:415.733333pt;}
.x15{left:420.533333pt;}
.x5{left:496.000000pt;}
.x19{left:542.666667pt;}
.x1b{left:586.133333pt;}
.x7{left:609.600000pt;}
.x1d{left:610.933333pt;}
.x16{left:612.800000pt;}
}




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