
    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_b9bd103963eb7cb17377b7fa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.135000;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_329283106538a734d26642bc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.120000;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_2e09afb46831a2f7a16659ed.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.136000;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_0808296c6ef7325309350d44.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_07f4fa9fb55fa4c9426edc15.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-21.780000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.750000px;}
.v1{vertical-align:31.680000px;}
.ls3c{letter-spacing:-7.326000px;}
.ls36{letter-spacing:-3.227400px;}
.ls30{letter-spacing:-2.699400px;}
.ls38{letter-spacing:-2.633400px;}
.ls39{letter-spacing:-2.112000px;}
.ls3f{letter-spacing:-2.016000px;}
.ls33{letter-spacing:-1.980000px;}
.ls9f{letter-spacing:-1.920000px;}
.ls35{letter-spacing:-1.650000px;}
.ls2a{letter-spacing:-1.630200px;}
.ls7b{letter-spacing:-1.584000px;}
.ls78{letter-spacing:-1.518000px;}
.ls37{letter-spacing:-1.452000px;}
.ls89{letter-spacing:-1.440000px;}
.ls2e{letter-spacing:-1.386000px;}
.ls3a{letter-spacing:-1.379400px;}
.ls40{letter-spacing:-1.368000px;}
.ls60{letter-spacing:-1.350000px;}
.ls6b{letter-spacing:-1.320000px;}
.lsa2{letter-spacing:-1.305000px;}
.ls79{letter-spacing:-1.296000px;}
.ls32{letter-spacing:-1.254000px;}
.ls4e{letter-spacing:-1.242000px;}
.ls4d{letter-spacing:-1.188000px;}
.ls3b{letter-spacing:-1.122000px;}
.ls71{letter-spacing:-1.080000px;}
.ls26{letter-spacing:-1.056000px;}
.ls7a{letter-spacing:-1.026000px;}
.ls3d{letter-spacing:-0.990000px;}
.ls62{letter-spacing:-0.972000px;}
.ls88{letter-spacing:-0.960000px;}
.lsa1{letter-spacing:-0.945000px;}
.ls2d{letter-spacing:-0.924000px;}
.ls99{letter-spacing:-0.900000px;}
.ls5b{letter-spacing:-0.877800px;}
.ls65{letter-spacing:-0.864000px;}
.ls23{letter-spacing:-0.858000px;}
.ls87{letter-spacing:-0.840000px;}
.ls63{letter-spacing:-0.810000px;}
.ls24{letter-spacing:-0.792000px;}
.ls2f{letter-spacing:-0.785400px;}
.ls66{letter-spacing:-0.756000px;}
.lsd{letter-spacing:-0.741000px;}
.ls2b{letter-spacing:-0.726000px;}
.ls11{letter-spacing:-0.720000px;}
.ls54{letter-spacing:-0.702000px;}
.ls8f{letter-spacing:-0.693000px;}
.lsc{letter-spacing:-0.684000px;}
.ls9a{letter-spacing:-0.675000px;}
.ls2c{letter-spacing:-0.666600px;}
.ls34{letter-spacing:-0.660000px;}
.ls61{letter-spacing:-0.648000px;}
.lsf{letter-spacing:-0.627000px;}
.ls80{letter-spacing:-0.600600px;}
.ls9c{letter-spacing:-0.600000px;}
.ls28{letter-spacing:-0.594000px;}
.ls50{letter-spacing:-0.540000px;}
.ls4a{letter-spacing:-0.528000px;}
.ls9b{letter-spacing:-0.495000px;}
.ls4f{letter-spacing:-0.486000px;}
.ls85{letter-spacing:-0.480000px;}
.ls31{letter-spacing:-0.462000px;}
.ls9e{letter-spacing:-0.450000px;}
.ls72{letter-spacing:-0.432000px;}
.ls90{letter-spacing:-0.420000px;}
.ls70{letter-spacing:-0.415800px;}
.lse{letter-spacing:-0.399000px;}
.ls25{letter-spacing:-0.396000px;}
.ls55{letter-spacing:-0.378000px;}
.lsb{letter-spacing:-0.342000px;}
.ls49{letter-spacing:-0.330000px;}
.ls10{letter-spacing:-0.324000px;}
.lsa0{letter-spacing:-0.300000px;}
.lsa{letter-spacing:-0.285000px;}
.ls53{letter-spacing:-0.270000px;}
.ls4c{letter-spacing:-0.264000px;}
.ls82{letter-spacing:-0.240000px;}
.ls76{letter-spacing:-0.231000px;}
.ls6d{letter-spacing:-0.216000px;}
.ls29{letter-spacing:-0.198000px;}
.ls86{letter-spacing:-0.180000px;}
.ls6c{letter-spacing:-0.162000px;}
.ls5e{letter-spacing:-0.138600px;}
.ls5c{letter-spacing:-0.132000px;}
.ls52{letter-spacing:-0.108000px;}
.ls5d{letter-spacing:-0.092400px;}
.ls27{letter-spacing:-0.066000px;}
.ls8b{letter-spacing:-0.060000px;}
.ls51{letter-spacing:-0.054000px;}
.ls3e{letter-spacing:-0.048000px;}
.lsa3{letter-spacing:-0.045000px;}
.ls9{letter-spacing:0.000000px;}
.ls5f{letter-spacing:0.046200px;}
.ls47{letter-spacing:0.054000px;}
.ls0{letter-spacing:0.057000px;}
.ls91{letter-spacing:0.060000px;}
.ls1b{letter-spacing:0.066000px;}
.ls92{letter-spacing:0.090000px;}
.ls69{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.114000px;}
.ls8e{letter-spacing:0.120000px;}
.ls18{letter-spacing:0.132000px;}
.ls48{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.171000px;}
.ls84{letter-spacing:0.180000px;}
.ls81{letter-spacing:0.184800px;}
.ls45{letter-spacing:0.198000px;}
.ls59{letter-spacing:0.216000px;}
.ls83{letter-spacing:0.240000px;}
.ls1a{letter-spacing:0.264000px;}
.ls6a{letter-spacing:0.270000px;}
.ls96{letter-spacing:0.300000px;}
.ls64{letter-spacing:0.324000px;}
.ls17{letter-spacing:0.330000px;}
.ls1f{letter-spacing:0.336600px;}
.ls2{letter-spacing:0.342000px;}
.ls95{letter-spacing:0.360000px;}
.ls67{letter-spacing:0.378000px;}
.ls46{letter-spacing:0.396000px;}
.ls98{letter-spacing:0.405000px;}
.ls8d{letter-spacing:0.420000px;}
.ls5a{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.462000px;}
.ls7f{letter-spacing:0.480000px;}
.ls8{letter-spacing:0.486000px;}
.ls13{letter-spacing:0.514800px;}
.ls44{letter-spacing:0.528000px;}
.ls41{letter-spacing:0.540000px;}
.ls4b{letter-spacing:0.544500px;}
.ls6f{letter-spacing:0.554400px;}
.ls68{letter-spacing:0.594000px;}
.ls7c{letter-spacing:0.600600px;}
.ls4{letter-spacing:0.627000px;}
.ls75{letter-spacing:0.648000px;}
.ls43{letter-spacing:0.660000px;}
.ls1e{letter-spacing:0.666600px;}
.ls7{letter-spacing:0.702000px;}
.ls6e{letter-spacing:0.726000px;}
.ls97{letter-spacing:0.765000px;}
.ls94{letter-spacing:0.780000px;}
.ls21{letter-spacing:0.792000px;}
.ls5{letter-spacing:0.798000px;}
.ls57{letter-spacing:0.858000px;}
.ls58{letter-spacing:0.918000px;}
.ls56{letter-spacing:0.924000px;}
.ls19{letter-spacing:0.990000px;}
.ls6{letter-spacing:1.026000px;}
.ls7d{letter-spacing:1.056000px;}
.ls8a{letter-spacing:1.080000px;}
.ls77{letter-spacing:1.155000px;}
.ls12{letter-spacing:1.188000px;}
.ls74{letter-spacing:1.242000px;}
.ls73{letter-spacing:1.320000px;}
.ls7e{letter-spacing:1.452000px;}
.ls93{letter-spacing:1.500000px;}
.ls1d{letter-spacing:1.518000px;}
.ls16{letter-spacing:1.650000px;}
.ls20{letter-spacing:1.716000px;}
.ls15{letter-spacing:1.775400px;}
.ls8c{letter-spacing:1.980000px;}
.ls22{letter-spacing:2.395800px;}
.ls1c{letter-spacing:4.072200px;}
.ls9d{letter-spacing:12.780000px;}
.ls42{letter-spacing:15.960000px;}
.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;}
}
.ws4e{word-spacing:-18.150000px;}
.wsba{word-spacing:-17.556000px;}
.wsbc{word-spacing:-17.490000px;}
.wsb3{word-spacing:-17.358000px;}
.wsa4{word-spacing:-17.226000px;}
.ws4a{word-spacing:-17.160000px;}
.wsac{word-spacing:-17.094000px;}
.wsbb{word-spacing:-17.028000px;}
.ws96{word-spacing:-16.962000px;}
.ws4f{word-spacing:-16.896000px;}
.ws16{word-spacing:-16.830000px;}
.wsa6{word-spacing:-16.764000px;}
.ws4d{word-spacing:-16.698000px;}
.wsbd{word-spacing:-16.632000px;}
.ws6f{word-spacing:-16.566000px;}
.ws19{word-spacing:-16.500000px;}
.ws48{word-spacing:-16.434000px;}
.ws8d{word-spacing:-16.368000px;}
.ws49{word-spacing:-16.302000px;}
.ws8c{word-spacing:-16.236000px;}
.ws4b{word-spacing:-16.170000px;}
.wsa5{word-spacing:-16.104000px;}
.ws15{word-spacing:-15.972000px;}
.ws1a{word-spacing:-15.906000px;}
.ws23{word-spacing:-15.840000px;}
.ws1d{word-spacing:-15.833400px;}
.wsc9{word-spacing:-15.780000px;}
.ws1c{word-spacing:-15.774000px;}
.ws20{word-spacing:-15.714600px;}
.ws17{word-spacing:-15.708000px;}
.wsa8{word-spacing:-15.642000px;}
.ws1e{word-spacing:-15.576000px;}
.wsd3{word-spacing:-15.540000px;}
.ws2c{word-spacing:-15.510000px;}
.ws18{word-spacing:-15.444000px;}
.ws2a{word-spacing:-15.378000px;}
.wse5{word-spacing:-15.360000px;}
.wsc1{word-spacing:-15.240000px;}
.ws29{word-spacing:-15.120600px;}
.ws1f{word-spacing:-15.114000px;}
.ws26{word-spacing:-15.048000px;}
.wsb2{word-spacing:-15.000000px;}
.ws1b{word-spacing:-14.869800px;}
.ws24{word-spacing:-14.850000px;}
.wsae{word-spacing:-14.760000px;}
.ws0{word-spacing:-14.535000px;}
.ws22{word-spacing:-14.520000px;}
.wseb{word-spacing:-14.460000px;}
.wsd6{word-spacing:-14.400000px;}
.ws28{word-spacing:-14.388000px;}
.wsd1{word-spacing:-14.340000px;}
.wsea{word-spacing:-14.280000px;}
.wsc8{word-spacing:-14.100000px;}
.wse7{word-spacing:-14.040000px;}
.ws99{word-spacing:-13.986000px;}
.ws9b{word-spacing:-13.878000px;}
.ws27{word-spacing:-13.866600px;}
.ws9a{word-spacing:-13.824000px;}
.ws21{word-spacing:-13.800600px;}
.ws81{word-spacing:-13.608000px;}
.ws1{word-spacing:-13.500000px;}
.ws83{word-spacing:-13.446000px;}
.ws57{word-spacing:-13.392000px;}
.ws82{word-spacing:-13.284000px;}
.ws25{word-spacing:-13.272600px;}
.ws59{word-spacing:-13.230000px;}
.ws58{word-spacing:-13.176000px;}
.ws2f{word-spacing:-13.167000px;}
.wsbe{word-spacing:-13.122000px;}
.wse1{word-spacing:-13.080000px;}
.ws55{word-spacing:-13.014000px;}
.ws56{word-spacing:-12.960000px;}
.ws4c{word-spacing:-12.919500px;}
.ws93{word-spacing:-12.798000px;}
.ws73{word-spacing:-12.744000px;}
.ws98{word-spacing:-12.705000px;}
.wsaf{word-spacing:-12.690000px;}
.ws72{word-spacing:-12.636000px;}
.ws54{word-spacing:-12.312000px;}
.ws53{word-spacing:-12.258000px;}
.ws9c{word-spacing:-12.204000px;}
.ws2d{word-spacing:-12.192000px;}
.wsa3{word-spacing:-12.150600px;}
.ws8e{word-spacing:-12.104400px;}
.wscd{word-spacing:-12.015000px;}
.ws50{word-spacing:-12.000000px;}
.ws51{word-spacing:-11.952000px;}
.wsd2{word-spacing:-11.790000px;}
.wsad{word-spacing:-11.734800px;}
.ws70{word-spacing:-11.596200px;}
.ws80{word-spacing:-11.550000px;}
.ws6d{word-spacing:-11.457600px;}
.ws6e{word-spacing:-11.411400px;}
.wsc6{word-spacing:-11.340000px;}
.ws97{word-spacing:-11.319000px;}
.wsc5{word-spacing:-11.250000px;}
.ws8f{word-spacing:-11.134200px;}
.wsb9{word-spacing:-11.088000px;}
.wsce{word-spacing:-10.980000px;}
.wsc0{word-spacing:-10.857000px;}
.wsdf{word-spacing:-10.800000px;}
.wsd0{word-spacing:-10.755000px;}
.ws6c{word-spacing:-10.672200px;}
.wscf{word-spacing:-10.575000px;}
.wsc7{word-spacing:-10.350000px;}
.wse3{word-spacing:-10.305000px;}
.wse2{word-spacing:-10.170000px;}
.ws2e{word-spacing:-9.984000px;}
.wse6{word-spacing:-9.945000px;}
.wsd5{word-spacing:-9.810000px;}
.ws2b{word-spacing:-9.174000px;}
.ws14{word-spacing:-7.104000px;}
.ws33{word-spacing:-0.858000px;}
.ws38{word-spacing:-0.792000px;}
.ws92{word-spacing:-0.756000px;}
.ws75{word-spacing:-0.726000px;}
.wsb8{word-spacing:-0.720000px;}
.ws7a{word-spacing:-0.702000px;}
.ws44{word-spacing:-0.660000px;}
.ws61{word-spacing:-0.648000px;}
.ws32{word-spacing:-0.594000px;}
.ws7e{word-spacing:-0.540000px;}
.ws5b{word-spacing:-0.528000px;}
.ws9f{word-spacing:-0.486000px;}
.wsb1{word-spacing:-0.480000px;}
.ws30{word-spacing:-0.462000px;}
.ws3{word-spacing:-0.456000px;}
.ws69{word-spacing:-0.432000px;}
.wsee{word-spacing:-0.420000px;}
.ws4{word-spacing:-0.399000px;}
.ws3f{word-spacing:-0.396000px;}
.ws64{word-spacing:-0.378000px;}
.wsc{word-spacing:-0.342000px;}
.ws87{word-spacing:-0.330000px;}
.ws13{word-spacing:-0.324000px;}
.wsc2{word-spacing:-0.300000px;}
.ws6a{word-spacing:-0.270000px;}
.ws3c{word-spacing:-0.264000px;}
.wsb4{word-spacing:-0.240000px;}
.ws60{word-spacing:-0.216000px;}
.ws85{word-spacing:-0.198000px;}
.wsdb{word-spacing:-0.180000px;}
.ws94{word-spacing:-0.162000px;}
.wsaa{word-spacing:-0.132000px;}
.wsed{word-spacing:-0.120000px;}
.wsd{word-spacing:-0.114000px;}
.ws79{word-spacing:-0.108000px;}
.ws84{word-spacing:-0.066000px;}
.wsc4{word-spacing:-0.060000px;}
.ws8{word-spacing:-0.057000px;}
.ws88{word-spacing:-0.054000px;}
.ws9{word-spacing:0.000000px;}
.ws67{word-spacing:0.054000px;}
.wsdd{word-spacing:0.060000px;}
.ws42{word-spacing:0.066000px;}
.ws78{word-spacing:0.108000px;}
.wsb5{word-spacing:0.120000px;}
.ws76{word-spacing:0.132000px;}
.ws7c{word-spacing:0.162000px;}
.wsec{word-spacing:0.180000px;}
.ws86{word-spacing:0.198000px;}
.ws68{word-spacing:0.216000px;}
.wsb7{word-spacing:0.240000px;}
.ws41{word-spacing:0.264000px;}
.ws7b{word-spacing:0.324000px;}
.ws3e{word-spacing:0.330000px;}
.wsf{word-spacing:0.342000px;}
.ws77{word-spacing:0.378000px;}
.ws74{word-spacing:0.396000px;}
.wsbf{word-spacing:0.420000px;}
.ws12{word-spacing:0.432000px;}
.ws31{word-spacing:0.462000px;}
.wsa1{word-spacing:0.486000px;}
.ws35{word-spacing:0.528000px;}
.ws5f{word-spacing:0.540000px;}
.ws10{word-spacing:0.594000px;}
.ws5a{word-spacing:0.600600px;}
.wse{word-spacing:0.627000px;}
.ws3a{word-spacing:0.660000px;}
.wsa0{word-spacing:0.702000px;}
.wsd9{word-spacing:0.720000px;}
.ws5c{word-spacing:0.726000px;}
.wsb{word-spacing:0.741000px;}
.ws8b{word-spacing:0.756000px;}
.wsde{word-spacing:0.780000px;}
.ws45{word-spacing:0.792000px;}
.ws6{word-spacing:0.798000px;}
.ws11{word-spacing:0.810000px;}
.wsd8{word-spacing:0.840000px;}
.ws3d{word-spacing:0.858000px;}
.ws95{word-spacing:0.864000px;}
.ws7f{word-spacing:0.918000px;}
.ws5d{word-spacing:0.924000px;}
.wsdc{word-spacing:0.960000px;}
.ws89{word-spacing:0.972000px;}
.wsa9{word-spacing:0.990000px;}
.wsb0{word-spacing:1.020000px;}
.ws8a{word-spacing:1.026000px;}
.ws9e{word-spacing:1.056000px;}
.ws7d{word-spacing:1.080000px;}
.ws7{word-spacing:1.083000px;}
.ws34{word-spacing:1.122000px;}
.ws6b{word-spacing:1.134000px;}
.wsda{word-spacing:1.140000px;}
.ws65{word-spacing:1.188000px;}
.ws5{word-spacing:1.197000px;}
.ws66{word-spacing:1.242000px;}
.ws37{word-spacing:1.254000px;}
.wsb6{word-spacing:1.260000px;}
.ws62{word-spacing:1.296000px;}
.wsa{word-spacing:1.311000px;}
.ws40{word-spacing:1.320000px;}
.ws63{word-spacing:1.350000px;}
.ws2{word-spacing:1.368000px;}
.wsc3{word-spacing:1.380000px;}
.ws43{word-spacing:1.386000px;}
.ws91{word-spacing:1.404000px;}
.ws36{word-spacing:1.452000px;}
.wsd7{word-spacing:1.500000px;}
.ws3b{word-spacing:1.518000px;}
.ws39{word-spacing:1.584000px;}
.wsa7{word-spacing:1.650000px;}
.ws5e{word-spacing:2.772000px;}
.wse8{word-spacing:3.045000px;}
.wse9{word-spacing:3.525000px;}
.wse0{word-spacing:4.365000px;}
.wscb{word-spacing:4.410000px;}
.wscc{word-spacing:4.545000px;}
.wsab{word-spacing:4.651800px;}
.wsca{word-spacing:4.680000px;}
.wse4{word-spacing:4.860000px;}
.wsd4{word-spacing:4.875000px;}
.ws9d{word-spacing:4.884000px;}
.wsa2{word-spacing:6.468000px;}
.ws90{word-spacing:9.018000px;}
.ws46{word-spacing:35.856000px;}
.ws71{word-spacing:35.904000px;}
.ws52{word-spacing:36.018000px;}
.ws47{word-spacing:1221.984000px;}
._f{margin-left:-10.620000px;}
._7{margin-left:-7.770000px;}
._d{margin-left:-6.750000px;}
._5{margin-left:-5.529000px;}
._4{margin-left:-4.218000px;}
._2{margin-left:-3.192000px;}
._b{margin-left:-2.160000px;}
._0{margin-left:-1.140000px;}
._1{width:1.140000px;}
._3{width:2.622000px;}
._e{width:22.518000px;}
._10{width:30.000000px;}
._9{width:47.076000px;}
._6{width:48.114000px;}
._8{width:192.420000px;}
._a{width:1233.156000px;}
._c{width:1234.176000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:45.000000px;}
.fs7{font-size:46.200000px;}
.fs2{font-size:48.000000px;}
.fs8{font-size:49.500000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs4{font-size:67.200000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:2.146500px;}
.y4d{bottom:2.896500px;}
.y51{bottom:3.646500px;}
.y7f{bottom:50.292000px;}
.y1b3{bottom:50.437500px;}
.y1e{bottom:50.451000px;}
.ya9{bottom:50.517000px;}
.y112{bottom:50.580000px;}
.ycc{bottom:50.637000px;}
.y4a{bottom:50.680500px;}
.y15e{bottom:50.715000px;}
.y131{bottom:50.757000px;}
.y1da{bottom:50.814000px;}
.yee{bottom:50.922000px;}
.y189{bottom:51.075000px;}
.y142{bottom:51.120000px;}
.y210{bottom:51.135000px;}
.y1ec{bottom:51.219000px;}
.y7e{bottom:64.548000px;}
.y1d{bottom:64.707000px;}
.ya8{bottom:64.773000px;}
.y111{bottom:64.836000px;}
.ycb{bottom:64.893000px;}
.y130{bottom:65.013000px;}
.y1d9{bottom:65.070000px;}
.yed{bottom:65.178000px;}
.y188{bottom:65.331000px;}
.y141{bottom:65.376000px;}
.y1eb{bottom:65.475000px;}
.y20f{bottom:66.885000px;}
.y1b2{bottom:67.680000px;}
.y49{bottom:67.923000px;}
.y15d{bottom:67.957500px;}
.y7d{bottom:78.804000px;}
.y1c{bottom:78.963000px;}
.ya7{bottom:79.029000px;}
.y110{bottom:79.092000px;}
.yca{bottom:79.149000px;}
.y12f{bottom:79.269000px;}
.y1d8{bottom:79.326000px;}
.yec{bottom:79.434000px;}
.y187{bottom:79.587000px;}
.y140{bottom:79.632000px;}
.y1ea{bottom:79.731000px;}
.y20e{bottom:82.635000px;}
.y1b1{bottom:84.922500px;}
.y48{bottom:85.165500px;}
.y15c{bottom:85.200000px;}
.y7c{bottom:93.060000px;}
.y1b{bottom:93.219000px;}
.ya6{bottom:93.285000px;}
.y10f{bottom:93.348000px;}
.yc9{bottom:93.405000px;}
.y12e{bottom:93.525000px;}
.y1d7{bottom:93.582000px;}
.yeb{bottom:93.690000px;}
.y186{bottom:93.843000px;}
.y13f{bottom:93.888000px;}
.y1e9{bottom:93.987000px;}
.y20d{bottom:98.385000px;}
.y1b0{bottom:102.165000px;}
.y47{bottom:102.408000px;}
.y15b{bottom:102.442500px;}
.y7b{bottom:107.316000px;}
.y1a{bottom:107.475000px;}
.ya5{bottom:107.541000px;}
.y10e{bottom:107.604000px;}
.yc8{bottom:107.661000px;}
.y1d6{bottom:107.838000px;}
.yea{bottom:107.946000px;}
.y185{bottom:108.099000px;}
.y13e{bottom:108.144000px;}
.y1e8{bottom:108.243000px;}
.y20c{bottom:114.135000px;}
.y1af{bottom:119.407500px;}
.y46{bottom:119.650500px;}
.y15a{bottom:119.685000px;}
.y7a{bottom:121.572000px;}
.ya4{bottom:121.797000px;}
.y10d{bottom:121.860000px;}
.yc7{bottom:121.917000px;}
.y1d5{bottom:122.094000px;}
.ye9{bottom:122.202000px;}
.y184{bottom:122.355000px;}
.y13d{bottom:122.400000px;}
.y1e7{bottom:122.499000px;}
.y20b{bottom:129.885000px;}
.y79{bottom:135.828000px;}
.ya3{bottom:136.053000px;}
.y10c{bottom:136.116000px;}
.yc6{bottom:136.173000px;}
.y1d4{bottom:136.350000px;}
.ye8{bottom:136.458000px;}
.y183{bottom:136.611000px;}
.y1ae{bottom:136.650000px;}
.y1e6{bottom:136.755000px;}
.y12d{bottom:136.807500px;}
.y45{bottom:136.893000px;}
.y159{bottom:136.927500px;}
.y20a{bottom:145.635000px;}
.y78{bottom:150.084000px;}
.ya2{bottom:150.309000px;}
.y10b{bottom:150.372000px;}
.yc5{bottom:150.429000px;}
.ye7{bottom:150.714000px;}
.y182{bottom:150.867000px;}
.y1ad{bottom:153.892500px;}
.y12c{bottom:154.050000px;}
.y44{bottom:154.135500px;}
.y158{bottom:154.170000px;}
.y209{bottom:161.385000px;}
.y77{bottom:164.340000px;}
.ya1{bottom:164.565000px;}
.y10a{bottom:164.628000px;}
.yc4{bottom:164.685000px;}
.ye6{bottom:164.970000px;}
.y181{bottom:165.123000px;}
.y1ac{bottom:171.135000px;}
.y12b{bottom:171.292500px;}
.y13c{bottom:171.322500px;}
.y43{bottom:171.378000px;}
.y157{bottom:171.412500px;}
.y208{bottom:177.135000px;}
.y1d3{bottom:177.157500px;}
.y76{bottom:178.596000px;}
.ya0{bottom:178.821000px;}
.y109{bottom:178.884000px;}
.yc3{bottom:178.941000px;}
.ye5{bottom:179.226000px;}
.y180{bottom:179.379000px;}
.y19{bottom:184.695000px;}
.y1ab{bottom:188.377500px;}
.y12a{bottom:188.535000px;}
.y13b{bottom:188.565000px;}
.y42{bottom:188.620500px;}
.y156{bottom:188.655000px;}
.y75{bottom:192.852000px;}
.y207{bottom:192.885000px;}
.y9f{bottom:193.077000px;}
.y108{bottom:193.140000px;}
.yc2{bottom:193.197000px;}
.ye4{bottom:193.482000px;}
.y17f{bottom:193.635000px;}
.y1d2{bottom:194.400000px;}
.y1e5{bottom:200.385000px;}
.y1aa{bottom:205.620000px;}
.y18{bottom:205.651500px;}
.y129{bottom:205.777500px;}
.y13a{bottom:205.807500px;}
.y41{bottom:205.863000px;}
.y155{bottom:205.897500px;}
.y74{bottom:207.108000px;}
.y9e{bottom:207.333000px;}
.y107{bottom:207.396000px;}
.yc1{bottom:207.453000px;}
.ye3{bottom:207.738000px;}
.y206{bottom:208.635000px;}
.y1d1{bottom:211.642500px;}
.y1e4{bottom:216.135000px;}
.y17{bottom:220.656750px;}
.y73{bottom:221.364000px;}
.y9d{bottom:221.589000px;}
.y106{bottom:221.652000px;}
.yc0{bottom:221.709000px;}
.ye2{bottom:221.994000px;}
.y128{bottom:223.020000px;}
.y139{bottom:223.050000px;}
.y40{bottom:223.105500px;}
.y154{bottom:223.140000px;}
.y205{bottom:224.385000px;}
.y1d0{bottom:229.035000px;}
.y1e3{bottom:231.885000px;}
.y17e{bottom:234.510000px;}
.y72{bottom:235.620000px;}
.y16{bottom:235.662000px;}
.y9c{bottom:235.845000px;}
.y105{bottom:235.908000px;}
.ybf{bottom:235.965000px;}
.ye1{bottom:236.250000px;}
.y204{bottom:240.135000px;}
.y127{bottom:240.262500px;}
.y138{bottom:240.292500px;}
.y3f{bottom:240.348000px;}
.y153{bottom:240.382500px;}
.y1a9{bottom:241.995000px;}
.y1cf{bottom:246.277500px;}
.y1e2{bottom:247.635000px;}
.y71{bottom:249.876000px;}
.y9b{bottom:250.101000px;}
.y104{bottom:250.164000px;}
.ybe{bottom:250.221000px;}
.y17d{bottom:250.260000px;}
.ye0{bottom:250.506000px;}
.y15{bottom:250.667250px;}
.y203{bottom:255.885000px;}
.y126{bottom:257.505000px;}
.y137{bottom:257.535000px;}
.y3e{bottom:257.590500px;}
.y152{bottom:257.625000px;}
.y1a8{bottom:257.745000px;}
.y1e1{bottom:263.385000px;}
.y1ce{bottom:263.520000px;}
.y70{bottom:264.132000px;}
.y9a{bottom:264.357000px;}
.y103{bottom:264.420000px;}
.ybd{bottom:264.477000px;}
.ydf{bottom:264.762000px;}
.y14{bottom:265.672500px;}
.y202{bottom:271.635000px;}
.y1a7{bottom:273.495000px;}
.y125{bottom:274.747500px;}
.y136{bottom:274.777500px;}
.y3d{bottom:274.833000px;}
.y151{bottom:274.867500px;}
.y6f{bottom:278.388000px;}
.y99{bottom:278.613000px;}
.y102{bottom:278.676000px;}
.ybc{bottom:278.733000px;}
.yde{bottom:279.018000px;}
.y1e0{bottom:279.135000px;}
.y13{bottom:280.677750px;}
.y1cd{bottom:280.762500px;}
.y17c{bottom:283.327500px;}
.y201{bottom:287.385000px;}
.y1a6{bottom:289.245000px;}
.y124{bottom:291.990000px;}
.y135{bottom:292.020000px;}
.y3c{bottom:292.075500px;}
.y150{bottom:292.110000px;}
.y6e{bottom:292.644000px;}
.y98{bottom:292.869000px;}
.y101{bottom:292.932000px;}
.ybb{bottom:292.989000px;}
.ydd{bottom:293.274000px;}
.y1df{bottom:294.885000px;}
.y12{bottom:295.683000px;}
.y1cc{bottom:298.005000px;}
.y17b{bottom:300.570000px;}
.y200{bottom:303.135000px;}
.y1a5{bottom:304.995000px;}
.y6d{bottom:306.900000px;}
.y97{bottom:307.125000px;}
.y100{bottom:307.188000px;}
.yba{bottom:307.245000px;}
.ydc{bottom:307.530000px;}
.y123{bottom:309.232500px;}
.y134{bottom:309.262500px;}
.y3b{bottom:309.318000px;}
.y14f{bottom:309.352500px;}
.y1de{bottom:310.635000px;}
.y11{bottom:310.688250px;}
.y1cb{bottom:315.247500px;}
.y17a{bottom:317.812500px;}
.y1ff{bottom:318.885000px;}
.y1a4{bottom:320.745000px;}
.y96{bottom:321.381000px;}
.yff{bottom:321.444000px;}
.ydb{bottom:321.786000px;}
.y10{bottom:325.693500px;}
.y122{bottom:326.475000px;}
.y133{bottom:326.505000px;}
.y3a{bottom:326.560500px;}
.y14e{bottom:326.595000px;}
.y1ca{bottom:332.490000px;}
.y1fe{bottom:334.635000px;}
.y179{bottom:335.055000px;}
.y95{bottom:335.637000px;}
.yfe{bottom:335.700000px;}
.yda{bottom:336.042000px;}
.y1a3{bottom:336.495000px;}
.yf{bottom:340.698750px;}
.y1dd{bottom:343.657500px;}
.y121{bottom:343.717500px;}
.y132{bottom:343.747500px;}
.y39{bottom:343.803000px;}
.y14d{bottom:343.837500px;}
.y1c9{bottom:349.732500px;}
.y94{bottom:349.893000px;}
.yd9{bottom:350.298000px;}
.y1fd{bottom:350.385000px;}
.y178{bottom:352.297500px;}
.y1dc{bottom:360.900000px;}
.y6c{bottom:360.945000px;}
.y120{bottom:360.960000px;}
.yb9{bottom:360.990000px;}
.y38{bottom:361.045500px;}
.y14c{bottom:361.080000px;}
.y93{bottom:364.149000px;}
.yd8{bottom:364.554000px;}
.y1fc{bottom:366.135000px;}
.y1c8{bottom:366.975000px;}
.y177{bottom:369.540000px;}
.y1a2{bottom:369.622500px;}
.ye{bottom:370.695000px;}
.y1db{bottom:378.142500px;}
.yfd{bottom:378.184500px;}
.y6b{bottom:378.187500px;}
.y11f{bottom:378.202500px;}
.yb8{bottom:378.232500px;}
.y37{bottom:378.288000px;}
.y14b{bottom:378.322500px;}
.y92{bottom:378.405000px;}
.yd7{bottom:378.810000px;}
.y1fb{bottom:381.885000px;}
.y1c7{bottom:384.217500px;}
.y176{bottom:386.782500px;}
.y1a1{bottom:386.865000px;}
.yfc{bottom:395.427000px;}
.y6a{bottom:395.430000px;}
.y11e{bottom:395.445000px;}
.yb7{bottom:395.475000px;}
.y36{bottom:395.530500px;}
.y14a{bottom:395.565000px;}
.y1fa{bottom:397.635000px;}
.y1c6{bottom:401.460000px;}
.y175{bottom:404.025000px;}
.y1a0{bottom:404.107500px;}
.yd{bottom:406.641750px;}
.yfb{bottom:412.669500px;}
.y69{bottom:412.672500px;}
.y11d{bottom:412.687500px;}
.yb6{bottom:412.717500px;}
.y35{bottom:412.773000px;}
.y149{bottom:412.807500px;}
.y1f9{bottom:413.385000px;}
.y1c5{bottom:418.702500px;}
.y174{bottom:421.267500px;}
.y19f{bottom:421.350000px;}
.yc{bottom:427.646250px;}
.y1f8{bottom:429.135000px;}
.y91{bottom:429.892500px;}
.y68{bottom:429.915000px;}
.y11c{bottom:429.930000px;}
.yb5{bottom:429.960000px;}
.y34{bottom:430.015500px;}
.y148{bottom:430.050000px;}
.y1c4{bottom:435.945000px;}
.yfa{bottom:438.541500px;}
.y19e{bottom:438.592500px;}
.y173{bottom:438.607500px;}
.yb{bottom:442.651500px;}
.y1f7{bottom:444.885000px;}
.y220{bottom:447.135000px;}
.y67{bottom:447.157500px;}
.y11b{bottom:447.172500px;}
.yb4{bottom:447.202500px;}
.y33{bottom:447.258000px;}
.y147{bottom:447.292500px;}
.y1c3{bottom:453.187500px;}
.y19d{bottom:455.835000px;}
.y172{bottom:455.850000px;}
.ya{bottom:457.656750px;}
.y1f6{bottom:460.635000px;}
.y21f{bottom:462.885000px;}
.y66{bottom:464.400000px;}
.y11a{bottom:464.415000px;}
.yb3{bottom:464.445000px;}
.y32{bottom:464.500500px;}
.y146{bottom:464.535000px;}
.y1c2{bottom:470.430000px;}
.y9{bottom:472.662000px;}
.y19c{bottom:473.077500px;}
.y171{bottom:473.092500px;}
.y1f5{bottom:476.385000px;}
.y21e{bottom:478.635000px;}
.y65{bottom:481.642500px;}
.y119{bottom:481.657500px;}
.yf9{bottom:481.672500px;}
.yb2{bottom:481.687500px;}
.y31{bottom:481.743000px;}
.y145{bottom:481.777500px;}
.y8{bottom:487.667250px;}
.y1c1{bottom:487.672500px;}
.y19b{bottom:490.320000px;}
.y170{bottom:490.335000px;}
.y1f4{bottom:492.135000px;}
.y21d{bottom:494.385000px;}
.y118{bottom:498.900000px;}
.yf8{bottom:498.915000px;}
.yb1{bottom:498.930000px;}
.y90{bottom:498.945000px;}
.y64{bottom:498.964500px;}
.y30{bottom:498.985500px;}
.y144{bottom:499.020000px;}
.y7{bottom:502.672500px;}
.y1c0{bottom:504.915000px;}
.y19a{bottom:507.562500px;}
.y16f{bottom:507.577500px;}
.y1f3{bottom:507.885000px;}
.y21c{bottom:510.135000px;}
.y117{bottom:516.142500px;}
.yf7{bottom:516.157500px;}
.yb0{bottom:516.172500px;}
.y8f{bottom:516.187500px;}
.y63{bottom:516.207000px;}
.y2f{bottom:516.228000px;}
.y143{bottom:516.262500px;}
.y6{bottom:517.677750px;}
.y1bf{bottom:522.157500px;}
.y1f2{bottom:523.635000px;}
.y199{bottom:524.805000px;}
.y16e{bottom:524.820000px;}
.y21b{bottom:525.885000px;}
.y5{bottom:532.683000px;}
.yf6{bottom:533.400000px;}
.yaf{bottom:533.415000px;}
.y8e{bottom:533.430000px;}
.y2e{bottom:533.470500px;}
.y116{bottom:533.505000px;}
.y1f1{bottom:539.385000px;}
.y1be{bottom:539.400000px;}
.y21a{bottom:541.635000px;}
.y198{bottom:542.047500px;}
.y16d{bottom:542.062500px;}
.y62{bottom:542.079000px;}
.y4{bottom:547.688250px;}
.yf5{bottom:550.642500px;}
.yae{bottom:550.657500px;}
.y8d{bottom:550.672500px;}
.y2d{bottom:550.713000px;}
.y115{bottom:550.747500px;}
.y1f0{bottom:555.135000px;}
.y1bd{bottom:556.642500px;}
.y219{bottom:557.385000px;}
.y197{bottom:559.290000px;}
.y16c{bottom:559.305000px;}
.y3{bottom:562.693500px;}
.yad{bottom:567.900000px;}
.y8c{bottom:567.915000px;}
.yf4{bottom:567.930000px;}
.y2c{bottom:567.955500px;}
.y114{bottom:567.990000px;}
.y1ef{bottom:570.885000px;}
.y218{bottom:573.135000px;}
.y1bc{bottom:573.945000px;}
.y196{bottom:576.532500px;}
.y16b{bottom:576.547500px;}
.y2{bottom:577.698750px;}
.yac{bottom:585.142500px;}
.y8b{bottom:585.157500px;}
.yf3{bottom:585.172500px;}
.y2b{bottom:585.198000px;}
.y61{bottom:585.210000px;}
.y113{bottom:585.232500px;}
.y1ee{bottom:586.635000px;}
.y217{bottom:588.885000px;}
.y1bb{bottom:591.187500px;}
.y195{bottom:593.775000px;}
.y16a{bottom:593.790000px;}
.y8a{bottom:602.400000px;}
.yf2{bottom:602.415000px;}
.y2a{bottom:602.440500px;}
.y60{bottom:602.452500px;}
.yd6{bottom:602.460000px;}
.yab{bottom:602.475000px;}
.y216{bottom:604.635000px;}
.y1{bottom:607.695000px;}
.y1ba{bottom:608.430000px;}
.y194{bottom:611.017500px;}
.y169{bottom:611.032500px;}
.y1ed{bottom:611.071500px;}
.y89{bottom:619.642500px;}
.yf1{bottom:619.657500px;}
.y29{bottom:619.683000px;}
.y5f{bottom:619.695000px;}
.yd5{bottom:619.702500px;}
.yaa{bottom:619.717500px;}
.y215{bottom:620.385000px;}
.y1b9{bottom:625.672500px;}
.y193{bottom:628.260000px;}
.y168{bottom:628.275000px;}
.y214{bottom:636.135000px;}
.yf0{bottom:636.900000px;}
.y28{bottom:636.925500px;}
.y5e{bottom:636.937500px;}
.yd4{bottom:636.945000px;}
.y88{bottom:636.960000px;}
.y1b8{bottom:642.915000px;}
.y192{bottom:645.502500px;}
.y167{bottom:645.517500px;}
.y213{bottom:651.885000px;}
.yef{bottom:654.142500px;}
.y27{bottom:654.168000px;}
.y5d{bottom:654.180000px;}
.yd3{bottom:654.187500px;}
.y87{bottom:654.202500px;}
.y1b7{bottom:660.157500px;}
.y191{bottom:662.745000px;}
.y166{bottom:662.790000px;}
.y212{bottom:667.635000px;}
.y5c{bottom:671.422500px;}
.yd2{bottom:671.430000px;}
.y86{bottom:671.445000px;}
.y1b6{bottom:677.400000px;}
.y165{bottom:680.032500px;}
.y26{bottom:680.040000px;}
.y211{bottom:683.385000px;}
.y5b{bottom:688.665000px;}
.yd1{bottom:688.672500px;}
.y85{bottom:688.687500px;}
.y1b5{bottom:694.642500px;}
.y164{bottom:697.275000px;}
.y190{bottom:699.135000px;}
.y24{bottom:704.349000px;}
.y5a{bottom:705.907500px;}
.yd0{bottom:705.915000px;}
.y84{bottom:705.930000px;}
.y1b4{bottom:711.885000px;}
.y163{bottom:714.517500px;}
.y18f{bottom:714.885000px;}
.y23{bottom:718.605000px;}
.y59{bottom:723.150000px;}
.ycf{bottom:723.157500px;}
.y83{bottom:723.172500px;}
.y18e{bottom:730.635000px;}
.y162{bottom:731.785500px;}
.y52{bottom:732.000000px;}
.y22{bottom:736.605000px;}
.y58{bottom:740.392500px;}
.yce{bottom:740.400000px;}
.y82{bottom:740.415000px;}
.y18d{bottom:746.385000px;}
.y50{bottom:748.500000px;}
.y161{bottom:749.028000px;}
.ycd{bottom:757.642500px;}
.y57{bottom:757.650000px;}
.y81{bottom:757.657500px;}
.y18c{bottom:762.135000px;}
.y160{bottom:766.270500px;}
.y53{bottom:766.500000px;}
.y4e{bottom:768.000000px;}
.y56{bottom:774.892500px;}
.y80{bottom:774.900000px;}
.y18b{bottom:777.885000px;}
.y21{bottom:781.605000px;}
.y15f{bottom:783.513000px;}
.y4c{bottom:784.500000px;}
.y55{bottom:792.142500px;}
.y18a{bottom:793.635000px;}
.y20{bottom:805.605000px;}
.y54{bottom:809.385000px;}
.y4b{bottom:816.750000px;}
.y1f{bottom:856.605000px;}
.y25{bottom:1045.500000px;}
.he{height:13.500000px;}
.hc{height:15.000000px;}
.hf{height:16.500000px;}
.h5{height:41.568000px;}
.h4{height:45.954000px;}
.h9{height:47.085938px;}
.h3{height:48.507000px;}
.h2{height:49.362000px;}
.h1d{height:51.060000px;}
.hd{height:52.998047px;}
.hb{height:56.166000px;}
.ha{height:57.156000px;}
.h1f{height:60.376200px;}
.h1e{height:60.496200px;}
.h1a{height:60.616200px;}
.h17{height:60.676200px;}
.h1c{height:60.706200px;}
.h16{height:60.736200px;}
.h13{height:60.796200px;}
.h14{height:60.856200px;}
.h18{height:60.916200px;}
.h19{height:60.976200px;}
.h1b{height:60.994200px;}
.h15{height:61.006200px;}
.h11{height:61.036200px;}
.h10{height:61.066200px;}
.h12{height:61.096200px;}
.h8{height:61.272000px;}
.h6{height:81.696000px;}
.h7{height:88.867200px;}
.h1{height:889.500000px;}
.h0{height:892.500000px;}
.w7{width:169.500000px;}
.w3{width:189.000000px;}
.w5{width:229.500000px;}
.w4{width:235.500000px;}
.w6{width:240.000000px;}
.w2{width:246.000000px;}
.w1{width:634.500000px;}
.w0{width:637.500000px;}
.x4{left:-64.500000px;}
.x0{left:0.000000px;}
.xe{left:1.500000px;}
.xa{left:18.404850px;}
.x6{left:54.000000px;}
.x9{left:64.500000px;}
.xb{left:70.500000px;}
.x1{left:71.700000px;}
.xc{left:90.031350px;}
.x2{left:94.204500px;}
.x8{left:112.500000px;}
.x10{left:116.700000px;}
.x7{left:162.015150px;}
.x5{left:290.745000px;}
.xd{left:327.000000px;}
.xf{left:330.000000px;}
.x3{left:426.270000px;}
@media print{
.v3{vertical-align:-19.360000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.333333pt;}
.v1{vertical-align:28.160000pt;}
.ls3c{letter-spacing:-6.512000pt;}
.ls36{letter-spacing:-2.868800pt;}
.ls30{letter-spacing:-2.399467pt;}
.ls38{letter-spacing:-2.340800pt;}
.ls39{letter-spacing:-1.877333pt;}
.ls3f{letter-spacing:-1.792000pt;}
.ls33{letter-spacing:-1.760000pt;}
.ls9f{letter-spacing:-1.706667pt;}
.ls35{letter-spacing:-1.466667pt;}
.ls2a{letter-spacing:-1.449067pt;}
.ls7b{letter-spacing:-1.408000pt;}
.ls78{letter-spacing:-1.349333pt;}
.ls37{letter-spacing:-1.290667pt;}
.ls89{letter-spacing:-1.280000pt;}
.ls2e{letter-spacing:-1.232000pt;}
.ls3a{letter-spacing:-1.226133pt;}
.ls40{letter-spacing:-1.216000pt;}
.ls60{letter-spacing:-1.200000pt;}
.ls6b{letter-spacing:-1.173333pt;}
.lsa2{letter-spacing:-1.160000pt;}
.ls79{letter-spacing:-1.152000pt;}
.ls32{letter-spacing:-1.114667pt;}
.ls4e{letter-spacing:-1.104000pt;}
.ls4d{letter-spacing:-1.056000pt;}
.ls3b{letter-spacing:-0.997333pt;}
.ls71{letter-spacing:-0.960000pt;}
.ls26{letter-spacing:-0.938667pt;}
.ls7a{letter-spacing:-0.912000pt;}
.ls3d{letter-spacing:-0.880000pt;}
.ls62{letter-spacing:-0.864000pt;}
.ls88{letter-spacing:-0.853333pt;}
.lsa1{letter-spacing:-0.840000pt;}
.ls2d{letter-spacing:-0.821333pt;}
.ls99{letter-spacing:-0.800000pt;}
.ls5b{letter-spacing:-0.780267pt;}
.ls65{letter-spacing:-0.768000pt;}
.ls23{letter-spacing:-0.762667pt;}
.ls87{letter-spacing:-0.746667pt;}
.ls63{letter-spacing:-0.720000pt;}
.ls24{letter-spacing:-0.704000pt;}
.ls2f{letter-spacing:-0.698133pt;}
.ls66{letter-spacing:-0.672000pt;}
.lsd{letter-spacing:-0.658667pt;}
.ls2b{letter-spacing:-0.645333pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls54{letter-spacing:-0.624000pt;}
.ls8f{letter-spacing:-0.616000pt;}
.lsc{letter-spacing:-0.608000pt;}
.ls9a{letter-spacing:-0.600000pt;}
.ls2c{letter-spacing:-0.592533pt;}
.ls34{letter-spacing:-0.586667pt;}
.ls61{letter-spacing:-0.576000pt;}
.lsf{letter-spacing:-0.557333pt;}
.ls80{letter-spacing:-0.533867pt;}
.ls9c{letter-spacing:-0.533333pt;}
.ls28{letter-spacing:-0.528000pt;}
.ls50{letter-spacing:-0.480000pt;}
.ls4a{letter-spacing:-0.469333pt;}
.ls9b{letter-spacing:-0.440000pt;}
.ls4f{letter-spacing:-0.432000pt;}
.ls85{letter-spacing:-0.426667pt;}
.ls31{letter-spacing:-0.410667pt;}
.ls9e{letter-spacing:-0.400000pt;}
.ls72{letter-spacing:-0.384000pt;}
.ls90{letter-spacing:-0.373333pt;}
.ls70{letter-spacing:-0.369600pt;}
.lse{letter-spacing:-0.354667pt;}
.ls25{letter-spacing:-0.352000pt;}
.ls55{letter-spacing:-0.336000pt;}
.lsb{letter-spacing:-0.304000pt;}
.ls49{letter-spacing:-0.293333pt;}
.ls10{letter-spacing:-0.288000pt;}
.lsa0{letter-spacing:-0.266667pt;}
.lsa{letter-spacing:-0.253333pt;}
.ls53{letter-spacing:-0.240000pt;}
.ls4c{letter-spacing:-0.234667pt;}
.ls82{letter-spacing:-0.213333pt;}
.ls76{letter-spacing:-0.205333pt;}
.ls6d{letter-spacing:-0.192000pt;}
.ls29{letter-spacing:-0.176000pt;}
.ls86{letter-spacing:-0.160000pt;}
.ls6c{letter-spacing:-0.144000pt;}
.ls5e{letter-spacing:-0.123200pt;}
.ls5c{letter-spacing:-0.117333pt;}
.ls52{letter-spacing:-0.096000pt;}
.ls5d{letter-spacing:-0.082133pt;}
.ls27{letter-spacing:-0.058667pt;}
.ls8b{letter-spacing:-0.053333pt;}
.ls51{letter-spacing:-0.048000pt;}
.ls3e{letter-spacing:-0.042667pt;}
.lsa3{letter-spacing:-0.040000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls5f{letter-spacing:0.041067pt;}
.ls47{letter-spacing:0.048000pt;}
.ls0{letter-spacing:0.050667pt;}
.ls91{letter-spacing:0.053333pt;}
.ls1b{letter-spacing:0.058667pt;}
.ls92{letter-spacing:0.080000pt;}
.ls69{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.101333pt;}
.ls8e{letter-spacing:0.106667pt;}
.ls18{letter-spacing:0.117333pt;}
.ls48{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.152000pt;}
.ls84{letter-spacing:0.160000pt;}
.ls81{letter-spacing:0.164267pt;}
.ls45{letter-spacing:0.176000pt;}
.ls59{letter-spacing:0.192000pt;}
.ls83{letter-spacing:0.213333pt;}
.ls1a{letter-spacing:0.234667pt;}
.ls6a{letter-spacing:0.240000pt;}
.ls96{letter-spacing:0.266667pt;}
.ls64{letter-spacing:0.288000pt;}
.ls17{letter-spacing:0.293333pt;}
.ls1f{letter-spacing:0.299200pt;}
.ls2{letter-spacing:0.304000pt;}
.ls95{letter-spacing:0.320000pt;}
.ls67{letter-spacing:0.336000pt;}
.ls46{letter-spacing:0.352000pt;}
.ls98{letter-spacing:0.360000pt;}
.ls8d{letter-spacing:0.373333pt;}
.ls5a{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.410667pt;}
.ls7f{letter-spacing:0.426667pt;}
.ls8{letter-spacing:0.432000pt;}
.ls13{letter-spacing:0.457600pt;}
.ls44{letter-spacing:0.469333pt;}
.ls41{letter-spacing:0.480000pt;}
.ls4b{letter-spacing:0.484000pt;}
.ls6f{letter-spacing:0.492800pt;}
.ls68{letter-spacing:0.528000pt;}
.ls7c{letter-spacing:0.533867pt;}
.ls4{letter-spacing:0.557333pt;}
.ls75{letter-spacing:0.576000pt;}
.ls43{letter-spacing:0.586667pt;}
.ls1e{letter-spacing:0.592533pt;}
.ls7{letter-spacing:0.624000pt;}
.ls6e{letter-spacing:0.645333pt;}
.ls97{letter-spacing:0.680000pt;}
.ls94{letter-spacing:0.693333pt;}
.ls21{letter-spacing:0.704000pt;}
.ls5{letter-spacing:0.709333pt;}
.ls57{letter-spacing:0.762667pt;}
.ls58{letter-spacing:0.816000pt;}
.ls56{letter-spacing:0.821333pt;}
.ls19{letter-spacing:0.880000pt;}
.ls6{letter-spacing:0.912000pt;}
.ls7d{letter-spacing:0.938667pt;}
.ls8a{letter-spacing:0.960000pt;}
.ls77{letter-spacing:1.026667pt;}
.ls12{letter-spacing:1.056000pt;}
.ls74{letter-spacing:1.104000pt;}
.ls73{letter-spacing:1.173333pt;}
.ls7e{letter-spacing:1.290667pt;}
.ls93{letter-spacing:1.333333pt;}
.ls1d{letter-spacing:1.349333pt;}
.ls16{letter-spacing:1.466667pt;}
.ls20{letter-spacing:1.525333pt;}
.ls15{letter-spacing:1.578133pt;}
.ls8c{letter-spacing:1.760000pt;}
.ls22{letter-spacing:2.129600pt;}
.ls1c{letter-spacing:3.619733pt;}
.ls9d{letter-spacing:11.360000pt;}
.ls42{letter-spacing:14.186667pt;}
.ws4e{word-spacing:-16.133333pt;}
.wsba{word-spacing:-15.605333pt;}
.wsbc{word-spacing:-15.546667pt;}
.wsb3{word-spacing:-15.429333pt;}
.wsa4{word-spacing:-15.312000pt;}
.ws4a{word-spacing:-15.253333pt;}
.wsac{word-spacing:-15.194667pt;}
.wsbb{word-spacing:-15.136000pt;}
.ws96{word-spacing:-15.077333pt;}
.ws4f{word-spacing:-15.018667pt;}
.ws16{word-spacing:-14.960000pt;}
.wsa6{word-spacing:-14.901333pt;}
.ws4d{word-spacing:-14.842667pt;}
.wsbd{word-spacing:-14.784000pt;}
.ws6f{word-spacing:-14.725333pt;}
.ws19{word-spacing:-14.666667pt;}
.ws48{word-spacing:-14.608000pt;}
.ws8d{word-spacing:-14.549333pt;}
.ws49{word-spacing:-14.490667pt;}
.ws8c{word-spacing:-14.432000pt;}
.ws4b{word-spacing:-14.373333pt;}
.wsa5{word-spacing:-14.314667pt;}
.ws15{word-spacing:-14.197333pt;}
.ws1a{word-spacing:-14.138667pt;}
.ws23{word-spacing:-14.080000pt;}
.ws1d{word-spacing:-14.074133pt;}
.wsc9{word-spacing:-14.026667pt;}
.ws1c{word-spacing:-14.021333pt;}
.ws20{word-spacing:-13.968533pt;}
.ws17{word-spacing:-13.962667pt;}
.wsa8{word-spacing:-13.904000pt;}
.ws1e{word-spacing:-13.845333pt;}
.wsd3{word-spacing:-13.813333pt;}
.ws2c{word-spacing:-13.786667pt;}
.ws18{word-spacing:-13.728000pt;}
.ws2a{word-spacing:-13.669333pt;}
.wse5{word-spacing:-13.653333pt;}
.wsc1{word-spacing:-13.546667pt;}
.ws29{word-spacing:-13.440533pt;}
.ws1f{word-spacing:-13.434667pt;}
.ws26{word-spacing:-13.376000pt;}
.wsb2{word-spacing:-13.333333pt;}
.ws1b{word-spacing:-13.217600pt;}
.ws24{word-spacing:-13.200000pt;}
.wsae{word-spacing:-13.120000pt;}
.ws0{word-spacing:-12.920000pt;}
.ws22{word-spacing:-12.906667pt;}
.wseb{word-spacing:-12.853333pt;}
.wsd6{word-spacing:-12.800000pt;}
.ws28{word-spacing:-12.789333pt;}
.wsd1{word-spacing:-12.746667pt;}
.wsea{word-spacing:-12.693333pt;}
.wsc8{word-spacing:-12.533333pt;}
.wse7{word-spacing:-12.480000pt;}
.ws99{word-spacing:-12.432000pt;}
.ws9b{word-spacing:-12.336000pt;}
.ws27{word-spacing:-12.325867pt;}
.ws9a{word-spacing:-12.288000pt;}
.ws21{word-spacing:-12.267200pt;}
.ws81{word-spacing:-12.096000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws83{word-spacing:-11.952000pt;}
.ws57{word-spacing:-11.904000pt;}
.ws82{word-spacing:-11.808000pt;}
.ws25{word-spacing:-11.797867pt;}
.ws59{word-spacing:-11.760000pt;}
.ws58{word-spacing:-11.712000pt;}
.ws2f{word-spacing:-11.704000pt;}
.wsbe{word-spacing:-11.664000pt;}
.wse1{word-spacing:-11.626667pt;}
.ws55{word-spacing:-11.568000pt;}
.ws56{word-spacing:-11.520000pt;}
.ws4c{word-spacing:-11.484000pt;}
.ws93{word-spacing:-11.376000pt;}
.ws73{word-spacing:-11.328000pt;}
.ws98{word-spacing:-11.293333pt;}
.wsaf{word-spacing:-11.280000pt;}
.ws72{word-spacing:-11.232000pt;}
.ws54{word-spacing:-10.944000pt;}
.ws53{word-spacing:-10.896000pt;}
.ws9c{word-spacing:-10.848000pt;}
.ws2d{word-spacing:-10.837333pt;}
.wsa3{word-spacing:-10.800533pt;}
.ws8e{word-spacing:-10.759467pt;}
.wscd{word-spacing:-10.680000pt;}
.ws50{word-spacing:-10.666667pt;}
.ws51{word-spacing:-10.624000pt;}
.wsd2{word-spacing:-10.480000pt;}
.wsad{word-spacing:-10.430933pt;}
.ws70{word-spacing:-10.307733pt;}
.ws80{word-spacing:-10.266667pt;}
.ws6d{word-spacing:-10.184533pt;}
.ws6e{word-spacing:-10.143467pt;}
.wsc6{word-spacing:-10.080000pt;}
.ws97{word-spacing:-10.061333pt;}
.wsc5{word-spacing:-10.000000pt;}
.ws8f{word-spacing:-9.897067pt;}
.wsb9{word-spacing:-9.856000pt;}
.wsce{word-spacing:-9.760000pt;}
.wsc0{word-spacing:-9.650667pt;}
.wsdf{word-spacing:-9.600000pt;}
.wsd0{word-spacing:-9.560000pt;}
.ws6c{word-spacing:-9.486400pt;}
.wscf{word-spacing:-9.400000pt;}
.wsc7{word-spacing:-9.200000pt;}
.wse3{word-spacing:-9.160000pt;}
.wse2{word-spacing:-9.040000pt;}
.ws2e{word-spacing:-8.874667pt;}
.wse6{word-spacing:-8.840000pt;}
.wsd5{word-spacing:-8.720000pt;}
.ws2b{word-spacing:-8.154667pt;}
.ws14{word-spacing:-6.314667pt;}
.ws33{word-spacing:-0.762667pt;}
.ws38{word-spacing:-0.704000pt;}
.ws92{word-spacing:-0.672000pt;}
.ws75{word-spacing:-0.645333pt;}
.wsb8{word-spacing:-0.640000pt;}
.ws7a{word-spacing:-0.624000pt;}
.ws44{word-spacing:-0.586667pt;}
.ws61{word-spacing:-0.576000pt;}
.ws32{word-spacing:-0.528000pt;}
.ws7e{word-spacing:-0.480000pt;}
.ws5b{word-spacing:-0.469333pt;}
.ws9f{word-spacing:-0.432000pt;}
.wsb1{word-spacing:-0.426667pt;}
.ws30{word-spacing:-0.410667pt;}
.ws3{word-spacing:-0.405333pt;}
.ws69{word-spacing:-0.384000pt;}
.wsee{word-spacing:-0.373333pt;}
.ws4{word-spacing:-0.354667pt;}
.ws3f{word-spacing:-0.352000pt;}
.ws64{word-spacing:-0.336000pt;}
.wsc{word-spacing:-0.304000pt;}
.ws87{word-spacing:-0.293333pt;}
.ws13{word-spacing:-0.288000pt;}
.wsc2{word-spacing:-0.266667pt;}
.ws6a{word-spacing:-0.240000pt;}
.ws3c{word-spacing:-0.234667pt;}
.wsb4{word-spacing:-0.213333pt;}
.ws60{word-spacing:-0.192000pt;}
.ws85{word-spacing:-0.176000pt;}
.wsdb{word-spacing:-0.160000pt;}
.ws94{word-spacing:-0.144000pt;}
.wsaa{word-spacing:-0.117333pt;}
.wsed{word-spacing:-0.106667pt;}
.wsd{word-spacing:-0.101333pt;}
.ws79{word-spacing:-0.096000pt;}
.ws84{word-spacing:-0.058667pt;}
.wsc4{word-spacing:-0.053333pt;}
.ws8{word-spacing:-0.050667pt;}
.ws88{word-spacing:-0.048000pt;}
.ws9{word-spacing:0.000000pt;}
.ws67{word-spacing:0.048000pt;}
.wsdd{word-spacing:0.053333pt;}
.ws42{word-spacing:0.058667pt;}
.ws78{word-spacing:0.096000pt;}
.wsb5{word-spacing:0.106667pt;}
.ws76{word-spacing:0.117333pt;}
.ws7c{word-spacing:0.144000pt;}
.wsec{word-spacing:0.160000pt;}
.ws86{word-spacing:0.176000pt;}
.ws68{word-spacing:0.192000pt;}
.wsb7{word-spacing:0.213333pt;}
.ws41{word-spacing:0.234667pt;}
.ws7b{word-spacing:0.288000pt;}
.ws3e{word-spacing:0.293333pt;}
.wsf{word-spacing:0.304000pt;}
.ws77{word-spacing:0.336000pt;}
.ws74{word-spacing:0.352000pt;}
.wsbf{word-spacing:0.373333pt;}
.ws12{word-spacing:0.384000pt;}
.ws31{word-spacing:0.410667pt;}
.wsa1{word-spacing:0.432000pt;}
.ws35{word-spacing:0.469333pt;}
.ws5f{word-spacing:0.480000pt;}
.ws10{word-spacing:0.528000pt;}
.ws5a{word-spacing:0.533867pt;}
.wse{word-spacing:0.557333pt;}
.ws3a{word-spacing:0.586667pt;}
.wsa0{word-spacing:0.624000pt;}
.wsd9{word-spacing:0.640000pt;}
.ws5c{word-spacing:0.645333pt;}
.wsb{word-spacing:0.658667pt;}
.ws8b{word-spacing:0.672000pt;}
.wsde{word-spacing:0.693333pt;}
.ws45{word-spacing:0.704000pt;}
.ws6{word-spacing:0.709333pt;}
.ws11{word-spacing:0.720000pt;}
.wsd8{word-spacing:0.746667pt;}
.ws3d{word-spacing:0.762667pt;}
.ws95{word-spacing:0.768000pt;}
.ws7f{word-spacing:0.816000pt;}
.ws5d{word-spacing:0.821333pt;}
.wsdc{word-spacing:0.853333pt;}
.ws89{word-spacing:0.864000pt;}
.wsa9{word-spacing:0.880000pt;}
.wsb0{word-spacing:0.906667pt;}
.ws8a{word-spacing:0.912000pt;}
.ws9e{word-spacing:0.938667pt;}
.ws7d{word-spacing:0.960000pt;}
.ws7{word-spacing:0.962667pt;}
.ws34{word-spacing:0.997333pt;}
.ws6b{word-spacing:1.008000pt;}
.wsda{word-spacing:1.013333pt;}
.ws65{word-spacing:1.056000pt;}
.ws5{word-spacing:1.064000pt;}
.ws66{word-spacing:1.104000pt;}
.ws37{word-spacing:1.114667pt;}
.wsb6{word-spacing:1.120000pt;}
.ws62{word-spacing:1.152000pt;}
.wsa{word-spacing:1.165333pt;}
.ws40{word-spacing:1.173333pt;}
.ws63{word-spacing:1.200000pt;}
.ws2{word-spacing:1.216000pt;}
.wsc3{word-spacing:1.226667pt;}
.ws43{word-spacing:1.232000pt;}
.ws91{word-spacing:1.248000pt;}
.ws36{word-spacing:1.290667pt;}
.wsd7{word-spacing:1.333333pt;}
.ws3b{word-spacing:1.349333pt;}
.ws39{word-spacing:1.408000pt;}
.wsa7{word-spacing:1.466667pt;}
.ws5e{word-spacing:2.464000pt;}
.wse8{word-spacing:2.706667pt;}
.wse9{word-spacing:3.133333pt;}
.wse0{word-spacing:3.880000pt;}
.wscb{word-spacing:3.920000pt;}
.wscc{word-spacing:4.040000pt;}
.wsab{word-spacing:4.134933pt;}
.wsca{word-spacing:4.160000pt;}
.wse4{word-spacing:4.320000pt;}
.wsd4{word-spacing:4.333333pt;}
.ws9d{word-spacing:4.341333pt;}
.wsa2{word-spacing:5.749333pt;}
.ws90{word-spacing:8.016000pt;}
.ws46{word-spacing:31.872000pt;}
.ws71{word-spacing:31.914667pt;}
.ws52{word-spacing:32.016000pt;}
.ws47{word-spacing:1086.208000pt;}
._f{margin-left:-9.440000pt;}
._7{margin-left:-6.906667pt;}
._d{margin-left:-6.000000pt;}
._5{margin-left:-4.914667pt;}
._4{margin-left:-3.749333pt;}
._2{margin-left:-2.837333pt;}
._b{margin-left:-1.920000pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.013333pt;}
._3{width:2.330667pt;}
._e{width:20.016000pt;}
._10{width:26.666667pt;}
._9{width:41.845333pt;}
._6{width:42.768000pt;}
._8{width:171.040000pt;}
._a{width:1096.138667pt;}
._c{width:1097.045333pt;}
.fsa{font-size:40.000000pt;}
.fs7{font-size:41.066667pt;}
.fs2{font-size:42.666667pt;}
.fs8{font-size:44.000000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs4{font-size:59.733333pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:1.908000pt;}
.y4d{bottom:2.574667pt;}
.y51{bottom:3.241333pt;}
.y7f{bottom:44.704000pt;}
.y1b3{bottom:44.833333pt;}
.y1e{bottom:44.845333pt;}
.ya9{bottom:44.904000pt;}
.y112{bottom:44.960000pt;}
.ycc{bottom:45.010667pt;}
.y4a{bottom:45.049333pt;}
.y15e{bottom:45.080000pt;}
.y131{bottom:45.117333pt;}
.y1da{bottom:45.168000pt;}
.yee{bottom:45.264000pt;}
.y189{bottom:45.400000pt;}
.y142{bottom:45.440000pt;}
.y210{bottom:45.453333pt;}
.y1ec{bottom:45.528000pt;}
.y7e{bottom:57.376000pt;}
.y1d{bottom:57.517333pt;}
.ya8{bottom:57.576000pt;}
.y111{bottom:57.632000pt;}
.ycb{bottom:57.682667pt;}
.y130{bottom:57.789333pt;}
.y1d9{bottom:57.840000pt;}
.yed{bottom:57.936000pt;}
.y188{bottom:58.072000pt;}
.y141{bottom:58.112000pt;}
.y1eb{bottom:58.200000pt;}
.y20f{bottom:59.453333pt;}
.y1b2{bottom:60.160000pt;}
.y49{bottom:60.376000pt;}
.y15d{bottom:60.406667pt;}
.y7d{bottom:70.048000pt;}
.y1c{bottom:70.189333pt;}
.ya7{bottom:70.248000pt;}
.y110{bottom:70.304000pt;}
.yca{bottom:70.354667pt;}
.y12f{bottom:70.461333pt;}
.y1d8{bottom:70.512000pt;}
.yec{bottom:70.608000pt;}
.y187{bottom:70.744000pt;}
.y140{bottom:70.784000pt;}
.y1ea{bottom:70.872000pt;}
.y20e{bottom:73.453333pt;}
.y1b1{bottom:75.486667pt;}
.y48{bottom:75.702667pt;}
.y15c{bottom:75.733333pt;}
.y7c{bottom:82.720000pt;}
.y1b{bottom:82.861333pt;}
.ya6{bottom:82.920000pt;}
.y10f{bottom:82.976000pt;}
.yc9{bottom:83.026667pt;}
.y12e{bottom:83.133333pt;}
.y1d7{bottom:83.184000pt;}
.yeb{bottom:83.280000pt;}
.y186{bottom:83.416000pt;}
.y13f{bottom:83.456000pt;}
.y1e9{bottom:83.544000pt;}
.y20d{bottom:87.453333pt;}
.y1b0{bottom:90.813333pt;}
.y47{bottom:91.029333pt;}
.y15b{bottom:91.060000pt;}
.y7b{bottom:95.392000pt;}
.y1a{bottom:95.533333pt;}
.ya5{bottom:95.592000pt;}
.y10e{bottom:95.648000pt;}
.yc8{bottom:95.698667pt;}
.y1d6{bottom:95.856000pt;}
.yea{bottom:95.952000pt;}
.y185{bottom:96.088000pt;}
.y13e{bottom:96.128000pt;}
.y1e8{bottom:96.216000pt;}
.y20c{bottom:101.453333pt;}
.y1af{bottom:106.140000pt;}
.y46{bottom:106.356000pt;}
.y15a{bottom:106.386667pt;}
.y7a{bottom:108.064000pt;}
.ya4{bottom:108.264000pt;}
.y10d{bottom:108.320000pt;}
.yc7{bottom:108.370667pt;}
.y1d5{bottom:108.528000pt;}
.ye9{bottom:108.624000pt;}
.y184{bottom:108.760000pt;}
.y13d{bottom:108.800000pt;}
.y1e7{bottom:108.888000pt;}
.y20b{bottom:115.453333pt;}
.y79{bottom:120.736000pt;}
.ya3{bottom:120.936000pt;}
.y10c{bottom:120.992000pt;}
.yc6{bottom:121.042667pt;}
.y1d4{bottom:121.200000pt;}
.ye8{bottom:121.296000pt;}
.y183{bottom:121.432000pt;}
.y1ae{bottom:121.466667pt;}
.y1e6{bottom:121.560000pt;}
.y12d{bottom:121.606667pt;}
.y45{bottom:121.682667pt;}
.y159{bottom:121.713333pt;}
.y20a{bottom:129.453333pt;}
.y78{bottom:133.408000pt;}
.ya2{bottom:133.608000pt;}
.y10b{bottom:133.664000pt;}
.yc5{bottom:133.714667pt;}
.ye7{bottom:133.968000pt;}
.y182{bottom:134.104000pt;}
.y1ad{bottom:136.793333pt;}
.y12c{bottom:136.933333pt;}
.y44{bottom:137.009333pt;}
.y158{bottom:137.040000pt;}
.y209{bottom:143.453333pt;}
.y77{bottom:146.080000pt;}
.ya1{bottom:146.280000pt;}
.y10a{bottom:146.336000pt;}
.yc4{bottom:146.386667pt;}
.ye6{bottom:146.640000pt;}
.y181{bottom:146.776000pt;}
.y1ac{bottom:152.120000pt;}
.y12b{bottom:152.260000pt;}
.y13c{bottom:152.286667pt;}
.y43{bottom:152.336000pt;}
.y157{bottom:152.366667pt;}
.y208{bottom:157.453333pt;}
.y1d3{bottom:157.473333pt;}
.y76{bottom:158.752000pt;}
.ya0{bottom:158.952000pt;}
.y109{bottom:159.008000pt;}
.yc3{bottom:159.058667pt;}
.ye5{bottom:159.312000pt;}
.y180{bottom:159.448000pt;}
.y19{bottom:164.173333pt;}
.y1ab{bottom:167.446667pt;}
.y12a{bottom:167.586667pt;}
.y13b{bottom:167.613333pt;}
.y42{bottom:167.662667pt;}
.y156{bottom:167.693333pt;}
.y75{bottom:171.424000pt;}
.y207{bottom:171.453333pt;}
.y9f{bottom:171.624000pt;}
.y108{bottom:171.680000pt;}
.yc2{bottom:171.730667pt;}
.ye4{bottom:171.984000pt;}
.y17f{bottom:172.120000pt;}
.y1d2{bottom:172.800000pt;}
.y1e5{bottom:178.120000pt;}
.y1aa{bottom:182.773333pt;}
.y18{bottom:182.801333pt;}
.y129{bottom:182.913333pt;}
.y13a{bottom:182.940000pt;}
.y41{bottom:182.989333pt;}
.y155{bottom:183.020000pt;}
.y74{bottom:184.096000pt;}
.y9e{bottom:184.296000pt;}
.y107{bottom:184.352000pt;}
.yc1{bottom:184.402667pt;}
.ye3{bottom:184.656000pt;}
.y206{bottom:185.453333pt;}
.y1d1{bottom:188.126667pt;}
.y1e4{bottom:192.120000pt;}
.y17{bottom:196.139333pt;}
.y73{bottom:196.768000pt;}
.y9d{bottom:196.968000pt;}
.y106{bottom:197.024000pt;}
.yc0{bottom:197.074667pt;}
.ye2{bottom:197.328000pt;}
.y128{bottom:198.240000pt;}
.y139{bottom:198.266667pt;}
.y40{bottom:198.316000pt;}
.y154{bottom:198.346667pt;}
.y205{bottom:199.453333pt;}
.y1d0{bottom:203.586667pt;}
.y1e3{bottom:206.120000pt;}
.y17e{bottom:208.453333pt;}
.y72{bottom:209.440000pt;}
.y16{bottom:209.477333pt;}
.y9c{bottom:209.640000pt;}
.y105{bottom:209.696000pt;}
.ybf{bottom:209.746667pt;}
.ye1{bottom:210.000000pt;}
.y204{bottom:213.453333pt;}
.y127{bottom:213.566667pt;}
.y138{bottom:213.593333pt;}
.y3f{bottom:213.642667pt;}
.y153{bottom:213.673333pt;}
.y1a9{bottom:215.106667pt;}
.y1cf{bottom:218.913333pt;}
.y1e2{bottom:220.120000pt;}
.y71{bottom:222.112000pt;}
.y9b{bottom:222.312000pt;}
.y104{bottom:222.368000pt;}
.ybe{bottom:222.418667pt;}
.y17d{bottom:222.453333pt;}
.ye0{bottom:222.672000pt;}
.y15{bottom:222.815333pt;}
.y203{bottom:227.453333pt;}
.y126{bottom:228.893333pt;}
.y137{bottom:228.920000pt;}
.y3e{bottom:228.969333pt;}
.y152{bottom:229.000000pt;}
.y1a8{bottom:229.106667pt;}
.y1e1{bottom:234.120000pt;}
.y1ce{bottom:234.240000pt;}
.y70{bottom:234.784000pt;}
.y9a{bottom:234.984000pt;}
.y103{bottom:235.040000pt;}
.ybd{bottom:235.090667pt;}
.ydf{bottom:235.344000pt;}
.y14{bottom:236.153333pt;}
.y202{bottom:241.453333pt;}
.y1a7{bottom:243.106667pt;}
.y125{bottom:244.220000pt;}
.y136{bottom:244.246667pt;}
.y3d{bottom:244.296000pt;}
.y151{bottom:244.326667pt;}
.y6f{bottom:247.456000pt;}
.y99{bottom:247.656000pt;}
.y102{bottom:247.712000pt;}
.ybc{bottom:247.762667pt;}
.yde{bottom:248.016000pt;}
.y1e0{bottom:248.120000pt;}
.y13{bottom:249.491333pt;}
.y1cd{bottom:249.566667pt;}
.y17c{bottom:251.846667pt;}
.y201{bottom:255.453333pt;}
.y1a6{bottom:257.106667pt;}
.y124{bottom:259.546667pt;}
.y135{bottom:259.573333pt;}
.y3c{bottom:259.622667pt;}
.y150{bottom:259.653333pt;}
.y6e{bottom:260.128000pt;}
.y98{bottom:260.328000pt;}
.y101{bottom:260.384000pt;}
.ybb{bottom:260.434667pt;}
.ydd{bottom:260.688000pt;}
.y1df{bottom:262.120000pt;}
.y12{bottom:262.829333pt;}
.y1cc{bottom:264.893333pt;}
.y17b{bottom:267.173333pt;}
.y200{bottom:269.453333pt;}
.y1a5{bottom:271.106667pt;}
.y6d{bottom:272.800000pt;}
.y97{bottom:273.000000pt;}
.y100{bottom:273.056000pt;}
.yba{bottom:273.106667pt;}
.ydc{bottom:273.360000pt;}
.y123{bottom:274.873333pt;}
.y134{bottom:274.900000pt;}
.y3b{bottom:274.949333pt;}
.y14f{bottom:274.980000pt;}
.y1de{bottom:276.120000pt;}
.y11{bottom:276.167333pt;}
.y1cb{bottom:280.220000pt;}
.y17a{bottom:282.500000pt;}
.y1ff{bottom:283.453333pt;}
.y1a4{bottom:285.106667pt;}
.y96{bottom:285.672000pt;}
.yff{bottom:285.728000pt;}
.ydb{bottom:286.032000pt;}
.y10{bottom:289.505333pt;}
.y122{bottom:290.200000pt;}
.y133{bottom:290.226667pt;}
.y3a{bottom:290.276000pt;}
.y14e{bottom:290.306667pt;}
.y1ca{bottom:295.546667pt;}
.y1fe{bottom:297.453333pt;}
.y179{bottom:297.826667pt;}
.y95{bottom:298.344000pt;}
.yfe{bottom:298.400000pt;}
.yda{bottom:298.704000pt;}
.y1a3{bottom:299.106667pt;}
.yf{bottom:302.843333pt;}
.y1dd{bottom:305.473333pt;}
.y121{bottom:305.526667pt;}
.y132{bottom:305.553333pt;}
.y39{bottom:305.602667pt;}
.y14d{bottom:305.633333pt;}
.y1c9{bottom:310.873333pt;}
.y94{bottom:311.016000pt;}
.yd9{bottom:311.376000pt;}
.y1fd{bottom:311.453333pt;}
.y178{bottom:313.153333pt;}
.y1dc{bottom:320.800000pt;}
.y6c{bottom:320.840000pt;}
.y120{bottom:320.853333pt;}
.yb9{bottom:320.880000pt;}
.y38{bottom:320.929333pt;}
.y14c{bottom:320.960000pt;}
.y93{bottom:323.688000pt;}
.yd8{bottom:324.048000pt;}
.y1fc{bottom:325.453333pt;}
.y1c8{bottom:326.200000pt;}
.y177{bottom:328.480000pt;}
.y1a2{bottom:328.553333pt;}
.ye{bottom:329.506667pt;}
.y1db{bottom:336.126667pt;}
.yfd{bottom:336.164000pt;}
.y6b{bottom:336.166667pt;}
.y11f{bottom:336.180000pt;}
.yb8{bottom:336.206667pt;}
.y37{bottom:336.256000pt;}
.y14b{bottom:336.286667pt;}
.y92{bottom:336.360000pt;}
.yd7{bottom:336.720000pt;}
.y1fb{bottom:339.453333pt;}
.y1c7{bottom:341.526667pt;}
.y176{bottom:343.806667pt;}
.y1a1{bottom:343.880000pt;}
.yfc{bottom:351.490667pt;}
.y6a{bottom:351.493333pt;}
.y11e{bottom:351.506667pt;}
.yb7{bottom:351.533333pt;}
.y36{bottom:351.582667pt;}
.y14a{bottom:351.613333pt;}
.y1fa{bottom:353.453333pt;}
.y1c6{bottom:356.853333pt;}
.y175{bottom:359.133333pt;}
.y1a0{bottom:359.206667pt;}
.yd{bottom:361.459333pt;}
.yfb{bottom:366.817333pt;}
.y69{bottom:366.820000pt;}
.y11d{bottom:366.833333pt;}
.yb6{bottom:366.860000pt;}
.y35{bottom:366.909333pt;}
.y149{bottom:366.940000pt;}
.y1f9{bottom:367.453333pt;}
.y1c5{bottom:372.180000pt;}
.y174{bottom:374.460000pt;}
.y19f{bottom:374.533333pt;}
.yc{bottom:380.130000pt;}
.y1f8{bottom:381.453333pt;}
.y91{bottom:382.126667pt;}
.y68{bottom:382.146667pt;}
.y11c{bottom:382.160000pt;}
.yb5{bottom:382.186667pt;}
.y34{bottom:382.236000pt;}
.y148{bottom:382.266667pt;}
.y1c4{bottom:387.506667pt;}
.yfa{bottom:389.814667pt;}
.y19e{bottom:389.860000pt;}
.y173{bottom:389.873333pt;}
.yb{bottom:393.468000pt;}
.y1f7{bottom:395.453333pt;}
.y220{bottom:397.453333pt;}
.y67{bottom:397.473333pt;}
.y11b{bottom:397.486667pt;}
.yb4{bottom:397.513333pt;}
.y33{bottom:397.562667pt;}
.y147{bottom:397.593333pt;}
.y1c3{bottom:402.833333pt;}
.y19d{bottom:405.186667pt;}
.y172{bottom:405.200000pt;}
.ya{bottom:406.806000pt;}
.y1f6{bottom:409.453333pt;}
.y21f{bottom:411.453333pt;}
.y66{bottom:412.800000pt;}
.y11a{bottom:412.813333pt;}
.yb3{bottom:412.840000pt;}
.y32{bottom:412.889333pt;}
.y146{bottom:412.920000pt;}
.y1c2{bottom:418.160000pt;}
.y9{bottom:420.144000pt;}
.y19c{bottom:420.513333pt;}
.y171{bottom:420.526667pt;}
.y1f5{bottom:423.453333pt;}
.y21e{bottom:425.453333pt;}
.y65{bottom:428.126667pt;}
.y119{bottom:428.140000pt;}
.yf9{bottom:428.153333pt;}
.yb2{bottom:428.166667pt;}
.y31{bottom:428.216000pt;}
.y145{bottom:428.246667pt;}
.y8{bottom:433.482000pt;}
.y1c1{bottom:433.486667pt;}
.y19b{bottom:435.840000pt;}
.y170{bottom:435.853333pt;}
.y1f4{bottom:437.453333pt;}
.y21d{bottom:439.453333pt;}
.y118{bottom:443.466667pt;}
.yf8{bottom:443.480000pt;}
.yb1{bottom:443.493333pt;}
.y90{bottom:443.506667pt;}
.y64{bottom:443.524000pt;}
.y30{bottom:443.542667pt;}
.y144{bottom:443.573333pt;}
.y7{bottom:446.820000pt;}
.y1c0{bottom:448.813333pt;}
.y19a{bottom:451.166667pt;}
.y16f{bottom:451.180000pt;}
.y1f3{bottom:451.453333pt;}
.y21c{bottom:453.453333pt;}
.y117{bottom:458.793333pt;}
.yf7{bottom:458.806667pt;}
.yb0{bottom:458.820000pt;}
.y8f{bottom:458.833333pt;}
.y63{bottom:458.850667pt;}
.y2f{bottom:458.869333pt;}
.y143{bottom:458.900000pt;}
.y6{bottom:460.158000pt;}
.y1bf{bottom:464.140000pt;}
.y1f2{bottom:465.453333pt;}
.y199{bottom:466.493333pt;}
.y16e{bottom:466.506667pt;}
.y21b{bottom:467.453333pt;}
.y5{bottom:473.496000pt;}
.yf6{bottom:474.133333pt;}
.yaf{bottom:474.146667pt;}
.y8e{bottom:474.160000pt;}
.y2e{bottom:474.196000pt;}
.y116{bottom:474.226667pt;}
.y1f1{bottom:479.453333pt;}
.y1be{bottom:479.466667pt;}
.y21a{bottom:481.453333pt;}
.y198{bottom:481.820000pt;}
.y16d{bottom:481.833333pt;}
.y62{bottom:481.848000pt;}
.y4{bottom:486.834000pt;}
.yf5{bottom:489.460000pt;}
.yae{bottom:489.473333pt;}
.y8d{bottom:489.486667pt;}
.y2d{bottom:489.522667pt;}
.y115{bottom:489.553333pt;}
.y1f0{bottom:493.453333pt;}
.y1bd{bottom:494.793333pt;}
.y219{bottom:495.453333pt;}
.y197{bottom:497.146667pt;}
.y16c{bottom:497.160000pt;}
.y3{bottom:500.172000pt;}
.yad{bottom:504.800000pt;}
.y8c{bottom:504.813333pt;}
.yf4{bottom:504.826667pt;}
.y2c{bottom:504.849333pt;}
.y114{bottom:504.880000pt;}
.y1ef{bottom:507.453333pt;}
.y218{bottom:509.453333pt;}
.y1bc{bottom:510.173333pt;}
.y196{bottom:512.473333pt;}
.y16b{bottom:512.486667pt;}
.y2{bottom:513.510000pt;}
.yac{bottom:520.126667pt;}
.y8b{bottom:520.140000pt;}
.yf3{bottom:520.153333pt;}
.y2b{bottom:520.176000pt;}
.y61{bottom:520.186667pt;}
.y113{bottom:520.206667pt;}
.y1ee{bottom:521.453333pt;}
.y217{bottom:523.453333pt;}
.y1bb{bottom:525.500000pt;}
.y195{bottom:527.800000pt;}
.y16a{bottom:527.813333pt;}
.y8a{bottom:535.466667pt;}
.yf2{bottom:535.480000pt;}
.y2a{bottom:535.502667pt;}
.y60{bottom:535.513333pt;}
.yd6{bottom:535.520000pt;}
.yab{bottom:535.533333pt;}
.y216{bottom:537.453333pt;}
.y1{bottom:540.173333pt;}
.y1ba{bottom:540.826667pt;}
.y194{bottom:543.126667pt;}
.y169{bottom:543.140000pt;}
.y1ed{bottom:543.174667pt;}
.y89{bottom:550.793333pt;}
.yf1{bottom:550.806667pt;}
.y29{bottom:550.829333pt;}
.y5f{bottom:550.840000pt;}
.yd5{bottom:550.846667pt;}
.yaa{bottom:550.860000pt;}
.y215{bottom:551.453333pt;}
.y1b9{bottom:556.153333pt;}
.y193{bottom:558.453333pt;}
.y168{bottom:558.466667pt;}
.y214{bottom:565.453333pt;}
.yf0{bottom:566.133333pt;}
.y28{bottom:566.156000pt;}
.y5e{bottom:566.166667pt;}
.yd4{bottom:566.173333pt;}
.y88{bottom:566.186667pt;}
.y1b8{bottom:571.480000pt;}
.y192{bottom:573.780000pt;}
.y167{bottom:573.793333pt;}
.y213{bottom:579.453333pt;}
.yef{bottom:581.460000pt;}
.y27{bottom:581.482667pt;}
.y5d{bottom:581.493333pt;}
.yd3{bottom:581.500000pt;}
.y87{bottom:581.513333pt;}
.y1b7{bottom:586.806667pt;}
.y191{bottom:589.106667pt;}
.y166{bottom:589.146667pt;}
.y212{bottom:593.453333pt;}
.y5c{bottom:596.820000pt;}
.yd2{bottom:596.826667pt;}
.y86{bottom:596.840000pt;}
.y1b6{bottom:602.133333pt;}
.y165{bottom:604.473333pt;}
.y26{bottom:604.480000pt;}
.y211{bottom:607.453333pt;}
.y5b{bottom:612.146667pt;}
.yd1{bottom:612.153333pt;}
.y85{bottom:612.166667pt;}
.y1b5{bottom:617.460000pt;}
.y164{bottom:619.800000pt;}
.y190{bottom:621.453333pt;}
.y24{bottom:626.088000pt;}
.y5a{bottom:627.473333pt;}
.yd0{bottom:627.480000pt;}
.y84{bottom:627.493333pt;}
.y1b4{bottom:632.786667pt;}
.y163{bottom:635.126667pt;}
.y18f{bottom:635.453333pt;}
.y23{bottom:638.760000pt;}
.y59{bottom:642.800000pt;}
.ycf{bottom:642.806667pt;}
.y83{bottom:642.820000pt;}
.y18e{bottom:649.453333pt;}
.y162{bottom:650.476000pt;}
.y52{bottom:650.666667pt;}
.y22{bottom:654.760000pt;}
.y58{bottom:658.126667pt;}
.yce{bottom:658.133333pt;}
.y82{bottom:658.146667pt;}
.y18d{bottom:663.453333pt;}
.y50{bottom:665.333333pt;}
.y161{bottom:665.802667pt;}
.ycd{bottom:673.460000pt;}
.y57{bottom:673.466667pt;}
.y81{bottom:673.473333pt;}
.y18c{bottom:677.453333pt;}
.y160{bottom:681.129333pt;}
.y53{bottom:681.333333pt;}
.y4e{bottom:682.666667pt;}
.y56{bottom:688.793333pt;}
.y80{bottom:688.800000pt;}
.y18b{bottom:691.453333pt;}
.y21{bottom:694.760000pt;}
.y15f{bottom:696.456000pt;}
.y4c{bottom:697.333333pt;}
.y55{bottom:704.126667pt;}
.y18a{bottom:705.453333pt;}
.y20{bottom:716.093333pt;}
.y54{bottom:719.453333pt;}
.y4b{bottom:726.000000pt;}
.y1f{bottom:761.426667pt;}
.y25{bottom:929.333333pt;}
.he{height:12.000000pt;}
.hc{height:13.333333pt;}
.hf{height:14.666667pt;}
.h5{height:36.949333pt;}
.h4{height:40.848000pt;}
.h9{height:41.854167pt;}
.h3{height:43.117333pt;}
.h2{height:43.877333pt;}
.h1d{height:45.386667pt;}
.hd{height:47.109375pt;}
.hb{height:49.925333pt;}
.ha{height:50.805333pt;}
.h1f{height:53.667733pt;}
.h1e{height:53.774400pt;}
.h1a{height:53.881067pt;}
.h17{height:53.934400pt;}
.h1c{height:53.961067pt;}
.h16{height:53.987733pt;}
.h13{height:54.041067pt;}
.h14{height:54.094400pt;}
.h18{height:54.147733pt;}
.h19{height:54.201067pt;}
.h1b{height:54.217067pt;}
.h15{height:54.227733pt;}
.h11{height:54.254400pt;}
.h10{height:54.281067pt;}
.h12{height:54.307733pt;}
.h8{height:54.464000pt;}
.h6{height:72.618667pt;}
.h7{height:78.993067pt;}
.h1{height:790.666667pt;}
.h0{height:793.333333pt;}
.w7{width:150.666667pt;}
.w3{width:168.000000pt;}
.w5{width:204.000000pt;}
.w4{width:209.333333pt;}
.w6{width:213.333333pt;}
.w2{width:218.666667pt;}
.w1{width:564.000000pt;}
.w0{width:566.666667pt;}
.x4{left:-57.333333pt;}
.x0{left:0.000000pt;}
.xe{left:1.333333pt;}
.xa{left:16.359867pt;}
.x6{left:48.000000pt;}
.x9{left:57.333333pt;}
.xb{left:62.666667pt;}
.x1{left:63.733333pt;}
.xc{left:80.027867pt;}
.x2{left:83.737333pt;}
.x8{left:100.000000pt;}
.x10{left:103.733333pt;}
.x7{left:144.013467pt;}
.x5{left:258.440000pt;}
.xd{left:290.666667pt;}
.xf{left:293.333333pt;}
.x3{left:378.906667pt;}
}




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