
    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_be5e500e80aa0eb566679b89.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_c8caa8db4befd1ce3850461f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_b0de49cf954337d4c9f97ea0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_bb5ebab6e1a3ab2055898c5d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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;}
.md{transform:matrix(0.000000,-0.249960,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249960,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249960,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249974,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);}
.ma{transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250061,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250072,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250085,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250087,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250103,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250183,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-8.278200px;}
.v4{vertical-align:-6.839400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:6.117600px;}
.v2{vertical-align:7.561200px;}
.v5{vertical-align:26.999400px;}
.v6{vertical-align:53.992726px;}
.ls54{letter-spacing:-0.446254px;}
.ls56{letter-spacing:-0.446236px;}
.ls57{letter-spacing:-0.446198px;}
.ls44{letter-spacing:-0.356429px;}
.ls43{letter-spacing:-0.335462px;}
.ls5f{letter-spacing:-0.316971px;}
.ls32{letter-spacing:-0.192997px;}
.ls33{letter-spacing:-0.179211px;}
.ls55{letter-spacing:-0.166257px;}
.ls58{letter-spacing:-0.166236px;}
.ls3c{letter-spacing:-0.154804px;}
.ls3d{letter-spacing:-0.102204px;}
.ls2d{letter-spacing:-0.096192px;}
.ls26{letter-spacing:-0.090180px;}
.ls5e{letter-spacing:-0.086519px;}
.ls21{letter-spacing:-0.084168px;}
.ls1d{letter-spacing:-0.078156px;}
.ls1c{letter-spacing:-0.072144px;}
.ls30{letter-spacing:-0.068927px;}
.ls2c{letter-spacing:-0.066132px;}
.ls25{letter-spacing:-0.060120px;}
.ls22{letter-spacing:-0.054108px;}
.ls5d{letter-spacing:-0.053243px;}
.ls1b{letter-spacing:-0.048096px;}
.ls61{letter-spacing:-0.048088px;}
.ls2b{letter-spacing:-0.042084px;}
.ls59{letter-spacing:-0.038460px;}
.ls24{letter-spacing:-0.036072px;}
.ls23{letter-spacing:-0.030060px;}
.ls6e{letter-spacing:-0.024048px;}
.ls62{letter-spacing:-0.024044px;}
.ls42{letter-spacing:-0.018036px;}
.ls5c{letter-spacing:-0.018033px;}
.ls2e{letter-spacing:-0.012024px;}
.ls3b{letter-spacing:-0.007200px;}
.ls5a{letter-spacing:-0.006410px;}
.ls1f{letter-spacing:-0.006012px;}
.ls16{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.000600px;}
.ls65{letter-spacing:0.004788px;}
.ls5{letter-spacing:0.006012px;}
.ls4d{letter-spacing:0.012022px;}
.ls11{letter-spacing:0.012024px;}
.ls4e{letter-spacing:0.018033px;}
.ls20{letter-spacing:0.018036px;}
.ls2{letter-spacing:0.021600px;}
.ls52{letter-spacing:0.024044px;}
.ls7{letter-spacing:0.024048px;}
.ls1{letter-spacing:0.028800px;}
.ls4c{letter-spacing:0.030055px;}
.ls15{letter-spacing:0.030060px;}
.ls6a{letter-spacing:0.030723px;}
.ls60{letter-spacing:0.035994px;}
.ls0{letter-spacing:0.036000px;}
.ls53{letter-spacing:0.036066px;}
.ls14{letter-spacing:0.036072px;}
.ls4b{letter-spacing:0.042077px;}
.ls6{letter-spacing:0.042084px;}
.ls68{letter-spacing:0.043092px;}
.ls19{letter-spacing:0.043200px;}
.ls63{letter-spacing:0.048088px;}
.ls1e{letter-spacing:0.048096px;}
.ls1a{letter-spacing:0.050400px;}
.ls4f{letter-spacing:0.054099px;}
.ls28{letter-spacing:0.054108px;}
.ls18{letter-spacing:0.058716px;}
.ls2f{letter-spacing:0.059292px;}
.ls27{letter-spacing:0.060120px;}
.ls34{letter-spacing:0.065880px;}
.ls12{letter-spacing:0.066132px;}
.ls31{letter-spacing:0.068927px;}
.lse{letter-spacing:0.072144px;}
.ls17{letter-spacing:0.075492px;}
.ls66{letter-spacing:0.076608px;}
.ls50{letter-spacing:0.078143px;}
.ls4{letter-spacing:0.078156px;}
.lsa{letter-spacing:0.084168px;}
.ls37{letter-spacing:0.087498px;}
.ls8{letter-spacing:0.090180px;}
.ls67{letter-spacing:0.095760px;}
.ls51{letter-spacing:0.096176px;}
.lsd{letter-spacing:0.096192px;}
.lsf{letter-spacing:0.102204px;}
.ls3{letter-spacing:0.108216px;}
.ls9{letter-spacing:0.114228px;}
.ls5b{letter-spacing:0.115381px;}
.lsc{letter-spacing:0.120240px;}
.ls10{letter-spacing:0.126252px;}
.ls35{letter-spacing:0.127882px;}
.lsb{letter-spacing:0.132264px;}
.ls13{letter-spacing:0.138276px;}
.ls48{letter-spacing:0.139013px;}
.ls49{letter-spacing:0.139035px;}
.ls41{letter-spacing:0.144288px;}
.ls6b{letter-spacing:0.150300px;}
.ls40{letter-spacing:0.150360px;}
.ls3e{letter-spacing:0.150960px;}
.ls39{letter-spacing:0.156312px;}
.ls6d{letter-spacing:0.162324px;}
.ls6f{letter-spacing:0.174348px;}
.ls69{letter-spacing:0.180360px;}
.ls3a{letter-spacing:0.180600px;}
.ls2a{letter-spacing:0.192997px;}
.ls4a{letter-spacing:0.243273px;}
.ls6c{letter-spacing:0.318636px;}
.ls36{letter-spacing:0.397107px;}
.ls64{letter-spacing:0.411688px;}
.ls29{letter-spacing:0.427350px;}
.ls47{letter-spacing:0.535438px;}
.ls46{letter-spacing:0.535483px;}
.ls45{letter-spacing:0.535505px;}
.ls38{letter-spacing:1542.685200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5a{word-spacing:-19.589167px;}
.ws5d{word-spacing:-19.354814px;}
.ws5e{word-spacing:-18.982606px;}
.ws5c{word-spacing:-18.968820px;}
.wsb5{word-spacing:-18.798622px;}
.wsb4{word-spacing:-18.556319px;}
.ws0{word-spacing:-18.036000px;}
.ws2{word-spacing:-18.021600px;}
.ws1{word-spacing:-18.000000px;}
.ws152{word-spacing:-17.699134px;}
.ws154{word-spacing:-17.698391px;}
.ws156{word-spacing:-17.696904px;}
.ws17c{word-spacing:-17.493676px;}
.ws151{word-spacing:-16.717375px;}
.ws153{word-spacing:-16.716672px;}
.ws155{word-spacing:-16.715268px;}
.ws157{word-spacing:-16.585111px;}
.ws1b1{word-spacing:-15.210360px;}
.ws1b5{word-spacing:-15.204348px;}
.ws1b2{word-spacing:-15.132204px;}
.wsb7{word-spacing:-15.030000px;}
.wsb6{word-spacing:-15.023988px;}
.ws1b3{word-spacing:-15.005952px;}
.ws1b4{word-spacing:-14.975892px;}
.ws1e8{word-spacing:-1.148292px;}
.ws1e7{word-spacing:-1.136268px;}
.ws164{word-spacing:-0.884586px;}
.ws161{word-spacing:-0.852536px;}
.wsec{word-spacing:-0.426852px;}
.ws17{word-spacing:-0.402804px;}
.wsf9{word-spacing:-0.377517px;}
.ws143{word-spacing:-0.366732px;}
.ws146{word-spacing:-0.300600px;}
.ws145{word-spacing:-0.258516px;}
.ws1ce{word-spacing:-0.240480px;}
.ws1ad{word-spacing:-0.180360px;}
.ws1d0{word-spacing:-0.168336px;}
.ws4{word-spacing:-0.167760px;}
.wsb1{word-spacing:-0.162324px;}
.wsf6{word-spacing:-0.156312px;}
.ws5{word-spacing:-0.150984px;}
.ws165{word-spacing:-0.139013px;}
.wsf3{word-spacing:-0.138276px;}
.ws14e{word-spacing:-0.132264px;}
.ws160{word-spacing:-0.126252px;}
.ws167{word-spacing:-0.126231px;}
.ws1dc{word-spacing:-0.060120px;}
.ws1de{word-spacing:-0.054108px;}
.ws9{word-spacing:-0.050400px;}
.ws4b{word-spacing:-0.048096px;}
.ws7{word-spacing:-0.043200px;}
.ws1e0{word-spacing:-0.042084px;}
.ws135{word-spacing:-0.036072px;}
.ws6{word-spacing:-0.036000px;}
.ws16e{word-spacing:-0.035994px;}
.ws163{word-spacing:-0.034759px;}
.ws162{word-spacing:-0.034753px;}
.wsdf{word-spacing:-0.030060px;}
.ws8{word-spacing:-0.028800px;}
.ws43{word-spacing:-0.024048px;}
.ws28{word-spacing:-0.021600px;}
.ws21{word-spacing:-0.018036px;}
.ws49{word-spacing:-0.012024px;}
.ws86{word-spacing:-0.006012px;}
.ws3{word-spacing:0.000000px;}
.ws1d3{word-spacing:0.006012px;}
.wsc9{word-spacing:0.007200px;}
.ws50{word-spacing:0.012024px;}
.ws1d7{word-spacing:0.018036px;}
.ws126{word-spacing:0.024048px;}
.wsb8{word-spacing:0.026352px;}
.ws9d{word-spacing:0.032940px;}
.ws6f{word-spacing:0.036072px;}
.ws1db{word-spacing:0.042084px;}
.ws1a2{word-spacing:0.048096px;}
.ws104{word-spacing:0.054108px;}
.ws1d6{word-spacing:0.066132px;}
.ws1e2{word-spacing:0.078156px;}
.ws125{word-spacing:0.084168px;}
.ws1d4{word-spacing:0.102204px;}
.ws1c4{word-spacing:0.114228px;}
.ws1d9{word-spacing:0.120240px;}
.ws1cd{word-spacing:0.126252px;}
.wsd3{word-spacing:0.132264px;}
.wseb{word-spacing:0.138276px;}
.ws15e{word-spacing:0.144288px;}
.ws10d{word-spacing:0.150300px;}
.ws1bf{word-spacing:0.162324px;}
.ws1e5{word-spacing:0.168336px;}
.ws1df{word-spacing:0.174348px;}
.ws16a{word-spacing:0.204374px;}
.ws15d{word-spacing:0.312624px;}
.ws23{word-spacing:0.318636px;}
.ws32{word-spacing:0.324648px;}
.ws1c5{word-spacing:0.348696px;}
.ws136{word-spacing:0.363418px;}
.ws2c{word-spacing:0.450900px;}
.ws179{word-spacing:0.474868px;}
.ws169{word-spacing:0.534978px;}
.ws89{word-spacing:0.715428px;}
.ws40{word-spacing:0.721440px;}
.ws1a{word-spacing:0.727452px;}
.ws178{word-spacing:0.787440px;}
.ws2b{word-spacing:0.787572px;}
.ws8a{word-spacing:0.823644px;}
.ws1cc{word-spacing:0.871740px;}
.ws1e{word-spacing:1.052100px;}
.ws1ca{word-spacing:1.088172px;}
.ws2a{word-spacing:1.100196px;}
.ws85{word-spacing:1.118232px;}
.ws14b{word-spacing:1.238472px;}
.ws24{word-spacing:1.418832px;}
.ws36{word-spacing:1.442880px;}
.ws84{word-spacing:1.460916px;}
.ws1b9{word-spacing:1.563120px;}
.ws20{word-spacing:1.779552px;}
.ws6b{word-spacing:1.785564px;}
.wscf{word-spacing:1.803600px;}
.ws1d1{word-spacing:1.809612px;}
.ws19c{word-spacing:1.827648px;}
.ws93{word-spacing:1.923840px;}
.ws199{word-spacing:2.122236px;}
.ws19d{word-spacing:2.158308px;}
.ws115{word-spacing:2.164320px;}
.ws11d{word-spacing:2.188368px;}
.ws11c{word-spacing:2.206404px;}
.wsd5{word-spacing:2.212416px;}
.ws15c{word-spacing:2.218428px;}
.wse8{word-spacing:2.224440px;}
.wse9{word-spacing:2.260512px;}
.ws9e{word-spacing:2.320632px;}
.ws2e{word-spacing:2.507004px;}
.wsa0{word-spacing:2.525040px;}
.wse5{word-spacing:2.543076px;}
.ws100{word-spacing:2.561112px;}
.wsd4{word-spacing:2.573136px;}
.wsda{word-spacing:2.597184px;}
.ws118{word-spacing:2.603196px;}
.wsa7{word-spacing:2.675340px;}
.ws1c1{word-spacing:2.867724px;}
.ws1cf{word-spacing:2.885760px;}
.wsad{word-spacing:2.903796px;}
.wsd9{word-spacing:2.969928px;}
.ws1a3{word-spacing:3.084156px;}
.wsee{word-spacing:3.228444px;}
.wsf{word-spacing:3.240468px;}
.ws4a{word-spacing:3.264516px;}
.wsbd{word-spacing:3.324636px;}
.ws140{word-spacing:3.330648px;}
.ws76{word-spacing:3.384756px;}
.ws15{word-spacing:3.402792px;}
.wsef{word-spacing:3.414816px;}
.wsbc{word-spacing:3.613212px;}
.ws117{word-spacing:3.649284px;}
.wsed{word-spacing:3.673332px;}
.ws13f{word-spacing:3.679344px;}
.ws94{word-spacing:3.733452px;}
.ws34{word-spacing:3.739464px;}
.ws14f{word-spacing:3.805596px;}
.ws19{word-spacing:3.949884px;}
.ws6a{word-spacing:3.961908px;}
.ws4d{word-spacing:3.967920px;}
.ws197{word-spacing:3.973932px;}
.ws17b{word-spacing:4.003319px;}
.ws4c{word-spacing:4.046076px;}
.ws19b{word-spacing:4.058100px;}
.ws1ac{word-spacing:4.142268px;}
.ws196{word-spacing:4.328640px;}
.wsc6{word-spacing:4.340664px;}
.ws57{word-spacing:4.352688px;}
.ws171{word-spacing:4.369990px;}
.ws65{word-spacing:4.370724px;}
.ws17a{word-spacing:4.376001px;}
.ws19a{word-spacing:4.394772px;}
.ws74{word-spacing:4.400784px;}
.ws10c{word-spacing:4.412808px;}
.ws10b{word-spacing:4.472928px;}
.ws1b8{word-spacing:4.478940px;}
.wsd0{word-spacing:4.490964px;}
.ws106{word-spacing:4.653288px;}
.ws14a{word-spacing:4.665312px;}
.wsd8{word-spacing:4.677336px;}
.wsa8{word-spacing:4.695372px;}
.ws113{word-spacing:4.701384px;}
.ws73{word-spacing:4.719420px;}
.ws64{word-spacing:4.731444px;}
.ws56{word-spacing:4.737456px;}
.ws13b{word-spacing:4.815612px;}
.ws58{word-spacing:4.845672px;}
.ws37{word-spacing:5.014008px;}
.ws2d{word-spacing:5.026032px;}
.ws124{word-spacing:5.032044px;}
.ws149{word-spacing:5.038056px;}
.ws11f{word-spacing:5.068116px;}
.wse4{word-spacing:5.074128px;}
.wse3{word-spacing:5.116212px;}
.ws111{word-spacing:5.170320px;}
.ws15b{word-spacing:5.200380px;}
.ws33{word-spacing:5.386752px;}
.wsac{word-spacing:5.404788px;}
.wsdd{word-spacing:5.440860px;}
.wsba{word-spacing:5.543064px;}
.wsa6{word-spacing:5.561100px;}
.ws39{word-spacing:5.765508px;}
.ws134{word-spacing:5.777532px;}
.wsdc{word-spacing:5.783544px;}
.wsab{word-spacing:5.801580px;}
.ws139{word-spacing:5.897772px;}
.ws1a7{word-spacing:5.939856px;}
.ws108{word-spacing:6.096168px;}
.ws44{word-spacing:6.114204px;}
.wsfc{word-spacing:6.138252px;}
.ws55{word-spacing:6.174324px;}
.ws175{word-spacing:6.191320px;}
.ws13c{word-spacing:6.228432px;}
.ws112{word-spacing:6.276528px;}
.ws25{word-spacing:6.288552px;}
.ws53{word-spacing:6.300576px;}
.ws101{word-spacing:6.450876px;}
.ws159{word-spacing:6.498972px;}
.wsbf{word-spacing:6.535044px;}
.ws174{word-spacing:6.551979px;}
.wsfb{word-spacing:6.613200px;}
.ws184{word-spacing:6.817608px;}
.ws1be{word-spacing:6.835644px;}
.ws8f{word-spacing:6.841656px;}
.wsa4{word-spacing:6.847668px;}
.ws1cb{word-spacing:6.859692px;}
.ws1bd{word-spacing:6.943860px;}
.wsb0{word-spacing:7.028028px;}
.ws3d{word-spacing:7.196364px;}
.ws7c{word-spacing:7.202376px;}
.wsfa{word-spacing:7.376724px;}
.ws47{word-spacing:7.539048px;}
.ws105{word-spacing:7.587144px;}
.ws158{word-spacing:7.941852px;}
.ws11b{word-spacing:7.977924px;}
.wsc{word-spacing:8.001972px;}
.ws177{word-spacing:8.054726px;}
.ws7b{word-spacing:8.074116px;}
.ws1a6{word-spacing:8.128224px;}
.ws109{word-spacing:8.260488px;}
.ws38{word-spacing:8.272512px;}
.wsb{word-spacing:8.290548px;}
.ws67{word-spacing:8.314596px;}
.ws6e{word-spacing:8.320608px;}
.ws66{word-spacing:8.458884px;}
.ws1a9{word-spacing:8.470908px;}
.ws7a{word-spacing:8.621208px;}
.ws68{word-spacing:8.627220px;}
.ws1f{word-spacing:8.633232px;}
.ws137{word-spacing:8.639244px;}
.ws10a{word-spacing:8.645256px;}
.wsd{word-spacing:8.687340px;}
.wse7{word-spacing:8.699364px;}
.wse{word-spacing:8.705376px;}
.ws6d{word-spacing:8.723412px;}
.wsaa{word-spacing:8.783532px;}
.wsaf{word-spacing:8.813592px;}
.ws16b{word-spacing:8.824133px;}
.ws16c{word-spacing:8.836155px;}
.ws75{word-spacing:8.975916px;}
.ws31{word-spacing:8.987940px;}
.ws13{word-spacing:9.005976px;}
.wsa3{word-spacing:9.054072px;}
.wse6{word-spacing:9.078120px;}
.wsfe{word-spacing:9.336636px;}
.ws46{word-spacing:9.348660px;}
.wsff{word-spacing:9.354672px;}
.ws1a1{word-spacing:9.366696px;}
.wse2{word-spacing:9.450864px;}
.ws48{word-spacing:9.679320px;}
.wsa9{word-spacing:9.697356px;}
.ws3c{word-spacing:9.733428px;}
.ws9b{word-spacing:9.775512px;}
.wsc7{word-spacing:9.877716px;}
.ws51{word-spacing:10.070100px;}
.wsf7{word-spacing:10.088136px;}
.ws95{word-spacing:10.112184px;}
.ws3f{word-spacing:10.166292px;}
.ws183{word-spacing:10.172304px;}
.ws83{word-spacing:10.244448px;}
.ws132{word-spacing:10.256472px;}
.ws8e{word-spacing:10.424808px;}
.ws71{word-spacing:10.436832px;}
.wsd6{word-spacing:10.454868px;}
.ws9f{word-spacing:10.466892px;}
.ws128{word-spacing:10.514988px;}
.ws182{word-spacing:10.527012px;}
.ws116{word-spacing:10.593144px;}
.wsdb{word-spacing:10.629216px;}
.ws54{word-spacing:10.791540px;}
.ws127{word-spacing:10.797552px;}
.ws17f{word-spacing:10.803564px;}
.ws9c{word-spacing:10.809576px;}
.ws1c8{word-spacing:10.875708px;}
.ws122{word-spacing:10.947852px;}
.wsd7{word-spacing:10.977912px;}
.ws91{word-spacing:11.128212px;}
.ws12d{word-spacing:11.134224px;}
.wsea{word-spacing:11.188332px;}
.ws1c7{word-spacing:11.230416px;}
.ws142{word-spacing:11.525004px;}
.ws77{word-spacing:11.591136px;}
.ws78{word-spacing:11.675304px;}
.ws4e{word-spacing:11.693340px;}
.ws4f{word-spacing:11.867688px;}
.ws87{word-spacing:11.873700px;}
.ws19e{word-spacing:11.879712px;}
.ws103{word-spacing:11.921796px;}
.wsc1{word-spacing:11.945844px;}
.ws30{word-spacing:11.951856px;}
.ws2f{word-spacing:11.975904px;}
.wsde{word-spacing:12.036024px;}
.ws16{word-spacing:12.216384px;}
.ws70{word-spacing:12.234420px;}
.ws11e{word-spacing:12.240432px;}
.wsc3{word-spacing:12.246444px;}
.ws62{word-spacing:12.264480px;}
.ws102{word-spacing:12.306564px;}
.wsc0{word-spacing:12.372696px;}
.ws198{word-spacing:12.384720px;}
.ws8b{word-spacing:12.408768px;}
.wsc8{word-spacing:12.589128px;}
.wsa1{word-spacing:12.949848px;}
.wsc2{word-spacing:12.985920px;}
.ws1ab{word-spacing:13.178304px;}
.wse1{word-spacing:13.322592px;}
.ws170{word-spacing:13.332375px;}
.ws141{word-spacing:13.382712px;}
.ws6c{word-spacing:13.671288px;}
.ws10f{word-spacing:13.689324px;}
.ws16f{word-spacing:13.711068px;}
.ws121{word-spacing:14.013972px;}
.ws11a{word-spacing:14.038020px;}
.wsa2{word-spacing:14.044032px;}
.ws120{word-spacing:14.146236px;}
.ws1ba{word-spacing:14.194332px;}
.ws114{word-spacing:14.206356px;}
.ws1c{word-spacing:14.398740px;}
.ws1c0{word-spacing:14.458860px;}
.ws1a5{word-spacing:14.597136px;}
.ws12{word-spacing:14.759460px;}
.ws1c2{word-spacing:14.897736px;}
.wsf8{word-spacing:14.903748px;}
.ws52{word-spacing:15.114168px;}
.ws96{word-spacing:15.510960px;}
.ws27{word-spacing:15.528996px;}
.ws26{word-spacing:15.565068px;}
.ws12e{word-spacing:15.637212px;}
.wsae{word-spacing:15.829596px;}
.wsf4{word-spacing:16.046028px;}
.ws15a{word-spacing:16.184304px;}
.ws81{word-spacing:16.190316px;}
.ws17e{word-spacing:16.202340px;}
.ws180{word-spacing:16.268472px;}
.ws17d{word-spacing:16.310556px;}
.wsd2{word-spacing:16.334604px;}
.ws1bc{word-spacing:16.346628px;}
.ws7d{word-spacing:16.557048px;}
.ws148{word-spacing:16.707348px;}
.ws181{word-spacing:16.911756px;}
.ws1ae{word-spacing:16.917768px;}
.ws194{word-spacing:17.056044px;}
.ws1b7{word-spacing:17.242416px;}
.ws10e{word-spacing:17.254440px;}
.ws172{word-spacing:17.269574px;}
.ws13a{word-spacing:17.278488px;}
.ws3b{word-spacing:17.422776px;}
.ws12f{word-spacing:17.645220px;}
.wsc4{word-spacing:17.687304px;}
.ws176{word-spacing:17.702365px;}
.ws3a{word-spacing:17.993916px;}
.ws173{word-spacing:18.008925px;}
.ws13d{word-spacing:18.180288px;}
.ws129{word-spacing:18.342612px;}
.wsb9{word-spacing:18.510948px;}
.ws12b{word-spacing:18.667260px;}
.ws14d{word-spacing:18.691308px;}
.ws10{word-spacing:18.697320px;}
.ws107{word-spacing:18.703332px;}
.ws1c9{word-spacing:18.727380px;}
.wsc5{word-spacing:18.733392px;}
.ws12c{word-spacing:18.775476px;}
.ws1a8{word-spacing:18.919764px;}
.wsd1{word-spacing:19.052028px;}
.ws11{word-spacing:19.142208px;}
.ws1b6{word-spacing:19.430784px;}
.ws61{word-spacing:19.436796px;}
.ws79{word-spacing:19.623168px;}
.ws90{word-spacing:19.797516px;}
.ws150{word-spacing:19.965852px;}
.wsa5{word-spacing:20.296512px;}
.ws12a{word-spacing:20.320560px;}
.wsf5{word-spacing:20.344608px;}
.wsf2{word-spacing:20.350620px;}
.ws13e{word-spacing:20.530980px;}
.ws72{word-spacing:20.663244px;}
.ws19f{word-spacing:20.927772px;}
.ws1a0{word-spacing:20.975868px;}
.ws133{word-spacing:21.234384px;}
.ws1c3{word-spacing:21.246408px;}
.ws144{word-spacing:21.264444px;}
.ws98{word-spacing:21.282480px;}
.wsa{word-spacing:21.583080px;}
.ws97{word-spacing:21.679272px;}
.ws82{word-spacing:21.769452px;}
.ws1d{word-spacing:21.967848px;}
.ws9a{word-spacing:21.979872px;}
.ws168{word-spacing:22.144486px;}
.wsf1{word-spacing:22.172256px;}
.wsce{word-spacing:22.310532px;}
.ws185{word-spacing:22.496904px;}
.ws92{word-spacing:22.683276px;}
.ws80{word-spacing:22.689288px;}
.wscd{word-spacing:22.725360px;}
.ws1af{word-spacing:23.037984px;}
.ws7e{word-spacing:23.404716px;}
.ws29{word-spacing:23.765436px;}
.ws192{word-spacing:23.771448px;}
.ws88{word-spacing:23.813532px;}
.ws45{word-spacing:24.246396px;}
.ws1a4{word-spacing:24.667236px;}
.ws22{word-spacing:25.172244px;}
.ws1b0{word-spacing:25.563024px;}
.ws166{word-spacing:25.733047px;}
.ws1aa{word-spacing:25.773444px;}
.ws15f{word-spacing:26.813520px;}
.wsbb{word-spacing:26.987868px;}
.ws123{word-spacing:27.011916px;}
.ws3e{word-spacing:27.120132px;}
.ws18{word-spacing:27.703296px;}
.ws1d5{word-spacing:28.051992px;}
.ws1bb{word-spacing:28.412712px;}
.ws195{word-spacing:28.575036px;}
.ws35{word-spacing:28.971828px;}
.ws119{word-spacing:29.302488px;}
.ws191{word-spacing:29.308500px;}
.wscc{word-spacing:29.524932px;}
.wse0{word-spacing:29.597076px;}
.ws1d2{word-spacing:29.693268px;}
.ws8c{word-spacing:29.873628px;}
.ws60{word-spacing:29.879640px;}
.ws42{word-spacing:29.927736px;}
.ws5f{word-spacing:30.288456px;}
.ws41{word-spacing:30.318516px;}
.ws131{word-spacing:31.310496px;}
.ws147{word-spacing:31.400676px;}
.wscb{word-spacing:31.665204px;}
.ws130{word-spacing:31.785444px;}
.wsf0{word-spacing:32.206284px;}
.ws69{word-spacing:33.823512px;}
.wsca{word-spacing:34.575012px;}
.ws7f{word-spacing:35.464788px;}
.ws1b{word-spacing:35.645148px;}
.wsfd{word-spacing:35.999856px;}
.ws63{word-spacing:36.492840px;}
.ws99{word-spacing:37.142136px;}
.ws1c6{word-spacing:38.657160px;}
.ws110{word-spacing:39.583008px;}
.ws14{word-spacing:42.258348px;}
.ws138{word-spacing:42.859548px;}
.ws193{word-spacing:43.346520px;}
.ws8d{word-spacing:44.981784px;}
.ws16d{word-spacing:46.266589px;}
.ws14c{word-spacing:49.100004px;}
.wsbe{word-spacing:54.354492px;}
.ws189{word-spacing:65.332260px;}
.ws188{word-spacing:66.773448px;}
.ws187{word-spacing:68.951988px;}
.ws18b{word-spacing:82.971612px;}
.ws18a{word-spacing:86.212080px;}
.ws18c{word-spacing:94.232088px;}
.ws18e{word-spacing:99.895392px;}
.ws1e4{word-spacing:100.418436px;}
.ws1e6{word-spacing:100.478556px;}
.ws18f{word-spacing:103.135860px;}
.ws1da{word-spacing:130.658796px;}
.ws1dd{word-spacing:130.670820px;}
.ws1e3{word-spacing:130.706892px;}
.ws1e1{word-spacing:130.712904px;}
.ws1d8{word-spacing:130.724928px;}
.ws18d{word-spacing:183.871008px;}
.ws190{word-spacing:214.111368px;}
.ws186{word-spacing:510.386436px;}
.wsb2{word-spacing:603.884546px;}
.wsb3{word-spacing:606.576794px;}
.ws59{word-spacing:643.341797px;}
.ws5b{word-spacing:646.284043px;}
._14{margin-left:-1776.151224px;}
._13{margin-left:-510.477984px;}
._33{margin-left:-130.941360px;}
._2b{margin-left:-119.878248px;}
._34{margin-left:-100.821240px;}
._1f{margin-left:-89.638608px;}
._15{margin-left:-66.960336px;}
._16{margin-left:-65.519160px;}
._2a{margin-left:-44.282376px;}
._2c{margin-left:-31.681848px;}
._1e{margin-left:-29.163816px;}
._5{margin-left:-22.669128px;}
._3{margin-left:-21.244668px;}
._23{margin-left:-20.163708px;}
._c{margin-left:-17.493672px;}
._e{margin-left:-14.426148px;}
._8{margin-left:-13.003980px;}
._a{margin-left:-10.808040px;}
._4{margin-left:-9.584676px;}
._6{margin-left:-7.781232px;}
._2f{margin-left:-6.691644px;}
._9{margin-left:-3.044700px;}
._0{margin-left:-1.152000px;}
._1{width:1.082160px;}
._d{width:2.436914px;}
._b{width:5.170392px;}
._1d{width:6.498876px;}
._10{width:7.556868px;}
._20{width:19.798920px;}
._29{width:21.619476px;}
._f{width:24.458364px;}
._2{width:34.929720px;}
._31{width:40.701240px;}
._30{width:47.134080px;}
._18{width:60.481668px;}
._22{width:63.361560px;}
._1b{width:67.003536px;}
._27{width:80.284140px;}
._1c{width:84.954024px;}
._19{width:88.203936px;}
._17{width:89.451108px;}
._2e{width:92.246758px;}
._1a{width:93.689698px;}
._35{width:100.159920px;}
._25{width:104.398404px;}
._24{width:106.196580px;}
._28{width:108.371556px;}
._21{width:109.436760px;}
._26{width:110.607298px;}
._2d{width:126.726096px;}
._32{width:130.400280px;}
._11{width:314.998620px;}
._12{width:484.198260px;}
._7{width:1053.168144px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs14{font-size:47.880000px;}
.fs12{font-size:53.723971px;}
.fsc{font-size:55.412088px;}
.fs9{font-size:55.419072px;}
.fsf{font-size:57.922066px;}
.fs10{font-size:57.931356px;}
.fsd{font-size:60.109898px;}
.fs2{font-size:60.120000px;}
.fs15{font-size:61.446000px;}
.fse{font-size:64.100427px;}
.fs3{font-size:65.880000px;}
.fs11{font-size:66.553415px;}
.fs5{font-size:67.306200px;}
.fsb{font-size:68.645864px;}
.fsa{font-size:68.651632px;}
.fs8{font-size:68.654516px;}
.fs4{font-size:68.927400px;}
.fs7{font-size:69.888000px;}
.fs13{font-size:71.987902px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y1ca{bottom:3.329590px;}
.yd5{bottom:3.330000px;}
.y1b2{bottom:124.178681px;}
.y1d7{bottom:124.539070px;}
.y133{bottom:124.559400px;}
.y291{bottom:124.559550px;}
.y16d{bottom:124.559700px;}
.y96{bottom:124.560150px;}
.yd8{bottom:125.010150px;}
.y1fa{bottom:125.279850px;}
.yd2{bottom:126.269400px;}
.y1b1{bottom:127.957746px;}
.y139{bottom:127.979250px;}
.y23f{bottom:127.979700px;}
.y5f{bottom:131.400312px;}
.y37{bottom:138.240405px;}
.y26c{bottom:138.330150px;}
.yd7{bottom:138.870000px;}
.y1d6{bottom:141.726182px;}
.y132{bottom:141.749400px;}
.y16c{bottom:141.749550px;}
.y290{bottom:141.749757px;}
.y95{bottom:141.750150px;}
.yd6{bottom:142.200000px;}
.y1f9{bottom:142.560000px;}
.y11b{bottom:143.549400px;}
.yd1{bottom:143.549550px;}
.y1b0{bottom:145.234992px;}
.y138{bottom:145.259400px;}
.y23e{bottom:145.259700px;}
.y5e{bottom:148.590123px;}
.y36{bottom:155.520396px;}
.y26b{bottom:155.610339px;}
.yd4{bottom:156.150000px;}
.y1b6{bottom:157.923610px;}
.y1d5{bottom:159.003278px;}
.y131{bottom:159.029400px;}
.y166{bottom:159.029550px;}
.y28f{bottom:159.029748px;}
.y94{bottom:159.030150px;}
.yd3{bottom:159.479700px;}
.y1f8{bottom:159.749850px;}
.yd0{bottom:160.739400px;}
.y1af{bottom:162.421954px;}
.y137{bottom:162.449250px;}
.y23d{bottom:162.449700px;}
.y5d{bottom:165.870114px;}
.y26a{bottom:172.800150px;}
.y35{bottom:172.800387px;}
.y1d4{bottom:176.280375px;}
.y12d{bottom:176.309550px;}
.y165{bottom:176.309700px;}
.y28e{bottom:176.309739px;}
.y93{bottom:176.310300px;}
.y1f7{bottom:177.030000px;}
.y11a{bottom:178.019400px;}
.yca{bottom:178.019550px;}
.y1ae{bottom:179.699200px;}
.y136{bottom:179.729400px;}
.y23c{bottom:179.729700px;}
.y5c{bottom:183.059925px;}
.ycc{bottom:185.310150px;}
.yce{bottom:186.121500px;}
.y34{bottom:189.990198px;}
.y269{bottom:190.080150px;}
.y1b3{bottom:190.138196px;}
.y130{bottom:191.160000px;}
.y1d3{bottom:193.467486px;}
.y12c{bottom:193.499400px;}
.y164{bottom:193.499550px;}
.y92{bottom:193.500150px;}
.y1f6{bottom:194.310000px;}
.yc9{bottom:195.209400px;}
.y1ad{bottom:196.976297px;}
.y135{bottom:197.009400px;}
.y23b{bottom:197.009850px;}
.y5b{bottom:200.339916px;}
.y33{bottom:207.270189px;}
.y268{bottom:207.810000px;}
.y12f{bottom:208.350000px;}
.y1d2{bottom:210.744583px;}
.y12b{bottom:210.779550px;}
.y163{bottom:210.779700px;}
.y28d{bottom:210.780105px;}
.y91{bottom:211.230150px;}
.y1f5{bottom:211.500000px;}
.y119{bottom:212.489400px;}
.yc8{bottom:212.489550px;}
.y1ac{bottom:214.163408px;}
.y134{bottom:214.199400px;}
.y235{bottom:214.199700px;}
.y5a{bottom:217.619907px;}
.y23a{bottom:223.290000px;}
.y32{bottom:224.460000px;}
.y12e{bottom:225.630000px;}
.y1d1{bottom:228.021829px;}
.y12a{bottom:228.059550px;}
.y162{bottom:228.059700px;}
.y28c{bottom:228.060096px;}
.y1f4{bottom:228.780000px;}
.yc7{bottom:229.769550px;}
.y1ab{bottom:231.440505px;}
.y90{bottom:231.479400px;}
.y234{bottom:231.479850px;}
.y1b4{bottom:231.710759px;}
.y59{bottom:234.809718px;}
.y239{bottom:240.570150px;}
.y31{bottom:241.740000px;}
.y1d0{bottom:245.208791px;}
.y125{bottom:245.249400px;}
.y267{bottom:245.249550px;}
.y161{bottom:245.249700px;}
.y28b{bottom:245.249907px;}
.y1f3{bottom:246.060150px;}
.yc6{bottom:246.959400px;}
.y1aa{bottom:248.717601px;}
.y8f{bottom:248.759400px;}
.y233{bottom:248.759850px;}
.y58{bottom:252.089709px;}
.y238{bottom:257.760000px;}
.y30{bottom:259.470150px;}
.y1cf{bottom:262.486037px;}
.y124{bottom:262.529550px;}
.y160{bottom:262.529700px;}
.y28a{bottom:262.529898px;}
.y266{bottom:262.530303px;}
.y1f2{bottom:263.250000px;}
.yc5{bottom:264.239550px;}
.y1a9{bottom:265.904713px;}
.y8e{bottom:265.949400px;}
.y232{bottom:265.949850px;}
.y57{bottom:269.369700px;}
.y237{bottom:275.040150px;}
.y1ce{bottom:279.763134px;}
.y123{bottom:279.809550px;}
.y15f{bottom:279.809700px;}
.y289{bottom:279.809889px;}
.y265{bottom:279.810294px;}
.y2f{bottom:280.350150px;}
.y1f1{bottom:281.250000px;}
.yc4{bottom:281.519550px;}
.y1a8{bottom:283.181809px;}
.y8d{bottom:283.229400px;}
.y231{bottom:283.229850px;}
.y56{bottom:286.559550px;}
.y236{bottom:292.320150px;}
.y122{bottom:296.999550px;}
.y15e{bottom:296.999700px;}
.y264{bottom:297.000105px;}
.y1cd{bottom:297.490005px;}
.y118{bottom:298.709400px;}
.yc3{bottom:298.709550px;}
.y1f0{bottom:299.250000px;}
.y2e{bottom:300.419850px;}
.y1a7{bottom:300.459056px;}
.y8c{bottom:300.509550px;}
.y230{bottom:300.509850px;}
.y55{bottom:303.839898px;}
.y121{bottom:314.279550px;}
.y15d{bottom:314.279700px;}
.y263{bottom:314.280096px;}
.y16b{bottom:314.280150px;}
.yc2{bottom:315.989550px;}
.y1ef{bottom:317.250000px;}
.y2d{bottom:317.612013px;}
.y1a6{bottom:317.646017px;}
.y1c5{bottom:317.646317px;}
.y8b{bottom:317.699400px;}
.y226{bottom:317.699850px;}
.y228{bottom:319.770900px;}
.y54{bottom:321.119889px;}
.y1cc{bottom:330.154515px;}
.y120{bottom:331.559700px;}
.y15c{bottom:331.559850px;}
.y262{bottom:331.560087px;}
.y16a{bottom:331.560150px;}
.y117{bottom:333.269550px;}
.yc1{bottom:333.269700px;}
.y2c{bottom:334.892004px;}
.y1a5{bottom:334.923264px;}
.y1c4{bottom:334.923414px;}
.y8a{bottom:334.979550px;}
.y225{bottom:334.979850px;}
.y1ee{bottom:335.250000px;}
.y53{bottom:338.309700px;}
.y169{bottom:345.420000px;}
.y1cb{bottom:347.431611px;}
.y11f{bottom:348.749550px;}
.y15b{bottom:348.749700px;}
.y261{bottom:348.749898px;}
.y168{bottom:348.750150px;}
.yc0{bottom:350.459550px;}
.y1a4{bottom:352.110225px;}
.y1c3{bottom:352.110525px;}
.y89{bottom:352.169400px;}
.y224{bottom:352.169850px;}
.y2b{bottom:352.171995px;}
.y1ed{bottom:353.250000px;}
.y52{bottom:355.589859px;}
.y1c9{bottom:361.379267px;}
.y129{bottom:362.430150px;}
.y1c8{bottom:364.707958px;}
.y11e{bottom:366.029550px;}
.y15a{bottom:366.029850px;}
.y260{bottom:366.029889px;}
.y167{bottom:366.030300px;}
.ybf{bottom:367.739550px;}
.y2a{bottom:369.361806px;}
.y1a3{bottom:369.387472px;}
.y1c2{bottom:369.387622px;}
.y88{bottom:369.449550px;}
.y223{bottom:369.449850px;}
.y1ec{bottom:371.160000px;}
.y1b5{bottom:371.997633px;}
.y51{bottom:372.869850px;}
.ycd{bottom:374.221050px;}
.y128{bottom:379.710150px;}
.ycb{bottom:381.510150px;}
.y1c7{bottom:381.895070px;}
.y11d{bottom:383.219550px;}
.y159{bottom:383.219700px;}
.y116{bottom:385.019550px;}
.ybe{bottom:385.019700px;}
.y29{bottom:386.641797px;}
.y1a2{bottom:386.664568px;}
.y1c1{bottom:386.664868px;}
.y87{bottom:386.729550px;}
.y222{bottom:386.730000px;}
.y1eb{bottom:388.710600px;}
.y50{bottom:390.059700px;}
.y127{bottom:396.990300px;}
.y1c6{bottom:399.172166px;}
.y11c{bottom:400.499550px;}
.y25f{bottom:400.499700px;}
.y158{bottom:400.499850px;}
.y288{bottom:400.499898px;}
.ybd{bottom:402.209550px;}
.y1ea{bottom:403.290000px;}
.y1a1{bottom:403.851530px;}
.y1c0{bottom:403.851830px;}
.y86{bottom:403.919400px;}
.y221{bottom:403.919850px;}
.y28{bottom:403.921788px;}
.y4f{bottom:407.340255px;}
.y126{bottom:414.270300px;}
.y157{bottom:417.779850px;}
.y287{bottom:417.779889px;}
.y25e{bottom:417.779898px;}
.y1e9{bottom:418.410000px;}
.y115{bottom:419.489550px;}
.ybc{bottom:419.489700px;}
.y27{bottom:421.111599px;}
.y1a0{bottom:421.128776px;}
.y1bf{bottom:421.129076px;}
.y85{bottom:421.199550px;}
.y220{bottom:421.199850px;}
.y4e{bottom:424.620246px;}
.y183{bottom:425.267181px;}
.y114{bottom:434.969550px;}
.y156{bottom:434.969700px;}
.y25d{bottom:434.969709px;}
.y1e8{bottom:436.319850px;}
.ybb{bottom:436.769700px;}
.y26{bottom:438.391590px;}
.y19f{bottom:438.405873px;}
.y1be{bottom:438.406172px;}
.y84{bottom:438.479550px;}
.y21f{bottom:438.480000px;}
.y101{bottom:438.568950px;}
.y4d{bottom:441.810057px;}
.y180{bottom:441.915883px;}
.y103{bottom:442.620000px;}
.y14d{bottom:447.210450px;}
.y113{bottom:452.249700px;}
.y155{bottom:452.249850px;}
.y286{bottom:452.250057px;}
.y1e7{bottom:453.599850px;}
.yff{bottom:453.959550px;}
.yba{bottom:453.959700px;}
.y19e{bottom:455.592984px;}
.y1bd{bottom:455.593134px;}
.y83{bottom:455.669550px;}
.y21e{bottom:455.669850px;}
.y25{bottom:455.671581px;}
.y22f{bottom:455.760000px;}
.y4c{bottom:459.090048px;}
.y112{bottom:469.529700px;}
.y154{bottom:469.529850px;}
.y285{bottom:469.530048px;}
.y25c{bottom:469.530264px;}
.y22e{bottom:469.620000px;}
.y1e6{bottom:470.880000px;}
.yb9{bottom:471.239700px;}
.y24{bottom:472.861392px;}
.y19d{bottom:472.870081px;}
.y1bc{bottom:472.870381px;}
.y82{bottom:472.949550px;}
.y21d{bottom:472.950000px;}
.y4b{bottom:476.370039px;}
.y111{bottom:486.719700px;}
.y153{bottom:486.719850px;}
.y284{bottom:486.719859px;}
.y25b{bottom:486.720075px;}
.y1e5{bottom:488.069850px;}
.yb8{bottom:488.519700px;}
.y23{bottom:490.141383px;}
.y19c{bottom:490.147327px;}
.y1bb{bottom:490.147477px;}
.y81{bottom:490.229700px;}
.y21c{bottom:490.230000px;}
.y4a{bottom:493.559850px;}
.y110{bottom:503.999700px;}
.y152{bottom:503.999850px;}
.y25a{bottom:504.000066px;}
.y1e4{bottom:505.350000px;}
.yb7{bottom:505.709700px;}
.y19b{bottom:507.334289px;}
.y1ba{bottom:507.334589px;}
.y80{bottom:507.419550px;}
.y21b{bottom:507.420000px;}
.y22{bottom:507.421374px;}
.y49{bottom:510.841620px;}
.y10f{bottom:521.279700px;}
.y151{bottom:521.280000px;}
.y283{bottom:521.280039px;}
.y259{bottom:521.280057px;}
.y1e3{bottom:522.630000px;}
.yb6{bottom:522.989700px;}
.y181{bottom:524.521850px;}
.y21{bottom:524.611185px;}
.y19a{bottom:524.611385px;}
.y1b9{bottom:524.611685px;}
.y7f{bottom:524.699550px;}
.y21a{bottom:524.700000px;}
.y48{bottom:528.121611px;}
.ycf{bottom:530.010750px;}
.y10e{bottom:538.469700px;}
.y150{bottom:538.469850px;}
.y258{bottom:538.469868px;}
.yb5{bottom:540.179700px;}
.y1e2{bottom:540.540000px;}
.y199{bottom:541.888631px;}
.y1b8{bottom:541.888781px;}
.y20{bottom:541.891176px;}
.y7e{bottom:541.979700px;}
.y219{bottom:541.980000px;}
.y47{bottom:545.311422px;}
.y10d{bottom:555.749700px;}
.y14f{bottom:555.749850px;}
.y257{bottom:555.749859px;}
.y282{bottom:555.750009px;}
.yb4{bottom:557.459700px;}
.y1e1{bottom:558.540000px;}
.y198{bottom:559.075593px;}
.y1b7{bottom:559.075893px;}
.y1f{bottom:559.080987px;}
.y7d{bottom:559.169550px;}
.y218{bottom:559.170000px;}
.y46{bottom:562.591413px;}
.y10c{bottom:573.029850px;}
.y14e{bottom:573.030000px;}
.yfe{bottom:574.739700px;}
.yb3{bottom:574.739850px;}
.y197{bottom:576.352839px;}
.y196{bottom:576.352989px;}
.y1e{bottom:576.360978px;}
.y7c{bottom:576.449700px;}
.y217{bottom:576.450000px;}
.y1e0{bottom:576.540000px;}
.y45{bottom:579.781224px;}
.y14c{bottom:583.560000px;}
.y10b{bottom:590.219700px;}
.y14b{bottom:590.219850px;}
.y281{bottom:590.220009px;}
.yb2{bottom:591.929700px;}
.y227{bottom:592.740000px;}
.y195{bottom:593.630236px;}
.y1d{bottom:593.640969px;}
.y7b{bottom:593.729700px;}
.y216{bottom:593.730150px;}
.y1df{bottom:594.540000px;}
.y44{bottom:597.061215px;}
.y16f{bottom:603.990000px;}
.y10a{bottom:607.499850px;}
.y14a{bottom:607.500000px;}
.y256{bottom:607.500462px;}
.yfd{bottom:609.209700px;}
.yb1{bottom:609.209850px;}
.y194{bottom:610.817197px;}
.y1c{bottom:610.830780px;}
.y7a{bottom:610.919700px;}
.y215{bottom:610.920000px;}
.y1de{bottom:612.540000px;}
.y102{bottom:614.340450px;}
.y43{bottom:614.341206px;}
.y16e{bottom:621.270150px;}
.y100{bottom:621.630000px;}
.y109{bottom:624.779850px;}
.y149{bottom:624.780000px;}
.y255{bottom:624.780453px;}
.yb0{bottom:626.489850px;}
.y193{bottom:628.094444px;}
.y1b{bottom:628.110771px;}
.y79{bottom:628.199700px;}
.y214{bottom:628.200150px;}
.y1dd{bottom:630.540000px;}
.y42{bottom:631.531017px;}
.y179{bottom:636.373653px;}
.y173{bottom:636.453861px;}
.y108{bottom:641.969700px;}
.y148{bottom:641.970000px;}
.y254{bottom:641.970264px;}
.yaf{bottom:643.679700px;}
.y192{bottom:645.371540px;}
.y1a{bottom:645.390762px;}
.y78{bottom:645.479700px;}
.y213{bottom:645.480150px;}
.y17f{bottom:646.001435px;}
.y1dc{bottom:648.540000px;}
.y41{bottom:648.811008px;}
.y176{bottom:657.429514px;}
.y174{bottom:657.484755px;}
.y170{bottom:657.512377px;}
.y107{bottom:659.249850px;}
.y280{bottom:659.249898px;}
.y147{bottom:659.250000px;}
.y253{bottom:659.250255px;}
.yfc{bottom:660.959700px;}
.yae{bottom:660.959850px;}
.y191{bottom:662.558652px;}
.y19{bottom:662.580573px;}
.y77{bottom:662.669700px;}
.y212{bottom:662.670150px;}
.y40{bottom:666.090999px;}
.y1db{bottom:666.540000px;}
.y106{bottom:676.529850px;}
.y27f{bottom:676.529889px;}
.y146{bottom:676.530150px;}
.y252{bottom:676.530246px;}
.yad{bottom:678.239850px;}
.y190{bottom:679.835748px;}
.y18{bottom:679.860564px;}
.y76{bottom:679.949700px;}
.y211{bottom:679.950150px;}
.y182{bottom:682.625280px;}
.y3f{bottom:683.280810px;}
.y1da{bottom:684.090450px;}
.y27e{bottom:693.719700px;}
.y105{bottom:693.719850px;}
.y145{bottom:693.720000px;}
.y251{bottom:693.720057px;}
.yfb{bottom:695.429700px;}
.yac{bottom:695.429850px;}
.y18f{bottom:697.112845px;}
.y17{bottom:697.140555px;}
.y75{bottom:697.229850px;}
.y210{bottom:697.230150px;}
.y1d9{bottom:698.580000px;}
.y17d{bottom:700.262316px;}
.y3e{bottom:700.560801px;}
.y104{bottom:710.999850px;}
.y250{bottom:711.000048px;}
.y144{bottom:711.450000px;}
.yab{bottom:712.709850px;}
.y1d8{bottom:713.699850px;}
.y18e{bottom:714.299956px;}
.y16{bottom:714.330366px;}
.y74{bottom:714.419700px;}
.y20f{bottom:714.420150px;}
.y3d{bottom:717.840792px;}
.yf7{bottom:728.189850px;}
.y24f{bottom:728.189859px;}
.yfa{bottom:729.989850px;}
.yaa{bottom:729.990000px;}
.y18d{bottom:731.577053px;}
.y15{bottom:731.610357px;}
.y73{bottom:731.699850px;}
.y20e{bottom:731.700150px;}
.y22d{bottom:734.400000px;}
.y3c{bottom:735.030603px;}
.yf6{bottom:745.469850px;}
.ya9{bottom:747.179850px;}
.y18c{bottom:748.764164px;}
.y72{bottom:748.889700px;}
.y20d{bottom:748.890150px;}
.y14{bottom:748.890348px;}
.y22c{bottom:751.680000px;}
.y3b{bottom:752.310594px;}
.yf5{bottom:762.749850px;}
.y27d{bottom:762.750057px;}
.y24e{bottom:762.750564px;}
.ya8{bottom:764.459850px;}
.y22b{bottom:765.630000px;}
.y18b{bottom:766.041261px;}
.y13{bottom:766.080159px;}
.y71{bottom:766.169850px;}
.y20c{bottom:766.170150px;}
.y22a{bottom:768.959850px;}
.y3a{bottom:769.590585px;}
.y17e{bottom:771.260384px;}
.yf4{bottom:779.939850px;}
.y27c{bottom:779.939868px;}
.y24d{bottom:779.940375px;}
.yf9{bottom:781.739850px;}
.ya7{bottom:781.740000px;}
.y18a{bottom:783.318357px;}
.y12{bottom:783.360150px;}
.y70{bottom:783.449850px;}
.y20b{bottom:783.450300px;}
.y229{bottom:786.149850px;}
.y39{bottom:786.780396px;}
.yf3{bottom:797.219850px;}
.y27b{bottom:797.219859px;}
.y24c{bottom:797.220366px;}
.ya6{bottom:798.929850px;}
.y189{bottom:800.505469px;}
.y6f{bottom:800.639700px;}
.y143{bottom:800.639850px;}
.y20a{bottom:800.640150px;}
.y11{bottom:801.090000px;}
.y38{bottom:804.060387px;}
.y27a{bottom:814.499850px;}
.yf2{bottom:814.500000px;}
.y24b{bottom:814.500357px;}
.yf8{bottom:816.209850px;}
.ya5{bottom:816.210000px;}
.y177{bottom:816.883466px;}
.y175{bottom:816.952105px;}
.y171{bottom:816.986427px;}
.y188{bottom:817.782565px;}
.y6e{bottom:817.919850px;}
.y209{bottom:817.920150px;}
.y10{bottom:821.880000px;}
.yf1{bottom:831.689850px;}
.y279{bottom:831.690018px;}
.y24a{bottom:831.690168px;}
.ya4{bottom:833.490000px;}
.y187{bottom:835.059812px;}
.y6d{bottom:835.199850px;}
.y208{bottom:835.200300px;}
.yb{bottom:842.580150px;}
.yf0{bottom:848.970000px;}
.y278{bottom:848.970009px;}
.y249{bottom:848.970159px;}
.y178{bottom:850.627196px;}
.ye9{bottom:850.679850px;}
.ya3{bottom:850.680000px;}
.y172{bottom:850.734409px;}
.y186{bottom:852.246773px;}
.y6c{bottom:852.389850px;}
.y207{bottom:852.390150px;}
.yf{bottom:863.280300px;}
.ya{bottom:863.280450px;}
.yef{bottom:866.250000px;}
.y248{bottom:866.250150px;}
.ya2{bottom:867.960000px;}
.y185{bottom:869.524020px;}
.y6b{bottom:869.669850px;}
.y206{bottom:869.670300px;}
.y277{bottom:883.439859px;}
.yee{bottom:883.440000px;}
.ye{bottom:883.980000px;}
.y9{bottom:883.980300px;}
.ye8{bottom:885.149850px;}
.ya1{bottom:885.150000px;}
.y184{bottom:886.801116px;}
.y6a{bottom:886.950000px;}
.y205{bottom:886.950300px;}
.y17c{bottom:899.128895px;}
.y276{bottom:900.719850px;}
.yed{bottom:900.720000px;}
.y247{bottom:901.170000px;}
.ye7{bottom:902.429850px;}
.ya0{bottom:902.430000px;}
.y17b{bottom:903.988228px;}
.y69{bottom:904.139850px;}
.y204{bottom:904.140300px;}
.yd{bottom:904.680000px;}
.y8{bottom:904.680300px;}
.y275{bottom:918.000564px;}
.yec{bottom:918.450000px;}
.ye6{bottom:919.710000px;}
.y9f{bottom:919.890000px;}
.y17a{bottom:921.265324px;}
.y68{bottom:921.419850px;}
.y142{bottom:921.420000px;}
.y203{bottom:921.420300px;}
.yc{bottom:925.470000px;}
.y7{bottom:925.470150px;}
.y274{bottom:935.190375px;}
.ye5{bottom:936.899850px;}
.yeb{bottom:938.699250px;}
.y67{bottom:938.700000px;}
.y141{bottom:938.700150px;}
.y202{bottom:938.700300px;}
.y9e{bottom:938.700450px;}
.y246{bottom:938.700603px;}
.y6{bottom:946.170150px;}
.y273{bottom:952.470366px;}
.ye4{bottom:954.180000px;}
.yea{bottom:955.889250px;}
.y66{bottom:955.889850px;}
.y140{bottom:955.890150px;}
.y201{bottom:955.890300px;}
.y245{bottom:955.890414px;}
.y9d{bottom:955.890450px;}
.y5{bottom:966.870000px;}
.y272{bottom:969.750357px;}
.ye3{bottom:971.460000px;}
.yde{bottom:973.169250px;}
.y65{bottom:973.170000px;}
.y13f{bottom:973.170150px;}
.y200{bottom:973.170300px;}
.y244{bottom:973.170405px;}
.y9c{bottom:973.170450px;}
.y271{bottom:986.940168px;}
.y4{bottom:987.930756px;}
.ye2{bottom:988.650000px;}
.ydd{bottom:990.449400px;}
.y64{bottom:990.450000px;}
.y13e{bottom:990.450300px;}
.y243{bottom:990.450396px;}
.y1ff{bottom:990.450450px;}
.y9b{bottom:990.450600px;}
.y270{bottom:1004.220159px;}
.ye1{bottom:1005.930000px;}
.ydc{bottom:1007.639250px;}
.y63{bottom:1007.640000px;}
.y13d{bottom:1007.640150px;}
.y242{bottom:1007.640207px;}
.y1fe{bottom:1007.640300px;}
.y9a{bottom:1007.640450px;}
.y3{bottom:1012.050450px;}
.y26f{bottom:1021.500150px;}
.ye0{bottom:1023.210150px;}
.ydb{bottom:1024.919400px;}
.y62{bottom:1024.920000px;}
.y241{bottom:1024.920198px;}
.y13c{bottom:1024.920300px;}
.y1fd{bottom:1024.920450px;}
.y99{bottom:1024.920600px;}
.y2{bottom:1036.260150px;}
.y26e{bottom:1038.690000px;}
.ydf{bottom:1040.400000px;}
.yda{bottom:1042.199400px;}
.y61{bottom:1042.200000px;}
.y240{bottom:1042.200189px;}
.y13b{bottom:1042.200300px;}
.y1fc{bottom:1042.200450px;}
.y98{bottom:1042.200600px;}
.y26d{bottom:1056.420000px;}
.yd9{bottom:1057.860000px;}
.y60{bottom:1059.390000px;}
.y13a{bottom:1059.390150px;}
.y1fb{bottom:1059.390450px;}
.y97{bottom:1059.390600px;}
.y1{bottom:1060.380000px;}
.h1e{height:16.827172px;}
.hb{height:16.830000px;}
.h20{height:33.268184px;}
.h1d{height:39.112520px;}
.h15{height:40.341515px;}
.h12{height:40.346600px;}
.h5{height:41.743477px;}
.h16{height:41.765813px;}
.h6{height:41.772832px;}
.h22{height:41.773432px;}
.h18{height:42.168848px;}
.h19{height:42.175611px;}
.h1b{height:43.761649px;}
.ha{height:43.769004px;}
.h7{height:44.649141px;}
.h21{height:44.734368px;}
.h1c{height:46.242925px;}
.h17{height:46.666864px;}
.h14{height:47.696809px;}
.h13{height:47.700816px;}
.h11{height:47.702820px;}
.hc{height:47.890432px;}
.h1f{height:48.788676px;}
.h4{height:48.796875px;}
.hd{height:49.000754px;}
.h3{height:49.992188px;}
.h2{height:50.027344px;}
.h8{height:50.181032px;}
.h10{height:50.880375px;}
.hf{height:53.995181px;}
.he{height:55.481954px;}
.h1{height:56.848359px;}
.h9{height:57.742232px;}
.h1a{height:97.754376px;}
.h0{height:1188.000000px;}
.w6{width:59.040000px;}
.w5{width:63.630000px;}
.w2{width:178.920000px;}
.w1{width:276.750000px;}
.w4{width:330.813481px;}
.w3{width:358.830000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3e{left:51.660000px;}
.x3c{left:56.250000px;}
.x3a{left:80.820300px;}
.x4{left:86.760000px;}
.x21{left:90.629850px;}
.x2{left:92.700300px;}
.x38{left:95.400000px;}
.x7{left:98.280000px;}
.x2e{left:100.161971px;}
.xf{left:104.670000px;}
.x6{left:107.910000px;}
.x40{left:113.760000px;}
.x33{left:129.329400px;}
.x41{left:140.759892px;}
.x5{left:142.740000px;}
.x20{left:145.620600px;}
.x23{left:156.236869px;}
.x1c{left:162.180000px;}
.x35{left:163.889700px;}
.x1b{left:174.870000px;}
.x8{left:193.950000px;}
.x34{left:202.590000px;}
.x1d{left:209.610000px;}
.xe{left:230.760150px;}
.x1f{left:241.200000px;}
.x25{left:250.104988px;}
.x30{left:255.219541px;}
.x9{left:264.240000px;}
.x19{left:271.800000px;}
.x2f{left:290.316877px;}
.x36{left:293.669550px;}
.x32{left:323.524065px;}
.x37{left:328.860000px;}
.x24{left:343.793110px;}
.x3{left:350.729859px;}
.x22{left:354.780000px;}
.x3b{left:372.600000px;}
.x3d{left:385.920000px;}
.x13{left:451.621050px;}
.x1{left:459.000000px;}
.x10{left:476.190558px;}
.xb{left:478.710150px;}
.x3f{left:479.880000px;}
.x15{left:480.960600px;}
.x1e{left:482.040000px;}
.xc{left:487.710150px;}
.xd{left:489.150150px;}
.x11{left:494.100450px;}
.x31{left:500.089911px;}
.x17{left:511.110750px;}
.x12{left:518.760171px;}
.x42{left:530.189934px;}
.x2b{left:531.587386px;}
.xa{left:537.390000px;}
.x28{left:539.686737px;}
.x14{left:552.870000px;}
.x29{left:560.115099px;}
.x18{left:565.380000px;}
.x26{left:569.024385px;}
.x16{left:613.260150px;}
.x27{left:624.819912px;}
.x2a{left:626.349789px;}
.x39{left:652.950000px;}
.x2d{left:655.327166px;}
.x2c{left:657.037329px;}
.x1a{left:663.210000px;}
@media print{
.v1{vertical-align:-7.358400pt;}
.v4{vertical-align:-6.079467pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.437867pt;}
.v2{vertical-align:6.721067pt;}
.v5{vertical-align:23.999467pt;}
.v6{vertical-align:47.993534pt;}
.ls54{letter-spacing:-0.396671pt;}
.ls56{letter-spacing:-0.396654pt;}
.ls57{letter-spacing:-0.396621pt;}
.ls44{letter-spacing:-0.316826pt;}
.ls43{letter-spacing:-0.298189pt;}
.ls5f{letter-spacing:-0.281752pt;}
.ls32{letter-spacing:-0.171553pt;}
.ls33{letter-spacing:-0.159299pt;}
.ls55{letter-spacing:-0.147784pt;}
.ls58{letter-spacing:-0.147766pt;}
.ls3c{letter-spacing:-0.137604pt;}
.ls3d{letter-spacing:-0.090848pt;}
.ls2d{letter-spacing:-0.085504pt;}
.ls26{letter-spacing:-0.080160pt;}
.ls5e{letter-spacing:-0.076906pt;}
.ls21{letter-spacing:-0.074816pt;}
.ls1d{letter-spacing:-0.069472pt;}
.ls1c{letter-spacing:-0.064128pt;}
.ls30{letter-spacing:-0.061269pt;}
.ls2c{letter-spacing:-0.058784pt;}
.ls25{letter-spacing:-0.053440pt;}
.ls22{letter-spacing:-0.048096pt;}
.ls5d{letter-spacing:-0.047327pt;}
.ls1b{letter-spacing:-0.042752pt;}
.ls61{letter-spacing:-0.042745pt;}
.ls2b{letter-spacing:-0.037408pt;}
.ls59{letter-spacing:-0.034187pt;}
.ls24{letter-spacing:-0.032064pt;}
.ls23{letter-spacing:-0.026720pt;}
.ls6e{letter-spacing:-0.021376pt;}
.ls62{letter-spacing:-0.021372pt;}
.ls42{letter-spacing:-0.016032pt;}
.ls5c{letter-spacing:-0.016029pt;}
.ls2e{letter-spacing:-0.010688pt;}
.ls3b{letter-spacing:-0.006400pt;}
.ls5a{letter-spacing:-0.005698pt;}
.ls1f{letter-spacing:-0.005344pt;}
.ls16{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.000533pt;}
.ls65{letter-spacing:0.004256pt;}
.ls5{letter-spacing:0.005344pt;}
.ls4d{letter-spacing:0.010686pt;}
.ls11{letter-spacing:0.010688pt;}
.ls4e{letter-spacing:0.016029pt;}
.ls20{letter-spacing:0.016032pt;}
.ls2{letter-spacing:0.019200pt;}
.ls52{letter-spacing:0.021372pt;}
.ls7{letter-spacing:0.021376pt;}
.ls1{letter-spacing:0.025600pt;}
.ls4c{letter-spacing:0.026716pt;}
.ls15{letter-spacing:0.026720pt;}
.ls6a{letter-spacing:0.027309pt;}
.ls60{letter-spacing:0.031995pt;}
.ls0{letter-spacing:0.032000pt;}
.ls53{letter-spacing:0.032059pt;}
.ls14{letter-spacing:0.032064pt;}
.ls4b{letter-spacing:0.037402pt;}
.ls6{letter-spacing:0.037408pt;}
.ls68{letter-spacing:0.038304pt;}
.ls19{letter-spacing:0.038400pt;}
.ls63{letter-spacing:0.042745pt;}
.ls1e{letter-spacing:0.042752pt;}
.ls1a{letter-spacing:0.044800pt;}
.ls4f{letter-spacing:0.048088pt;}
.ls28{letter-spacing:0.048096pt;}
.ls18{letter-spacing:0.052192pt;}
.ls2f{letter-spacing:0.052704pt;}
.ls27{letter-spacing:0.053440pt;}
.ls34{letter-spacing:0.058560pt;}
.ls12{letter-spacing:0.058784pt;}
.ls31{letter-spacing:0.061269pt;}
.lse{letter-spacing:0.064128pt;}
.ls17{letter-spacing:0.067104pt;}
.ls66{letter-spacing:0.068096pt;}
.ls50{letter-spacing:0.069460pt;}
.ls4{letter-spacing:0.069472pt;}
.lsa{letter-spacing:0.074816pt;}
.ls37{letter-spacing:0.077776pt;}
.ls8{letter-spacing:0.080160pt;}
.ls67{letter-spacing:0.085120pt;}
.ls51{letter-spacing:0.085490pt;}
.lsd{letter-spacing:0.085504pt;}
.lsf{letter-spacing:0.090848pt;}
.ls3{letter-spacing:0.096192pt;}
.ls9{letter-spacing:0.101536pt;}
.ls5b{letter-spacing:0.102561pt;}
.lsc{letter-spacing:0.106880pt;}
.ls10{letter-spacing:0.112224pt;}
.ls35{letter-spacing:0.113673pt;}
.lsb{letter-spacing:0.117568pt;}
.ls13{letter-spacing:0.122912pt;}
.ls48{letter-spacing:0.123567pt;}
.ls49{letter-spacing:0.123587pt;}
.ls41{letter-spacing:0.128256pt;}
.ls6b{letter-spacing:0.133600pt;}
.ls40{letter-spacing:0.133653pt;}
.ls3e{letter-spacing:0.134187pt;}
.ls39{letter-spacing:0.138944pt;}
.ls6d{letter-spacing:0.144288pt;}
.ls6f{letter-spacing:0.154976pt;}
.ls69{letter-spacing:0.160320pt;}
.ls3a{letter-spacing:0.160533pt;}
.ls2a{letter-spacing:0.171553pt;}
.ls4a{letter-spacing:0.216242pt;}
.ls6c{letter-spacing:0.283232pt;}
.ls36{letter-spacing:0.352984pt;}
.ls64{letter-spacing:0.365945pt;}
.ls29{letter-spacing:0.379867pt;}
.ls47{letter-spacing:0.475945pt;}
.ls46{letter-spacing:0.475985pt;}
.ls45{letter-spacing:0.476005pt;}
.ls38{letter-spacing:1371.275733pt;}
.ws5a{word-spacing:-17.412593pt;}
.ws5d{word-spacing:-17.204279pt;}
.ws5e{word-spacing:-16.873428pt;}
.ws5c{word-spacing:-16.861174pt;}
.wsb5{word-spacing:-16.709886pt;}
.wsb4{word-spacing:-16.494506pt;}
.ws0{word-spacing:-16.032000pt;}
.ws2{word-spacing:-16.019200pt;}
.ws1{word-spacing:-16.000000pt;}
.ws152{word-spacing:-15.732564pt;}
.ws154{word-spacing:-15.731903pt;}
.ws156{word-spacing:-15.730581pt;}
.ws17c{word-spacing:-15.549934pt;}
.ws151{word-spacing:-14.859889pt;}
.ws153{word-spacing:-14.859264pt;}
.ws155{word-spacing:-14.858016pt;}
.ws157{word-spacing:-14.742321pt;}
.ws1b1{word-spacing:-13.520320pt;}
.ws1b5{word-spacing:-13.514976pt;}
.ws1b2{word-spacing:-13.450848pt;}
.wsb7{word-spacing:-13.360000pt;}
.wsb6{word-spacing:-13.354656pt;}
.ws1b3{word-spacing:-13.338624pt;}
.ws1b4{word-spacing:-13.311904pt;}
.ws1e8{word-spacing:-1.020704pt;}
.ws1e7{word-spacing:-1.010016pt;}
.ws164{word-spacing:-0.786299pt;}
.ws161{word-spacing:-0.757809pt;}
.wsec{word-spacing:-0.379424pt;}
.ws17{word-spacing:-0.358048pt;}
.wsf9{word-spacing:-0.335571pt;}
.ws143{word-spacing:-0.325984pt;}
.ws146{word-spacing:-0.267200pt;}
.ws145{word-spacing:-0.229792pt;}
.ws1ce{word-spacing:-0.213760pt;}
.ws1ad{word-spacing:-0.160320pt;}
.ws1d0{word-spacing:-0.149632pt;}
.ws4{word-spacing:-0.149120pt;}
.wsb1{word-spacing:-0.144288pt;}
.wsf6{word-spacing:-0.138944pt;}
.ws5{word-spacing:-0.134208pt;}
.ws165{word-spacing:-0.123567pt;}
.wsf3{word-spacing:-0.122912pt;}
.ws14e{word-spacing:-0.117568pt;}
.ws160{word-spacing:-0.112224pt;}
.ws167{word-spacing:-0.112205pt;}
.ws1dc{word-spacing:-0.053440pt;}
.ws1de{word-spacing:-0.048096pt;}
.ws9{word-spacing:-0.044800pt;}
.ws4b{word-spacing:-0.042752pt;}
.ws7{word-spacing:-0.038400pt;}
.ws1e0{word-spacing:-0.037408pt;}
.ws135{word-spacing:-0.032064pt;}
.ws6{word-spacing:-0.032000pt;}
.ws16e{word-spacing:-0.031995pt;}
.ws163{word-spacing:-0.030897pt;}
.ws162{word-spacing:-0.030892pt;}
.wsdf{word-spacing:-0.026720pt;}
.ws8{word-spacing:-0.025600pt;}
.ws43{word-spacing:-0.021376pt;}
.ws28{word-spacing:-0.019200pt;}
.ws21{word-spacing:-0.016032pt;}
.ws49{word-spacing:-0.010688pt;}
.ws86{word-spacing:-0.005344pt;}
.ws3{word-spacing:0.000000pt;}
.ws1d3{word-spacing:0.005344pt;}
.wsc9{word-spacing:0.006400pt;}
.ws50{word-spacing:0.010688pt;}
.ws1d7{word-spacing:0.016032pt;}
.ws126{word-spacing:0.021376pt;}
.wsb8{word-spacing:0.023424pt;}
.ws9d{word-spacing:0.029280pt;}
.ws6f{word-spacing:0.032064pt;}
.ws1db{word-spacing:0.037408pt;}
.ws1a2{word-spacing:0.042752pt;}
.ws104{word-spacing:0.048096pt;}
.ws1d6{word-spacing:0.058784pt;}
.ws1e2{word-spacing:0.069472pt;}
.ws125{word-spacing:0.074816pt;}
.ws1d4{word-spacing:0.090848pt;}
.ws1c4{word-spacing:0.101536pt;}
.ws1d9{word-spacing:0.106880pt;}
.ws1cd{word-spacing:0.112224pt;}
.wsd3{word-spacing:0.117568pt;}
.wseb{word-spacing:0.122912pt;}
.ws15e{word-spacing:0.128256pt;}
.ws10d{word-spacing:0.133600pt;}
.ws1bf{word-spacing:0.144288pt;}
.ws1e5{word-spacing:0.149632pt;}
.ws1df{word-spacing:0.154976pt;}
.ws16a{word-spacing:0.181665pt;}
.ws15d{word-spacing:0.277888pt;}
.ws23{word-spacing:0.283232pt;}
.ws32{word-spacing:0.288576pt;}
.ws1c5{word-spacing:0.309952pt;}
.ws136{word-spacing:0.323038pt;}
.ws2c{word-spacing:0.400800pt;}
.ws179{word-spacing:0.422105pt;}
.ws169{word-spacing:0.475536pt;}
.ws89{word-spacing:0.635936pt;}
.ws40{word-spacing:0.641280pt;}
.ws1a{word-spacing:0.646624pt;}
.ws178{word-spacing:0.699946pt;}
.ws2b{word-spacing:0.700064pt;}
.ws8a{word-spacing:0.732128pt;}
.ws1cc{word-spacing:0.774880pt;}
.ws1e{word-spacing:0.935200pt;}
.ws1ca{word-spacing:0.967264pt;}
.ws2a{word-spacing:0.977952pt;}
.ws85{word-spacing:0.993984pt;}
.ws14b{word-spacing:1.100864pt;}
.ws24{word-spacing:1.261184pt;}
.ws36{word-spacing:1.282560pt;}
.ws84{word-spacing:1.298592pt;}
.ws1b9{word-spacing:1.389440pt;}
.ws20{word-spacing:1.581824pt;}
.ws6b{word-spacing:1.587168pt;}
.wscf{word-spacing:1.603200pt;}
.ws1d1{word-spacing:1.608544pt;}
.ws19c{word-spacing:1.624576pt;}
.ws93{word-spacing:1.710080pt;}
.ws199{word-spacing:1.886432pt;}
.ws19d{word-spacing:1.918496pt;}
.ws115{word-spacing:1.923840pt;}
.ws11d{word-spacing:1.945216pt;}
.ws11c{word-spacing:1.961248pt;}
.wsd5{word-spacing:1.966592pt;}
.ws15c{word-spacing:1.971936pt;}
.wse8{word-spacing:1.977280pt;}
.wse9{word-spacing:2.009344pt;}
.ws9e{word-spacing:2.062784pt;}
.ws2e{word-spacing:2.228448pt;}
.wsa0{word-spacing:2.244480pt;}
.wse5{word-spacing:2.260512pt;}
.ws100{word-spacing:2.276544pt;}
.wsd4{word-spacing:2.287232pt;}
.wsda{word-spacing:2.308608pt;}
.ws118{word-spacing:2.313952pt;}
.wsa7{word-spacing:2.378080pt;}
.ws1c1{word-spacing:2.549088pt;}
.ws1cf{word-spacing:2.565120pt;}
.wsad{word-spacing:2.581152pt;}
.wsd9{word-spacing:2.639936pt;}
.ws1a3{word-spacing:2.741472pt;}
.wsee{word-spacing:2.869728pt;}
.wsf{word-spacing:2.880416pt;}
.ws4a{word-spacing:2.901792pt;}
.wsbd{word-spacing:2.955232pt;}
.ws140{word-spacing:2.960576pt;}
.ws76{word-spacing:3.008672pt;}
.ws15{word-spacing:3.024704pt;}
.wsef{word-spacing:3.035392pt;}
.wsbc{word-spacing:3.211744pt;}
.ws117{word-spacing:3.243808pt;}
.wsed{word-spacing:3.265184pt;}
.ws13f{word-spacing:3.270528pt;}
.ws94{word-spacing:3.318624pt;}
.ws34{word-spacing:3.323968pt;}
.ws14f{word-spacing:3.382752pt;}
.ws19{word-spacing:3.511008pt;}
.ws6a{word-spacing:3.521696pt;}
.ws4d{word-spacing:3.527040pt;}
.ws197{word-spacing:3.532384pt;}
.ws17b{word-spacing:3.558506pt;}
.ws4c{word-spacing:3.596512pt;}
.ws19b{word-spacing:3.607200pt;}
.ws1ac{word-spacing:3.682016pt;}
.ws196{word-spacing:3.847680pt;}
.wsc6{word-spacing:3.858368pt;}
.ws57{word-spacing:3.869056pt;}
.ws171{word-spacing:3.884435pt;}
.ws65{word-spacing:3.885088pt;}
.ws17a{word-spacing:3.889778pt;}
.ws19a{word-spacing:3.906464pt;}
.ws74{word-spacing:3.911808pt;}
.ws10c{word-spacing:3.922496pt;}
.ws10b{word-spacing:3.975936pt;}
.ws1b8{word-spacing:3.981280pt;}
.wsd0{word-spacing:3.991968pt;}
.ws106{word-spacing:4.136256pt;}
.ws14a{word-spacing:4.146944pt;}
.wsd8{word-spacing:4.157632pt;}
.wsa8{word-spacing:4.173664pt;}
.ws113{word-spacing:4.179008pt;}
.ws73{word-spacing:4.195040pt;}
.ws64{word-spacing:4.205728pt;}
.ws56{word-spacing:4.211072pt;}
.ws13b{word-spacing:4.280544pt;}
.ws58{word-spacing:4.307264pt;}
.ws37{word-spacing:4.456896pt;}
.ws2d{word-spacing:4.467584pt;}
.ws124{word-spacing:4.472928pt;}
.ws149{word-spacing:4.478272pt;}
.ws11f{word-spacing:4.504992pt;}
.wse4{word-spacing:4.510336pt;}
.wse3{word-spacing:4.547744pt;}
.ws111{word-spacing:4.595840pt;}
.ws15b{word-spacing:4.622560pt;}
.ws33{word-spacing:4.788224pt;}
.wsac{word-spacing:4.804256pt;}
.wsdd{word-spacing:4.836320pt;}
.wsba{word-spacing:4.927168pt;}
.wsa6{word-spacing:4.943200pt;}
.ws39{word-spacing:5.124896pt;}
.ws134{word-spacing:5.135584pt;}
.wsdc{word-spacing:5.140928pt;}
.wsab{word-spacing:5.156960pt;}
.ws139{word-spacing:5.242464pt;}
.ws1a7{word-spacing:5.279872pt;}
.ws108{word-spacing:5.418816pt;}
.ws44{word-spacing:5.434848pt;}
.wsfc{word-spacing:5.456224pt;}
.ws55{word-spacing:5.488288pt;}
.ws175{word-spacing:5.503395pt;}
.ws13c{word-spacing:5.536384pt;}
.ws112{word-spacing:5.579136pt;}
.ws25{word-spacing:5.589824pt;}
.ws53{word-spacing:5.600512pt;}
.ws101{word-spacing:5.734112pt;}
.ws159{word-spacing:5.776864pt;}
.wsbf{word-spacing:5.808928pt;}
.ws174{word-spacing:5.823981pt;}
.wsfb{word-spacing:5.878400pt;}
.ws184{word-spacing:6.060096pt;}
.ws1be{word-spacing:6.076128pt;}
.ws8f{word-spacing:6.081472pt;}
.wsa4{word-spacing:6.086816pt;}
.ws1cb{word-spacing:6.097504pt;}
.ws1bd{word-spacing:6.172320pt;}
.wsb0{word-spacing:6.247136pt;}
.ws3d{word-spacing:6.396768pt;}
.ws7c{word-spacing:6.402112pt;}
.wsfa{word-spacing:6.557088pt;}
.ws47{word-spacing:6.701376pt;}
.ws105{word-spacing:6.744128pt;}
.ws158{word-spacing:7.059424pt;}
.ws11b{word-spacing:7.091488pt;}
.wsc{word-spacing:7.112864pt;}
.ws177{word-spacing:7.159757pt;}
.ws7b{word-spacing:7.176992pt;}
.ws1a6{word-spacing:7.225088pt;}
.ws109{word-spacing:7.342656pt;}
.ws38{word-spacing:7.353344pt;}
.wsb{word-spacing:7.369376pt;}
.ws67{word-spacing:7.390752pt;}
.ws6e{word-spacing:7.396096pt;}
.ws66{word-spacing:7.519008pt;}
.ws1a9{word-spacing:7.529696pt;}
.ws7a{word-spacing:7.663296pt;}
.ws68{word-spacing:7.668640pt;}
.ws1f{word-spacing:7.673984pt;}
.ws137{word-spacing:7.679328pt;}
.ws10a{word-spacing:7.684672pt;}
.wsd{word-spacing:7.722080pt;}
.wse7{word-spacing:7.732768pt;}
.wse{word-spacing:7.738112pt;}
.ws6d{word-spacing:7.754144pt;}
.wsaa{word-spacing:7.807584pt;}
.wsaf{word-spacing:7.834304pt;}
.ws16b{word-spacing:7.843674pt;}
.ws16c{word-spacing:7.854360pt;}
.ws75{word-spacing:7.978592pt;}
.ws31{word-spacing:7.989280pt;}
.ws13{word-spacing:8.005312pt;}
.wsa3{word-spacing:8.048064pt;}
.wse6{word-spacing:8.069440pt;}
.wsfe{word-spacing:8.299232pt;}
.ws46{word-spacing:8.309920pt;}
.wsff{word-spacing:8.315264pt;}
.ws1a1{word-spacing:8.325952pt;}
.wse2{word-spacing:8.400768pt;}
.ws48{word-spacing:8.603840pt;}
.wsa9{word-spacing:8.619872pt;}
.ws3c{word-spacing:8.651936pt;}
.ws9b{word-spacing:8.689344pt;}
.wsc7{word-spacing:8.780192pt;}
.ws51{word-spacing:8.951200pt;}
.wsf7{word-spacing:8.967232pt;}
.ws95{word-spacing:8.988608pt;}
.ws3f{word-spacing:9.036704pt;}
.ws183{word-spacing:9.042048pt;}
.ws83{word-spacing:9.106176pt;}
.ws132{word-spacing:9.116864pt;}
.ws8e{word-spacing:9.266496pt;}
.ws71{word-spacing:9.277184pt;}
.wsd6{word-spacing:9.293216pt;}
.ws9f{word-spacing:9.303904pt;}
.ws128{word-spacing:9.346656pt;}
.ws182{word-spacing:9.357344pt;}
.ws116{word-spacing:9.416128pt;}
.wsdb{word-spacing:9.448192pt;}
.ws54{word-spacing:9.592480pt;}
.ws127{word-spacing:9.597824pt;}
.ws17f{word-spacing:9.603168pt;}
.ws9c{word-spacing:9.608512pt;}
.ws1c8{word-spacing:9.667296pt;}
.ws122{word-spacing:9.731424pt;}
.wsd7{word-spacing:9.758144pt;}
.ws91{word-spacing:9.891744pt;}
.ws12d{word-spacing:9.897088pt;}
.wsea{word-spacing:9.945184pt;}
.ws1c7{word-spacing:9.982592pt;}
.ws142{word-spacing:10.244448pt;}
.ws77{word-spacing:10.303232pt;}
.ws78{word-spacing:10.378048pt;}
.ws4e{word-spacing:10.394080pt;}
.ws4f{word-spacing:10.549056pt;}
.ws87{word-spacing:10.554400pt;}
.ws19e{word-spacing:10.559744pt;}
.ws103{word-spacing:10.597152pt;}
.wsc1{word-spacing:10.618528pt;}
.ws30{word-spacing:10.623872pt;}
.ws2f{word-spacing:10.645248pt;}
.wsde{word-spacing:10.698688pt;}
.ws16{word-spacing:10.859008pt;}
.ws70{word-spacing:10.875040pt;}
.ws11e{word-spacing:10.880384pt;}
.wsc3{word-spacing:10.885728pt;}
.ws62{word-spacing:10.901760pt;}
.ws102{word-spacing:10.939168pt;}
.wsc0{word-spacing:10.997952pt;}
.ws198{word-spacing:11.008640pt;}
.ws8b{word-spacing:11.030016pt;}
.wsc8{word-spacing:11.190336pt;}
.wsa1{word-spacing:11.510976pt;}
.wsc2{word-spacing:11.543040pt;}
.ws1ab{word-spacing:11.714048pt;}
.wse1{word-spacing:11.842304pt;}
.ws170{word-spacing:11.851000pt;}
.ws141{word-spacing:11.895744pt;}
.ws6c{word-spacing:12.152256pt;}
.ws10f{word-spacing:12.168288pt;}
.ws16f{word-spacing:12.187616pt;}
.ws121{word-spacing:12.456864pt;}
.ws11a{word-spacing:12.478240pt;}
.wsa2{word-spacing:12.483584pt;}
.ws120{word-spacing:12.574432pt;}
.ws1ba{word-spacing:12.617184pt;}
.ws114{word-spacing:12.627872pt;}
.ws1c{word-spacing:12.798880pt;}
.ws1c0{word-spacing:12.852320pt;}
.ws1a5{word-spacing:12.975232pt;}
.ws12{word-spacing:13.119520pt;}
.ws1c2{word-spacing:13.242432pt;}
.wsf8{word-spacing:13.247776pt;}
.ws52{word-spacing:13.434816pt;}
.ws96{word-spacing:13.787520pt;}
.ws27{word-spacing:13.803552pt;}
.ws26{word-spacing:13.835616pt;}
.ws12e{word-spacing:13.899744pt;}
.wsae{word-spacing:14.070752pt;}
.wsf4{word-spacing:14.263136pt;}
.ws15a{word-spacing:14.386048pt;}
.ws81{word-spacing:14.391392pt;}
.ws17e{word-spacing:14.402080pt;}
.ws180{word-spacing:14.460864pt;}
.ws17d{word-spacing:14.498272pt;}
.wsd2{word-spacing:14.519648pt;}
.ws1bc{word-spacing:14.530336pt;}
.ws7d{word-spacing:14.717376pt;}
.ws148{word-spacing:14.850976pt;}
.ws181{word-spacing:15.032672pt;}
.ws1ae{word-spacing:15.038016pt;}
.ws194{word-spacing:15.160928pt;}
.ws1b7{word-spacing:15.326592pt;}
.ws10e{word-spacing:15.337280pt;}
.ws172{word-spacing:15.350732pt;}
.ws13a{word-spacing:15.358656pt;}
.ws3b{word-spacing:15.486912pt;}
.ws12f{word-spacing:15.684640pt;}
.wsc4{word-spacing:15.722048pt;}
.ws176{word-spacing:15.735436pt;}
.ws3a{word-spacing:15.994592pt;}
.ws173{word-spacing:16.007934pt;}
.ws13d{word-spacing:16.160256pt;}
.ws129{word-spacing:16.304544pt;}
.wsb9{word-spacing:16.454176pt;}
.ws12b{word-spacing:16.593120pt;}
.ws14d{word-spacing:16.614496pt;}
.ws10{word-spacing:16.619840pt;}
.ws107{word-spacing:16.625184pt;}
.ws1c9{word-spacing:16.646560pt;}
.wsc5{word-spacing:16.651904pt;}
.ws12c{word-spacing:16.689312pt;}
.ws1a8{word-spacing:16.817568pt;}
.wsd1{word-spacing:16.935136pt;}
.ws11{word-spacing:17.015296pt;}
.ws1b6{word-spacing:17.271808pt;}
.ws61{word-spacing:17.277152pt;}
.ws79{word-spacing:17.442816pt;}
.ws90{word-spacing:17.597792pt;}
.ws150{word-spacing:17.747424pt;}
.wsa5{word-spacing:18.041344pt;}
.ws12a{word-spacing:18.062720pt;}
.wsf5{word-spacing:18.084096pt;}
.wsf2{word-spacing:18.089440pt;}
.ws13e{word-spacing:18.249760pt;}
.ws72{word-spacing:18.367328pt;}
.ws19f{word-spacing:18.602464pt;}
.ws1a0{word-spacing:18.645216pt;}
.ws133{word-spacing:18.875008pt;}
.ws1c3{word-spacing:18.885696pt;}
.ws144{word-spacing:18.901728pt;}
.ws98{word-spacing:18.917760pt;}
.wsa{word-spacing:19.184960pt;}
.ws97{word-spacing:19.270464pt;}
.ws82{word-spacing:19.350624pt;}
.ws1d{word-spacing:19.526976pt;}
.ws9a{word-spacing:19.537664pt;}
.ws168{word-spacing:19.683988pt;}
.wsf1{word-spacing:19.708672pt;}
.wsce{word-spacing:19.831584pt;}
.ws185{word-spacing:19.997248pt;}
.ws92{word-spacing:20.162912pt;}
.ws80{word-spacing:20.168256pt;}
.wscd{word-spacing:20.200320pt;}
.ws1af{word-spacing:20.478208pt;}
.ws7e{word-spacing:20.804192pt;}
.ws29{word-spacing:21.124832pt;}
.ws192{word-spacing:21.130176pt;}
.ws88{word-spacing:21.167584pt;}
.ws45{word-spacing:21.552352pt;}
.ws1a4{word-spacing:21.926432pt;}
.ws22{word-spacing:22.375328pt;}
.ws1b0{word-spacing:22.722688pt;}
.ws166{word-spacing:22.873820pt;}
.ws1aa{word-spacing:22.909728pt;}
.ws15f{word-spacing:23.834240pt;}
.wsbb{word-spacing:23.989216pt;}
.ws123{word-spacing:24.010592pt;}
.ws3e{word-spacing:24.106784pt;}
.ws18{word-spacing:24.625152pt;}
.ws1d5{word-spacing:24.935104pt;}
.ws1bb{word-spacing:25.255744pt;}
.ws195{word-spacing:25.400032pt;}
.ws35{word-spacing:25.752736pt;}
.ws119{word-spacing:26.046656pt;}
.ws191{word-spacing:26.052000pt;}
.wscc{word-spacing:26.244384pt;}
.wse0{word-spacing:26.308512pt;}
.ws1d2{word-spacing:26.394016pt;}
.ws8c{word-spacing:26.554336pt;}
.ws60{word-spacing:26.559680pt;}
.ws42{word-spacing:26.602432pt;}
.ws5f{word-spacing:26.923072pt;}
.ws41{word-spacing:26.949792pt;}
.ws131{word-spacing:27.831552pt;}
.ws147{word-spacing:27.911712pt;}
.wscb{word-spacing:28.146848pt;}
.ws130{word-spacing:28.253728pt;}
.wsf0{word-spacing:28.627808pt;}
.ws69{word-spacing:30.065344pt;}
.wsca{word-spacing:30.733344pt;}
.ws7f{word-spacing:31.524256pt;}
.ws1b{word-spacing:31.684576pt;}
.wsfd{word-spacing:31.999872pt;}
.ws63{word-spacing:32.438080pt;}
.ws99{word-spacing:33.015232pt;}
.ws1c6{word-spacing:34.361920pt;}
.ws110{word-spacing:35.184896pt;}
.ws14{word-spacing:37.562976pt;}
.ws138{word-spacing:38.097376pt;}
.ws193{word-spacing:38.530240pt;}
.ws8d{word-spacing:39.983808pt;}
.ws16d{word-spacing:41.125856pt;}
.ws14c{word-spacing:43.644448pt;}
.wsbe{word-spacing:48.315104pt;}
.ws189{word-spacing:58.073120pt;}
.ws188{word-spacing:59.354176pt;}
.ws187{word-spacing:61.290656pt;}
.ws18b{word-spacing:73.752544pt;}
.ws18a{word-spacing:76.632960pt;}
.ws18c{word-spacing:83.761856pt;}
.ws18e{word-spacing:88.795904pt;}
.ws1e4{word-spacing:89.260832pt;}
.ws1e6{word-spacing:89.314272pt;}
.ws18f{word-spacing:91.676320pt;}
.ws1da{word-spacing:116.141152pt;}
.ws1dd{word-spacing:116.151840pt;}
.ws1e3{word-spacing:116.183904pt;}
.ws1e1{word-spacing:116.189248pt;}
.ws1d8{word-spacing:116.199936pt;}
.ws18d{word-spacing:163.440896pt;}
.ws190{word-spacing:190.321216pt;}
.ws186{word-spacing:453.676832pt;}
.wsb2{word-spacing:536.786263pt;}
.wsb3{word-spacing:539.179372pt;}
.ws59{word-spacing:571.859375pt;}
.ws5b{word-spacing:574.474705pt;}
._14{margin-left:-1578.801088pt;}
._13{margin-left:-453.758208pt;}
._33{margin-left:-116.392320pt;}
._2b{margin-left:-106.558443pt;}
._34{margin-left:-89.618880pt;}
._1f{margin-left:-79.678763pt;}
._15{margin-left:-59.520299pt;}
._16{margin-left:-58.239253pt;}
._2a{margin-left:-39.362112pt;}
._2c{margin-left:-28.161643pt;}
._1e{margin-left:-25.923392pt;}
._5{margin-left:-20.150336pt;}
._3{margin-left:-18.884149pt;}
._23{margin-left:-17.923296pt;}
._c{margin-left:-15.549931pt;}
._e{margin-left:-12.823243pt;}
._8{margin-left:-11.559093pt;}
._a{margin-left:-9.607147pt;}
._4{margin-left:-8.519712pt;}
._6{margin-left:-6.916651pt;}
._2f{margin-left:-5.948128pt;}
._9{margin-left:-2.706400pt;}
._0{margin-left:-1.024000pt;}
._1{width:0.961920pt;}
._d{width:2.166146pt;}
._b{width:4.595904pt;}
._1d{width:5.776779pt;}
._10{width:6.717216pt;}
._20{width:17.599040pt;}
._29{width:19.217312pt;}
._f{width:21.740768pt;}
._2{width:31.048640pt;}
._31{width:36.178880pt;}
._30{width:41.896960pt;}
._18{width:53.761483pt;}
._22{width:56.321387pt;}
._1b{width:59.558699pt;}
._27{width:71.363680pt;}
._1c{width:75.514688pt;}
._19{width:78.403499pt;}
._17{width:79.512096pt;}
._2e{width:81.997118pt;}
._1a{width:83.279732pt;}
._35{width:89.031040pt;}
._25{width:92.798581pt;}
._24{width:94.396960pt;}
._28{width:96.330272pt;}
._21{width:97.277120pt;}
._26{width:98.317598pt;}
._2d{width:112.645419pt;}
._32{width:115.911360pt;}
._11{width:279.998773pt;}
._12{width:430.398453pt;}
._7{width:936.149461pt;}
.fs6{font-size:34.560000pt;}
.fs14{font-size:42.560000pt;}
.fs12{font-size:47.754641pt;}
.fsc{font-size:49.255189pt;}
.fs9{font-size:49.261397pt;}
.fsf{font-size:51.486281pt;}
.fs10{font-size:51.494539pt;}
.fsd{font-size:53.431021pt;}
.fs2{font-size:53.440000pt;}
.fs15{font-size:54.618667pt;}
.fse{font-size:56.978158pt;}
.fs3{font-size:58.560000pt;}
.fs11{font-size:59.158591pt;}
.fs5{font-size:59.827733pt;}
.fsb{font-size:61.018545pt;}
.fsa{font-size:61.023672pt;}
.fs8{font-size:61.026236pt;}
.fs4{font-size:61.268800pt;}
.fs7{font-size:62.122667pt;}
.fs13{font-size:63.989246pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y1ca{bottom:2.959636pt;}
.yd5{bottom:2.960000pt;}
.y1b2{bottom:110.381050pt;}
.y1d7{bottom:110.701396pt;}
.y133{bottom:110.719467pt;}
.y291{bottom:110.719600pt;}
.y16d{bottom:110.719733pt;}
.y96{bottom:110.720133pt;}
.yd8{bottom:111.120133pt;}
.y1fa{bottom:111.359867pt;}
.yd2{bottom:112.239467pt;}
.y1b1{bottom:113.740218pt;}
.y139{bottom:113.759333pt;}
.y23f{bottom:113.759733pt;}
.y5f{bottom:116.800277pt;}
.y37{bottom:122.880360pt;}
.y26c{bottom:122.960133pt;}
.yd7{bottom:123.440000pt;}
.y1d6{bottom:125.978828pt;}
.y132{bottom:125.999467pt;}
.y16c{bottom:125.999600pt;}
.y290{bottom:125.999784pt;}
.y95{bottom:126.000133pt;}
.yd6{bottom:126.400000pt;}
.y1f9{bottom:126.720000pt;}
.y11b{bottom:127.599467pt;}
.yd1{bottom:127.599600pt;}
.y1b0{bottom:129.097771pt;}
.y138{bottom:129.119467pt;}
.y23e{bottom:129.119733pt;}
.y5e{bottom:132.080109pt;}
.y36{bottom:138.240352pt;}
.y26b{bottom:138.320301pt;}
.yd4{bottom:138.800000pt;}
.y1b6{bottom:140.376542pt;}
.y1d5{bottom:141.336247pt;}
.y131{bottom:141.359467pt;}
.y166{bottom:141.359600pt;}
.y28f{bottom:141.359776pt;}
.y94{bottom:141.360133pt;}
.yd3{bottom:141.759733pt;}
.y1f8{bottom:141.999867pt;}
.yd0{bottom:142.879467pt;}
.y1af{bottom:144.375070pt;}
.y137{bottom:144.399333pt;}
.y23d{bottom:144.399733pt;}
.y5d{bottom:147.440101pt;}
.y26a{bottom:153.600133pt;}
.y35{bottom:153.600344pt;}
.y1d4{bottom:156.693666pt;}
.y12d{bottom:156.719600pt;}
.y165{bottom:156.719733pt;}
.y28e{bottom:156.719768pt;}
.y93{bottom:156.720267pt;}
.y1f7{bottom:157.360000pt;}
.y11a{bottom:158.239467pt;}
.yca{bottom:158.239600pt;}
.y1ae{bottom:159.732622pt;}
.y136{bottom:159.759467pt;}
.y23c{bottom:159.759733pt;}
.y5c{bottom:162.719933pt;}
.ycc{bottom:164.720133pt;}
.yce{bottom:165.441333pt;}
.y34{bottom:168.880176pt;}
.y269{bottom:168.960133pt;}
.y1b3{bottom:169.011730pt;}
.y130{bottom:169.920000pt;}
.y1d3{bottom:171.971099pt;}
.y12c{bottom:171.999467pt;}
.y164{bottom:171.999600pt;}
.y92{bottom:172.000133pt;}
.y1f6{bottom:172.720000pt;}
.yc9{bottom:173.519467pt;}
.y1ad{bottom:175.090041pt;}
.y135{bottom:175.119467pt;}
.y23b{bottom:175.119867pt;}
.y5b{bottom:178.079925pt;}
.y33{bottom:184.240168pt;}
.y268{bottom:184.720000pt;}
.y12f{bottom:185.200000pt;}
.y1d2{bottom:187.328518pt;}
.y12b{bottom:187.359600pt;}
.y163{bottom:187.359733pt;}
.y28d{bottom:187.360093pt;}
.y91{bottom:187.760133pt;}
.y1f5{bottom:188.000000pt;}
.y119{bottom:188.879467pt;}
.yc8{bottom:188.879600pt;}
.y1ac{bottom:190.367474pt;}
.y134{bottom:190.399467pt;}
.y235{bottom:190.399733pt;}
.y5a{bottom:193.439917pt;}
.y23a{bottom:198.480000pt;}
.y32{bottom:199.520000pt;}
.y12e{bottom:200.560000pt;}
.y1d1{bottom:202.686070pt;}
.y12a{bottom:202.719600pt;}
.y162{bottom:202.719733pt;}
.y28c{bottom:202.720085pt;}
.y1f4{bottom:203.360000pt;}
.yc7{bottom:204.239600pt;}
.y1ab{bottom:205.724893pt;}
.y90{bottom:205.759467pt;}
.y234{bottom:205.759867pt;}
.y1b4{bottom:205.965119pt;}
.y59{bottom:208.719749pt;}
.y239{bottom:213.840133pt;}
.y31{bottom:214.880000pt;}
.y1d0{bottom:217.963370pt;}
.y125{bottom:217.999467pt;}
.y267{bottom:217.999600pt;}
.y161{bottom:217.999733pt;}
.y28b{bottom:217.999917pt;}
.y1f3{bottom:218.720133pt;}
.yc6{bottom:219.519467pt;}
.y1aa{bottom:221.082312pt;}
.y8f{bottom:221.119467pt;}
.y233{bottom:221.119867pt;}
.y58{bottom:224.079741pt;}
.y238{bottom:229.120000pt;}
.y30{bottom:230.640133pt;}
.y1cf{bottom:233.320922pt;}
.y124{bottom:233.359600pt;}
.y160{bottom:233.359733pt;}
.y28a{bottom:233.359909pt;}
.y266{bottom:233.360269pt;}
.y1f2{bottom:234.000000pt;}
.yc5{bottom:234.879600pt;}
.y1a9{bottom:236.359745pt;}
.y8e{bottom:236.399467pt;}
.y232{bottom:236.399867pt;}
.y57{bottom:239.439733pt;}
.y237{bottom:244.480133pt;}
.y1ce{bottom:248.678341pt;}
.y123{bottom:248.719600pt;}
.y15f{bottom:248.719733pt;}
.y289{bottom:248.719901pt;}
.y265{bottom:248.720261pt;}
.y2f{bottom:249.200133pt;}
.y1f1{bottom:250.000000pt;}
.yc4{bottom:250.239600pt;}
.y1a8{bottom:251.717164pt;}
.y8d{bottom:251.759467pt;}
.y231{bottom:251.759867pt;}
.y56{bottom:254.719600pt;}
.y236{bottom:259.840133pt;}
.y122{bottom:263.999600pt;}
.y15e{bottom:263.999733pt;}
.y264{bottom:264.000093pt;}
.y1cd{bottom:264.435560pt;}
.y118{bottom:265.519467pt;}
.yc3{bottom:265.519600pt;}
.y1f0{bottom:266.000000pt;}
.y2e{bottom:267.039867pt;}
.y1a7{bottom:267.074716pt;}
.y8c{bottom:267.119600pt;}
.y230{bottom:267.119867pt;}
.y55{bottom:270.079909pt;}
.y121{bottom:279.359600pt;}
.y15d{bottom:279.359733pt;}
.y263{bottom:279.360085pt;}
.y16b{bottom:279.360133pt;}
.yc2{bottom:280.879600pt;}
.y1ef{bottom:282.000000pt;}
.y2d{bottom:282.321789pt;}
.y1a6{bottom:282.352015pt;}
.y1c5{bottom:282.352282pt;}
.y8b{bottom:282.399467pt;}
.y226{bottom:282.399867pt;}
.y228{bottom:284.240800pt;}
.y54{bottom:285.439901pt;}
.y1cc{bottom:293.470680pt;}
.y120{bottom:294.719733pt;}
.y15c{bottom:294.719867pt;}
.y262{bottom:294.720077pt;}
.y16a{bottom:294.720133pt;}
.y117{bottom:296.239600pt;}
.yc1{bottom:296.239733pt;}
.y2c{bottom:297.681781pt;}
.y1a5{bottom:297.709568pt;}
.y1c4{bottom:297.709701pt;}
.y8a{bottom:297.759600pt;}
.y225{bottom:297.759867pt;}
.y1ee{bottom:298.000000pt;}
.y53{bottom:300.719733pt;}
.y169{bottom:307.040000pt;}
.y1cb{bottom:308.828099pt;}
.y11f{bottom:309.999600pt;}
.y15b{bottom:309.999733pt;}
.y261{bottom:309.999909pt;}
.y168{bottom:310.000133pt;}
.yc0{bottom:311.519600pt;}
.y1a4{bottom:312.986867pt;}
.y1c3{bottom:312.987133pt;}
.y89{bottom:313.039467pt;}
.y224{bottom:313.039867pt;}
.y2b{bottom:313.041773pt;}
.y1ed{bottom:314.000000pt;}
.y52{bottom:316.079875pt;}
.y1c9{bottom:321.226016pt;}
.y129{bottom:322.160133pt;}
.y1c8{bottom:324.184852pt;}
.y11e{bottom:325.359600pt;}
.y15a{bottom:325.359867pt;}
.y260{bottom:325.359901pt;}
.y167{bottom:325.360267pt;}
.ybf{bottom:326.879600pt;}
.y2a{bottom:328.321605pt;}
.y1a3{bottom:328.344419pt;}
.y1c2{bottom:328.344553pt;}
.y88{bottom:328.399600pt;}
.y223{bottom:328.399867pt;}
.y1ec{bottom:329.920000pt;}
.y1b5{bottom:330.664563pt;}
.y51{bottom:331.439867pt;}
.ycd{bottom:332.640933pt;}
.y128{bottom:337.520133pt;}
.ycb{bottom:339.120133pt;}
.y1c7{bottom:339.462284pt;}
.y11d{bottom:340.639600pt;}
.y159{bottom:340.639733pt;}
.y116{bottom:342.239600pt;}
.ybe{bottom:342.239733pt;}
.y29{bottom:343.681597pt;}
.y1a2{bottom:343.701838pt;}
.y1c1{bottom:343.702105pt;}
.y87{bottom:343.759600pt;}
.y222{bottom:343.760000pt;}
.y1eb{bottom:345.520533pt;}
.y50{bottom:346.719733pt;}
.y127{bottom:352.880267pt;}
.y1c6{bottom:354.819703pt;}
.y11c{bottom:355.999600pt;}
.y25f{bottom:355.999733pt;}
.y158{bottom:355.999867pt;}
.y288{bottom:355.999909pt;}
.ybd{bottom:357.519600pt;}
.y1ea{bottom:358.480000pt;}
.y1a1{bottom:358.979137pt;}
.y1c0{bottom:358.979404pt;}
.y86{bottom:359.039467pt;}
.y221{bottom:359.039867pt;}
.y28{bottom:359.041589pt;}
.y4f{bottom:362.080227pt;}
.y126{bottom:368.240267pt;}
.y157{bottom:371.359867pt;}
.y287{bottom:371.359901pt;}
.y25e{bottom:371.359909pt;}
.y1e9{bottom:371.920000pt;}
.y115{bottom:372.879600pt;}
.ybc{bottom:372.879733pt;}
.y27{bottom:374.321421pt;}
.y1a0{bottom:374.336690pt;}
.y1bf{bottom:374.336956pt;}
.y85{bottom:374.399600pt;}
.y220{bottom:374.399867pt;}
.y4e{bottom:377.440219pt;}
.y183{bottom:378.015272pt;}
.y114{bottom:386.639600pt;}
.y156{bottom:386.639733pt;}
.y25d{bottom:386.639741pt;}
.y1e8{bottom:387.839867pt;}
.ybb{bottom:388.239733pt;}
.y26{bottom:389.681413pt;}
.y19f{bottom:389.694109pt;}
.y1be{bottom:389.694376pt;}
.y84{bottom:389.759600pt;}
.y21f{bottom:389.760000pt;}
.y101{bottom:389.839067pt;}
.y4d{bottom:392.720051pt;}
.y180{bottom:392.814118pt;}
.y103{bottom:393.440000pt;}
.y14d{bottom:397.520400pt;}
.y113{bottom:401.999733pt;}
.y155{bottom:401.999867pt;}
.y286{bottom:402.000051pt;}
.y1e7{bottom:403.199867pt;}
.yff{bottom:403.519600pt;}
.yba{bottom:403.519733pt;}
.y19e{bottom:404.971541pt;}
.y1bd{bottom:404.971675pt;}
.y83{bottom:405.039600pt;}
.y21e{bottom:405.039867pt;}
.y25{bottom:405.041405pt;}
.y22f{bottom:405.120000pt;}
.y4c{bottom:408.080043pt;}
.y112{bottom:417.359733pt;}
.y154{bottom:417.359867pt;}
.y285{bottom:417.360043pt;}
.y25c{bottom:417.360235pt;}
.y22e{bottom:417.440000pt;}
.y1e6{bottom:418.560000pt;}
.yb9{bottom:418.879733pt;}
.y24{bottom:420.321237pt;}
.y19d{bottom:420.328961pt;}
.y1bc{bottom:420.329227pt;}
.y82{bottom:420.399600pt;}
.y21d{bottom:420.400000pt;}
.y4b{bottom:423.440035pt;}
.y111{bottom:432.639733pt;}
.y153{bottom:432.639867pt;}
.y284{bottom:432.639875pt;}
.y25b{bottom:432.640067pt;}
.y1e5{bottom:433.839867pt;}
.yb8{bottom:434.239733pt;}
.y23{bottom:435.681229pt;}
.y19c{bottom:435.686513pt;}
.y1bb{bottom:435.686646pt;}
.y81{bottom:435.759733pt;}
.y21c{bottom:435.760000pt;}
.y4a{bottom:438.719867pt;}
.y110{bottom:447.999733pt;}
.y152{bottom:447.999867pt;}
.y25a{bottom:448.000059pt;}
.y1e4{bottom:449.200000pt;}
.yb7{bottom:449.519733pt;}
.y19b{bottom:450.963812pt;}
.y1ba{bottom:450.964079pt;}
.y80{bottom:451.039600pt;}
.y21b{bottom:451.040000pt;}
.y22{bottom:451.041221pt;}
.y49{bottom:454.081440pt;}
.y10f{bottom:463.359733pt;}
.y151{bottom:463.360000pt;}
.y283{bottom:463.360035pt;}
.y259{bottom:463.360051pt;}
.y1e3{bottom:464.560000pt;}
.yb6{bottom:464.879733pt;}
.y181{bottom:466.241645pt;}
.y21{bottom:466.321053pt;}
.y19a{bottom:466.321231pt;}
.y1b9{bottom:466.321498pt;}
.y7f{bottom:466.399600pt;}
.y21a{bottom:466.400000pt;}
.y48{bottom:469.441432pt;}
.ycf{bottom:471.120667pt;}
.y10e{bottom:478.639733pt;}
.y150{bottom:478.639867pt;}
.y258{bottom:478.639883pt;}
.yb5{bottom:480.159733pt;}
.y1e2{bottom:480.480000pt;}
.y199{bottom:481.678784pt;}
.y1b8{bottom:481.678917pt;}
.y20{bottom:481.681045pt;}
.y7e{bottom:481.759733pt;}
.y219{bottom:481.760000pt;}
.y47{bottom:484.721264pt;}
.y10d{bottom:493.999733pt;}
.y14f{bottom:493.999867pt;}
.y257{bottom:493.999875pt;}
.y282{bottom:494.000008pt;}
.yb4{bottom:495.519733pt;}
.y1e1{bottom:496.480000pt;}
.y198{bottom:496.956083pt;}
.y1b7{bottom:496.956349pt;}
.y1f{bottom:496.960877pt;}
.y7d{bottom:497.039600pt;}
.y218{bottom:497.040000pt;}
.y46{bottom:500.081256pt;}
.y10c{bottom:509.359867pt;}
.y14e{bottom:509.360000pt;}
.yfe{bottom:510.879733pt;}
.yb3{bottom:510.879867pt;}
.y197{bottom:512.313635pt;}
.y196{bottom:512.313768pt;}
.y1e{bottom:512.320869pt;}
.y7c{bottom:512.399733pt;}
.y217{bottom:512.400000pt;}
.y1e0{bottom:512.480000pt;}
.y45{bottom:515.361088pt;}
.y14c{bottom:518.720000pt;}
.y10b{bottom:524.639733pt;}
.y14b{bottom:524.639867pt;}
.y281{bottom:524.640008pt;}
.yb2{bottom:526.159733pt;}
.y227{bottom:526.880000pt;}
.y195{bottom:527.671321pt;}
.y1d{bottom:527.680861pt;}
.y7b{bottom:527.759733pt;}
.y216{bottom:527.760133pt;}
.y1df{bottom:528.480000pt;}
.y44{bottom:530.721080pt;}
.y16f{bottom:536.880000pt;}
.y10a{bottom:539.999867pt;}
.y14a{bottom:540.000000pt;}
.y256{bottom:540.000411pt;}
.yfd{bottom:541.519733pt;}
.yb1{bottom:541.519867pt;}
.y194{bottom:542.948620pt;}
.y1c{bottom:542.960693pt;}
.y7a{bottom:543.039733pt;}
.y215{bottom:543.040000pt;}
.y1de{bottom:544.480000pt;}
.y102{bottom:546.080400pt;}
.y43{bottom:546.081072pt;}
.y16e{bottom:552.240133pt;}
.y100{bottom:552.560000pt;}
.y109{bottom:555.359867pt;}
.y149{bottom:555.360000pt;}
.y255{bottom:555.360403pt;}
.yb0{bottom:556.879867pt;}
.y193{bottom:558.306172pt;}
.y1b{bottom:558.320685pt;}
.y79{bottom:558.399733pt;}
.y214{bottom:558.400133pt;}
.y1dd{bottom:560.480000pt;}
.y42{bottom:561.360904pt;}
.y179{bottom:565.665469pt;}
.y173{bottom:565.736766pt;}
.y108{bottom:570.639733pt;}
.y148{bottom:570.640000pt;}
.y254{bottom:570.640235pt;}
.yaf{bottom:572.159733pt;}
.y192{bottom:573.663591pt;}
.y1a{bottom:573.680677pt;}
.y78{bottom:573.759733pt;}
.y213{bottom:573.760133pt;}
.y17f{bottom:574.223497pt;}
.y1dc{bottom:576.480000pt;}
.y41{bottom:576.720896pt;}
.y176{bottom:584.381790pt;}
.y174{bottom:584.430893pt;}
.y170{bottom:584.455446pt;}
.y107{bottom:585.999867pt;}
.y280{bottom:585.999909pt;}
.y147{bottom:586.000000pt;}
.y253{bottom:586.000227pt;}
.yfc{bottom:587.519733pt;}
.yae{bottom:587.519867pt;}
.y191{bottom:588.941024pt;}
.y19{bottom:588.960509pt;}
.y77{bottom:589.039733pt;}
.y212{bottom:589.040133pt;}
.y40{bottom:592.080888pt;}
.y1db{bottom:592.480000pt;}
.y106{bottom:601.359867pt;}
.y27f{bottom:601.359901pt;}
.y146{bottom:601.360133pt;}
.y252{bottom:601.360219pt;}
.yad{bottom:602.879867pt;}
.y190{bottom:604.298443pt;}
.y18{bottom:604.320501pt;}
.y76{bottom:604.399733pt;}
.y211{bottom:604.400133pt;}
.y182{bottom:606.778026pt;}
.y3f{bottom:607.360720pt;}
.y1da{bottom:608.080400pt;}
.y27e{bottom:616.639733pt;}
.y105{bottom:616.639867pt;}
.y145{bottom:616.640000pt;}
.y251{bottom:616.640051pt;}
.yfb{bottom:618.159733pt;}
.yac{bottom:618.159867pt;}
.y18f{bottom:619.655862pt;}
.y17{bottom:619.680493pt;}
.y75{bottom:619.759867pt;}
.y210{bottom:619.760133pt;}
.y1d9{bottom:620.960000pt;}
.y17d{bottom:622.455392pt;}
.y3e{bottom:622.720712pt;}
.y104{bottom:631.999867pt;}
.y250{bottom:632.000043pt;}
.y144{bottom:632.400000pt;}
.yab{bottom:633.519867pt;}
.y1d8{bottom:634.399867pt;}
.y18e{bottom:634.933295pt;}
.y16{bottom:634.960325pt;}
.y74{bottom:635.039733pt;}
.y20f{bottom:635.040133pt;}
.y3d{bottom:638.080704pt;}
.yf7{bottom:647.279867pt;}
.y24f{bottom:647.279875pt;}
.yfa{bottom:648.879867pt;}
.yaa{bottom:648.880000pt;}
.y18d{bottom:650.290714pt;}
.y15{bottom:650.320317pt;}
.y73{bottom:650.399867pt;}
.y20e{bottom:650.400133pt;}
.y22d{bottom:652.800000pt;}
.y3c{bottom:653.360536pt;}
.yf6{bottom:662.639867pt;}
.ya9{bottom:664.159867pt;}
.y18c{bottom:665.568146pt;}
.y72{bottom:665.679733pt;}
.y20d{bottom:665.680133pt;}
.y14{bottom:665.680309pt;}
.y22c{bottom:668.160000pt;}
.y3b{bottom:668.720528pt;}
.yf5{bottom:677.999867pt;}
.y27d{bottom:678.000051pt;}
.y24e{bottom:678.000501pt;}
.ya8{bottom:679.519867pt;}
.y22b{bottom:680.560000pt;}
.y18b{bottom:680.925565pt;}
.y13{bottom:680.960141pt;}
.y71{bottom:681.039867pt;}
.y20c{bottom:681.040133pt;}
.y22a{bottom:683.519867pt;}
.y3a{bottom:684.080520pt;}
.y17e{bottom:685.564786pt;}
.yf4{bottom:693.279867pt;}
.y27c{bottom:693.279883pt;}
.y24d{bottom:693.280333pt;}
.yf9{bottom:694.879867pt;}
.ya7{bottom:694.880000pt;}
.y18a{bottom:696.282984pt;}
.y12{bottom:696.320133pt;}
.y70{bottom:696.399867pt;}
.y20b{bottom:696.400267pt;}
.y229{bottom:698.799867pt;}
.y39{bottom:699.360352pt;}
.yf3{bottom:708.639867pt;}
.y27b{bottom:708.639875pt;}
.y24c{bottom:708.640325pt;}
.ya6{bottom:710.159867pt;}
.y189{bottom:711.560417pt;}
.y6f{bottom:711.679733pt;}
.y143{bottom:711.679867pt;}
.y20a{bottom:711.680133pt;}
.y11{bottom:712.080000pt;}
.y38{bottom:714.720344pt;}
.y27a{bottom:723.999867pt;}
.yf2{bottom:724.000000pt;}
.y24b{bottom:724.000317pt;}
.yf8{bottom:725.519867pt;}
.ya5{bottom:725.520000pt;}
.y177{bottom:726.118637pt;}
.y175{bottom:726.179649pt;}
.y171{bottom:726.210157pt;}
.y188{bottom:726.917836pt;}
.y6e{bottom:727.039867pt;}
.y209{bottom:727.040133pt;}
.y10{bottom:730.560000pt;}
.yf1{bottom:739.279867pt;}
.y279{bottom:739.280016pt;}
.y24a{bottom:739.280149pt;}
.ya4{bottom:740.880000pt;}
.y187{bottom:742.275388pt;}
.y6d{bottom:742.399867pt;}
.y208{bottom:742.400267pt;}
.yb{bottom:748.960133pt;}
.yf0{bottom:754.640000pt;}
.y278{bottom:754.640008pt;}
.y249{bottom:754.640141pt;}
.y178{bottom:756.113063pt;}
.ye9{bottom:756.159867pt;}
.ya3{bottom:756.160000pt;}
.y172{bottom:756.208364pt;}
.y186{bottom:757.552687pt;}
.y6c{bottom:757.679867pt;}
.y207{bottom:757.680133pt;}
.yf{bottom:767.360267pt;}
.ya{bottom:767.360400pt;}
.yef{bottom:770.000000pt;}
.y248{bottom:770.000133pt;}
.ya2{bottom:771.520000pt;}
.y185{bottom:772.910240pt;}
.y6b{bottom:773.039867pt;}
.y206{bottom:773.040267pt;}
.y277{bottom:785.279875pt;}
.yee{bottom:785.280000pt;}
.ye{bottom:785.760000pt;}
.y9{bottom:785.760267pt;}
.ye8{bottom:786.799867pt;}
.ya1{bottom:786.800000pt;}
.y184{bottom:788.267659pt;}
.y6a{bottom:788.400000pt;}
.y205{bottom:788.400267pt;}
.y17c{bottom:799.225684pt;}
.y276{bottom:800.639867pt;}
.yed{bottom:800.640000pt;}
.y247{bottom:801.040000pt;}
.ye7{bottom:802.159867pt;}
.ya0{bottom:802.160000pt;}
.y17b{bottom:803.545091pt;}
.y69{bottom:803.679867pt;}
.y204{bottom:803.680267pt;}
.yd{bottom:804.160000pt;}
.y8{bottom:804.160267pt;}
.y275{bottom:816.000501pt;}
.yec{bottom:816.400000pt;}
.ye6{bottom:817.520000pt;}
.y9f{bottom:817.680000pt;}
.y17a{bottom:818.902511pt;}
.y68{bottom:819.039867pt;}
.y142{bottom:819.040000pt;}
.y203{bottom:819.040267pt;}
.yc{bottom:822.640000pt;}
.y7{bottom:822.640133pt;}
.y274{bottom:831.280333pt;}
.ye5{bottom:832.799867pt;}
.yeb{bottom:834.399333pt;}
.y67{bottom:834.400000pt;}
.y141{bottom:834.400133pt;}
.y202{bottom:834.400267pt;}
.y9e{bottom:834.400400pt;}
.y246{bottom:834.400536pt;}
.y6{bottom:841.040133pt;}
.y273{bottom:846.640325pt;}
.ye4{bottom:848.160000pt;}
.yea{bottom:849.679333pt;}
.y66{bottom:849.679867pt;}
.y140{bottom:849.680133pt;}
.y201{bottom:849.680267pt;}
.y245{bottom:849.680368pt;}
.y9d{bottom:849.680400pt;}
.y5{bottom:859.440000pt;}
.y272{bottom:862.000317pt;}
.ye3{bottom:863.520000pt;}
.yde{bottom:865.039333pt;}
.y65{bottom:865.040000pt;}
.y13f{bottom:865.040133pt;}
.y200{bottom:865.040267pt;}
.y244{bottom:865.040360pt;}
.y9c{bottom:865.040400pt;}
.y271{bottom:877.280149pt;}
.y4{bottom:878.160672pt;}
.ye2{bottom:878.800000pt;}
.ydd{bottom:880.399467pt;}
.y64{bottom:880.400000pt;}
.y13e{bottom:880.400267pt;}
.y243{bottom:880.400352pt;}
.y1ff{bottom:880.400400pt;}
.y9b{bottom:880.400533pt;}
.y270{bottom:892.640141pt;}
.ye1{bottom:894.160000pt;}
.ydc{bottom:895.679333pt;}
.y63{bottom:895.680000pt;}
.y13d{bottom:895.680133pt;}
.y242{bottom:895.680184pt;}
.y1fe{bottom:895.680267pt;}
.y9a{bottom:895.680400pt;}
.y3{bottom:899.600400pt;}
.y26f{bottom:908.000133pt;}
.ye0{bottom:909.520133pt;}
.ydb{bottom:911.039467pt;}
.y62{bottom:911.040000pt;}
.y241{bottom:911.040176pt;}
.y13c{bottom:911.040267pt;}
.y1fd{bottom:911.040400pt;}
.y99{bottom:911.040533pt;}
.y2{bottom:921.120133pt;}
.y26e{bottom:923.280000pt;}
.ydf{bottom:924.800000pt;}
.yda{bottom:926.399467pt;}
.y61{bottom:926.400000pt;}
.y240{bottom:926.400168pt;}
.y13b{bottom:926.400267pt;}
.y1fc{bottom:926.400400pt;}
.y98{bottom:926.400533pt;}
.y26d{bottom:939.040000pt;}
.yd9{bottom:940.320000pt;}
.y60{bottom:941.680000pt;}
.y13a{bottom:941.680133pt;}
.y1fb{bottom:941.680400pt;}
.y97{bottom:941.680533pt;}
.y1{bottom:942.560000pt;}
.h1e{height:14.957486pt;}
.hb{height:14.960000pt;}
.h20{height:29.571719pt;}
.h1d{height:34.766685pt;}
.h15{height:35.859124pt;}
.h12{height:35.863644pt;}
.h5{height:37.105312pt;}
.h16{height:37.125167pt;}
.h6{height:37.131406pt;}
.h22{height:37.131940pt;}
.h18{height:37.483420pt;}
.h19{height:37.489432pt;}
.h1b{height:38.899244pt;}
.ha{height:38.905781pt;}
.h7{height:39.688125pt;}
.h21{height:39.763883pt;}
.h1c{height:41.104822pt;}
.h17{height:41.481657pt;}
.h14{height:42.397163pt;}
.h13{height:42.400726pt;}
.h11{height:42.402507pt;}
.hc{height:42.569273pt;}
.h1f{height:43.367712pt;}
.h4{height:43.375000pt;}
.hd{height:43.556226pt;}
.h3{height:44.437500pt;}
.h2{height:44.468750pt;}
.h8{height:44.605362pt;}
.h10{height:45.227000pt;}
.hf{height:47.995717pt;}
.he{height:49.317292pt;}
.h1{height:50.531875pt;}
.h9{height:51.326428pt;}
.h1a{height:86.892778pt;}
.h0{height:1056.000000pt;}
.w6{width:52.480000pt;}
.w5{width:56.560000pt;}
.w2{width:159.040000pt;}
.w1{width:246.000000pt;}
.w4{width:294.056427pt;}
.w3{width:318.960000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3e{left:45.920000pt;}
.x3c{left:50.000000pt;}
.x3a{left:71.840267pt;}
.x4{left:77.120000pt;}
.x21{left:80.559867pt;}
.x2{left:82.400267pt;}
.x38{left:84.800000pt;}
.x7{left:87.360000pt;}
.x2e{left:89.032863pt;}
.xf{left:93.040000pt;}
.x6{left:95.920000pt;}
.x40{left:101.120000pt;}
.x33{left:114.959467pt;}
.x41{left:125.119904pt;}
.x5{left:126.880000pt;}
.x20{left:129.440533pt;}
.x23{left:138.877217pt;}
.x1c{left:144.160000pt;}
.x35{left:145.679733pt;}
.x1b{left:155.440000pt;}
.x8{left:172.400000pt;}
.x34{left:180.080000pt;}
.x1d{left:186.320000pt;}
.xe{left:205.120133pt;}
.x1f{left:214.400000pt;}
.x25{left:222.315545pt;}
.x30{left:226.861814pt;}
.x9{left:234.880000pt;}
.x19{left:241.600000pt;}
.x2f{left:258.059446pt;}
.x36{left:261.039600pt;}
.x32{left:287.576947pt;}
.x37{left:292.320000pt;}
.x24{left:305.593876pt;}
.x3{left:311.759875pt;}
.x22{left:315.360000pt;}
.x3b{left:331.200000pt;}
.x3d{left:343.040000pt;}
.x13{left:401.440933pt;}
.x1{left:408.000000pt;}
.x10{left:423.280496pt;}
.xb{left:425.520133pt;}
.x3f{left:426.560000pt;}
.x15{left:427.520533pt;}
.x1e{left:428.480000pt;}
.xc{left:433.520133pt;}
.xd{left:434.800133pt;}
.x11{left:439.200400pt;}
.x31{left:444.524365pt;}
.x17{left:454.320667pt;}
.x12{left:461.120152pt;}
.x42{left:471.279941pt;}
.x2b{left:472.522121pt;}
.xa{left:477.680000pt;}
.x28{left:479.721544pt;}
.x14{left:491.440000pt;}
.x29{left:497.880088pt;}
.x18{left:502.560000pt;}
.x26{left:505.799453pt;}
.x16{left:545.120133pt;}
.x27{left:555.395477pt;}
.x2a{left:556.755368pt;}
.x39{left:580.400000pt;}
.x2d{left:582.513037pt;}
.x2c{left:584.033182pt;}
.x1a{left:589.520000pt;}
}




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