
    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_fc60a96e570b9ab967091cf7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_63fb6bb0e0104f63a2f08ae4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_af4a0cb8cf3acc697d3d01c0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_74b7b9a80b1d17e90cecff6e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.856934;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_5050cd90b257d27385525779.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.844727;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_f6974408445e17fcb1be3f9c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls77{letter-spacing:-2.160000px;}
.ls3f{letter-spacing:-1.440000px;}
.ls11{letter-spacing:-1.404000px;}
.ls1c{letter-spacing:-1.254960px;}
.ls10{letter-spacing:-1.242000px;}
.ls75{letter-spacing:-1.135440px;}
.ls5b{letter-spacing:-1.126080px;}
.lsf{letter-spacing:-1.080000px;}
.ls71{letter-spacing:-1.008000px;}
.ls56{letter-spacing:-0.956160px;}
.ls74{letter-spacing:-0.936000px;}
.ls6d{letter-spacing:-0.792000px;}
.ls3e{letter-spacing:-0.728640px;}
.ls59{letter-spacing:-0.720000px;}
.ls54{letter-spacing:-0.648000px;}
.ls5d{letter-spacing:-0.596160px;}
.ls1b{letter-spacing:-0.537840px;}
.ls5a{letter-spacing:-0.463680px;}
.ls67{letter-spacing:-0.397440px;}
.ls12{letter-spacing:-0.378000px;}
.ls55{letter-spacing:-0.358560px;}
.ls41{letter-spacing:-0.341280px;}
.ls22{letter-spacing:-0.324000px;}
.ls2f{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.287280px;}
.ls21{letter-spacing:-0.270000px;}
.ls2e{letter-spacing:-0.264960px;}
.ls1a{letter-spacing:-0.239040px;}
.ls20{letter-spacing:-0.216000px;}
.ls1e{letter-spacing:-0.162000px;}
.ls4e{letter-spacing:-0.144000px;}
.ls1f{letter-spacing:-0.108000px;}
.ls14{letter-spacing:-0.095760px;}
.ls40{letter-spacing:-0.072000px;}
.ls19{letter-spacing:-0.059760px;}
.ls2c{letter-spacing:-0.056880px;}
.ls23{letter-spacing:-0.054000px;}
.lse{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.054000px;}
.ls1d{letter-spacing:0.059760px;}
.ls30{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.095760px;}
.ls18{letter-spacing:0.119520px;}
.ls3d{letter-spacing:0.132480px;}
.ls2d{letter-spacing:0.144000px;}
.ls70{letter-spacing:0.151200px;}
.ls38{letter-spacing:0.170640px;}
.ls2{letter-spacing:0.179280px;}
.ls72{letter-spacing:0.215136px;}
.ls8{letter-spacing:0.216000px;}
.ls6e{letter-spacing:0.218592px;}
.ls17{letter-spacing:0.227520px;}
.ls3c{letter-spacing:0.264960px;}
.ls79{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.324000px;}
.ls46{letter-spacing:0.331200px;}
.ls3{letter-spacing:0.358560px;}
.ls36{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.383040px;}
.ls27{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.491400px;}
.ls69{letter-spacing:0.504000px;}
.ls73{letter-spacing:0.576000px;}
.ls2b{letter-spacing:0.720000px;}
.ls5c{letter-spacing:0.728640px;}
.ls47{letter-spacing:0.864000px;}
.ls1{letter-spacing:0.896400px;}
.lsc{letter-spacing:0.918000px;}
.ls53{letter-spacing:1.152000px;}
.ls6a{letter-spacing:1.440000px;}
.ls5e{letter-spacing:1.447200px;}
.ls48{letter-spacing:2.152800px;}
.ls4d{letter-spacing:2.160000px;}
.ls65{letter-spacing:2.185920px;}
.ls3a{letter-spacing:2.330640px;}
.ls29{letter-spacing:2.880000px;}
.lsa{letter-spacing:2.916000px;}
.ls52{letter-spacing:3.576960px;}
.ls34{letter-spacing:3.600000px;}
.ls5{letter-spacing:3.618000px;}
.ls60{letter-spacing:3.764880px;}
.ls4f{letter-spacing:4.305600px;}
.ls33{letter-spacing:4.320000px;}
.ls42{letter-spacing:5.040000px;}
.ls4c{letter-spacing:5.760000px;}
.ls6f{letter-spacing:5.916240px;}
.ls57{letter-spacing:6.480000px;}
.ls37{letter-spacing:7.200000px;}
.lsb{letter-spacing:7.252200px;}
.ls45{letter-spacing:7.920000px;}
.ls9{letter-spacing:8.694000px;}
.ls4a{letter-spacing:9.360000px;}
.ls2a{letter-spacing:10.080000px;}
.ls66{letter-spacing:10.797120px;}
.ls51{letter-spacing:10.800000px;}
.ls64{letter-spacing:10.810368px;}
.ls5f{letter-spacing:11.520000px;}
.ls35{letter-spacing:11.527200px;}
.ls39{letter-spacing:12.240000px;}
.ls6c{letter-spacing:12.960000px;}
.ls76{letter-spacing:13.680000px;}
.ls50{letter-spacing:15.120000px;}
.ls62{letter-spacing:15.298560px;}
.ls68{letter-spacing:16.560000px;}
.ls44{letter-spacing:17.280000px;}
.ls43{letter-spacing:18.000000px;}
.ls49{letter-spacing:18.720000px;}
.ls61{letter-spacing:18.884160px;}
.ls4b{letter-spacing:20.070720px;}
.ls3b{letter-spacing:20.318400px;}
.ls6b{letter-spacing:20.880000px;}
.ls58{letter-spacing:21.600000px;}
.ls7a{letter-spacing:23.760000px;}
.ls4{letter-spacing:23.963760px;}
.ls26{letter-spacing:24.660000px;}
.ls28{letter-spacing:24.685920px;}
.ls63{letter-spacing:25.920000px;}
.ls78{letter-spacing:36.720000px;}
.ls32{letter-spacing:60.238656px;}
.ls31{letter-spacing:135.535680px;}
.lsd{letter-spacing:849.029760px;}
.ls0{letter-spacing:1748.358000px;}
.ls25{letter-spacing:1776.425760px;}
.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;}
}
.ws3{word-spacing:-21.641760px;}
.ws85{word-spacing:-18.864000px;}
.wse8{word-spacing:-18.720000px;}
.ws82{word-spacing:-18.432000px;}
.ws45{word-spacing:-18.144000px;}
.ws46{word-spacing:-18.072000px;}
.ws42{word-spacing:-18.000000px;}
.ws5d{word-spacing:-17.928000px;}
.ws158{word-spacing:-17.856000px;}
.wsb3{word-spacing:-17.784000px;}
.ws44{word-spacing:-17.712000px;}
.wscd{word-spacing:-17.280000px;}
.ws11f{word-spacing:-17.208000px;}
.ws84{word-spacing:-16.891200px;}
.wsce{word-spacing:-16.692480px;}
.ws83{word-spacing:-16.560000px;}
.ws43{word-spacing:-16.295040px;}
.wscf{word-spacing:-15.963840px;}
.ws5c{word-spacing:-15.831360px;}
.ws8{word-spacing:-15.298560px;}
.ws5{word-spacing:-15.059520px;}
.ws6{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.880240px;}
.ws7{word-spacing:-14.700960px;}
.wsb5{word-spacing:-14.581440px;}
.ws5f{word-spacing:-14.447520px;}
.ws155{word-spacing:-14.390640px;}
.ws41{word-spacing:-14.163120px;}
.ws5e{word-spacing:-13.878720px;}
.ws14f{word-spacing:-13.804560px;}
.ws0{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.122000px;}
.wsd{word-spacing:-12.528000px;}
.wse{word-spacing:-12.420000px;}
.wsb{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.096000px;}
.ws9{word-spacing:-12.042000px;}
.wsc{word-spacing:-11.988000px;}
.wsa{word-spacing:-11.934000px;}
.ws60{word-spacing:-10.440000px;}
.wsb4{word-spacing:-9.720000px;}
.ws106{word-spacing:-4.464000px;}
.ws87{word-spacing:-4.320000px;}
.ws130{word-spacing:-4.305600px;}
.wse0{word-spacing:-3.709440px;}
.ws6b{word-spacing:-3.600000px;}
.wse1{word-spacing:-3.576960px;}
.wsd7{word-spacing:-3.312000px;}
.wsb6{word-spacing:-3.179520px;}
.wsa7{word-spacing:-3.024000px;}
.ws63{word-spacing:-2.980800px;}
.ws55{word-spacing:-2.880000px;}
.wsb7{word-spacing:-2.848320px;}
.ws153{word-spacing:-2.736000px;}
.ws9d{word-spacing:-2.664000px;}
.ws54{word-spacing:-2.592000px;}
.wse9{word-spacing:-2.318400px;}
.ws150{word-spacing:-2.304000px;}
.wseb{word-spacing:-2.185920px;}
.ws105{word-spacing:-2.160000px;}
.wsf8{word-spacing:-1.872000px;}
.ws18{word-spacing:-1.819440px;}
.wsc7{word-spacing:-1.613520px;}
.wsab{word-spacing:-1.589760px;}
.wsd3{word-spacing:-1.584000px;}
.ws67{word-spacing:-1.457280px;}
.ws50{word-spacing:-1.440000px;}
.wsc8{word-spacing:-1.374480px;}
.ws56{word-spacing:-1.224000px;}
.wsc6{word-spacing:-1.195200px;}
.ws4e{word-spacing:-1.152000px;}
.ws14d{word-spacing:-1.059840px;}
.ws142{word-spacing:-0.896400px;}
.ws8b{word-spacing:-0.861120px;}
.ws34{word-spacing:-0.756000px;}
.ws4a{word-spacing:-0.728640px;}
.ws4f{word-spacing:-0.720000px;}
.wsc9{word-spacing:-0.657360px;}
.ws32{word-spacing:-0.486000px;}
.ws33{word-spacing:-0.432000px;}
.ws1d{word-spacing:-0.358560px;}
.wsae{word-spacing:-0.331200px;}
.ws61{word-spacing:-0.264960px;}
.ws48{word-spacing:-0.227520px;}
.ws15{word-spacing:-0.216000px;}
.ws1f{word-spacing:-0.179280px;}
.ws12{word-spacing:-0.162000px;}
.ws49{word-spacing:-0.144000px;}
.ws8e{word-spacing:-0.132480px;}
.ws19{word-spacing:-0.095760px;}
.wsa1{word-spacing:-0.072000px;}
.ws1b{word-spacing:-0.056880px;}
.ws11{word-spacing:0.000000px;}
.wsf{word-spacing:0.054000px;}
.ws1c{word-spacing:0.059760px;}
.wsd2{word-spacing:0.072000px;}
.ws17{word-spacing:0.095760px;}
.ws10{word-spacing:0.132480px;}
.ws163{word-spacing:0.144000px;}
.ws31{word-spacing:0.216000px;}
.wsc1{word-spacing:0.227520px;}
.ws2a{word-spacing:0.239040px;}
.ws2d{word-spacing:0.270000px;}
.ws1a{word-spacing:0.287280px;}
.ws51{word-spacing:0.288000px;}
.wscb{word-spacing:0.358560px;}
.ws35{word-spacing:0.378000px;}
.ws117{word-spacing:0.397440px;}
.wsda{word-spacing:0.463680px;}
.ws20{word-spacing:0.537840px;}
.wsee{word-spacing:0.596160px;}
.wsba{word-spacing:0.648000px;}
.ws90{word-spacing:0.720000px;}
.ws69{word-spacing:0.728640px;}
.ws166{word-spacing:0.792000px;}
.ws39{word-spacing:0.864000px;}
.ws152{word-spacing:0.936000px;}
.wscc{word-spacing:0.956160px;}
.ws13d{word-spacing:0.966960px;}
.ws2e{word-spacing:0.972000px;}
.ws91{word-spacing:1.008000px;}
.ws3a{word-spacing:1.026000px;}
.ws14{word-spacing:1.080000px;}
.ws131{word-spacing:1.126080px;}
.ws13{word-spacing:1.242000px;}
.ws24{word-spacing:1.254960px;}
.wsd5{word-spacing:1.296000px;}
.ws68{word-spacing:1.324800px;}
.ws71{word-spacing:1.440000px;}
.wsf2{word-spacing:1.457280px;}
.ws7c{word-spacing:1.494000px;}
.wsb1{word-spacing:1.584000px;}
.wsa5{word-spacing:1.728000px;}
.ws12f{word-spacing:1.854720px;}
.ws4c{word-spacing:2.016000px;}
.wsad{word-spacing:2.053440px;}
.ws4d{word-spacing:2.160000px;}
.ws12e{word-spacing:2.185920px;}
.ws7b{word-spacing:2.211120px;}
.ws151{word-spacing:2.304000px;}
.ws6a{word-spacing:2.376000px;}
.wsfc{word-spacing:2.390400px;}
.ws38{word-spacing:2.430000px;}
.ws4b{word-spacing:2.448000px;}
.ws25{word-spacing:2.689200px;}
.wsa8{word-spacing:2.736000px;}
.wsea{word-spacing:2.782080px;}
.ws53{word-spacing:2.880000px;}
.wsf4{word-spacing:2.914560px;}
.ws3c{word-spacing:3.024000px;}
.ws3d{word-spacing:3.078000px;}
.ws26{word-spacing:3.107520px;}
.ws3e{word-spacing:3.132000px;}
.ws52{word-spacing:3.168000px;}
.ws3b{word-spacing:3.186000px;}
.wsc3{word-spacing:3.444480px;}
.ws13a{word-spacing:3.456000px;}
.wsd9{word-spacing:3.528000px;}
.wsc4{word-spacing:3.576960px;}
.ws70{word-spacing:3.600000px;}
.ws30{word-spacing:3.834000px;}
.ws2f{word-spacing:3.888000px;}
.wsfa{word-spacing:4.123440px;}
.wsb8{word-spacing:4.173120px;}
.wsff{word-spacing:4.176000px;}
.wsb9{word-spacing:4.305600px;}
.ws6f{word-spacing:4.320000px;}
.wsf9{word-spacing:4.362480px;}
.ws6e{word-spacing:4.608000px;}
.ws36{word-spacing:4.644000px;}
.ws141{word-spacing:4.840560px;}
.ws11c{word-spacing:4.896000px;}
.wsc5{word-spacing:4.901760px;}
.ws10d{word-spacing:5.034240px;}
.ws6d{word-spacing:5.040000px;}
.ws92{word-spacing:5.328000px;}
.wsd0{word-spacing:5.431680px;}
.ws140{word-spacing:5.557680px;}
.ws107{word-spacing:5.616000px;}
.wsdc{word-spacing:5.630400px;}
.ws93{word-spacing:5.760000px;}
.wsd1{word-spacing:5.762880px;}
.ws13f{word-spacing:5.796720px;}
.ws78{word-spacing:6.048000px;}
.ws143{word-spacing:6.336000px;}
.ws116{word-spacing:6.359040px;}
.wsa2{word-spacing:6.480000px;}
.wsf3{word-spacing:6.491520px;}
.ws2b{word-spacing:6.642000px;}
.ws2c{word-spacing:6.696000px;}
.wsa3{word-spacing:6.768000px;}
.wsd4{word-spacing:7.056000px;}
.ws10c{word-spacing:7.087680px;}
.ws77{word-spacing:7.200000px;}
.wse6{word-spacing:7.220160px;}
.ws40{word-spacing:7.344000px;}
.ws3f{word-spacing:7.452000px;}
.ws76{word-spacing:7.488000px;}
.ws9b{word-spacing:7.776000px;}
.wsac{word-spacing:7.816320px;}
.ws9c{word-spacing:7.920000px;}
.wse2{word-spacing:7.948800px;}
.wsd8{word-spacing:8.208000px;}
.ws14e{word-spacing:8.280000px;}
.wsef{word-spacing:8.478720px;}
.wsf0{word-spacing:8.611200px;}
.ws97{word-spacing:8.640000px;}
.ws98{word-spacing:8.928000px;}
.ws37{word-spacing:8.964000px;}
.wsdb{word-spacing:9.008640px;}
.ws89{word-spacing:9.207360px;}
.ws9e{word-spacing:9.216000px;}
.ws8a{word-spacing:9.339840px;}
.ws9f{word-spacing:9.360000px;}
.wsa0{word-spacing:9.648000px;}
.ws10a{word-spacing:9.920160px;}
.wsbd{word-spacing:9.936000px;}
.wse3{word-spacing:10.068480px;}
.ws5b{word-spacing:10.080000px;}
.ws5a{word-spacing:10.368000px;}
.ws10f{word-spacing:10.664640px;}
.ws114{word-spacing:10.797120px;}
.wsbb{word-spacing:10.800000px;}
.wsbc{word-spacing:11.088000px;}
.wse4{word-spacing:11.194560px;}
.wsf7{word-spacing:11.376000px;}
.ws10b{word-spacing:11.393280px;}
.wsed{word-spacing:11.520000px;}
.wsf1{word-spacing:11.525760px;}
.ws72{word-spacing:11.808000px;}
.ws99{word-spacing:12.096000px;}
.ws8d{word-spacing:12.121920px;}
.ws73{word-spacing:12.240000px;}
.ws133{word-spacing:12.254400px;}
.ws79{word-spacing:12.528000px;}
.ws122{word-spacing:12.960000px;}
.ws6c{word-spacing:13.248000px;}
.ws58{word-spacing:13.680000px;}
.ws103{word-spacing:13.711680px;}
.ws59{word-spacing:13.968000px;}
.ws104{word-spacing:14.241600px;}
.wse5{word-spacing:14.374080px;}
.ws126{word-spacing:14.400000px;}
.ws127{word-spacing:14.688000px;}
.wsfe{word-spacing:14.940000px;}
.ws113{word-spacing:14.970240px;}
.wsc0{word-spacing:14.976000px;}
.ws132{word-spacing:15.102720px;}
.wsbe{word-spacing:15.120000px;}
.wsfd{word-spacing:15.179040px;}
.wsbf{word-spacing:15.408000px;}
.wsde{word-spacing:15.698880px;}
.ws110{word-spacing:15.831360px;}
.ws86{word-spacing:15.840000px;}
.wsaf{word-spacing:16.128000px;}
.ws11d{word-spacing:16.416000px;}
.wsdf{word-spacing:16.427520px;}
.ws64{word-spacing:16.560000px;}
.ws11e{word-spacing:16.848000px;}
.ws96{word-spacing:17.136000px;}
.ws95{word-spacing:17.280000px;}
.ws144{word-spacing:17.288640px;}
.ws27{word-spacing:17.330400px;}
.ws28{word-spacing:17.390160px;}
.ws94{word-spacing:17.568000px;}
.ws15f{word-spacing:17.856000px;}
.ws11a{word-spacing:17.884800px;}
.ws12d{word-spacing:18.000000px;}
.wsca{word-spacing:18.047520px;}
.ws11b{word-spacing:18.144000px;}
.ws57{word-spacing:18.288000px;}
.ws29{word-spacing:18.406080px;}
.wsfb{word-spacing:18.525600px;}
.ws118{word-spacing:18.613440px;}
.wsa4{word-spacing:18.720000px;}
.ws101{word-spacing:18.745920px;}
.ws12a{word-spacing:19.008000px;}
.ws119{word-spacing:19.143360px;}
.ws7e{word-spacing:19.242720px;}
.ws148{word-spacing:19.296000px;}
.ws112{word-spacing:19.342080px;}
.ws12c{word-spacing:19.440000px;}
.wsaa{word-spacing:19.474560px;}
.ws149{word-spacing:19.728000px;}
.wsa9{word-spacing:20.004480px;}
.ws109{word-spacing:20.016000px;}
.ws111{word-spacing:20.136960px;}
.wsec{word-spacing:20.160000px;}
.ws7d{word-spacing:20.198880px;}
.wsdd{word-spacing:20.733120px;}
.ws123{word-spacing:20.736000px;}
.ws14b{word-spacing:20.865600px;}
.ws13c{word-spacing:20.880000px;}
.ws120{word-spacing:21.168000px;}
.ws74{word-spacing:21.456000px;}
.ws14a{word-spacing:21.461760px;}
.ws75{word-spacing:21.600000px;}
.wsb2{word-spacing:21.888000px;}
.ws9a{word-spacing:22.320000px;}
.wsc2{word-spacing:22.322880px;}
.ws7f{word-spacing:22.410000px;}
.ws1e{word-spacing:22.589280px;}
.ws159{word-spacing:22.608000px;}
.wsf6{word-spacing:22.919040px;}
.ws88{word-spacing:23.040000px;}
.wsf5{word-spacing:23.051520px;}
.ws115{word-spacing:23.647680px;}
.ws138{word-spacing:23.760000px;}
.ws21{word-spacing:23.844240px;}
.ws22{word-spacing:24.202800px;}
.ws8f{word-spacing:24.336000px;}
.ws62{word-spacing:24.376320px;}
.ws147{word-spacing:24.480000px;}
.ws8c{word-spacing:24.508800px;}
.ws47{word-spacing:24.742800px;}
.ws146{word-spacing:24.768000px;}
.wsa6{word-spacing:25.200000px;}
.wsd6{word-spacing:25.488000px;}
.ws14c{word-spacing:25.899840px;}
.ws108{word-spacing:25.920000px;}
.ws12b{word-spacing:26.208000px;}
.ws125{word-spacing:26.640000px;}
.ws124{word-spacing:26.928000px;}
.wsb0{word-spacing:27.360000px;}
.ws13b{word-spacing:27.648000px;}
.ws137{word-spacing:28.080000px;}
.ws129{word-spacing:28.368000px;}
.ws15a{word-spacing:28.800000px;}
.ws15b{word-spacing:29.088000px;}
.ws100{word-spacing:29.543040px;}
.ws81{word-spacing:29.581200px;}
.ws80{word-spacing:29.760480px;}
.ws145{word-spacing:30.240000px;}
.ws128{word-spacing:30.934080px;}
.ws102{word-spacing:31.662720px;}
.ws154{word-spacing:32.256000px;}
.ws136{word-spacing:32.400000px;}
.ws165{word-spacing:33.840000px;}
.ws15e{word-spacing:36.720000px;}
.ws15d{word-spacing:37.008000px;}
.ws156{word-spacing:38.448000px;}
.ws7a{word-spacing:40.320000px;}
.ws10e{word-spacing:43.056000px;}
.ws13e{word-spacing:45.360000px;}
.ws164{word-spacing:47.520000px;}
.ws121{word-spacing:48.960000px;}
.ws134{word-spacing:49.680000px;}
.ws135{word-spacing:49.968000px;}
.wse7{word-spacing:51.004800px;}
.ws162{word-spacing:52.560000px;}
.ws161{word-spacing:59.616000px;}
.ws66{word-spacing:59.748480px;}
.ws160{word-spacing:59.760000px;}
.ws65{word-spacing:60.344640px;}
.ws139{word-spacing:66.528000px;}
.ws157{word-spacing:87.120000px;}
.ws16{word-spacing:102.846240px;}
.ws15c{word-spacing:177.840000px;}
.ws23{word-spacing:189.917280px;}
._18{margin-left:-24.374304px;}
._19{margin-left:-6.025248px;}
._15{margin-left:-4.472640px;}
._8{margin-left:-3.384000px;}
._1{margin-left:-2.268000px;}
._0{margin-left:-1.188000px;}
._2{width:1.188000px;}
._9{width:2.592000px;}
._7{width:3.834000px;}
._1c{width:4.932000px;}
._6{width:6.318000px;}
._b{width:7.614000px;}
._e{width:8.622000px;}
._14{width:9.728640px;}
._a{width:11.016000px;}
._f{width:12.873600px;}
._16{width:14.224320px;}
._12{width:15.624000px;}
._11{width:16.740000px;}
._1b{width:17.870400px;}
._1a{width:18.887040px;}
._17{width:20.304000px;}
._3{width:22.065840px;}
._4{width:23.464080px;}
._10{width:25.272000px;}
._13{width:27.162000px;}
._d{width:29.050560px;}
._24{width:30.924000px;}
._22{width:36.360000px;}
._20{width:40.140000px;}
._1f{width:44.928000px;}
._25{width:47.160000px;}
._1d{width:48.240000px;}
._1e{width:50.688000px;}
._23{width:52.344000px;}
._21{width:177.768000px;}
._5{width:189.639360px;}
._c{width:243.378000px;}
.fc3{color:rgb(0,0,10);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:45.720000px;}
.y2{bottom:61.380000px;}
.y107{bottom:97.159500px;}
.y60{bottom:97.172820px;}
.yc4{bottom:97.176810px;}
.y11e{bottom:97.188120px;}
.y1b7{bottom:101.180880px;}
.y19d{bottom:102.420000px;}
.y13b{bottom:103.017600px;}
.y15a{bottom:105.120000px;}
.y16a{bottom:107.830800px;}
.ye8{bottom:108.949680px;}
.y187{bottom:110.880000px;}
.y106{bottom:114.265800px;}
.y5f{bottom:114.279120px;}
.yc3{bottom:114.283110px;}
.y11d{bottom:114.294420px;}
.y19c{bottom:114.300000px;}
.y85{bottom:116.100000px;}
.y1b6{bottom:120.258000px;}
.y13a{bottom:121.912560px;}
.y159{bottom:125.820000px;}
.y169{bottom:126.907920px;}
.ye7{bottom:127.844640px;}
.y105{bottom:131.551380px;}
.y5e{bottom:131.564700px;}
.yc2{bottom:131.568690px;}
.y11c{bottom:131.580000px;}
.ya4{bottom:135.000000px;}
.y84{bottom:136.800000px;}
.y1ea{bottom:138.240000px;}
.y1b5{bottom:139.152960px;}
.y139{bottom:140.989680px;}
.y17d{bottom:141.876720px;}
.y168{bottom:145.802880px;}
.y1ff{bottom:146.340000px;}
.y158{bottom:146.520000px;}
.ye6{bottom:146.921760px;}
.y104{bottom:148.836960px;}
.y5d{bottom:148.850280px;}
.yc1{bottom:148.854270px;}
.y11b{bottom:148.860000px;}
.y186{bottom:152.280000px;}
.y3a{bottom:153.000000px;}
.ya3{bottom:155.700000px;}
.y83{bottom:157.500000px;}
.y1b4{bottom:158.230080px;}
.y1e9{bottom:158.940000px;}
.y138{bottom:159.884640px;}
.y17c{bottom:160.953840px;}
.y20f{bottom:164.340000px;}
.y167{bottom:164.880000px;}
.ye5{bottom:165.816720px;}
.y103{bottom:166.122540px;}
.y5c{bottom:166.135860px;}
.y1fe{bottom:167.040000px;}
.y157{bottom:167.220000px;}
.yc0{bottom:171.360000px;}
.y185{bottom:172.980000px;}
.y39{bottom:173.700000px;}
.ya2{bottom:176.400000px;}
.y1b3{bottom:177.125040px;}
.y82{bottom:178.200000px;}
.y195{bottom:178.380000px;}
.y137{bottom:178.961760px;}
.y17b{bottom:179.848800px;}
.y102{bottom:183.408120px;}
.ybf{bottom:183.420000px;}
.ye4{bottom:184.711680px;}
.y20e{bottom:185.040000px;}
.y1d2{bottom:185.940000px;}
.y1fd{bottom:187.740000px;}
.y156{bottom:187.920000px;}
.y5b{bottom:189.720000px;}
.y184{bottom:193.680000px;}
.y38{bottom:194.400000px;}
.y27{bottom:195.300000px;}
.y1b2{bottom:196.020000px;}
.ya1{bottom:197.100000px;}
.y1e8{bottom:197.640000px;}
.y136{bottom:197.856720px;}
.y17a{bottom:198.743760px;}
.y81{bottom:198.900000px;}
.y194{bottom:199.080000px;}
.y101{bottom:200.693700px;}
.y166{bottom:202.140000px;}
.y5a{bottom:202.320000px;}
.ye3{bottom:203.788800px;}
.y20d{bottom:205.740000px;}
.y1d1{bottom:206.640000px;}
.y1fc{bottom:208.440000px;}
.y183{bottom:214.380000px;}
.y37{bottom:215.100000px;}
.y135{bottom:216.751680px;}
.ya0{bottom:217.800000px;}
.y179{bottom:217.820880px;}
.y1e7{bottom:218.340000px;}
.y80{bottom:219.600000px;}
.y193{bottom:219.780000px;}
.y26{bottom:221.580000px;}
.y59{bottom:222.300000px;}
.ye2{bottom:222.683760px;}
.y165{bottom:222.840000px;}
.y100{bottom:223.020000px;}
.y155{bottom:226.260000px;}
.y20c{bottom:226.440000px;}
.y1d0{bottom:227.340000px;}
.y1b1{bottom:233.280000px;}
.yff{bottom:235.080000px;}
.y36{bottom:235.800000px;}
.y134{bottom:235.828800px;}
.y178{bottom:236.715840px;}
.y25{bottom:238.131000px;}
.y9f{bottom:238.500000px;}
.y1e6{bottom:239.040000px;}
.y7f{bottom:240.300000px;}
.y192{bottom:240.480000px;}
.ye1{bottom:241.760880px;}
.y58{bottom:243.000000px;}
.y164{bottom:243.540000px;}
.y1fb{bottom:247.140000px;}
.y1cf{bottom:248.040000px;}
.ybe{bottom:251.472960px;}
.y1b0{bottom:253.980000px;}
.y24{bottom:254.506500px;}
.y133{bottom:254.723760px;}
.y182{bottom:255.780000px;}
.y177{bottom:255.792960px;}
.y35{bottom:256.500000px;}
.y9e{bottom:259.200000px;}
.ye0{bottom:260.655840px;}
.y7e{bottom:261.000000px;}
.y191{bottom:261.180000px;}
.y57{bottom:263.700000px;}
.y163{bottom:264.240000px;}
.y20b{bottom:265.140000px;}
.y154{bottom:265.320000px;}
.y1fa{bottom:267.840000px;}
.y1ce{bottom:268.740000px;}
.ybd{bottom:270.550080px;}
.y23{bottom:271.071000px;}
.y132{bottom:273.800880px;}
.y1af{bottom:274.680000px;}
.y176{bottom:274.687920px;}
.y19b{bottom:277.040880px;}
.y34{bottom:277.200000px;}
.y1e5{bottom:277.380000px;}
.ydf{bottom:279.732960px;}
.y9d{bottom:279.900000px;}
.y7d{bottom:281.700000px;}
.y190{bottom:281.880000px;}
.y56{bottom:284.400000px;}
.y162{bottom:284.940000px;}
.y20a{bottom:285.840000px;}
.y153{bottom:286.020000px;}
.y22{bottom:287.446500px;}
.y1cd{bottom:289.440000px;}
.ybc{bottom:289.445040px;}
.y131{bottom:292.695840px;}
.y175{bottom:293.582880px;}
.y181{bottom:294.130800px;}
.y1ae{bottom:295.380000px;}
.y19a{bottom:295.935840px;}
.y33{bottom:297.900000px;}
.yde{bottom:298.627920px;}
.y7c{bottom:302.400000px;}
.y18f{bottom:302.580000px;}
.y21{bottom:304.011000px;}
.y161{bottom:305.640000px;}
.y1f9{bottom:306.540000px;}
.y152{bottom:306.720000px;}
.ybb{bottom:308.340000px;}
.y1cc{bottom:310.140000px;}
.y130{bottom:311.590800px;}
.y174{bottom:312.660000px;}
.y180{bottom:313.207920px;}
.y199{bottom:314.830800px;}
.y1ad{bottom:316.080000px;}
.ydd{bottom:317.522880px;}
.y9c{bottom:318.440880px;}
.y32{bottom:318.600000px;}
.y20{bottom:320.386500px;}
.y55{bottom:322.740000px;}
.yfe{bottom:322.789680px;}
.y7b{bottom:323.100000px;}
.y209{bottom:324.540000px;}
.y160{bottom:326.340000px;}
.y1f8{bottom:327.240000px;}
.y151{bottom:327.420000px;}
.y12f{bottom:330.667920px;}
.y1cb{bottom:330.840000px;}
.y17f{bottom:332.102880px;}
.y198{bottom:333.907920px;}
.y1e4{bottom:334.440000px;}
.ydc{bottom:336.600000px;}
.y1f{bottom:336.951000px;}
.y9b{bottom:337.335840px;}
.y31{bottom:339.120000px;}
.y18e{bottom:340.930800px;}
.yfd{bottom:341.684640px;}
.y7a{bottom:343.800000px;}
.y208{bottom:345.240000px;}
.yba{bottom:345.600000px;}
.y15f{bottom:347.040000px;}
.y1f7{bottom:347.940000px;}
.y150{bottom:348.120000px;}
.y12e{bottom:349.562880px;}
.y173{bottom:349.920000px;}
.y17e{bottom:351.180000px;}
.y1ca{bottom:351.540000px;}
.y197{bottom:352.802880px;}
.y1e{bottom:353.515500px;}
.y1ac{bottom:354.659760px;}
.y1e3{bottom:355.140000px;}
.y9a{bottom:356.230800px;}
.y30{bottom:359.820000px;}
.y18d{bottom:360.007920px;}
.yfc{bottom:360.761760px;}
.y54{bottom:361.800000px;}
.y79{bottom:364.500000px;}
.y207{bottom:365.940000px;}
.yb9{bottom:366.300000px;}
.y15e{bottom:367.740000px;}
.y12d{bottom:368.640000px;}
.y14f{bottom:368.820000px;}
.y1d{bottom:369.891000px;}
.y172{bottom:370.620000px;}
.y196{bottom:371.880000px;}
.y1c9{bottom:372.240000px;}
.y1ab{bottom:373.554720px;}
.ydb{bottom:373.860000px;}
.y99{bottom:375.307920px;}
.y1e2{bottom:375.840000px;}
.y18c{bottom:378.902880px;}
.yfb{bottom:379.656720px;}
.y2f{bottom:380.520000px;}
.y53{bottom:382.500000px;}
.y78{bottom:385.200000px;}
.y1c{bottom:386.455500px;}
.y1f6{bottom:386.640000px;}
.yb8{bottom:387.000000px;}
.y15d{bottom:388.440000px;}
.y14e{bottom:389.520000px;}
.y1aa{bottom:392.631840px;}
.y1c8{bottom:392.940000px;}
.y98{bottom:394.202880px;}
.yda{bottom:394.560000px;}
.y1e1{bottom:396.540000px;}
.y18b{bottom:397.980000px;}
.yfa{bottom:398.733840px;}
.y1b{bottom:402.831000px;}
.y52{bottom:403.200000px;}
.y206{bottom:404.640000px;}
.y77{bottom:405.900000px;}
.yb7{bottom:407.700000px;}
.y171{bottom:408.983760px;}
.y15c{bottom:409.140000px;}
.y14d{bottom:410.220000px;}
.y1a9{bottom:411.526800px;}
.y97{bottom:413.280000px;}
.y1c7{bottom:413.640000px;}
.yd9{bottom:415.260000px;}
.y1e0{bottom:417.240000px;}
.yf9{bottom:417.628800px;}
.y2e{bottom:419.040000px;}
.y1a{bottom:419.395500px;}
.y51{bottom:423.900000px;}
.y1f5{bottom:425.340000px;}
.y76{bottom:426.600000px;}
.y170{bottom:428.060880px;}
.y15b{bottom:429.840000px;}
.y1a8{bottom:430.421760px;}
.y14c{bottom:430.920000px;}
.y2d{bottom:433.980000px;}
.y1c6{bottom:434.340000px;}
.y18a{bottom:435.240000px;}
.y19{bottom:435.771000px;}
.yd8{bottom:435.960000px;}
.yf8{bottom:436.705920px;}
.y1df{bottom:437.940000px;}
.y11a{bottom:444.315600px;}
.y50{bottom:444.600000px;}
.yb6{bottom:446.040000px;}
.y16f{bottom:446.955840px;}
.y75{bottom:447.300000px;}
.y1a7{bottom:449.498880px;}
.y96{bottom:450.540000px;}
.y14b{bottom:451.620000px;}
.y18{bottom:452.335500px;}
.y1c5{bottom:455.040000px;}
.yf7{bottom:455.600880px;}
.y189{bottom:455.940000px;}
.yd7{bottom:456.660000px;}
.y1de{bottom:458.640000px;}
.y119{bottom:463.210560px;}
.y4f{bottom:465.300000px;}
.y16e{bottom:465.850800px;}
.y205{bottom:466.560000px;}
.y74{bottom:468.000000px;}
.y1a6{bottom:468.393840px;}
.y17{bottom:468.711000px;}
.y95{bottom:471.240000px;}
.y14a{bottom:472.320000px;}
.yf6{bottom:474.495840px;}
.y1c4{bottom:475.740000px;}
.yd6{bottom:477.360000px;}
.y1dd{bottom:479.340000px;}
.y118{bottom:482.287680px;}
.y1f4{bottom:484.560000px;}
.y16d{bottom:484.927920px;}
.yb5{bottom:485.100000px;}
.y16{bottom:485.275500px;}
.y12c{bottom:485.715600px;}
.y4e{bottom:486.000000px;}
.y1a5{bottom:487.470960px;}
.y73{bottom:488.700000px;}
.y94{bottom:491.940000px;}
.y149{bottom:493.020000px;}
.yf5{bottom:493.572960px;}
.y188{bottom:494.280000px;}
.y1c3{bottom:496.440000px;}
.yd5{bottom:498.060000px;}
.y1dc{bottom:500.040000px;}
.y117{bottom:501.182640px;}
.y15{bottom:501.840000px;}
.y16c{bottom:503.822880px;}
.y12b{bottom:504.610560px;}
.y1f3{bottom:505.260000px;}
.yb4{bottom:505.800000px;}
.y1a4{bottom:506.365920px;}
.y4d{bottom:506.700000px;}
.y72{bottom:509.400000px;}
.yf4{bottom:512.467920px;}
.y93{bottom:512.640000px;}
.y148{bottom:513.720000px;}
.y1c2{bottom:517.140000px;}
.y14{bottom:518.220000px;}
.yd4{bottom:518.760000px;}
.y116{bottom:520.259760px;}
.y1db{bottom:520.560000px;}
.y16b{bottom:522.900000px;}
.y12a{bottom:523.687680px;}
.y1a3{bottom:525.260880px;}
.y1f2{bottom:525.960000px;}
.yb3{bottom:526.500000px;}
.y4c{bottom:527.400000px;}
.y71{bottom:530.100000px;}
.yf3{bottom:531.545040px;}
.y92{bottom:533.340000px;}
.y147{bottom:534.420000px;}
.y13{bottom:535.500000px;}
.y1c1{bottom:537.840000px;}
.y115{bottom:539.154720px;}
.yd3{bottom:539.460000px;}
.y1da{bottom:541.260000px;}
.y129{bottom:542.582640px;}
.y1a2{bottom:544.338000px;}
.y204{bottom:546.660000px;}
.yb2{bottom:547.200000px;}
.y4b{bottom:548.100000px;}
.yf2{bottom:550.440000px;}
.y70{bottom:550.800000px;}
.y12{bottom:552.780000px;}
.y91{bottom:554.040000px;}
.y146{bottom:555.120000px;}
.y114{bottom:558.049680px;}
.y1c0{bottom:558.540000px;}
.yd2{bottom:560.160000px;}
.y128{bottom:561.659760px;}
.y1d9{bottom:561.960000px;}
.y1a1{bottom:563.232960px;}
.y1f1{bottom:564.660000px;}
.yb1{bottom:567.900000px;}
.y4a{bottom:568.800000px;}
.y11{bottom:570.053700px;}
.y6f{bottom:571.500000px;}
.y90{bottom:574.560000px;}
.y145{bottom:575.820000px;}
.y113{bottom:577.126800px;}
.y127{bottom:580.554720px;}
.yd1{bottom:580.860000px;}
.y1a0{bottom:582.310080px;}
.y1d8{bottom:582.660000px;}
.y1f0{bottom:585.360000px;}
.y10{bottom:587.160000px;}
.yf1{bottom:587.700000px;}
.yb0{bottom:588.600000px;}
.y49{bottom:589.500000px;}
.y6e{bottom:592.200000px;}
.y8f{bottom:595.260000px;}
.y112{bottom:596.021760px;}
.y144{bottom:596.520000px;}
.y1bf{bottom:597.088800px;}
.y126{bottom:599.449680px;}
.y19f{bottom:601.205040px;}
.yd0{bottom:601.560000px;}
.y1d7{bottom:603.360000px;}
.yf{bottom:604.411380px;}
.y203{bottom:606.060000px;}
.yf0{bottom:608.400000px;}
.yaf{bottom:609.300000px;}
.y48{bottom:610.200000px;}
.y6d{bottom:612.900000px;}
.y111{bottom:615.098880px;}
.y8e{bottom:615.960000px;}
.y1be{bottom:615.983760px;}
.y125{bottom:618.526800px;}
.y19e{bottom:620.100000px;}
.ye{bottom:621.696960px;}
.ycf{bottom:622.260000px;}
.y1d6{bottom:624.060000px;}
.y202{bottom:626.760000px;}
.yef{bottom:629.100000px;}
.yae{bottom:630.000000px;}
.y47{bottom:630.900000px;}
.y110{bottom:633.993840px;}
.y143{bottom:635.052960px;}
.y1bd{bottom:635.060880px;}
.y8d{bottom:636.660000px;}
.y124{bottom:637.421760px;}
.yd{bottom:638.982540px;}
.yce{bottom:642.960000px;}
.y1d5{bottom:644.760000px;}
.yee{bottom:649.800000px;}
.yad{bottom:650.700000px;}
.y6c{bottom:651.265920px;}
.y46{bottom:651.600000px;}
.y10f{bottom:653.070960px;}
.y142{bottom:653.947920px;}
.y1bc{bottom:653.955840px;}
.yc{bottom:656.268120px;}
.y123{bottom:656.498880px;}
.y8c{bottom:657.360000px;}
.ycd{bottom:663.660000px;}
.y1d4{bottom:665.460000px;}
.y6b{bottom:670.160880px;}
.yed{bottom:670.500000px;}
.yac{bottom:671.400000px;}
.y10e{bottom:671.965920px;}
.y45{bottom:672.300000px;}
.y141{bottom:672.842880px;}
.y1bb{bottom:672.850800px;}
.yb{bottom:673.374420px;}
.y122{bottom:675.393840px;}
.y8b{bottom:678.060000px;}
.ycc{bottom:684.360000px;}
.y201{bottom:686.160000px;}
.y6a{bottom:689.238000px;}
.ya{bottom:690.660000px;}
.y10d{bottom:690.860880px;}
.yec{bottom:691.200000px;}
.y140{bottom:691.920000px;}
.y1ba{bottom:691.927920px;}
.yab{bottom:692.100000px;}
.y44{bottom:693.000000px;}
.y121{bottom:694.288800px;}
.y8a{bottom:698.760000px;}
.y1d3{bottom:703.800000px;}
.y1ef{bottom:704.160000px;}
.ycb{bottom:705.060000px;}
.y9{bottom:707.940000px;}
.y69{bottom:708.132960px;}
.y10c{bottom:709.938000px;}
.y1b9{bottom:710.822880px;}
.yeb{bottom:711.900000px;}
.yaa{bottom:712.800000px;}
.y120{bottom:713.365920px;}
.y43{bottom:713.520000px;}
.y89{bottom:719.460000px;}
.y1ee{bottom:724.860000px;}
.yca{bottom:725.760000px;}
.y8{bottom:725.940000px;}
.y68{bottom:727.210080px;}
.y10b{bottom:728.832960px;}
.y13f{bottom:729.180000px;}
.y1b8{bottom:729.900000px;}
.y11f{bottom:732.260880px;}
.yea{bottom:732.600000px;}
.y42{bottom:734.220000px;}
.y88{bottom:740.160000px;}
.y1ed{bottom:745.560000px;}
.y67{bottom:746.105040px;}
.yc9{bottom:746.460000px;}
.y10a{bottom:747.910080px;}
.y13e{bottom:749.880000px;}
.ya9{bottom:751.338000px;}
.ye9{bottom:753.300000px;}
.y87{bottom:760.860000px;}
.y66{bottom:765.000000px;}
.y1ec{bottom:766.260000px;}
.y109{bottom:766.805040px;}
.yc8{bottom:767.160000px;}
.ya8{bottom:770.232960px;}
.y13d{bottom:770.580000px;}
.y7{bottom:772.729740px;}
.y41{bottom:772.765770px;}
.y86{bottom:781.560000px;}
.y200{bottom:784.260000px;}
.y108{bottom:785.700000px;}
.yc7{bottom:787.860000px;}
.ya7{bottom:789.310080px;}
.y13c{bottom:791.280000px;}
.y40{bottom:791.660730px;}
.y6{bottom:802.080180px;}
.y65{bottom:802.260000px;}
.y2c{bottom:804.960000px;}
.ya6{bottom:808.205040px;}
.yc6{bottom:808.560000px;}
.y3f{bottom:810.737850px;}
.y64{bottom:822.960000px;}
.y2b{bottom:825.300000px;}
.y1eb{bottom:825.660000px;}
.ya5{bottom:827.100000px;}
.yc5{bottom:829.260000px;}
.y3e{bottom:829.632810px;}
.y63{bottom:843.660000px;}
.y3d{bottom:848.709930px;}
.y5{bottom:849.409560px;}
.y2a{bottom:863.995680px;}
.y62{bottom:864.360000px;}
.y3c{bottom:867.604890px;}
.y4{bottom:878.760000px;}
.y29{bottom:884.700000px;}
.y61{bottom:885.060000px;}
.y3b{bottom:886.499850px;}
.y1{bottom:936.900000px;}
.y28{bottom:938.880000px;}
.h11{height:34.114922px;}
.hf{height:36.641953px;}
.h9{height:38.759766px;}
.h3{height:47.381836px;}
.h2{height:47.545312px;}
.hc{height:49.992188px;}
.h6{height:52.435898px;}
.h8{height:52.461098px;}
.h7{height:52.550378px;}
.hd{height:58.121719px;}
.h5{height:63.175781px;}
.ha{height:63.949219px;}
.hb{height:63.966499px;}
.h4{height:68.733984px;}
.h10{height:69.687173px;}
.he{height:69.687773px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:95.760000px;}
.x4{left:127.620000px;}
.x7{left:148.860000px;}
.x2{left:198.180000px;}
.x5{left:201.240000px;}
.x8{left:306.720000px;}
.x6{left:536.229000px;}
.x3{left:627.120000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls77{letter-spacing:-1.920000pt;}
.ls3f{letter-spacing:-1.280000pt;}
.ls11{letter-spacing:-1.248000pt;}
.ls1c{letter-spacing:-1.115520pt;}
.ls10{letter-spacing:-1.104000pt;}
.ls75{letter-spacing:-1.009280pt;}
.ls5b{letter-spacing:-1.000960pt;}
.lsf{letter-spacing:-0.960000pt;}
.ls71{letter-spacing:-0.896000pt;}
.ls56{letter-spacing:-0.849920pt;}
.ls74{letter-spacing:-0.832000pt;}
.ls6d{letter-spacing:-0.704000pt;}
.ls3e{letter-spacing:-0.647680pt;}
.ls59{letter-spacing:-0.640000pt;}
.ls54{letter-spacing:-0.576000pt;}
.ls5d{letter-spacing:-0.529920pt;}
.ls1b{letter-spacing:-0.478080pt;}
.ls5a{letter-spacing:-0.412160pt;}
.ls67{letter-spacing:-0.353280pt;}
.ls12{letter-spacing:-0.336000pt;}
.ls55{letter-spacing:-0.318720pt;}
.ls41{letter-spacing:-0.303360pt;}
.ls22{letter-spacing:-0.288000pt;}
.ls2f{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.255360pt;}
.ls21{letter-spacing:-0.240000pt;}
.ls2e{letter-spacing:-0.235520pt;}
.ls1a{letter-spacing:-0.212480pt;}
.ls20{letter-spacing:-0.192000pt;}
.ls1e{letter-spacing:-0.144000pt;}
.ls4e{letter-spacing:-0.128000pt;}
.ls1f{letter-spacing:-0.096000pt;}
.ls14{letter-spacing:-0.085120pt;}
.ls40{letter-spacing:-0.064000pt;}
.ls19{letter-spacing:-0.053120pt;}
.ls2c{letter-spacing:-0.050560pt;}
.ls23{letter-spacing:-0.048000pt;}
.lse{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.048000pt;}
.ls1d{letter-spacing:0.053120pt;}
.ls30{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.085120pt;}
.ls18{letter-spacing:0.106240pt;}
.ls3d{letter-spacing:0.117760pt;}
.ls2d{letter-spacing:0.128000pt;}
.ls70{letter-spacing:0.134400pt;}
.ls38{letter-spacing:0.151680pt;}
.ls2{letter-spacing:0.159360pt;}
.ls72{letter-spacing:0.191232pt;}
.ls8{letter-spacing:0.192000pt;}
.ls6e{letter-spacing:0.194304pt;}
.ls17{letter-spacing:0.202240pt;}
.ls3c{letter-spacing:0.235520pt;}
.ls79{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.288000pt;}
.ls46{letter-spacing:0.294400pt;}
.ls3{letter-spacing:0.318720pt;}
.ls36{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.340480pt;}
.ls27{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.436800pt;}
.ls69{letter-spacing:0.448000pt;}
.ls73{letter-spacing:0.512000pt;}
.ls2b{letter-spacing:0.640000pt;}
.ls5c{letter-spacing:0.647680pt;}
.ls47{letter-spacing:0.768000pt;}
.ls1{letter-spacing:0.796800pt;}
.lsc{letter-spacing:0.816000pt;}
.ls53{letter-spacing:1.024000pt;}
.ls6a{letter-spacing:1.280000pt;}
.ls5e{letter-spacing:1.286400pt;}
.ls48{letter-spacing:1.913600pt;}
.ls4d{letter-spacing:1.920000pt;}
.ls65{letter-spacing:1.943040pt;}
.ls3a{letter-spacing:2.071680pt;}
.ls29{letter-spacing:2.560000pt;}
.lsa{letter-spacing:2.592000pt;}
.ls52{letter-spacing:3.179520pt;}
.ls34{letter-spacing:3.200000pt;}
.ls5{letter-spacing:3.216000pt;}
.ls60{letter-spacing:3.346560pt;}
.ls4f{letter-spacing:3.827200pt;}
.ls33{letter-spacing:3.840000pt;}
.ls42{letter-spacing:4.480000pt;}
.ls4c{letter-spacing:5.120000pt;}
.ls6f{letter-spacing:5.258880pt;}
.ls57{letter-spacing:5.760000pt;}
.ls37{letter-spacing:6.400000pt;}
.lsb{letter-spacing:6.446400pt;}
.ls45{letter-spacing:7.040000pt;}
.ls9{letter-spacing:7.728000pt;}
.ls4a{letter-spacing:8.320000pt;}
.ls2a{letter-spacing:8.960000pt;}
.ls66{letter-spacing:9.597440pt;}
.ls51{letter-spacing:9.600000pt;}
.ls64{letter-spacing:9.609216pt;}
.ls5f{letter-spacing:10.240000pt;}
.ls35{letter-spacing:10.246400pt;}
.ls39{letter-spacing:10.880000pt;}
.ls6c{letter-spacing:11.520000pt;}
.ls76{letter-spacing:12.160000pt;}
.ls50{letter-spacing:13.440000pt;}
.ls62{letter-spacing:13.598720pt;}
.ls68{letter-spacing:14.720000pt;}
.ls44{letter-spacing:15.360000pt;}
.ls43{letter-spacing:16.000000pt;}
.ls49{letter-spacing:16.640000pt;}
.ls61{letter-spacing:16.785920pt;}
.ls4b{letter-spacing:17.840640pt;}
.ls3b{letter-spacing:18.060800pt;}
.ls6b{letter-spacing:18.560000pt;}
.ls58{letter-spacing:19.200000pt;}
.ls7a{letter-spacing:21.120000pt;}
.ls4{letter-spacing:21.301120pt;}
.ls26{letter-spacing:21.920000pt;}
.ls28{letter-spacing:21.943040pt;}
.ls63{letter-spacing:23.040000pt;}
.ls78{letter-spacing:32.640000pt;}
.ls32{letter-spacing:53.545472pt;}
.ls31{letter-spacing:120.476160pt;}
.lsd{letter-spacing:754.693120pt;}
.ls0{letter-spacing:1554.096000pt;}
.ls25{letter-spacing:1579.045120pt;}
.ws3{word-spacing:-19.237120pt;}
.ws85{word-spacing:-16.768000pt;}
.wse8{word-spacing:-16.640000pt;}
.ws82{word-spacing:-16.384000pt;}
.ws45{word-spacing:-16.128000pt;}
.ws46{word-spacing:-16.064000pt;}
.ws42{word-spacing:-16.000000pt;}
.ws5d{word-spacing:-15.936000pt;}
.ws158{word-spacing:-15.872000pt;}
.wsb3{word-spacing:-15.808000pt;}
.ws44{word-spacing:-15.744000pt;}
.wscd{word-spacing:-15.360000pt;}
.ws11f{word-spacing:-15.296000pt;}
.ws84{word-spacing:-15.014400pt;}
.wsce{word-spacing:-14.837760pt;}
.ws83{word-spacing:-14.720000pt;}
.ws43{word-spacing:-14.484480pt;}
.wscf{word-spacing:-14.190080pt;}
.ws5c{word-spacing:-14.072320pt;}
.ws8{word-spacing:-13.598720pt;}
.ws5{word-spacing:-13.386240pt;}
.ws6{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.226880pt;}
.ws7{word-spacing:-13.067520pt;}
.wsb5{word-spacing:-12.961280pt;}
.ws5f{word-spacing:-12.842240pt;}
.ws155{word-spacing:-12.791680pt;}
.ws41{word-spacing:-12.589440pt;}
.ws5e{word-spacing:-12.336640pt;}
.ws14f{word-spacing:-12.270720pt;}
.ws0{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.664000pt;}
.wsd{word-spacing:-11.136000pt;}
.wse{word-spacing:-11.040000pt;}
.wsb{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.752000pt;}
.ws9{word-spacing:-10.704000pt;}
.wsc{word-spacing:-10.656000pt;}
.wsa{word-spacing:-10.608000pt;}
.ws60{word-spacing:-9.280000pt;}
.wsb4{word-spacing:-8.640000pt;}
.ws106{word-spacing:-3.968000pt;}
.ws87{word-spacing:-3.840000pt;}
.ws130{word-spacing:-3.827200pt;}
.wse0{word-spacing:-3.297280pt;}
.ws6b{word-spacing:-3.200000pt;}
.wse1{word-spacing:-3.179520pt;}
.wsd7{word-spacing:-2.944000pt;}
.wsb6{word-spacing:-2.826240pt;}
.wsa7{word-spacing:-2.688000pt;}
.ws63{word-spacing:-2.649600pt;}
.ws55{word-spacing:-2.560000pt;}
.wsb7{word-spacing:-2.531840pt;}
.ws153{word-spacing:-2.432000pt;}
.ws9d{word-spacing:-2.368000pt;}
.ws54{word-spacing:-2.304000pt;}
.wse9{word-spacing:-2.060800pt;}
.ws150{word-spacing:-2.048000pt;}
.wseb{word-spacing:-1.943040pt;}
.ws105{word-spacing:-1.920000pt;}
.wsf8{word-spacing:-1.664000pt;}
.ws18{word-spacing:-1.617280pt;}
.wsc7{word-spacing:-1.434240pt;}
.wsab{word-spacing:-1.413120pt;}
.wsd3{word-spacing:-1.408000pt;}
.ws67{word-spacing:-1.295360pt;}
.ws50{word-spacing:-1.280000pt;}
.wsc8{word-spacing:-1.221760pt;}
.ws56{word-spacing:-1.088000pt;}
.wsc6{word-spacing:-1.062400pt;}
.ws4e{word-spacing:-1.024000pt;}
.ws14d{word-spacing:-0.942080pt;}
.ws142{word-spacing:-0.796800pt;}
.ws8b{word-spacing:-0.765440pt;}
.ws34{word-spacing:-0.672000pt;}
.ws4a{word-spacing:-0.647680pt;}
.ws4f{word-spacing:-0.640000pt;}
.wsc9{word-spacing:-0.584320pt;}
.ws32{word-spacing:-0.432000pt;}
.ws33{word-spacing:-0.384000pt;}
.ws1d{word-spacing:-0.318720pt;}
.wsae{word-spacing:-0.294400pt;}
.ws61{word-spacing:-0.235520pt;}
.ws48{word-spacing:-0.202240pt;}
.ws15{word-spacing:-0.192000pt;}
.ws1f{word-spacing:-0.159360pt;}
.ws12{word-spacing:-0.144000pt;}
.ws49{word-spacing:-0.128000pt;}
.ws8e{word-spacing:-0.117760pt;}
.ws19{word-spacing:-0.085120pt;}
.wsa1{word-spacing:-0.064000pt;}
.ws1b{word-spacing:-0.050560pt;}
.ws11{word-spacing:0.000000pt;}
.wsf{word-spacing:0.048000pt;}
.ws1c{word-spacing:0.053120pt;}
.wsd2{word-spacing:0.064000pt;}
.ws17{word-spacing:0.085120pt;}
.ws10{word-spacing:0.117760pt;}
.ws163{word-spacing:0.128000pt;}
.ws31{word-spacing:0.192000pt;}
.wsc1{word-spacing:0.202240pt;}
.ws2a{word-spacing:0.212480pt;}
.ws2d{word-spacing:0.240000pt;}
.ws1a{word-spacing:0.255360pt;}
.ws51{word-spacing:0.256000pt;}
.wscb{word-spacing:0.318720pt;}
.ws35{word-spacing:0.336000pt;}
.ws117{word-spacing:0.353280pt;}
.wsda{word-spacing:0.412160pt;}
.ws20{word-spacing:0.478080pt;}
.wsee{word-spacing:0.529920pt;}
.wsba{word-spacing:0.576000pt;}
.ws90{word-spacing:0.640000pt;}
.ws69{word-spacing:0.647680pt;}
.ws166{word-spacing:0.704000pt;}
.ws39{word-spacing:0.768000pt;}
.ws152{word-spacing:0.832000pt;}
.wscc{word-spacing:0.849920pt;}
.ws13d{word-spacing:0.859520pt;}
.ws2e{word-spacing:0.864000pt;}
.ws91{word-spacing:0.896000pt;}
.ws3a{word-spacing:0.912000pt;}
.ws14{word-spacing:0.960000pt;}
.ws131{word-spacing:1.000960pt;}
.ws13{word-spacing:1.104000pt;}
.ws24{word-spacing:1.115520pt;}
.wsd5{word-spacing:1.152000pt;}
.ws68{word-spacing:1.177600pt;}
.ws71{word-spacing:1.280000pt;}
.wsf2{word-spacing:1.295360pt;}
.ws7c{word-spacing:1.328000pt;}
.wsb1{word-spacing:1.408000pt;}
.wsa5{word-spacing:1.536000pt;}
.ws12f{word-spacing:1.648640pt;}
.ws4c{word-spacing:1.792000pt;}
.wsad{word-spacing:1.825280pt;}
.ws4d{word-spacing:1.920000pt;}
.ws12e{word-spacing:1.943040pt;}
.ws7b{word-spacing:1.965440pt;}
.ws151{word-spacing:2.048000pt;}
.ws6a{word-spacing:2.112000pt;}
.wsfc{word-spacing:2.124800pt;}
.ws38{word-spacing:2.160000pt;}
.ws4b{word-spacing:2.176000pt;}
.ws25{word-spacing:2.390400pt;}
.wsa8{word-spacing:2.432000pt;}
.wsea{word-spacing:2.472960pt;}
.ws53{word-spacing:2.560000pt;}
.wsf4{word-spacing:2.590720pt;}
.ws3c{word-spacing:2.688000pt;}
.ws3d{word-spacing:2.736000pt;}
.ws26{word-spacing:2.762240pt;}
.ws3e{word-spacing:2.784000pt;}
.ws52{word-spacing:2.816000pt;}
.ws3b{word-spacing:2.832000pt;}
.wsc3{word-spacing:3.061760pt;}
.ws13a{word-spacing:3.072000pt;}
.wsd9{word-spacing:3.136000pt;}
.wsc4{word-spacing:3.179520pt;}
.ws70{word-spacing:3.200000pt;}
.ws30{word-spacing:3.408000pt;}
.ws2f{word-spacing:3.456000pt;}
.wsfa{word-spacing:3.665280pt;}
.wsb8{word-spacing:3.709440pt;}
.wsff{word-spacing:3.712000pt;}
.wsb9{word-spacing:3.827200pt;}
.ws6f{word-spacing:3.840000pt;}
.wsf9{word-spacing:3.877760pt;}
.ws6e{word-spacing:4.096000pt;}
.ws36{word-spacing:4.128000pt;}
.ws141{word-spacing:4.302720pt;}
.ws11c{word-spacing:4.352000pt;}
.wsc5{word-spacing:4.357120pt;}
.ws10d{word-spacing:4.474880pt;}
.ws6d{word-spacing:4.480000pt;}
.ws92{word-spacing:4.736000pt;}
.wsd0{word-spacing:4.828160pt;}
.ws140{word-spacing:4.940160pt;}
.ws107{word-spacing:4.992000pt;}
.wsdc{word-spacing:5.004800pt;}
.ws93{word-spacing:5.120000pt;}
.wsd1{word-spacing:5.122560pt;}
.ws13f{word-spacing:5.152640pt;}
.ws78{word-spacing:5.376000pt;}
.ws143{word-spacing:5.632000pt;}
.ws116{word-spacing:5.652480pt;}
.wsa2{word-spacing:5.760000pt;}
.wsf3{word-spacing:5.770240pt;}
.ws2b{word-spacing:5.904000pt;}
.ws2c{word-spacing:5.952000pt;}
.wsa3{word-spacing:6.016000pt;}
.wsd4{word-spacing:6.272000pt;}
.ws10c{word-spacing:6.300160pt;}
.ws77{word-spacing:6.400000pt;}
.wse6{word-spacing:6.417920pt;}
.ws40{word-spacing:6.528000pt;}
.ws3f{word-spacing:6.624000pt;}
.ws76{word-spacing:6.656000pt;}
.ws9b{word-spacing:6.912000pt;}
.wsac{word-spacing:6.947840pt;}
.ws9c{word-spacing:7.040000pt;}
.wse2{word-spacing:7.065600pt;}
.wsd8{word-spacing:7.296000pt;}
.ws14e{word-spacing:7.360000pt;}
.wsef{word-spacing:7.536640pt;}
.wsf0{word-spacing:7.654400pt;}
.ws97{word-spacing:7.680000pt;}
.ws98{word-spacing:7.936000pt;}
.ws37{word-spacing:7.968000pt;}
.wsdb{word-spacing:8.007680pt;}
.ws89{word-spacing:8.184320pt;}
.ws9e{word-spacing:8.192000pt;}
.ws8a{word-spacing:8.302080pt;}
.ws9f{word-spacing:8.320000pt;}
.wsa0{word-spacing:8.576000pt;}
.ws10a{word-spacing:8.817920pt;}
.wsbd{word-spacing:8.832000pt;}
.wse3{word-spacing:8.949760pt;}
.ws5b{word-spacing:8.960000pt;}
.ws5a{word-spacing:9.216000pt;}
.ws10f{word-spacing:9.479680pt;}
.ws114{word-spacing:9.597440pt;}
.wsbb{word-spacing:9.600000pt;}
.wsbc{word-spacing:9.856000pt;}
.wse4{word-spacing:9.950720pt;}
.wsf7{word-spacing:10.112000pt;}
.ws10b{word-spacing:10.127360pt;}
.wsed{word-spacing:10.240000pt;}
.wsf1{word-spacing:10.245120pt;}
.ws72{word-spacing:10.496000pt;}
.ws99{word-spacing:10.752000pt;}
.ws8d{word-spacing:10.775040pt;}
.ws73{word-spacing:10.880000pt;}
.ws133{word-spacing:10.892800pt;}
.ws79{word-spacing:11.136000pt;}
.ws122{word-spacing:11.520000pt;}
.ws6c{word-spacing:11.776000pt;}
.ws58{word-spacing:12.160000pt;}
.ws103{word-spacing:12.188160pt;}
.ws59{word-spacing:12.416000pt;}
.ws104{word-spacing:12.659200pt;}
.wse5{word-spacing:12.776960pt;}
.ws126{word-spacing:12.800000pt;}
.ws127{word-spacing:13.056000pt;}
.wsfe{word-spacing:13.280000pt;}
.ws113{word-spacing:13.306880pt;}
.wsc0{word-spacing:13.312000pt;}
.ws132{word-spacing:13.424640pt;}
.wsbe{word-spacing:13.440000pt;}
.wsfd{word-spacing:13.492480pt;}
.wsbf{word-spacing:13.696000pt;}
.wsde{word-spacing:13.954560pt;}
.ws110{word-spacing:14.072320pt;}
.ws86{word-spacing:14.080000pt;}
.wsaf{word-spacing:14.336000pt;}
.ws11d{word-spacing:14.592000pt;}
.wsdf{word-spacing:14.602240pt;}
.ws64{word-spacing:14.720000pt;}
.ws11e{word-spacing:14.976000pt;}
.ws96{word-spacing:15.232000pt;}
.ws95{word-spacing:15.360000pt;}
.ws144{word-spacing:15.367680pt;}
.ws27{word-spacing:15.404800pt;}
.ws28{word-spacing:15.457920pt;}
.ws94{word-spacing:15.616000pt;}
.ws15f{word-spacing:15.872000pt;}
.ws11a{word-spacing:15.897600pt;}
.ws12d{word-spacing:16.000000pt;}
.wsca{word-spacing:16.042240pt;}
.ws11b{word-spacing:16.128000pt;}
.ws57{word-spacing:16.256000pt;}
.ws29{word-spacing:16.360960pt;}
.wsfb{word-spacing:16.467200pt;}
.ws118{word-spacing:16.545280pt;}
.wsa4{word-spacing:16.640000pt;}
.ws101{word-spacing:16.663040pt;}
.ws12a{word-spacing:16.896000pt;}
.ws119{word-spacing:17.016320pt;}
.ws7e{word-spacing:17.104640pt;}
.ws148{word-spacing:17.152000pt;}
.ws112{word-spacing:17.192960pt;}
.ws12c{word-spacing:17.280000pt;}
.wsaa{word-spacing:17.310720pt;}
.ws149{word-spacing:17.536000pt;}
.wsa9{word-spacing:17.781760pt;}
.ws109{word-spacing:17.792000pt;}
.ws111{word-spacing:17.899520pt;}
.wsec{word-spacing:17.920000pt;}
.ws7d{word-spacing:17.954560pt;}
.wsdd{word-spacing:18.429440pt;}
.ws123{word-spacing:18.432000pt;}
.ws14b{word-spacing:18.547200pt;}
.ws13c{word-spacing:18.560000pt;}
.ws120{word-spacing:18.816000pt;}
.ws74{word-spacing:19.072000pt;}
.ws14a{word-spacing:19.077120pt;}
.ws75{word-spacing:19.200000pt;}
.wsb2{word-spacing:19.456000pt;}
.ws9a{word-spacing:19.840000pt;}
.wsc2{word-spacing:19.842560pt;}
.ws7f{word-spacing:19.920000pt;}
.ws1e{word-spacing:20.079360pt;}
.ws159{word-spacing:20.096000pt;}
.wsf6{word-spacing:20.372480pt;}
.ws88{word-spacing:20.480000pt;}
.wsf5{word-spacing:20.490240pt;}
.ws115{word-spacing:21.020160pt;}
.ws138{word-spacing:21.120000pt;}
.ws21{word-spacing:21.194880pt;}
.ws22{word-spacing:21.513600pt;}
.ws8f{word-spacing:21.632000pt;}
.ws62{word-spacing:21.667840pt;}
.ws147{word-spacing:21.760000pt;}
.ws8c{word-spacing:21.785600pt;}
.ws47{word-spacing:21.993600pt;}
.ws146{word-spacing:22.016000pt;}
.wsa6{word-spacing:22.400000pt;}
.wsd6{word-spacing:22.656000pt;}
.ws14c{word-spacing:23.022080pt;}
.ws108{word-spacing:23.040000pt;}
.ws12b{word-spacing:23.296000pt;}
.ws125{word-spacing:23.680000pt;}
.ws124{word-spacing:23.936000pt;}
.wsb0{word-spacing:24.320000pt;}
.ws13b{word-spacing:24.576000pt;}
.ws137{word-spacing:24.960000pt;}
.ws129{word-spacing:25.216000pt;}
.ws15a{word-spacing:25.600000pt;}
.ws15b{word-spacing:25.856000pt;}
.ws100{word-spacing:26.260480pt;}
.ws81{word-spacing:26.294400pt;}
.ws80{word-spacing:26.453760pt;}
.ws145{word-spacing:26.880000pt;}
.ws128{word-spacing:27.496960pt;}
.ws102{word-spacing:28.144640pt;}
.ws154{word-spacing:28.672000pt;}
.ws136{word-spacing:28.800000pt;}
.ws165{word-spacing:30.080000pt;}
.ws15e{word-spacing:32.640000pt;}
.ws15d{word-spacing:32.896000pt;}
.ws156{word-spacing:34.176000pt;}
.ws7a{word-spacing:35.840000pt;}
.ws10e{word-spacing:38.272000pt;}
.ws13e{word-spacing:40.320000pt;}
.ws164{word-spacing:42.240000pt;}
.ws121{word-spacing:43.520000pt;}
.ws134{word-spacing:44.160000pt;}
.ws135{word-spacing:44.416000pt;}
.wse7{word-spacing:45.337600pt;}
.ws162{word-spacing:46.720000pt;}
.ws161{word-spacing:52.992000pt;}
.ws66{word-spacing:53.109760pt;}
.ws160{word-spacing:53.120000pt;}
.ws65{word-spacing:53.639680pt;}
.ws139{word-spacing:59.136000pt;}
.ws157{word-spacing:77.440000pt;}
.ws16{word-spacing:91.418880pt;}
.ws15c{word-spacing:158.080000pt;}
.ws23{word-spacing:168.815360pt;}
._18{margin-left:-21.666048pt;}
._19{margin-left:-5.355776pt;}
._15{margin-left:-3.975680pt;}
._8{margin-left:-3.008000pt;}
._1{margin-left:-2.016000pt;}
._0{margin-left:-1.056000pt;}
._2{width:1.056000pt;}
._9{width:2.304000pt;}
._7{width:3.408000pt;}
._1c{width:4.384000pt;}
._6{width:5.616000pt;}
._b{width:6.768000pt;}
._e{width:7.664000pt;}
._14{width:8.647680pt;}
._a{width:9.792000pt;}
._f{width:11.443200pt;}
._16{width:12.643840pt;}
._12{width:13.888000pt;}
._11{width:14.880000pt;}
._1b{width:15.884800pt;}
._1a{width:16.788480pt;}
._17{width:18.048000pt;}
._3{width:19.614080pt;}
._4{width:20.856960pt;}
._10{width:22.464000pt;}
._13{width:24.144000pt;}
._d{width:25.822720pt;}
._24{width:27.488000pt;}
._22{width:32.320000pt;}
._20{width:35.680000pt;}
._1f{width:39.936000pt;}
._25{width:41.920000pt;}
._1d{width:42.880000pt;}
._1e{width:45.056000pt;}
._23{width:46.528000pt;}
._21{width:158.016000pt;}
._5{width:168.568320pt;}
._c{width:216.336000pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:40.640000pt;}
.y2{bottom:54.560000pt;}
.y107{bottom:86.364000pt;}
.y60{bottom:86.375840pt;}
.yc4{bottom:86.379387pt;}
.y11e{bottom:86.389440pt;}
.y1b7{bottom:89.938560pt;}
.y19d{bottom:91.040000pt;}
.y13b{bottom:91.571200pt;}
.y15a{bottom:93.440000pt;}
.y16a{bottom:95.849600pt;}
.ye8{bottom:96.844160pt;}
.y187{bottom:98.560000pt;}
.y106{bottom:101.569600pt;}
.y5f{bottom:101.581440pt;}
.yc3{bottom:101.584987pt;}
.y11d{bottom:101.595040pt;}
.y19c{bottom:101.600000pt;}
.y85{bottom:103.200000pt;}
.y1b6{bottom:106.896000pt;}
.y13a{bottom:108.366720pt;}
.y159{bottom:111.840000pt;}
.y169{bottom:112.807040pt;}
.ye7{bottom:113.639680pt;}
.y105{bottom:116.934560pt;}
.y5e{bottom:116.946400pt;}
.yc2{bottom:116.949947pt;}
.y11c{bottom:116.960000pt;}
.ya4{bottom:120.000000pt;}
.y84{bottom:121.600000pt;}
.y1ea{bottom:122.880000pt;}
.y1b5{bottom:123.691520pt;}
.y139{bottom:125.324160pt;}
.y17d{bottom:126.112640pt;}
.y168{bottom:129.602560pt;}
.y1ff{bottom:130.080000pt;}
.y158{bottom:130.240000pt;}
.ye6{bottom:130.597120pt;}
.y104{bottom:132.299520pt;}
.y5d{bottom:132.311360pt;}
.yc1{bottom:132.314907pt;}
.y11b{bottom:132.320000pt;}
.y186{bottom:135.360000pt;}
.y3a{bottom:136.000000pt;}
.ya3{bottom:138.400000pt;}
.y83{bottom:140.000000pt;}
.y1b4{bottom:140.648960pt;}
.y1e9{bottom:141.280000pt;}
.y138{bottom:142.119680pt;}
.y17c{bottom:143.070080pt;}
.y20f{bottom:146.080000pt;}
.y167{bottom:146.560000pt;}
.ye5{bottom:147.392640pt;}
.y103{bottom:147.664480pt;}
.y5c{bottom:147.676320pt;}
.y1fe{bottom:148.480000pt;}
.y157{bottom:148.640000pt;}
.yc0{bottom:152.320000pt;}
.y185{bottom:153.760000pt;}
.y39{bottom:154.400000pt;}
.ya2{bottom:156.800000pt;}
.y1b3{bottom:157.444480pt;}
.y82{bottom:158.400000pt;}
.y195{bottom:158.560000pt;}
.y137{bottom:159.077120pt;}
.y17b{bottom:159.865600pt;}
.y102{bottom:163.029440pt;}
.ybf{bottom:163.040000pt;}
.ye4{bottom:164.188160pt;}
.y20e{bottom:164.480000pt;}
.y1d2{bottom:165.280000pt;}
.y1fd{bottom:166.880000pt;}
.y156{bottom:167.040000pt;}
.y5b{bottom:168.640000pt;}
.y184{bottom:172.160000pt;}
.y38{bottom:172.800000pt;}
.y27{bottom:173.600000pt;}
.y1b2{bottom:174.240000pt;}
.ya1{bottom:175.200000pt;}
.y1e8{bottom:175.680000pt;}
.y136{bottom:175.872640pt;}
.y17a{bottom:176.661120pt;}
.y81{bottom:176.800000pt;}
.y194{bottom:176.960000pt;}
.y101{bottom:178.394400pt;}
.y166{bottom:179.680000pt;}
.y5a{bottom:179.840000pt;}
.ye3{bottom:181.145600pt;}
.y20d{bottom:182.880000pt;}
.y1d1{bottom:183.680000pt;}
.y1fc{bottom:185.280000pt;}
.y183{bottom:190.560000pt;}
.y37{bottom:191.200000pt;}
.y135{bottom:192.668160pt;}
.ya0{bottom:193.600000pt;}
.y179{bottom:193.618560pt;}
.y1e7{bottom:194.080000pt;}
.y80{bottom:195.200000pt;}
.y193{bottom:195.360000pt;}
.y26{bottom:196.960000pt;}
.y59{bottom:197.600000pt;}
.ye2{bottom:197.941120pt;}
.y165{bottom:198.080000pt;}
.y100{bottom:198.240000pt;}
.y155{bottom:201.120000pt;}
.y20c{bottom:201.280000pt;}
.y1d0{bottom:202.080000pt;}
.y1b1{bottom:207.360000pt;}
.yff{bottom:208.960000pt;}
.y36{bottom:209.600000pt;}
.y134{bottom:209.625600pt;}
.y178{bottom:210.414080pt;}
.y25{bottom:211.672000pt;}
.y9f{bottom:212.000000pt;}
.y1e6{bottom:212.480000pt;}
.y7f{bottom:213.600000pt;}
.y192{bottom:213.760000pt;}
.ye1{bottom:214.898560pt;}
.y58{bottom:216.000000pt;}
.y164{bottom:216.480000pt;}
.y1fb{bottom:219.680000pt;}
.y1cf{bottom:220.480000pt;}
.ybe{bottom:223.531520pt;}
.y1b0{bottom:225.760000pt;}
.y24{bottom:226.228000pt;}
.y133{bottom:226.421120pt;}
.y182{bottom:227.360000pt;}
.y177{bottom:227.371520pt;}
.y35{bottom:228.000000pt;}
.y9e{bottom:230.400000pt;}
.ye0{bottom:231.694080pt;}
.y7e{bottom:232.000000pt;}
.y191{bottom:232.160000pt;}
.y57{bottom:234.400000pt;}
.y163{bottom:234.880000pt;}
.y20b{bottom:235.680000pt;}
.y154{bottom:235.840000pt;}
.y1fa{bottom:238.080000pt;}
.y1ce{bottom:238.880000pt;}
.ybd{bottom:240.488960pt;}
.y23{bottom:240.952000pt;}
.y132{bottom:243.378560pt;}
.y1af{bottom:244.160000pt;}
.y176{bottom:244.167040pt;}
.y19b{bottom:246.258560pt;}
.y34{bottom:246.400000pt;}
.y1e5{bottom:246.560000pt;}
.ydf{bottom:248.651520pt;}
.y9d{bottom:248.800000pt;}
.y7d{bottom:250.400000pt;}
.y190{bottom:250.560000pt;}
.y56{bottom:252.800000pt;}
.y162{bottom:253.280000pt;}
.y20a{bottom:254.080000pt;}
.y153{bottom:254.240000pt;}
.y22{bottom:255.508000pt;}
.y1cd{bottom:257.280000pt;}
.ybc{bottom:257.284480pt;}
.y131{bottom:260.174080pt;}
.y175{bottom:260.962560pt;}
.y181{bottom:261.449600pt;}
.y1ae{bottom:262.560000pt;}
.y19a{bottom:263.054080pt;}
.y33{bottom:264.800000pt;}
.yde{bottom:265.447040pt;}
.y7c{bottom:268.800000pt;}
.y18f{bottom:268.960000pt;}
.y21{bottom:270.232000pt;}
.y161{bottom:271.680000pt;}
.y1f9{bottom:272.480000pt;}
.y152{bottom:272.640000pt;}
.ybb{bottom:274.080000pt;}
.y1cc{bottom:275.680000pt;}
.y130{bottom:276.969600pt;}
.y174{bottom:277.920000pt;}
.y180{bottom:278.407040pt;}
.y199{bottom:279.849600pt;}
.y1ad{bottom:280.960000pt;}
.ydd{bottom:282.242560pt;}
.y9c{bottom:283.058560pt;}
.y32{bottom:283.200000pt;}
.y20{bottom:284.788000pt;}
.y55{bottom:286.880000pt;}
.yfe{bottom:286.924160pt;}
.y7b{bottom:287.200000pt;}
.y209{bottom:288.480000pt;}
.y160{bottom:290.080000pt;}
.y1f8{bottom:290.880000pt;}
.y151{bottom:291.040000pt;}
.y12f{bottom:293.927040pt;}
.y1cb{bottom:294.080000pt;}
.y17f{bottom:295.202560pt;}
.y198{bottom:296.807040pt;}
.y1e4{bottom:297.280000pt;}
.ydc{bottom:299.200000pt;}
.y1f{bottom:299.512000pt;}
.y9b{bottom:299.854080pt;}
.y31{bottom:301.440000pt;}
.y18e{bottom:303.049600pt;}
.yfd{bottom:303.719680pt;}
.y7a{bottom:305.600000pt;}
.y208{bottom:306.880000pt;}
.yba{bottom:307.200000pt;}
.y15f{bottom:308.480000pt;}
.y1f7{bottom:309.280000pt;}
.y150{bottom:309.440000pt;}
.y12e{bottom:310.722560pt;}
.y173{bottom:311.040000pt;}
.y17e{bottom:312.160000pt;}
.y1ca{bottom:312.480000pt;}
.y197{bottom:313.602560pt;}
.y1e{bottom:314.236000pt;}
.y1ac{bottom:315.253120pt;}
.y1e3{bottom:315.680000pt;}
.y9a{bottom:316.649600pt;}
.y30{bottom:319.840000pt;}
.y18d{bottom:320.007040pt;}
.yfc{bottom:320.677120pt;}
.y54{bottom:321.600000pt;}
.y79{bottom:324.000000pt;}
.y207{bottom:325.280000pt;}
.yb9{bottom:325.600000pt;}
.y15e{bottom:326.880000pt;}
.y12d{bottom:327.680000pt;}
.y14f{bottom:327.840000pt;}
.y1d{bottom:328.792000pt;}
.y172{bottom:329.440000pt;}
.y196{bottom:330.560000pt;}
.y1c9{bottom:330.880000pt;}
.y1ab{bottom:332.048640pt;}
.ydb{bottom:332.320000pt;}
.y99{bottom:333.607040pt;}
.y1e2{bottom:334.080000pt;}
.y18c{bottom:336.802560pt;}
.yfb{bottom:337.472640pt;}
.y2f{bottom:338.240000pt;}
.y53{bottom:340.000000pt;}
.y78{bottom:342.400000pt;}
.y1c{bottom:343.516000pt;}
.y1f6{bottom:343.680000pt;}
.yb8{bottom:344.000000pt;}
.y15d{bottom:345.280000pt;}
.y14e{bottom:346.240000pt;}
.y1aa{bottom:349.006080pt;}
.y1c8{bottom:349.280000pt;}
.y98{bottom:350.402560pt;}
.yda{bottom:350.720000pt;}
.y1e1{bottom:352.480000pt;}
.y18b{bottom:353.760000pt;}
.yfa{bottom:354.430080pt;}
.y1b{bottom:358.072000pt;}
.y52{bottom:358.400000pt;}
.y206{bottom:359.680000pt;}
.y77{bottom:360.800000pt;}
.yb7{bottom:362.400000pt;}
.y171{bottom:363.541120pt;}
.y15c{bottom:363.680000pt;}
.y14d{bottom:364.640000pt;}
.y1a9{bottom:365.801600pt;}
.y97{bottom:367.360000pt;}
.y1c7{bottom:367.680000pt;}
.yd9{bottom:369.120000pt;}
.y1e0{bottom:370.880000pt;}
.yf9{bottom:371.225600pt;}
.y2e{bottom:372.480000pt;}
.y1a{bottom:372.796000pt;}
.y51{bottom:376.800000pt;}
.y1f5{bottom:378.080000pt;}
.y76{bottom:379.200000pt;}
.y170{bottom:380.498560pt;}
.y15b{bottom:382.080000pt;}
.y1a8{bottom:382.597120pt;}
.y14c{bottom:383.040000pt;}
.y2d{bottom:385.760000pt;}
.y1c6{bottom:386.080000pt;}
.y18a{bottom:386.880000pt;}
.y19{bottom:387.352000pt;}
.yd8{bottom:387.520000pt;}
.yf8{bottom:388.183040pt;}
.y1df{bottom:389.280000pt;}
.y11a{bottom:394.947200pt;}
.y50{bottom:395.200000pt;}
.yb6{bottom:396.480000pt;}
.y16f{bottom:397.294080pt;}
.y75{bottom:397.600000pt;}
.y1a7{bottom:399.554560pt;}
.y96{bottom:400.480000pt;}
.y14b{bottom:401.440000pt;}
.y18{bottom:402.076000pt;}
.y1c5{bottom:404.480000pt;}
.yf7{bottom:404.978560pt;}
.y189{bottom:405.280000pt;}
.yd7{bottom:405.920000pt;}
.y1de{bottom:407.680000pt;}
.y119{bottom:411.742720pt;}
.y4f{bottom:413.600000pt;}
.y16e{bottom:414.089600pt;}
.y205{bottom:414.720000pt;}
.y74{bottom:416.000000pt;}
.y1a6{bottom:416.350080pt;}
.y17{bottom:416.632000pt;}
.y95{bottom:418.880000pt;}
.y14a{bottom:419.840000pt;}
.yf6{bottom:421.774080pt;}
.y1c4{bottom:422.880000pt;}
.yd6{bottom:424.320000pt;}
.y1dd{bottom:426.080000pt;}
.y118{bottom:428.700160pt;}
.y1f4{bottom:430.720000pt;}
.y16d{bottom:431.047040pt;}
.yb5{bottom:431.200000pt;}
.y16{bottom:431.356000pt;}
.y12c{bottom:431.747200pt;}
.y4e{bottom:432.000000pt;}
.y1a5{bottom:433.307520pt;}
.y73{bottom:434.400000pt;}
.y94{bottom:437.280000pt;}
.y149{bottom:438.240000pt;}
.yf5{bottom:438.731520pt;}
.y188{bottom:439.360000pt;}
.y1c3{bottom:441.280000pt;}
.yd5{bottom:442.720000pt;}
.y1dc{bottom:444.480000pt;}
.y117{bottom:445.495680pt;}
.y15{bottom:446.080000pt;}
.y16c{bottom:447.842560pt;}
.y12b{bottom:448.542720pt;}
.y1f3{bottom:449.120000pt;}
.yb4{bottom:449.600000pt;}
.y1a4{bottom:450.103040pt;}
.y4d{bottom:450.400000pt;}
.y72{bottom:452.800000pt;}
.yf4{bottom:455.527040pt;}
.y93{bottom:455.680000pt;}
.y148{bottom:456.640000pt;}
.y1c2{bottom:459.680000pt;}
.y14{bottom:460.640000pt;}
.yd4{bottom:461.120000pt;}
.y116{bottom:462.453120pt;}
.y1db{bottom:462.720000pt;}
.y16b{bottom:464.800000pt;}
.y12a{bottom:465.500160pt;}
.y1a3{bottom:466.898560pt;}
.y1f2{bottom:467.520000pt;}
.yb3{bottom:468.000000pt;}
.y4c{bottom:468.800000pt;}
.y71{bottom:471.200000pt;}
.yf3{bottom:472.484480pt;}
.y92{bottom:474.080000pt;}
.y147{bottom:475.040000pt;}
.y13{bottom:476.000000pt;}
.y1c1{bottom:478.080000pt;}
.y115{bottom:479.248640pt;}
.yd3{bottom:479.520000pt;}
.y1da{bottom:481.120000pt;}
.y129{bottom:482.295680pt;}
.y1a2{bottom:483.856000pt;}
.y204{bottom:485.920000pt;}
.yb2{bottom:486.400000pt;}
.y4b{bottom:487.200000pt;}
.yf2{bottom:489.280000pt;}
.y70{bottom:489.600000pt;}
.y12{bottom:491.360000pt;}
.y91{bottom:492.480000pt;}
.y146{bottom:493.440000pt;}
.y114{bottom:496.044160pt;}
.y1c0{bottom:496.480000pt;}
.yd2{bottom:497.920000pt;}
.y128{bottom:499.253120pt;}
.y1d9{bottom:499.520000pt;}
.y1a1{bottom:500.651520pt;}
.y1f1{bottom:501.920000pt;}
.yb1{bottom:504.800000pt;}
.y4a{bottom:505.600000pt;}
.y11{bottom:506.714400pt;}
.y6f{bottom:508.000000pt;}
.y90{bottom:510.720000pt;}
.y145{bottom:511.840000pt;}
.y113{bottom:513.001600pt;}
.y127{bottom:516.048640pt;}
.yd1{bottom:516.320000pt;}
.y1a0{bottom:517.608960pt;}
.y1d8{bottom:517.920000pt;}
.y1f0{bottom:520.320000pt;}
.y10{bottom:521.920000pt;}
.yf1{bottom:522.400000pt;}
.yb0{bottom:523.200000pt;}
.y49{bottom:524.000000pt;}
.y6e{bottom:526.400000pt;}
.y8f{bottom:529.120000pt;}
.y112{bottom:529.797120pt;}
.y144{bottom:530.240000pt;}
.y1bf{bottom:530.745600pt;}
.y126{bottom:532.844160pt;}
.y19f{bottom:534.404480pt;}
.yd0{bottom:534.720000pt;}
.y1d7{bottom:536.320000pt;}
.yf{bottom:537.254560pt;}
.y203{bottom:538.720000pt;}
.yf0{bottom:540.800000pt;}
.yaf{bottom:541.600000pt;}
.y48{bottom:542.400000pt;}
.y6d{bottom:544.800000pt;}
.y111{bottom:546.754560pt;}
.y8e{bottom:547.520000pt;}
.y1be{bottom:547.541120pt;}
.y125{bottom:549.801600pt;}
.y19e{bottom:551.200000pt;}
.ye{bottom:552.619520pt;}
.ycf{bottom:553.120000pt;}
.y1d6{bottom:554.720000pt;}
.y202{bottom:557.120000pt;}
.yef{bottom:559.200000pt;}
.yae{bottom:560.000000pt;}
.y47{bottom:560.800000pt;}
.y110{bottom:563.550080pt;}
.y143{bottom:564.491520pt;}
.y1bd{bottom:564.498560pt;}
.y8d{bottom:565.920000pt;}
.y124{bottom:566.597120pt;}
.yd{bottom:567.984480pt;}
.yce{bottom:571.520000pt;}
.y1d5{bottom:573.120000pt;}
.yee{bottom:577.600000pt;}
.yad{bottom:578.400000pt;}
.y6c{bottom:578.903040pt;}
.y46{bottom:579.200000pt;}
.y10f{bottom:580.507520pt;}
.y142{bottom:581.287040pt;}
.y1bc{bottom:581.294080pt;}
.yc{bottom:583.349440pt;}
.y123{bottom:583.554560pt;}
.y8c{bottom:584.320000pt;}
.ycd{bottom:589.920000pt;}
.y1d4{bottom:591.520000pt;}
.y6b{bottom:595.698560pt;}
.yed{bottom:596.000000pt;}
.yac{bottom:596.800000pt;}
.y10e{bottom:597.303040pt;}
.y45{bottom:597.600000pt;}
.y141{bottom:598.082560pt;}
.y1bb{bottom:598.089600pt;}
.yb{bottom:598.555040pt;}
.y122{bottom:600.350080pt;}
.y8b{bottom:602.720000pt;}
.ycc{bottom:608.320000pt;}
.y201{bottom:609.920000pt;}
.y6a{bottom:612.656000pt;}
.ya{bottom:613.920000pt;}
.y10d{bottom:614.098560pt;}
.yec{bottom:614.400000pt;}
.y140{bottom:615.040000pt;}
.y1ba{bottom:615.047040pt;}
.yab{bottom:615.200000pt;}
.y44{bottom:616.000000pt;}
.y121{bottom:617.145600pt;}
.y8a{bottom:621.120000pt;}
.y1d3{bottom:625.600000pt;}
.y1ef{bottom:625.920000pt;}
.ycb{bottom:626.720000pt;}
.y9{bottom:629.280000pt;}
.y69{bottom:629.451520pt;}
.y10c{bottom:631.056000pt;}
.y1b9{bottom:631.842560pt;}
.yeb{bottom:632.800000pt;}
.yaa{bottom:633.600000pt;}
.y120{bottom:634.103040pt;}
.y43{bottom:634.240000pt;}
.y89{bottom:639.520000pt;}
.y1ee{bottom:644.320000pt;}
.yca{bottom:645.120000pt;}
.y8{bottom:645.280000pt;}
.y68{bottom:646.408960pt;}
.y10b{bottom:647.851520pt;}
.y13f{bottom:648.160000pt;}
.y1b8{bottom:648.800000pt;}
.y11f{bottom:650.898560pt;}
.yea{bottom:651.200000pt;}
.y42{bottom:652.640000pt;}
.y88{bottom:657.920000pt;}
.y1ed{bottom:662.720000pt;}
.y67{bottom:663.204480pt;}
.yc9{bottom:663.520000pt;}
.y10a{bottom:664.808960pt;}
.y13e{bottom:666.560000pt;}
.ya9{bottom:667.856000pt;}
.ye9{bottom:669.600000pt;}
.y87{bottom:676.320000pt;}
.y66{bottom:680.000000pt;}
.y1ec{bottom:681.120000pt;}
.y109{bottom:681.604480pt;}
.yc8{bottom:681.920000pt;}
.ya8{bottom:684.651520pt;}
.y13d{bottom:684.960000pt;}
.y7{bottom:686.870880pt;}
.y41{bottom:686.902907pt;}
.y86{bottom:694.720000pt;}
.y200{bottom:697.120000pt;}
.y108{bottom:698.400000pt;}
.yc7{bottom:700.320000pt;}
.ya7{bottom:701.608960pt;}
.y13c{bottom:703.360000pt;}
.y40{bottom:703.698427pt;}
.y6{bottom:712.960160pt;}
.y65{bottom:713.120000pt;}
.y2c{bottom:715.520000pt;}
.ya6{bottom:718.404480pt;}
.yc6{bottom:718.720000pt;}
.y3f{bottom:720.655867pt;}
.y64{bottom:731.520000pt;}
.y2b{bottom:733.600000pt;}
.y1eb{bottom:733.920000pt;}
.ya5{bottom:735.200000pt;}
.yc5{bottom:737.120000pt;}
.y3e{bottom:737.451387pt;}
.y63{bottom:749.920000pt;}
.y3d{bottom:754.408827pt;}
.y5{bottom:755.030720pt;}
.y2a{bottom:767.996160pt;}
.y62{bottom:768.320000pt;}
.y3c{bottom:771.204347pt;}
.y4{bottom:781.120000pt;}
.y29{bottom:786.400000pt;}
.y61{bottom:786.720000pt;}
.y3b{bottom:787.999867pt;}
.y1{bottom:832.800000pt;}
.y28{bottom:834.560000pt;}
.h11{height:30.324375pt;}
.hf{height:32.570625pt;}
.h9{height:34.453125pt;}
.h3{height:42.117188pt;}
.h2{height:42.262500pt;}
.hc{height:44.437500pt;}
.h6{height:46.609688pt;}
.h8{height:46.632088pt;}
.h7{height:46.711447pt;}
.hd{height:51.663750pt;}
.h5{height:56.156250pt;}
.ha{height:56.843750pt;}
.hb{height:56.859110pt;}
.h4{height:61.096875pt;}
.h10{height:61.944154pt;}
.he{height:61.944688pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:85.120000pt;}
.x4{left:113.440000pt;}
.x7{left:132.320000pt;}
.x2{left:176.160000pt;}
.x5{left:178.880000pt;}
.x8{left:272.640000pt;}
.x6{left:476.648000pt;}
.x3{left:557.440000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  