
    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_47ef3beb7b042ee680636c5a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9e6795b55727ad39c2ddbdb1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_63f732eaab2e7515a1538846.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8fad2a8c551df6569e11af4e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_57c97a3064f4773622f78c98.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.144467;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_6da5991b8d35851725dbdc39.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.085133;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_c776812ea503f74bf0e9a78a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.976600;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_58869c5cf4fe8d71d7c13d87.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976600;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0f59fa5c3589298a4cc45496.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_dce7f88e2f1d48292f65b89c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.764000;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:ffb;src:url('chunks/assets/font_e0c7b9d875e9b5a935273dbd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_fd9562cff0222533dd452f82.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.704000;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;}
.v1{vertical-align:24.059520px;}
.ls22{letter-spacing:-1.059840px;}
.ls20{letter-spacing:-0.927360px;}
.ls4f{letter-spacing:-0.916560px;}
.ls38{letter-spacing:-0.794880px;}
.ls37{letter-spacing:-0.728640px;}
.ls25{letter-spacing:-0.596160px;}
.ls36{letter-spacing:-0.529920px;}
.lsd{letter-spacing:-0.486000px;}
.ls8{letter-spacing:-0.463680px;}
.lsb{letter-spacing:-0.432000px;}
.ls24{letter-spacing:-0.397440px;}
.ls11{letter-spacing:-0.331200px;}
.ls49{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.264960px;}
.ls4{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.198720px;}
.ls4e{letter-spacing:-0.192960px;}
.ls3{letter-spacing:-0.191520px;}
.lsc{letter-spacing:-0.144000px;}
.ls5c{letter-spacing:-0.132480px;}
.ls5{letter-spacing:-0.119520px;}
.lsa{letter-spacing:-0.066240px;}
.ls2{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.013248px;}
.ls59{letter-spacing:0.026496px;}
.ls9{letter-spacing:0.059760px;}
.ls15{letter-spacing:0.063360px;}
.lsf{letter-spacing:0.066240px;}
.ls52{letter-spacing:0.072000px;}
.ls5b{letter-spacing:0.112608px;}
.ls6{letter-spacing:0.132480px;}
.ls26{letter-spacing:0.139104px;}
.ls4a{letter-spacing:0.144000px;}
.ls5d{letter-spacing:0.152352px;}
.ls4b{letter-spacing:0.156960px;}
.ls41{letter-spacing:0.165600px;}
.ls3f{letter-spacing:0.192096px;}
.ls12{letter-spacing:0.198720px;}
.ls1{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.264960px;}
.ls0{letter-spacing:0.288000px;}
.ls16{letter-spacing:0.316800px;}
.ls23{letter-spacing:0.331200px;}
.lse{letter-spacing:0.397440px;}
.ls58{letter-spacing:0.430560px;}
.ls1b{letter-spacing:0.463680px;}
.ls17{letter-spacing:0.728640px;}
.ls4c{letter-spacing:1.013040px;}
.ls4d{letter-spacing:1.075752px;}
.ls54{letter-spacing:1.192320px;}
.ls1e{letter-spacing:1.920960px;}
.ls53{letter-spacing:1.993824px;}
.ls2d{letter-spacing:2.649600px;}
.ls48{letter-spacing:2.880000px;}
.ls35{letter-spacing:3.312000px;}
.ls3b{letter-spacing:4.769280px;}
.ls1f{letter-spacing:5.497920px;}
.ls5a{letter-spacing:6.226560px;}
.ls2b{letter-spacing:7.683840px;}
.ls1d{letter-spacing:8.412480px;}
.ls2f{letter-spacing:9.803520px;}
.ls47{letter-spacing:10.532160px;}
.ls40{letter-spacing:11.240928px;}
.ls3e{letter-spacing:11.260800px;}
.ls2a{letter-spacing:11.989440px;}
.ls34{letter-spacing:12.029184px;}
.ls39{letter-spacing:12.718080px;}
.ls55{letter-spacing:12.960000px;}
.ls57{letter-spacing:13.446720px;}
.ls42{letter-spacing:14.175360px;}
.ls18{letter-spacing:14.837760px;}
.ls50{letter-spacing:15.685632px;}
.ls3a{letter-spacing:16.361280px;}
.ls2e{letter-spacing:16.877952px;}
.ls1c{letter-spacing:17.752320px;}
.ls46{letter-spacing:18.480960px;}
.ls45{letter-spacing:19.103616px;}
.ls19{letter-spacing:19.209600px;}
.ls51{letter-spacing:20.167200px;}
.ls33{letter-spacing:22.057920px;}
.ls3c{letter-spacing:22.177152px;}
.ls28{letter-spacing:23.515200px;}
.ls56{letter-spacing:24.243840px;}
.ls30{letter-spacing:24.879744px;}
.ls31{letter-spacing:24.972480px;}
.ls3d{letter-spacing:26.363520px;}
.ls29{letter-spacing:30.006720px;}
.ls43{letter-spacing:30.662496px;}
.ls2c{letter-spacing:32.855040px;}
.ls1a{letter-spacing:33.583680px;}
.ls44{letter-spacing:37.160640px;}
.ls27{letter-spacing:44.380800px;}
.ls5e{letter-spacing:196.202880px;}
.ls14{letter-spacing:847.728000px;}
.ls13{letter-spacing:1215.751680px;}
.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;}
}
.ws18b{word-spacing:-66.306240px;}
.ws0{word-spacing:-20.016000px;}
.ws8{word-spacing:-19.872000px;}
.ws1{word-spacing:-19.800000px;}
.ws18a{word-spacing:-19.152000px;}
.ws2d{word-spacing:-18.083520px;}
.ws142{word-spacing:-17.884800px;}
.ws143{word-spacing:-17.818560px;}
.ws116{word-spacing:-17.784000px;}
.ws6{word-spacing:-16.673040px;}
.ws2b{word-spacing:-16.493760px;}
.ws4a{word-spacing:-16.427520px;}
.wsc9{word-spacing:-16.361280px;}
.wsf{word-spacing:-16.295040px;}
.ws87{word-spacing:-16.228800px;}
.wsc{word-spacing:-16.162560px;}
.wsd{word-spacing:-16.096320px;}
.ws86{word-spacing:-16.030080px;}
.ws18c{word-spacing:-15.963840px;}
.wse{word-spacing:-15.897600px;}
.ws2e{word-spacing:-15.831360px;}
.ws2c{word-spacing:-15.765120px;}
.ws89{word-spacing:-15.632640px;}
.ws83{word-spacing:-15.566400px;}
.ws84{word-spacing:-15.500160px;}
.ws85{word-spacing:-15.367680px;}
.ws88{word-spacing:-15.301440px;}
.wsa{word-spacing:-15.228000px;}
.ws4b{word-spacing:-15.168960px;}
.ws2{word-spacing:-15.102720px;}
.ws12b{word-spacing:-15.036480px;}
.ws9{word-spacing:-15.012000px;}
.ws4{word-spacing:-14.970240px;}
.ws7{word-spacing:-14.904000px;}
.ws3{word-spacing:-14.705280px;}
.wsb{word-spacing:-14.526000px;}
.ws5{word-spacing:-14.506560px;}
.ws101{word-spacing:-13.217760px;}
.ws132{word-spacing:-4.769280px;}
.ws3d{word-spacing:-4.371840px;}
.ws154{word-spacing:-4.239360px;}
.ws178{word-spacing:-4.040640px;}
.wsff{word-spacing:-4.032000px;}
.ws27{word-spacing:-3.974400px;}
.ws12d{word-spacing:-3.908160px;}
.wsb8{word-spacing:-3.775680px;}
.ws26{word-spacing:-3.643200px;}
.ws148{word-spacing:-3.600000px;}
.wsb9{word-spacing:-3.510720px;}
.ws16d{word-spacing:-3.378240px;}
.ws160{word-spacing:-3.312000px;}
.ws7d{word-spacing:-3.245760px;}
.ws162{word-spacing:-3.179520px;}
.ws14d{word-spacing:-3.047040px;}
.ws25{word-spacing:-2.914560px;}
.wsfb{word-spacing:-2.880000px;}
.ws1e{word-spacing:-2.782080px;}
.wsfa{word-spacing:-2.592000px;}
.ws8c{word-spacing:-2.583360px;}
.ws139{word-spacing:-2.517120px;}
.ws8a{word-spacing:-2.450880px;}
.wsed{word-spacing:-2.384640px;}
.ws7e{word-spacing:-2.318400px;}
.ws8d{word-spacing:-2.185920px;}
.ws15a{word-spacing:-2.160000px;}
.ws8b{word-spacing:-2.053440px;}
.ws17f{word-spacing:-1.920960px;}
.ws159{word-spacing:-1.872000px;}
.ws169{word-spacing:-1.854720px;}
.ws22{word-spacing:-1.788480px;}
.ws141{word-spacing:-1.722240px;}
.wse6{word-spacing:-1.656000px;}
.ws23{word-spacing:-1.523520px;}
.ws108{word-spacing:-1.391040px;}
.ws30{word-spacing:-1.330560px;}
.ws6b{word-spacing:-1.192320px;}
.wsc0{word-spacing:-1.126080px;}
.ws81{word-spacing:-1.059840px;}
.ws6a{word-spacing:-0.993600px;}
.wse3{word-spacing:-0.927360px;}
.ws14{word-spacing:-0.864000px;}
.ws18e{word-spacing:-0.861120px;}
.ws18{word-spacing:-0.810000px;}
.ws1b{word-spacing:-0.794880px;}
.ws3f{word-spacing:-0.728640px;}
.ws128{word-spacing:-0.720000px;}
.ws100{word-spacing:-0.662400px;}
.ws120{word-spacing:-0.596160px;}
.ws105{word-spacing:-0.529920px;}
.ws80{word-spacing:-0.463680px;}
.ws36{word-spacing:-0.397440px;}
.ws2f{word-spacing:-0.380160px;}
.ws1a{word-spacing:-0.331200px;}
.ws73{word-spacing:-0.264960px;}
.wsb5{word-spacing:-0.216000px;}
.ws37{word-spacing:-0.198720px;}
.ws12{word-spacing:-0.144000px;}
.ws69{word-spacing:-0.132480px;}
.ws17{word-spacing:-0.108000px;}
.ws19{word-spacing:-0.066240px;}
.ws115{word-spacing:-0.059760px;}
.ws10{word-spacing:0.000000px;}
.ws13{word-spacing:0.059760px;}
.ws2a{word-spacing:0.066240px;}
.ws16{word-spacing:0.132480px;}
.wsb6{word-spacing:0.144000px;}
.ws53{word-spacing:0.198720px;}
.wsae{word-spacing:0.264960px;}
.wsf9{word-spacing:0.288000px;}
.ws6c{word-spacing:0.331200px;}
.ws5e{word-spacing:0.397440px;}
.ws15{word-spacing:0.432000px;}
.ws63{word-spacing:0.463680px;}
.ws114{word-spacing:0.482400px;}
.ws5f{word-spacing:0.529920px;}
.ws93{word-spacing:0.596160px;}
.ws1c{word-spacing:0.662400px;}
.ws122{word-spacing:0.720000px;}
.wse1{word-spacing:0.728640px;}
.wsa4{word-spacing:0.794880px;}
.ws111{word-spacing:0.916560px;}
.ws4f{word-spacing:0.927360px;}
.ws11{word-spacing:0.957600px;}
.ws75{word-spacing:0.993600px;}
.ws67{word-spacing:1.059840px;}
.wsf2{word-spacing:1.126080px;}
.ws10f{word-spacing:1.206000px;}
.ws47{word-spacing:1.258560px;}
.ws42{word-spacing:1.391040px;}
.wsee{word-spacing:1.523520px;}
.wsba{word-spacing:1.722240px;}
.ws91{word-spacing:1.854720px;}
.ws112{word-spacing:1.929600px;}
.ws34{word-spacing:1.987200px;}
.ws77{word-spacing:2.119680px;}
.ws102{word-spacing:2.252160px;}
.ws146{word-spacing:2.448000px;}
.ws82{word-spacing:2.450880px;}
.ws76{word-spacing:2.517120px;}
.wsd4{word-spacing:2.583360px;}
.wscc{word-spacing:2.649600px;}
.ws110{word-spacing:2.653200px;}
.ws133{word-spacing:2.715840px;}
.wsfc{word-spacing:2.736000px;}
.ws9d{word-spacing:2.848320px;}
.wsfd{word-spacing:2.880000px;}
.ws33{word-spacing:2.980800px;}
.ws173{word-spacing:3.113280px;}
.ws184{word-spacing:3.168000px;}
.ws43{word-spacing:3.179520px;}
.wse5{word-spacing:3.245760px;}
.ws5b{word-spacing:3.312000px;}
.ws10d{word-spacing:3.328560px;}
.ws29{word-spacing:3.444480px;}
.wsb1{word-spacing:3.576960px;}
.ws149{word-spacing:3.600000px;}
.wsac{word-spacing:3.643200px;}
.ws5a{word-spacing:3.709440px;}
.ws129{word-spacing:3.841920px;}
.ws45{word-spacing:3.974400px;}
.ws10e{word-spacing:4.052160px;}
.ws44{word-spacing:4.106880px;}
.ws158{word-spacing:4.239360px;}
.ws15c{word-spacing:4.320000px;}
.wse4{word-spacing:4.371840px;}
.wsf8{word-spacing:4.504320px;}
.wsd8{word-spacing:4.570560px;}
.wsda{word-spacing:4.703040px;}
.wse7{word-spacing:4.835520px;}
.wsd9{word-spacing:4.968000px;}
.ws117{word-spacing:5.034240px;}
.ws118{word-spacing:5.100480px;}
.ws13d{word-spacing:5.299200px;}
.ws35{word-spacing:5.365440px;}
.wsec{word-spacing:5.431680px;}
.ws7b{word-spacing:5.497920px;}
.wseb{word-spacing:5.564160px;}
.ws1f{word-spacing:5.696640px;}
.ws14c{word-spacing:5.760000px;}
.ws7c{word-spacing:5.829120px;}
.ws130{word-spacing:6.027840px;}
.ws15f{word-spacing:6.048000px;}
.ws41{word-spacing:6.094080px;}
.ws5c{word-spacing:6.160320px;}
.ws16e{word-spacing:6.226560px;}
.ws40{word-spacing:6.292800px;}
.ws74{word-spacing:6.425280px;}
.ws62{word-spacing:6.557760px;}
.ws107{word-spacing:6.756480px;}
.ws11e{word-spacing:6.822720px;}
.wscf{word-spacing:6.888960px;}
.ws13c{word-spacing:6.955200px;}
.ws3e{word-spacing:7.021440px;}
.wsd0{word-spacing:7.153920px;}
.ws187{word-spacing:7.220160px;}
.ws11f{word-spacing:7.286400px;}
.ws109{word-spacing:7.418880px;}
.ws38{word-spacing:7.485120px;}
.ws172{word-spacing:7.551360px;}
.ws9b{word-spacing:7.617600px;}
.ws18d{word-spacing:7.683840px;}
.ws9a{word-spacing:7.750080px;}
.ws60{word-spacing:7.882560px;}
.ws3b{word-spacing:7.948800px;}
.ws3c{word-spacing:8.015040px;}
.ws70{word-spacing:8.346240px;}
.wsdc{word-spacing:8.478720px;}
.ws72{word-spacing:8.611200px;}
.wsa6{word-spacing:8.677440px;}
.ws71{word-spacing:8.743680px;}
.ws11c{word-spacing:8.876160px;}
.ws136{word-spacing:8.942400px;}
.wsb2{word-spacing:9.008640px;}
.wsf3{word-spacing:9.141120px;}
.ws15e{word-spacing:9.216000px;}
.wsb3{word-spacing:9.273600px;}
.ws15d{word-spacing:9.360000px;}
.wsdb{word-spacing:9.406080px;}
.wsf4{word-spacing:9.538560px;}
.wsbe{word-spacing:9.671040px;}
.ws56{word-spacing:9.737280px;}
.ws11b{word-spacing:9.803520px;}
.wsd3{word-spacing:9.869760px;}
.wsc1{word-spacing:10.002240px;}
.ws57{word-spacing:10.134720px;}
.wsb0{word-spacing:10.333440px;}
.wsaf{word-spacing:10.465920px;}
.ws155{word-spacing:10.598400px;}
.wsf1{word-spacing:10.730880px;}
.wsbf{word-spacing:10.863360px;}
.wscd{word-spacing:11.062080px;}
.ws145{word-spacing:11.088000px;}
.wsca{word-spacing:11.128320px;}
.wsce{word-spacing:11.194560px;}
.ws113{word-spacing:11.288160px;}
.ws46{word-spacing:11.327040px;}
.ws39{word-spacing:11.459520px;}
.wscb{word-spacing:11.592000px;}
.wsab{word-spacing:11.923200px;}
.ws150{word-spacing:12.055680px;}
.ws99{word-spacing:12.188160px;}
.ws98{word-spacing:12.320640px;}
.ws12c{word-spacing:12.519360px;}
.ws183{word-spacing:12.528000px;}
.ws14f{word-spacing:12.585600px;}
.ws64{word-spacing:12.651840px;}
.ws3a{word-spacing:12.784320px;}
.ws147{word-spacing:12.816000px;}
.ws20{word-spacing:12.916800px;}
.ws125{word-spacing:12.960000px;}
.ws21{word-spacing:13.049280px;}
.ws168{word-spacing:13.248000px;}
.ws16c{word-spacing:13.380480px;}
.ws151{word-spacing:13.446720px;}
.ws78{word-spacing:13.512960px;}
.ws144{word-spacing:13.645440px;}
.ws58{word-spacing:13.777920px;}
.wsc4{word-spacing:13.976640px;}
.ws4e{word-spacing:14.109120px;}
.ws157{word-spacing:14.175360px;}
.ws4c{word-spacing:14.241600px;}
.ws51{word-spacing:14.374080px;}
.ws50{word-spacing:14.440320px;}
.wsd7{word-spacing:14.506560px;}
.wsa5{word-spacing:14.639040px;}
.ws137{word-spacing:14.705280px;}
.ws4d{word-spacing:14.771520px;}
.ws7a{word-spacing:14.904000px;}
.ws121{word-spacing:14.976000px;}
.ws16a{word-spacing:15.036480px;}
.ws13f{word-spacing:15.102720px;}
.ws79{word-spacing:15.168960px;}
.wsc8{word-spacing:15.367680px;}
.wsbb{word-spacing:15.566400px;}
.ws96{word-spacing:15.632640px;}
.ws153{word-spacing:15.765120px;}
.ws97{word-spacing:15.897600px;}
.ws170{word-spacing:16.096320px;}
.ws188{word-spacing:16.228800px;}
.wsb4{word-spacing:16.361280px;}
.ws8f{word-spacing:16.493760px;}
.wsfe{word-spacing:16.560000px;}
.ws12e{word-spacing:16.626240px;}
.wsa0{word-spacing:16.824960px;}
.ws15b{word-spacing:16.848000px;}
.wsad{word-spacing:16.957440px;}
.ws9f{word-spacing:17.023680px;}
.ws171{word-spacing:17.089920px;}
.wse8{word-spacing:17.222400px;}
.ws9e{word-spacing:17.354880px;}
.wsef{word-spacing:17.553600px;}
.ws6f{word-spacing:17.686080px;}
.ws7f{word-spacing:17.752320px;}
.ws13e{word-spacing:17.818560px;}
.ws66{word-spacing:17.951040px;}
.ws14a{word-spacing:18.000000px;}
.wsbc{word-spacing:18.083520px;}
.ws55{word-spacing:18.216000px;}
.ws106{word-spacing:18.282240px;}
.ws65{word-spacing:18.414720px;}
.ws174{word-spacing:18.547200px;}
.wse0{word-spacing:18.679680px;}
.ws54{word-spacing:18.812160px;}
.ws180{word-spacing:19.010880px;}
.wsf0{word-spacing:19.077120px;}
.wsd1{word-spacing:19.209600px;}
.ws17c{word-spacing:19.275840px;}
.ws52{word-spacing:19.408320px;}
.wsd2{word-spacing:19.540800px;}
.wsd5{word-spacing:19.739520px;}
.ws11a{word-spacing:19.805760px;}
.ws10a{word-spacing:19.872000px;}
.wsd6{word-spacing:20.004480px;}
.ws59{word-spacing:20.136960px;}
.ws127{word-spacing:20.160000px;}
.ws119{word-spacing:20.269440px;}
.ws24{word-spacing:20.401920px;}
.ws126{word-spacing:20.448000px;}
.ws167{word-spacing:20.468160px;}
.ws6d{word-spacing:20.534400px;}
.ws135{word-spacing:20.600640px;}
.ws6e{word-spacing:20.799360px;}
.ws134{word-spacing:20.931840px;}
.ws104{word-spacing:21.395520px;}
.ws31{word-spacing:21.528000px;}
.ws103{word-spacing:21.660480px;}
.ws166{word-spacing:21.859200px;}
.ws161{word-spacing:21.925440px;}
.wsea{word-spacing:21.991680px;}
.ws49{word-spacing:22.124160px;}
.wsc5{word-spacing:22.256640px;}
.ws48{word-spacing:22.389120px;}
.ws14b{word-spacing:22.608000px;}
.wsaa{word-spacing:22.654080px;}
.wsa9{word-spacing:22.720320px;}
.wsa8{word-spacing:22.786560px;}
.wsa7{word-spacing:22.852800px;}
.ws186{word-spacing:22.985280px;}
.ws185{word-spacing:23.040000px;}
.ws152{word-spacing:23.117760px;}
.ws92{word-spacing:23.448960px;}
.ws94{word-spacing:23.713920px;}
.ws176{word-spacing:23.846400px;}
.ws165{word-spacing:24.045120px;}
.wsa3{word-spacing:24.310080px;}
.ws14e{word-spacing:24.442560px;}
.ws90{word-spacing:24.575040px;}
.ws131{word-spacing:24.773760px;}
.wsb7{word-spacing:24.906240px;}
.wsa1{word-spacing:25.303680px;}
.wsa2{word-spacing:25.436160px;}
.ws163{word-spacing:25.701120px;}
.wsc7{word-spacing:26.297280px;}
.ws16b{word-spacing:26.429760px;}
.wsc6{word-spacing:26.562240px;}
.ws10b{word-spacing:26.694720px;}
.wsf5{word-spacing:27.025920px;}
.ws138{word-spacing:27.290880px;}
.wsf6{word-spacing:27.423360px;}
.ws179{word-spacing:27.754560px;}
.ws16f{word-spacing:28.748160px;}
.ws12f{word-spacing:29.079360px;}
.ws68{word-spacing:29.211840px;}
.ws164{word-spacing:29.609280px;}
.ws95{word-spacing:29.808000px;}
.ws10c{word-spacing:30.205440px;}
.ws156{word-spacing:30.337920px;}
.wsdf{word-spacing:30.470400px;}
.wsde{word-spacing:30.602880px;}
.wsdd{word-spacing:30.669120px;}
.ws28{word-spacing:30.934080px;}
.ws177{word-spacing:31.199040px;}
.ws13a{word-spacing:31.265280px;}
.ws13b{word-spacing:31.464000px;}
.ws12a{word-spacing:31.728960px;}
.wsbd{word-spacing:31.993920px;}
.ws9c{word-spacing:32.788800px;}
.ws175{word-spacing:33.053760px;}
.ws182{word-spacing:33.517440px;}
.ws181{word-spacing:33.649920px;}
.ws5d{word-spacing:33.914880px;}
.ws11d{word-spacing:36.299520px;}
.ws140{word-spacing:37.226880px;}
.wse9{word-spacing:37.491840px;}
.ws17b{word-spacing:38.816640px;}
.ws17a{word-spacing:38.949120px;}
.wsf7{word-spacing:39.147840px;}
.wsc3{word-spacing:39.810240px;}
.ws1d{word-spacing:40.008960px;}
.wsc2{word-spacing:40.273920px;}
.ws124{word-spacing:40.968000px;}
.ws123{word-spacing:41.040000px;}
.ws8e{word-spacing:44.314560px;}
.ws189{word-spacing:47.229120px;}
.ws17e{word-spacing:50.938560px;}
.ws17d{word-spacing:51.203520px;}
.ws32{word-spacing:61.735680px;}
.ws61{word-spacing:65.047680px;}
.wse2{word-spacing:77.699520px;}
._d{margin-left:-9.385920px;}
._10{margin-left:-4.129920px;}
._2{margin-left:-2.258496px;}
._1{margin-left:-1.080000px;}
._0{width:1.149120px;}
._4{width:2.471040px;}
._12{width:7.888896px;}
._a{width:8.959680px;}
._c{width:10.074240px;}
._7{width:12.651840px;}
._9{width:14.327424px;}
._b{width:17.386560px;}
._3{width:19.186560px;}
._5{width:24.019776px;}
._8{width:25.119936px;}
._6{width:30.669120px;}
._11{width:33.537600px;}
._f{width:76.593600px;}
._e{width:77.785920px;}
._14{width:1660.608000px;}
._13{width:1840.608000px;}
.fc5{color:rgb(17,85,204);}
.fc3{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc4{color:rgb(13,13,13);}
.fc2{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:3.240000px;}
.y20{bottom:4.860000px;}
.y49{bottom:33.840000px;}
.y223{bottom:37.260000px;}
.y48{bottom:55.800000px;}
.y4a{bottom:64.440000px;}
.y222{bottom:76.500000px;}
.y47{bottom:77.760000px;}
.ye4{bottom:98.836920px;}
.y12f{bottom:100.075680px;}
.yd2{bottom:100.793520px;}
.y105{bottom:100.855440px;}
.y221{bottom:103.695120px;}
.y30{bottom:105.480000px;}
.y98{bottom:107.893440px;}
.y125{bottom:107.948880px;}
.yf8{bottom:111.758400px;}
.y218{bottom:115.200000px;}
.ye3{bottom:115.757100px;}
.yb9{bottom:116.384400px;}
.y131{bottom:116.885520px;}
.y177{bottom:117.812160px;}
.y42{bottom:119.355120px;}
.y12e{bottom:125.280000px;}
.y220{bottom:125.471520px;}
.yd1{bottom:125.815680px;}
.y104{bottom:125.877600px;}
.y151{bottom:129.420000px;}
.ye2{bottom:129.614040px;}
.y97{bottom:133.097760px;}
.y124{bottom:133.153200px;}
.yf7{bottom:136.780560px;}
.y217{bottom:137.160000px;}
.y1ed{bottom:137.703600px;}
.y1ce{bottom:137.710080px;}
.yb8{bottom:141.588720px;}
.y130{bottom:142.089840px;}
.y176{bottom:143.016480px;}
.ye1{bottom:143.290080px;}
.y1a1{bottom:143.645040px;}
.y21f{bottom:147.430080px;}
.y41{bottom:150.140160px;}
.yd0{bottom:151.020000px;}
.y103{bottom:151.081920px;}
.y150{bottom:153.360000px;}
.ye0{bottom:157.147020px;}
.y9c{bottom:158.302080px;}
.y123{bottom:158.357520px;}
.y216{bottom:159.120000px;}
.y12d{bottom:159.295680px;}
.y1ec{bottom:159.480000px;}
.y1cd{bottom:159.486480px;}
.yf6{bottom:161.984880px;}
.y1a0{bottom:165.421440px;}
.yb7{bottom:166.793040px;}
.y96{bottom:167.294160px;}
.y175{bottom:168.038640px;}
.y21e{bottom:169.206480px;}
.ydf{bottom:171.003960px;}
.y102{bottom:176.286240px;}
.y14f{bottom:177.120000px;}
.y215{bottom:181.080000px;}
.y40{bottom:181.107360px;}
.y1cc{bottom:181.445040px;}
.yc7{bottom:183.324240px;}
.ycf{bottom:184.320000px;}
.y12c{bottom:184.500000px;}
.yde{bottom:184.680000px;}
.yf5{bottom:187.189200px;}
.y19f{bottom:187.380000px;}
.y21d{bottom:191.165040px;}
.y95{bottom:192.316320px;}
.y122{bottom:192.553920px;}
.yb6{bottom:200.807280px;}
.ydd{bottom:200.880000px;}
.y101{bottom:201.308400px;}
.y174{bottom:202.235040px;}
.y3f{bottom:202.883760px;}
.y214{bottom:203.040000px;}
.y1cb{bottom:203.221440px;}
.yce{bottom:208.260000px;}
.yc6{bottom:208.528560px;}
.y12b{bottom:208.800000px;}
.y19e{bottom:209.171520px;}
.yf4{bottom:212.211360px;}
.y21c{bottom:212.941440px;}
.y94{bottom:217.520640px;}
.y121{bottom:217.576080px;}
.ydc{bottom:222.840000px;}
.y3e{bottom:224.660160px;}
.y213{bottom:225.000000px;}
.y1ca{bottom:225.180000px;}
.yb5{bottom:226.011600px;}
.y100{bottom:226.512720px;}
.y173{bottom:227.439360px;}
.y19d{bottom:231.130080px;}
.y14e{bottom:231.840000px;}
.ycd{bottom:232.020000px;}
.y12a{bottom:232.560000px;}
.yc5{bottom:233.732880px;}
.y21b{bottom:234.900000px;}
.yf3{bottom:237.415680px;}
.y93{bottom:242.724960px;}
.y120{bottom:242.780400px;}
.ydb{bottom:244.800000px;}
.y3d{bottom:246.618720px;}
.y212{bottom:246.960000px;}
.y1eb{bottom:246.965040px;}
.y1c9{bottom:246.976560px;}
.yb4{bottom:251.215920px;}
.yff{bottom:251.717040px;}
.y172{bottom:252.461520px;}
.y19c{bottom:252.906480px;}
.ycc{bottom:255.780000px;}
.y129{bottom:256.500000px;}
.y21a{bottom:256.681440px;}
.y133{bottom:258.937200px;}
.yf2{bottom:262.620000px;}
.y92{bottom:267.929280px;}
.y11f{bottom:267.984720px;}
.y3c{bottom:268.395120px;}
.y1ea{bottom:268.923600px;}
.y211{bottom:268.930080px;}
.y1c8{bottom:268.935120px;}
.y19b{bottom:274.865040px;}
.y14d{bottom:276.227280px;}
.yb3{bottom:276.238080px;}
.yfe{bottom:276.921360px;}
.y171{bottom:277.665840px;}
.y219{bottom:278.640000px;}
.ycb{bottom:279.540000px;}
.y128{bottom:280.260000px;}
.y3b{bottom:290.353680px;}
.y1e9{bottom:290.700000px;}
.y210{bottom:290.706480px;}
.y1c7{bottom:290.711520px;}
.y91{bottom:292.951440px;}
.y11e{bottom:293.006880px;}
.y5f{bottom:295.920000px;}
.y19a{bottom:296.641440px;}
.y14c{bottom:301.431600px;}
.yb2{bottom:301.442400px;}
.yfd{bottom:301.943520px;}
.yda{bottom:302.018400px;}
.y170{bottom:302.870160px;}
.yca{bottom:303.300000px;}
.y127{bottom:304.020000px;}
.y3a{bottom:312.130080px;}
.y20f{bottom:312.665040px;}
.y1c6{bottom:312.670080px;}
.y90{bottom:318.155760px;}
.y11d{bottom:318.211200px;}
.y199{bottom:318.600000px;}
.yf1{bottom:319.680000px;}
.y14b{bottom:326.635920px;}
.yb1{bottom:326.646720px;}
.yfc{bottom:327.147840px;}
.yd9{bottom:327.222720px;}
.yc9{bottom:327.240000px;}
.y16f{bottom:327.892320px;}
.y4d{bottom:332.820000px;}
.y39{bottom:334.088640px;}
.y20e{bottom:334.441440px;}
.y1c5{bottom:334.446480px;}
.y126{bottom:334.533600px;}
.y198{bottom:340.380000px;}
.y31{bottom:342.720000px;}
.y8f{bottom:343.360080px;}
.y11c{bottom:343.415520px;}
.yf0{bottom:343.620000px;}
.y14a{bottom:351.658080px;}
.yb0{bottom:351.668880px;}
.yfb{bottom:352.352160px;}
.yd8{bottom:352.427040px;}
.y16e{bottom:353.096640px;}
.y38{bottom:355.865040px;}
.y20d{bottom:356.400000px;}
.y1c4{bottom:356.405040px;}
.yc8{bottom:358.020000px;}
.y197{bottom:362.347200px;}
.yef{bottom:367.380000px;}
.y8e{bottom:368.382240px;}
.y34{bottom:374.945040px;}
.y149{bottom:376.862400px;}
.yaf{bottom:376.873200px;}
.yfa{bottom:377.374320px;}
.y11b{bottom:377.429760px;}
.yd7{bottom:377.449200px;}
.y37{bottom:377.823600px;}
.y1c3{bottom:378.181440px;}
.y20c{bottom:378.185040px;}
.y16d{bottom:378.300960px;}
.y196{bottom:384.123600px;}
.yee{bottom:391.140000px;}
.yc4{bottom:393.586560px;}
.y33{bottom:396.721440px;}
.y36{bottom:399.600000px;}
.y1c2{bottom:400.140000px;}
.y20b{bottom:400.143600px;}
.y148{bottom:402.066720px;}
.yae{bottom:402.077520px;}
.y8d{bottom:402.578640px;}
.y11a{bottom:402.634080px;}
.yd6{bottom:402.653520px;}
.y71{bottom:405.720000px;}
.y195{bottom:405.900000px;}
.y16c{bottom:412.315200px;}
.yed{bottom:414.900000px;}
.y32{bottom:418.680000px;}
.yc3{bottom:418.790880px;}
.y20a{bottom:421.920000px;}
.y1c1{bottom:421.923600px;}
.y1e8{bottom:421.930080px;}
.y147{bottom:427.088880px;}
.y8c{bottom:427.782960px;}
.y119{bottom:427.838400px;}
.yd5{bottom:427.857840px;}
.y194{bottom:427.865040px;}
.y35{bottom:429.300000px;}
.yad{bottom:436.091760px;}
.y16b{bottom:437.519520px;}
.yec{bottom:438.660000px;}
.y70{bottom:439.760880px;}
.y1c0{bottom:443.700000px;}
.y1e7{bottom:443.706480px;}
.y209{bottom:443.720160px;}
.yc2{bottom:443.813040px;}
.y193{bottom:449.641440px;}
.y146{bottom:452.293200px;}
.y8b{bottom:452.805120px;}
.y118{bottom:452.860560px;}
.y5e{bottom:457.020000px;}
.yac{bottom:461.296080px;}
.y16a{bottom:462.723840px;}
.y1{bottom:463.680000px;}
.y1bf{bottom:465.660000px;}
.y1e6{bottom:465.665040px;}
.y208{bottom:465.678720px;}
.yc1{bottom:469.017360px;}
.yeb{bottom:469.182960px;}
.y6f{bottom:470.728080px;}
.y192{bottom:471.600000px;}
.y8a{bottom:478.009440px;}
.y117{bottom:478.064880px;}
.y145{bottom:486.489600px;}
.yab{bottom:486.500400px;}
.y106{bottom:487.001520px;}
.y1e5{bottom:487.441440px;}
.y1be{bottom:487.445040px;}
.y207{bottom:487.455120px;}
.y169{bottom:487.746000px;}
.y1f{bottom:490.500000px;}
.y191{bottom:493.395120px;}
.yc0{bottom:494.221680px;}
.y89{bottom:503.213760px;}
.y116{bottom:503.269200px;}
.y6e{bottom:507.441600px;}
.y2d{bottom:508.500000px;}
.y1e4{bottom:509.400000px;}
.y1bd{bottom:509.403600px;}
.y206{bottom:509.413680px;}
.y144{bottom:511.511760px;}
.yaa{bottom:511.522560px;}
.y1e{bottom:512.106480px;}
.yea{bottom:512.205840px;}
.y190{bottom:515.353680px;}
.y168{bottom:521.942400px;}
.y2b{bottom:523.980000px;}
.y88{bottom:528.235920px;}
.y115{bottom:528.291360px;}
.y6d{bottom:529.582320px;}
.y1bc{bottom:531.180000px;}
.y205{bottom:531.190080px;}
.y1e3{bottom:531.210240px;}
.y1d{bottom:532.260000px;}
.y143{bottom:536.716080px;}
.ya9{bottom:536.726880px;}
.y18f{bottom:537.130080px;}
.ye9{bottom:537.228000px;}
.y167{bottom:547.146720px;}
.y1c{bottom:551.160000px;}
.y6c{bottom:551.358720px;}
.y1bb{bottom:553.145040px;}
.y204{bottom:553.148640px;}
.y1e2{bottom:553.168800px;}
.y87{bottom:553.440240px;}
.y114{bottom:553.495680px;}
.y18e{bottom:559.088640px;}
.y142{bottom:561.920400px;}
.ya8{bottom:561.931200px;}
.ye8{bottom:562.432320px;}
.y1b{bottom:568.980000px;}
.y166{bottom:572.351040px;}
.y6b{bottom:573.317280px;}
.y1ba{bottom:574.921440px;}
.y203{bottom:574.925040px;}
.y1e1{bottom:574.945200px;}
.y86{bottom:578.644560px;}
.y113{bottom:578.700000px;}
.y18d{bottom:580.865040px;}
.y141{bottom:586.942560px;}
.ya7{bottom:586.953360px;}
.yd4{bottom:587.636640px;}
.y1a{bottom:593.824320px;}
.y6a{bottom:595.093680px;}
.y1b9{bottom:596.880000px;}
.y202{bottom:596.883600px;}
.y1e0{bottom:596.903760px;}
.y165{bottom:597.373200px;}
.y18c{bottom:602.823600px;}
.y85{bottom:603.666720px;}
.y112{bottom:612.000000px;}
.y140{bottom:612.146880px;}
.ya6{bottom:612.157680px;}
.yd3{bottom:612.658800px;}
.y69{bottom:617.052240px;}
.y19{bottom:618.300000px;}
.y1b8{bottom:618.660000px;}
.y1df{bottom:618.680160px;}
.y164{bottom:622.577520px;}
.y18b{bottom:624.600000px;}
.y84{bottom:628.871040px;}
.y111{bottom:635.760000px;}
.y13f{bottom:637.351200px;}
.y9b{bottom:637.863120px;}
.y18{bottom:638.460000px;}
.y68{bottom:638.828640px;}
.y63{bottom:639.725760px;}
.y201{bottom:640.620000px;}
.y1de{bottom:640.638720px;}
.y1b7{bottom:640.648800px;}
.ya5{bottom:646.354080px;}
.y18a{bottom:646.568640px;}
.y163{bottom:647.781840px;}
.ybf{bottom:654.075360px;}
.y17{bottom:657.354420px;}
.y110{bottom:659.520000px;}
.y67{bottom:660.605040px;}
.y1dd{bottom:662.415120px;}
.y200{bottom:662.420160px;}
.y1b6{bottom:662.425200px;}
.y13e{bottom:662.555520px;}
.y83{bottom:663.067440px;}
.y189{bottom:668.345040px;}
.ya4{bottom:671.558400px;}
.y162{bottom:672.804000px;}
.y16{bottom:674.640000px;}
.ybe{bottom:679.097520px;}
.y62{bottom:679.685040px;}
.y66{bottom:682.563600px;}
.y10f{bottom:683.460000px;}
.y1dc{bottom:684.191520px;}
.y1ff{bottom:684.196560px;}
.y1b5{bottom:684.201600px;}
.y82{bottom:688.089600px;}
.y3{bottom:689.400000px;}
.y188{bottom:690.121440px;}
.y15{bottom:692.460000px;}
.y2{bottom:694.800000px;}
.y13d{bottom:696.569760px;}
.ya3{bottom:696.580560px;}
.y161{bottom:698.008320px;}
.y61{bottom:701.461440px;}
.ybd{bottom:704.301840px;}
.y65{bottom:704.340000px;}
.y1db{bottom:706.150080px;}
.y1fe{bottom:706.155120px;}
.y1b4{bottom:706.160160px;}
.y10e{bottom:707.220000px;}
.y187{bottom:712.080000px;}
.y81{bottom:713.293920px;}
.y14{bottom:717.300000px;}
.y13c{bottom:721.774080px;}
.ya2{bottom:721.784880px;}
.y160{bottom:723.212640px;}
.y60{bottom:723.420000px;}
.y1da{bottom:727.926480px;}
.y1fd{bottom:727.931520px;}
.y1b3{bottom:727.936560px;}
.ybc{bottom:729.506160px;}
.y10d{bottom:730.980000px;}
.y186{bottom:733.875120px;}
.y64{bottom:734.040000px;}
.y80{bottom:738.498240px;}
.y13{bottom:741.780000px;}
.y13b{bottom:746.978400px;}
.ya1{bottom:746.989200px;}
.y15f{bottom:748.234800px;}
.y1d9{bottom:749.885040px;}
.y1fc{bottom:749.890080px;}
.y1b2{bottom:749.895120px;}
.y10c{bottom:754.740000px;}
.y185{bottom:755.833680px;}
.y12{bottom:761.940000px;}
.y7f{bottom:763.520400px;}
.y4c{bottom:768.420000px;}
.y1d8{bottom:771.661440px;}
.y1fb{bottom:771.666480px;}
.y1b1{bottom:771.671520px;}
.y13a{bottom:772.000560px;}
.ya0{bottom:772.011360px;}
.y15e{bottom:773.439120px;}
.y184{bottom:777.610080px;}
.y10b{bottom:778.680000px;}
.y11{bottom:780.834420px;}
.y5d{bottom:782.298000px;}
.y7e{bottom:788.724720px;}
.y1d7{bottom:793.620000px;}
.y1fa{bottom:793.625040px;}
.y1b0{bottom:793.630080px;}
.y139{bottom:797.204880px;}
.y9f{bottom:797.215680px;}
.y10{bottom:798.120000px;}
.y183{bottom:799.568640px;}
.y10a{bottom:802.440000px;}
.y15d{bottom:807.635520px;}
.y7d{bottom:813.929040px;}
.y1f9{bottom:815.401440px;}
.y1af{bottom:815.406480px;}
.yf{bottom:815.760000px;}
.y5c{bottom:818.845920px;}
.y182{bottom:821.345040px;}
.y138{bottom:822.409200px;}
.y9e{bottom:822.420000px;}
.ye7{bottom:822.921120px;}
.y109{bottom:826.200000px;}
.y15c{bottom:832.657680px;}
.y1f8{bottom:837.360000px;}
.y1ae{bottom:837.365040px;}
.y7c{bottom:838.951200px;}
.ye{bottom:841.680000px;}
.y181{bottom:843.303600px;}
.y137{bottom:847.431360px;}
.ye6{bottom:847.943280px;}
.y108{bottom:849.960000px;}
.y9d{bottom:853.740000px;}
.y5b{bottom:855.741600px;}
.y15b{bottom:857.862000px;}
.y1ad{bottom:859.141440px;}
.y1f7{bottom:859.150080px;}
.y7b{bottom:864.155520px;}
.y180{bottom:865.080000px;}
.yd{bottom:866.340000px;}
.y136{bottom:872.635680px;}
.ye5{bottom:873.147600px;}
.y5a{bottom:877.882320px;}
.y107{bottom:880.533360px;}
.y1ac{bottom:881.100000px;}
.y1f6{bottom:881.108640px;}
.y15a{bottom:883.066320px;}
.y7a{bottom:889.359840px;}
.yc{bottom:891.000000px;}
.y17f{bottom:896.400000px;}
.y135{bottom:897.840000px;}
.y9a{bottom:898.351920px;}
.y59{bottom:899.658720px;}
.y1f5{bottom:902.885040px;}
.y1ab{bottom:902.888640px;}
.y1d6{bottom:902.898720px;}
.y159{bottom:908.088480px;}
.yb{bottom:909.900000px;}
.y79{bottom:914.382000px;}
.y58{bottom:921.617280px;}
.y99{bottom:923.374080px;}
.y1f4{bottom:924.843600px;}
.y1aa{bottom:924.847200px;}
.y1d5{bottom:924.857280px;}
.ya{bottom:927.720000px;}
.y134{bottom:929.160000px;}
.y158{bottom:933.292800px;}
.y2f{bottom:936.540000px;}
.ybb{bottom:939.586320px;}
.y17e{bottom:940.840560px;}
.y57{bottom:943.393680px;}
.y1f3{bottom:946.620000px;}
.y1a9{bottom:946.623600px;}
.y1d4{bottom:946.633680px;}
.y78{bottom:948.578400px;}
.y9{bottom:951.151500px;}
.y2e{bottom:956.700000px;}
.yba{bottom:964.790640px;}
.y56{bottom:965.352240px;}
.y17d{bottom:966.044880px;}
.y157{bottom:967.489200px;}
.y1a8{bottom:968.400000px;}
.y1f2{bottom:968.401440px;}
.y1d3{bottom:968.410080px;}
.y2c{bottom:972.180000px;}
.y77{bottom:973.782720px;}
.y8{bottom:979.041600px;}
.y55{bottom:987.128640px;}
.y2a{bottom:987.660000px;}
.yf9{bottom:989.812800px;}
.y1f1{bottom:990.360000px;}
.y1a7{bottom:990.365040px;}
.y1d2{bottom:990.368640px;}
.y17c{bottom:991.249200px;}
.y156{bottom:992.511360px;}
.y76{bottom:998.804880px;}
.y29{bottom:1003.126500px;}
.y7{bottom:1006.572600px;}
.y54{bottom:1008.905040px;}
.y1f0{bottom:1012.140000px;}
.y1a6{bottom:1012.141440px;}
.y1d1{bottom:1012.145040px;}
.y132{bottom:1015.017120px;}
.y17b{bottom:1016.271360px;}
.y155{bottom:1017.715680px;}
.y28{bottom:1018.611000px;}
.y75{bottom:1024.009200px;}
.y50{bottom:1027.985040px;}
.y53{bottom:1030.863600px;}
.y1a5{bottom:1034.100000px;}
.y1d0{bottom:1034.103600px;}
.y1ef{bottom:1034.108640px;}
.y27{bottom:1034.271000px;}
.y6{bottom:1034.295120px;}
.y17a{bottom:1041.475680px;}
.y154{bottom:1042.920000px;}
.y74{bottom:1049.213520px;}
.y26{bottom:1049.755500px;}
.y4f{bottom:1049.761440px;}
.y52{bottom:1052.640000px;}
.y1a4{bottom:1055.880000px;}
.y1ee{bottom:1055.885040px;}
.y5{bottom:1061.826120px;}
.y25{bottom:1065.240000px;}
.y179{bottom:1066.680000px;}
.y4e{bottom:1071.720000px;}
.y73{bottom:1074.235680px;}
.y153{bottom:1076.220000px;}
.y1cf{bottom:1077.840000px;}
.y1a3{bottom:1077.843600px;}
.y51{bottom:1082.340000px;}
.y24{bottom:1087.560000px;}
.y178{bottom:1098.000000px;}
.y72{bottom:1099.440000px;}
.y1a2{bottom:1099.620000px;}
.y152{bottom:1099.980000px;}
.y4{bottom:1107.360000px;}
.y23{bottom:1117.440000px;}
.y46{bottom:1121.580000px;}
.y22{bottom:1138.135500px;}
.y45{bottom:1143.540000px;}
.y21{bottom:1158.480000px;}
.y44{bottom:1165.500000px;}
.y43{bottom:1186.020000px;}
.h12{height:17.100000px;}
.hc{height:35.991211px;}
.h18{height:43.246406px;}
.h9{height:47.545312px;}
.hd{height:48.410156px;}
.hb{height:48.752930px;}
.h16{height:50.027344px;}
.h19{height:50.647104px;}
.h3{height:51.679688px;}
.h7{height:53.573906px;}
.h15{height:55.051200px;}
.h1a{height:55.396800px;}
.h11{height:56.801250px;}
.h10{height:59.174400px;}
.ha{height:59.383125px;}
.h17{height:59.473920px;}
.hf{height:59.803594px;}
.h5{height:63.824414px;}
.h8{height:64.546875px;}
.h1b{height:64.998146px;}
.h6{height:65.003906px;}
.h4{height:86.455195px;}
.h14{height:311.400000px;}
.h13{height:348.300000px;}
.he{height:358.201500px;}
.h2{height:711.900000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:16.740000px;}
.w4{width:224.640000px;}
.w2{width:265.860000px;}
.w3{width:349.380000px;}
.w5{width:574.020000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x14{left:20.700000px;}
.x1{left:72.720000px;}
.x1d{left:84.427920px;}
.x12{left:91.077840px;}
.x21{left:98.640000px;}
.x10{left:105.660000px;}
.x1b{left:109.615680px;}
.x11{left:111.960000px;}
.x17{left:116.640000px;}
.x18{left:128.880000px;}
.x15{left:133.380000px;}
.x20{left:148.872960px;}
.x1e{left:159.471360px;}
.x1a{left:160.560000px;}
.x1c{left:171.715680px;}
.x13{left:203.222160px;}
.x19{left:211.497840px;}
.xd{left:220.140000px;}
.x2{left:265.860000px;}
.x5{left:273.960000px;}
.x4{left:286.380000px;}
.x1f{left:322.380000px;}
.x16{left:438.120000px;}
.xc{left:615.240000px;}
.xf{left:623.340000px;}
.x9{left:678.595500px;}
.xb{left:700.200000px;}
.xe{left:703.440000px;}
.xa{left:713.142000px;}
.x8{left:731.880000px;}
.x7{left:749.160000px;}
.x22{left:805.320000px;}
.x6{left:831.780000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.386240pt;}
.ls22{letter-spacing:-0.942080pt;}
.ls20{letter-spacing:-0.824320pt;}
.ls4f{letter-spacing:-0.814720pt;}
.ls38{letter-spacing:-0.706560pt;}
.ls37{letter-spacing:-0.647680pt;}
.ls25{letter-spacing:-0.529920pt;}
.ls36{letter-spacing:-0.471040pt;}
.lsd{letter-spacing:-0.432000pt;}
.ls8{letter-spacing:-0.412160pt;}
.lsb{letter-spacing:-0.384000pt;}
.ls24{letter-spacing:-0.353280pt;}
.ls11{letter-spacing:-0.294400pt;}
.ls49{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.235520pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.176640pt;}
.ls4e{letter-spacing:-0.171520pt;}
.ls3{letter-spacing:-0.170240pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls5c{letter-spacing:-0.117760pt;}
.ls5{letter-spacing:-0.106240pt;}
.lsa{letter-spacing:-0.058880pt;}
.ls2{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.011776pt;}
.ls59{letter-spacing:0.023552pt;}
.ls9{letter-spacing:0.053120pt;}
.ls15{letter-spacing:0.056320pt;}
.lsf{letter-spacing:0.058880pt;}
.ls52{letter-spacing:0.064000pt;}
.ls5b{letter-spacing:0.100096pt;}
.ls6{letter-spacing:0.117760pt;}
.ls26{letter-spacing:0.123648pt;}
.ls4a{letter-spacing:0.128000pt;}
.ls5d{letter-spacing:0.135424pt;}
.ls4b{letter-spacing:0.139520pt;}
.ls41{letter-spacing:0.147200pt;}
.ls3f{letter-spacing:0.170752pt;}
.ls12{letter-spacing:0.176640pt;}
.ls1{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.235520pt;}
.ls0{letter-spacing:0.256000pt;}
.ls16{letter-spacing:0.281600pt;}
.ls23{letter-spacing:0.294400pt;}
.lse{letter-spacing:0.353280pt;}
.ls58{letter-spacing:0.382720pt;}
.ls1b{letter-spacing:0.412160pt;}
.ls17{letter-spacing:0.647680pt;}
.ls4c{letter-spacing:0.900480pt;}
.ls4d{letter-spacing:0.956224pt;}
.ls54{letter-spacing:1.059840pt;}
.ls1e{letter-spacing:1.707520pt;}
.ls53{letter-spacing:1.772288pt;}
.ls2d{letter-spacing:2.355200pt;}
.ls48{letter-spacing:2.560000pt;}
.ls35{letter-spacing:2.944000pt;}
.ls3b{letter-spacing:4.239360pt;}
.ls1f{letter-spacing:4.887040pt;}
.ls5a{letter-spacing:5.534720pt;}
.ls2b{letter-spacing:6.830080pt;}
.ls1d{letter-spacing:7.477760pt;}
.ls2f{letter-spacing:8.714240pt;}
.ls47{letter-spacing:9.361920pt;}
.ls40{letter-spacing:9.991936pt;}
.ls3e{letter-spacing:10.009600pt;}
.ls2a{letter-spacing:10.657280pt;}
.ls34{letter-spacing:10.692608pt;}
.ls39{letter-spacing:11.304960pt;}
.ls55{letter-spacing:11.520000pt;}
.ls57{letter-spacing:11.952640pt;}
.ls42{letter-spacing:12.600320pt;}
.ls18{letter-spacing:13.189120pt;}
.ls50{letter-spacing:13.942784pt;}
.ls3a{letter-spacing:14.543360pt;}
.ls2e{letter-spacing:15.002624pt;}
.ls1c{letter-spacing:15.779840pt;}
.ls46{letter-spacing:16.427520pt;}
.ls45{letter-spacing:16.980992pt;}
.ls19{letter-spacing:17.075200pt;}
.ls51{letter-spacing:17.926400pt;}
.ls33{letter-spacing:19.607040pt;}
.ls3c{letter-spacing:19.713024pt;}
.ls28{letter-spacing:20.902400pt;}
.ls56{letter-spacing:21.550080pt;}
.ls30{letter-spacing:22.115328pt;}
.ls31{letter-spacing:22.197760pt;}
.ls3d{letter-spacing:23.434240pt;}
.ls29{letter-spacing:26.672640pt;}
.ls43{letter-spacing:27.255552pt;}
.ls2c{letter-spacing:29.204480pt;}
.ls1a{letter-spacing:29.852160pt;}
.ls44{letter-spacing:33.031680pt;}
.ls27{letter-spacing:39.449600pt;}
.ls5e{letter-spacing:174.402560pt;}
.ls14{letter-spacing:753.536000pt;}
.ls13{letter-spacing:1080.668160pt;}
.ws18b{word-spacing:-58.938880pt;}
.ws0{word-spacing:-17.792000pt;}
.ws8{word-spacing:-17.664000pt;}
.ws1{word-spacing:-17.600000pt;}
.ws18a{word-spacing:-17.024000pt;}
.ws2d{word-spacing:-16.074240pt;}
.ws142{word-spacing:-15.897600pt;}
.ws143{word-spacing:-15.838720pt;}
.ws116{word-spacing:-15.808000pt;}
.ws6{word-spacing:-14.820480pt;}
.ws2b{word-spacing:-14.661120pt;}
.ws4a{word-spacing:-14.602240pt;}
.wsc9{word-spacing:-14.543360pt;}
.wsf{word-spacing:-14.484480pt;}
.ws87{word-spacing:-14.425600pt;}
.wsc{word-spacing:-14.366720pt;}
.wsd{word-spacing:-14.307840pt;}
.ws86{word-spacing:-14.248960pt;}
.ws18c{word-spacing:-14.190080pt;}
.wse{word-spacing:-14.131200pt;}
.ws2e{word-spacing:-14.072320pt;}
.ws2c{word-spacing:-14.013440pt;}
.ws89{word-spacing:-13.895680pt;}
.ws83{word-spacing:-13.836800pt;}
.ws84{word-spacing:-13.777920pt;}
.ws85{word-spacing:-13.660160pt;}
.ws88{word-spacing:-13.601280pt;}
.wsa{word-spacing:-13.536000pt;}
.ws4b{word-spacing:-13.483520pt;}
.ws2{word-spacing:-13.424640pt;}
.ws12b{word-spacing:-13.365760pt;}
.ws9{word-spacing:-13.344000pt;}
.ws4{word-spacing:-13.306880pt;}
.ws7{word-spacing:-13.248000pt;}
.ws3{word-spacing:-13.071360pt;}
.wsb{word-spacing:-12.912000pt;}
.ws5{word-spacing:-12.894720pt;}
.ws101{word-spacing:-11.749120pt;}
.ws132{word-spacing:-4.239360pt;}
.ws3d{word-spacing:-3.886080pt;}
.ws154{word-spacing:-3.768320pt;}
.ws178{word-spacing:-3.591680pt;}
.wsff{word-spacing:-3.584000pt;}
.ws27{word-spacing:-3.532800pt;}
.ws12d{word-spacing:-3.473920pt;}
.wsb8{word-spacing:-3.356160pt;}
.ws26{word-spacing:-3.238400pt;}
.ws148{word-spacing:-3.200000pt;}
.wsb9{word-spacing:-3.120640pt;}
.ws16d{word-spacing:-3.002880pt;}
.ws160{word-spacing:-2.944000pt;}
.ws7d{word-spacing:-2.885120pt;}
.ws162{word-spacing:-2.826240pt;}
.ws14d{word-spacing:-2.708480pt;}
.ws25{word-spacing:-2.590720pt;}
.wsfb{word-spacing:-2.560000pt;}
.ws1e{word-spacing:-2.472960pt;}
.wsfa{word-spacing:-2.304000pt;}
.ws8c{word-spacing:-2.296320pt;}
.ws139{word-spacing:-2.237440pt;}
.ws8a{word-spacing:-2.178560pt;}
.wsed{word-spacing:-2.119680pt;}
.ws7e{word-spacing:-2.060800pt;}
.ws8d{word-spacing:-1.943040pt;}
.ws15a{word-spacing:-1.920000pt;}
.ws8b{word-spacing:-1.825280pt;}
.ws17f{word-spacing:-1.707520pt;}
.ws159{word-spacing:-1.664000pt;}
.ws169{word-spacing:-1.648640pt;}
.ws22{word-spacing:-1.589760pt;}
.ws141{word-spacing:-1.530880pt;}
.wse6{word-spacing:-1.472000pt;}
.ws23{word-spacing:-1.354240pt;}
.ws108{word-spacing:-1.236480pt;}
.ws30{word-spacing:-1.182720pt;}
.ws6b{word-spacing:-1.059840pt;}
.wsc0{word-spacing:-1.000960pt;}
.ws81{word-spacing:-0.942080pt;}
.ws6a{word-spacing:-0.883200pt;}
.wse3{word-spacing:-0.824320pt;}
.ws14{word-spacing:-0.768000pt;}
.ws18e{word-spacing:-0.765440pt;}
.ws18{word-spacing:-0.720000pt;}
.ws1b{word-spacing:-0.706560pt;}
.ws3f{word-spacing:-0.647680pt;}
.ws128{word-spacing:-0.640000pt;}
.ws100{word-spacing:-0.588800pt;}
.ws120{word-spacing:-0.529920pt;}
.ws105{word-spacing:-0.471040pt;}
.ws80{word-spacing:-0.412160pt;}
.ws36{word-spacing:-0.353280pt;}
.ws2f{word-spacing:-0.337920pt;}
.ws1a{word-spacing:-0.294400pt;}
.ws73{word-spacing:-0.235520pt;}
.wsb5{word-spacing:-0.192000pt;}
.ws37{word-spacing:-0.176640pt;}
.ws12{word-spacing:-0.128000pt;}
.ws69{word-spacing:-0.117760pt;}
.ws17{word-spacing:-0.096000pt;}
.ws19{word-spacing:-0.058880pt;}
.ws115{word-spacing:-0.053120pt;}
.ws10{word-spacing:0.000000pt;}
.ws13{word-spacing:0.053120pt;}
.ws2a{word-spacing:0.058880pt;}
.ws16{word-spacing:0.117760pt;}
.wsb6{word-spacing:0.128000pt;}
.ws53{word-spacing:0.176640pt;}
.wsae{word-spacing:0.235520pt;}
.wsf9{word-spacing:0.256000pt;}
.ws6c{word-spacing:0.294400pt;}
.ws5e{word-spacing:0.353280pt;}
.ws15{word-spacing:0.384000pt;}
.ws63{word-spacing:0.412160pt;}
.ws114{word-spacing:0.428800pt;}
.ws5f{word-spacing:0.471040pt;}
.ws93{word-spacing:0.529920pt;}
.ws1c{word-spacing:0.588800pt;}
.ws122{word-spacing:0.640000pt;}
.wse1{word-spacing:0.647680pt;}
.wsa4{word-spacing:0.706560pt;}
.ws111{word-spacing:0.814720pt;}
.ws4f{word-spacing:0.824320pt;}
.ws11{word-spacing:0.851200pt;}
.ws75{word-spacing:0.883200pt;}
.ws67{word-spacing:0.942080pt;}
.wsf2{word-spacing:1.000960pt;}
.ws10f{word-spacing:1.072000pt;}
.ws47{word-spacing:1.118720pt;}
.ws42{word-spacing:1.236480pt;}
.wsee{word-spacing:1.354240pt;}
.wsba{word-spacing:1.530880pt;}
.ws91{word-spacing:1.648640pt;}
.ws112{word-spacing:1.715200pt;}
.ws34{word-spacing:1.766400pt;}
.ws77{word-spacing:1.884160pt;}
.ws102{word-spacing:2.001920pt;}
.ws146{word-spacing:2.176000pt;}
.ws82{word-spacing:2.178560pt;}
.ws76{word-spacing:2.237440pt;}
.wsd4{word-spacing:2.296320pt;}
.wscc{word-spacing:2.355200pt;}
.ws110{word-spacing:2.358400pt;}
.ws133{word-spacing:2.414080pt;}
.wsfc{word-spacing:2.432000pt;}
.ws9d{word-spacing:2.531840pt;}
.wsfd{word-spacing:2.560000pt;}
.ws33{word-spacing:2.649600pt;}
.ws173{word-spacing:2.767360pt;}
.ws184{word-spacing:2.816000pt;}
.ws43{word-spacing:2.826240pt;}
.wse5{word-spacing:2.885120pt;}
.ws5b{word-spacing:2.944000pt;}
.ws10d{word-spacing:2.958720pt;}
.ws29{word-spacing:3.061760pt;}
.wsb1{word-spacing:3.179520pt;}
.ws149{word-spacing:3.200000pt;}
.wsac{word-spacing:3.238400pt;}
.ws5a{word-spacing:3.297280pt;}
.ws129{word-spacing:3.415040pt;}
.ws45{word-spacing:3.532800pt;}
.ws10e{word-spacing:3.601920pt;}
.ws44{word-spacing:3.650560pt;}
.ws158{word-spacing:3.768320pt;}
.ws15c{word-spacing:3.840000pt;}
.wse4{word-spacing:3.886080pt;}
.wsf8{word-spacing:4.003840pt;}
.wsd8{word-spacing:4.062720pt;}
.wsda{word-spacing:4.180480pt;}
.wse7{word-spacing:4.298240pt;}
.wsd9{word-spacing:4.416000pt;}
.ws117{word-spacing:4.474880pt;}
.ws118{word-spacing:4.533760pt;}
.ws13d{word-spacing:4.710400pt;}
.ws35{word-spacing:4.769280pt;}
.wsec{word-spacing:4.828160pt;}
.ws7b{word-spacing:4.887040pt;}
.wseb{word-spacing:4.945920pt;}
.ws1f{word-spacing:5.063680pt;}
.ws14c{word-spacing:5.120000pt;}
.ws7c{word-spacing:5.181440pt;}
.ws130{word-spacing:5.358080pt;}
.ws15f{word-spacing:5.376000pt;}
.ws41{word-spacing:5.416960pt;}
.ws5c{word-spacing:5.475840pt;}
.ws16e{word-spacing:5.534720pt;}
.ws40{word-spacing:5.593600pt;}
.ws74{word-spacing:5.711360pt;}
.ws62{word-spacing:5.829120pt;}
.ws107{word-spacing:6.005760pt;}
.ws11e{word-spacing:6.064640pt;}
.wscf{word-spacing:6.123520pt;}
.ws13c{word-spacing:6.182400pt;}
.ws3e{word-spacing:6.241280pt;}
.wsd0{word-spacing:6.359040pt;}
.ws187{word-spacing:6.417920pt;}
.ws11f{word-spacing:6.476800pt;}
.ws109{word-spacing:6.594560pt;}
.ws38{word-spacing:6.653440pt;}
.ws172{word-spacing:6.712320pt;}
.ws9b{word-spacing:6.771200pt;}
.ws18d{word-spacing:6.830080pt;}
.ws9a{word-spacing:6.888960pt;}
.ws60{word-spacing:7.006720pt;}
.ws3b{word-spacing:7.065600pt;}
.ws3c{word-spacing:7.124480pt;}
.ws70{word-spacing:7.418880pt;}
.wsdc{word-spacing:7.536640pt;}
.ws72{word-spacing:7.654400pt;}
.wsa6{word-spacing:7.713280pt;}
.ws71{word-spacing:7.772160pt;}
.ws11c{word-spacing:7.889920pt;}
.ws136{word-spacing:7.948800pt;}
.wsb2{word-spacing:8.007680pt;}
.wsf3{word-spacing:8.125440pt;}
.ws15e{word-spacing:8.192000pt;}
.wsb3{word-spacing:8.243200pt;}
.ws15d{word-spacing:8.320000pt;}
.wsdb{word-spacing:8.360960pt;}
.wsf4{word-spacing:8.478720pt;}
.wsbe{word-spacing:8.596480pt;}
.ws56{word-spacing:8.655360pt;}
.ws11b{word-spacing:8.714240pt;}
.wsd3{word-spacing:8.773120pt;}
.wsc1{word-spacing:8.890880pt;}
.ws57{word-spacing:9.008640pt;}
.wsb0{word-spacing:9.185280pt;}
.wsaf{word-spacing:9.303040pt;}
.ws155{word-spacing:9.420800pt;}
.wsf1{word-spacing:9.538560pt;}
.wsbf{word-spacing:9.656320pt;}
.wscd{word-spacing:9.832960pt;}
.ws145{word-spacing:9.856000pt;}
.wsca{word-spacing:9.891840pt;}
.wsce{word-spacing:9.950720pt;}
.ws113{word-spacing:10.033920pt;}
.ws46{word-spacing:10.068480pt;}
.ws39{word-spacing:10.186240pt;}
.wscb{word-spacing:10.304000pt;}
.wsab{word-spacing:10.598400pt;}
.ws150{word-spacing:10.716160pt;}
.ws99{word-spacing:10.833920pt;}
.ws98{word-spacing:10.951680pt;}
.ws12c{word-spacing:11.128320pt;}
.ws183{word-spacing:11.136000pt;}
.ws14f{word-spacing:11.187200pt;}
.ws64{word-spacing:11.246080pt;}
.ws3a{word-spacing:11.363840pt;}
.ws147{word-spacing:11.392000pt;}
.ws20{word-spacing:11.481600pt;}
.ws125{word-spacing:11.520000pt;}
.ws21{word-spacing:11.599360pt;}
.ws168{word-spacing:11.776000pt;}
.ws16c{word-spacing:11.893760pt;}
.ws151{word-spacing:11.952640pt;}
.ws78{word-spacing:12.011520pt;}
.ws144{word-spacing:12.129280pt;}
.ws58{word-spacing:12.247040pt;}
.wsc4{word-spacing:12.423680pt;}
.ws4e{word-spacing:12.541440pt;}
.ws157{word-spacing:12.600320pt;}
.ws4c{word-spacing:12.659200pt;}
.ws51{word-spacing:12.776960pt;}
.ws50{word-spacing:12.835840pt;}
.wsd7{word-spacing:12.894720pt;}
.wsa5{word-spacing:13.012480pt;}
.ws137{word-spacing:13.071360pt;}
.ws4d{word-spacing:13.130240pt;}
.ws7a{word-spacing:13.248000pt;}
.ws121{word-spacing:13.312000pt;}
.ws16a{word-spacing:13.365760pt;}
.ws13f{word-spacing:13.424640pt;}
.ws79{word-spacing:13.483520pt;}
.wsc8{word-spacing:13.660160pt;}
.wsbb{word-spacing:13.836800pt;}
.ws96{word-spacing:13.895680pt;}
.ws153{word-spacing:14.013440pt;}
.ws97{word-spacing:14.131200pt;}
.ws170{word-spacing:14.307840pt;}
.ws188{word-spacing:14.425600pt;}
.wsb4{word-spacing:14.543360pt;}
.ws8f{word-spacing:14.661120pt;}
.wsfe{word-spacing:14.720000pt;}
.ws12e{word-spacing:14.778880pt;}
.wsa0{word-spacing:14.955520pt;}
.ws15b{word-spacing:14.976000pt;}
.wsad{word-spacing:15.073280pt;}
.ws9f{word-spacing:15.132160pt;}
.ws171{word-spacing:15.191040pt;}
.wse8{word-spacing:15.308800pt;}
.ws9e{word-spacing:15.426560pt;}
.wsef{word-spacing:15.603200pt;}
.ws6f{word-spacing:15.720960pt;}
.ws7f{word-spacing:15.779840pt;}
.ws13e{word-spacing:15.838720pt;}
.ws66{word-spacing:15.956480pt;}
.ws14a{word-spacing:16.000000pt;}
.wsbc{word-spacing:16.074240pt;}
.ws55{word-spacing:16.192000pt;}
.ws106{word-spacing:16.250880pt;}
.ws65{word-spacing:16.368640pt;}
.ws174{word-spacing:16.486400pt;}
.wse0{word-spacing:16.604160pt;}
.ws54{word-spacing:16.721920pt;}
.ws180{word-spacing:16.898560pt;}
.wsf0{word-spacing:16.957440pt;}
.wsd1{word-spacing:17.075200pt;}
.ws17c{word-spacing:17.134080pt;}
.ws52{word-spacing:17.251840pt;}
.wsd2{word-spacing:17.369600pt;}
.wsd5{word-spacing:17.546240pt;}
.ws11a{word-spacing:17.605120pt;}
.ws10a{word-spacing:17.664000pt;}
.wsd6{word-spacing:17.781760pt;}
.ws59{word-spacing:17.899520pt;}
.ws127{word-spacing:17.920000pt;}
.ws119{word-spacing:18.017280pt;}
.ws24{word-spacing:18.135040pt;}
.ws126{word-spacing:18.176000pt;}
.ws167{word-spacing:18.193920pt;}
.ws6d{word-spacing:18.252800pt;}
.ws135{word-spacing:18.311680pt;}
.ws6e{word-spacing:18.488320pt;}
.ws134{word-spacing:18.606080pt;}
.ws104{word-spacing:19.018240pt;}
.ws31{word-spacing:19.136000pt;}
.ws103{word-spacing:19.253760pt;}
.ws166{word-spacing:19.430400pt;}
.ws161{word-spacing:19.489280pt;}
.wsea{word-spacing:19.548160pt;}
.ws49{word-spacing:19.665920pt;}
.wsc5{word-spacing:19.783680pt;}
.ws48{word-spacing:19.901440pt;}
.ws14b{word-spacing:20.096000pt;}
.wsaa{word-spacing:20.136960pt;}
.wsa9{word-spacing:20.195840pt;}
.wsa8{word-spacing:20.254720pt;}
.wsa7{word-spacing:20.313600pt;}
.ws186{word-spacing:20.431360pt;}
.ws185{word-spacing:20.480000pt;}
.ws152{word-spacing:20.549120pt;}
.ws92{word-spacing:20.843520pt;}
.ws94{word-spacing:21.079040pt;}
.ws176{word-spacing:21.196800pt;}
.ws165{word-spacing:21.373440pt;}
.wsa3{word-spacing:21.608960pt;}
.ws14e{word-spacing:21.726720pt;}
.ws90{word-spacing:21.844480pt;}
.ws131{word-spacing:22.021120pt;}
.wsb7{word-spacing:22.138880pt;}
.wsa1{word-spacing:22.492160pt;}
.wsa2{word-spacing:22.609920pt;}
.ws163{word-spacing:22.845440pt;}
.wsc7{word-spacing:23.375360pt;}
.ws16b{word-spacing:23.493120pt;}
.wsc6{word-spacing:23.610880pt;}
.ws10b{word-spacing:23.728640pt;}
.wsf5{word-spacing:24.023040pt;}
.ws138{word-spacing:24.258560pt;}
.wsf6{word-spacing:24.376320pt;}
.ws179{word-spacing:24.670720pt;}
.ws16f{word-spacing:25.553920pt;}
.ws12f{word-spacing:25.848320pt;}
.ws68{word-spacing:25.966080pt;}
.ws164{word-spacing:26.319360pt;}
.ws95{word-spacing:26.496000pt;}
.ws10c{word-spacing:26.849280pt;}
.ws156{word-spacing:26.967040pt;}
.wsdf{word-spacing:27.084800pt;}
.wsde{word-spacing:27.202560pt;}
.wsdd{word-spacing:27.261440pt;}
.ws28{word-spacing:27.496960pt;}
.ws177{word-spacing:27.732480pt;}
.ws13a{word-spacing:27.791360pt;}
.ws13b{word-spacing:27.968000pt;}
.ws12a{word-spacing:28.203520pt;}
.wsbd{word-spacing:28.439040pt;}
.ws9c{word-spacing:29.145600pt;}
.ws175{word-spacing:29.381120pt;}
.ws182{word-spacing:29.793280pt;}
.ws181{word-spacing:29.911040pt;}
.ws5d{word-spacing:30.146560pt;}
.ws11d{word-spacing:32.266240pt;}
.ws140{word-spacing:33.090560pt;}
.wse9{word-spacing:33.326080pt;}
.ws17b{word-spacing:34.503680pt;}
.ws17a{word-spacing:34.621440pt;}
.wsf7{word-spacing:34.798080pt;}
.wsc3{word-spacing:35.386880pt;}
.ws1d{word-spacing:35.563520pt;}
.wsc2{word-spacing:35.799040pt;}
.ws124{word-spacing:36.416000pt;}
.ws123{word-spacing:36.480000pt;}
.ws8e{word-spacing:39.390720pt;}
.ws189{word-spacing:41.981440pt;}
.ws17e{word-spacing:45.278720pt;}
.ws17d{word-spacing:45.514240pt;}
.ws32{word-spacing:54.876160pt;}
.ws61{word-spacing:57.820160pt;}
.wse2{word-spacing:69.066240pt;}
._d{margin-left:-8.343040pt;}
._10{margin-left:-3.671040pt;}
._2{margin-left:-2.007552pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.021440pt;}
._4{width:2.196480pt;}
._12{width:7.012352pt;}
._a{width:7.964160pt;}
._c{width:8.954880pt;}
._7{width:11.246080pt;}
._9{width:12.735488pt;}
._b{width:15.454720pt;}
._3{width:17.054720pt;}
._5{width:21.350912pt;}
._8{width:22.328832pt;}
._6{width:27.261440pt;}
._11{width:29.811200pt;}
._f{width:68.083200pt;}
._e{width:69.143040pt;}
._14{width:1476.096000pt;}
._13{width:1636.096000pt;}
.fs6{font-size:34.560000pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:2.880000pt;}
.y20{bottom:4.320000pt;}
.y49{bottom:30.080000pt;}
.y223{bottom:33.120000pt;}
.y48{bottom:49.600000pt;}
.y4a{bottom:57.280000pt;}
.y222{bottom:68.000000pt;}
.y47{bottom:69.120000pt;}
.ye4{bottom:87.855040pt;}
.y12f{bottom:88.956160pt;}
.yd2{bottom:89.594240pt;}
.y105{bottom:89.649280pt;}
.y221{bottom:92.173440pt;}
.y30{bottom:93.760000pt;}
.y98{bottom:95.905280pt;}
.y125{bottom:95.954560pt;}
.yf8{bottom:99.340800pt;}
.y218{bottom:102.400000pt;}
.ye3{bottom:102.895200pt;}
.yb9{bottom:103.452800pt;}
.y131{bottom:103.898240pt;}
.y177{bottom:104.721920pt;}
.y42{bottom:106.093440pt;}
.y12e{bottom:111.360000pt;}
.y220{bottom:111.530240pt;}
.yd1{bottom:111.836160pt;}
.y104{bottom:111.891200pt;}
.y151{bottom:115.040000pt;}
.ye2{bottom:115.212480pt;}
.y97{bottom:118.309120pt;}
.y124{bottom:118.358400pt;}
.yf7{bottom:121.582720pt;}
.y217{bottom:121.920000pt;}
.y1ed{bottom:122.403200pt;}
.y1ce{bottom:122.408960pt;}
.yb8{bottom:125.856640pt;}
.y130{bottom:126.302080pt;}
.y176{bottom:127.125760pt;}
.ye1{bottom:127.368960pt;}
.y1a1{bottom:127.684480pt;}
.y21f{bottom:131.048960pt;}
.y41{bottom:133.457920pt;}
.yd0{bottom:134.240000pt;}
.y103{bottom:134.295040pt;}
.y150{bottom:136.320000pt;}
.ye0{bottom:139.686240pt;}
.y9c{bottom:140.712960pt;}
.y123{bottom:140.762240pt;}
.y216{bottom:141.440000pt;}
.y12d{bottom:141.596160pt;}
.y1ec{bottom:141.760000pt;}
.y1cd{bottom:141.765760pt;}
.yf6{bottom:143.986560pt;}
.y1a0{bottom:147.041280pt;}
.yb7{bottom:148.260480pt;}
.y96{bottom:148.705920pt;}
.y175{bottom:149.367680pt;}
.y21e{bottom:150.405760pt;}
.ydf{bottom:152.003520pt;}
.y102{bottom:156.698880pt;}
.y14f{bottom:157.440000pt;}
.y215{bottom:160.960000pt;}
.y40{bottom:160.984320pt;}
.y1cc{bottom:161.284480pt;}
.yc7{bottom:162.954880pt;}
.ycf{bottom:163.840000pt;}
.y12c{bottom:164.000000pt;}
.yde{bottom:164.160000pt;}
.yf5{bottom:166.390400pt;}
.y19f{bottom:166.560000pt;}
.y21d{bottom:169.924480pt;}
.y95{bottom:170.947840pt;}
.y122{bottom:171.159040pt;}
.yb6{bottom:178.495360pt;}
.ydd{bottom:178.560000pt;}
.y101{bottom:178.940800pt;}
.y174{bottom:179.764480pt;}
.y3f{bottom:180.341120pt;}
.y214{bottom:180.480000pt;}
.y1cb{bottom:180.641280pt;}
.yce{bottom:185.120000pt;}
.yc6{bottom:185.358720pt;}
.y12b{bottom:185.600000pt;}
.y19e{bottom:185.930240pt;}
.yf4{bottom:188.632320pt;}
.y21c{bottom:189.281280pt;}
.y94{bottom:193.351680pt;}
.y121{bottom:193.400960pt;}
.ydc{bottom:198.080000pt;}
.y3e{bottom:199.697920pt;}
.y213{bottom:200.000000pt;}
.y1ca{bottom:200.160000pt;}
.yb5{bottom:200.899200pt;}
.y100{bottom:201.344640pt;}
.y173{bottom:202.168320pt;}
.y19d{bottom:205.448960pt;}
.y14e{bottom:206.080000pt;}
.ycd{bottom:206.240000pt;}
.y12a{bottom:206.720000pt;}
.yc5{bottom:207.762560pt;}
.y21b{bottom:208.800000pt;}
.yf3{bottom:211.036160pt;}
.y93{bottom:215.755520pt;}
.y120{bottom:215.804800pt;}
.ydb{bottom:217.600000pt;}
.y3d{bottom:219.216640pt;}
.y212{bottom:219.520000pt;}
.y1eb{bottom:219.524480pt;}
.y1c9{bottom:219.534720pt;}
.yb4{bottom:223.303040pt;}
.yff{bottom:223.748480pt;}
.y172{bottom:224.410240pt;}
.y19c{bottom:224.805760pt;}
.ycc{bottom:227.360000pt;}
.y129{bottom:228.000000pt;}
.y21a{bottom:228.161280pt;}
.y133{bottom:230.166400pt;}
.yf2{bottom:233.440000pt;}
.y92{bottom:238.159360pt;}
.y11f{bottom:238.208640pt;}
.y3c{bottom:238.573440pt;}
.y1ea{bottom:239.043200pt;}
.y211{bottom:239.048960pt;}
.y1c8{bottom:239.053440pt;}
.y19b{bottom:244.324480pt;}
.y14d{bottom:245.535360pt;}
.yb3{bottom:245.544960pt;}
.yfe{bottom:246.152320pt;}
.y171{bottom:246.814080pt;}
.y219{bottom:247.680000pt;}
.ycb{bottom:248.480000pt;}
.y128{bottom:249.120000pt;}
.y3b{bottom:258.092160pt;}
.y1e9{bottom:258.400000pt;}
.y210{bottom:258.405760pt;}
.y1c7{bottom:258.410240pt;}
.y91{bottom:260.401280pt;}
.y11e{bottom:260.450560pt;}
.y5f{bottom:263.040000pt;}
.y19a{bottom:263.681280pt;}
.y14c{bottom:267.939200pt;}
.yb2{bottom:267.948800pt;}
.yfd{bottom:268.394240pt;}
.yda{bottom:268.460800pt;}
.y170{bottom:269.217920pt;}
.yca{bottom:269.600000pt;}
.y127{bottom:270.240000pt;}
.y3a{bottom:277.448960pt;}
.y20f{bottom:277.924480pt;}
.y1c6{bottom:277.928960pt;}
.y90{bottom:282.805120pt;}
.y11d{bottom:282.854400pt;}
.y199{bottom:283.200000pt;}
.yf1{bottom:284.160000pt;}
.y14b{bottom:290.343040pt;}
.yb1{bottom:290.352640pt;}
.yfc{bottom:290.798080pt;}
.yd9{bottom:290.864640pt;}
.yc9{bottom:290.880000pt;}
.y16f{bottom:291.459840pt;}
.y4d{bottom:295.840000pt;}
.y39{bottom:296.967680pt;}
.y20e{bottom:297.281280pt;}
.y1c5{bottom:297.285760pt;}
.y126{bottom:297.363200pt;}
.y198{bottom:302.560000pt;}
.y31{bottom:304.640000pt;}
.y8f{bottom:305.208960pt;}
.y11c{bottom:305.258240pt;}
.yf0{bottom:305.440000pt;}
.y14a{bottom:312.584960pt;}
.yb0{bottom:312.594560pt;}
.yfb{bottom:313.201920pt;}
.yd8{bottom:313.268480pt;}
.y16e{bottom:313.863680pt;}
.y38{bottom:316.324480pt;}
.y20d{bottom:316.800000pt;}
.y1c4{bottom:316.804480pt;}
.yc8{bottom:318.240000pt;}
.y197{bottom:322.086400pt;}
.yef{bottom:326.560000pt;}
.y8e{bottom:327.450880pt;}
.y34{bottom:333.284480pt;}
.y149{bottom:334.988800pt;}
.yaf{bottom:334.998400pt;}
.yfa{bottom:335.443840pt;}
.y11b{bottom:335.493120pt;}
.yd7{bottom:335.510400pt;}
.y37{bottom:335.843200pt;}
.y1c3{bottom:336.161280pt;}
.y20c{bottom:336.164480pt;}
.y16d{bottom:336.267520pt;}
.y196{bottom:341.443200pt;}
.yee{bottom:347.680000pt;}
.yc4{bottom:349.854720pt;}
.y33{bottom:352.641280pt;}
.y36{bottom:355.200000pt;}
.y1c2{bottom:355.680000pt;}
.y20b{bottom:355.683200pt;}
.y148{bottom:357.392640pt;}
.yae{bottom:357.402240pt;}
.y8d{bottom:357.847680pt;}
.y11a{bottom:357.896960pt;}
.yd6{bottom:357.914240pt;}
.y71{bottom:360.640000pt;}
.y195{bottom:360.800000pt;}
.y16c{bottom:366.502400pt;}
.yed{bottom:368.800000pt;}
.y32{bottom:372.160000pt;}
.yc3{bottom:372.258560pt;}
.y20a{bottom:375.040000pt;}
.y1c1{bottom:375.043200pt;}
.y1e8{bottom:375.048960pt;}
.y147{bottom:379.634560pt;}
.y8c{bottom:380.251520pt;}
.y119{bottom:380.300800pt;}
.yd5{bottom:380.318080pt;}
.y194{bottom:380.324480pt;}
.y35{bottom:381.600000pt;}
.yad{bottom:387.637120pt;}
.y16b{bottom:388.906240pt;}
.yec{bottom:389.920000pt;}
.y70{bottom:390.898560pt;}
.y1c0{bottom:394.400000pt;}
.y1e7{bottom:394.405760pt;}
.y209{bottom:394.417920pt;}
.yc2{bottom:394.500480pt;}
.y193{bottom:399.681280pt;}
.y146{bottom:402.038400pt;}
.y8b{bottom:402.493440pt;}
.y118{bottom:402.542720pt;}
.y5e{bottom:406.240000pt;}
.yac{bottom:410.040960pt;}
.y16a{bottom:411.310080pt;}
.y1{bottom:412.160000pt;}
.y1bf{bottom:413.920000pt;}
.y1e6{bottom:413.924480pt;}
.y208{bottom:413.936640pt;}
.yc1{bottom:416.904320pt;}
.yeb{bottom:417.051520pt;}
.y6f{bottom:418.424960pt;}
.y192{bottom:419.200000pt;}
.y8a{bottom:424.897280pt;}
.y117{bottom:424.946560pt;}
.y145{bottom:432.435200pt;}
.yab{bottom:432.444800pt;}
.y106{bottom:432.890240pt;}
.y1e5{bottom:433.281280pt;}
.y1be{bottom:433.284480pt;}
.y207{bottom:433.293440pt;}
.y169{bottom:433.552000pt;}
.y1f{bottom:436.000000pt;}
.y191{bottom:438.573440pt;}
.yc0{bottom:439.308160pt;}
.y89{bottom:447.301120pt;}
.y116{bottom:447.350400pt;}
.y6e{bottom:451.059200pt;}
.y2d{bottom:452.000000pt;}
.y1e4{bottom:452.800000pt;}
.y1bd{bottom:452.803200pt;}
.y206{bottom:452.812160pt;}
.y144{bottom:454.677120pt;}
.yaa{bottom:454.686720pt;}
.y1e{bottom:455.205760pt;}
.yea{bottom:455.294080pt;}
.y190{bottom:458.092160pt;}
.y168{bottom:463.948800pt;}
.y2b{bottom:465.760000pt;}
.y88{bottom:469.543040pt;}
.y115{bottom:469.592320pt;}
.y6d{bottom:470.739840pt;}
.y1bc{bottom:472.160000pt;}
.y205{bottom:472.168960pt;}
.y1e3{bottom:472.186880pt;}
.y1d{bottom:473.120000pt;}
.y143{bottom:477.080960pt;}
.ya9{bottom:477.090560pt;}
.y18f{bottom:477.448960pt;}
.ye9{bottom:477.536000pt;}
.y167{bottom:486.352640pt;}
.y1c{bottom:489.920000pt;}
.y6c{bottom:490.096640pt;}
.y1bb{bottom:491.684480pt;}
.y204{bottom:491.687680pt;}
.y1e2{bottom:491.705600pt;}
.y87{bottom:491.946880pt;}
.y114{bottom:491.996160pt;}
.y18e{bottom:496.967680pt;}
.y142{bottom:499.484800pt;}
.ya8{bottom:499.494400pt;}
.ye8{bottom:499.939840pt;}
.y1b{bottom:505.760000pt;}
.y166{bottom:508.756480pt;}
.y6b{bottom:509.615360pt;}
.y1ba{bottom:511.041280pt;}
.y203{bottom:511.044480pt;}
.y1e1{bottom:511.062400pt;}
.y86{bottom:514.350720pt;}
.y113{bottom:514.400000pt;}
.y18d{bottom:516.324480pt;}
.y141{bottom:521.726720pt;}
.ya7{bottom:521.736320pt;}
.yd4{bottom:522.343680pt;}
.y1a{bottom:527.843840pt;}
.y6a{bottom:528.972160pt;}
.y1b9{bottom:530.560000pt;}
.y202{bottom:530.563200pt;}
.y1e0{bottom:530.581120pt;}
.y165{bottom:530.998400pt;}
.y18c{bottom:535.843200pt;}
.y85{bottom:536.592640pt;}
.y112{bottom:544.000000pt;}
.y140{bottom:544.130560pt;}
.ya6{bottom:544.140160pt;}
.yd3{bottom:544.585600pt;}
.y69{bottom:548.490880pt;}
.y19{bottom:549.600000pt;}
.y1b8{bottom:549.920000pt;}
.y1df{bottom:549.937920pt;}
.y164{bottom:553.402240pt;}
.y18b{bottom:555.200000pt;}
.y84{bottom:558.996480pt;}
.y111{bottom:565.120000pt;}
.y13f{bottom:566.534400pt;}
.y9b{bottom:566.989440pt;}
.y18{bottom:567.520000pt;}
.y68{bottom:567.847680pt;}
.y63{bottom:568.645120pt;}
.y201{bottom:569.440000pt;}
.y1de{bottom:569.456640pt;}
.y1b7{bottom:569.465600pt;}
.ya5{bottom:574.536960pt;}
.y18a{bottom:574.727680pt;}
.y163{bottom:575.806080pt;}
.ybf{bottom:581.400320pt;}
.y17{bottom:584.315040pt;}
.y110{bottom:586.240000pt;}
.y67{bottom:587.204480pt;}
.y1dd{bottom:588.813440pt;}
.y200{bottom:588.817920pt;}
.y1b6{bottom:588.822400pt;}
.y13e{bottom:588.938240pt;}
.y83{bottom:589.393280pt;}
.y189{bottom:594.084480pt;}
.ya4{bottom:596.940800pt;}
.y162{bottom:598.048000pt;}
.y16{bottom:599.680000pt;}
.ybe{bottom:603.642240pt;}
.y62{bottom:604.164480pt;}
.y66{bottom:606.723200pt;}
.y10f{bottom:607.520000pt;}
.y1dc{bottom:608.170240pt;}
.y1ff{bottom:608.174720pt;}
.y1b5{bottom:608.179200pt;}
.y82{bottom:611.635200pt;}
.y3{bottom:612.800000pt;}
.y188{bottom:613.441280pt;}
.y15{bottom:615.520000pt;}
.y2{bottom:617.600000pt;}
.y13d{bottom:619.173120pt;}
.ya3{bottom:619.182720pt;}
.y161{bottom:620.451840pt;}
.y61{bottom:623.521280pt;}
.ybd{bottom:626.046080pt;}
.y65{bottom:626.080000pt;}
.y1db{bottom:627.688960pt;}
.y1fe{bottom:627.693440pt;}
.y1b4{bottom:627.697920pt;}
.y10e{bottom:628.640000pt;}
.y187{bottom:632.960000pt;}
.y81{bottom:634.039040pt;}
.y14{bottom:637.600000pt;}
.y13c{bottom:641.576960pt;}
.ya2{bottom:641.586560pt;}
.y160{bottom:642.855680pt;}
.y60{bottom:643.040000pt;}
.y1da{bottom:647.045760pt;}
.y1fd{bottom:647.050240pt;}
.y1b3{bottom:647.054720pt;}
.ybc{bottom:648.449920pt;}
.y10d{bottom:649.760000pt;}
.y186{bottom:652.333440pt;}
.y64{bottom:652.480000pt;}
.y80{bottom:656.442880pt;}
.y13{bottom:659.360000pt;}
.y13b{bottom:663.980800pt;}
.ya1{bottom:663.990400pt;}
.y15f{bottom:665.097600pt;}
.y1d9{bottom:666.564480pt;}
.y1fc{bottom:666.568960pt;}
.y1b2{bottom:666.573440pt;}
.y10c{bottom:670.880000pt;}
.y185{bottom:671.852160pt;}
.y12{bottom:677.280000pt;}
.y7f{bottom:678.684800pt;}
.y4c{bottom:683.040000pt;}
.y1d8{bottom:685.921280pt;}
.y1fb{bottom:685.925760pt;}
.y1b1{bottom:685.930240pt;}
.y13a{bottom:686.222720pt;}
.ya0{bottom:686.232320pt;}
.y15e{bottom:687.501440pt;}
.y184{bottom:691.208960pt;}
.y10b{bottom:692.160000pt;}
.y11{bottom:694.075040pt;}
.y5d{bottom:695.376000pt;}
.y7e{bottom:701.088640pt;}
.y1d7{bottom:705.440000pt;}
.y1fa{bottom:705.444480pt;}
.y1b0{bottom:705.448960pt;}
.y139{bottom:708.626560pt;}
.y9f{bottom:708.636160pt;}
.y10{bottom:709.440000pt;}
.y183{bottom:710.727680pt;}
.y10a{bottom:713.280000pt;}
.y15d{bottom:717.898240pt;}
.y7d{bottom:723.492480pt;}
.y1f9{bottom:724.801280pt;}
.y1af{bottom:724.805760pt;}
.yf{bottom:725.120000pt;}
.y5c{bottom:727.863040pt;}
.y182{bottom:730.084480pt;}
.y138{bottom:731.030400pt;}
.y9e{bottom:731.040000pt;}
.ye7{bottom:731.485440pt;}
.y109{bottom:734.400000pt;}
.y15c{bottom:740.140160pt;}
.y1f8{bottom:744.320000pt;}
.y1ae{bottom:744.324480pt;}
.y7c{bottom:745.734400pt;}
.ye{bottom:748.160000pt;}
.y181{bottom:749.603200pt;}
.y137{bottom:753.272320pt;}
.ye6{bottom:753.727360pt;}
.y108{bottom:755.520000pt;}
.y9d{bottom:758.880000pt;}
.y5b{bottom:760.659200pt;}
.y15b{bottom:762.544000pt;}
.y1ad{bottom:763.681280pt;}
.y1f7{bottom:763.688960pt;}
.y7b{bottom:768.138240pt;}
.y180{bottom:768.960000pt;}
.yd{bottom:770.080000pt;}
.y136{bottom:775.676160pt;}
.ye5{bottom:776.131200pt;}
.y5a{bottom:780.339840pt;}
.y107{bottom:782.696320pt;}
.y1ac{bottom:783.200000pt;}
.y1f6{bottom:783.207680pt;}
.y15a{bottom:784.947840pt;}
.y7a{bottom:790.542080pt;}
.yc{bottom:792.000000pt;}
.y17f{bottom:796.800000pt;}
.y135{bottom:798.080000pt;}
.y9a{bottom:798.535040pt;}
.y59{bottom:799.696640pt;}
.y1f5{bottom:802.564480pt;}
.y1ab{bottom:802.567680pt;}
.y1d6{bottom:802.576640pt;}
.y159{bottom:807.189760pt;}
.yb{bottom:808.800000pt;}
.y79{bottom:812.784000pt;}
.y58{bottom:819.215360pt;}
.y99{bottom:820.776960pt;}
.y1f4{bottom:822.083200pt;}
.y1aa{bottom:822.086400pt;}
.y1d5{bottom:822.095360pt;}
.ya{bottom:824.640000pt;}
.y134{bottom:825.920000pt;}
.y158{bottom:829.593600pt;}
.y2f{bottom:832.480000pt;}
.ybb{bottom:835.187840pt;}
.y17e{bottom:836.302720pt;}
.y57{bottom:838.572160pt;}
.y1f3{bottom:841.440000pt;}
.y1a9{bottom:841.443200pt;}
.y1d4{bottom:841.452160pt;}
.y78{bottom:843.180800pt;}
.y9{bottom:845.468000pt;}
.y2e{bottom:850.400000pt;}
.yba{bottom:857.591680pt;}
.y56{bottom:858.090880pt;}
.y17d{bottom:858.706560pt;}
.y157{bottom:859.990400pt;}
.y1a8{bottom:860.800000pt;}
.y1f2{bottom:860.801280pt;}
.y1d3{bottom:860.808960pt;}
.y2c{bottom:864.160000pt;}
.y77{bottom:865.584640pt;}
.y8{bottom:870.259200pt;}
.y55{bottom:877.447680pt;}
.y2a{bottom:877.920000pt;}
.yf9{bottom:879.833600pt;}
.y1f1{bottom:880.320000pt;}
.y1a7{bottom:880.324480pt;}
.y1d2{bottom:880.327680pt;}
.y17c{bottom:881.110400pt;}
.y156{bottom:882.232320pt;}
.y76{bottom:887.826560pt;}
.y29{bottom:891.668000pt;}
.y7{bottom:894.731200pt;}
.y54{bottom:896.804480pt;}
.y1f0{bottom:899.680000pt;}
.y1a6{bottom:899.681280pt;}
.y1d1{bottom:899.684480pt;}
.y132{bottom:902.237440pt;}
.y17b{bottom:903.352320pt;}
.y155{bottom:904.636160pt;}
.y28{bottom:905.432000pt;}
.y75{bottom:910.230400pt;}
.y50{bottom:913.764480pt;}
.y53{bottom:916.323200pt;}
.y1a5{bottom:919.200000pt;}
.y1d0{bottom:919.203200pt;}
.y1ef{bottom:919.207680pt;}
.y27{bottom:919.352000pt;}
.y6{bottom:919.373440pt;}
.y17a{bottom:925.756160pt;}
.y154{bottom:927.040000pt;}
.y74{bottom:932.634240pt;}
.y26{bottom:933.116000pt;}
.y4f{bottom:933.121280pt;}
.y52{bottom:935.680000pt;}
.y1a4{bottom:938.560000pt;}
.y1ee{bottom:938.564480pt;}
.y5{bottom:943.845440pt;}
.y25{bottom:946.880000pt;}
.y179{bottom:948.160000pt;}
.y4e{bottom:952.640000pt;}
.y73{bottom:954.876160pt;}
.y153{bottom:956.640000pt;}
.y1cf{bottom:958.080000pt;}
.y1a3{bottom:958.083200pt;}
.y51{bottom:962.080000pt;}
.y24{bottom:966.720000pt;}
.y178{bottom:976.000000pt;}
.y72{bottom:977.280000pt;}
.y1a2{bottom:977.440000pt;}
.y152{bottom:977.760000pt;}
.y4{bottom:984.320000pt;}
.y23{bottom:993.280000pt;}
.y46{bottom:996.960000pt;}
.y22{bottom:1011.676000pt;}
.y45{bottom:1016.480000pt;}
.y21{bottom:1029.760000pt;}
.y44{bottom:1036.000000pt;}
.y43{bottom:1054.240000pt;}
.h12{height:15.200000pt;}
.hc{height:31.992188pt;}
.h18{height:38.441250pt;}
.h9{height:42.262500pt;}
.hd{height:43.031250pt;}
.hb{height:43.335938pt;}
.h16{height:44.468750pt;}
.h19{height:45.019648pt;}
.h3{height:45.937500pt;}
.h7{height:47.621250pt;}
.h15{height:48.934400pt;}
.h1a{height:49.241600pt;}
.h11{height:50.490000pt;}
.h10{height:52.599467pt;}
.ha{height:52.785000pt;}
.h17{height:52.865707pt;}
.hf{height:53.158750pt;}
.h5{height:56.732813pt;}
.h8{height:57.375000pt;}
.h1b{height:57.776130pt;}
.h6{height:57.781250pt;}
.h4{height:76.849063pt;}
.h14{height:276.800000pt;}
.h13{height:309.600000pt;}
.he{height:318.401333pt;}
.h2{height:632.800000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:14.880000pt;}
.w4{width:199.680000pt;}
.w2{width:236.320000pt;}
.w3{width:310.560000pt;}
.w5{width:510.240000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x14{left:18.400000pt;}
.x1{left:64.640000pt;}
.x1d{left:75.047040pt;}
.x12{left:80.958080pt;}
.x21{left:87.680000pt;}
.x10{left:93.920000pt;}
.x1b{left:97.436160pt;}
.x11{left:99.520000pt;}
.x17{left:103.680000pt;}
.x18{left:114.560000pt;}
.x15{left:118.560000pt;}
.x20{left:132.331520pt;}
.x1e{left:141.752320pt;}
.x1a{left:142.720000pt;}
.x1c{left:152.636160pt;}
.x13{left:180.641920pt;}
.x19{left:187.998080pt;}
.xd{left:195.680000pt;}
.x2{left:236.320000pt;}
.x5{left:243.520000pt;}
.x4{left:254.560000pt;}
.x1f{left:286.560000pt;}
.x16{left:389.440000pt;}
.xc{left:546.880000pt;}
.xf{left:554.080000pt;}
.x9{left:603.196000pt;}
.xb{left:622.400000pt;}
.xe{left:625.280000pt;}
.xa{left:633.904000pt;}
.x8{left:650.560000pt;}
.x7{left:665.920000pt;}
.x22{left:715.840000pt;}
.x6{left:739.360000pt;}
}




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