
    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_80fc10dec25d20a76cba2920.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100098;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_4a8368b354511692fc89b280.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c8e97e3797d8f03c51932ca7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f103703b851191ac044b074c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.952637;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_88f1c58a570e0b192e538b71.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ea0e072b18fe894a259c13ac.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m1{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,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);}
.m2{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:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls82{letter-spacing:-2.088000px;}
.ls5d{letter-spacing:-1.872000px;}
.ls28{letter-spacing:-1.800000px;}
.ls5a{letter-spacing:-1.745577px;}
.ls78{letter-spacing:-1.584000px;}
.ls70{letter-spacing:-1.512000px;}
.ls71{letter-spacing:-1.440000px;}
.ls3b{letter-spacing:-1.368000px;}
.ls29{letter-spacing:-1.224000px;}
.lsc{letter-spacing:-1.152000px;}
.ls52{letter-spacing:-1.126080px;}
.ls73{letter-spacing:-1.008000px;}
.ls41{letter-spacing:-0.936000px;}
.ls84{letter-spacing:-0.864000px;}
.ls63{letter-spacing:-0.792000px;}
.ls27{letter-spacing:-0.720000px;}
.ls57{letter-spacing:-0.683052px;}
.ls17{letter-spacing:-0.675360px;}
.ls4b{letter-spacing:-0.668160px;}
.ls2c{letter-spacing:-0.662400px;}
.ls3{letter-spacing:-0.648000px;}
.ls7{letter-spacing:-0.622080px;}
.ls7a{letter-spacing:-0.596160px;}
.ls38{letter-spacing:-0.578880px;}
.ls19{letter-spacing:-0.576000px;}
.ls3c{letter-spacing:-0.504000px;}
.ls26{letter-spacing:-0.432000px;}
.ls91{letter-spacing:-0.417600px;}
.ls7c{letter-spacing:-0.397440px;}
.ls3d{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.289440px;}
.ls1b{letter-spacing:-0.288000px;}
.ls4a{letter-spacing:-0.250560px;}
.ls4{letter-spacing:-0.216000px;}
.ls2b{letter-spacing:-0.198720px;}
.ls25{letter-spacing:-0.167040px;}
.ls6{letter-spacing:-0.155520px;}
.ls6c{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.072000px;}
.ls7d{letter-spacing:-0.066240px;}
.ls2{letter-spacing:0.000000px;}
.ls53{letter-spacing:0.043200px;}
.ls12{letter-spacing:0.072000px;}
.ls24{letter-spacing:0.083520px;}
.ls3a{letter-spacing:0.144000px;}
.ls39{letter-spacing:0.167040px;}
.lsd{letter-spacing:0.190080px;}
.ls89{letter-spacing:0.208800px;}
.ls1a{letter-spacing:0.216000px;}
.ls6a{letter-spacing:0.223200px;}
.ls18{letter-spacing:0.288000px;}
.ls30{letter-spacing:0.360000px;}
.ls44{letter-spacing:0.432000px;}
.ls7b{letter-spacing:0.463680px;}
.ls5{letter-spacing:0.466560px;}
.ls22{letter-spacing:0.504000px;}
.ls5e{letter-spacing:0.531263px;}
.ls1f{letter-spacing:0.574560px;}
.ls1c{letter-spacing:0.576000px;}
.ls86{letter-spacing:0.583200px;}
.ls0{letter-spacing:0.648000px;}
.ls2a{letter-spacing:0.662400px;}
.ls16{letter-spacing:0.675360px;}
.lse{letter-spacing:0.709920px;}
.ls3e{letter-spacing:0.712800px;}
.ls15{letter-spacing:0.720000px;}
.ls77{letter-spacing:0.727200px;}
.ls50{letter-spacing:0.728640px;}
.ls59{letter-spacing:0.758947px;}
.ls67{letter-spacing:0.792000px;}
.ls1{letter-spacing:0.870912px;}
.ls9{letter-spacing:1.138420px;}
.lsa{letter-spacing:1.479946px;}
.ls51{letter-spacing:1.512000px;}
.ls20{letter-spacing:2.160000px;}
.ls6d{letter-spacing:2.174400px;}
.ls4f{letter-spacing:2.179296px;}
.ls4e{letter-spacing:2.185920px;}
.ls8d{letter-spacing:2.276840px;}
.ls58{letter-spacing:3.339365px;}
.ls21{letter-spacing:3.600000px;}
.ls69{letter-spacing:3.794733px;}
.ls8f{letter-spacing:3.870628px;}
.ls90{letter-spacing:4.174207px;}
.ls7e{letter-spacing:5.025600px;}
.ls7f{letter-spacing:5.032800px;}
.ls79{letter-spacing:5.034240px;}
.ls40{letter-spacing:5.040000px;}
.ls3f{letter-spacing:5.047200px;}
.ls8e{letter-spacing:5.312626px;}
.lsb{letter-spacing:5.692100px;}
.ls2e{letter-spacing:6.480000px;}
.ls32{letter-spacing:7.905600px;}
.ls2f{letter-spacing:7.920000px;}
.ls8a{letter-spacing:9.345600px;}
.ls5c{letter-spacing:9.352800px;}
.ls36{letter-spacing:9.360000px;}
.ls8c{letter-spacing:9.367200px;}
.ls2d{letter-spacing:10.651680px;}
.ls95{letter-spacing:10.792800px;}
.ls31{letter-spacing:10.800000px;}
.ls34{letter-spacing:12.240000px;}
.ls6b{letter-spacing:13.680000px;}
.ls23{letter-spacing:13.711680px;}
.ls5f{letter-spacing:15.112800px;}
.ls37{letter-spacing:15.120000px;}
.ls54{letter-spacing:16.560000px;}
.ls5b{letter-spacing:18.000000px;}
.ls88{letter-spacing:19.440000px;}
.ls85{letter-spacing:19.454400px;}
.ls55{letter-spacing:20.880000px;}
.ls62{letter-spacing:22.320000px;}
.ls42{letter-spacing:22.884480px;}
.ls61{letter-spacing:23.760000px;}
.ls56{letter-spacing:25.200000px;}
.ls80{letter-spacing:26.640000px;}
.ls35{letter-spacing:28.080000px;}
.ls83{letter-spacing:29.520000px;}
.ls1e{letter-spacing:30.067200px;}
.ls60{letter-spacing:32.400000px;}
.ls46{letter-spacing:33.840000px;}
.ls81{letter-spacing:36.720000px;}
.ls8b{letter-spacing:38.160000px;}
.ls6f{letter-spacing:39.024000px;}
.ls33{letter-spacing:43.920000px;}
.ls92{letter-spacing:44.784000px;}
.ls87{letter-spacing:48.240000px;}
.ls93{letter-spacing:49.104000px;}
.ls66{letter-spacing:58.320000px;}
.ls65{letter-spacing:59.760000px;}
.ls10{letter-spacing:62.640000px;}
.ls68{letter-spacing:63.849600px;}
.ls72{letter-spacing:64.944000px;}
.lsf{letter-spacing:66.960000px;}
.ls13{letter-spacing:74.160000px;}
.ls75{letter-spacing:78.480000px;}
.ls11{letter-spacing:79.920000px;}
.ls94{letter-spacing:90.864000px;}
.ls6e{letter-spacing:92.304000px;}
.ls14{letter-spacing:92.880000px;}
.ls4c{letter-spacing:96.624000px;}
.ls76{letter-spacing:100.944000px;}
.ls47{letter-spacing:103.824000px;}
.ls48{letter-spacing:105.264000px;}
.ls96{letter-spacing:109.584000px;}
.ls64{letter-spacing:119.664000px;}
.ls45{letter-spacing:129.744000px;}
.ls49{letter-spacing:131.184000px;}
.ls4d{letter-spacing:148.464000px;}
.ls43{letter-spacing:154.224000px;}
.ls74{letter-spacing:193.680000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws126{word-spacing:-72.000000px;}
.wsaf{word-spacing:-60.480000px;}
.ws0{word-spacing:-54.000000px;}
.ws1{word-spacing:-53.784000px;}
.ws2{word-spacing:-38.257920px;}
.ws3{word-spacing:-29.940445px;}
.ws39{word-spacing:-23.541120px;}
.ws11a{word-spacing:-22.844294px;}
.ws1a{word-spacing:-20.963520px;}
.ws6e{word-spacing:-20.880000px;}
.ws1b{word-spacing:-20.712960px;}
.ws6d{word-spacing:-20.629440px;}
.ws122{word-spacing:-20.462400px;}
.ws8b{word-spacing:-19.732613px;}
.ws119{word-spacing:-19.504929px;}
.wsae{word-spacing:-18.792000px;}
.ws20{word-spacing:-18.720000px;}
.ws3b{word-spacing:-18.648000px;}
.ws13{word-spacing:-18.576000px;}
.ws3e{word-spacing:-18.504000px;}
.ws6f{word-spacing:-18.432000px;}
.ws94{word-spacing:-18.360000px;}
.ws8a{word-spacing:-18.290614px;}
.wse{word-spacing:-18.288000px;}
.ws10{word-spacing:-18.216000px;}
.ws3a{word-spacing:-18.144000px;}
.wse2{word-spacing:-18.072000px;}
.ws3c{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.928000px;}
.wsc3{word-spacing:-17.856000px;}
.ws9f{word-spacing:-17.784000px;}
.ws11{word-spacing:-17.712000px;}
.ws89{word-spacing:-17.640000px;}
.ws1e{word-spacing:-17.568000px;}
.ws3d{word-spacing:-17.496000px;}
.wsf{word-spacing:-17.424000px;}
.ws4{word-spacing:-17.352000px;}
.ws1d{word-spacing:-17.280000px;}
.ws8c{word-spacing:-17.228089px;}
.wsa0{word-spacing:-17.208000px;}
.ws5c{word-spacing:-17.064000px;}
.ws1c{word-spacing:-16.848000px;}
.ws1f{word-spacing:-16.776000px;}
.wseb{word-spacing:-16.560000px;}
.wsda{word-spacing:-16.128000px;}
.ws7a{word-spacing:-15.897600px;}
.wsc{word-spacing:-5.350574px;}
.wsba{word-spacing:-4.553680px;}
.ws9e{word-spacing:-2.580419px;}
.ws7e{word-spacing:-1.512000px;}
.ws9b{word-spacing:-1.440000px;}
.ws19{word-spacing:-1.296000px;}
.wsb9{word-spacing:-1.062525px;}
.ws4f{word-spacing:-1.008000px;}
.ws128{word-spacing:-0.936000px;}
.wsb{word-spacing:-0.796894px;}
.wsc9{word-spacing:-0.792000px;}
.ws69{word-spacing:-0.720000px;}
.ws14{word-spacing:-0.675360px;}
.wsc8{word-spacing:-0.648000px;}
.ws6{word-spacing:-0.596160px;}
.ws120{word-spacing:-0.576000px;}
.ws44{word-spacing:-0.504000px;}
.ws8{word-spacing:-0.466560px;}
.wsf7{word-spacing:-0.463680px;}
.wse0{word-spacing:-0.432000px;}
.ws73{word-spacing:-0.360000px;}
.ws23{word-spacing:-0.288000px;}
.ws12c{word-spacing:-0.216000px;}
.ws15{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
.ws88{word-spacing:0.066240px;}
.ws6a{word-spacing:0.072000px;}
.ws83{word-spacing:0.144000px;}
.ws9{word-spacing:0.155520px;}
.ws70{word-spacing:0.167040px;}
.ws121{word-spacing:0.216000px;}
.ws5a{word-spacing:0.360000px;}
.ws17{word-spacing:0.432000px;}
.ws8f{word-spacing:0.455368px;}
.wse1{word-spacing:0.504000px;}
.ws66{word-spacing:0.576000px;}
.ws3f{word-spacing:0.584640px;}
.ws7{word-spacing:0.648000px;}
.ws7b{word-spacing:0.668160px;}
.wsa{word-spacing:0.675360px;}
.ws29{word-spacing:0.720000px;}
.wsb3{word-spacing:0.792000px;}
.ws106{word-spacing:0.864000px;}
.ws127{word-spacing:0.918720px;}
.wsc4{word-spacing:0.936000px;}
.ws5f{word-spacing:1.080000px;}
.wsf4{word-spacing:1.126080px;}
.ws25{word-spacing:1.152000px;}
.wsca{word-spacing:1.224000px;}
.ws16{word-spacing:1.296000px;}
.wsf3{word-spacing:1.324800px;}
.ws18{word-spacing:1.368000px;}
.ws38{word-spacing:1.391040px;}
.ws71{word-spacing:1.419840px;}
.ws24{word-spacing:1.440000px;}
.wsbc{word-spacing:1.512000px;}
.ws10d{word-spacing:1.656000px;}
.wse4{word-spacing:1.728000px;}
.ws2a{word-spacing:1.800000px;}
.wsd{word-spacing:1.872000px;}
.ws11d{word-spacing:1.973261px;}
.wsb2{word-spacing:2.088000px;}
.ws79{word-spacing:2.160000px;}
.ws113{word-spacing:2.232000px;}
.ws8e{word-spacing:2.520000px;}
.ws62{word-spacing:2.592000px;}
.wscd{word-spacing:2.664000px;}
.ws42{word-spacing:2.808000px;}
.ws84{word-spacing:2.848320px;}
.ws31{word-spacing:2.880000px;}
.ws72{word-spacing:2.952000px;}
.ws6c{word-spacing:3.096000px;}
.ws45{word-spacing:3.312000px;}
.ws105{word-spacing:3.528000px;}
.ws47{word-spacing:3.600000px;}
.wsf6{word-spacing:3.643200px;}
.ws11b{word-spacing:3.672000px;}
.ws8d{word-spacing:3.960000px;}
.ws46{word-spacing:4.032000px;}
.wse3{word-spacing:4.104000px;}
.wsf5{word-spacing:4.173120px;}
.ws30{word-spacing:4.248000px;}
.ws32{word-spacing:4.320000px;}
.wsbd{word-spacing:4.392000px;}
.ws65{word-spacing:4.536000px;}
.ws11c{word-spacing:4.553680px;}
.wsf1{word-spacing:4.570560px;}
.wse5{word-spacing:4.608000px;}
.ws27{word-spacing:4.752000px;}
.ws9c{word-spacing:4.781364px;}
.wsc6{word-spacing:4.968000px;}
.wsc5{word-spacing:5.040000px;}
.wsfd{word-spacing:5.112000px;}
.ws37{word-spacing:5.232960px;}
.ws64{word-spacing:5.400000px;}
.ws63{word-spacing:5.472000px;}
.wsc0{word-spacing:5.544000px;}
.ws11f{word-spacing:5.616000px;}
.wsf2{word-spacing:5.630400px;}
.ws7d{word-spacing:5.688000px;}
.ws85{word-spacing:5.696640px;}
.ws21{word-spacing:5.760000px;}
.wsef{word-spacing:5.829120px;}
.ws4c{word-spacing:5.832000px;}
.wse7{word-spacing:5.904000px;}
.wsd5{word-spacing:5.976000px;}
.ws26{word-spacing:6.192000px;}
.ws12f{word-spacing:6.264000px;}
.wsc1{word-spacing:6.408000px;}
.ws117{word-spacing:6.480000px;}
.wsee{word-spacing:6.552000px;}
.wsb0{word-spacing:6.840000px;}
.ws4b{word-spacing:6.912000px;}
.wsf0{word-spacing:7.087680px;}
.ws22{word-spacing:7.128000px;}
.ws28{word-spacing:7.200000px;}
.ws97{word-spacing:7.272000px;}
.wscf{word-spacing:7.344000px;}
.ws132{word-spacing:7.416000px;}
.wsdf{word-spacing:7.488000px;}
.ws2c{word-spacing:7.632000px;}
.ws133{word-spacing:7.704000px;}
.ws124{word-spacing:7.848000px;}
.ws112{word-spacing:7.920000px;}
.ws125{word-spacing:8.280000px;}
.ws67{word-spacing:8.352000px;}
.ws104{word-spacing:8.424000px;}
.ws43{word-spacing:8.568000px;}
.ws87{word-spacing:8.611200px;}
.ws56{word-spacing:8.640000px;}
.wsdb{word-spacing:8.712000px;}
.ws11e{word-spacing:8.727886px;}
.wse8{word-spacing:8.784000px;}
.ws60{word-spacing:8.856000px;}
.ws59{word-spacing:9.072000px;}
.ws86{word-spacing:9.074880px;}
.ws103{word-spacing:9.288000px;}
.ws102{word-spacing:9.432000px;}
.wsea{word-spacing:9.504000px;}
.ws58{word-spacing:9.792000px;}
.wsdc{word-spacing:9.864000px;}
.ws12d{word-spacing:9.936000px;}
.ws57{word-spacing:10.008000px;}
.ws4a{word-spacing:10.080000px;}
.wsbf{word-spacing:10.152000px;}
.wsed{word-spacing:10.224000px;}
.ws61{word-spacing:10.512000px;}
.ws98{word-spacing:10.728000px;}
.ws6b{word-spacing:10.800000px;}
.ws114{word-spacing:11.160000px;}
.ws49{word-spacing:11.232000px;}
.ws48{word-spacing:11.448000px;}
.ws99{word-spacing:11.520000px;}
.ws52{word-spacing:11.592000px;}
.ws50{word-spacing:11.952000px;}
.ws10b{word-spacing:12.600000px;}
.ws96{word-spacing:12.672000px;}
.wsbe{word-spacing:12.744000px;}
.ws51{word-spacing:12.888000px;}
.ws7f{word-spacing:12.960000px;}
.wsd3{word-spacing:13.032000px;}
.ws35{word-spacing:13.049280px;}
.ws68{word-spacing:13.392000px;}
.ws7c{word-spacing:13.680000px;}
.ws36{word-spacing:13.910400px;}
.wsfe{word-spacing:14.040000px;}
.ws40{word-spacing:14.112000px;}
.ws41{word-spacing:14.328000px;}
.ws34{word-spacing:14.400000px;}
.wsa1{word-spacing:14.472000px;}
.wse6{word-spacing:14.544000px;}
.ws33{word-spacing:14.832000px;}
.ws109{word-spacing:15.192000px;}
.wsa2{word-spacing:15.480000px;}
.ws5b{word-spacing:15.552000px;}
.ws2f{word-spacing:15.768000px;}
.ws2e{word-spacing:15.840000px;}
.wsde{word-spacing:15.912000px;}
.wsc7{word-spacing:16.056000px;}
.wsb5{word-spacing:16.272000px;}
.ws131{word-spacing:16.344000px;}
.wsb4{word-spacing:16.560000px;}
.ws136{word-spacing:16.920000px;}
.wsdd{word-spacing:16.992000px;}
.ws90{word-spacing:17.136000px;}
.ws2d{word-spacing:17.208000px;}
.ws95{word-spacing:17.280000px;}
.wse9{word-spacing:17.352000px;}
.ws5d{word-spacing:17.712000px;}
.wsf9{word-spacing:17.928000px;}
.wsb6{word-spacing:18.360000px;}
.ws5e{word-spacing:18.432000px;}
.ws9a{word-spacing:18.648000px;}
.wsa4{word-spacing:18.720000px;}
.ws82{word-spacing:18.864000px;}
.wsa5{word-spacing:19.152000px;}
.ws12e{word-spacing:19.224000px;}
.ws116{word-spacing:19.800000px;}
.wsec{word-spacing:19.872000px;}
.wsa6{word-spacing:20.088000px;}
.wsa9{word-spacing:20.160000px;}
.wsc2{word-spacing:20.232000px;}
.ws91{word-spacing:20.592000px;}
.ws9d{word-spacing:21.312000px;}
.wsf8{word-spacing:21.528000px;}
.wsa7{word-spacing:21.600000px;}
.ws81{word-spacing:22.032000px;}
.wsad{word-spacing:22.248000px;}
.ws80{word-spacing:22.968000px;}
.wsd2{word-spacing:23.040000px;}
.ws10c{word-spacing:23.112000px;}
.wsac{word-spacing:23.472000px;}
.wsab{word-spacing:24.192000px;}
.wsd1{word-spacing:24.408000px;}
.ws92{word-spacing:24.480000px;}
.wsce{word-spacing:24.624000px;}
.ws10a{word-spacing:24.696000px;}
.ws93{word-spacing:24.912000px;}
.ws135{word-spacing:25.128000px;}
.wsfb{word-spacing:25.560000px;}
.wsfa{word-spacing:25.632000px;}
.wsaa{word-spacing:25.848000px;}
.ws78{word-spacing:25.920000px;}
.ws77{word-spacing:26.352000px;}
.wsfc{word-spacing:27.000000px;}
.wsbb{word-spacing:27.288000px;}
.wsd6{word-spacing:27.360000px;}
.wscc{word-spacing:27.432000px;}
.wsb1{word-spacing:27.504000px;}
.wsd0{word-spacing:27.792000px;}
.ws134{word-spacing:28.440000px;}
.ws55{word-spacing:28.512000px;}
.wscb{word-spacing:28.584000px;}
.ws53{word-spacing:28.728000px;}
.ws54{word-spacing:28.800000px;}
.ws108{word-spacing:29.232000px;}
.ws107{word-spacing:29.952000px;}
.ws115{word-spacing:32.112000px;}
.wsd4{word-spacing:32.832000px;}
.wsa8{word-spacing:33.048000px;}
.ws76{word-spacing:34.272000px;}
.ws75{word-spacing:34.488000px;}
.ws74{word-spacing:34.560000px;}
.wsa3{word-spacing:34.992000px;}
.ws12b{word-spacing:35.208000px;}
.ws123{word-spacing:35.712000px;}
.ws130{word-spacing:35.928000px;}
.ws101{word-spacing:36.432000px;}
.ws12a{word-spacing:36.504000px;}
.ws129{word-spacing:37.152000px;}
.wsff{word-spacing:37.368000px;}
.ws100{word-spacing:38.808000px;}
.ws118{word-spacing:38.880000px;}
.ws2b{word-spacing:40.320000px;}
.ws4e{word-spacing:43.632000px;}
.ws4d{word-spacing:44.568000px;}
.wsd7{word-spacing:44.712000px;}
.wsd8{word-spacing:46.080000px;}
.wsd9{word-spacing:47.232000px;}
.ws10f{word-spacing:47.448000px;}
.ws10e{word-spacing:47.592000px;}
.ws111{word-spacing:48.672000px;}
.ws110{word-spacing:48.888000px;}
.wsb8{word-spacing:59.760000px;}
.wsb7{word-spacing:60.408000px;}
._26{margin-left:-24.288768px;}
._c{margin-left:-15.768000px;}
._d{margin-left:-14.616000px;}
._f{margin-left:-11.304000px;}
._a{margin-left:-10.143784px;}
._e{margin-left:-8.496000px;}
._11{margin-left:-6.220800px;}
._8{margin-left:-4.995865px;}
._b{margin-left:-3.883115px;}
._10{margin-left:-2.764800px;}
._2{margin-left:-1.555200px;}
._1{width:1.296000px;}
._3{width:2.602368px;}
._6{width:3.711249px;}
._5{width:5.316421px;}
._4{width:6.488994px;}
._9{width:7.748845px;}
._7{width:8.765834px;}
._15{width:9.892800px;}
._14{width:11.468160px;}
._18{width:12.571200px;}
._24{width:13.968000px;}
._17{width:15.120000px;}
._1b{width:16.592832px;}
._1c{width:19.281600px;}
._19{width:22.612630px;}
._1f{width:24.278400px;}
._20{width:25.804800px;}
._16{width:27.248832px;}
._1d{width:28.368000px;}
._21{width:30.052800px;}
._1a{width:32.245632px;}
._23{width:33.336000px;}
._25{width:37.080000px;}
._13{width:41.515200px;}
._1e{width:46.396800px;}
._22{width:47.610432px;}
._12{width:846.000000px;}
._0{width:1211.132160px;}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(46,116,181);}
.fc2{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:41.760000px;}
.fs2{font-size:47.520000px;}
.fs5{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:75.894664px;}
.fs3{font-size:83.520000px;}
.fs7{font-size:96.480000px;}
.fs8{font-size:113.841996px;}
.fs9{font-size:119.520000px;}
.fs6{font-size:155.520000px;}
.fs4{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.960000px;}
.y1{bottom:78.120000px;}
.y194{bottom:111.960000px;}
.y122{bottom:115.560000px;}
.ya4{bottom:120.231360px;}
.y4b{bottom:120.237120px;}
.y1be{bottom:121.680000px;}
.yfc{bottom:124.200000px;}
.y1dc{bottom:126.000000px;}
.y135{bottom:131.040000px;}
.y17a{bottom:132.104160px;}
.y1c0{bottom:133.200000px;}
.y118{bottom:133.920000px;}
.y1aa{bottom:134.640000px;}
.y15d{bottom:136.800000px;}
.ycc{bottom:139.320000px;}
.y16{bottom:142.560000px;}
.y121{bottom:145.800000px;}
.y16f{bottom:146.520000px;}
.ya3{bottom:147.952800px;}
.y4a{bottom:147.958560px;}
.y13c{bottom:151.560000px;}
.y1bd{bottom:151.920000px;}
.y183{bottom:152.280000px;}
.y1db{bottom:156.240000px;}
.y179{bottom:159.825600px;}
.y134{bottom:161.280000px;}
.ydf{bottom:163.440000px;}
.yb1{bottom:164.160000px;}
.y1a9{bottom:164.880000px;}
.yfb{bottom:166.680000px;}
.y15c{bottom:167.040000px;}
.y69{bottom:168.480000px;}
.y1f9{bottom:168.483600px;}
.ycb{bottom:169.920000px;}
.y193{bottom:172.800000px;}
.ya2{bottom:175.674240px;}
.y120{bottom:176.400000px;}
.y16e{bottom:177.120000px;}
.y49{bottom:179.280000px;}
.y13b{bottom:181.800000px;}
.y1ae{bottom:182.520000px;}
.y15{bottom:185.040000px;}
.y1da{bottom:186.840000px;}
.y178{bottom:187.911360px;}
.y133{bottom:191.520000px;}
.yde{bottom:194.040000px;}
.y48{bottom:194.400000px;}
.yb0{bottom:194.760000px;}
.y200{bottom:195.480000px;}
.yfa{bottom:196.920000px;}
.y68{bottom:199.080000px;}
.y1f8{bottom:201.967920px;}
.y192{bottom:203.400000px;}
.y11f{bottom:206.640000px;}
.ya1{bottom:207.360000px;}
.y15b{bottom:209.520000px;}
.yca{bottom:212.400000px;}
.y1bc{bottom:212.760000px;}
.y1ad{bottom:213.120000px;}
.y177{bottom:215.632800px;}
.y145{bottom:218.520000px;}
.y16d{bottom:219.240000px;}
.ya0{bottom:222.480000px;}
.ydd{bottom:224.280000px;}
.y117{bottom:225.000000px;}
.yf9{bottom:227.160000px;}
.y14{bottom:227.520000px;}
.y67{bottom:229.320000px;}
.y1d9{bottom:231.480000px;}
.y132{bottom:234.000000px;}
.y1f7{bottom:235.800000px;}
.yaf{bottom:236.880000px;}
.y1a8{bottom:237.600000px;}
.y15a{bottom:239.760000px;}
.yc9{bottom:242.640000px;}
.y176{bottom:243.354240px;}
.y1ac{bottom:243.360000px;}
.y191{bottom:245.520000px;}
.y140{bottom:249.120000px;}
.y16c{bottom:249.840000px;}
.y1bf{bottom:254.520000px;}
.y116{bottom:255.240000px;}
.y1c3{bottom:261.720000px;}
.y1d8{bottom:262.080000px;}
.y47{bottom:262.440000px;}
.ydc{bottom:266.760000px;}
.yae{bottom:267.480000px;}
.y1a7{bottom:268.200000px;}
.y13{bottom:269.640000px;}
.y66{bottom:271.800000px;}
.yc8{bottom:272.880000px;}
.y1ab{bottom:273.600000px;}
.y175{bottom:275.040000px;}
.y131{bottom:276.480000px;}
.y1f6{bottom:278.640000px;}
.y11e{bottom:279.360000px;}
.y16b{bottom:280.080000px;}
.y159{bottom:282.240000px;}
.y17d{bottom:285.120000px;}
.y115{bottom:285.840000px;}
.y190{bottom:288.000000px;}
.y174{bottom:290.160000px;}
.y144{bottom:291.240000px;}
.y1d7{bottom:292.320000px;}
.y12{bottom:295.560000px;}
.ydb{bottom:297.000000px;}
.yad{bottom:297.720000px;}
.y1a6{bottom:298.440000px;}
.yf8{bottom:299.880000px;}
.y65{bottom:302.040000px;}
.yc7{bottom:303.480000px;}
.y1c2{bottom:304.200000px;}
.y46{bottom:304.560000px;}
.y130{bottom:306.720000px;}
.y1f5{bottom:308.880000px;}
.y11d{bottom:309.600000px;}
.y1ff{bottom:310.320000px;}
.y17c{bottom:315.360000px;}
.y114{bottom:316.080000px;}
.y18f{bottom:318.240000px;}
.y143{bottom:321.840000px;}
.y16a{bottom:322.560000px;}
.y158{bottom:324.720000px;}
.yda{bottom:327.240000px;}
.yac{bottom:327.960000px;}
.y11{bottom:328.320000px;}
.y2c{bottom:329.400000px;}
.yf7{bottom:330.480000px;}
.y9f{bottom:331.920000px;}
.y64{bottom:332.640000px;}
.yc6{bottom:333.720000px;}
.y12f{bottom:336.960000px;}
.y1f4{bottom:339.480000px;}
.y13f{bottom:340.200000px;}
.y1a5{bottom:340.920000px;}
.y13a{bottom:345.600000px;}
.y113{bottom:346.320000px;}
.y45{bottom:347.040000px;}
.y11c{bottom:352.080000px;}
.y169{bottom:352.800000px;}
.y157{bottom:354.960000px;}
.yd9{bottom:357.840000px;}
.yab{bottom:358.560000px;}
.yf6{bottom:360.720000px;}
.y10{bottom:361.789920px;}
.y9e{bottom:362.520000px;}
.y63{bottom:362.880000px;}
.yc5{bottom:363.960000px;}
.y1d6{bottom:365.040000px;}
.y80{bottom:370.080000px;}
.y13e{bottom:370.440000px;}
.y1a4{bottom:371.160000px;}
.y2b{bottom:371.880000px;}
.y1f3{bottom:372.960000px;}
.y139{bottom:376.200000px;}
.y1bb{bottom:376.560000px;}
.y112{bottom:376.920000px;}
.y44{bottom:377.280000px;}
.y12e{bottom:379.440000px;}
.y11b{bottom:382.320000px;}
.y1fe{bottom:383.400000px;}
.y156{bottom:385.560000px;}
.yd8{bottom:388.080000px;}
.y182{bottom:388.800000px;}
.yf5{bottom:390.960000px;}
.yf{bottom:392.760000px;}
.yc4{bottom:394.560000px;}
.y1f2{bottom:394.920000px;}
.y168{bottom:395.280000px;}
.y1d5{bottom:395.640000px;}
.yaa{bottom:401.040000px;}
.y1a3{bottom:401.760000px;}
.y9d{bottom:404.640000px;}
.y62{bottom:405.360000px;}
.y138{bottom:406.440000px;}
.y111{bottom:407.160000px;}
.y2a{bottom:410.040000px;}
.y7f{bottom:412.920000px;}
.y1fd{bottom:413.640000px;}
.y155{bottom:415.800000px;}
.yd7{bottom:418.320000px;}
.y181{bottom:419.400000px;}
.y43{bottom:419.760000px;}
.yf4{bottom:421.560000px;}
.yc3{bottom:424.800000px;}
.ye{bottom:425.160000px;}
.y167{bottom:425.520000px;}
.y1d4{bottom:425.880000px;}
.y1f1{bottom:428.400000px;}
.ya9{bottom:431.280000px;}
.y9c{bottom:435.240000px;}
.y61{bottom:435.600000px;}
.y137{bottom:437.040000px;}
.y1ba{bottom:437.400000px;}
.y12d{bottom:440.280000px;}
.y7e{bottom:443.160000px;}
.y1a2{bottom:443.880000px;}
.y154{bottom:446.040000px;}
.y29{bottom:447.840000px;}
.yd6{bottom:448.920000px;}
.y110{bottom:449.640000px;}
.y42{bottom:450.360000px;}
.yf3{bottom:451.800000px;}
.y142{bottom:455.400000px;}
.y1fc{bottom:456.120000px;}
.yd{bottom:458.640000px;}
.y173{bottom:461.520000px;}
.y60{bottom:465.840000px;}
.yc2{bottom:467.280000px;}
.y166{bottom:468.000000px;}
.y1d3{bottom:468.360000px;}
.y9b{bottom:468.720000px;}
.y1f0{bottom:471.240000px;}
.y92{bottom:471.960000px;}
.y7d{bottom:473.760000px;}
.y1a1{bottom:474.480000px;}
.yd5{bottom:479.160000px;}
.y10f{bottom:479.880000px;}
.y41{bottom:480.600000px;}
.yf2{bottom:482.400000px;}
.y12c{bottom:482.760000px;}
.y28{bottom:485.640000px;}
.y1fb{bottom:486.360000px;}
.y153{bottom:488.520000px;}
.y172{bottom:492.120000px;}
.yc1{bottom:497.520000px;}
.y1b9{bottom:498.240000px;}
.y1d2{bottom:498.600000px;}
.y1ef{bottom:501.480000px;}
.y7c{bottom:504.000000px;}
.y1a0{bottom:504.720000px;}
.y5f{bottom:508.320000px;}
.yc{bottom:508.680000px;}
.yd4{bottom:509.760000px;}
.y10e{bottom:510.480000px;}
.y40{bottom:510.840000px;}
.yf1{bottom:512.640000px;}
.y12b{bottom:513.000000px;}
.y91{bottom:514.800000px;}
.y13d{bottom:515.880000px;}
.y152{bottom:518.760000px;}
.y171{bottom:522.360000px;}
.y27{bottom:523.440000px;}
.yc0{bottom:528.120000px;}
.y1b8{bottom:528.480000px;}
.y1fa{bottom:528.840000px;}
.y7b{bottom:534.240000px;}
.y19f{bottom:534.960000px;}
.y5e{bottom:538.560000px;}
.yd3{bottom:540.000000px;}
.y10d{bottom:540.720000px;}
.y1d1{bottom:541.080000px;}
.y3f{bottom:541.440000px;}
.y18e{bottom:542.880000px;}
.y1ee{bottom:543.960000px;}
.y90{bottom:545.040000px;}
.y12a{bottom:546.480000px;}
.yb{bottom:551.160000px;}
.y170{bottom:552.600000px;}
.yf0{bottom:555.120000px;}
.y136{bottom:558.360000px;}
.y1b7{bottom:559.080000px;}
.y26{bottom:561.240000px;}
.y7a{bottom:564.840000px;}
.y5d{bottom:569.160000px;}
.ybf{bottom:570.240000px;}
.y10c{bottom:570.960000px;}
.y1d0{bottom:571.320000px;}
.y3e{bottom:571.680000px;}
.y1ed{bottom:574.200000px;}
.y8f{bottom:575.640000px;}
.ya8{bottom:576.720000px;}
.y19e{bottom:577.440000px;}
.y165{bottom:583.200000px;}
.yef{bottom:585.360000px;}
.y129{bottom:588.600000px;}
.y151{bottom:591.480000px;}
.y79{bottom:595.080000px;}
.y25{bottom:599.400000px;}
.ybe{bottom:600.840000px;}
.y1b6{bottom:601.200000px;}
.y10b{bottom:601.560000px;}
.y3d{bottom:601.920000px;}
.y8e{bottom:605.880000px;}
.ya7{bottom:606.960000px;}
.ya{bottom:608.028480px;}
.y5c{bottom:611.640000px;}
.y164{bottom:613.440000px;}
.yee{bottom:615.600000px;}
.y1ec{bottom:616.680000px;}
.y128{bottom:619.200000px;}
.y19d{bottom:619.920000px;}
.y150{bottom:622.080000px;}
.y180{bottom:625.320000px;}
.ybd{bottom:631.080000px;}
.y10a{bottom:631.800000px;}
.y1cf{bottom:632.160000px;}
.y3c{bottom:632.520000px;}
.y8d{bottom:636.120000px;}
.y24{bottom:637.200000px;}
.y78{bottom:637.560000px;}
.y5b{bottom:641.880000px;}
.yed{bottom:646.200000px;}
.y1eb{bottom:646.920000px;}
.y127{bottom:649.440000px;}
.y14f{bottom:652.320000px;}
.y163{bottom:655.920000px;}
.yd2{bottom:661.320000px;}
.y1b5{bottom:662.040000px;}
.y109{bottom:662.400000px;}
.y3b{bottom:662.760000px;}
.y8c{bottom:666.720000px;}
.y77{bottom:667.800000px;}
.y5a{bottom:672.120000px;}
.ybc{bottom:673.560000px;}
.y9{bottom:674.280000px;}
.y1ce{bottom:674.640000px;}
.y23{bottom:675.000000px;}
.yec{bottom:676.440000px;}
.y126{bottom:680.040000px;}
.y14e{bottom:682.920000px;}
.y162{bottom:686.160000px;}
.y1ea{bottom:689.400000px;}
.yd1{bottom:691.920000px;}
.y108{bottom:692.640000px;}
.y9a{bottom:693.360000px;}
.y8b{bottom:696.960000px;}
.y76{bottom:698.400000px;}
.ybb{bottom:703.800000px;}
.y19c{bottom:704.520000px;}
.y1cd{bottom:704.880000px;}
.y3a{bottom:705.240000px;}
.yeb{bottom:707.040000px;}
.y125{bottom:710.280000px;}
.y22{bottom:712.800000px;}
.y59{bottom:714.600000px;}
.y161{bottom:716.760000px;}
.yd0{bottom:722.160000px;}
.y1b4{bottom:722.880000px;}
.y99{bottom:723.600000px;}
.y14d{bottom:725.040000px;}
.y8a{bottom:727.560000px;}
.y11a{bottom:728.640000px;}
.y8{bottom:731.880000px;}
.yba{bottom:734.400000px;}
.y107{bottom:735.120000px;}
.yea{bottom:737.280000px;}
.y75{bottom:740.520000px;}
.y58{bottom:744.840000px;}
.y17f{bottom:747.000000px;}
.y1cc{bottom:747.360000px;}
.y39{bottom:747.720000px;}
.y21{bottom:750.600000px;}
.ycf{bottom:752.760000px;}
.y1e9{bottom:753.480000px;}
.y14c{bottom:755.640000px;}
.y89{bottom:757.800000px;}
.y160{bottom:758.880000px;}
.yb9{bottom:764.640000px;}
.y106{bottom:765.360000px;}
.y98{bottom:766.080000px;}
.ye9{bottom:767.520000px;}
.y74{bottom:771.120000px;}
.y57{bottom:775.440000px;}
.y19b{bottom:777.240000px;}
.y1cb{bottom:777.600000px;}
.y38{bottom:777.960000px;}
.y18d{bottom:779.760000px;}
.y124{bottom:783.000000px;}
.y1e8{bottom:786.960000px;}
.y88{bottom:788.040000px;}
.y20{bottom:788.760000px;}
.y15f{bottom:789.480000px;}
.yb8{bottom:794.880000px;}
.y105{bottom:795.600000px;}
.y97{bottom:796.320000px;}
.y14b{bottom:797.760000px;}
.ye8{bottom:798.120000px;}
.y7{bottom:801.360000px;}
.y56{bottom:805.680000px;}
.y18c{bottom:810.000000px;}
.y123{bottom:813.240000px;}
.y87{bottom:818.640000px;}
.y17e{bottom:819.720000px;}
.y1ca{bottom:820.080000px;}
.y37{bottom:820.440000px;}
.yb7{bottom:825.480000px;}
.y1b3{bottom:825.840000px;}
.y104{bottom:826.200000px;}
.y1f{bottom:826.560000px;}
.ye7{bottom:828.360000px;}
.y1e7{bottom:829.800000px;}
.y119{bottom:831.600000px;}
.y55{bottom:836.280000px;}
.y73{bottom:843.840000px;}
.y86{bottom:848.880000px;}
.y19a{bottom:849.960000px;}
.y36{bottom:850.680000px;}
.y18b{bottom:852.480000px;}
.yb6{bottom:855.720000px;}
.y103{bottom:856.440000px;}
.y96{bottom:857.160000px;}
.ye6{bottom:858.600000px;}
.y1e6{bottom:860.040000px;}
.y15e{bottom:862.200000px;}
.y1e{bottom:864.360000px;}
.y1b2{bottom:868.320000px;}
.y72{bottom:874.080000px;}
.y6{bottom:877.680000px;}
.y54{bottom:878.400000px;}
.y85{bottom:879.120000px;}
.y199{bottom:880.560000px;}
.y35{bottom:880.920000px;}
.y18a{bottom:882.720000px;}
.yb5{bottom:885.960000px;}
.y102{bottom:887.040000px;}
.y95{bottom:887.400000px;}
.ye5{bottom:889.200000px;}
.y1e5{bottom:890.280000px;}
.y1c1{bottom:892.440000px;}
.y1c9{bottom:892.800000px;}
.y1b1{bottom:898.560000px;}
.y14a{bottom:901.080000px;}
.y1d{bottom:902.160000px;}
.y71{bottom:904.320000px;}
.y53{bottom:909.000000px;}
.y84{bottom:909.720000px;}
.y34{bottom:911.520000px;}
.y189{bottom:912.960000px;}
.yb4{bottom:916.560000px;}
.y5{bottom:918.005760px;}
.y1e4{bottom:920.880000px;}
.y198{bottom:923.040000px;}
.y101{bottom:929.160000px;}
.y94{bottom:929.880000px;}
.y149{bottom:931.320000px;}
.ye4{bottom:931.680000px;}
.ya6{bottom:934.920000px;}
.y52{bottom:939.240000px;}
.y83{bottom:939.960000px;}
.y1c{bottom:940.320000px;}
.y33{bottom:941.760000px;}
.y188{bottom:943.560000px;}
.y70{bottom:946.800000px;}
.y1e3{bottom:951.120000px;}
.y4{bottom:951.840000px;}
.y197{bottom:953.280000px;}
.yce{bottom:959.040000px;}
.y1b0{bottom:959.400000px;}
.y93{bottom:960.120000px;}
.ye3{bottom:961.920000px;}
.y141{bottom:965.160000px;}
.y1c8{bottom:965.520000px;}
.y51{bottom:969.480000px;}
.y82{bottom:970.560000px;}
.y100{bottom:971.640000px;}
.y32{bottom:972.360000px;}
.y148{bottom:973.800000px;}
.y6f{bottom:977.400000px;}
.y1b{bottom:978.120000px;}
.y196{bottom:983.520000px;}
.y1e2{bottom:984.240000px;}
.y3{bottom:985.684320px;}
.ycd{bottom:989.280000px;}
.y81{bottom:990.720000px;}
.y1af{bottom:992.880000px;}
.y17b{bottom:995.760000px;}
.y50{bottom:1000.080000px;}
.y31{bottom:1002.600000px;}
.y147{bottom:1004.040000px;}
.ye2{bottom:1004.400000px;}
.y6e{bottom:1007.640000px;}
.y1c7{bottom:1008.000000px;}
.y1a{bottom:1008.360000px;}
.yff{bottom:1014.120000px;}
.y1e1{bottom:1014.480000px;}
.y187{bottom:1016.280000px;}
.yb3{bottom:1019.520000px;}
.y195{bottom:1026.000000px;}
.y4f{bottom:1030.320000px;}
.y30{bottom:1032.840000px;}
.ye1{bottom:1034.640000px;}
.y146{bottom:1037.520000px;}
.y6d{bottom:1037.880000px;}
.y1c6{bottom:1041.120000px;}
.y1e0{bottom:1044.720000px;}
.y186{bottom:1046.520000px;}
.yb2{bottom:1050.120000px;}
.yfe{bottom:1056.240000px;}
.y19{bottom:1056.600000px;}
.y4e{bottom:1060.560000px;}
.y2f{bottom:1063.440000px;}
.ye0{bottom:1068.120000px;}
.y6c{bottom:1068.480000px;}
.y1c5{bottom:1072.080000px;}
.y185{bottom:1077.120000px;}
.y1df{bottom:1077.840000px;}
.ya5{bottom:1080.360000px;}
.y18{bottom:1085.762160px;}
.yfd{bottom:1098.720000px;}
.y4d{bottom:1103.040000px;}
.y1c4{bottom:1105.200000px;}
.y2e{bottom:1105.560000px;}
.y1de{bottom:1108.080000px;}
.y184{bottom:1110.240000px;}
.y6b{bottom:1110.600000px;}
.y17{bottom:1131.120000px;}
.y4c{bottom:1135.800000px;}
.y2d{bottom:1138.320000px;}
.y1dd{bottom:1138.680000px;}
.y6a{bottom:1141.200000px;}
.h4{height:31.672266px;}
.hf{height:41.037187px;}
.h3{height:44.149219px;}
.h16{height:46.122187px;}
.h14{height:50.132812px;}
.h7{height:50.616563px;}
.h10{height:55.437187px;}
.h2{height:60.257812px;}
.hc{height:60.328125px;}
.he{height:62.309531px;}
.h15{height:63.078750px;}
.h13{height:63.517311px;}
.h5{height:69.899062px;}
.h12{height:75.093750px;}
.h9{height:80.745469px;}
.hd{height:87.108750px;}
.ha{height:95.275967px;}
.hb{height:100.144687px;}
.h11{height:100.625625px;}
.h8{height:130.308750px;}
.h6{height:180.984375px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2{left:127.440000px;}
.xf{left:128.878560px;}
.x1f{left:135.000000px;}
.x10{left:144.000000px;}
.x11{left:154.440000px;}
.x6{left:171.360000px;}
.x17{left:178.920000px;}
.x13{left:180.720000px;}
.x12{left:208.440000px;}
.x7{left:215.644320px;}
.x18{left:217.440000px;}
.x21{left:218.880000px;}
.x5{left:221.040000px;}
.x24{left:234.720000px;}
.xb{left:259.560000px;}
.x14{left:271.800000px;}
.x1a{left:287.280000px;}
.x19{left:306.000000px;}
.x15{left:322.920000px;}
.xd{left:333.000000px;}
.x9{left:334.800000px;}
.xc{left:336.240000px;}
.x8{left:372.600000px;}
.xa{left:383.036760px;}
.x1b{left:385.560000px;}
.x20{left:437.760000px;}
.x1{left:442.080000px;}
.x4{left:446.400000px;}
.x22{left:448.200000px;}
.x3{left:449.647920px;}
.x23{left:544.320000px;}
.x1c{left:615.960000px;}
.x1d{left:698.040000px;}
.x16{left:702.000000px;}
.x1e{left:765.360000px;}
.xe{left:768.955680px;}
@media print{
.v2{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls82{letter-spacing:-1.856000pt;}
.ls5d{letter-spacing:-1.664000pt;}
.ls28{letter-spacing:-1.600000pt;}
.ls5a{letter-spacing:-1.551624pt;}
.ls78{letter-spacing:-1.408000pt;}
.ls70{letter-spacing:-1.344000pt;}
.ls71{letter-spacing:-1.280000pt;}
.ls3b{letter-spacing:-1.216000pt;}
.ls29{letter-spacing:-1.088000pt;}
.lsc{letter-spacing:-1.024000pt;}
.ls52{letter-spacing:-1.000960pt;}
.ls73{letter-spacing:-0.896000pt;}
.ls41{letter-spacing:-0.832000pt;}
.ls84{letter-spacing:-0.768000pt;}
.ls63{letter-spacing:-0.704000pt;}
.ls27{letter-spacing:-0.640000pt;}
.ls57{letter-spacing:-0.607157pt;}
.ls17{letter-spacing:-0.600320pt;}
.ls4b{letter-spacing:-0.593920pt;}
.ls2c{letter-spacing:-0.588800pt;}
.ls3{letter-spacing:-0.576000pt;}
.ls7{letter-spacing:-0.552960pt;}
.ls7a{letter-spacing:-0.529920pt;}
.ls38{letter-spacing:-0.514560pt;}
.ls19{letter-spacing:-0.512000pt;}
.ls3c{letter-spacing:-0.448000pt;}
.ls26{letter-spacing:-0.384000pt;}
.ls91{letter-spacing:-0.371200pt;}
.ls7c{letter-spacing:-0.353280pt;}
.ls3d{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.257280pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls4a{letter-spacing:-0.222720pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls2b{letter-spacing:-0.176640pt;}
.ls25{letter-spacing:-0.148480pt;}
.ls6{letter-spacing:-0.138240pt;}
.ls6c{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.064000pt;}
.ls7d{letter-spacing:-0.058880pt;}
.ls2{letter-spacing:0.000000pt;}
.ls53{letter-spacing:0.038400pt;}
.ls12{letter-spacing:0.064000pt;}
.ls24{letter-spacing:0.074240pt;}
.ls3a{letter-spacing:0.128000pt;}
.ls39{letter-spacing:0.148480pt;}
.lsd{letter-spacing:0.168960pt;}
.ls89{letter-spacing:0.185600pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls6a{letter-spacing:0.198400pt;}
.ls18{letter-spacing:0.256000pt;}
.ls30{letter-spacing:0.320000pt;}
.ls44{letter-spacing:0.384000pt;}
.ls7b{letter-spacing:0.412160pt;}
.ls5{letter-spacing:0.414720pt;}
.ls22{letter-spacing:0.448000pt;}
.ls5e{letter-spacing:0.472233pt;}
.ls1f{letter-spacing:0.510720pt;}
.ls1c{letter-spacing:0.512000pt;}
.ls86{letter-spacing:0.518400pt;}
.ls0{letter-spacing:0.576000pt;}
.ls2a{letter-spacing:0.588800pt;}
.ls16{letter-spacing:0.600320pt;}
.lse{letter-spacing:0.631040pt;}
.ls3e{letter-spacing:0.633600pt;}
.ls15{letter-spacing:0.640000pt;}
.ls77{letter-spacing:0.646400pt;}
.ls50{letter-spacing:0.647680pt;}
.ls59{letter-spacing:0.674619pt;}
.ls67{letter-spacing:0.704000pt;}
.ls1{letter-spacing:0.774144pt;}
.ls9{letter-spacing:1.011929pt;}
.lsa{letter-spacing:1.315508pt;}
.ls51{letter-spacing:1.344000pt;}
.ls20{letter-spacing:1.920000pt;}
.ls6d{letter-spacing:1.932800pt;}
.ls4f{letter-spacing:1.937152pt;}
.ls4e{letter-spacing:1.943040pt;}
.ls8d{letter-spacing:2.023858pt;}
.ls58{letter-spacing:2.968325pt;}
.ls21{letter-spacing:3.200000pt;}
.ls69{letter-spacing:3.373096pt;}
.ls8f{letter-spacing:3.440558pt;}
.ls90{letter-spacing:3.710406pt;}
.ls7e{letter-spacing:4.467200pt;}
.ls7f{letter-spacing:4.473600pt;}
.ls79{letter-spacing:4.474880pt;}
.ls40{letter-spacing:4.480000pt;}
.ls3f{letter-spacing:4.486400pt;}
.ls8e{letter-spacing:4.722335pt;}
.lsb{letter-spacing:5.059644pt;}
.ls2e{letter-spacing:5.760000pt;}
.ls32{letter-spacing:7.027200pt;}
.ls2f{letter-spacing:7.040000pt;}
.ls8a{letter-spacing:8.307200pt;}
.ls5c{letter-spacing:8.313600pt;}
.ls36{letter-spacing:8.320000pt;}
.ls8c{letter-spacing:8.326400pt;}
.ls2d{letter-spacing:9.468160pt;}
.ls95{letter-spacing:9.593600pt;}
.ls31{letter-spacing:9.600000pt;}
.ls34{letter-spacing:10.880000pt;}
.ls6b{letter-spacing:12.160000pt;}
.ls23{letter-spacing:12.188160pt;}
.ls5f{letter-spacing:13.433600pt;}
.ls37{letter-spacing:13.440000pt;}
.ls54{letter-spacing:14.720000pt;}
.ls5b{letter-spacing:16.000000pt;}
.ls88{letter-spacing:17.280000pt;}
.ls85{letter-spacing:17.292800pt;}
.ls55{letter-spacing:18.560000pt;}
.ls62{letter-spacing:19.840000pt;}
.ls42{letter-spacing:20.341760pt;}
.ls61{letter-spacing:21.120000pt;}
.ls56{letter-spacing:22.400000pt;}
.ls80{letter-spacing:23.680000pt;}
.ls35{letter-spacing:24.960000pt;}
.ls83{letter-spacing:26.240000pt;}
.ls1e{letter-spacing:26.726400pt;}
.ls60{letter-spacing:28.800000pt;}
.ls46{letter-spacing:30.080000pt;}
.ls81{letter-spacing:32.640000pt;}
.ls8b{letter-spacing:33.920000pt;}
.ls6f{letter-spacing:34.688000pt;}
.ls33{letter-spacing:39.040000pt;}
.ls92{letter-spacing:39.808000pt;}
.ls87{letter-spacing:42.880000pt;}
.ls93{letter-spacing:43.648000pt;}
.ls66{letter-spacing:51.840000pt;}
.ls65{letter-spacing:53.120000pt;}
.ls10{letter-spacing:55.680000pt;}
.ls68{letter-spacing:56.755200pt;}
.ls72{letter-spacing:57.728000pt;}
.lsf{letter-spacing:59.520000pt;}
.ls13{letter-spacing:65.920000pt;}
.ls75{letter-spacing:69.760000pt;}
.ls11{letter-spacing:71.040000pt;}
.ls94{letter-spacing:80.768000pt;}
.ls6e{letter-spacing:82.048000pt;}
.ls14{letter-spacing:82.560000pt;}
.ls4c{letter-spacing:85.888000pt;}
.ls76{letter-spacing:89.728000pt;}
.ls47{letter-spacing:92.288000pt;}
.ls48{letter-spacing:93.568000pt;}
.ls96{letter-spacing:97.408000pt;}
.ls64{letter-spacing:106.368000pt;}
.ls45{letter-spacing:115.328000pt;}
.ls49{letter-spacing:116.608000pt;}
.ls4d{letter-spacing:131.968000pt;}
.ls43{letter-spacing:137.088000pt;}
.ls74{letter-spacing:172.160000pt;}
.ws126{word-spacing:-64.000000pt;}
.wsaf{word-spacing:-53.760000pt;}
.ws0{word-spacing:-48.000000pt;}
.ws1{word-spacing:-47.808000pt;}
.ws2{word-spacing:-34.007040pt;}
.ws3{word-spacing:-26.613729pt;}
.ws39{word-spacing:-20.925440pt;}
.ws11a{word-spacing:-20.306039pt;}
.ws1a{word-spacing:-18.634240pt;}
.ws6e{word-spacing:-18.560000pt;}
.ws1b{word-spacing:-18.411520pt;}
.ws6d{word-spacing:-18.337280pt;}
.ws122{word-spacing:-18.188800pt;}
.ws8b{word-spacing:-17.540100pt;}
.ws119{word-spacing:-17.337714pt;}
.wsae{word-spacing:-16.704000pt;}
.ws20{word-spacing:-16.640000pt;}
.ws3b{word-spacing:-16.576000pt;}
.ws13{word-spacing:-16.512000pt;}
.ws3e{word-spacing:-16.448000pt;}
.ws6f{word-spacing:-16.384000pt;}
.ws94{word-spacing:-16.320000pt;}
.ws8a{word-spacing:-16.258324pt;}
.wse{word-spacing:-16.256000pt;}
.ws10{word-spacing:-16.192000pt;}
.ws3a{word-spacing:-16.128000pt;}
.wse2{word-spacing:-16.064000pt;}
.ws3c{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.936000pt;}
.wsc3{word-spacing:-15.872000pt;}
.ws9f{word-spacing:-15.808000pt;}
.ws11{word-spacing:-15.744000pt;}
.ws89{word-spacing:-15.680000pt;}
.ws1e{word-spacing:-15.616000pt;}
.ws3d{word-spacing:-15.552000pt;}
.wsf{word-spacing:-15.488000pt;}
.ws4{word-spacing:-15.424000pt;}
.ws1d{word-spacing:-15.360000pt;}
.ws8c{word-spacing:-15.313857pt;}
.wsa0{word-spacing:-15.296000pt;}
.ws5c{word-spacing:-15.168000pt;}
.ws1c{word-spacing:-14.976000pt;}
.ws1f{word-spacing:-14.912000pt;}
.wseb{word-spacing:-14.720000pt;}
.wsda{word-spacing:-14.336000pt;}
.ws7a{word-spacing:-14.131200pt;}
.wsc{word-spacing:-4.756066pt;}
.wsba{word-spacing:-4.047715pt;}
.ws9e{word-spacing:-2.293705pt;}
.ws7e{word-spacing:-1.344000pt;}
.ws9b{word-spacing:-1.280000pt;}
.ws19{word-spacing:-1.152000pt;}
.wsb9{word-spacing:-0.944467pt;}
.ws4f{word-spacing:-0.896000pt;}
.ws128{word-spacing:-0.832000pt;}
.wsb{word-spacing:-0.708350pt;}
.wsc9{word-spacing:-0.704000pt;}
.ws69{word-spacing:-0.640000pt;}
.ws14{word-spacing:-0.600320pt;}
.wsc8{word-spacing:-0.576000pt;}
.ws6{word-spacing:-0.529920pt;}
.ws120{word-spacing:-0.512000pt;}
.ws44{word-spacing:-0.448000pt;}
.ws8{word-spacing:-0.414720pt;}
.wsf7{word-spacing:-0.412160pt;}
.wse0{word-spacing:-0.384000pt;}
.ws73{word-spacing:-0.320000pt;}
.ws23{word-spacing:-0.256000pt;}
.ws12c{word-spacing:-0.192000pt;}
.ws15{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
.ws88{word-spacing:0.058880pt;}
.ws6a{word-spacing:0.064000pt;}
.ws83{word-spacing:0.128000pt;}
.ws9{word-spacing:0.138240pt;}
.ws70{word-spacing:0.148480pt;}
.ws121{word-spacing:0.192000pt;}
.ws5a{word-spacing:0.320000pt;}
.ws17{word-spacing:0.384000pt;}
.ws8f{word-spacing:0.404772pt;}
.wse1{word-spacing:0.448000pt;}
.ws66{word-spacing:0.512000pt;}
.ws3f{word-spacing:0.519680pt;}
.ws7{word-spacing:0.576000pt;}
.ws7b{word-spacing:0.593920pt;}
.wsa{word-spacing:0.600320pt;}
.ws29{word-spacing:0.640000pt;}
.wsb3{word-spacing:0.704000pt;}
.ws106{word-spacing:0.768000pt;}
.ws127{word-spacing:0.816640pt;}
.wsc4{word-spacing:0.832000pt;}
.ws5f{word-spacing:0.960000pt;}
.wsf4{word-spacing:1.000960pt;}
.ws25{word-spacing:1.024000pt;}
.wsca{word-spacing:1.088000pt;}
.ws16{word-spacing:1.152000pt;}
.wsf3{word-spacing:1.177600pt;}
.ws18{word-spacing:1.216000pt;}
.ws38{word-spacing:1.236480pt;}
.ws71{word-spacing:1.262080pt;}
.ws24{word-spacing:1.280000pt;}
.wsbc{word-spacing:1.344000pt;}
.ws10d{word-spacing:1.472000pt;}
.wse4{word-spacing:1.536000pt;}
.ws2a{word-spacing:1.600000pt;}
.wsd{word-spacing:1.664000pt;}
.ws11d{word-spacing:1.754010pt;}
.wsb2{word-spacing:1.856000pt;}
.ws79{word-spacing:1.920000pt;}
.ws113{word-spacing:1.984000pt;}
.ws8e{word-spacing:2.240000pt;}
.ws62{word-spacing:2.304000pt;}
.wscd{word-spacing:2.368000pt;}
.ws42{word-spacing:2.496000pt;}
.ws84{word-spacing:2.531840pt;}
.ws31{word-spacing:2.560000pt;}
.ws72{word-spacing:2.624000pt;}
.ws6c{word-spacing:2.752000pt;}
.ws45{word-spacing:2.944000pt;}
.ws105{word-spacing:3.136000pt;}
.ws47{word-spacing:3.200000pt;}
.wsf6{word-spacing:3.238400pt;}
.ws11b{word-spacing:3.264000pt;}
.ws8d{word-spacing:3.520000pt;}
.ws46{word-spacing:3.584000pt;}
.wse3{word-spacing:3.648000pt;}
.wsf5{word-spacing:3.709440pt;}
.ws30{word-spacing:3.776000pt;}
.ws32{word-spacing:3.840000pt;}
.wsbd{word-spacing:3.904000pt;}
.ws65{word-spacing:4.032000pt;}
.ws11c{word-spacing:4.047715pt;}
.wsf1{word-spacing:4.062720pt;}
.wse5{word-spacing:4.096000pt;}
.ws27{word-spacing:4.224000pt;}
.ws9c{word-spacing:4.250101pt;}
.wsc6{word-spacing:4.416000pt;}
.wsc5{word-spacing:4.480000pt;}
.wsfd{word-spacing:4.544000pt;}
.ws37{word-spacing:4.651520pt;}
.ws64{word-spacing:4.800000pt;}
.ws63{word-spacing:4.864000pt;}
.wsc0{word-spacing:4.928000pt;}
.ws11f{word-spacing:4.992000pt;}
.wsf2{word-spacing:5.004800pt;}
.ws7d{word-spacing:5.056000pt;}
.ws85{word-spacing:5.063680pt;}
.ws21{word-spacing:5.120000pt;}
.wsef{word-spacing:5.181440pt;}
.ws4c{word-spacing:5.184000pt;}
.wse7{word-spacing:5.248000pt;}
.wsd5{word-spacing:5.312000pt;}
.ws26{word-spacing:5.504000pt;}
.ws12f{word-spacing:5.568000pt;}
.wsc1{word-spacing:5.696000pt;}
.ws117{word-spacing:5.760000pt;}
.wsee{word-spacing:5.824000pt;}
.wsb0{word-spacing:6.080000pt;}
.ws4b{word-spacing:6.144000pt;}
.wsf0{word-spacing:6.300160pt;}
.ws22{word-spacing:6.336000pt;}
.ws28{word-spacing:6.400000pt;}
.ws97{word-spacing:6.464000pt;}
.wscf{word-spacing:6.528000pt;}
.ws132{word-spacing:6.592000pt;}
.wsdf{word-spacing:6.656000pt;}
.ws2c{word-spacing:6.784000pt;}
.ws133{word-spacing:6.848000pt;}
.ws124{word-spacing:6.976000pt;}
.ws112{word-spacing:7.040000pt;}
.ws125{word-spacing:7.360000pt;}
.ws67{word-spacing:7.424000pt;}
.ws104{word-spacing:7.488000pt;}
.ws43{word-spacing:7.616000pt;}
.ws87{word-spacing:7.654400pt;}
.ws56{word-spacing:7.680000pt;}
.wsdb{word-spacing:7.744000pt;}
.ws11e{word-spacing:7.758121pt;}
.wse8{word-spacing:7.808000pt;}
.ws60{word-spacing:7.872000pt;}
.ws59{word-spacing:8.064000pt;}
.ws86{word-spacing:8.066560pt;}
.ws103{word-spacing:8.256000pt;}
.ws102{word-spacing:8.384000pt;}
.wsea{word-spacing:8.448000pt;}
.ws58{word-spacing:8.704000pt;}
.wsdc{word-spacing:8.768000pt;}
.ws12d{word-spacing:8.832000pt;}
.ws57{word-spacing:8.896000pt;}
.ws4a{word-spacing:8.960000pt;}
.wsbf{word-spacing:9.024000pt;}
.wsed{word-spacing:9.088000pt;}
.ws61{word-spacing:9.344000pt;}
.ws98{word-spacing:9.536000pt;}
.ws6b{word-spacing:9.600000pt;}
.ws114{word-spacing:9.920000pt;}
.ws49{word-spacing:9.984000pt;}
.ws48{word-spacing:10.176000pt;}
.ws99{word-spacing:10.240000pt;}
.ws52{word-spacing:10.304000pt;}
.ws50{word-spacing:10.624000pt;}
.ws10b{word-spacing:11.200000pt;}
.ws96{word-spacing:11.264000pt;}
.wsbe{word-spacing:11.328000pt;}
.ws51{word-spacing:11.456000pt;}
.ws7f{word-spacing:11.520000pt;}
.wsd3{word-spacing:11.584000pt;}
.ws35{word-spacing:11.599360pt;}
.ws68{word-spacing:11.904000pt;}
.ws7c{word-spacing:12.160000pt;}
.ws36{word-spacing:12.364800pt;}
.wsfe{word-spacing:12.480000pt;}
.ws40{word-spacing:12.544000pt;}
.ws41{word-spacing:12.736000pt;}
.ws34{word-spacing:12.800000pt;}
.wsa1{word-spacing:12.864000pt;}
.wse6{word-spacing:12.928000pt;}
.ws33{word-spacing:13.184000pt;}
.ws109{word-spacing:13.504000pt;}
.wsa2{word-spacing:13.760000pt;}
.ws5b{word-spacing:13.824000pt;}
.ws2f{word-spacing:14.016000pt;}
.ws2e{word-spacing:14.080000pt;}
.wsde{word-spacing:14.144000pt;}
.wsc7{word-spacing:14.272000pt;}
.wsb5{word-spacing:14.464000pt;}
.ws131{word-spacing:14.528000pt;}
.wsb4{word-spacing:14.720000pt;}
.ws136{word-spacing:15.040000pt;}
.wsdd{word-spacing:15.104000pt;}
.ws90{word-spacing:15.232000pt;}
.ws2d{word-spacing:15.296000pt;}
.ws95{word-spacing:15.360000pt;}
.wse9{word-spacing:15.424000pt;}
.ws5d{word-spacing:15.744000pt;}
.wsf9{word-spacing:15.936000pt;}
.wsb6{word-spacing:16.320000pt;}
.ws5e{word-spacing:16.384000pt;}
.ws9a{word-spacing:16.576000pt;}
.wsa4{word-spacing:16.640000pt;}
.ws82{word-spacing:16.768000pt;}
.wsa5{word-spacing:17.024000pt;}
.ws12e{word-spacing:17.088000pt;}
.ws116{word-spacing:17.600000pt;}
.wsec{word-spacing:17.664000pt;}
.wsa6{word-spacing:17.856000pt;}
.wsa9{word-spacing:17.920000pt;}
.wsc2{word-spacing:17.984000pt;}
.ws91{word-spacing:18.304000pt;}
.ws9d{word-spacing:18.944000pt;}
.wsf8{word-spacing:19.136000pt;}
.wsa7{word-spacing:19.200000pt;}
.ws81{word-spacing:19.584000pt;}
.wsad{word-spacing:19.776000pt;}
.ws80{word-spacing:20.416000pt;}
.wsd2{word-spacing:20.480000pt;}
.ws10c{word-spacing:20.544000pt;}
.wsac{word-spacing:20.864000pt;}
.wsab{word-spacing:21.504000pt;}
.wsd1{word-spacing:21.696000pt;}
.ws92{word-spacing:21.760000pt;}
.wsce{word-spacing:21.888000pt;}
.ws10a{word-spacing:21.952000pt;}
.ws93{word-spacing:22.144000pt;}
.ws135{word-spacing:22.336000pt;}
.wsfb{word-spacing:22.720000pt;}
.wsfa{word-spacing:22.784000pt;}
.wsaa{word-spacing:22.976000pt;}
.ws78{word-spacing:23.040000pt;}
.ws77{word-spacing:23.424000pt;}
.wsfc{word-spacing:24.000000pt;}
.wsbb{word-spacing:24.256000pt;}
.wsd6{word-spacing:24.320000pt;}
.wscc{word-spacing:24.384000pt;}
.wsb1{word-spacing:24.448000pt;}
.wsd0{word-spacing:24.704000pt;}
.ws134{word-spacing:25.280000pt;}
.ws55{word-spacing:25.344000pt;}
.wscb{word-spacing:25.408000pt;}
.ws53{word-spacing:25.536000pt;}
.ws54{word-spacing:25.600000pt;}
.ws108{word-spacing:25.984000pt;}
.ws107{word-spacing:26.624000pt;}
.ws115{word-spacing:28.544000pt;}
.wsd4{word-spacing:29.184000pt;}
.wsa8{word-spacing:29.376000pt;}
.ws76{word-spacing:30.464000pt;}
.ws75{word-spacing:30.656000pt;}
.ws74{word-spacing:30.720000pt;}
.wsa3{word-spacing:31.104000pt;}
.ws12b{word-spacing:31.296000pt;}
.ws123{word-spacing:31.744000pt;}
.ws130{word-spacing:31.936000pt;}
.ws101{word-spacing:32.384000pt;}
.ws12a{word-spacing:32.448000pt;}
.ws129{word-spacing:33.024000pt;}
.wsff{word-spacing:33.216000pt;}
.ws100{word-spacing:34.496000pt;}
.ws118{word-spacing:34.560000pt;}
.ws2b{word-spacing:35.840000pt;}
.ws4e{word-spacing:38.784000pt;}
.ws4d{word-spacing:39.616000pt;}
.wsd7{word-spacing:39.744000pt;}
.wsd8{word-spacing:40.960000pt;}
.wsd9{word-spacing:41.984000pt;}
.ws10f{word-spacing:42.176000pt;}
.ws10e{word-spacing:42.304000pt;}
.ws111{word-spacing:43.264000pt;}
.ws110{word-spacing:43.456000pt;}
.wsb8{word-spacing:53.120000pt;}
.wsb7{word-spacing:53.696000pt;}
._26{margin-left:-21.590016pt;}
._c{margin-left:-14.016000pt;}
._d{margin-left:-12.992000pt;}
._f{margin-left:-10.048000pt;}
._a{margin-left:-9.016697pt;}
._e{margin-left:-7.552000pt;}
._11{margin-left:-5.529600pt;}
._8{margin-left:-4.440769pt;}
._b{margin-left:-3.451658pt;}
._10{margin-left:-2.457600pt;}
._2{margin-left:-1.382400pt;}
._1{width:1.152000pt;}
._3{width:2.313216pt;}
._6{width:3.298888pt;}
._5{width:4.725708pt;}
._4{width:5.767994pt;}
._9{width:6.887862pt;}
._7{width:7.791852pt;}
._15{width:8.793600pt;}
._14{width:10.193920pt;}
._18{width:11.174400pt;}
._24{width:12.416000pt;}
._17{width:13.440000pt;}
._1b{width:14.749184pt;}
._1c{width:17.139200pt;}
._19{width:20.100115pt;}
._1f{width:21.580800pt;}
._20{width:22.937600pt;}
._16{width:24.221184pt;}
._1d{width:25.216000pt;}
._21{width:26.713600pt;}
._1a{width:28.662784pt;}
._23{width:29.632000pt;}
._25{width:32.960000pt;}
._13{width:36.902400pt;}
._1e{width:41.241600pt;}
._22{width:42.320384pt;}
._12{width:752.000000pt;}
._0{width:1076.561920pt;}
.fsa{font-size:37.120000pt;}
.fs2{font-size:42.240000pt;}
.fs5{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:67.461923pt;}
.fs3{font-size:74.240000pt;}
.fs7{font-size:85.760000pt;}
.fs8{font-size:101.192885pt;}
.fs9{font-size:106.240000pt;}
.fs6{font-size:138.240000pt;}
.fs4{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.520000pt;}
.y1{bottom:69.440000pt;}
.y194{bottom:99.520000pt;}
.y122{bottom:102.720000pt;}
.ya4{bottom:106.872320pt;}
.y4b{bottom:106.877440pt;}
.y1be{bottom:108.160000pt;}
.yfc{bottom:110.400000pt;}
.y1dc{bottom:112.000000pt;}
.y135{bottom:116.480000pt;}
.y17a{bottom:117.425920pt;}
.y1c0{bottom:118.400000pt;}
.y118{bottom:119.040000pt;}
.y1aa{bottom:119.680000pt;}
.y15d{bottom:121.600000pt;}
.ycc{bottom:123.840000pt;}
.y16{bottom:126.720000pt;}
.y121{bottom:129.600000pt;}
.y16f{bottom:130.240000pt;}
.ya3{bottom:131.513600pt;}
.y4a{bottom:131.518720pt;}
.y13c{bottom:134.720000pt;}
.y1bd{bottom:135.040000pt;}
.y183{bottom:135.360000pt;}
.y1db{bottom:138.880000pt;}
.y179{bottom:142.067200pt;}
.y134{bottom:143.360000pt;}
.ydf{bottom:145.280000pt;}
.yb1{bottom:145.920000pt;}
.y1a9{bottom:146.560000pt;}
.yfb{bottom:148.160000pt;}
.y15c{bottom:148.480000pt;}
.y69{bottom:149.760000pt;}
.y1f9{bottom:149.763200pt;}
.ycb{bottom:151.040000pt;}
.y193{bottom:153.600000pt;}
.ya2{bottom:156.154880pt;}
.y120{bottom:156.800000pt;}
.y16e{bottom:157.440000pt;}
.y49{bottom:159.360000pt;}
.y13b{bottom:161.600000pt;}
.y1ae{bottom:162.240000pt;}
.y15{bottom:164.480000pt;}
.y1da{bottom:166.080000pt;}
.y178{bottom:167.032320pt;}
.y133{bottom:170.240000pt;}
.yde{bottom:172.480000pt;}
.y48{bottom:172.800000pt;}
.yb0{bottom:173.120000pt;}
.y200{bottom:173.760000pt;}
.yfa{bottom:175.040000pt;}
.y68{bottom:176.960000pt;}
.y1f8{bottom:179.527040pt;}
.y192{bottom:180.800000pt;}
.y11f{bottom:183.680000pt;}
.ya1{bottom:184.320000pt;}
.y15b{bottom:186.240000pt;}
.yca{bottom:188.800000pt;}
.y1bc{bottom:189.120000pt;}
.y1ad{bottom:189.440000pt;}
.y177{bottom:191.673600pt;}
.y145{bottom:194.240000pt;}
.y16d{bottom:194.880000pt;}
.ya0{bottom:197.760000pt;}
.ydd{bottom:199.360000pt;}
.y117{bottom:200.000000pt;}
.yf9{bottom:201.920000pt;}
.y14{bottom:202.240000pt;}
.y67{bottom:203.840000pt;}
.y1d9{bottom:205.760000pt;}
.y132{bottom:208.000000pt;}
.y1f7{bottom:209.600000pt;}
.yaf{bottom:210.560000pt;}
.y1a8{bottom:211.200000pt;}
.y15a{bottom:213.120000pt;}
.yc9{bottom:215.680000pt;}
.y176{bottom:216.314880pt;}
.y1ac{bottom:216.320000pt;}
.y191{bottom:218.240000pt;}
.y140{bottom:221.440000pt;}
.y16c{bottom:222.080000pt;}
.y1bf{bottom:226.240000pt;}
.y116{bottom:226.880000pt;}
.y1c3{bottom:232.640000pt;}
.y1d8{bottom:232.960000pt;}
.y47{bottom:233.280000pt;}
.ydc{bottom:237.120000pt;}
.yae{bottom:237.760000pt;}
.y1a7{bottom:238.400000pt;}
.y13{bottom:239.680000pt;}
.y66{bottom:241.600000pt;}
.yc8{bottom:242.560000pt;}
.y1ab{bottom:243.200000pt;}
.y175{bottom:244.480000pt;}
.y131{bottom:245.760000pt;}
.y1f6{bottom:247.680000pt;}
.y11e{bottom:248.320000pt;}
.y16b{bottom:248.960000pt;}
.y159{bottom:250.880000pt;}
.y17d{bottom:253.440000pt;}
.y115{bottom:254.080000pt;}
.y190{bottom:256.000000pt;}
.y174{bottom:257.920000pt;}
.y144{bottom:258.880000pt;}
.y1d7{bottom:259.840000pt;}
.y12{bottom:262.720000pt;}
.ydb{bottom:264.000000pt;}
.yad{bottom:264.640000pt;}
.y1a6{bottom:265.280000pt;}
.yf8{bottom:266.560000pt;}
.y65{bottom:268.480000pt;}
.yc7{bottom:269.760000pt;}
.y1c2{bottom:270.400000pt;}
.y46{bottom:270.720000pt;}
.y130{bottom:272.640000pt;}
.y1f5{bottom:274.560000pt;}
.y11d{bottom:275.200000pt;}
.y1ff{bottom:275.840000pt;}
.y17c{bottom:280.320000pt;}
.y114{bottom:280.960000pt;}
.y18f{bottom:282.880000pt;}
.y143{bottom:286.080000pt;}
.y16a{bottom:286.720000pt;}
.y158{bottom:288.640000pt;}
.yda{bottom:290.880000pt;}
.yac{bottom:291.520000pt;}
.y11{bottom:291.840000pt;}
.y2c{bottom:292.800000pt;}
.yf7{bottom:293.760000pt;}
.y9f{bottom:295.040000pt;}
.y64{bottom:295.680000pt;}
.yc6{bottom:296.640000pt;}
.y12f{bottom:299.520000pt;}
.y1f4{bottom:301.760000pt;}
.y13f{bottom:302.400000pt;}
.y1a5{bottom:303.040000pt;}
.y13a{bottom:307.200000pt;}
.y113{bottom:307.840000pt;}
.y45{bottom:308.480000pt;}
.y11c{bottom:312.960000pt;}
.y169{bottom:313.600000pt;}
.y157{bottom:315.520000pt;}
.yd9{bottom:318.080000pt;}
.yab{bottom:318.720000pt;}
.yf6{bottom:320.640000pt;}
.y10{bottom:321.591040pt;}
.y9e{bottom:322.240000pt;}
.y63{bottom:322.560000pt;}
.yc5{bottom:323.520000pt;}
.y1d6{bottom:324.480000pt;}
.y80{bottom:328.960000pt;}
.y13e{bottom:329.280000pt;}
.y1a4{bottom:329.920000pt;}
.y2b{bottom:330.560000pt;}
.y1f3{bottom:331.520000pt;}
.y139{bottom:334.400000pt;}
.y1bb{bottom:334.720000pt;}
.y112{bottom:335.040000pt;}
.y44{bottom:335.360000pt;}
.y12e{bottom:337.280000pt;}
.y11b{bottom:339.840000pt;}
.y1fe{bottom:340.800000pt;}
.y156{bottom:342.720000pt;}
.yd8{bottom:344.960000pt;}
.y182{bottom:345.600000pt;}
.yf5{bottom:347.520000pt;}
.yf{bottom:349.120000pt;}
.yc4{bottom:350.720000pt;}
.y1f2{bottom:351.040000pt;}
.y168{bottom:351.360000pt;}
.y1d5{bottom:351.680000pt;}
.yaa{bottom:356.480000pt;}
.y1a3{bottom:357.120000pt;}
.y9d{bottom:359.680000pt;}
.y62{bottom:360.320000pt;}
.y138{bottom:361.280000pt;}
.y111{bottom:361.920000pt;}
.y2a{bottom:364.480000pt;}
.y7f{bottom:367.040000pt;}
.y1fd{bottom:367.680000pt;}
.y155{bottom:369.600000pt;}
.yd7{bottom:371.840000pt;}
.y181{bottom:372.800000pt;}
.y43{bottom:373.120000pt;}
.yf4{bottom:374.720000pt;}
.yc3{bottom:377.600000pt;}
.ye{bottom:377.920000pt;}
.y167{bottom:378.240000pt;}
.y1d4{bottom:378.560000pt;}
.y1f1{bottom:380.800000pt;}
.ya9{bottom:383.360000pt;}
.y9c{bottom:386.880000pt;}
.y61{bottom:387.200000pt;}
.y137{bottom:388.480000pt;}
.y1ba{bottom:388.800000pt;}
.y12d{bottom:391.360000pt;}
.y7e{bottom:393.920000pt;}
.y1a2{bottom:394.560000pt;}
.y154{bottom:396.480000pt;}
.y29{bottom:398.080000pt;}
.yd6{bottom:399.040000pt;}
.y110{bottom:399.680000pt;}
.y42{bottom:400.320000pt;}
.yf3{bottom:401.600000pt;}
.y142{bottom:404.800000pt;}
.y1fc{bottom:405.440000pt;}
.yd{bottom:407.680000pt;}
.y173{bottom:410.240000pt;}
.y60{bottom:414.080000pt;}
.yc2{bottom:415.360000pt;}
.y166{bottom:416.000000pt;}
.y1d3{bottom:416.320000pt;}
.y9b{bottom:416.640000pt;}
.y1f0{bottom:418.880000pt;}
.y92{bottom:419.520000pt;}
.y7d{bottom:421.120000pt;}
.y1a1{bottom:421.760000pt;}
.yd5{bottom:425.920000pt;}
.y10f{bottom:426.560000pt;}
.y41{bottom:427.200000pt;}
.yf2{bottom:428.800000pt;}
.y12c{bottom:429.120000pt;}
.y28{bottom:431.680000pt;}
.y1fb{bottom:432.320000pt;}
.y153{bottom:434.240000pt;}
.y172{bottom:437.440000pt;}
.yc1{bottom:442.240000pt;}
.y1b9{bottom:442.880000pt;}
.y1d2{bottom:443.200000pt;}
.y1ef{bottom:445.760000pt;}
.y7c{bottom:448.000000pt;}
.y1a0{bottom:448.640000pt;}
.y5f{bottom:451.840000pt;}
.yc{bottom:452.160000pt;}
.yd4{bottom:453.120000pt;}
.y10e{bottom:453.760000pt;}
.y40{bottom:454.080000pt;}
.yf1{bottom:455.680000pt;}
.y12b{bottom:456.000000pt;}
.y91{bottom:457.600000pt;}
.y13d{bottom:458.560000pt;}
.y152{bottom:461.120000pt;}
.y171{bottom:464.320000pt;}
.y27{bottom:465.280000pt;}
.yc0{bottom:469.440000pt;}
.y1b8{bottom:469.760000pt;}
.y1fa{bottom:470.080000pt;}
.y7b{bottom:474.880000pt;}
.y19f{bottom:475.520000pt;}
.y5e{bottom:478.720000pt;}
.yd3{bottom:480.000000pt;}
.y10d{bottom:480.640000pt;}
.y1d1{bottom:480.960000pt;}
.y3f{bottom:481.280000pt;}
.y18e{bottom:482.560000pt;}
.y1ee{bottom:483.520000pt;}
.y90{bottom:484.480000pt;}
.y12a{bottom:485.760000pt;}
.yb{bottom:489.920000pt;}
.y170{bottom:491.200000pt;}
.yf0{bottom:493.440000pt;}
.y136{bottom:496.320000pt;}
.y1b7{bottom:496.960000pt;}
.y26{bottom:498.880000pt;}
.y7a{bottom:502.080000pt;}
.y5d{bottom:505.920000pt;}
.ybf{bottom:506.880000pt;}
.y10c{bottom:507.520000pt;}
.y1d0{bottom:507.840000pt;}
.y3e{bottom:508.160000pt;}
.y1ed{bottom:510.400000pt;}
.y8f{bottom:511.680000pt;}
.ya8{bottom:512.640000pt;}
.y19e{bottom:513.280000pt;}
.y165{bottom:518.400000pt;}
.yef{bottom:520.320000pt;}
.y129{bottom:523.200000pt;}
.y151{bottom:525.760000pt;}
.y79{bottom:528.960000pt;}
.y25{bottom:532.800000pt;}
.ybe{bottom:534.080000pt;}
.y1b6{bottom:534.400000pt;}
.y10b{bottom:534.720000pt;}
.y3d{bottom:535.040000pt;}
.y8e{bottom:538.560000pt;}
.ya7{bottom:539.520000pt;}
.ya{bottom:540.469760pt;}
.y5c{bottom:543.680000pt;}
.y164{bottom:545.280000pt;}
.yee{bottom:547.200000pt;}
.y1ec{bottom:548.160000pt;}
.y128{bottom:550.400000pt;}
.y19d{bottom:551.040000pt;}
.y150{bottom:552.960000pt;}
.y180{bottom:555.840000pt;}
.ybd{bottom:560.960000pt;}
.y10a{bottom:561.600000pt;}
.y1cf{bottom:561.920000pt;}
.y3c{bottom:562.240000pt;}
.y8d{bottom:565.440000pt;}
.y24{bottom:566.400000pt;}
.y78{bottom:566.720000pt;}
.y5b{bottom:570.560000pt;}
.yed{bottom:574.400000pt;}
.y1eb{bottom:575.040000pt;}
.y127{bottom:577.280000pt;}
.y14f{bottom:579.840000pt;}
.y163{bottom:583.040000pt;}
.yd2{bottom:587.840000pt;}
.y1b5{bottom:588.480000pt;}
.y109{bottom:588.800000pt;}
.y3b{bottom:589.120000pt;}
.y8c{bottom:592.640000pt;}
.y77{bottom:593.600000pt;}
.y5a{bottom:597.440000pt;}
.ybc{bottom:598.720000pt;}
.y9{bottom:599.360000pt;}
.y1ce{bottom:599.680000pt;}
.y23{bottom:600.000000pt;}
.yec{bottom:601.280000pt;}
.y126{bottom:604.480000pt;}
.y14e{bottom:607.040000pt;}
.y162{bottom:609.920000pt;}
.y1ea{bottom:612.800000pt;}
.yd1{bottom:615.040000pt;}
.y108{bottom:615.680000pt;}
.y9a{bottom:616.320000pt;}
.y8b{bottom:619.520000pt;}
.y76{bottom:620.800000pt;}
.ybb{bottom:625.600000pt;}
.y19c{bottom:626.240000pt;}
.y1cd{bottom:626.560000pt;}
.y3a{bottom:626.880000pt;}
.yeb{bottom:628.480000pt;}
.y125{bottom:631.360000pt;}
.y22{bottom:633.600000pt;}
.y59{bottom:635.200000pt;}
.y161{bottom:637.120000pt;}
.yd0{bottom:641.920000pt;}
.y1b4{bottom:642.560000pt;}
.y99{bottom:643.200000pt;}
.y14d{bottom:644.480000pt;}
.y8a{bottom:646.720000pt;}
.y11a{bottom:647.680000pt;}
.y8{bottom:650.560000pt;}
.yba{bottom:652.800000pt;}
.y107{bottom:653.440000pt;}
.yea{bottom:655.360000pt;}
.y75{bottom:658.240000pt;}
.y58{bottom:662.080000pt;}
.y17f{bottom:664.000000pt;}
.y1cc{bottom:664.320000pt;}
.y39{bottom:664.640000pt;}
.y21{bottom:667.200000pt;}
.ycf{bottom:669.120000pt;}
.y1e9{bottom:669.760000pt;}
.y14c{bottom:671.680000pt;}
.y89{bottom:673.600000pt;}
.y160{bottom:674.560000pt;}
.yb9{bottom:679.680000pt;}
.y106{bottom:680.320000pt;}
.y98{bottom:680.960000pt;}
.ye9{bottom:682.240000pt;}
.y74{bottom:685.440000pt;}
.y57{bottom:689.280000pt;}
.y19b{bottom:690.880000pt;}
.y1cb{bottom:691.200000pt;}
.y38{bottom:691.520000pt;}
.y18d{bottom:693.120000pt;}
.y124{bottom:696.000000pt;}
.y1e8{bottom:699.520000pt;}
.y88{bottom:700.480000pt;}
.y20{bottom:701.120000pt;}
.y15f{bottom:701.760000pt;}
.yb8{bottom:706.560000pt;}
.y105{bottom:707.200000pt;}
.y97{bottom:707.840000pt;}
.y14b{bottom:709.120000pt;}
.ye8{bottom:709.440000pt;}
.y7{bottom:712.320000pt;}
.y56{bottom:716.160000pt;}
.y18c{bottom:720.000000pt;}
.y123{bottom:722.880000pt;}
.y87{bottom:727.680000pt;}
.y17e{bottom:728.640000pt;}
.y1ca{bottom:728.960000pt;}
.y37{bottom:729.280000pt;}
.yb7{bottom:733.760000pt;}
.y1b3{bottom:734.080000pt;}
.y104{bottom:734.400000pt;}
.y1f{bottom:734.720000pt;}
.ye7{bottom:736.320000pt;}
.y1e7{bottom:737.600000pt;}
.y119{bottom:739.200000pt;}
.y55{bottom:743.360000pt;}
.y73{bottom:750.080000pt;}
.y86{bottom:754.560000pt;}
.y19a{bottom:755.520000pt;}
.y36{bottom:756.160000pt;}
.y18b{bottom:757.760000pt;}
.yb6{bottom:760.640000pt;}
.y103{bottom:761.280000pt;}
.y96{bottom:761.920000pt;}
.ye6{bottom:763.200000pt;}
.y1e6{bottom:764.480000pt;}
.y15e{bottom:766.400000pt;}
.y1e{bottom:768.320000pt;}
.y1b2{bottom:771.840000pt;}
.y72{bottom:776.960000pt;}
.y6{bottom:780.160000pt;}
.y54{bottom:780.800000pt;}
.y85{bottom:781.440000pt;}
.y199{bottom:782.720000pt;}
.y35{bottom:783.040000pt;}
.y18a{bottom:784.640000pt;}
.yb5{bottom:787.520000pt;}
.y102{bottom:788.480000pt;}
.y95{bottom:788.800000pt;}
.ye5{bottom:790.400000pt;}
.y1e5{bottom:791.360000pt;}
.y1c1{bottom:793.280000pt;}
.y1c9{bottom:793.600000pt;}
.y1b1{bottom:798.720000pt;}
.y14a{bottom:800.960000pt;}
.y1d{bottom:801.920000pt;}
.y71{bottom:803.840000pt;}
.y53{bottom:808.000000pt;}
.y84{bottom:808.640000pt;}
.y34{bottom:810.240000pt;}
.y189{bottom:811.520000pt;}
.yb4{bottom:814.720000pt;}
.y5{bottom:816.005120pt;}
.y1e4{bottom:818.560000pt;}
.y198{bottom:820.480000pt;}
.y101{bottom:825.920000pt;}
.y94{bottom:826.560000pt;}
.y149{bottom:827.840000pt;}
.ye4{bottom:828.160000pt;}
.ya6{bottom:831.040000pt;}
.y52{bottom:834.880000pt;}
.y83{bottom:835.520000pt;}
.y1c{bottom:835.840000pt;}
.y33{bottom:837.120000pt;}
.y188{bottom:838.720000pt;}
.y70{bottom:841.600000pt;}
.y1e3{bottom:845.440000pt;}
.y4{bottom:846.080000pt;}
.y197{bottom:847.360000pt;}
.yce{bottom:852.480000pt;}
.y1b0{bottom:852.800000pt;}
.y93{bottom:853.440000pt;}
.ye3{bottom:855.040000pt;}
.y141{bottom:857.920000pt;}
.y1c8{bottom:858.240000pt;}
.y51{bottom:861.760000pt;}
.y82{bottom:862.720000pt;}
.y100{bottom:863.680000pt;}
.y32{bottom:864.320000pt;}
.y148{bottom:865.600000pt;}
.y6f{bottom:868.800000pt;}
.y1b{bottom:869.440000pt;}
.y196{bottom:874.240000pt;}
.y1e2{bottom:874.880000pt;}
.y3{bottom:876.163840pt;}
.ycd{bottom:879.360000pt;}
.y81{bottom:880.640000pt;}
.y1af{bottom:882.560000pt;}
.y17b{bottom:885.120000pt;}
.y50{bottom:888.960000pt;}
.y31{bottom:891.200000pt;}
.y147{bottom:892.480000pt;}
.ye2{bottom:892.800000pt;}
.y6e{bottom:895.680000pt;}
.y1c7{bottom:896.000000pt;}
.y1a{bottom:896.320000pt;}
.yff{bottom:901.440000pt;}
.y1e1{bottom:901.760000pt;}
.y187{bottom:903.360000pt;}
.yb3{bottom:906.240000pt;}
.y195{bottom:912.000000pt;}
.y4f{bottom:915.840000pt;}
.y30{bottom:918.080000pt;}
.ye1{bottom:919.680000pt;}
.y146{bottom:922.240000pt;}
.y6d{bottom:922.560000pt;}
.y1c6{bottom:925.440000pt;}
.y1e0{bottom:928.640000pt;}
.y186{bottom:930.240000pt;}
.yb2{bottom:933.440000pt;}
.yfe{bottom:938.880000pt;}
.y19{bottom:939.200000pt;}
.y4e{bottom:942.720000pt;}
.y2f{bottom:945.280000pt;}
.ye0{bottom:949.440000pt;}
.y6c{bottom:949.760000pt;}
.y1c5{bottom:952.960000pt;}
.y185{bottom:957.440000pt;}
.y1df{bottom:958.080000pt;}
.ya5{bottom:960.320000pt;}
.y18{bottom:965.121920pt;}
.yfd{bottom:976.640000pt;}
.y4d{bottom:980.480000pt;}
.y1c4{bottom:982.400000pt;}
.y2e{bottom:982.720000pt;}
.y1de{bottom:984.960000pt;}
.y184{bottom:986.880000pt;}
.y6b{bottom:987.200000pt;}
.y17{bottom:1005.440000pt;}
.y4c{bottom:1009.600000pt;}
.y2d{bottom:1011.840000pt;}
.y1dd{bottom:1012.160000pt;}
.y6a{bottom:1014.400000pt;}
.h4{height:28.153125pt;}
.hf{height:36.477500pt;}
.h3{height:39.243750pt;}
.h16{height:40.997500pt;}
.h14{height:44.562500pt;}
.h7{height:44.992500pt;}
.h10{height:49.277500pt;}
.h2{height:53.562500pt;}
.hc{height:53.625000pt;}
.he{height:55.386250pt;}
.h15{height:56.070000pt;}
.h13{height:56.459832pt;}
.h5{height:62.132500pt;}
.h12{height:66.750000pt;}
.h9{height:71.773750pt;}
.hd{height:77.430000pt;}
.ha{height:84.689749pt;}
.hb{height:89.017500pt;}
.h11{height:89.445000pt;}
.h8{height:115.830000pt;}
.h6{height:160.875000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2{left:113.280000pt;}
.xf{left:114.558720pt;}
.x1f{left:120.000000pt;}
.x10{left:128.000000pt;}
.x11{left:137.280000pt;}
.x6{left:152.320000pt;}
.x17{left:159.040000pt;}
.x13{left:160.640000pt;}
.x12{left:185.280000pt;}
.x7{left:191.683840pt;}
.x18{left:193.280000pt;}
.x21{left:194.560000pt;}
.x5{left:196.480000pt;}
.x24{left:208.640000pt;}
.xb{left:230.720000pt;}
.x14{left:241.600000pt;}
.x1a{left:255.360000pt;}
.x19{left:272.000000pt;}
.x15{left:287.040000pt;}
.xd{left:296.000000pt;}
.x9{left:297.600000pt;}
.xc{left:298.880000pt;}
.x8{left:331.200000pt;}
.xa{left:340.477120pt;}
.x1b{left:342.720000pt;}
.x20{left:389.120000pt;}
.x1{left:392.960000pt;}
.x4{left:396.800000pt;}
.x22{left:398.400000pt;}
.x3{left:399.687040pt;}
.x23{left:483.840000pt;}
.x1c{left:547.520000pt;}
.x1d{left:620.480000pt;}
.x16{left:624.000000pt;}
.x1e{left:680.320000pt;}
.xe{left:683.516160pt;}
}




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