
    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_ed0b5a6b9959e8df6588e0c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.867676;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_4d69f83d66c4ba1926334566.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_42ca6a7f4ee780e6466fa4ba.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.575000;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_15b688cd56255a5164807cc7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_e5921d74a6cd87706c0dcd61.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.074000;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_9b97357fb0f11ea7de4ae007.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_53f830918362b202ed5e7e99.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fb90b3334b60709b155049ce.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.765625;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.m2{transform:matrix(0.246085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246085,0.000000,0.000000,0.250000,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);}
.m3{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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.119400px;}
.v3{vertical-align:20.906760px;}
.ls48{letter-spacing:-1.613520px;}
.lsa6{letter-spacing:-1.296000px;}
.ls4a{letter-spacing:-1.254960px;}
.ls49{letter-spacing:-1.015920px;}
.ls27{letter-spacing:-1.013040px;}
.ls46{letter-spacing:-0.993600px;}
.lsa2{letter-spacing:-0.972000px;}
.lsa4{letter-spacing:-0.918000px;}
.ls3c{letter-spacing:-0.896400px;}
.ls9d{letter-spacing:-0.864000px;}
.ls47{letter-spacing:-0.861120px;}
.ls7d{letter-spacing:-0.810000px;}
.ls9a{letter-spacing:-0.756000px;}
.ls29{letter-spacing:-0.723600px;}
.lsa5{letter-spacing:-0.702000px;}
.lsa3{letter-spacing:-0.683052px;}
.ls53{letter-spacing:-0.662400px;}
.ls3b{letter-spacing:-0.657360px;}
.ls5c{letter-spacing:-0.648000px;}
.ls26{letter-spacing:-0.627120px;}
.ls99{letter-spacing:-0.626131px;}
.ls44{letter-spacing:-0.597600px;}
.ls67{letter-spacing:-0.596160px;}
.ls72{letter-spacing:-0.594000px;}
.ls73{letter-spacing:-0.569210px;}
.ls7a{letter-spacing:-0.540000px;}
.ls75{letter-spacing:-0.512289px;}
.ls1a{letter-spacing:-0.486000px;}
.ls98{letter-spacing:-0.455368px;}
.ls2d{letter-spacing:-0.434160px;}
.ls1d{letter-spacing:-0.432000px;}
.ls9c{letter-spacing:-0.398447px;}
.ls57{letter-spacing:-0.397440px;}
.ls79{letter-spacing:-0.378000px;}
.ls97{letter-spacing:-0.341526px;}
.ls28{letter-spacing:-0.337680px;}
.ls17{letter-spacing:-0.334080px;}
.ls14{letter-spacing:-0.331200px;}
.lse{letter-spacing:-0.324000px;}
.ls2c{letter-spacing:-0.305097px;}
.ls21{letter-spacing:-0.298800px;}
.ls31{letter-spacing:-0.289440px;}
.ls77{letter-spacing:-0.284605px;}
.lsd{letter-spacing:-0.270000px;}
.ls15{letter-spacing:-0.264960px;}
.ls12{letter-spacing:-0.263520px;}
.ls19{letter-spacing:-0.250560px;}
.ls30{letter-spacing:-0.241200px;}
.ls55{letter-spacing:-0.239040px;}
.lsb{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.198720px;}
.ls2e{letter-spacing:-0.192960px;}
.ls20{letter-spacing:-0.179280px;}
.ls9e{letter-spacing:-0.170763px;}
.lsa{letter-spacing:-0.162000px;}
.ls2f{letter-spacing:-0.144720px;}
.ls56{letter-spacing:-0.144000px;}
.ls68{letter-spacing:-0.132480px;}
.ls10{letter-spacing:-0.131760px;}
.ls22{letter-spacing:-0.119520px;}
.lsf{letter-spacing:-0.108000px;}
.ls1e{letter-spacing:-0.072000px;}
.ls58{letter-spacing:-0.066240px;}
.ls37{letter-spacing:-0.059760px;}
.ls74{letter-spacing:-0.056921px;}
.ls7b{letter-spacing:-0.054000px;}
.ls2b{letter-spacing:-0.050849px;}
.ls25{letter-spacing:-0.048240px;}
.lsc{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.048240px;}
.ls2{letter-spacing:0.054000px;}
.ls76{letter-spacing:0.056921px;}
.ls1f{letter-spacing:0.059760px;}
.ls18{letter-spacing:0.066240px;}
.ls36{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.096480px;}
.ls1b{letter-spacing:0.108000px;}
.ls23{letter-spacing:0.119520px;}
.ls11{letter-spacing:0.131760px;}
.ls13{letter-spacing:0.132480px;}
.ls1c{letter-spacing:0.162000px;}
.ls9b{letter-spacing:0.170763px;}
.ls3a{letter-spacing:0.179280px;}
.ls7c{letter-spacing:0.216000px;}
.ls65{letter-spacing:0.220320px;}
.ls78{letter-spacing:0.227684px;}
.ls38{letter-spacing:0.239040px;}
.ls7{letter-spacing:0.265320px;}
.ls51{letter-spacing:0.270000px;}
.ls96{letter-spacing:0.284605px;}
.ls5{letter-spacing:0.289440px;}
.ls5a{letter-spacing:0.301536px;}
.ls1{letter-spacing:0.324000px;}
.ls8f{letter-spacing:0.341526px;}
.ls45{letter-spacing:0.360000px;}
.ls69{letter-spacing:0.378000px;}
.ls52{letter-spacing:0.397440px;}
.ls33{letter-spacing:0.418320px;}
.ls66{letter-spacing:0.468000px;}
.ls42{letter-spacing:0.537840px;}
.ls3e{letter-spacing:0.561744px;}
.ls34{letter-spacing:0.597600px;}
.ls94{letter-spacing:0.648000px;}
.ls81{letter-spacing:0.660284px;}
.ls6{letter-spacing:0.675360px;}
.ls35{letter-spacing:0.717120px;}
.ls4e{letter-spacing:0.756000px;}
.ls24{letter-spacing:0.771840px;}
.ls62{letter-spacing:0.776880px;}
.ls54{letter-spacing:0.836640px;}
.ls4c{letter-spacing:0.864000px;}
.ls3f{letter-spacing:0.882000px;}
.ls59{letter-spacing:0.884448px;}
.ls60{letter-spacing:0.902376px;}
.ls39{letter-spacing:0.956160px;}
.ls5e{letter-spacing:0.962136px;}
.ls50{letter-spacing:0.972000px;}
.ls4b{letter-spacing:1.015920px;}
.ls4d{letter-spacing:1.026000px;}
.ls82{letter-spacing:1.062000px;}
.ls4f{letter-spacing:1.080000px;}
.ls93{letter-spacing:1.360800px;}
.ls6e{letter-spacing:1.382400px;}
.ls9f{letter-spacing:1.387800px;}
.ls8b{letter-spacing:1.393200px;}
.ls32{letter-spacing:1.397864px;}
.ls6d{letter-spacing:1.404000px;}
.ls3{letter-spacing:1.434240px;}
.ls95{letter-spacing:1.479946px;}
.ls61{letter-spacing:1.553760px;}
.ls71{letter-spacing:2.106000px;}
.ls8c{letter-spacing:2.127600px;}
.ls63{letter-spacing:2.151360px;}
.ls8a{letter-spacing:2.791800px;}
.ls80{letter-spacing:2.808000px;}
.ls6c{letter-spacing:3.547800px;}
.ls6b{letter-spacing:3.564000px;}
.ls5d{letter-spacing:3.585600px;}
.lsa1{letter-spacing:3.756786px;}
.ls92{letter-spacing:4.228200px;}
.ls90{letter-spacing:4.249800px;}
.ls8d{letter-spacing:4.266000px;}
.ls5b{letter-spacing:4.302720px;}
.ls64{letter-spacing:4.968000px;}
.ls3d{letter-spacing:5.019840px;}
.ls8e{letter-spacing:5.022000px;}
.ls7e{letter-spacing:5.236732px;}
.ls85{letter-spacing:5.724000px;}
.ls86{letter-spacing:6.426000px;}
.ls5f{letter-spacing:6.454080px;}
.ls88{letter-spacing:7.128000px;}
.lsa0{letter-spacing:7.824600px;}
.ls87{letter-spacing:7.884000px;}
.ls89{letter-spacing:8.586000px;}
.ls84{letter-spacing:10.027800px;}
.ls83{letter-spacing:10.044000px;}
.ls91{letter-spacing:10.746000px;}
.ls8{letter-spacing:12.134160px;}
.ls9{letter-spacing:14.580000px;}
.ls6f{letter-spacing:15.735600px;}
.ls70{letter-spacing:15.768000px;}
.ls43{letter-spacing:17.928000px;}
.ls7f{letter-spacing:43.308000px;}
.ls6a{letter-spacing:46.170000px;}
.ls0{letter-spacing:53.758080px;}
.ls40{letter-spacing:385.884000px;}
.ls41{letter-spacing:484.488000px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(148,54,52),0 0.015em rgb(148,54,52),0.015em 0 rgb(148,54,52),0 -0.015em  rgb(148,54,52);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(148,54,52);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws80{word-spacing:-59.760000px;}
.ws14{word-spacing:-15.768000px;}
.ws90{word-spacing:-15.696000px;}
.wsab{word-spacing:-15.119280px;}
.ws7d{word-spacing:-14.970240px;}
.ws77{word-spacing:-14.820480px;}
.ws78{word-spacing:-14.641200px;}
.ws7e{word-spacing:-14.639040px;}
.ws6{word-spacing:-14.572800px;}
.ws16{word-spacing:-14.521680px;}
.ws60{word-spacing:-14.402160px;}
.ws8{word-spacing:-14.374080px;}
.ws5e{word-spacing:-14.342400px;}
.ws2{word-spacing:-14.241600px;}
.ws8f{word-spacing:-14.222880px;}
.ws5f{word-spacing:-14.103360px;}
.ws7a{word-spacing:-14.094000px;}
.wsdf{word-spacing:-14.059486px;}
.wse0{word-spacing:-14.002565px;}
.ws7b{word-spacing:-13.986000px;}
.wsd4{word-spacing:-13.945644px;}
.ws7f{word-spacing:-13.910400px;}
.wse6{word-spacing:-13.888723px;}
.wsd2{word-spacing:-13.774881px;}
.ws79{word-spacing:-13.770000px;}
.ws75{word-spacing:-13.711680px;}
.wsd0{word-spacing:-13.661039px;}
.wse9{word-spacing:-13.547197px;}
.wsd3{word-spacing:-13.433356px;}
.wscb{word-spacing:-13.392000px;}
.ws76{word-spacing:-13.386240px;}
.wse1{word-spacing:-13.376435px;}
.wsd{word-spacing:-13.338000px;}
.wse7{word-spacing:-13.319514px;}
.wsce{word-spacing:-13.284000px;}
.wse3{word-spacing:-13.262593px;}
.wsda{word-spacing:-13.230000px;}
.wsd1{word-spacing:-13.205672px;}
.ws12{word-spacing:-13.176000px;}
.wscf{word-spacing:-13.148751px;}
.ws10{word-spacing:-13.122000px;}
.wse4{word-spacing:-13.091830px;}
.ws8e{word-spacing:-13.087440px;}
.wscc{word-spacing:-13.068000px;}
.wsf2{word-spacing:-13.034909px;}
.ws11{word-spacing:-13.014000px;}
.wsd9{word-spacing:-12.960000px;}
.wsd8{word-spacing:-12.852000px;}
.ws81{word-spacing:-12.848400px;}
.wsd7{word-spacing:-12.798000px;}
.ws7c{word-spacing:-12.744000px;}
.wse{word-spacing:-12.690000px;}
.wsd5{word-spacing:-12.636000px;}
.ws13{word-spacing:-12.582000px;}
.wsf{word-spacing:-12.528000px;}
.wsd6{word-spacing:-12.474000px;}
.wscd{word-spacing:-12.420000px;}
.wse2{word-spacing:-12.366000px;}
.wsf4{word-spacing:-12.312000px;}
.ws1c{word-spacing:-12.301200px;}
.wse5{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.204000px;}
.wse8{word-spacing:-12.150000px;}
.wsf3{word-spacing:-12.096000px;}
.wsf1{word-spacing:-12.042000px;}
.ws1{word-spacing:-11.934000px;}
.ws1b{word-spacing:-11.915280px;}
.ws22{word-spacing:-11.891160px;}
.wsf5{word-spacing:-11.718000px;}
.ws17{word-spacing:-11.625840px;}
.ws1d{word-spacing:-11.577600px;}
.ws1f{word-spacing:-11.481120px;}
.ws1e{word-spacing:-11.432880px;}
.ws20{word-spacing:-11.384640px;}
.ws21{word-spacing:-11.336400px;}
.ws19{word-spacing:-11.288160px;}
.ws1a{word-spacing:-11.191680px;}
.ws18{word-spacing:-10.612800px;}
.ws4{word-spacing:-9.187200px;}
.ws9{word-spacing:-8.936640px;}
.wsb{word-spacing:-8.853120px;}
.ws15{word-spacing:-8.676000px;}
.wsc{word-spacing:-7.981920px;}
.ws6d{word-spacing:-3.585600px;}
.ws62{word-spacing:-3.406320px;}
.ws6f{word-spacing:-2.988000px;}
.ws46{word-spacing:-2.928240px;}
.ws47{word-spacing:-2.868480px;}
.wsa3{word-spacing:-2.748960px;}
.ws41{word-spacing:-2.689200px;}
.wsa6{word-spacing:-2.538000px;}
.ws55{word-spacing:-2.219040px;}
.ws5d{word-spacing:-2.217301px;}
.ws9c{word-spacing:-2.211120px;}
.ws93{word-spacing:-2.151360px;}
.ws48{word-spacing:-1.972080px;}
.wsa5{word-spacing:-1.782000px;}
.wsc3{word-spacing:-1.722240px;}
.wsa8{word-spacing:-1.674000px;}
.wsb2{word-spacing:-1.434240px;}
.wsc2{word-spacing:-1.391040px;}
.wsdc{word-spacing:-1.314720px;}
.ws4b{word-spacing:-1.254960px;}
.wsa1{word-spacing:-1.135440px;}
.ws35{word-spacing:-1.080000px;}
.ws33{word-spacing:-0.993600px;}
.ws72{word-spacing:-0.956160px;}
.ws87{word-spacing:-0.896400px;}
.ws97{word-spacing:-0.717120px;}
.ws4d{word-spacing:-0.675360px;}
.wsbf{word-spacing:-0.597600px;}
.ws9b{word-spacing:-0.596160px;}
.ws58{word-spacing:-0.559344px;}
.ws3d{word-spacing:-0.537840px;}
.wsef{word-spacing:-0.512289px;}
.wsa7{word-spacing:-0.486000px;}
.wsb5{word-spacing:-0.418320px;}
.ws2c{word-spacing:-0.395280px;}
.ws39{word-spacing:-0.378000px;}
.ws83{word-spacing:-0.360000px;}
.wsee{word-spacing:-0.341526px;}
.ws2f{word-spacing:-0.331200px;}
.ws37{word-spacing:-0.324000px;}
.ws32{word-spacing:-0.264960px;}
.ws6a{word-spacing:-0.239040px;}
.ws38{word-spacing:-0.216000px;}
.ws73{word-spacing:-0.179280px;}
.ws36{word-spacing:-0.162000px;}
.ws99{word-spacing:-0.132480px;}
.ws2b{word-spacing:-0.131760px;}
.ws8d{word-spacing:-0.119520px;}
.ws34{word-spacing:-0.108000px;}
.ws4f{word-spacing:-0.096480px;}
.ws61{word-spacing:-0.072000px;}
.ws84{word-spacing:-0.066240px;}
.ws3c{word-spacing:-0.059760px;}
.ws57{word-spacing:-0.050849px;}
.ws5b{word-spacing:-0.048240px;}
.ws25{word-spacing:0.000000px;}
.ws4e{word-spacing:0.048240px;}
.ws2a{word-spacing:0.054000px;}
.ws94{word-spacing:0.059760px;}
.ws30{word-spacing:0.066240px;}
.ws28{word-spacing:0.108000px;}
.ws8b{word-spacing:0.119520px;}
.ws2d{word-spacing:0.131760px;}
.wsc6{word-spacing:0.132480px;}
.ws98{word-spacing:0.144000px;}
.ws5c{word-spacing:0.144720px;}
.ws40{word-spacing:0.179280px;}
.ws5a{word-spacing:0.192960px;}
.ws9a{word-spacing:0.198720px;}
.ws23{word-spacing:0.216000px;}
.ws59{word-spacing:0.241200px;}
.ws2e{word-spacing:0.263520px;}
.ws31{word-spacing:0.264960px;}
.ws24{word-spacing:0.270000px;}
.ws95{word-spacing:0.298800px;}
.ws26{word-spacing:0.324000px;}
.wsc4{word-spacing:0.331200px;}
.ws27{word-spacing:0.378000px;}
.ws88{word-spacing:0.418320px;}
.ws3a{word-spacing:0.432000px;}
.ws89{word-spacing:0.540000px;}
.wsc5{word-spacing:0.596160px;}
.wsb7{word-spacing:0.597600px;}
.ws50{word-spacing:0.627120px;}
.wsa9{word-spacing:0.648000px;}
.ws82{word-spacing:0.657360px;}
.ws8a{word-spacing:0.662400px;}
.ws54{word-spacing:0.675360px;}
.ws3f{word-spacing:0.717120px;}
.ws52{word-spacing:0.723600px;}
.wsb8{word-spacing:0.836640px;}
.ws8c{word-spacing:0.861120px;}
.ws66{word-spacing:0.896400px;}
.ws85{word-spacing:0.993600px;}
.ws3e{word-spacing:1.015920px;}
.wsb0{word-spacing:1.195200px;}
.ws69{word-spacing:1.314720px;}
.ws42{word-spacing:1.374480px;}
.ws56{word-spacing:1.398960px;}
.ws44{word-spacing:1.434240px;}
.ws43{word-spacing:1.553760px;}
.ws63{word-spacing:1.613520px;}
.wsca{word-spacing:1.733040px;}
.wsec{word-spacing:1.764551px;}
.wsf0{word-spacing:1.944000px;}
.ws4c{word-spacing:2.026080px;}
.ws96{word-spacing:2.031840px;}
.ws3b{word-spacing:2.091600px;}
.wsb1{word-spacing:2.151360px;}
.ws68{word-spacing:2.330640px;}
.wsea{word-spacing:2.592000px;}
.wsb3{word-spacing:2.629440px;}
.wsde{word-spacing:2.646000px;}
.wsbd{word-spacing:2.808720px;}
.wsae{word-spacing:2.868480px;}
.wsc0{word-spacing:2.988000px;}
.ws6c{word-spacing:3.047760px;}
.wsa2{word-spacing:3.167280px;}
.wsaf{word-spacing:3.466080px;}
.wsa0{word-spacing:3.525840px;}
.ws92{word-spacing:3.585600px;}
.ws6b{word-spacing:3.645360px;}
.ws49{word-spacing:3.705120px;}
.ws4a{word-spacing:3.764880px;}
.wsb4{word-spacing:3.884400px;}
.wsbc{word-spacing:4.063680px;}
.ws9f{word-spacing:4.183200px;}
.wsa4{word-spacing:4.242960px;}
.ws9d{word-spacing:4.302720px;}
.ws70{word-spacing:4.362480px;}
.ws67{word-spacing:4.422240px;}
.ws71{word-spacing:4.482000px;}
.wsaa{word-spacing:4.536000px;}
.wsc9{word-spacing:4.590000px;}
.wsba{word-spacing:4.601520px;}
.wsc8{word-spacing:4.806000px;}
.ws53{word-spacing:4.872240px;}
.wsed{word-spacing:4.895206px;}
.wsdb{word-spacing:4.900320px;}
.ws86{word-spacing:4.960080px;}
.ws65{word-spacing:5.019840px;}
.wsac{word-spacing:5.139360px;}
.ws64{word-spacing:5.199120px;}
.wsc7{word-spacing:5.400000px;}
.wsbb{word-spacing:5.617440px;}
.ws6e{word-spacing:5.916240px;}
.wsb6{word-spacing:6.454080px;}
.wsb9{word-spacing:6.513840px;}
.wsad{word-spacing:6.573600px;}
.ws91{word-spacing:6.633360px;}
.wseb{word-spacing:7.058204px;}
.ws74{word-spacing:7.111440px;}
.wsc1{word-spacing:7.171200px;}
.ws9e{word-spacing:7.350480px;}
.wsdd{word-spacing:8.127360px;}
.wsbe{word-spacing:9.979920px;}
.ws45{word-spacing:12.430080px;}
.ws51{word-spacing:12.928320px;}
.ws29{word-spacing:15.174000px;}
.ws3{word-spacing:45.315360px;}
.ws7{word-spacing:45.965088px;}
.ws5{word-spacing:45.973440px;}
.wsa{word-spacing:45.979488px;}
._1b{margin-left:-7.556400px;}
._1d{margin-left:-3.468600px;}
._15{margin-left:-2.358000px;}
._1{margin-left:-1.188000px;}
._0{width:1.528200px;}
._18{width:2.854800px;}
._7{width:4.100400px;}
._17{width:5.148000px;}
._b{width:6.180840px;}
._19{width:7.439400px;}
._1a{width:8.553600px;}
._1c{width:11.989800px;}
._8{width:13.507200px;}
._16{width:14.988960px;}
._14{width:16.519320px;}
._5{width:17.643240px;}
._4{width:37.473840px;}
._6{width:54.281304px;}
._f{width:197.272800px;}
._e{width:202.608000px;}
._11{width:215.568000px;}
._d{width:237.168000px;}
._c{width:266.436000px;}
._10{width:280.368000px;}
._12{width:328.752000px;}
._9{width:336.136320px;}
._2{width:353.899800px;}
._13{width:393.714000px;}
._a{width:708.804000px;}
._3{width:768.960000px;}
.fc5{color:transparent;}
.fc3{color:rgb(227,108,10);}
.fc2{color:rgb(148,54,52);}
.fc6{color:rgb(49,132,155);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:33.120000px;}
.fs8{font-size:36.000000px;}
.fs3{font-size:41.760000px;}
.fsa{font-size:48.202200px;}
.fs5{font-size:48.240000px;}
.fs9{font-size:50.849425px;}
.fs0{font-size:54.000000px;}
.fsb{font-size:56.920998px;}
.fs7{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y34{bottom:5.580000px;}
.y5a{bottom:8.259750px;}
.y7{bottom:8.280000px;}
.y99{bottom:8.460000px;}
.y5f{bottom:33.659850px;}
.y57{bottom:43.200000px;}
.y32{bottom:46.800000px;}
.y55{bottom:59.760000px;}
.y9{bottom:66.600000px;}
.y53{bottom:76.139850px;}
.y6{bottom:79.200000px;}
.y8{bottom:87.480000px;}
.y51{bottom:92.700000px;}
.y88{bottom:109.080000px;}
.y5d{bottom:109.084500px;}
.y5{bottom:109.088850px;}
.y4f{bottom:109.260000px;}
.y4d{bottom:125.820000px;}
.y134{bottom:131.760000px;}
.y86{bottom:132.492810px;}
.y14c{bottom:132.837120px;}
.yce{bottom:133.018920px;}
.y118{bottom:133.204320px;}
.yaf{bottom:133.736040px;}
.yee{bottom:133.938000px;}
.y12f{bottom:134.280000px;}
.y1b2{bottom:138.600000px;}
.y1b1{bottom:138.604350px;}
.y178{bottom:139.680000px;}
.y4c{bottom:142.200000px;}
.y1f{bottom:143.280000px;}
.yed{bottom:152.473500px;}
.y35{bottom:153.000000px;}
.y14b{bottom:154.978200px;}
.y85{bottom:154.992450px;}
.ycd{bottom:155.158560px;}
.yae{bottom:155.160000px;}
.y117{bottom:156.062520px;}
.y1b0{bottom:157.139850px;}
.y4a{bottom:158.760000px;}
.y177{bottom:163.440000px;}
.y58{bottom:169.200000px;}
.y59{bottom:169.206000px;}
.y33{bottom:169.380000px;}
.yec{bottom:171.009000px;}
.y48{bottom:175.319850px;}
.y14a{bottom:176.936040px;}
.ycc{bottom:177.478920px;}
.y84{bottom:177.492090px;}
.y116{bottom:179.114760px;}
.y1af{bottom:181.260000px;}
.y1ae{bottom:181.264500px;}
.yad{bottom:181.979850px;}
.y176{bottom:187.380000px;}
.yeb{bottom:189.544500px;}
.y31{bottom:190.074240px;}
.y46{bottom:191.880000px;}
.y149{bottom:199.077120px;}
.ycb{bottom:199.620000px;}
.y83{bottom:199.991730px;}
.y1ad{bottom:200.340000px;}
.y115{bottom:201.972960px;}
.y175{bottom:206.280000px;}
.y174{bottom:206.289000px;}
.yea{bottom:208.080000px;}
.y45{bottom:208.260000px;}
.y30{bottom:210.781080px;}
.y29{bottom:211.859850px;}
.y56{bottom:212.760000px;}
.y1ac{bottom:219.240000px;}
.yac{bottom:220.142010px;}
.y148{bottom:221.038920px;}
.y82{bottom:222.491370px;}
.y43{bottom:224.819850px;}
.y173{bottom:224.824500px;}
.y114{bottom:225.010440px;}
.y54{bottom:229.139850px;}
.yca{bottom:230.220570px;}
.ye9{bottom:230.580000px;}
.y2f{bottom:231.293700px;}
.y41{bottom:241.380000px;}
.yab{bottom:242.641650px;}
.y147{bottom:243.177120px;}
.y1ab{bottom:243.540000px;}
.y81{bottom:244.991010px;}
.y52{bottom:245.700000px;}
.y113{bottom:247.868640px;}
.y172{bottom:248.584500px;}
.yc9{bottom:249.479850px;}
.y2e{bottom:252.000540px;}
.y40{bottom:257.940000px;}
.y50{bottom:262.260000px;}
.y1aa{bottom:262.620000px;}
.y146{bottom:265.138920px;}
.yaa{bottom:265.141290px;}
.y80{bottom:267.490650px;}
.y112{bottom:270.906120px;}
.y171{bottom:272.520000px;}
.y2d{bottom:272.707380px;}
.y25{bottom:273.780000px;}
.y3f{bottom:274.319850px;}
.yc8{bottom:278.100000px;}
.y4e{bottom:278.820000px;}
.y1a9{bottom:281.520000px;}
.y145{bottom:287.274090px;}
.ya9{bottom:287.640930px;}
.y7f{bottom:289.990290px;}
.y3e{bottom:290.880000px;}
.y170{bottom:291.244500px;}
.y2c{bottom:293.213160px;}
.y111{bottom:293.764320px;}
.y1a8{bottom:305.824500px;}
.y3c{bottom:307.440000px;}
.y144{bottom:309.235890px;}
.ya8{bottom:310.140570px;}
.y4b{bottom:311.760000px;}
.y7e{bottom:312.489930px;}
.y2b{bottom:313.913160px;}
.y16f{bottom:315.180000px;}
.y110{bottom:316.801800px;}
.yc7{bottom:317.680200px;}
.y3a{bottom:323.820000px;}
.y1a7{bottom:324.900000px;}
.y1a6{bottom:324.904500px;}
.y49{bottom:328.319850px;}
.y143{bottom:331.376970px;}
.ya7{bottom:332.640210px;}
.y16e{bottom:333.904500px;}
.y2a{bottom:334.620000px;}
.y7d{bottom:334.989570px;}
.y21{bottom:335.700000px;}
.y10f{bottom:339.660000px;}
.yc6{bottom:339.821280px;}
.y38{bottom:340.380000px;}
.y1a5{bottom:343.804500px;}
.y47{bottom:344.880000px;}
.y16d{bottom:352.440000px;}
.y142{bottom:353.338770px;}
.y28{bottom:355.126320px;}
.ya6{bottom:355.139850px;}
.y36{bottom:356.940000px;}
.y7c{bottom:357.489210px;}
.yc5{bottom:361.962360px;}
.y1a4{bottom:362.880000px;}
.y20{bottom:363.780000px;}
.y10e{bottom:370.800000px;}
.y141{bottom:375.478200px;}
.y27{bottom:375.833160px;}
.y16c{bottom:376.200000px;}
.y44{bottom:377.819850px;}
.y7b{bottom:379.988850px;}
.yc4{bottom:384.282720px;}
.ya5{bottom:385.920000px;}
.y1a3{bottom:387.180000px;}
.y42{bottom:394.380000px;}
.y26{bottom:396.540000px;}
.y140{bottom:397.431000px;}
.y16b{bottom:400.139850px;}
.y16a{bottom:400.144500px;}
.y12e{bottom:402.300000px;}
.y7a{bottom:402.488490px;}
.y1a2{bottom:406.080000px;}
.yc3{bottom:406.423800px;}
.y10d{bottom:408.958200px;}
.y12d{bottom:409.139850px;}
.y24{bottom:417.046320px;}
.y169{bottom:419.044500px;}
.y13f{bottom:419.572080px;}
.ya4{bottom:424.081440px;}
.y79{bottom:424.988130px;}
.yc2{bottom:427.668480px;}
.y1a1{bottom:430.020000px;}
.y10c{bottom:431.457840px;}
.y168{bottom:437.580000px;}
.y23{bottom:437.753160px;}
.y13e{bottom:441.533880px;}
.ya3{bottom:446.581080px;}
.y78{bottom:447.487770px;}
.y1a0{bottom:448.920000px;}
.y10b{bottom:453.778200px;}
.y22{bottom:458.460000px;}
.y3d{bottom:460.440000px;}
.y167{bottom:461.335500px;}
.y13d{bottom:462.420000px;}
.yc1{bottom:464.211720px;}
.y19f{bottom:467.478000px;}
.ya2{bottom:469.080720px;}
.y77{bottom:469.987410px;}
.y10a{bottom:476.098560px;}
.y3b{bottom:476.820000px;}
.y166{bottom:480.060000px;}
.y165{bottom:480.064500px;}
.y13c{bottom:481.504500px;}
.ye8{bottom:485.462700px;}
.y19e{bottom:486.013500px;}
.yc0{bottom:486.352800px;}
.ya1{bottom:491.580360px;}
.y76{bottom:492.487050px;}
.y39{bottom:493.380000px;}
.y109{bottom:498.418920px;}
.y164{bottom:498.600000px;}
.y13b{bottom:500.040000px;}
.ye7{bottom:504.003240px;}
.y19d{bottom:504.549000px;}
.ybf{bottom:508.673160px;}
.y37{bottom:509.940000px;}
.ya0{bottom:514.080000px;}
.y75{bottom:514.986690px;}
.y108{bottom:520.739280px;}
.y13a{bottom:522.540000px;}
.y19c{bottom:523.084500px;}
.y163{bottom:525.240000px;}
.ye6{bottom:526.502880px;}
.ybe{bottom:530.814240px;}
.y1d2{bottom:532.980000px;}
.y74{bottom:537.486330px;}
.y1e{bottom:542.884320px;}
.y107{bottom:543.059640px;}
.y9f{bottom:544.680000px;}
.y19a{bottom:547.015500px;}
.y19b{bottom:547.020000px;}
.ye5{bottom:549.002520px;}
.y1d1{bottom:549.557100px;}
.ybd{bottom:552.955320px;}
.y1d{bottom:558.900000px;}
.y73{bottom:559.985970px;}
.y1d0{bottom:563.233140px;}
.y162{bottom:564.840000px;}
.y106{bottom:565.559280px;}
.y199{bottom:565.740000px;}
.y198{bottom:565.749000px;}
.ye4{bottom:571.502160px;}
.y1c{bottom:571.680000px;}
.ybc{bottom:574.200000px;}
.y1cf{bottom:577.090080px;}
.y72{bottom:582.485610px;}
.y197{bottom:584.284500px;}
.y9e{bottom:587.709000px;}
.y105{bottom:587.879640px;}
.y1ce{bottom:590.947020px;}
.ye3{bottom:594.001800px;}
.y1b{bottom:595.264500px;}
.y161{bottom:595.800000px;}
.y196{bottom:602.820000px;}
.y1cd{bottom:604.623060px;}
.y71{bottom:604.985250px;}
.y133{bottom:605.880000px;}
.y104{bottom:610.200000px;}
.ybb{bottom:611.460000px;}
.y132{bottom:612.720000px;}
.y9d{bottom:613.089000px;}
.ye2{bottom:616.501440px;}
.y1a{bottom:618.300000px;}
.y1cc{bottom:618.480000px;}
.y195{bottom:626.580000px;}
.y70{bottom:627.484890px;}
.y19{bottom:632.344500px;}
.y103{bottom:632.520360px;}
.yba{bottom:633.960000px;}
.y160{bottom:635.402520px;}
.y9c{bottom:638.644500px;}
.ye1{bottom:639.001080px;}
.y1cb{bottom:640.089000px;}
.y194{bottom:645.480000px;}
.y193{bottom:645.484500px;}
.y6f{bottom:649.984530px;}
.y102{bottom:654.840720px;}
.y18{bottom:655.380000px;}
.y12c{bottom:655.407180px;}
.y15f{bottom:657.902160px;}
.ye0{bottom:661.500720px;}
.y192{bottom:664.020000px;}
.y191{bottom:664.024500px;}
.y9b{bottom:664.200000px;}
.y17{bottom:669.604500px;}
.y6e{bottom:672.484170px;}
.y12b{bottom:673.947720px;}
.y101{bottom:677.161080px;}
.y15e{bottom:680.401800px;}
.y190{bottom:682.560000px;}
.y1ca{bottom:682.749000px;}
.ydf{bottom:684.000360px;}
.y9a{bottom:689.580000px;}
.y16{bottom:692.640000px;}
.y6d{bottom:694.983810px;}
.y12a{bottom:696.805920px;}
.y100{bottom:699.660720px;}
.y1c9{bottom:701.284500px;}
.y15d{bottom:702.901440px;}
.y18f{bottom:706.320000px;}
.yde{bottom:706.501800px;}
.y98{bottom:707.040000px;}
.y15{bottom:711.180000px;}
.y6c{bottom:717.483450px;}
.y129{bottom:719.843400px;}
.yff{bottom:721.981080px;}
.y18e{bottom:725.035500px;}
.y1c8{bottom:725.220000px;}
.y14{bottom:725.224500px;}
.y15c{bottom:725.401080px;}
.ydd{bottom:729.001440px;}
.y6b{bottom:739.983090px;}
.y128{bottom:742.701600px;}
.y18d{bottom:743.760000px;}
.yfe{bottom:744.301440px;}
.y97{bottom:747.180000px;}
.y15b{bottom:747.900720px;}
.y13{bottom:748.260000px;}
.y1c6{bottom:749.155500px;}
.y1c7{bottom:749.160000px;}
.ydc{bottom:751.501080px;}
.y6a{bottom:762.482730px;}
.y127{bottom:765.739080px;}
.y96{bottom:766.442910px;}
.yfd{bottom:766.801080px;}
.y18c{bottom:767.515500px;}
.y1c5{bottom:767.880000px;}
.y1c4{bottom:767.884500px;}
.y15a{bottom:770.400360px;}
.ydb{bottom:774.000720px;}
.y12{bottom:778.860000px;}
.y69{bottom:784.982370px;}
.y95{bottom:785.881800px;}
.y18b{bottom:786.240000px;}
.y1c3{bottom:786.420000px;}
.y126{bottom:788.597280px;}
.yfc{bottom:789.300720px;}
.y139{bottom:792.360720px;}
.y159{bottom:792.903240px;}
.yda{bottom:796.500360px;}
.y11{bottom:799.560000px;}
.y68{bottom:807.482010px;}
.y94{bottom:808.381440px;}
.y18a{bottom:809.995500px;}
.y1c2{bottom:810.180000px;}
.y138{bottom:811.620000px;}
.y125{bottom:811.634760px;}
.yfb{bottom:811.800360px;}
.y158{bottom:815.402880px;}
.yd9{bottom:819.000000px;}
.y188{bottom:828.715500px;}
.y189{bottom:828.720000px;}
.y1c1{bottom:829.084500px;}
.y67{bottom:829.981650px;}
.y93{bottom:830.881080px;}
.yfa{bottom:834.303600px;}
.y124{bottom:834.492960px;}
.y157{bottom:837.902520px;}
.y187{bottom:847.440000px;}
.y1c0{bottom:847.620000px;}
.yd8{bottom:849.780000px;}
.y137{bottom:850.504500px;}
.y66{bottom:852.481290px;}
.y92{bottom:853.380720px;}
.yf9{bottom:856.803240px;}
.y123{bottom:857.530440px;}
.y156{bottom:860.402160px;}
.y10{bottom:869.026350px;}
.y136{bottom:869.040000px;}
.y131{bottom:870.479850px;}
.y186{bottom:871.200000px;}
.y1bf{bottom:871.375500px;}
.y65{bottom:874.980930px;}
.y91{bottom:875.880360px;}
.y130{bottom:877.139850px;}
.yf8{bottom:879.302880px;}
.y122{bottom:880.388640px;}
.y155{bottom:882.901800px;}
.yd7{bottom:887.752440px;}
.yb9{bottom:889.019820px;}
.y185{bottom:889.924500px;}
.y1be{bottom:890.100000px;}
.y135{bottom:891.540000px;}
.y64{bottom:897.480570px;}
.y90{bottom:898.380000px;}
.yf7{bottom:901.802520px;}
.y121{bottom:903.426120px;}
.y154{bottom:905.401440px;}
.yb8{bottom:907.560360px;}
.yf{bottom:907.730850px;}
.y184{bottom:908.460000px;}
.y1bd{bottom:908.635500px;}
.yd6{bottom:909.893520px;}
.y63{bottom:919.980210px;}
.yf6{bottom:924.302160px;}
.y120{bottom:926.284320px;}
.y1bc{bottom:927.360000px;}
.y153{bottom:927.901080px;}
.y8f{bottom:929.159850px;}
.yb7{bottom:930.062520px;}
.yd5{bottom:932.213880px;}
.y183{bottom:932.220000px;}
.y62{bottom:942.479850px;}
.ye{bottom:946.435350px;}
.yf5{bottom:946.801800px;}
.y11f{bottom:949.321800px;}
.y152{bottom:950.400720px;}
.y1bb{bottom:951.115350px;}
.y182{bottom:951.124350px;}
.yb6{bottom:952.562160px;}
.yd4{bottom:954.354960px;}
.y8e{bottom:957.780000px;}
.yf4{bottom:969.301440px;}
.y181{bottom:969.659850px;}
.y180{bottom:969.664350px;}
.y1ba{bottom:969.839850px;}
.y1b9{bottom:969.849000px;}
.y11e{bottom:972.188490px;}
.y151{bottom:972.900360px;}
.y61{bottom:973.620000px;}
.yb5{bottom:975.061800px;}
.yd3{bottom:976.496040px;}
.yd{bottom:985.139850px;}
.y17f{bottom:988.199850px;}
.y1b8{bottom:988.384500px;}
.yf3{bottom:991.801080px;}
.y11d{bottom:995.225970px;}
.y150{bottom:995.400000px;}
.y8d{bottom:997.381440px;}
.yb4{bottom:997.561440px;}
.yd2{bottom:998.816400px;}
.y1b7{bottom:1006.920000px;}
.y17e{bottom:1011.955500px;}
.y60{bottom:1012.319850px;}
.yf2{bottom:1014.300720px;}
.y11c{bottom:1018.084170px;}
.yc{bottom:1019.684010px;}
.y8c{bottom:1019.881080px;}
.yb3{bottom:1020.061080px;}
.yd1{bottom:1020.957480px;}
.y14f{bottom:1026.360000px;}
.y17c{bottom:1030.675500px;}
.y17d{bottom:1030.680000px;}
.y1b6{bottom:1030.855500px;}
.yf1{bottom:1036.800360px;}
.yb{bottom:1039.671930px;}
.y5e{bottom:1039.860000px;}
.y11b{bottom:1041.121650px;}
.y8b{bottom:1042.380720px;}
.yb2{bottom:1042.560720px;}
.yd0{bottom:1043.098560px;}
.y17b{bottom:1049.400000px;}
.y1b5{bottom:1049.580000px;}
.y1b4{bottom:1049.584500px;}
.yf0{bottom:1059.300000px;}
.ya{bottom:1059.659850px;}
.y11a{bottom:1063.982370px;}
.y8a{bottom:1064.880360px;}
.yb1{bottom:1065.060360px;}
.ycf{bottom:1065.418920px;}
.y14e{bottom:1065.958200px;}
.y1b3{bottom:1068.120000px;}
.y17a{bottom:1073.155500px;}
.y4{bottom:1079.644350px;}
.y119{bottom:1087.019850px;}
.y89{bottom:1087.380000px;}
.yb0{bottom:1087.560000px;}
.y14d{bottom:1087.920000px;}
.yef{bottom:1089.900000px;}
.y179{bottom:1091.880000px;}
.y3{bottom:1097.639850px;}
.y2{bottom:1115.644350px;}
.y87{bottom:1117.620000px;}
.y5c{bottom:1119.060000px;}
.y1{bottom:1133.639850px;}
.y5b{bottom:1135.260000px;}
.h15{height:22.498500px;}
.h18{height:25.380000px;}
.h4{height:25.560000px;}
.h9{height:27.158400px;}
.hb{height:32.152148px;}
.h2{height:37.546875px;}
.h3{height:38.759766px;}
.h16{height:39.525804px;}
.h12{height:39.556800px;}
.h13{height:41.696528px;}
.h1a{height:43.040039px;}
.ha{height:44.280000px;}
.h24{height:46.675218px;}
.h25{height:47.344922px;}
.h8{height:47.707031px;}
.he{height:49.003200px;}
.h1b{height:49.008960px;}
.h1d{height:49.039200px;}
.h1c{height:50.366040px;}
.h22{height:50.387040px;}
.h1e{height:50.407200px;}
.h20{height:50.411520px;}
.h21{height:50.415840px;}
.h1f{height:50.423640px;}
.hf{height:50.426760px;}
.h10{height:50.427360px;}
.h17{height:50.760000px;}
.hd{height:51.855469px;}
.h5{height:52.998047px;}
.h23{height:56.320312px;}
.h14{height:58.651172px;}
.h19{height:62.327813px;}
.h6{height:70.678080px;}
.h7{height:94.895508px;}
.hc{height:380.881500px;}
.h11{height:387.000000px;}
.h0{height:1211.940000px;}
.h1{height:1212.000000px;}
.wa{width:63.720000px;}
.w9{width:63.900000px;}
.w8{width:74.340000px;}
.w5{width:78.600000px;}
.w7{width:85.138500px;}
.w6{width:206.280000px;}
.w4{width:219.058500px;}
.w2{width:335.880000px;}
.w3{width:493.378500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:6.322350px;}
.x30{left:8.280000px;}
.x31{left:11.340000px;}
.xc{left:14.940000px;}
.x33{left:16.560000px;}
.x2e{left:24.120000px;}
.x17{left:36.180000px;}
.x2c{left:52.920000px;}
.x5{left:84.937500px;}
.x6{left:87.120000px;}
.x16{left:102.240000px;}
.x7{left:114.480000px;}
.x14{left:116.460000px;}
.x18{left:126.720000px;}
.x21{left:131.400000px;}
.x1d{left:135.000000px;}
.x13{left:136.440000px;}
.x1e{left:140.040000px;}
.x1f{left:143.280000px;}
.x1a{left:146.520000px;}
.xe{left:148.680000px;}
.x25{left:152.100000px;}
.x26{left:160.500000px;}
.x20{left:162.360000px;}
.x24{left:164.160000px;}
.x11{left:209.160000px;}
.x12{left:210.240000px;}
.x15{left:216.000000px;}
.xf{left:220.140000px;}
.x19{left:226.980000px;}
.x1b{left:244.980000px;}
.xa{left:246.964500px;}
.x10{left:249.120000px;}
.x23{left:265.140000px;}
.x1c{left:282.420000px;}
.x22{left:284.220000px;}
.x49{left:304.020000px;}
.x2a{left:309.960000px;}
.xb{left:314.640000px;}
.x2b{left:324.900000px;}
.x35{left:328.140000px;}
.xd{left:329.580000px;}
.x9{left:335.880000px;}
.x3a{left:340.562880px;}
.x5e{left:357.300000px;}
.x36{left:360.904500px;}
.x60{left:374.400000px;}
.x37{left:377.266500px;}
.x34{left:378.540000px;}
.x46{left:390.600000px;}
.x43{left:394.560000px;}
.x38{left:402.997500px;}
.x5c{left:415.620000px;}
.x4e{left:423.360000px;}
.x4d{left:440.820000px;}
.x44{left:447.480000px;}
.x54{left:454.860000px;}
.x8{left:469.980000px;}
.x5f{left:484.380000px;}
.x62{left:493.560000px;}
.x4f{left:504.000000px;}
.x2d{left:520.920000px;}
.x1{left:529.920000px;}
.x42{left:532.620000px;}
.x47{left:535.500000px;}
.x50{left:536.940000px;}
.x4a{left:540.360000px;}
.x3c{left:558.900000px;}
.x61{left:602.820000px;}
.x2f{left:606.060000px;}
.x58{left:608.220000px;}
.x2{left:619.735500px;}
.x4c{left:630.360000px;}
.x3{left:678.600000px;}
.x28{left:681.300000px;}
.x3f{left:685.440000px;}
.x4{left:688.131000px;}
.x5a{left:691.380000px;}
.x51{left:694.440000px;}
.x5b{left:699.120000px;}
.x55{left:700.200000px;}
.x53{left:705.420000px;}
.x40{left:721.080000px;}
.x41{left:724.320000px;}
.x4b{left:726.840000px;}
.x57{left:734.220000px;}
.x59{left:737.460000px;}
.x32{left:744.300000px;}
.x5d{left:757.440000px;}
.x56{left:767.340000px;}
.x45{left:770.040000px;}
.x3b{left:771.480000px;}
.x3d{left:775.980000px;}
.x52{left:781.380000px;}
.x48{left:783.360000px;}
.x3e{left:788.400000px;}
.x39{left:805.500000px;}
.x29{left:807.835500px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.439467pt;}
.v3{vertical-align:18.583787pt;}
.ls48{letter-spacing:-1.434240pt;}
.lsa6{letter-spacing:-1.152000pt;}
.ls4a{letter-spacing:-1.115520pt;}
.ls49{letter-spacing:-0.903040pt;}
.ls27{letter-spacing:-0.900480pt;}
.ls46{letter-spacing:-0.883200pt;}
.lsa2{letter-spacing:-0.864000pt;}
.lsa4{letter-spacing:-0.816000pt;}
.ls3c{letter-spacing:-0.796800pt;}
.ls9d{letter-spacing:-0.768000pt;}
.ls47{letter-spacing:-0.765440pt;}
.ls7d{letter-spacing:-0.720000pt;}
.ls9a{letter-spacing:-0.672000pt;}
.ls29{letter-spacing:-0.643200pt;}
.lsa5{letter-spacing:-0.624000pt;}
.lsa3{letter-spacing:-0.607157pt;}
.ls53{letter-spacing:-0.588800pt;}
.ls3b{letter-spacing:-0.584320pt;}
.ls5c{letter-spacing:-0.576000pt;}
.ls26{letter-spacing:-0.557440pt;}
.ls99{letter-spacing:-0.556561pt;}
.ls44{letter-spacing:-0.531200pt;}
.ls67{letter-spacing:-0.529920pt;}
.ls72{letter-spacing:-0.528000pt;}
.ls73{letter-spacing:-0.505964pt;}
.ls7a{letter-spacing:-0.480000pt;}
.ls75{letter-spacing:-0.455368pt;}
.ls1a{letter-spacing:-0.432000pt;}
.ls98{letter-spacing:-0.404772pt;}
.ls2d{letter-spacing:-0.385920pt;}
.ls1d{letter-spacing:-0.384000pt;}
.ls9c{letter-spacing:-0.354175pt;}
.ls57{letter-spacing:-0.353280pt;}
.ls79{letter-spacing:-0.336000pt;}
.ls97{letter-spacing:-0.303579pt;}
.ls28{letter-spacing:-0.300160pt;}
.ls17{letter-spacing:-0.296960pt;}
.ls14{letter-spacing:-0.294400pt;}
.lse{letter-spacing:-0.288000pt;}
.ls2c{letter-spacing:-0.271197pt;}
.ls21{letter-spacing:-0.265600pt;}
.ls31{letter-spacing:-0.257280pt;}
.ls77{letter-spacing:-0.252982pt;}
.lsd{letter-spacing:-0.240000pt;}
.ls15{letter-spacing:-0.235520pt;}
.ls12{letter-spacing:-0.234240pt;}
.ls19{letter-spacing:-0.222720pt;}
.ls30{letter-spacing:-0.214400pt;}
.ls55{letter-spacing:-0.212480pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.176640pt;}
.ls2e{letter-spacing:-0.171520pt;}
.ls20{letter-spacing:-0.159360pt;}
.ls9e{letter-spacing:-0.151789pt;}
.lsa{letter-spacing:-0.144000pt;}
.ls2f{letter-spacing:-0.128640pt;}
.ls56{letter-spacing:-0.128000pt;}
.ls68{letter-spacing:-0.117760pt;}
.ls10{letter-spacing:-0.117120pt;}
.ls22{letter-spacing:-0.106240pt;}
.lsf{letter-spacing:-0.096000pt;}
.ls1e{letter-spacing:-0.064000pt;}
.ls58{letter-spacing:-0.058880pt;}
.ls37{letter-spacing:-0.053120pt;}
.ls74{letter-spacing:-0.050596pt;}
.ls7b{letter-spacing:-0.048000pt;}
.ls2b{letter-spacing:-0.045199pt;}
.ls25{letter-spacing:-0.042880pt;}
.lsc{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.042880pt;}
.ls2{letter-spacing:0.048000pt;}
.ls76{letter-spacing:0.050596pt;}
.ls1f{letter-spacing:0.053120pt;}
.ls18{letter-spacing:0.058880pt;}
.ls36{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.085760pt;}
.ls1b{letter-spacing:0.096000pt;}
.ls23{letter-spacing:0.106240pt;}
.ls11{letter-spacing:0.117120pt;}
.ls13{letter-spacing:0.117760pt;}
.ls1c{letter-spacing:0.144000pt;}
.ls9b{letter-spacing:0.151789pt;}
.ls3a{letter-spacing:0.159360pt;}
.ls7c{letter-spacing:0.192000pt;}
.ls65{letter-spacing:0.195840pt;}
.ls78{letter-spacing:0.202386pt;}
.ls38{letter-spacing:0.212480pt;}
.ls7{letter-spacing:0.235840pt;}
.ls51{letter-spacing:0.240000pt;}
.ls96{letter-spacing:0.252982pt;}
.ls5{letter-spacing:0.257280pt;}
.ls5a{letter-spacing:0.268032pt;}
.ls1{letter-spacing:0.288000pt;}
.ls8f{letter-spacing:0.303579pt;}
.ls45{letter-spacing:0.320000pt;}
.ls69{letter-spacing:0.336000pt;}
.ls52{letter-spacing:0.353280pt;}
.ls33{letter-spacing:0.371840pt;}
.ls66{letter-spacing:0.416000pt;}
.ls42{letter-spacing:0.478080pt;}
.ls3e{letter-spacing:0.499328pt;}
.ls34{letter-spacing:0.531200pt;}
.ls94{letter-spacing:0.576000pt;}
.ls81{letter-spacing:0.586919pt;}
.ls6{letter-spacing:0.600320pt;}
.ls35{letter-spacing:0.637440pt;}
.ls4e{letter-spacing:0.672000pt;}
.ls24{letter-spacing:0.686080pt;}
.ls62{letter-spacing:0.690560pt;}
.ls54{letter-spacing:0.743680pt;}
.ls4c{letter-spacing:0.768000pt;}
.ls3f{letter-spacing:0.784000pt;}
.ls59{letter-spacing:0.786176pt;}
.ls60{letter-spacing:0.802112pt;}
.ls39{letter-spacing:0.849920pt;}
.ls5e{letter-spacing:0.855232pt;}
.ls50{letter-spacing:0.864000pt;}
.ls4b{letter-spacing:0.903040pt;}
.ls4d{letter-spacing:0.912000pt;}
.ls82{letter-spacing:0.944000pt;}
.ls4f{letter-spacing:0.960000pt;}
.ls93{letter-spacing:1.209600pt;}
.ls6e{letter-spacing:1.228800pt;}
.ls9f{letter-spacing:1.233600pt;}
.ls8b{letter-spacing:1.238400pt;}
.ls32{letter-spacing:1.242546pt;}
.ls6d{letter-spacing:1.248000pt;}
.ls3{letter-spacing:1.274880pt;}
.ls95{letter-spacing:1.315508pt;}
.ls61{letter-spacing:1.381120pt;}
.ls71{letter-spacing:1.872000pt;}
.ls8c{letter-spacing:1.891200pt;}
.ls63{letter-spacing:1.912320pt;}
.ls8a{letter-spacing:2.481600pt;}
.ls80{letter-spacing:2.496000pt;}
.ls6c{letter-spacing:3.153600pt;}
.ls6b{letter-spacing:3.168000pt;}
.ls5d{letter-spacing:3.187200pt;}
.lsa1{letter-spacing:3.339365pt;}
.ls92{letter-spacing:3.758400pt;}
.ls90{letter-spacing:3.777600pt;}
.ls8d{letter-spacing:3.792000pt;}
.ls5b{letter-spacing:3.824640pt;}
.ls64{letter-spacing:4.416000pt;}
.ls3d{letter-spacing:4.462080pt;}
.ls8e{letter-spacing:4.464000pt;}
.ls7e{letter-spacing:4.654873pt;}
.ls85{letter-spacing:5.088000pt;}
.ls86{letter-spacing:5.712000pt;}
.ls5f{letter-spacing:5.736960pt;}
.ls88{letter-spacing:6.336000pt;}
.lsa0{letter-spacing:6.955200pt;}
.ls87{letter-spacing:7.008000pt;}
.ls89{letter-spacing:7.632000pt;}
.ls84{letter-spacing:8.913600pt;}
.ls83{letter-spacing:8.928000pt;}
.ls91{letter-spacing:9.552000pt;}
.ls8{letter-spacing:10.785920pt;}
.ls9{letter-spacing:12.960000pt;}
.ls6f{letter-spacing:13.987200pt;}
.ls70{letter-spacing:14.016000pt;}
.ls43{letter-spacing:15.936000pt;}
.ls7f{letter-spacing:38.496000pt;}
.ls6a{letter-spacing:41.040000pt;}
.ls0{letter-spacing:47.784960pt;}
.ls40{letter-spacing:343.008000pt;}
.ls41{letter-spacing:430.656000pt;}
.ws80{word-spacing:-53.120000pt;}
.ws14{word-spacing:-14.016000pt;}
.ws90{word-spacing:-13.952000pt;}
.wsab{word-spacing:-13.439360pt;}
.ws7d{word-spacing:-13.306880pt;}
.ws77{word-spacing:-13.173760pt;}
.ws78{word-spacing:-13.014400pt;}
.ws7e{word-spacing:-13.012480pt;}
.ws6{word-spacing:-12.953600pt;}
.ws16{word-spacing:-12.908160pt;}
.ws60{word-spacing:-12.801920pt;}
.ws8{word-spacing:-12.776960pt;}
.ws5e{word-spacing:-12.748800pt;}
.ws2{word-spacing:-12.659200pt;}
.ws8f{word-spacing:-12.642560pt;}
.ws5f{word-spacing:-12.536320pt;}
.ws7a{word-spacing:-12.528000pt;}
.wsdf{word-spacing:-12.497321pt;}
.wse0{word-spacing:-12.446725pt;}
.ws7b{word-spacing:-12.432000pt;}
.wsd4{word-spacing:-12.396128pt;}
.ws7f{word-spacing:-12.364800pt;}
.wse6{word-spacing:-12.345532pt;}
.wsd2{word-spacing:-12.244339pt;}
.ws79{word-spacing:-12.240000pt;}
.ws75{word-spacing:-12.188160pt;}
.wsd0{word-spacing:-12.143146pt;}
.wse9{word-spacing:-12.041953pt;}
.wsd3{word-spacing:-11.940760pt;}
.wscb{word-spacing:-11.904000pt;}
.ws76{word-spacing:-11.898880pt;}
.wse1{word-spacing:-11.890164pt;}
.wsd{word-spacing:-11.856000pt;}
.wse7{word-spacing:-11.839568pt;}
.wsce{word-spacing:-11.808000pt;}
.wse3{word-spacing:-11.788971pt;}
.wsda{word-spacing:-11.760000pt;}
.wsd1{word-spacing:-11.738375pt;}
.ws12{word-spacing:-11.712000pt;}
.wscf{word-spacing:-11.687778pt;}
.ws10{word-spacing:-11.664000pt;}
.wse4{word-spacing:-11.637182pt;}
.ws8e{word-spacing:-11.633280pt;}
.wscc{word-spacing:-11.616000pt;}
.wsf2{word-spacing:-11.586585pt;}
.ws11{word-spacing:-11.568000pt;}
.wsd9{word-spacing:-11.520000pt;}
.wsd8{word-spacing:-11.424000pt;}
.ws81{word-spacing:-11.420800pt;}
.wsd7{word-spacing:-11.376000pt;}
.ws7c{word-spacing:-11.328000pt;}
.wse{word-spacing:-11.280000pt;}
.wsd5{word-spacing:-11.232000pt;}
.ws13{word-spacing:-11.184000pt;}
.wsf{word-spacing:-11.136000pt;}
.wsd6{word-spacing:-11.088000pt;}
.wscd{word-spacing:-11.040000pt;}
.wse2{word-spacing:-10.992000pt;}
.wsf4{word-spacing:-10.944000pt;}
.ws1c{word-spacing:-10.934400pt;}
.wse5{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.848000pt;}
.wse8{word-spacing:-10.800000pt;}
.wsf3{word-spacing:-10.752000pt;}
.wsf1{word-spacing:-10.704000pt;}
.ws1{word-spacing:-10.608000pt;}
.ws1b{word-spacing:-10.591360pt;}
.ws22{word-spacing:-10.569920pt;}
.wsf5{word-spacing:-10.416000pt;}
.ws17{word-spacing:-10.334080pt;}
.ws1d{word-spacing:-10.291200pt;}
.ws1f{word-spacing:-10.205440pt;}
.ws1e{word-spacing:-10.162560pt;}
.ws20{word-spacing:-10.119680pt;}
.ws21{word-spacing:-10.076800pt;}
.ws19{word-spacing:-10.033920pt;}
.ws1a{word-spacing:-9.948160pt;}
.ws18{word-spacing:-9.433600pt;}
.ws4{word-spacing:-8.166400pt;}
.ws9{word-spacing:-7.943680pt;}
.wsb{word-spacing:-7.869440pt;}
.ws15{word-spacing:-7.712000pt;}
.wsc{word-spacing:-7.095040pt;}
.ws6d{word-spacing:-3.187200pt;}
.ws62{word-spacing:-3.027840pt;}
.ws6f{word-spacing:-2.656000pt;}
.ws46{word-spacing:-2.602880pt;}
.ws47{word-spacing:-2.549760pt;}
.wsa3{word-spacing:-2.443520pt;}
.ws41{word-spacing:-2.390400pt;}
.wsa6{word-spacing:-2.256000pt;}
.ws55{word-spacing:-1.972480pt;}
.ws5d{word-spacing:-1.970934pt;}
.ws9c{word-spacing:-1.965440pt;}
.ws93{word-spacing:-1.912320pt;}
.ws48{word-spacing:-1.752960pt;}
.wsa5{word-spacing:-1.584000pt;}
.wsc3{word-spacing:-1.530880pt;}
.wsa8{word-spacing:-1.488000pt;}
.wsb2{word-spacing:-1.274880pt;}
.wsc2{word-spacing:-1.236480pt;}
.wsdc{word-spacing:-1.168640pt;}
.ws4b{word-spacing:-1.115520pt;}
.wsa1{word-spacing:-1.009280pt;}
.ws35{word-spacing:-0.960000pt;}
.ws33{word-spacing:-0.883200pt;}
.ws72{word-spacing:-0.849920pt;}
.ws87{word-spacing:-0.796800pt;}
.ws97{word-spacing:-0.637440pt;}
.ws4d{word-spacing:-0.600320pt;}
.wsbf{word-spacing:-0.531200pt;}
.ws9b{word-spacing:-0.529920pt;}
.ws58{word-spacing:-0.497194pt;}
.ws3d{word-spacing:-0.478080pt;}
.wsef{word-spacing:-0.455368pt;}
.wsa7{word-spacing:-0.432000pt;}
.wsb5{word-spacing:-0.371840pt;}
.ws2c{word-spacing:-0.351360pt;}
.ws39{word-spacing:-0.336000pt;}
.ws83{word-spacing:-0.320000pt;}
.wsee{word-spacing:-0.303579pt;}
.ws2f{word-spacing:-0.294400pt;}
.ws37{word-spacing:-0.288000pt;}
.ws32{word-spacing:-0.235520pt;}
.ws6a{word-spacing:-0.212480pt;}
.ws38{word-spacing:-0.192000pt;}
.ws73{word-spacing:-0.159360pt;}
.ws36{word-spacing:-0.144000pt;}
.ws99{word-spacing:-0.117760pt;}
.ws2b{word-spacing:-0.117120pt;}
.ws8d{word-spacing:-0.106240pt;}
.ws34{word-spacing:-0.096000pt;}
.ws4f{word-spacing:-0.085760pt;}
.ws61{word-spacing:-0.064000pt;}
.ws84{word-spacing:-0.058880pt;}
.ws3c{word-spacing:-0.053120pt;}
.ws57{word-spacing:-0.045199pt;}
.ws5b{word-spacing:-0.042880pt;}
.ws25{word-spacing:0.000000pt;}
.ws4e{word-spacing:0.042880pt;}
.ws2a{word-spacing:0.048000pt;}
.ws94{word-spacing:0.053120pt;}
.ws30{word-spacing:0.058880pt;}
.ws28{word-spacing:0.096000pt;}
.ws8b{word-spacing:0.106240pt;}
.ws2d{word-spacing:0.117120pt;}
.wsc6{word-spacing:0.117760pt;}
.ws98{word-spacing:0.128000pt;}
.ws5c{word-spacing:0.128640pt;}
.ws40{word-spacing:0.159360pt;}
.ws5a{word-spacing:0.171520pt;}
.ws9a{word-spacing:0.176640pt;}
.ws23{word-spacing:0.192000pt;}
.ws59{word-spacing:0.214400pt;}
.ws2e{word-spacing:0.234240pt;}
.ws31{word-spacing:0.235520pt;}
.ws24{word-spacing:0.240000pt;}
.ws95{word-spacing:0.265600pt;}
.ws26{word-spacing:0.288000pt;}
.wsc4{word-spacing:0.294400pt;}
.ws27{word-spacing:0.336000pt;}
.ws88{word-spacing:0.371840pt;}
.ws3a{word-spacing:0.384000pt;}
.ws89{word-spacing:0.480000pt;}
.wsc5{word-spacing:0.529920pt;}
.wsb7{word-spacing:0.531200pt;}
.ws50{word-spacing:0.557440pt;}
.wsa9{word-spacing:0.576000pt;}
.ws82{word-spacing:0.584320pt;}
.ws8a{word-spacing:0.588800pt;}
.ws54{word-spacing:0.600320pt;}
.ws3f{word-spacing:0.637440pt;}
.ws52{word-spacing:0.643200pt;}
.wsb8{word-spacing:0.743680pt;}
.ws8c{word-spacing:0.765440pt;}
.ws66{word-spacing:0.796800pt;}
.ws85{word-spacing:0.883200pt;}
.ws3e{word-spacing:0.903040pt;}
.wsb0{word-spacing:1.062400pt;}
.ws69{word-spacing:1.168640pt;}
.ws42{word-spacing:1.221760pt;}
.ws56{word-spacing:1.243520pt;}
.ws44{word-spacing:1.274880pt;}
.ws43{word-spacing:1.381120pt;}
.ws63{word-spacing:1.434240pt;}
.wsca{word-spacing:1.540480pt;}
.wsec{word-spacing:1.568490pt;}
.wsf0{word-spacing:1.728000pt;}
.ws4c{word-spacing:1.800960pt;}
.ws96{word-spacing:1.806080pt;}
.ws3b{word-spacing:1.859200pt;}
.wsb1{word-spacing:1.912320pt;}
.ws68{word-spacing:2.071680pt;}
.wsea{word-spacing:2.304000pt;}
.wsb3{word-spacing:2.337280pt;}
.wsde{word-spacing:2.352000pt;}
.wsbd{word-spacing:2.496640pt;}
.wsae{word-spacing:2.549760pt;}
.wsc0{word-spacing:2.656000pt;}
.ws6c{word-spacing:2.709120pt;}
.wsa2{word-spacing:2.815360pt;}
.wsaf{word-spacing:3.080960pt;}
.wsa0{word-spacing:3.134080pt;}
.ws92{word-spacing:3.187200pt;}
.ws6b{word-spacing:3.240320pt;}
.ws49{word-spacing:3.293440pt;}
.ws4a{word-spacing:3.346560pt;}
.wsb4{word-spacing:3.452800pt;}
.wsbc{word-spacing:3.612160pt;}
.ws9f{word-spacing:3.718400pt;}
.wsa4{word-spacing:3.771520pt;}
.ws9d{word-spacing:3.824640pt;}
.ws70{word-spacing:3.877760pt;}
.ws67{word-spacing:3.930880pt;}
.ws71{word-spacing:3.984000pt;}
.wsaa{word-spacing:4.032000pt;}
.wsc9{word-spacing:4.080000pt;}
.wsba{word-spacing:4.090240pt;}
.wsc8{word-spacing:4.272000pt;}
.ws53{word-spacing:4.330880pt;}
.wsed{word-spacing:4.351294pt;}
.wsdb{word-spacing:4.355840pt;}
.ws86{word-spacing:4.408960pt;}
.ws65{word-spacing:4.462080pt;}
.wsac{word-spacing:4.568320pt;}
.ws64{word-spacing:4.621440pt;}
.wsc7{word-spacing:4.800000pt;}
.wsbb{word-spacing:4.993280pt;}
.ws6e{word-spacing:5.258880pt;}
.wsb6{word-spacing:5.736960pt;}
.wsb9{word-spacing:5.790080pt;}
.wsad{word-spacing:5.843200pt;}
.ws91{word-spacing:5.896320pt;}
.wseb{word-spacing:6.273959pt;}
.ws74{word-spacing:6.321280pt;}
.wsc1{word-spacing:6.374400pt;}
.ws9e{word-spacing:6.533760pt;}
.wsdd{word-spacing:7.224320pt;}
.wsbe{word-spacing:8.871040pt;}
.ws45{word-spacing:11.048960pt;}
.ws51{word-spacing:11.491840pt;}
.ws29{word-spacing:13.488000pt;}
.ws3{word-spacing:40.280320pt;}
.ws7{word-spacing:40.857856pt;}
.ws5{word-spacing:40.865280pt;}
.wsa{word-spacing:40.870656pt;}
._1b{margin-left:-6.716800pt;}
._1d{margin-left:-3.083200pt;}
._15{margin-left:-2.096000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.358400pt;}
._18{width:2.537600pt;}
._7{width:3.644800pt;}
._17{width:4.576000pt;}
._b{width:5.494080pt;}
._19{width:6.612800pt;}
._1a{width:7.603200pt;}
._1c{width:10.657600pt;}
._8{width:12.006400pt;}
._16{width:13.323520pt;}
._14{width:14.683840pt;}
._5{width:15.682880pt;}
._4{width:33.310080pt;}
._6{width:48.250048pt;}
._f{width:175.353600pt;}
._e{width:180.096000pt;}
._11{width:191.616000pt;}
._d{width:210.816000pt;}
._c{width:236.832000pt;}
._10{width:249.216000pt;}
._12{width:292.224000pt;}
._9{width:298.787840pt;}
._2{width:314.577600pt;}
._13{width:349.968000pt;}
._a{width:630.048000pt;}
._3{width:683.520000pt;}
.fs4{font-size:29.440000pt;}
.fs8{font-size:32.000000pt;}
.fs3{font-size:37.120000pt;}
.fsa{font-size:42.846400pt;}
.fs5{font-size:42.880000pt;}
.fs9{font-size:45.199489pt;}
.fs0{font-size:48.000000pt;}
.fsb{font-size:50.596443pt;}
.fs7{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:4.960000pt;}
.y5a{bottom:7.342000pt;}
.y7{bottom:7.360000pt;}
.y99{bottom:7.520000pt;}
.y5f{bottom:29.919867pt;}
.y57{bottom:38.400000pt;}
.y32{bottom:41.600000pt;}
.y55{bottom:53.120000pt;}
.y9{bottom:59.200000pt;}
.y53{bottom:67.679867pt;}
.y6{bottom:70.400000pt;}
.y8{bottom:77.760000pt;}
.y51{bottom:82.400000pt;}
.y88{bottom:96.960000pt;}
.y5d{bottom:96.964000pt;}
.y5{bottom:96.967867pt;}
.y4f{bottom:97.120000pt;}
.y4d{bottom:111.840000pt;}
.y134{bottom:117.120000pt;}
.y86{bottom:117.771387pt;}
.y14c{bottom:118.077440pt;}
.yce{bottom:118.239040pt;}
.y118{bottom:118.403840pt;}
.yaf{bottom:118.876480pt;}
.yee{bottom:119.056000pt;}
.y12f{bottom:119.360000pt;}
.y1b2{bottom:123.200000pt;}
.y1b1{bottom:123.203867pt;}
.y178{bottom:124.160000pt;}
.y4c{bottom:126.400000pt;}
.y1f{bottom:127.360000pt;}
.yed{bottom:135.532000pt;}
.y35{bottom:136.000000pt;}
.y14b{bottom:137.758400pt;}
.y85{bottom:137.771067pt;}
.ycd{bottom:137.918720pt;}
.yae{bottom:137.920000pt;}
.y117{bottom:138.722240pt;}
.y1b0{bottom:139.679867pt;}
.y4a{bottom:141.120000pt;}
.y177{bottom:145.280000pt;}
.y58{bottom:150.400000pt;}
.y59{bottom:150.405333pt;}
.y33{bottom:150.560000pt;}
.yec{bottom:152.008000pt;}
.y48{bottom:155.839867pt;}
.y14a{bottom:157.276480pt;}
.ycc{bottom:157.759040pt;}
.y84{bottom:157.770747pt;}
.y116{bottom:159.213120pt;}
.y1af{bottom:161.120000pt;}
.y1ae{bottom:161.124000pt;}
.yad{bottom:161.759867pt;}
.y176{bottom:166.560000pt;}
.yeb{bottom:168.484000pt;}
.y31{bottom:168.954880pt;}
.y46{bottom:170.560000pt;}
.y149{bottom:176.957440pt;}
.ycb{bottom:177.440000pt;}
.y83{bottom:177.770427pt;}
.y1ad{bottom:178.080000pt;}
.y115{bottom:179.531520pt;}
.y175{bottom:183.360000pt;}
.y174{bottom:183.368000pt;}
.yea{bottom:184.960000pt;}
.y45{bottom:185.120000pt;}
.y30{bottom:187.360960pt;}
.y29{bottom:188.319867pt;}
.y56{bottom:189.120000pt;}
.y1ac{bottom:194.880000pt;}
.yac{bottom:195.681787pt;}
.y148{bottom:196.479040pt;}
.y82{bottom:197.770107pt;}
.y43{bottom:199.839867pt;}
.y173{bottom:199.844000pt;}
.y114{bottom:200.009280pt;}
.y54{bottom:203.679867pt;}
.yca{bottom:204.640507pt;}
.ye9{bottom:204.960000pt;}
.y2f{bottom:205.594400pt;}
.y41{bottom:214.560000pt;}
.yab{bottom:215.681467pt;}
.y147{bottom:216.157440pt;}
.y1ab{bottom:216.480000pt;}
.y81{bottom:217.769787pt;}
.y52{bottom:218.400000pt;}
.y113{bottom:220.327680pt;}
.y172{bottom:220.964000pt;}
.yc9{bottom:221.759867pt;}
.y2e{bottom:224.000480pt;}
.y40{bottom:229.280000pt;}
.y50{bottom:233.120000pt;}
.y1aa{bottom:233.440000pt;}
.y146{bottom:235.679040pt;}
.yaa{bottom:235.681147pt;}
.y80{bottom:237.769467pt;}
.y112{bottom:240.805440pt;}
.y171{bottom:242.240000pt;}
.y2d{bottom:242.406560pt;}
.y25{bottom:243.360000pt;}
.y3f{bottom:243.839867pt;}
.yc8{bottom:247.200000pt;}
.y4e{bottom:247.840000pt;}
.y1a9{bottom:250.240000pt;}
.y145{bottom:255.354747pt;}
.ya9{bottom:255.680827pt;}
.y7f{bottom:257.769147pt;}
.y3e{bottom:258.560000pt;}
.y170{bottom:258.884000pt;}
.y2c{bottom:260.633920pt;}
.y111{bottom:261.123840pt;}
.y1a8{bottom:271.844000pt;}
.y3c{bottom:273.280000pt;}
.y144{bottom:274.876347pt;}
.ya8{bottom:275.680507pt;}
.y4b{bottom:277.120000pt;}
.y7e{bottom:277.768827pt;}
.y2b{bottom:279.033920pt;}
.y16f{bottom:280.160000pt;}
.y110{bottom:281.601600pt;}
.yc7{bottom:282.382400pt;}
.y3a{bottom:287.840000pt;}
.y1a7{bottom:288.800000pt;}
.y1a6{bottom:288.804000pt;}
.y49{bottom:291.839867pt;}
.y143{bottom:294.557307pt;}
.ya7{bottom:295.680187pt;}
.y16e{bottom:296.804000pt;}
.y2a{bottom:297.440000pt;}
.y7d{bottom:297.768507pt;}
.y21{bottom:298.400000pt;}
.y10f{bottom:301.920000pt;}
.yc6{bottom:302.063360pt;}
.y38{bottom:302.560000pt;}
.y1a5{bottom:305.604000pt;}
.y47{bottom:306.560000pt;}
.y16d{bottom:313.280000pt;}
.y142{bottom:314.078907pt;}
.y28{bottom:315.667840pt;}
.ya6{bottom:315.679867pt;}
.y36{bottom:317.280000pt;}
.y7c{bottom:317.768187pt;}
.yc5{bottom:321.744320pt;}
.y1a4{bottom:322.560000pt;}
.y20{bottom:323.360000pt;}
.y10e{bottom:329.600000pt;}
.y141{bottom:333.758400pt;}
.y27{bottom:334.073920pt;}
.y16c{bottom:334.400000pt;}
.y44{bottom:335.839867pt;}
.y7b{bottom:337.767867pt;}
.yc4{bottom:341.584640pt;}
.ya5{bottom:343.040000pt;}
.y1a3{bottom:344.160000pt;}
.y42{bottom:350.560000pt;}
.y26{bottom:352.480000pt;}
.y140{bottom:353.272000pt;}
.y16b{bottom:355.679867pt;}
.y16a{bottom:355.684000pt;}
.y12e{bottom:357.600000pt;}
.y7a{bottom:357.767547pt;}
.y1a2{bottom:360.960000pt;}
.yc3{bottom:361.265600pt;}
.y10d{bottom:363.518400pt;}
.y12d{bottom:363.679867pt;}
.y24{bottom:370.707840pt;}
.y169{bottom:372.484000pt;}
.y13f{bottom:372.952960pt;}
.ya4{bottom:376.961280pt;}
.y79{bottom:377.767227pt;}
.yc2{bottom:380.149760pt;}
.y1a1{bottom:382.240000pt;}
.y10c{bottom:383.518080pt;}
.y168{bottom:388.960000pt;}
.y23{bottom:389.113920pt;}
.y13e{bottom:392.474560pt;}
.ya3{bottom:396.960960pt;}
.y78{bottom:397.766907pt;}
.y1a0{bottom:399.040000pt;}
.y10b{bottom:403.358400pt;}
.y22{bottom:407.520000pt;}
.y3d{bottom:409.280000pt;}
.y167{bottom:410.076000pt;}
.y13d{bottom:411.040000pt;}
.yc1{bottom:412.632640pt;}
.y19f{bottom:415.536000pt;}
.ya2{bottom:416.960640pt;}
.y77{bottom:417.766587pt;}
.y10a{bottom:423.198720pt;}
.y3b{bottom:423.840000pt;}
.y166{bottom:426.720000pt;}
.y165{bottom:426.724000pt;}
.y13c{bottom:428.004000pt;}
.ye8{bottom:431.522400pt;}
.y19e{bottom:432.012000pt;}
.yc0{bottom:432.313600pt;}
.ya1{bottom:436.960320pt;}
.y76{bottom:437.766267pt;}
.y39{bottom:438.560000pt;}
.y109{bottom:443.039040pt;}
.y164{bottom:443.200000pt;}
.y13b{bottom:444.480000pt;}
.ye7{bottom:448.002880pt;}
.y19d{bottom:448.488000pt;}
.ybf{bottom:452.153920pt;}
.y37{bottom:453.280000pt;}
.ya0{bottom:456.960000pt;}
.y75{bottom:457.765947pt;}
.y108{bottom:462.879360pt;}
.y13a{bottom:464.480000pt;}
.y19c{bottom:464.964000pt;}
.y163{bottom:466.880000pt;}
.ye6{bottom:468.002560pt;}
.ybe{bottom:471.834880pt;}
.y1d2{bottom:473.760000pt;}
.y74{bottom:477.765627pt;}
.y1e{bottom:482.563840pt;}
.y107{bottom:482.719680pt;}
.y9f{bottom:484.160000pt;}
.y19a{bottom:486.236000pt;}
.y19b{bottom:486.240000pt;}
.ye5{bottom:488.002240pt;}
.y1d1{bottom:488.495200pt;}
.ybd{bottom:491.515840pt;}
.y1d{bottom:496.800000pt;}
.y73{bottom:497.765307pt;}
.y1d0{bottom:500.651680pt;}
.y162{bottom:502.080000pt;}
.y106{bottom:502.719360pt;}
.y199{bottom:502.880000pt;}
.y198{bottom:502.888000pt;}
.ye4{bottom:508.001920pt;}
.y1c{bottom:508.160000pt;}
.ybc{bottom:510.400000pt;}
.y1cf{bottom:512.968960pt;}
.y72{bottom:517.764987pt;}
.y197{bottom:519.364000pt;}
.y9e{bottom:522.408000pt;}
.y105{bottom:522.559680pt;}
.y1ce{bottom:525.286240pt;}
.ye3{bottom:528.001600pt;}
.y1b{bottom:529.124000pt;}
.y161{bottom:529.600000pt;}
.y196{bottom:535.840000pt;}
.y1cd{bottom:537.442720pt;}
.y71{bottom:537.764667pt;}
.y133{bottom:538.560000pt;}
.y104{bottom:542.400000pt;}
.ybb{bottom:543.520000pt;}
.y132{bottom:544.640000pt;}
.y9d{bottom:544.968000pt;}
.ye2{bottom:548.001280pt;}
.y1a{bottom:549.600000pt;}
.y1cc{bottom:549.760000pt;}
.y195{bottom:556.960000pt;}
.y70{bottom:557.764347pt;}
.y19{bottom:562.084000pt;}
.y103{bottom:562.240320pt;}
.yba{bottom:563.520000pt;}
.y160{bottom:564.802240pt;}
.y9c{bottom:567.684000pt;}
.ye1{bottom:568.000960pt;}
.y1cb{bottom:568.968000pt;}
.y194{bottom:573.760000pt;}
.y193{bottom:573.764000pt;}
.y6f{bottom:577.764027pt;}
.y102{bottom:582.080640pt;}
.y18{bottom:582.560000pt;}
.y12c{bottom:582.584160pt;}
.y15f{bottom:584.801920pt;}
.ye0{bottom:588.000640pt;}
.y192{bottom:590.240000pt;}
.y191{bottom:590.244000pt;}
.y9b{bottom:590.400000pt;}
.y17{bottom:595.204000pt;}
.y6e{bottom:597.763707pt;}
.y12b{bottom:599.064640pt;}
.y101{bottom:601.920960pt;}
.y15e{bottom:604.801600pt;}
.y190{bottom:606.720000pt;}
.y1ca{bottom:606.888000pt;}
.ydf{bottom:608.000320pt;}
.y9a{bottom:612.960000pt;}
.y16{bottom:615.680000pt;}
.y6d{bottom:617.763387pt;}
.y12a{bottom:619.383040pt;}
.y100{bottom:621.920640pt;}
.y1c9{bottom:623.364000pt;}
.y15d{bottom:624.801280pt;}
.y18f{bottom:627.840000pt;}
.yde{bottom:628.001600pt;}
.y98{bottom:628.480000pt;}
.y15{bottom:632.160000pt;}
.y6c{bottom:637.763067pt;}
.y129{bottom:639.860800pt;}
.yff{bottom:641.760960pt;}
.y18e{bottom:644.476000pt;}
.y1c8{bottom:644.640000pt;}
.y14{bottom:644.644000pt;}
.y15c{bottom:644.800960pt;}
.ydd{bottom:648.001280pt;}
.y6b{bottom:657.762747pt;}
.y128{bottom:660.179200pt;}
.y18d{bottom:661.120000pt;}
.yfe{bottom:661.601280pt;}
.y97{bottom:664.160000pt;}
.y15b{bottom:664.800640pt;}
.y13{bottom:665.120000pt;}
.y1c6{bottom:665.916000pt;}
.y1c7{bottom:665.920000pt;}
.ydc{bottom:668.000960pt;}
.y6a{bottom:677.762427pt;}
.y127{bottom:680.656960pt;}
.y96{bottom:681.282587pt;}
.yfd{bottom:681.600960pt;}
.y18c{bottom:682.236000pt;}
.y1c5{bottom:682.560000pt;}
.y1c4{bottom:682.564000pt;}
.y15a{bottom:684.800320pt;}
.ydb{bottom:688.000640pt;}
.y12{bottom:692.320000pt;}
.y69{bottom:697.762107pt;}
.y95{bottom:698.561600pt;}
.y18b{bottom:698.880000pt;}
.y1c3{bottom:699.040000pt;}
.y126{bottom:700.975360pt;}
.yfc{bottom:701.600640pt;}
.y139{bottom:704.320640pt;}
.y159{bottom:704.802880pt;}
.yda{bottom:708.000320pt;}
.y11{bottom:710.720000pt;}
.y68{bottom:717.761787pt;}
.y94{bottom:718.561280pt;}
.y18a{bottom:719.996000pt;}
.y1c2{bottom:720.160000pt;}
.y138{bottom:721.440000pt;}
.y125{bottom:721.453120pt;}
.yfb{bottom:721.600320pt;}
.y158{bottom:724.802560pt;}
.yd9{bottom:728.000000pt;}
.y188{bottom:736.636000pt;}
.y189{bottom:736.640000pt;}
.y1c1{bottom:736.964000pt;}
.y67{bottom:737.761467pt;}
.y93{bottom:738.560960pt;}
.yfa{bottom:741.603200pt;}
.y124{bottom:741.771520pt;}
.y157{bottom:744.802240pt;}
.y187{bottom:753.280000pt;}
.y1c0{bottom:753.440000pt;}
.yd8{bottom:755.360000pt;}
.y137{bottom:756.004000pt;}
.y66{bottom:757.761147pt;}
.y92{bottom:758.560640pt;}
.yf9{bottom:761.602880pt;}
.y123{bottom:762.249280pt;}
.y156{bottom:764.801920pt;}
.y10{bottom:772.467867pt;}
.y136{bottom:772.480000pt;}
.y131{bottom:773.759867pt;}
.y186{bottom:774.400000pt;}
.y1bf{bottom:774.556000pt;}
.y65{bottom:777.760827pt;}
.y91{bottom:778.560320pt;}
.y130{bottom:779.679867pt;}
.yf8{bottom:781.602560pt;}
.y122{bottom:782.567680pt;}
.y155{bottom:784.801600pt;}
.yd7{bottom:789.113280pt;}
.yb9{bottom:790.239840pt;}
.y185{bottom:791.044000pt;}
.y1be{bottom:791.200000pt;}
.y135{bottom:792.480000pt;}
.y64{bottom:797.760507pt;}
.y90{bottom:798.560000pt;}
.yf7{bottom:801.602240pt;}
.y121{bottom:803.045440pt;}
.y154{bottom:804.801280pt;}
.yb8{bottom:806.720320pt;}
.yf{bottom:806.871867pt;}
.y184{bottom:807.520000pt;}
.y1bd{bottom:807.676000pt;}
.yd6{bottom:808.794240pt;}
.y63{bottom:817.760187pt;}
.yf6{bottom:821.601920pt;}
.y120{bottom:823.363840pt;}
.y1bc{bottom:824.320000pt;}
.y153{bottom:824.800960pt;}
.y8f{bottom:825.919867pt;}
.yb7{bottom:826.722240pt;}
.yd5{bottom:828.634560pt;}
.y183{bottom:828.640000pt;}
.y62{bottom:837.759867pt;}
.ye{bottom:841.275867pt;}
.yf5{bottom:841.601600pt;}
.y11f{bottom:843.841600pt;}
.y152{bottom:844.800640pt;}
.y1bb{bottom:845.435867pt;}
.y182{bottom:845.443867pt;}
.yb6{bottom:846.721920pt;}
.yd4{bottom:848.315520pt;}
.y8e{bottom:851.360000pt;}
.yf4{bottom:861.601280pt;}
.y181{bottom:861.919867pt;}
.y180{bottom:861.923867pt;}
.y1ba{bottom:862.079867pt;}
.y1b9{bottom:862.088000pt;}
.y11e{bottom:864.167547pt;}
.y151{bottom:864.800320pt;}
.y61{bottom:865.440000pt;}
.yb5{bottom:866.721600pt;}
.yd3{bottom:867.996480pt;}
.yd{bottom:875.679867pt;}
.y17f{bottom:878.399867pt;}
.y1b8{bottom:878.564000pt;}
.yf3{bottom:881.600960pt;}
.y11d{bottom:884.645307pt;}
.y150{bottom:884.800000pt;}
.y8d{bottom:886.561280pt;}
.yb4{bottom:886.721280pt;}
.yd2{bottom:887.836800pt;}
.y1b7{bottom:895.040000pt;}
.y17e{bottom:899.516000pt;}
.y60{bottom:899.839867pt;}
.yf2{bottom:901.600640pt;}
.y11c{bottom:904.963707pt;}
.yc{bottom:906.385787pt;}
.y8c{bottom:906.560960pt;}
.yb3{bottom:906.720960pt;}
.yd1{bottom:907.517760pt;}
.y14f{bottom:912.320000pt;}
.y17c{bottom:916.156000pt;}
.y17d{bottom:916.160000pt;}
.y1b6{bottom:916.316000pt;}
.yf1{bottom:921.600320pt;}
.yb{bottom:924.152827pt;}
.y5e{bottom:924.320000pt;}
.y11b{bottom:925.441467pt;}
.y8b{bottom:926.560640pt;}
.yb2{bottom:926.720640pt;}
.yd0{bottom:927.198720pt;}
.y17b{bottom:932.800000pt;}
.y1b5{bottom:932.960000pt;}
.y1b4{bottom:932.964000pt;}
.yf0{bottom:941.600000pt;}
.ya{bottom:941.919867pt;}
.y11a{bottom:945.762107pt;}
.y8a{bottom:946.560320pt;}
.yb1{bottom:946.720320pt;}
.ycf{bottom:947.039040pt;}
.y14e{bottom:947.518400pt;}
.y1b3{bottom:949.440000pt;}
.y17a{bottom:953.916000pt;}
.y4{bottom:959.683867pt;}
.y119{bottom:966.239867pt;}
.y89{bottom:966.560000pt;}
.yb0{bottom:966.720000pt;}
.y14d{bottom:967.040000pt;}
.yef{bottom:968.800000pt;}
.y179{bottom:970.560000pt;}
.y3{bottom:975.679867pt;}
.y2{bottom:991.683867pt;}
.y87{bottom:993.440000pt;}
.y5c{bottom:994.720000pt;}
.y1{bottom:1007.679867pt;}
.y5b{bottom:1009.120000pt;}
.h15{height:19.998667pt;}
.h18{height:22.560000pt;}
.h4{height:22.720000pt;}
.h9{height:24.140800pt;}
.hb{height:28.579687pt;}
.h2{height:33.375000pt;}
.h3{height:34.453125pt;}
.h16{height:35.134048pt;}
.h12{height:35.161600pt;}
.h13{height:37.063581pt;}
.h1a{height:38.257813pt;}
.ha{height:39.360000pt;}
.h24{height:41.489083pt;}
.h25{height:42.084375pt;}
.h8{height:42.406250pt;}
.he{height:43.558400pt;}
.h1b{height:43.563520pt;}
.h1d{height:43.590400pt;}
.h1c{height:44.769813pt;}
.h22{height:44.788480pt;}
.h1e{height:44.806400pt;}
.h20{height:44.810240pt;}
.h21{height:44.814080pt;}
.h1f{height:44.821013pt;}
.hf{height:44.823787pt;}
.h10{height:44.824320pt;}
.h17{height:45.120000pt;}
.hd{height:46.093750pt;}
.h5{height:47.109375pt;}
.h23{height:50.062500pt;}
.h14{height:52.134375pt;}
.h19{height:55.402500pt;}
.h6{height:62.824960pt;}
.h7{height:84.351562pt;}
.hc{height:338.561333pt;}
.h11{height:344.000000pt;}
.h0{height:1077.280000pt;}
.h1{height:1077.333333pt;}
.wa{width:56.640000pt;}
.w9{width:56.800000pt;}
.w8{width:66.080000pt;}
.w5{width:69.866667pt;}
.w7{width:75.678667pt;}
.w6{width:183.360000pt;}
.w4{width:194.718667pt;}
.w2{width:298.560000pt;}
.w3{width:438.558667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:5.619867pt;}
.x30{left:7.360000pt;}
.x31{left:10.080000pt;}
.xc{left:13.280000pt;}
.x33{left:14.720000pt;}
.x2e{left:21.440000pt;}
.x17{left:32.160000pt;}
.x2c{left:47.040000pt;}
.x5{left:75.500000pt;}
.x6{left:77.440000pt;}
.x16{left:90.880000pt;}
.x7{left:101.760000pt;}
.x14{left:103.520000pt;}
.x18{left:112.640000pt;}
.x21{left:116.800000pt;}
.x1d{left:120.000000pt;}
.x13{left:121.280000pt;}
.x1e{left:124.480000pt;}
.x1f{left:127.360000pt;}
.x1a{left:130.240000pt;}
.xe{left:132.160000pt;}
.x25{left:135.200000pt;}
.x26{left:142.666667pt;}
.x20{left:144.320000pt;}
.x24{left:145.920000pt;}
.x11{left:185.920000pt;}
.x12{left:186.880000pt;}
.x15{left:192.000000pt;}
.xf{left:195.680000pt;}
.x19{left:201.760000pt;}
.x1b{left:217.760000pt;}
.xa{left:219.524000pt;}
.x10{left:221.440000pt;}
.x23{left:235.680000pt;}
.x1c{left:251.040000pt;}
.x22{left:252.640000pt;}
.x49{left:270.240000pt;}
.x2a{left:275.520000pt;}
.xb{left:279.680000pt;}
.x2b{left:288.800000pt;}
.x35{left:291.680000pt;}
.xd{left:292.960000pt;}
.x9{left:298.560000pt;}
.x3a{left:302.722560pt;}
.x5e{left:317.600000pt;}
.x36{left:320.804000pt;}
.x60{left:332.800000pt;}
.x37{left:335.348000pt;}
.x34{left:336.480000pt;}
.x46{left:347.200000pt;}
.x43{left:350.720000pt;}
.x38{left:358.220000pt;}
.x5c{left:369.440000pt;}
.x4e{left:376.320000pt;}
.x4d{left:391.840000pt;}
.x44{left:397.760000pt;}
.x54{left:404.320000pt;}
.x8{left:417.760000pt;}
.x5f{left:430.560000pt;}
.x62{left:438.720000pt;}
.x4f{left:448.000000pt;}
.x2d{left:463.040000pt;}
.x1{left:471.040000pt;}
.x42{left:473.440000pt;}
.x47{left:476.000000pt;}
.x50{left:477.280000pt;}
.x4a{left:480.320000pt;}
.x3c{left:496.800000pt;}
.x61{left:535.840000pt;}
.x2f{left:538.720000pt;}
.x58{left:540.640000pt;}
.x2{left:550.876000pt;}
.x4c{left:560.320000pt;}
.x3{left:603.200000pt;}
.x28{left:605.600000pt;}
.x3f{left:609.280000pt;}
.x4{left:611.672000pt;}
.x5a{left:614.560000pt;}
.x51{left:617.280000pt;}
.x5b{left:621.440000pt;}
.x55{left:622.400000pt;}
.x53{left:627.040000pt;}
.x40{left:640.960000pt;}
.x41{left:643.840000pt;}
.x4b{left:646.080000pt;}
.x57{left:652.640000pt;}
.x59{left:655.520000pt;}
.x32{left:661.600000pt;}
.x5d{left:673.280000pt;}
.x56{left:682.080000pt;}
.x45{left:684.480000pt;}
.x3b{left:685.760000pt;}
.x3d{left:689.760000pt;}
.x52{left:694.560000pt;}
.x48{left:696.320000pt;}
.x3e{left:700.800000pt;}
.x39{left:716.000000pt;}
.x29{left:718.076000pt;}
}




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