
    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_936e942be8843c3664cfd013.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_9aac68eb26d9ff71e89ba549.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_1b311adb97873c275049a27a.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7f8ffa3a99546b8956736ca5.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_155dd773d3e88b7f13b9a165.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls55{letter-spacing:-1.774080px;}
.ls5a{letter-spacing:-1.457280px;}
.ls36{letter-spacing:-1.393920px;}
.ls8a{letter-spacing:-1.308240px;}
.ls38{letter-spacing:-1.203840px;}
.ls33{letter-spacing:-1.140480px;}
.ls5c{letter-spacing:-1.073520px;}
.ls35{letter-spacing:-1.013760px;}
.ls31{letter-spacing:-1.010880px;}
.ls16{letter-spacing:-0.972000px;}
.ls48{letter-spacing:-0.950400px;}
.ls89{letter-spacing:-0.910080px;}
.ls9a{letter-spacing:-0.810000px;}
.ls17{letter-spacing:-0.758160px;}
.ls98{letter-spacing:-0.756000px;}
.ls32{letter-spacing:-0.696960px;}
.ls88{letter-spacing:-0.682560px;}
.ls21{letter-spacing:-0.670320px;}
.ls20{letter-spacing:-0.657360px;}
.ls9c{letter-spacing:-0.594000px;}
.ls5b{letter-spacing:-0.570240px;}
.ls8f{letter-spacing:-0.568800px;}
.ls49{letter-spacing:-0.506880px;}
.ls99{letter-spacing:-0.486000px;}
.ls15{letter-spacing:-0.432000px;}
.ls39{letter-spacing:-0.380160px;}
.ls8e{letter-spacing:-0.341280px;}
.ls47{letter-spacing:-0.336960px;}
.ls37{letter-spacing:-0.316800px;}
.ls1e{letter-spacing:-0.298800px;}
.ls8d{letter-spacing:-0.227520px;}
.ls56{letter-spacing:-0.190080px;}
.ls18{letter-spacing:-0.119520px;}
.ls97{letter-spacing:-0.108000px;}
.ls46{letter-spacing:-0.084240px;}
.ls19{letter-spacing:-0.059760px;}
.ls8c{letter-spacing:-0.056880px;}
.ls0{letter-spacing:0.000000px;}
.ls86{letter-spacing:0.028440px;}
.ls7d{letter-spacing:0.056880px;}
.ls1a{letter-spacing:0.059760px;}
.ls26{letter-spacing:0.063360px;}
.ls9b{letter-spacing:0.108000px;}
.ls96{letter-spacing:0.162000px;}
.ls54{letter-spacing:0.190080px;}
.ls91{letter-spacing:0.216000px;}
.ls81{letter-spacing:0.227520px;}
.ls2{letter-spacing:0.239040px;}
.ls1c{letter-spacing:0.298800px;}
.ls3a{letter-spacing:0.316800px;}
.ls8b{letter-spacing:0.341280px;}
.lse{letter-spacing:0.352584px;}
.ls12{letter-spacing:0.358560px;}
.ls4c{letter-spacing:0.380160px;}
.ls1f{letter-spacing:0.418320px;}
.ls1b{letter-spacing:0.478080px;}
.ls80{letter-spacing:0.511920px;}
.ls4{letter-spacing:0.597600px;}
.ls34{letter-spacing:0.696960px;}
.ls3{letter-spacing:0.717120px;}
.ls7f{letter-spacing:0.739440px;}
.ls6{letter-spacing:0.752976px;}
.ls24{letter-spacing:0.760320px;}
.ls22{letter-spacing:0.796320px;}
.ls7{letter-spacing:0.956160px;}
.ls30{letter-spacing:0.966960px;}
.lsd{letter-spacing:1.027872px;}
.ls44{letter-spacing:1.077120px;}
.lsa{letter-spacing:1.129464px;}
.ls5f{letter-spacing:1.178496px;}
.ls1d{letter-spacing:1.314720px;}
.ls94{letter-spacing:1.350000px;}
.ls5{letter-spacing:1.446192px;}
.ls93{letter-spacing:1.495800px;}
.ls64{letter-spacing:1.837440px;}
.ls63{letter-spacing:1.869120px;}
.ls3e{letter-spacing:2.090880px;}
.ls45{letter-spacing:2.141568px;}
.ls95{letter-spacing:2.478600px;}
.ls3f{letter-spacing:2.534400px;}
.ls5e{letter-spacing:3.294720px;}
.ls11{letter-spacing:3.525840px;}
.ls42{letter-spacing:3.991680px;}
.ls66{letter-spacing:4.055040px;}
.lsc{letter-spacing:4.242960px;}
.ls41{letter-spacing:4.314816px;}
.ls14{letter-spacing:4.326624px;}
.ls6e{letter-spacing:4.688640px;}
.ls76{letter-spacing:4.758336px;}
.ls59{letter-spacing:4.828032px;}
.ls57{letter-spacing:6.101568px;}
.ls2c{letter-spacing:6.291648px;}
.ls84{letter-spacing:6.541200px;}
.ls90{letter-spacing:6.588000px;}
.ls60{letter-spacing:6.842880px;}
.ls68{letter-spacing:7.064640px;}
.ls70{letter-spacing:7.603200px;}
.ls6c{letter-spacing:8.997120px;}
.ls7e{letter-spacing:9.385200px;}
.ls82{letter-spacing:9.396576px;}
.ls4b{letter-spacing:10.454400px;}
.ls13{letter-spacing:10.756800px;}
.ls5d{letter-spacing:11.214720px;}
.ls67{letter-spacing:11.303424px;}
.ls85{letter-spacing:12.286080px;}
.ls92{letter-spacing:13.068000px;}
.ls3c{letter-spacing:13.368960px;}
.ls6d{letter-spacing:13.476672px;}
.lsb{letter-spacing:13.625280px;}
.ls87{letter-spacing:13.708080px;}
.ls27{letter-spacing:14.065920px;}
.ls52{letter-spacing:14.167296px;}
.ls4f{letter-spacing:14.731200px;}
.ls50{letter-spacing:14.762880px;}
.ls7b{letter-spacing:15.869520px;}
.ls40{letter-spacing:16.917120px;}
.ls2d{letter-spacing:17.347968px;}
.ls28{letter-spacing:17.677440px;}
.ls2a{letter-spacing:18.374400px;}
.ls72{letter-spacing:18.437760px;}
.ls74{letter-spacing:18.501120px;}
.ls73{letter-spacing:18.532800px;}
.ls6b{letter-spacing:18.722880px;}
.ls2e{letter-spacing:19.134720px;}
.ls10{letter-spacing:19.362240px;}
.ls2f{letter-spacing:19.831680px;}
.ls6a{letter-spacing:20.028096px;}
.ls78{letter-spacing:21.326976px;}
.ls9{letter-spacing:21.573360px;}
.ls69{letter-spacing:21.985920px;}
.ls77{letter-spacing:22.156992px;}
.ls4e{letter-spacing:22.682880px;}
.ls8{letter-spacing:23.007600px;}
.ls2b{letter-spacing:23.512896px;}
.lsf{letter-spacing:23.778504px;}
.ls4a{letter-spacing:24.140160px;}
.ls65{letter-spacing:24.837120px;}
.ls7c{letter-spacing:25.231968px;}
.ls1{letter-spacing:25.876080px;}
.ls3d{letter-spacing:27.751680px;}
.ls53{letter-spacing:28.448640px;}
.ls29{letter-spacing:29.208960px;}
.ls23{letter-spacing:29.272320px;}
.ls3b{letter-spacing:29.905920px;}
.ls25{letter-spacing:30.602880px;}
.ls51{letter-spacing:32.060160px;}
.ls61{letter-spacing:34.379136px;}
.ls71{letter-spacing:36.368640px;}
.ls4d{letter-spacing:37.502784px;}
.ls43{letter-spacing:40.854528px;}
.ls58{letter-spacing:42.584256px;}
.ls75{letter-spacing:49.357440px;}
.ls62{letter-spacing:60.888960px;}
.ls6f{letter-spacing:69.505920px;}
.ls83{letter-spacing:96.548112px;}
.ls79{letter-spacing:846.385920px;}
.ls7a{letter-spacing:1355.052240px;}
.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;}
}
.ws1{word-spacing:-29.052000px;}
.wsa{word-spacing:-25.950960px;}
.ws7d{word-spacing:-23.418720px;}
.ws2{word-spacing:-22.660560px;}
.ws37{word-spacing:-22.407840px;}
.wscb{word-spacing:-18.374400px;}
.ws3b{word-spacing:-18.311040px;}
.ws3f{word-spacing:-17.930880px;}
.ws3a{word-spacing:-17.677440px;}
.ws38{word-spacing:-17.614080px;}
.wsc4{word-spacing:-17.297280px;}
.ws3e{word-spacing:-17.233920px;}
.ws7{word-spacing:-17.210880px;}
.ws8{word-spacing:-17.091360px;}
.wsb1{word-spacing:-17.043840px;}
.ws39{word-spacing:-16.917120px;}
.ws6{word-spacing:-16.673040px;}
.ws7e{word-spacing:-16.663680px;}
.ws5{word-spacing:-16.613280px;}
.ws36{word-spacing:-16.608960px;}
.ws3c{word-spacing:-16.600320px;}
.ws4{word-spacing:-16.553520px;}
.ws3{word-spacing:-16.493760px;}
.ws3d{word-spacing:-16.410240px;}
.ws9{word-spacing:-16.314480px;}
.wsb0{word-spacing:-16.220160px;}
.wsda{word-spacing:-16.153920px;}
.wsdc{word-spacing:-16.040160px;}
.wsd8{word-spacing:-15.869520px;}
.wsd5{word-spacing:-15.812640px;}
.wsd9{word-spacing:-15.755760px;}
.wsdb{word-spacing:-15.471360px;}
.wsdd{word-spacing:-15.243840px;}
.wsf5{word-spacing:-15.228000px;}
.wsd6{word-spacing:-15.130080px;}
.wsf7{word-spacing:-15.012000px;}
.wsf6{word-spacing:-14.526000px;}
.wsd7{word-spacing:-14.504400px;}
.wsf9{word-spacing:-14.418000px;}
.wsf8{word-spacing:-14.202000px;}
.ws7a{word-spacing:-4.688640px;}
.ws51{word-spacing:-3.991680px;}
.ws98{word-spacing:-3.928320px;}
.wsf3{word-spacing:-3.583440px;}
.wsd0{word-spacing:-3.548160px;}
.ws30{word-spacing:-3.525840px;}
.ws59{word-spacing:-3.294720px;}
.ws8c{word-spacing:-3.231360px;}
.wsbc{word-spacing:-2.851200px;}
.ws4f{word-spacing:-2.534400px;}
.wsa7{word-spacing:-2.471040px;}
.ws105{word-spacing:-2.268000px;}
.wsee{word-spacing:-2.161440px;}
.ws2d{word-spacing:-2.091600px;}
.ws5f{word-spacing:-1.837440px;}
.ws7c{word-spacing:-1.774080px;}
.wsff{word-spacing:-1.512000px;}
.wse7{word-spacing:-1.478880px;}
.ws96{word-spacing:-1.077120px;}
.ws40{word-spacing:-0.910080px;}
.wsde{word-spacing:-0.796320px;}
.wse8{word-spacing:-0.739440px;}
.ws19{word-spacing:-0.597600px;}
.wsc3{word-spacing:-0.506880px;}
.wsba{word-spacing:-0.443520px;}
.ws8b{word-spacing:-0.380160px;}
.wse4{word-spacing:-0.341280px;}
.wsd{word-spacing:-0.336960px;}
.ws6f{word-spacing:-0.316800px;}
.ws20{word-spacing:-0.298800px;}
.ws100{word-spacing:-0.108000px;}
.ws86{word-spacing:-0.063360px;}
.wse6{word-spacing:-0.056880px;}
.ws0{word-spacing:0.000000px;}
.ws18{word-spacing:0.059760px;}
.wsfc{word-spacing:0.108000px;}
.wsf{word-spacing:0.119520px;}
.wsa6{word-spacing:0.190080px;}
.wse1{word-spacing:0.227520px;}
.ws2c{word-spacing:0.298800px;}
.ws61{word-spacing:0.316800px;}
.ws93{word-spacing:0.336960px;}
.ws73{word-spacing:0.380160px;}
.wsf1{word-spacing:0.398160px;}
.ws91{word-spacing:0.421200px;}
.ws102{word-spacing:0.486000px;}
.wsa2{word-spacing:0.506880px;}
.wsb{word-spacing:0.540000px;}
.wsbb{word-spacing:0.562320px;}
.wsb9{word-spacing:0.570240px;}
.ws104{word-spacing:0.594000px;}
.wsc2{word-spacing:0.633600px;}
.ws34{word-spacing:0.657360px;}
.ws92{word-spacing:0.673920px;}
.wse0{word-spacing:0.682560px;}
.ws45{word-spacing:0.696960px;}
.wsf4{word-spacing:0.739440px;}
.wsc{word-spacing:0.758160px;}
.ws23{word-spacing:0.776880px;}
.ws103{word-spacing:0.810000px;}
.wse3{word-spacing:0.910080px;}
.wsa0{word-spacing:0.950400px;}
.ws55{word-spacing:1.013760px;}
.ws76{word-spacing:1.077120px;}
.ws46{word-spacing:1.140480px;}
.ws69{word-spacing:1.203840px;}
.ws101{word-spacing:1.350000px;}
.ws57{word-spacing:1.393920px;}
.wsdf{word-spacing:1.422000px;}
.wsb8{word-spacing:1.457280px;}
.ws22{word-spacing:1.494000px;}
.ws9b{word-spacing:1.647360px;}
.ws4a{word-spacing:1.774080px;}
.ws9a{word-spacing:1.837440px;}
.wsd1{word-spacing:2.154240px;}
.wse9{word-spacing:2.161440px;}
.ws31{word-spacing:2.211120px;}
.ws27{word-spacing:2.390400px;}
.ws85{word-spacing:2.471040px;}
.ws47{word-spacing:2.534400px;}
.ws15{word-spacing:2.988000px;}
.ws66{word-spacing:3.231360px;}
.ws106{word-spacing:3.510000px;}
.ws14{word-spacing:3.705120px;}
.ws84{word-spacing:3.928320px;}
.ws71{word-spacing:3.991680px;}
.ws107{word-spacing:4.212000px;}
.ws1f{word-spacing:4.422240px;}
.ws8a{word-spacing:4.625280px;}
.ws8e{word-spacing:4.688640px;}
.wsa4{word-spacing:5.005440px;}
.ws1b{word-spacing:5.139360px;}
.ws9f{word-spacing:5.385600px;}
.wsb5{word-spacing:5.829120px;}
.ws35{word-spacing:5.856480px;}
.wsb6{word-spacing:6.082560px;}
.ws41{word-spacing:6.145920px;}
.wsb4{word-spacing:6.336000px;}
.wsfb{word-spacing:6.372000px;}
.wsfa{word-spacing:6.426000px;}
.wsed{word-spacing:6.484320px;}
.ws4c{word-spacing:6.842880px;}
.ws89{word-spacing:7.223040px;}
.ws88{word-spacing:7.539840px;}
.ws44{word-spacing:7.603200px;}
.wsa3{word-spacing:8.300160px;}
.ws32{word-spacing:8.724960px;}
.ws82{word-spacing:8.997120px;}
.wsd4{word-spacing:9.060480px;}
.wseb{word-spacing:9.328320px;}
.wsbd{word-spacing:9.694080px;}
.ws75{word-spacing:9.757440px;}
.ws29{word-spacing:10.159200px;}
.ws2a{word-spacing:10.338480px;}
.ws60{word-spacing:10.391040px;}
.ws81{word-spacing:10.454400px;}
.ws21{word-spacing:10.876320px;}
.ws49{word-spacing:11.151360px;}
.ws2e{word-spacing:11.593440px;}
.ws50{word-spacing:11.848320px;}
.ws6b{word-spacing:11.911680px;}
.wsf0{word-spacing:12.229200px;}
.ws13{word-spacing:12.310560px;}
.wsae{word-spacing:12.545280px;}
.ws80{word-spacing:12.608640px;}
.ws25{word-spacing:13.027680px;}
.ws56{word-spacing:13.052160px;}
.ws53{word-spacing:13.305600px;}
.wsfd{word-spacing:13.554000px;}
.ws52{word-spacing:13.622400px;}
.wsf2{word-spacing:13.651200px;}
.ws24{word-spacing:13.744800px;}
.ws5b{word-spacing:14.002560px;}
.ws58{word-spacing:14.065920px;}
.ws26{word-spacing:14.461920px;}
.wsfe{word-spacing:14.526000px;}
.ws5c{word-spacing:14.762880px;}
.ws33{word-spacing:15.179040px;}
.ws72{word-spacing:15.523200px;}
.wsd3{word-spacing:15.840000px;}
.ws42{word-spacing:16.220160px;}
.wse2{word-spacing:16.552080px;}
.ws16{word-spacing:16.613280px;}
.ws87{word-spacing:16.917120px;}
.ws5e{word-spacing:17.614080px;}
.ws65{word-spacing:17.677440px;}
.ws68{word-spacing:18.374400px;}
.ws11{word-spacing:18.824400px;}
.ws67{word-spacing:19.071360px;}
.wsea{word-spacing:19.396080px;}
.ws2b{word-spacing:19.541520px;}
.ws7b{word-spacing:19.768320px;}
.ws9c{word-spacing:19.831680px;}
.ws10{word-spacing:20.258640px;}
.ws5d{word-spacing:20.465280px;}
.ws6d{word-spacing:20.528640px;}
.ws95{word-spacing:21.225600px;}
.ws1d{word-spacing:21.692880px;}
.wsb3{word-spacing:21.922560px;}
.ws4d{word-spacing:21.985920px;}
.ws1c{word-spacing:22.410000px;}
.ws4e{word-spacing:22.682880px;}
.ws1e{word-spacing:23.127120px;}
.ws74{word-spacing:23.443200px;}
.ws5a{word-spacing:24.076800px;}
.ws70{word-spacing:24.140160px;}
.wsec{word-spacing:24.458400px;}
.ws9d{word-spacing:24.837120px;}
.wse5{word-spacing:25.197840px;}
.ws8d{word-spacing:25.597440px;}
.wse{word-spacing:25.995600px;}
.ws94{word-spacing:26.231040px;}
.wsc1{word-spacing:26.294400px;}
.ws17{word-spacing:26.712720px;}
.ws6c{word-spacing:26.991360px;}
.wsbe{word-spacing:27.751680px;}
.wsb2{word-spacing:28.385280px;}
.ws43{word-spacing:28.448640px;}
.ws7f{word-spacing:29.145600px;}
.ws48{word-spacing:29.905920px;}
.ws64{word-spacing:30.602880px;}
.wsac{word-spacing:31.299840px;}
.ws54{word-spacing:31.363200px;}
.ws12{word-spacing:31.732560px;}
.ws83{word-spacing:32.060160px;}
.wsa1{word-spacing:32.757120px;}
.ws2f{word-spacing:33.226560px;}
.wsa5{word-spacing:33.454080px;}
.wsc8{word-spacing:33.517440px;}
.wsa9{word-spacing:34.151040px;}
.wsad{word-spacing:34.214400px;}
.wsc5{word-spacing:34.911360px;}
.ws28{word-spacing:35.377920px;}
.ws1a{word-spacing:36.095040px;}
.ws6e{word-spacing:37.065600px;}
.wsbf{word-spacing:37.762560px;}
.ws9e{word-spacing:37.825920px;}
.ws90{word-spacing:38.522880px;}
.wsc0{word-spacing:39.219840px;}
.ws6a{word-spacing:39.283200px;}
.wsaf{word-spacing:39.916800px;}
.wsd2{word-spacing:39.980160px;}
.ws97{word-spacing:41.437440px;}
.ws99{word-spacing:42.134400px;}
.wsb7{word-spacing:42.831360px;}
.wsc9{word-spacing:43.528320px;}
.ws78{word-spacing:43.591680px;}
.ws62{word-spacing:44.225280px;}
.ws77{word-spacing:46.442880px;}
.wsab{word-spacing:47.139840px;}
.ws8f{word-spacing:47.203200px;}
.wsaa{word-spacing:47.900160px;}
.wscf{word-spacing:50.054400px;}
.ws63{word-spacing:50.751360px;}
.ws79{word-spacing:52.145280px;}
.wsca{word-spacing:53.602560px;}
.wsc6{word-spacing:57.911040px;}
.ws4b{word-spacing:59.368320px;}
.wsce{word-spacing:60.128640px;}
.wsc7{word-spacing:61.585920px;}
.wscd{word-spacing:70.202880px;}
.wscc{word-spacing:70.899840px;}
.wsa8{word-spacing:76.665600px;}
.wsef{word-spacing:96.468480px;}
._13{margin-left:-30.539520px;}
._21{margin-left:-13.412880px;}
._18{margin-left:-5.928480px;}
._11{margin-left:-4.128480px;}
._a{margin-left:-2.483352px;}
._1{margin-left:-1.447200px;}
._2{width:1.166400px;}
._6{width:2.713680px;}
._4{width:3.830040px;}
._14{width:5.141160px;}
._7{width:6.243840px;}
._1c{width:7.476480px;}
._e{width:8.838000px;}
._d{width:10.002240px;}
._b{width:11.651112px;}
._8{width:12.815280px;}
._9{width:14.326128px;}
._17{width:16.384320px;}
._1b{width:18.681120px;}
._c{width:20.048400px;}
._15{width:21.532320px;}
._12{width:23.280480px;}
._16{width:24.900480px;}
._3{width:26.378640px;}
._5{width:31.728240px;}
._1a{width:33.544800px;}
._19{width:48.899520px;}
._1f{width:52.758720px;}
._1d{width:57.104640px;}
._1e{width:61.778232px;}
._20{width:96.639120px;}
._0{width:351.014400px;}
._f{width:840.546720px;}
._22{width:848.524320px;}
._23{width:940.507200px;}
._10{width:1371.604320px;}
.fc4{color:rgb(59,56,56);}
.fc2{color:transparent;}
.fc3{color:rgb(51,51,51);}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fsc{font-size:51.120000px;}
.fsd{font-size:54.000000px;}
.fs6{font-size:56.880000px;}
.fsa{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:63.360000px;}
.fs9{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fsb{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y60{bottom:16.560000px;}
.y62{bottom:18.900000px;}
.y23{bottom:49.860000px;}
.y266{bottom:50.402880px;}
.y5{bottom:66.525004px;}
.y283{bottom:82.471500px;}
.y1a9{bottom:87.660000px;}
.ybe{bottom:89.716320px;}
.y118{bottom:94.694400px;}
.yec{bottom:95.171040px;}
.y4{bottom:97.125005px;}
.y1a8{bottom:101.350080px;}
.y1fb{bottom:108.650880px;}
.y282{bottom:108.756000px;}
.y1eb{bottom:111.101760px;}
.y1c0{bottom:111.106080px;}
.y90{bottom:112.193280px;}
.ybd{bottom:112.209120px;}
.y117{bottom:117.187200px;}
.yeb{bottom:117.663840px;}
.y281{bottom:126.036000px;}
.y17b{bottom:127.260000px;}
.y1fa{bottom:131.143680px;}
.y1bf{bottom:133.598880px;}
.y1ea{bottom:133.958880px;}
.y8f{bottom:134.511840px;}
.ybc{bottom:134.701920px;}
.y21{bottom:139.264499px;}
.y116{bottom:139.680000px;}
.yea{bottom:140.156640px;}
.y280{bottom:143.140500px;}
.y17a{bottom:149.780160px;}
.y1f9{bottom:153.636480px;}
.y226{bottom:153.921600px;}
.y1be{bottom:156.091680px;}
.y1e9{bottom:156.816000px;}
.y8e{bottom:156.830400px;}
.ybb{bottom:157.194720px;}
.y27f{bottom:160.420500px;}
.y115{bottom:162.180000px;}
.ye9{bottom:162.649440px;}
.y1f8{bottom:176.129280px;}
.y225{bottom:176.414400px;}
.y1bd{bottom:178.584480px;}
.y8d{bottom:178.974720px;}
.y1e8{bottom:179.498880px;}
.yba{bottom:179.687520px;}
.y14d{bottom:183.352320px;}
.y114{bottom:184.680000px;}
.ye8{bottom:185.142240px;}
.y27e{bottom:186.705000px;}
.y18{bottom:196.933500px;}
.y1f7{bottom:198.622080px;}
.y224{bottom:198.907200px;}
.y1bc{bottom:201.077280px;}
.y8c{bottom:201.293280px;}
.y1e7{bottom:202.356000px;}
.y14c{bottom:206.209440px;}
.y113{bottom:207.180000px;}
.ye7{bottom:207.635040px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.yb9{bottom:211.193280px;}
.y27d{bottom:212.989500px;}
.y223{bottom:221.400000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1bb{bottom:223.570080px;}
.y8b{bottom:223.611840px;}
.y1e6{bottom:225.213120px;}
.y14b{bottom:229.066560px;}
.y112{bottom:229.680000px;}
.ye6{bottom:230.127840px;}
.y27c{bottom:230.269500px;}
.yb8{bottom:233.686080px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y222{bottom:243.892800px;}
.y8a{bottom:245.930400px;}
.y1ba{bottom:246.062880px;}
.y1e5{bottom:247.896000px;}
.y5e{bottom:251.280000px;}
.y14a{bottom:251.749440px;}
.y27b{bottom:252.045000px;}
.y111{bottom:252.180000px;}
.ye5{bottom:252.620640px;}
.yb7{bottom:256.004640px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y221{bottom:266.385600px;}
.y89{bottom:268.074720px;}
.y1e4{bottom:270.753120px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y42{bottom:273.873600px;}
.y149{bottom:274.606560px;}
.y110{bottom:274.680000px;}
.y5d{bottom:274.680360px;}
.ye4{bottom:275.113440px;}
.y27a{bottom:276.520500px;}
.y1b9{bottom:277.568640px;}
.yb6{bottom:278.323200px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y220{bottom:288.878400px;}
.y88{bottom:290.393280px;}
.y41{bottom:293.489820px;}
.y1e3{bottom:293.610240px;}
.y5c{bottom:294.296580px;}
.y279{bottom:294.516000px;}
.y10f{bottom:297.216000px;}
.y148{bottom:297.463680px;}
.ye3{bottom:297.606240px;}
.y1b8{bottom:299.887200px;}
.yb5{bottom:300.641760px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y21f{bottom:311.371200px;}
.y278{bottom:312.511500px;}
.y87{bottom:312.711840px;}
.y40{bottom:313.106040px;}
.y5b{bottom:313.733520px;}
.y1e2{bottom:316.293120px;}
.y10e{bottom:319.708800px;}
.ye2{bottom:320.099040px;}
.y147{bottom:320.146560px;}
.y1b7{bottom:322.205760px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.yb4{bottom:322.960320px;}
.y3f{bottom:332.722260px;}
.y5a{bottom:333.170460px;}
.y86{bottom:335.030400px;}
.y1e1{bottom:339.150240px;}
.y277{bottom:339.511500px;}
.y10d{bottom:342.201600px;}
.y123{bottom:342.591840px;}
.y21e{bottom:342.876960px;}
.y146{bottom:343.003680px;}
.y1b6{bottom:344.524320px;}
.yb3{bottom:345.278880px;}
.y264{bottom:345.737160px;}
.yf{bottom:348.133500px;}
.ye1{bottom:351.604800px;}
.y3e{bottom:352.517760px;}
.y59{bottom:352.786680px;}
.y85{bottom:357.174720px;}
.y1e0{bottom:362.007360px;}
.y263{bottom:363.739680px;}
.y10c{bottom:364.694400px;}
.y122{bottom:365.084640px;}
.y21d{bottom:365.369760px;}
.y145{bottom:365.860800px;}
.y1b5{bottom:366.842880px;}
.yb2{bottom:367.771680px;}
.y3d{bottom:372.133980px;}
.y58{bottom:372.223620px;}
.ye0{bottom:374.097600px;}
.y276{bottom:375.516000px;}
.y84{bottom:379.493280px;}
.y1df{bottom:384.690240px;}
.ye{bottom:386.785499px;}
.y10b{bottom:387.187200px;}
.y121{bottom:387.577440px;}
.y21c{bottom:387.862560px;}
.y144{bottom:388.543680px;}
.y1b4{bottom:389.335680px;}
.yb1{bottom:390.090240px;}
.y262{bottom:390.743460px;}
.y57{bottom:391.660560px;}
.y3c{bottom:391.750200px;}
.y275{bottom:393.511500px;}
.ydf{bottom:396.590400px;}
.y83{bottom:401.811840px;}
.y1de{bottom:407.547360px;}
.yd{bottom:408.044999px;}
.y261{bottom:408.745980px;}
.y10a{bottom:409.680000px;}
.y120{bottom:410.070240px;}
.y21b{bottom:410.355360px;}
.y56{bottom:411.276780px;}
.y3b{bottom:411.366420px;}
.y143{bottom:411.400800px;}
.y274{bottom:411.507000px;}
.y1b3{bottom:411.654240px;}
.yb0{bottom:412.408800px;}
.yde{bottom:419.083200px;}
.y82{bottom:424.130400px;}
.y1dd{bottom:430.404480px;}
.y55{bottom:430.713720px;}
.y3a{bottom:430.982640px;}
.y11f{bottom:432.563040px;}
.y21a{bottom:432.848160px;}
.y1b2{bottom:433.972800px;}
.y142{bottom:434.257920px;}
.yaf{bottom:434.727360px;}
.y260{bottom:435.749760px;}
.y109{bottom:441.159840px;}
.ydd{bottom:441.576000px;}
.y81{bottom:446.274720px;}
.y273{bottom:447.511500px;}
.y54{bottom:450.150660px;}
.y39{bottom:450.598860px;}
.y1dc{bottom:453.087360px;}
.y25f{bottom:453.752280px;}
.y11e{bottom:455.055840px;}
.y219{bottom:455.340960px;}
.y1b1{bottom:456.291360px;}
.y141{bottom:456.940800px;}
.yae{bottom:457.045920px;}
.y108{bottom:463.652640px;}
.ydc{bottom:464.068800px;}
.y272{bottom:464.967000px;}
.y80{bottom:468.593280px;}
.y53{bottom:469.766880px;}
.y38{bottom:470.394360px;}
.y1db{bottom:475.944480px;}
.y11d{bottom:477.548640px;}
.y218{bottom:477.833760px;}
.y1b0{bottom:478.609920px;}
.yad{bottom:479.364480px;}
.y140{bottom:479.797920px;}
.y25e{bottom:480.756060px;}
.y271{bottom:481.882500px;}
.y107{bottom:486.335520px;}
.ydb{bottom:486.561600px;}
.y52{bottom:489.203820px;}
.y37{bottom:490.010580px;}
.y7f{bottom:490.911840px;}
.y25d{bottom:498.758580px;}
.y1da{bottom:498.801600px;}
.y11c{bottom:500.041440px;}
.y217{bottom:500.326560px;}
.y1af{bottom:500.928480px;}
.yac{bottom:501.857280px;}
.y13f{bottom:502.655040px;}
.yc{bottom:502.864502px;}
.y51{bottom:508.640760px;}
.y106{bottom:509.018400px;}
.yda{bottom:509.054400px;}
.y36{bottom:509.626800px;}
.y7e{bottom:513.230400px;}
.y25c{bottom:516.761100px;}
.yb{bottom:520.864502px;}
.y11b{bottom:522.534240px;}
.y216{bottom:522.819360px;}
.y1ae{bottom:523.421280px;}
.yab{bottom:524.175840px;}
.y13e{bottom:525.337920px;}
.y50{bottom:528.256980px;}
.y35{bottom:529.243020px;}
.y1d9{bottom:530.481600px;}
.yd9{bottom:531.547200px;}
.y105{bottom:531.701280px;}
.y7d{bottom:535.374720px;}
.ya{bottom:538.864499px;}
.y25b{bottom:543.764880px;}
.y11a{bottom:545.027040px;}
.y215{bottom:545.312160px;}
.y1ad{bottom:545.739840px;}
.yaa{bottom:546.494400px;}
.y4f{bottom:547.693920px;}
.y13d{bottom:548.195040px;}
.y34{bottom:548.859240px;}
.y1d8{bottom:552.974400px;}
.yd8{bottom:554.040000px;}
.y104{bottom:554.384160px;}
.y9{bottom:556.864499px;}
.y7c{bottom:557.693280px;}
.y25a{bottom:561.767400px;}
.y4e{bottom:567.130860px;}
.y119{bottom:567.519840px;}
.y214{bottom:567.804960px;}
.y1ac{bottom:568.058400px;}
.y33{bottom:568.475460px;}
.ya9{bottom:568.812960px;}
.y13c{bottom:571.052160px;}
.y1d7{bottom:575.467200px;}
.yd7{bottom:576.532800px;}
.y103{bottom:577.067040px;}
.y259{bottom:579.769920px;}
.y7b{bottom:580.011840px;}
.y4d{bottom:586.747080px;}
.y32{bottom:588.270960px;}
.y1f6{bottom:590.012640px;}
.y213{bottom:590.297760px;}
.y1ab{bottom:590.376960px;}
.ya8{bottom:591.131520px;}
.y13b{bottom:593.735040px;}
.y179{bottom:594.377280px;}
.y1d6{bottom:597.960000px;}
.yd6{bottom:599.025600px;}
.y102{bottom:599.559840px;}
.y4c{bottom:606.184020px;}
.y258{bottom:606.773700px;}
.y31{bottom:607.887180px;}
.y7a{bottom:611.327520px;}
.y1a7{bottom:612.190080px;}
.y1f5{bottom:612.505440px;}
.y178{bottom:612.561600px;}
.y1aa{bottom:612.695520px;}
.y212{bottom:612.790560px;}
.ya7{bottom:613.450080px;}
.y13a{bottom:616.592160px;}
.yd5{bottom:621.518400px;}
.y101{bottom:622.242720px;}
.y257{bottom:624.776220px;}
.y4b{bottom:625.620960px;}
.y30{bottom:627.503400px;}
.y1a6{bottom:630.184320px;}
.y1d5{bottom:630.540000px;}
.y79{bottom:633.646080px;}
.y1f4{bottom:634.998240px;}
.y211{bottom:635.283360px;}
.ya6{bottom:635.942880px;}
.y139{bottom:639.449280px;}
.yd4{bottom:644.011200px;}
.y100{bottom:644.925600px;}
.y4a{bottom:645.237180px;}
.y8{bottom:645.510000px;}
.y2f{bottom:647.119620px;}
.y162{bottom:648.660960px;}
.y177{bottom:649.643040px;}
.y256{bottom:651.773700px;}
.y78{bottom:655.964640px;}
.y1f3{bottom:657.491040px;}
.y210{bottom:657.776160px;}
.ya5{bottom:658.261440px;}
.y138{bottom:662.132160px;}
.y1a5{bottom:663.305760px;}
.y49{bottom:664.674120px;}
.y190{bottom:665.127360px;}
.yd3{bottom:666.504000px;}
.y2e{bottom:666.735840px;}
.y7{bottom:666.771000px;}
.yff{bottom:667.608480px;}
.y255{bottom:669.776220px;}
.y161{bottom:670.805280px;}
.y176{bottom:672.690240px;}
.y1d4{bottom:674.709120px;}
.y77{bottom:678.283200px;}
.y1f2{bottom:679.983840px;}
.y20f{bottom:680.268960px;}
.ya4{bottom:680.580000px;}
.y48{bottom:684.111060px;}
.y137{bottom:684.989280px;}
.y1a4{bottom:685.988640px;}
.y2d{bottom:686.352060px;}
.y18f{bottom:687.810240px;}
.yd2{bottom:688.996800px;}
.yfe{bottom:690.291360px;}
.y160{bottom:692.949600px;}
.y175{bottom:695.737440px;}
.y254{bottom:696.780000px;}
.y1d3{bottom:697.566240px;}
.y76{bottom:700.601760px;}
.y1f1{bottom:702.476640px;}
.y20e{bottom:702.761760px;}
.ya3{bottom:702.898560px;}
.y47{bottom:703.727280px;}
.y2c{bottom:706.147560px;}
.y136{bottom:707.846400px;}
.y1a3{bottom:708.481440px;}
.y18e{bottom:710.303040px;}
.yd1{bottom:711.489600px;}
.yfd{bottom:712.974240px;}
.y253{bottom:714.732840px;}
.y15f{bottom:715.093920px;}
.y174{bottom:718.958880px;}
.y1d2{bottom:720.423360px;}
.y75{bottom:723.094560px;}
.y46{bottom:723.164220px;}
.y1f0{bottom:724.969440px;}
.ya2{bottom:725.217120px;}
.y20d{bottom:725.254560px;}
.y2b{bottom:725.763780px;}
.y6{bottom:726.298500px;}
.y1a2{bottom:731.164320px;}
.y252{bottom:732.735360px;}
.yd0{bottom:733.982400px;}
.yfc{bottom:735.467040px;}
.y15e{bottom:737.238240px;}
.y135{bottom:739.700640px;}
.y173{bottom:742.006080px;}
.y18d{bottom:742.157280px;}
.y45{bottom:742.601160px;}
.y1d1{bottom:743.106240px;}
.y2a{bottom:745.380000px;}
.y74{bottom:745.413120px;}
.y1ef{bottom:747.462240px;}
.y20c{bottom:747.747360px;}
.y3{bottom:752.599495px;}
.y1a1{bottom:753.847200px;}
.ycf{bottom:756.475200px;}
.ya1{bottom:756.532800px;}
.yfb{bottom:758.149920px;}
.y15d{bottom:759.382560px;}
.y251{bottom:759.739140px;}
.y134{bottom:761.844960px;}
.y44{bottom:762.217380px;}
.y18c{bottom:764.111520px;}
.y172{bottom:765.053280px;}
.y1d0{bottom:765.963360px;}
.y73{bottom:767.731680px;}
.y1ee{bottom:769.955040px;}
.y29{bottom:775.440000px;}
.y1a0{bottom:776.530080px;}
.y250{bottom:777.741660px;}
.yce{bottom:778.968000px;}
.ya0{bottom:779.025600px;}
.y20b{bottom:779.253120px;}
.yfa{bottom:780.832800px;}
.y15c{bottom:781.526880px;}
.y43{bottom:781.654320px;}
.y133{bottom:783.989280px;}
.y18b{bottom:786.255840px;}
.y171{bottom:788.274720px;}
.y1cf{bottom:788.820480px;}
.y72{bottom:790.050240px;}
.y1ed{bottom:792.447840px;}
.y24f{bottom:795.744180px;}
.y19f{bottom:799.212960px;}
.ycd{bottom:801.460800px;}
.y9f{bottom:801.518400px;}
.y20a{bottom:801.745920px;}
.yf9{bottom:803.515680px;}
.y15b{bottom:803.671200px;}
.y132{bottom:806.307840px;}
.y18a{bottom:808.210080px;}
.y170{bottom:811.321920px;}
.y1ce{bottom:811.503360px;}
.y71{bottom:812.368800px;}
.y1ec{bottom:814.940640px;}
.y241{bottom:817.217280px;}
.y28{bottom:819.360000px;}
.y19e{bottom:821.895840px;}
.y24e{bottom:822.747960px;}
.ycc{bottom:823.953600px;}
.y9e{bottom:824.011200px;}
.y209{bottom:824.238720px;}
.y15a{bottom:825.815520px;}
.yf8{bottom:826.198560px;}
.y131{bottom:828.452160px;}
.y189{bottom:830.354400px;}
.y1cd{bottom:834.360480px;}
.y16f{bottom:834.369120px;}
.y70{bottom:834.687360px;}
.y27{bottom:839.340000px;}
.y233{bottom:840.106080px;}
.y240{bottom:840.612960px;}
.y24d{bottom:840.750480px;}
.y19d{bottom:844.388640px;}
.ycb{bottom:846.446400px;}
.y9d{bottom:846.504000px;}
.y208{bottom:846.731520px;}
.y159{bottom:847.959840px;}
.yf7{bottom:848.881440px;}
.y130{bottom:850.596480px;}
.y188{bottom:852.308640px;}
.y6f{bottom:857.180160px;}
.y1cc{bottom:857.217600px;}
.y16e{bottom:857.590560px;}
.y232{bottom:862.060320px;}
.y23f{bottom:863.470080px;}
.y19c{bottom:867.071520px;}
.y24c{bottom:867.754260px;}
.yca{bottom:868.939200px;}
.y9c{bottom:868.996800px;}
.y207{bottom:869.224320px;}
.y158{bottom:869.914080px;}
.yf6{bottom:871.374240px;}
.y12f{bottom:872.915040px;}
.y187{bottom:874.452960px;}
.y270{bottom:877.338000px;}
.y2{bottom:879.369000px;}
.y6e{bottom:879.498720px;}
.y1cb{bottom:879.900480px;}
.y16d{bottom:880.637760px;}
.y231{bottom:884.014560px;}
.y24b{bottom:885.756780px;}
.y23e{bottom:886.517280px;}
.y19b{bottom:889.754400px;}
.yc9{bottom:891.432000px;}
.y9b{bottom:891.489600px;}
.y206{bottom:891.717120px;}
.y157{bottom:892.058400px;}
.yf5{bottom:894.057120px;}
.y12e{bottom:895.059360px;}
.y26f{bottom:895.333500px;}
.y186{bottom:896.407200px;}
.y6d{bottom:901.817280px;}
.y1ca{bottom:902.757600px;}
.y16c{bottom:903.684960px;}
.y24a{bottom:903.759300px;}
.y230{bottom:905.794560px;}
.y23d{bottom:909.374400px;}
.y19a{bottom:912.437280px;}
.yc8{bottom:913.924800px;}
.y9a{bottom:913.982400px;}
.y156{bottom:914.202720px;}
.y205{bottom:914.209920px;}
.yf4{bottom:916.740000px;}
.y12d{bottom:917.203680px;}
.y185{bottom:918.551520px;}
.y6c{bottom:924.135840px;}
.y1c9{bottom:925.614720px;}
.y16b{bottom:926.906400px;}
.y22f{bottom:927.748800px;}
.y249{bottom:930.763080px;}
.y23c{bottom:932.421600px;}
.y199{bottom:935.120160px;}
.y155{bottom:936.347040px;}
.yc7{bottom:936.417600px;}
.y99{bottom:936.475200px;}
.y204{bottom:936.702720px;}
.y12c{bottom:939.522240px;}
.y184{bottom:940.505760px;}
.y6b{bottom:946.454400px;}
.y1c8{bottom:948.297600px;}
.y248{bottom:948.765600px;}
.yf3{bottom:949.502160px;}
.y22e{bottom:949.703040px;}
.y16a{bottom:949.953600px;}
.y26{bottom:955.080000px;}
.y23b{bottom:955.278720px;}
.y198{bottom:957.803040px;}
.y154{bottom:958.491360px;}
.yc6{bottom:958.910400px;}
.y98{bottom:958.968000px;}
.y203{bottom:959.195520px;}
.y12b{bottom:961.666560px;}
.y183{bottom:962.650080px;}
.y1{bottom:966.726000px;}
.y247{bottom:966.768120px;}
.y6a{bottom:968.772960px;}
.y1c7{bottom:971.154720px;}
.y22d{bottom:971.483040px;}
.y169{bottom:973.000800px;}
.y26e{bottom:976.158000px;}
.yf2{bottom:976.501080px;}
.y23a{bottom:978.325920px;}
.y197{bottom:980.295840px;}
.y153{bottom:980.635680px;}
.yc5{bottom:981.403200px;}
.y97{bottom:981.460800px;}
.y202{bottom:981.688320px;}
.y12a{bottom:983.810880px;}
.y182{bottom:984.604320px;}
.y25{bottom:986.049000px;}
.y69{bottom:991.265760px;}
.y22c{bottom:993.437280px;}
.y246{bottom:993.771900px;}
.y1c6{bottom:994.011840px;}
.y26d{bottom:994.153500px;}
.y168{bottom:996.222240px;}
.y239{bottom:1001.183040px;}
.y152{bottom:1002.780000px;}
.y196{bottom:1002.978720px;}
.yf1{bottom:1003.500000px;}
.yc4{bottom:1003.896000px;}
.y96{bottom:1003.953600px;}
.y201{bottom:1004.181120px;}
.y129{bottom:1006.129440px;}
.y181{bottom:1006.748640px;}
.y26c{bottom:1012.149000px;}
.y68{bottom:1013.584320px;}
.y22b{bottom:1015.391520px;}
.y1c5{bottom:1016.694720px;}
.y24{bottom:1017.180000px;}
.y245{bottom:1020.775680px;}
.y238{bottom:1024.230240px;}
.y195{bottom:1025.661600px;}
.yc3{bottom:1026.388800px;}
.y95{bottom:1026.446400px;}
.y200{bottom:1026.673920px;}
.y167{bottom:1028.266560px;}
.y128{bottom:1028.273760px;}
.y180{bottom:1028.702880px;}
.y26b{bottom:1030.509000px;}
.y151{bottom:1035.000900px;}
.y67{bottom:1035.902880px;}
.y22a{bottom:1037.171520px;}
.y244{bottom:1038.778200px;}
.y1c4{bottom:1039.551840px;}
.y237{bottom:1047.087360px;}
.y194{bottom:1048.344480px;}
.yc2{bottom:1048.881600px;}
.y94{bottom:1048.939200px;}
.y1ff{bottom:1049.166720px;}
.yf0{bottom:1049.198400px;}
.y166{bottom:1050.410880px;}
.y127{bottom:1050.418080px;}
.y17f{bottom:1050.847200px;}
.y66{bottom:1058.221440px;}
.y229{bottom:1059.125760px;}
.y150{bottom:1061.283780px;}
.y1c3{bottom:1062.408960px;}
.y243{bottom:1065.781980px;}
.y26a{bottom:1066.149000px;}
.y236{bottom:1070.134560px;}
.y193{bottom:1071.027360px;}
.yc1{bottom:1071.374400px;}
.y93{bottom:1071.432000px;}
.y1fe{bottom:1071.659520px;}
.yef{bottom:1071.691200px;}
.y165{bottom:1072.365120px;}
.y126{bottom:1072.736640px;}
.y17e{bottom:1072.801440px;}
.y61{bottom:1078.920000px;}
.y65{bottom:1080.540000px;}
.y228{bottom:1081.080000px;}
.y5f{bottom:1082.880000px;}
.y242{bottom:1084.140000px;}
.y269{bottom:1084.144500px;}
.y14f{bottom:1087.566660px;}
.y235{bottom:1092.991680px;}
.y192{bottom:1093.710240px;}
.yc0{bottom:1093.867200px;}
.y92{bottom:1093.924800px;}
.y1c2{bottom:1094.088960px;}
.y1fd{bottom:1094.152320px;}
.yee{bottom:1094.184000px;}
.y164{bottom:1094.509440px;}
.y125{bottom:1094.880960px;}
.y17d{bottom:1094.945760px;}
.y268{bottom:1102.140000px;}
.y227{bottom:1112.940000px;}
.y64{bottom:1113.120000px;}
.y14e{bottom:1113.660000px;}
.y234{bottom:1116.038880px;}
.y191{bottom:1116.203040px;}
.ybf{bottom:1116.360000px;}
.y91{bottom:1116.417600px;}
.y1c1{bottom:1116.581760px;}
.y1fc{bottom:1116.645120px;}
.y163{bottom:1116.653760px;}
.yed{bottom:1116.676800px;}
.y17c{bottom:1116.900000px;}
.y124{bottom:1117.025280px;}
.y267{bottom:1120.500000px;}
.y265{bottom:1184.040000px;}
.y63{bottom:1185.120000px;}
.y22{bottom:1193.040000px;}
.h7{height:32.130000px;}
.h1a{height:35.991211px;}
.h14{height:37.266680px;}
.h10{height:38.700000px;}
.h1b{height:39.313477px;}
.h19{height:39.366211px;}
.ha{height:41.465742px;}
.h12{height:41.940000px;}
.hf{height:43.565273px;}
.h6{height:45.900000px;}
.h1c{height:46.063688px;}
.h13{height:46.127812px;}
.h9{height:46.189687px;}
.h17{height:46.214888px;}
.h18{height:46.361048px;}
.h16{height:46.378328px;}
.h3{height:48.195000px;}
.hd{height:48.289219px;}
.h2{height:55.080000px;}
.h15{height:61.259903px;}
.he{height:61.329023px;}
.hc{height:61.411289px;}
.h11{height:69.715898px;}
.h5{height:78.030000px;}
.hb{height:78.626953px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:307.080000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:15.120000px;}
.x9{left:68.040000px;}
.x6{left:84.960000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.xb{left:217.080000px;}
.x7{left:321.300000px;}
.x8{left:448.465140px;}
.x3{left:454.959000px;}
.x5{left:480.420000px;}
.xd{left:726.115680px;}
.xc{left:814.011840px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls55{letter-spacing:-1.576960pt;}
.ls5a{letter-spacing:-1.295360pt;}
.ls36{letter-spacing:-1.239040pt;}
.ls8a{letter-spacing:-1.162880pt;}
.ls38{letter-spacing:-1.070080pt;}
.ls33{letter-spacing:-1.013760pt;}
.ls5c{letter-spacing:-0.954240pt;}
.ls35{letter-spacing:-0.901120pt;}
.ls31{letter-spacing:-0.898560pt;}
.ls16{letter-spacing:-0.864000pt;}
.ls48{letter-spacing:-0.844800pt;}
.ls89{letter-spacing:-0.808960pt;}
.ls9a{letter-spacing:-0.720000pt;}
.ls17{letter-spacing:-0.673920pt;}
.ls98{letter-spacing:-0.672000pt;}
.ls32{letter-spacing:-0.619520pt;}
.ls88{letter-spacing:-0.606720pt;}
.ls21{letter-spacing:-0.595840pt;}
.ls20{letter-spacing:-0.584320pt;}
.ls9c{letter-spacing:-0.528000pt;}
.ls5b{letter-spacing:-0.506880pt;}
.ls8f{letter-spacing:-0.505600pt;}
.ls49{letter-spacing:-0.450560pt;}
.ls99{letter-spacing:-0.432000pt;}
.ls15{letter-spacing:-0.384000pt;}
.ls39{letter-spacing:-0.337920pt;}
.ls8e{letter-spacing:-0.303360pt;}
.ls47{letter-spacing:-0.299520pt;}
.ls37{letter-spacing:-0.281600pt;}
.ls1e{letter-spacing:-0.265600pt;}
.ls8d{letter-spacing:-0.202240pt;}
.ls56{letter-spacing:-0.168960pt;}
.ls18{letter-spacing:-0.106240pt;}
.ls97{letter-spacing:-0.096000pt;}
.ls46{letter-spacing:-0.074880pt;}
.ls19{letter-spacing:-0.053120pt;}
.ls8c{letter-spacing:-0.050560pt;}
.ls0{letter-spacing:0.000000pt;}
.ls86{letter-spacing:0.025280pt;}
.ls7d{letter-spacing:0.050560pt;}
.ls1a{letter-spacing:0.053120pt;}
.ls26{letter-spacing:0.056320pt;}
.ls9b{letter-spacing:0.096000pt;}
.ls96{letter-spacing:0.144000pt;}
.ls54{letter-spacing:0.168960pt;}
.ls91{letter-spacing:0.192000pt;}
.ls81{letter-spacing:0.202240pt;}
.ls2{letter-spacing:0.212480pt;}
.ls1c{letter-spacing:0.265600pt;}
.ls3a{letter-spacing:0.281600pt;}
.ls8b{letter-spacing:0.303360pt;}
.lse{letter-spacing:0.313408pt;}
.ls12{letter-spacing:0.318720pt;}
.ls4c{letter-spacing:0.337920pt;}
.ls1f{letter-spacing:0.371840pt;}
.ls1b{letter-spacing:0.424960pt;}
.ls80{letter-spacing:0.455040pt;}
.ls4{letter-spacing:0.531200pt;}
.ls34{letter-spacing:0.619520pt;}
.ls3{letter-spacing:0.637440pt;}
.ls7f{letter-spacing:0.657280pt;}
.ls6{letter-spacing:0.669312pt;}
.ls24{letter-spacing:0.675840pt;}
.ls22{letter-spacing:0.707840pt;}
.ls7{letter-spacing:0.849920pt;}
.ls30{letter-spacing:0.859520pt;}
.lsd{letter-spacing:0.913664pt;}
.ls44{letter-spacing:0.957440pt;}
.lsa{letter-spacing:1.003968pt;}
.ls5f{letter-spacing:1.047552pt;}
.ls1d{letter-spacing:1.168640pt;}
.ls94{letter-spacing:1.200000pt;}
.ls5{letter-spacing:1.285504pt;}
.ls93{letter-spacing:1.329600pt;}
.ls64{letter-spacing:1.633280pt;}
.ls63{letter-spacing:1.661440pt;}
.ls3e{letter-spacing:1.858560pt;}
.ls45{letter-spacing:1.903616pt;}
.ls95{letter-spacing:2.203200pt;}
.ls3f{letter-spacing:2.252800pt;}
.ls5e{letter-spacing:2.928640pt;}
.ls11{letter-spacing:3.134080pt;}
.ls42{letter-spacing:3.548160pt;}
.ls66{letter-spacing:3.604480pt;}
.lsc{letter-spacing:3.771520pt;}
.ls41{letter-spacing:3.835392pt;}
.ls14{letter-spacing:3.845888pt;}
.ls6e{letter-spacing:4.167680pt;}
.ls76{letter-spacing:4.229632pt;}
.ls59{letter-spacing:4.291584pt;}
.ls57{letter-spacing:5.423616pt;}
.ls2c{letter-spacing:5.592576pt;}
.ls84{letter-spacing:5.814400pt;}
.ls90{letter-spacing:5.856000pt;}
.ls60{letter-spacing:6.082560pt;}
.ls68{letter-spacing:6.279680pt;}
.ls70{letter-spacing:6.758400pt;}
.ls6c{letter-spacing:7.997440pt;}
.ls7e{letter-spacing:8.342400pt;}
.ls82{letter-spacing:8.352512pt;}
.ls4b{letter-spacing:9.292800pt;}
.ls13{letter-spacing:9.561600pt;}
.ls5d{letter-spacing:9.968640pt;}
.ls67{letter-spacing:10.047488pt;}
.ls85{letter-spacing:10.920960pt;}
.ls92{letter-spacing:11.616000pt;}
.ls3c{letter-spacing:11.883520pt;}
.ls6d{letter-spacing:11.979264pt;}
.lsb{letter-spacing:12.111360pt;}
.ls87{letter-spacing:12.184960pt;}
.ls27{letter-spacing:12.503040pt;}
.ls52{letter-spacing:12.593152pt;}
.ls4f{letter-spacing:13.094400pt;}
.ls50{letter-spacing:13.122560pt;}
.ls7b{letter-spacing:14.106240pt;}
.ls40{letter-spacing:15.037440pt;}
.ls2d{letter-spacing:15.420416pt;}
.ls28{letter-spacing:15.713280pt;}
.ls2a{letter-spacing:16.332800pt;}
.ls72{letter-spacing:16.389120pt;}
.ls74{letter-spacing:16.445440pt;}
.ls73{letter-spacing:16.473600pt;}
.ls6b{letter-spacing:16.642560pt;}
.ls2e{letter-spacing:17.008640pt;}
.ls10{letter-spacing:17.210880pt;}
.ls2f{letter-spacing:17.628160pt;}
.ls6a{letter-spacing:17.802752pt;}
.ls78{letter-spacing:18.957312pt;}
.ls9{letter-spacing:19.176320pt;}
.ls69{letter-spacing:19.543040pt;}
.ls77{letter-spacing:19.695104pt;}
.ls4e{letter-spacing:20.162560pt;}
.ls8{letter-spacing:20.451200pt;}
.ls2b{letter-spacing:20.900352pt;}
.lsf{letter-spacing:21.136448pt;}
.ls4a{letter-spacing:21.457920pt;}
.ls65{letter-spacing:22.077440pt;}
.ls7c{letter-spacing:22.428416pt;}
.ls1{letter-spacing:23.000960pt;}
.ls3d{letter-spacing:24.668160pt;}
.ls53{letter-spacing:25.287680pt;}
.ls29{letter-spacing:25.963520pt;}
.ls23{letter-spacing:26.019840pt;}
.ls3b{letter-spacing:26.583040pt;}
.ls25{letter-spacing:27.202560pt;}
.ls51{letter-spacing:28.497920pt;}
.ls61{letter-spacing:30.559232pt;}
.ls71{letter-spacing:32.327680pt;}
.ls4d{letter-spacing:33.335808pt;}
.ls43{letter-spacing:36.315136pt;}
.ls58{letter-spacing:37.852672pt;}
.ls75{letter-spacing:43.873280pt;}
.ls62{letter-spacing:54.123520pt;}
.ls6f{letter-spacing:61.783040pt;}
.ls83{letter-spacing:85.820544pt;}
.ls79{letter-spacing:752.343040pt;}
.ls7a{letter-spacing:1204.490880pt;}
.ws1{word-spacing:-25.824000pt;}
.wsa{word-spacing:-23.067520pt;}
.ws7d{word-spacing:-20.816640pt;}
.ws2{word-spacing:-20.142720pt;}
.ws37{word-spacing:-19.918080pt;}
.wscb{word-spacing:-16.332800pt;}
.ws3b{word-spacing:-16.276480pt;}
.ws3f{word-spacing:-15.938560pt;}
.ws3a{word-spacing:-15.713280pt;}
.ws38{word-spacing:-15.656960pt;}
.wsc4{word-spacing:-15.375360pt;}
.ws3e{word-spacing:-15.319040pt;}
.ws7{word-spacing:-15.298560pt;}
.ws8{word-spacing:-15.192320pt;}
.wsb1{word-spacing:-15.150080pt;}
.ws39{word-spacing:-15.037440pt;}
.ws6{word-spacing:-14.820480pt;}
.ws7e{word-spacing:-14.812160pt;}
.ws5{word-spacing:-14.767360pt;}
.ws36{word-spacing:-14.763520pt;}
.ws3c{word-spacing:-14.755840pt;}
.ws4{word-spacing:-14.714240pt;}
.ws3{word-spacing:-14.661120pt;}
.ws3d{word-spacing:-14.586880pt;}
.ws9{word-spacing:-14.501760pt;}
.wsb0{word-spacing:-14.417920pt;}
.wsda{word-spacing:-14.359040pt;}
.wsdc{word-spacing:-14.257920pt;}
.wsd8{word-spacing:-14.106240pt;}
.wsd5{word-spacing:-14.055680pt;}
.wsd9{word-spacing:-14.005120pt;}
.wsdb{word-spacing:-13.752320pt;}
.wsdd{word-spacing:-13.550080pt;}
.wsf5{word-spacing:-13.536000pt;}
.wsd6{word-spacing:-13.448960pt;}
.wsf7{word-spacing:-13.344000pt;}
.wsf6{word-spacing:-12.912000pt;}
.wsd7{word-spacing:-12.892800pt;}
.wsf9{word-spacing:-12.816000pt;}
.wsf8{word-spacing:-12.624000pt;}
.ws7a{word-spacing:-4.167680pt;}
.ws51{word-spacing:-3.548160pt;}
.ws98{word-spacing:-3.491840pt;}
.wsf3{word-spacing:-3.185280pt;}
.wsd0{word-spacing:-3.153920pt;}
.ws30{word-spacing:-3.134080pt;}
.ws59{word-spacing:-2.928640pt;}
.ws8c{word-spacing:-2.872320pt;}
.wsbc{word-spacing:-2.534400pt;}
.ws4f{word-spacing:-2.252800pt;}
.wsa7{word-spacing:-2.196480pt;}
.ws105{word-spacing:-2.016000pt;}
.wsee{word-spacing:-1.921280pt;}
.ws2d{word-spacing:-1.859200pt;}
.ws5f{word-spacing:-1.633280pt;}
.ws7c{word-spacing:-1.576960pt;}
.wsff{word-spacing:-1.344000pt;}
.wse7{word-spacing:-1.314560pt;}
.ws96{word-spacing:-0.957440pt;}
.ws40{word-spacing:-0.808960pt;}
.wsde{word-spacing:-0.707840pt;}
.wse8{word-spacing:-0.657280pt;}
.ws19{word-spacing:-0.531200pt;}
.wsc3{word-spacing:-0.450560pt;}
.wsba{word-spacing:-0.394240pt;}
.ws8b{word-spacing:-0.337920pt;}
.wse4{word-spacing:-0.303360pt;}
.wsd{word-spacing:-0.299520pt;}
.ws6f{word-spacing:-0.281600pt;}
.ws20{word-spacing:-0.265600pt;}
.ws100{word-spacing:-0.096000pt;}
.ws86{word-spacing:-0.056320pt;}
.wse6{word-spacing:-0.050560pt;}
.ws0{word-spacing:0.000000pt;}
.ws18{word-spacing:0.053120pt;}
.wsfc{word-spacing:0.096000pt;}
.wsf{word-spacing:0.106240pt;}
.wsa6{word-spacing:0.168960pt;}
.wse1{word-spacing:0.202240pt;}
.ws2c{word-spacing:0.265600pt;}
.ws61{word-spacing:0.281600pt;}
.ws93{word-spacing:0.299520pt;}
.ws73{word-spacing:0.337920pt;}
.wsf1{word-spacing:0.353920pt;}
.ws91{word-spacing:0.374400pt;}
.ws102{word-spacing:0.432000pt;}
.wsa2{word-spacing:0.450560pt;}
.wsb{word-spacing:0.480000pt;}
.wsbb{word-spacing:0.499840pt;}
.wsb9{word-spacing:0.506880pt;}
.ws104{word-spacing:0.528000pt;}
.wsc2{word-spacing:0.563200pt;}
.ws34{word-spacing:0.584320pt;}
.ws92{word-spacing:0.599040pt;}
.wse0{word-spacing:0.606720pt;}
.ws45{word-spacing:0.619520pt;}
.wsf4{word-spacing:0.657280pt;}
.wsc{word-spacing:0.673920pt;}
.ws23{word-spacing:0.690560pt;}
.ws103{word-spacing:0.720000pt;}
.wse3{word-spacing:0.808960pt;}
.wsa0{word-spacing:0.844800pt;}
.ws55{word-spacing:0.901120pt;}
.ws76{word-spacing:0.957440pt;}
.ws46{word-spacing:1.013760pt;}
.ws69{word-spacing:1.070080pt;}
.ws101{word-spacing:1.200000pt;}
.ws57{word-spacing:1.239040pt;}
.wsdf{word-spacing:1.264000pt;}
.wsb8{word-spacing:1.295360pt;}
.ws22{word-spacing:1.328000pt;}
.ws9b{word-spacing:1.464320pt;}
.ws4a{word-spacing:1.576960pt;}
.ws9a{word-spacing:1.633280pt;}
.wsd1{word-spacing:1.914880pt;}
.wse9{word-spacing:1.921280pt;}
.ws31{word-spacing:1.965440pt;}
.ws27{word-spacing:2.124800pt;}
.ws85{word-spacing:2.196480pt;}
.ws47{word-spacing:2.252800pt;}
.ws15{word-spacing:2.656000pt;}
.ws66{word-spacing:2.872320pt;}
.ws106{word-spacing:3.120000pt;}
.ws14{word-spacing:3.293440pt;}
.ws84{word-spacing:3.491840pt;}
.ws71{word-spacing:3.548160pt;}
.ws107{word-spacing:3.744000pt;}
.ws1f{word-spacing:3.930880pt;}
.ws8a{word-spacing:4.111360pt;}
.ws8e{word-spacing:4.167680pt;}
.wsa4{word-spacing:4.449280pt;}
.ws1b{word-spacing:4.568320pt;}
.ws9f{word-spacing:4.787200pt;}
.wsb5{word-spacing:5.181440pt;}
.ws35{word-spacing:5.205760pt;}
.wsb6{word-spacing:5.406720pt;}
.ws41{word-spacing:5.463040pt;}
.wsb4{word-spacing:5.632000pt;}
.wsfb{word-spacing:5.664000pt;}
.wsfa{word-spacing:5.712000pt;}
.wsed{word-spacing:5.763840pt;}
.ws4c{word-spacing:6.082560pt;}
.ws89{word-spacing:6.420480pt;}
.ws88{word-spacing:6.702080pt;}
.ws44{word-spacing:6.758400pt;}
.wsa3{word-spacing:7.377920pt;}
.ws32{word-spacing:7.755520pt;}
.ws82{word-spacing:7.997440pt;}
.wsd4{word-spacing:8.053760pt;}
.wseb{word-spacing:8.291840pt;}
.wsbd{word-spacing:8.616960pt;}
.ws75{word-spacing:8.673280pt;}
.ws29{word-spacing:9.030400pt;}
.ws2a{word-spacing:9.189760pt;}
.ws60{word-spacing:9.236480pt;}
.ws81{word-spacing:9.292800pt;}
.ws21{word-spacing:9.667840pt;}
.ws49{word-spacing:9.912320pt;}
.ws2e{word-spacing:10.305280pt;}
.ws50{word-spacing:10.531840pt;}
.ws6b{word-spacing:10.588160pt;}
.wsf0{word-spacing:10.870400pt;}
.ws13{word-spacing:10.942720pt;}
.wsae{word-spacing:11.151360pt;}
.ws80{word-spacing:11.207680pt;}
.ws25{word-spacing:11.580160pt;}
.ws56{word-spacing:11.601920pt;}
.ws53{word-spacing:11.827200pt;}
.wsfd{word-spacing:12.048000pt;}
.ws52{word-spacing:12.108800pt;}
.wsf2{word-spacing:12.134400pt;}
.ws24{word-spacing:12.217600pt;}
.ws5b{word-spacing:12.446720pt;}
.ws58{word-spacing:12.503040pt;}
.ws26{word-spacing:12.855040pt;}
.wsfe{word-spacing:12.912000pt;}
.ws5c{word-spacing:13.122560pt;}
.ws33{word-spacing:13.492480pt;}
.ws72{word-spacing:13.798400pt;}
.wsd3{word-spacing:14.080000pt;}
.ws42{word-spacing:14.417920pt;}
.wse2{word-spacing:14.712960pt;}
.ws16{word-spacing:14.767360pt;}
.ws87{word-spacing:15.037440pt;}
.ws5e{word-spacing:15.656960pt;}
.ws65{word-spacing:15.713280pt;}
.ws68{word-spacing:16.332800pt;}
.ws11{word-spacing:16.732800pt;}
.ws67{word-spacing:16.952320pt;}
.wsea{word-spacing:17.240960pt;}
.ws2b{word-spacing:17.370240pt;}
.ws7b{word-spacing:17.571840pt;}
.ws9c{word-spacing:17.628160pt;}
.ws10{word-spacing:18.007680pt;}
.ws5d{word-spacing:18.191360pt;}
.ws6d{word-spacing:18.247680pt;}
.ws95{word-spacing:18.867200pt;}
.ws1d{word-spacing:19.282560pt;}
.wsb3{word-spacing:19.486720pt;}
.ws4d{word-spacing:19.543040pt;}
.ws1c{word-spacing:19.920000pt;}
.ws4e{word-spacing:20.162560pt;}
.ws1e{word-spacing:20.557440pt;}
.ws74{word-spacing:20.838400pt;}
.ws5a{word-spacing:21.401600pt;}
.ws70{word-spacing:21.457920pt;}
.wsec{word-spacing:21.740800pt;}
.ws9d{word-spacing:22.077440pt;}
.wse5{word-spacing:22.398080pt;}
.ws8d{word-spacing:22.753280pt;}
.wse{word-spacing:23.107200pt;}
.ws94{word-spacing:23.316480pt;}
.wsc1{word-spacing:23.372800pt;}
.ws17{word-spacing:23.744640pt;}
.ws6c{word-spacing:23.992320pt;}
.wsbe{word-spacing:24.668160pt;}
.wsb2{word-spacing:25.231360pt;}
.ws43{word-spacing:25.287680pt;}
.ws7f{word-spacing:25.907200pt;}
.ws48{word-spacing:26.583040pt;}
.ws64{word-spacing:27.202560pt;}
.wsac{word-spacing:27.822080pt;}
.ws54{word-spacing:27.878400pt;}
.ws12{word-spacing:28.206720pt;}
.ws83{word-spacing:28.497920pt;}
.wsa1{word-spacing:29.117440pt;}
.ws2f{word-spacing:29.534720pt;}
.wsa5{word-spacing:29.736960pt;}
.wsc8{word-spacing:29.793280pt;}
.wsa9{word-spacing:30.356480pt;}
.wsad{word-spacing:30.412800pt;}
.wsc5{word-spacing:31.032320pt;}
.ws28{word-spacing:31.447040pt;}
.ws1a{word-spacing:32.084480pt;}
.ws6e{word-spacing:32.947200pt;}
.wsbf{word-spacing:33.566720pt;}
.ws9e{word-spacing:33.623040pt;}
.ws90{word-spacing:34.242560pt;}
.wsc0{word-spacing:34.862080pt;}
.ws6a{word-spacing:34.918400pt;}
.wsaf{word-spacing:35.481600pt;}
.wsd2{word-spacing:35.537920pt;}
.ws97{word-spacing:36.833280pt;}
.ws99{word-spacing:37.452800pt;}
.wsb7{word-spacing:38.072320pt;}
.wsc9{word-spacing:38.691840pt;}
.ws78{word-spacing:38.748160pt;}
.ws62{word-spacing:39.311360pt;}
.ws77{word-spacing:41.282560pt;}
.wsab{word-spacing:41.902080pt;}
.ws8f{word-spacing:41.958400pt;}
.wsaa{word-spacing:42.577920pt;}
.wscf{word-spacing:44.492800pt;}
.ws63{word-spacing:45.112320pt;}
.ws79{word-spacing:46.351360pt;}
.wsca{word-spacing:47.646720pt;}
.wsc6{word-spacing:51.476480pt;}
.ws4b{word-spacing:52.771840pt;}
.wsce{word-spacing:53.447680pt;}
.wsc7{word-spacing:54.743040pt;}
.wscd{word-spacing:62.402560pt;}
.wscc{word-spacing:63.022080pt;}
.wsa8{word-spacing:68.147200pt;}
.wsef{word-spacing:85.749760pt;}
._13{margin-left:-27.146240pt;}
._21{margin-left:-11.922560pt;}
._18{margin-left:-5.269760pt;}
._11{margin-left:-3.669760pt;}
._a{margin-left:-2.207424pt;}
._1{margin-left:-1.286400pt;}
._2{width:1.036800pt;}
._6{width:2.412160pt;}
._4{width:3.404480pt;}
._14{width:4.569920pt;}
._7{width:5.550080pt;}
._1c{width:6.645760pt;}
._e{width:7.856000pt;}
._d{width:8.890880pt;}
._b{width:10.356544pt;}
._8{width:11.391360pt;}
._9{width:12.734336pt;}
._17{width:14.563840pt;}
._1b{width:16.605440pt;}
._c{width:17.820800pt;}
._15{width:19.139840pt;}
._12{width:20.693760pt;}
._16{width:22.133760pt;}
._3{width:23.447680pt;}
._5{width:28.202880pt;}
._1a{width:29.817600pt;}
._19{width:43.466240pt;}
._1f{width:46.896640pt;}
._1d{width:50.759680pt;}
._1e{width:54.913984pt;}
._20{width:85.901440pt;}
._0{width:312.012800pt;}
._f{width:747.152640pt;}
._22{width:754.243840pt;}
._23{width:836.006400pt;}
._10{width:1219.203840pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:45.440000pt;}
.fsd{font-size:48.000000pt;}
.fs6{font-size:50.560000pt;}
.fsa{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:56.320000pt;}
.fs9{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fsb{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:14.720000pt;}
.y62{bottom:16.800000pt;}
.y23{bottom:44.320000pt;}
.y266{bottom:44.802560pt;}
.y5{bottom:59.133337pt;}
.y283{bottom:73.308000pt;}
.y1a9{bottom:77.920000pt;}
.ybe{bottom:79.747840pt;}
.y118{bottom:84.172800pt;}
.yec{bottom:84.596480pt;}
.y4{bottom:86.333337pt;}
.y1a8{bottom:90.088960pt;}
.y1fb{bottom:96.578560pt;}
.y282{bottom:96.672000pt;}
.y1eb{bottom:98.757120pt;}
.y1c0{bottom:98.760960pt;}
.y90{bottom:99.727360pt;}
.ybd{bottom:99.741440pt;}
.y117{bottom:104.166400pt;}
.yeb{bottom:104.590080pt;}
.y281{bottom:112.032000pt;}
.y17b{bottom:113.120000pt;}
.y1fa{bottom:116.572160pt;}
.y1bf{bottom:118.754560pt;}
.y1ea{bottom:119.074560pt;}
.y8f{bottom:119.566080pt;}
.ybc{bottom:119.735040pt;}
.y21{bottom:123.790666pt;}
.y116{bottom:124.160000pt;}
.yea{bottom:124.583680pt;}
.y280{bottom:127.236000pt;}
.y17a{bottom:133.137920pt;}
.y1f9{bottom:136.565760pt;}
.y226{bottom:136.819200pt;}
.y1be{bottom:138.748160pt;}
.y1e9{bottom:139.392000pt;}
.y8e{bottom:139.404800pt;}
.ybb{bottom:139.728640pt;}
.y27f{bottom:142.596000pt;}
.y115{bottom:144.160000pt;}
.ye9{bottom:144.577280pt;}
.y1f8{bottom:156.559360pt;}
.y225{bottom:156.812800pt;}
.y1bd{bottom:158.741760pt;}
.y8d{bottom:159.088640pt;}
.y1e8{bottom:159.554560pt;}
.yba{bottom:159.722240pt;}
.y14d{bottom:162.979840pt;}
.y114{bottom:164.160000pt;}
.ye8{bottom:164.570880pt;}
.y27e{bottom:165.960000pt;}
.y18{bottom:175.052000pt;}
.y1f7{bottom:176.552960pt;}
.y224{bottom:176.806400pt;}
.y1bc{bottom:178.735360pt;}
.y8c{bottom:178.927360pt;}
.y1e7{bottom:179.872000pt;}
.y14c{bottom:183.297280pt;}
.y113{bottom:184.160000pt;}
.ye7{bottom:184.564480pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.yb9{bottom:187.727360pt;}
.y27d{bottom:189.324000pt;}
.y223{bottom:196.800000pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1bb{bottom:198.728960pt;}
.y8b{bottom:198.766080pt;}
.y1e6{bottom:200.189440pt;}
.y14b{bottom:203.614720pt;}
.y112{bottom:204.160000pt;}
.ye6{bottom:204.558080pt;}
.y27c{bottom:204.684000pt;}
.yb8{bottom:207.720960pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y222{bottom:216.793600pt;}
.y8a{bottom:218.604800pt;}
.y1ba{bottom:218.722560pt;}
.y1e5{bottom:220.352000pt;}
.y5e{bottom:223.360000pt;}
.y14a{bottom:223.777280pt;}
.y27b{bottom:224.040000pt;}
.y111{bottom:224.160000pt;}
.ye5{bottom:224.551680pt;}
.yb7{bottom:227.559680pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y221{bottom:236.787200pt;}
.y89{bottom:238.288640pt;}
.y1e4{bottom:240.669440pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y42{bottom:243.443200pt;}
.y149{bottom:244.094720pt;}
.y110{bottom:244.160000pt;}
.y5d{bottom:244.160320pt;}
.ye4{bottom:244.545280pt;}
.y27a{bottom:245.796000pt;}
.y1b9{bottom:246.727680pt;}
.yb6{bottom:247.398400pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y220{bottom:256.780800pt;}
.y88{bottom:258.127360pt;}
.y41{bottom:260.879840pt;}
.y1e3{bottom:260.986880pt;}
.y5c{bottom:261.596960pt;}
.y279{bottom:261.792000pt;}
.y10f{bottom:264.192000pt;}
.y148{bottom:264.412160pt;}
.ye3{bottom:264.538880pt;}
.y1b8{bottom:266.566400pt;}
.yb5{bottom:267.237120pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y21f{bottom:276.774400pt;}
.y278{bottom:277.788000pt;}
.y87{bottom:277.966080pt;}
.y40{bottom:278.316480pt;}
.y5b{bottom:278.874240pt;}
.y1e2{bottom:281.149440pt;}
.y10e{bottom:284.185600pt;}
.ye2{bottom:284.532480pt;}
.y147{bottom:284.574720pt;}
.y1b7{bottom:286.405120pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.yb4{bottom:287.075840pt;}
.y3f{bottom:295.753120pt;}
.y5a{bottom:296.151520pt;}
.y86{bottom:297.804800pt;}
.y1e1{bottom:301.466880pt;}
.y277{bottom:301.788000pt;}
.y10d{bottom:304.179200pt;}
.y123{bottom:304.526080pt;}
.y21e{bottom:304.779520pt;}
.y146{bottom:304.892160pt;}
.y1b6{bottom:306.243840pt;}
.yb3{bottom:306.914560pt;}
.y264{bottom:307.321920pt;}
.yf{bottom:309.452000pt;}
.ye1{bottom:312.537600pt;}
.y3e{bottom:313.349120pt;}
.y59{bottom:313.588160pt;}
.y85{bottom:317.488640pt;}
.y1e0{bottom:321.784320pt;}
.y263{bottom:323.324160pt;}
.y10c{bottom:324.172800pt;}
.y122{bottom:324.519680pt;}
.y21d{bottom:324.773120pt;}
.y145{bottom:325.209600pt;}
.y1b5{bottom:326.082560pt;}
.yb2{bottom:326.908160pt;}
.y3d{bottom:330.785760pt;}
.y58{bottom:330.865440pt;}
.ye0{bottom:332.531200pt;}
.y276{bottom:333.792000pt;}
.y84{bottom:337.327360pt;}
.y1df{bottom:341.946880pt;}
.ye{bottom:343.809333pt;}
.y10b{bottom:344.166400pt;}
.y121{bottom:344.513280pt;}
.y21c{bottom:344.766720pt;}
.y144{bottom:345.372160pt;}
.y1b4{bottom:346.076160pt;}
.yb1{bottom:346.746880pt;}
.y262{bottom:347.327520pt;}
.y57{bottom:348.142720pt;}
.y3c{bottom:348.222400pt;}
.y275{bottom:349.788000pt;}
.ydf{bottom:352.524800pt;}
.y83{bottom:357.166080pt;}
.y1de{bottom:362.264320pt;}
.yd{bottom:362.706666pt;}
.y261{bottom:363.329760pt;}
.y10a{bottom:364.160000pt;}
.y120{bottom:364.506880pt;}
.y21b{bottom:364.760320pt;}
.y56{bottom:365.579360pt;}
.y3b{bottom:365.659040pt;}
.y143{bottom:365.689600pt;}
.y274{bottom:365.784000pt;}
.y1b3{bottom:365.914880pt;}
.yb0{bottom:366.585600pt;}
.yde{bottom:372.518400pt;}
.y82{bottom:377.004800pt;}
.y1dd{bottom:382.581760pt;}
.y55{bottom:382.856640pt;}
.y3a{bottom:383.095680pt;}
.y11f{bottom:384.500480pt;}
.y21a{bottom:384.753920pt;}
.y1b2{bottom:385.753600pt;}
.y142{bottom:386.007040pt;}
.yaf{bottom:386.424320pt;}
.y260{bottom:387.333120pt;}
.y109{bottom:392.142080pt;}
.ydd{bottom:392.512000pt;}
.y81{bottom:396.688640pt;}
.y273{bottom:397.788000pt;}
.y54{bottom:400.133920pt;}
.y39{bottom:400.532320pt;}
.y1dc{bottom:402.744320pt;}
.y25f{bottom:403.335360pt;}
.y11e{bottom:404.494080pt;}
.y219{bottom:404.747520pt;}
.y1b1{bottom:405.592320pt;}
.y141{bottom:406.169600pt;}
.yae{bottom:406.263040pt;}
.y108{bottom:412.135680pt;}
.ydc{bottom:412.505600pt;}
.y272{bottom:413.304000pt;}
.y80{bottom:416.527360pt;}
.y53{bottom:417.570560pt;}
.y38{bottom:418.128320pt;}
.y1db{bottom:423.061760pt;}
.y11d{bottom:424.487680pt;}
.y218{bottom:424.741120pt;}
.y1b0{bottom:425.431040pt;}
.yad{bottom:426.101760pt;}
.y140{bottom:426.487040pt;}
.y25e{bottom:427.338720pt;}
.y271{bottom:428.340000pt;}
.y107{bottom:432.298240pt;}
.ydb{bottom:432.499200pt;}
.y52{bottom:434.847840pt;}
.y37{bottom:435.564960pt;}
.y7f{bottom:436.366080pt;}
.y25d{bottom:443.340960pt;}
.y1da{bottom:443.379200pt;}
.y11c{bottom:444.481280pt;}
.y217{bottom:444.734720pt;}
.y1af{bottom:445.269760pt;}
.yac{bottom:446.095360pt;}
.y13f{bottom:446.804480pt;}
.yc{bottom:446.990669pt;}
.y51{bottom:452.125120pt;}
.y106{bottom:452.460800pt;}
.yda{bottom:452.492800pt;}
.y36{bottom:453.001600pt;}
.y7e{bottom:456.204800pt;}
.y25c{bottom:459.343200pt;}
.yb{bottom:462.990669pt;}
.y11b{bottom:464.474880pt;}
.y216{bottom:464.728320pt;}
.y1ae{bottom:465.263360pt;}
.yab{bottom:465.934080pt;}
.y13e{bottom:466.967040pt;}
.y50{bottom:469.561760pt;}
.y35{bottom:470.438240pt;}
.y1d9{bottom:471.539200pt;}
.yd9{bottom:472.486400pt;}
.y105{bottom:472.623360pt;}
.y7d{bottom:475.888640pt;}
.ya{bottom:478.990666pt;}
.y25b{bottom:483.346560pt;}
.y11a{bottom:484.468480pt;}
.y215{bottom:484.721920pt;}
.y1ad{bottom:485.102080pt;}
.yaa{bottom:485.772800pt;}
.y4f{bottom:486.839040pt;}
.y13d{bottom:487.284480pt;}
.y34{bottom:487.874880pt;}
.y1d8{bottom:491.532800pt;}
.yd8{bottom:492.480000pt;}
.y104{bottom:492.785920pt;}
.y9{bottom:494.990666pt;}
.y7c{bottom:495.727360pt;}
.y25a{bottom:499.348800pt;}
.y4e{bottom:504.116320pt;}
.y119{bottom:504.462080pt;}
.y214{bottom:504.715520pt;}
.y1ac{bottom:504.940800pt;}
.y33{bottom:505.311520pt;}
.ya9{bottom:505.611520pt;}
.y13c{bottom:507.601920pt;}
.y1d7{bottom:511.526400pt;}
.yd7{bottom:512.473600pt;}
.y103{bottom:512.948480pt;}
.y259{bottom:515.351040pt;}
.y7b{bottom:515.566080pt;}
.y4d{bottom:521.552960pt;}
.y32{bottom:522.907520pt;}
.y1f6{bottom:524.455680pt;}
.y213{bottom:524.709120pt;}
.y1ab{bottom:524.779520pt;}
.ya8{bottom:525.450240pt;}
.y13b{bottom:527.764480pt;}
.y179{bottom:528.335360pt;}
.y1d6{bottom:531.520000pt;}
.yd6{bottom:532.467200pt;}
.y102{bottom:532.942080pt;}
.y4c{bottom:538.830240pt;}
.y258{bottom:539.354400pt;}
.y31{bottom:540.344160pt;}
.y7a{bottom:543.402240pt;}
.y1a7{bottom:544.168960pt;}
.y1f5{bottom:544.449280pt;}
.y178{bottom:544.499200pt;}
.y1aa{bottom:544.618240pt;}
.y212{bottom:544.702720pt;}
.ya7{bottom:545.288960pt;}
.y13a{bottom:548.081920pt;}
.yd5{bottom:552.460800pt;}
.y101{bottom:553.104640pt;}
.y257{bottom:555.356640pt;}
.y4b{bottom:556.107520pt;}
.y30{bottom:557.780800pt;}
.y1a6{bottom:560.163840pt;}
.y1d5{bottom:560.480000pt;}
.y79{bottom:563.240960pt;}
.y1f4{bottom:564.442880pt;}
.y211{bottom:564.696320pt;}
.ya6{bottom:565.282560pt;}
.y139{bottom:568.399360pt;}
.yd4{bottom:572.454400pt;}
.y100{bottom:573.267200pt;}
.y4a{bottom:573.544160pt;}
.y8{bottom:573.786667pt;}
.y2f{bottom:575.217440pt;}
.y162{bottom:576.587520pt;}
.y177{bottom:577.460480pt;}
.y256{bottom:579.354400pt;}
.y78{bottom:583.079680pt;}
.y1f3{bottom:584.436480pt;}
.y210{bottom:584.689920pt;}
.ya5{bottom:585.121280pt;}
.y138{bottom:588.561920pt;}
.y1a5{bottom:589.605120pt;}
.y49{bottom:590.821440pt;}
.y190{bottom:591.224320pt;}
.yd3{bottom:592.448000pt;}
.y2e{bottom:592.654080pt;}
.y7{bottom:592.685334pt;}
.yff{bottom:593.429760pt;}
.y255{bottom:595.356640pt;}
.y161{bottom:596.271360pt;}
.y176{bottom:597.946880pt;}
.y1d4{bottom:599.741440pt;}
.y77{bottom:602.918400pt;}
.y1f2{bottom:604.430080pt;}
.y20f{bottom:604.683520pt;}
.ya4{bottom:604.960000pt;}
.y48{bottom:608.098720pt;}
.y137{bottom:608.879360pt;}
.y1a4{bottom:609.767680pt;}
.y2d{bottom:610.090720pt;}
.y18f{bottom:611.386880pt;}
.yd2{bottom:612.441600pt;}
.yfe{bottom:613.592320pt;}
.y160{bottom:615.955200pt;}
.y175{bottom:618.433280pt;}
.y254{bottom:619.360000pt;}
.y1d3{bottom:620.058880pt;}
.y76{bottom:622.757120pt;}
.y1f1{bottom:624.423680pt;}
.y20e{bottom:624.677120pt;}
.ya3{bottom:624.798720pt;}
.y47{bottom:625.535360pt;}
.y2c{bottom:627.686720pt;}
.y136{bottom:629.196800pt;}
.y1a3{bottom:629.761280pt;}
.y18e{bottom:631.380480pt;}
.yd1{bottom:632.435200pt;}
.yfd{bottom:633.754880pt;}
.y253{bottom:635.318080pt;}
.y15f{bottom:635.639040pt;}
.y174{bottom:639.074560pt;}
.y1d2{bottom:640.376320pt;}
.y75{bottom:642.750720pt;}
.y46{bottom:642.812640pt;}
.y1f0{bottom:644.417280pt;}
.ya2{bottom:644.637440pt;}
.y20d{bottom:644.670720pt;}
.y2b{bottom:645.123360pt;}
.y6{bottom:645.598667pt;}
.y1a2{bottom:649.923840pt;}
.y252{bottom:651.320320pt;}
.yd0{bottom:652.428800pt;}
.yfc{bottom:653.748480pt;}
.y15e{bottom:655.322880pt;}
.y135{bottom:657.511680pt;}
.y173{bottom:659.560960pt;}
.y18d{bottom:659.695360pt;}
.y45{bottom:660.089920pt;}
.y1d1{bottom:660.538880pt;}
.y2a{bottom:662.560000pt;}
.y74{bottom:662.589440pt;}
.y1ef{bottom:664.410880pt;}
.y20c{bottom:664.664320pt;}
.y3{bottom:668.977329pt;}
.y1a1{bottom:670.086400pt;}
.ycf{bottom:672.422400pt;}
.ya1{bottom:672.473600pt;}
.yfb{bottom:673.911040pt;}
.y15d{bottom:675.006720pt;}
.y251{bottom:675.323680pt;}
.y134{bottom:677.195520pt;}
.y44{bottom:677.526560pt;}
.y18c{bottom:679.210240pt;}
.y172{bottom:680.047360pt;}
.y1d0{bottom:680.856320pt;}
.y73{bottom:682.428160pt;}
.y1ee{bottom:684.404480pt;}
.y29{bottom:689.280000pt;}
.y1a0{bottom:690.248960pt;}
.y250{bottom:691.325920pt;}
.yce{bottom:692.416000pt;}
.ya0{bottom:692.467200pt;}
.y20b{bottom:692.669440pt;}
.yfa{bottom:694.073600pt;}
.y15c{bottom:694.690560pt;}
.y43{bottom:694.803840pt;}
.y133{bottom:696.879360pt;}
.y18b{bottom:698.894080pt;}
.y171{bottom:700.688640pt;}
.y1cf{bottom:701.173760pt;}
.y72{bottom:702.266880pt;}
.y1ed{bottom:704.398080pt;}
.y24f{bottom:707.328160pt;}
.y19f{bottom:710.411520pt;}
.ycd{bottom:712.409600pt;}
.y9f{bottom:712.460800pt;}
.y20a{bottom:712.663040pt;}
.yf9{bottom:714.236160pt;}
.y15b{bottom:714.374400pt;}
.y132{bottom:716.718080pt;}
.y18a{bottom:718.408960pt;}
.y170{bottom:721.175040pt;}
.y1ce{bottom:721.336320pt;}
.y71{bottom:722.105600pt;}
.y1ec{bottom:724.391680pt;}
.y241{bottom:726.415360pt;}
.y28{bottom:728.320000pt;}
.y19e{bottom:730.574080pt;}
.y24e{bottom:731.331520pt;}
.ycc{bottom:732.403200pt;}
.y9e{bottom:732.454400pt;}
.y209{bottom:732.656640pt;}
.y15a{bottom:734.058240pt;}
.yf8{bottom:734.398720pt;}
.y131{bottom:736.401920pt;}
.y189{bottom:738.092800pt;}
.y1cd{bottom:741.653760pt;}
.y16f{bottom:741.661440pt;}
.y70{bottom:741.944320pt;}
.y27{bottom:746.080000pt;}
.y233{bottom:746.760960pt;}
.y240{bottom:747.211520pt;}
.y24d{bottom:747.333760pt;}
.y19d{bottom:750.567680pt;}
.ycb{bottom:752.396800pt;}
.y9d{bottom:752.448000pt;}
.y208{bottom:752.650240pt;}
.y159{bottom:753.742080pt;}
.yf7{bottom:754.561280pt;}
.y130{bottom:756.085760pt;}
.y188{bottom:757.607680pt;}
.y6f{bottom:761.937920pt;}
.y1cc{bottom:761.971200pt;}
.y16e{bottom:762.302720pt;}
.y232{bottom:766.275840pt;}
.y23f{bottom:767.528960pt;}
.y19c{bottom:770.730240pt;}
.y24c{bottom:771.337120pt;}
.yca{bottom:772.390400pt;}
.y9c{bottom:772.441600pt;}
.y207{bottom:772.643840pt;}
.y158{bottom:773.256960pt;}
.yf6{bottom:774.554880pt;}
.y12f{bottom:775.924480pt;}
.y187{bottom:777.291520pt;}
.y270{bottom:779.856000pt;}
.y2{bottom:781.661334pt;}
.y6e{bottom:781.776640pt;}
.y1cb{bottom:782.133760pt;}
.y16d{bottom:782.789120pt;}
.y231{bottom:785.790720pt;}
.y24b{bottom:787.339360pt;}
.y23e{bottom:788.015360pt;}
.y19b{bottom:790.892800pt;}
.yc9{bottom:792.384000pt;}
.y9b{bottom:792.435200pt;}
.y206{bottom:792.637440pt;}
.y157{bottom:792.940800pt;}
.yf5{bottom:794.717440pt;}
.y12e{bottom:795.608320pt;}
.y26f{bottom:795.852000pt;}
.y186{bottom:796.806400pt;}
.y6d{bottom:801.615360pt;}
.y1ca{bottom:802.451200pt;}
.y16c{bottom:803.275520pt;}
.y24a{bottom:803.341600pt;}
.y230{bottom:805.150720pt;}
.y23d{bottom:808.332800pt;}
.y19a{bottom:811.055360pt;}
.yc8{bottom:812.377600pt;}
.y9a{bottom:812.428800pt;}
.y156{bottom:812.624640pt;}
.y205{bottom:812.631040pt;}
.yf4{bottom:814.880000pt;}
.y12d{bottom:815.292160pt;}
.y185{bottom:816.490240pt;}
.y6c{bottom:821.454080pt;}
.y1c9{bottom:822.768640pt;}
.y16b{bottom:823.916800pt;}
.y22f{bottom:824.665600pt;}
.y249{bottom:827.344960pt;}
.y23c{bottom:828.819200pt;}
.y199{bottom:831.217920pt;}
.y155{bottom:832.308480pt;}
.yc7{bottom:832.371200pt;}
.y99{bottom:832.422400pt;}
.y204{bottom:832.624640pt;}
.y12c{bottom:835.130880pt;}
.y184{bottom:836.005120pt;}
.y6b{bottom:841.292800pt;}
.y1c8{bottom:842.931200pt;}
.y248{bottom:843.347200pt;}
.yf3{bottom:844.001920pt;}
.y22e{bottom:844.180480pt;}
.y16a{bottom:844.403200pt;}
.y26{bottom:848.960000pt;}
.y23b{bottom:849.136640pt;}
.y198{bottom:851.380480pt;}
.y154{bottom:851.992320pt;}
.yc6{bottom:852.364800pt;}
.y98{bottom:852.416000pt;}
.y203{bottom:852.618240pt;}
.y12b{bottom:854.814720pt;}
.y183{bottom:855.688960pt;}
.y1{bottom:859.312000pt;}
.y247{bottom:859.349440pt;}
.y6a{bottom:861.131520pt;}
.y1c7{bottom:863.248640pt;}
.y22d{bottom:863.540480pt;}
.y169{bottom:864.889600pt;}
.y26e{bottom:867.696000pt;}
.yf2{bottom:868.000960pt;}
.y23a{bottom:869.623040pt;}
.y197{bottom:871.374080pt;}
.y153{bottom:871.676160pt;}
.yc5{bottom:872.358400pt;}
.y97{bottom:872.409600pt;}
.y202{bottom:872.611840pt;}
.y12a{bottom:874.498560pt;}
.y182{bottom:875.203840pt;}
.y25{bottom:876.488000pt;}
.y69{bottom:881.125120pt;}
.y22c{bottom:883.055360pt;}
.y246{bottom:883.352800pt;}
.y1c6{bottom:883.566080pt;}
.y26d{bottom:883.692000pt;}
.y168{bottom:885.530880pt;}
.y239{bottom:889.940480pt;}
.y152{bottom:891.360000pt;}
.y196{bottom:891.536640pt;}
.yf1{bottom:892.000000pt;}
.yc4{bottom:892.352000pt;}
.y96{bottom:892.403200pt;}
.y201{bottom:892.605440pt;}
.y129{bottom:894.337280pt;}
.y181{bottom:894.887680pt;}
.y26c{bottom:899.688000pt;}
.y68{bottom:900.963840pt;}
.y22b{bottom:902.570240pt;}
.y1c5{bottom:903.728640pt;}
.y24{bottom:904.160000pt;}
.y245{bottom:907.356160pt;}
.y238{bottom:910.426880pt;}
.y195{bottom:911.699200pt;}
.yc3{bottom:912.345600pt;}
.y95{bottom:912.396800pt;}
.y200{bottom:912.599040pt;}
.y167{bottom:914.014720pt;}
.y128{bottom:914.021120pt;}
.y180{bottom:914.402560pt;}
.y26b{bottom:916.008000pt;}
.y151{bottom:920.000800pt;}
.y67{bottom:920.802560pt;}
.y22a{bottom:921.930240pt;}
.y244{bottom:923.358400pt;}
.y1c4{bottom:924.046080pt;}
.y237{bottom:930.744320pt;}
.y194{bottom:931.861760pt;}
.yc2{bottom:932.339200pt;}
.y94{bottom:932.390400pt;}
.y1ff{bottom:932.592640pt;}
.yf0{bottom:932.620800pt;}
.y166{bottom:933.698560pt;}
.y127{bottom:933.704960pt;}
.y17f{bottom:934.086400pt;}
.y66{bottom:940.641280pt;}
.y229{bottom:941.445120pt;}
.y150{bottom:943.363360pt;}
.y1c3{bottom:944.363520pt;}
.y243{bottom:947.361760pt;}
.y26a{bottom:947.688000pt;}
.y236{bottom:951.230720pt;}
.y193{bottom:952.024320pt;}
.yc1{bottom:952.332800pt;}
.y93{bottom:952.384000pt;}
.y1fe{bottom:952.586240pt;}
.yef{bottom:952.614400pt;}
.y165{bottom:953.213440pt;}
.y126{bottom:953.543680pt;}
.y17e{bottom:953.601280pt;}
.y61{bottom:959.040000pt;}
.y65{bottom:960.480000pt;}
.y228{bottom:960.960000pt;}
.y5f{bottom:962.560000pt;}
.y242{bottom:963.680000pt;}
.y269{bottom:963.684000pt;}
.y14f{bottom:966.725920pt;}
.y235{bottom:971.548160pt;}
.y192{bottom:972.186880pt;}
.yc0{bottom:972.326400pt;}
.y92{bottom:972.377600pt;}
.y1c2{bottom:972.523520pt;}
.y1fd{bottom:972.579840pt;}
.yee{bottom:972.608000pt;}
.y164{bottom:972.897280pt;}
.y125{bottom:973.227520pt;}
.y17d{bottom:973.285120pt;}
.y268{bottom:979.680000pt;}
.y227{bottom:989.280000pt;}
.y64{bottom:989.440000pt;}
.y14e{bottom:989.920000pt;}
.y234{bottom:992.034560pt;}
.y191{bottom:992.180480pt;}
.ybf{bottom:992.320000pt;}
.y91{bottom:992.371200pt;}
.y1c1{bottom:992.517120pt;}
.y1fc{bottom:992.573440pt;}
.y163{bottom:992.581120pt;}
.yed{bottom:992.601600pt;}
.y17c{bottom:992.800000pt;}
.y124{bottom:992.911360pt;}
.y267{bottom:996.000000pt;}
.y265{bottom:1052.480000pt;}
.y63{bottom:1053.440000pt;}
.y22{bottom:1060.480000pt;}
.h7{height:28.560000pt;}
.h1a{height:31.992188pt;}
.h14{height:33.125937pt;}
.h10{height:34.400000pt;}
.h1b{height:34.945312pt;}
.h19{height:34.992188pt;}
.ha{height:36.858438pt;}
.h12{height:37.280000pt;}
.hf{height:38.724688pt;}
.h6{height:40.800000pt;}
.h1c{height:40.945500pt;}
.h13{height:41.002500pt;}
.h9{height:41.057500pt;}
.h17{height:41.079900pt;}
.h18{height:41.209820pt;}
.h16{height:41.225180pt;}
.h3{height:42.840000pt;}
.hd{height:42.923750pt;}
.h2{height:48.960000pt;}
.h15{height:54.453247pt;}
.he{height:54.514687pt;}
.hc{height:54.587812pt;}
.h11{height:61.969687pt;}
.h5{height:69.360000pt;}
.hb{height:69.890625pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:272.960000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:13.440000pt;}
.x9{left:60.480000pt;}
.x6{left:75.520000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.xb{left:192.960000pt;}
.x7{left:285.600000pt;}
.x8{left:398.635680pt;}
.x3{left:404.408000pt;}
.x5{left:427.040000pt;}
.xd{left:645.436160pt;}
.xc{left:723.566080pt;}
}




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