
    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_9673f89fe6a382b55c074e93.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_68019fbdac79a16285a29de4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_74a2c1efe7ba4470fbfb992c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.700000;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_63ae0655c499e1cd87ee7f78.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_accab9e999ad95a93fcfee4c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.079000;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_6d75d07e4f071483b78bd817.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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_4a16f79d1b56fb0401de673c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.971000;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_a3bf2e748c3df8aa3dc9c9c7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.972000;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_63a94b07775779d01c005495.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5c784fad4d2e28e9a78cc48e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.872559;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_38faa67b4f35fa5b4c5da019.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.964000;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:23.440320px;}
.ls1c{letter-spacing:-0.927360px;}
.ls3b{letter-spacing:-0.861120px;}
.ls2e{letter-spacing:-0.794880px;}
.ls40{letter-spacing:-0.758160px;}
.ls2d{letter-spacing:-0.728640px;}
.ls43{letter-spacing:-0.662400px;}
.ls31{letter-spacing:-0.596160px;}
.ls28{letter-spacing:-0.589680px;}
.ls2f{letter-spacing:-0.529920px;}
.ls10{letter-spacing:-0.463680px;}
.ls13{letter-spacing:-0.397440px;}
.ls3c{letter-spacing:-0.360720px;}
.ls34{letter-spacing:-0.336960px;}
.ls11{letter-spacing:-0.331200px;}
.ls17{letter-spacing:-0.298800px;}
.ls24{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.264960px;}
.ls35{letter-spacing:-0.252720px;}
.ls33{letter-spacing:-0.240480px;}
.ls18{letter-spacing:-0.239040px;}
.ls41{letter-spacing:-0.208800px;}
.lsd{letter-spacing:-0.198720px;}
.ls2{letter-spacing:-0.192960px;}
.ls39{letter-spacing:-0.179280px;}
.ls4{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.132480px;}
.ls1a{letter-spacing:-0.120240px;}
.ls14{letter-spacing:-0.119520px;}
.lsc{letter-spacing:-0.108000px;}
.ls26{letter-spacing:-0.072000px;}
.ls1b{letter-spacing:-0.066240px;}
.ls15{letter-spacing:-0.059760px;}
.ls1{letter-spacing:0.000000px;}
.ls44{letter-spacing:0.013248px;}
.ls51{letter-spacing:0.019872px;}
.ls6{letter-spacing:0.066240px;}
.ls37{letter-spacing:0.083520px;}
.ls27{letter-spacing:0.084240px;}
.ls54{letter-spacing:0.086112px;}
.ls29{letter-spacing:0.119520px;}
.ls2c{letter-spacing:0.120240px;}
.lsf{letter-spacing:0.132480px;}
.ls47{letter-spacing:0.144000px;}
.ls3d{letter-spacing:0.168480px;}
.ls4d{letter-spacing:0.198720px;}
.ls5{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.239040px;}
.ls4f{letter-spacing:0.251712px;}
.ls25{letter-spacing:0.264960px;}
.ls4a{letter-spacing:0.271584px;}
.ls7{letter-spacing:0.290880px;}
.ls3a{letter-spacing:0.291456px;}
.ls4b{letter-spacing:0.317952px;}
.ls12{letter-spacing:0.331200px;}
.ls2b{letter-spacing:0.337824px;}
.ls3f{letter-spacing:0.344448px;}
.ls36{letter-spacing:0.364320px;}
.ls9{letter-spacing:0.370512px;}
.ls45{letter-spacing:0.377568px;}
.ls42{letter-spacing:0.384192px;}
.ls3e{letter-spacing:0.390816px;}
.ls38{letter-spacing:0.418320px;}
.ls49{letter-spacing:0.423936px;}
.ls50{letter-spacing:0.430560px;}
.ls52{letter-spacing:0.437184px;}
.ls4e{letter-spacing:0.450432px;}
.ls53{letter-spacing:0.476928px;}
.ls4c{letter-spacing:0.523296px;}
.ls16{letter-spacing:0.597600px;}
.ls8{letter-spacing:0.657360px;}
.lsb{letter-spacing:0.848592px;}
.ls21{letter-spacing:0.861120px;}
.ls1e{letter-spacing:1.008000px;}
.ls22{letter-spacing:1.589760px;}
.ls20{letter-spacing:1.728000px;}
.ls48{letter-spacing:8.208000px;}
.ls2a{letter-spacing:9.869760px;}
.ls19{letter-spacing:28.496880px;}
.ls32{letter-spacing:33.451704px;}
.ls1d{letter-spacing:78.768000px;}
.ls1f{letter-spacing:97.488000px;}
.ls23{letter-spacing:840.546720px;}
.ls46{letter-spacing:845.553600px;}
.ls0{letter-spacing:845.585280px;}
.ls30{letter-spacing:845.717760px;}
.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;}
}
.ws32{word-spacing:-27.895680px;}
.ws1c{word-spacing:-27.775440px;}
.ws6b{word-spacing:-27.534960px;}
.ws6d{word-spacing:-20.386080px;}
.ws6c{word-spacing:-20.301840px;}
.ws6e{word-spacing:-20.217600px;}
.ws59{word-spacing:-19.880640px;}
.ws2c{word-spacing:-19.627920px;}
.ws52{word-spacing:-18.414720px;}
.ws5e{word-spacing:-18.149760px;}
.wsd{word-spacing:-17.210880px;}
.wsc{word-spacing:-16.852320px;}
.ws53{word-spacing:-16.613280px;}
.wse{word-spacing:-16.493760px;}
.ws20{word-spacing:-16.488000px;}
.ws10{word-spacing:-16.374240px;}
.ws0{word-spacing:-16.272000px;}
.ws25{word-spacing:-16.200000px;}
.ws6{word-spacing:-15.632640px;}
.ws76{word-spacing:-15.566400px;}
.ws78{word-spacing:-15.500160px;}
.ws1d{word-spacing:-15.433920px;}
.ws7{word-spacing:-15.367680px;}
.ws51{word-spacing:-15.301440px;}
.ws22{word-spacing:-15.235200px;}
.ws58{word-spacing:-15.228000px;}
.wsa{word-spacing:-15.168960px;}
.ws9{word-spacing:-15.102720px;}
.wsb{word-spacing:-15.036480px;}
.ws24{word-spacing:-14.970240px;}
.ws8{word-spacing:-14.837760px;}
.ws5f{word-spacing:-14.705280px;}
.ws23{word-spacing:-14.639040px;}
.ws21{word-spacing:-14.572800px;}
.ws65{word-spacing:-14.440320px;}
.ws1e{word-spacing:-14.374080px;}
.ws2d{word-spacing:-13.565520px;}
.wsf{word-spacing:-13.505760px;}
.ws60{word-spacing:-9.730080px;}
.ws6f{word-spacing:-9.437760px;}
.ws33{word-spacing:-3.775680px;}
.ws3b{word-spacing:-3.047040px;}
.ws39{word-spacing:-2.649600px;}
.ws3a{word-spacing:-2.185920px;}
.ws50{word-spacing:-1.258560px;}
.ws77{word-spacing:-1.192320px;}
.ws7c{word-spacing:-1.126080px;}
.ws56{word-spacing:-1.059840px;}
.ws61{word-spacing:-0.993600px;}
.ws44{word-spacing:-0.927360px;}
.ws2b{word-spacing:-0.861120px;}
.ws66{word-spacing:-0.794880px;}
.ws72{word-spacing:-0.728640px;}
.ws2a{word-spacing:-0.648000px;}
.ws75{word-spacing:-0.596160px;}
.ws18{word-spacing:-0.529920px;}
.ws5b{word-spacing:-0.505440px;}
.ws68{word-spacing:-0.463680px;}
.ws63{word-spacing:-0.418320px;}
.ws7a{word-spacing:-0.397440px;}
.ws13{word-spacing:-0.331200px;}
.ws1a{word-spacing:-0.298800px;}
.ws28{word-spacing:-0.288000px;}
.ws4f{word-spacing:-0.264960px;}
.ws71{word-spacing:-0.252720px;}
.ws31{word-spacing:-0.239040px;}
.ws27{word-spacing:-0.216000px;}
.ws12{word-spacing:-0.198720px;}
.ws2e{word-spacing:-0.168480px;}
.ws16{word-spacing:-0.132480px;}
.ws30{word-spacing:-0.119520px;}
.ws11{word-spacing:-0.108000px;}
.ws14{word-spacing:-0.066240px;}
.ws1{word-spacing:0.000000px;}
.ws1b{word-spacing:0.059760px;}
.ws5d{word-spacing:0.066240px;}
.ws5{word-spacing:0.072000px;}
.ws57{word-spacing:0.119520px;}
.ws17{word-spacing:0.132480px;}
.ws64{word-spacing:0.168480px;}
.ws69{word-spacing:0.179280px;}
.ws15{word-spacing:0.198720px;}
.ws7b{word-spacing:0.264960px;}
.ws62{word-spacing:0.298800px;}
.ws19{word-spacing:0.331200px;}
.ws29{word-spacing:0.397440px;}
.ws4{word-spacing:0.432000px;}
.ws3{word-spacing:0.463680px;}
.ws6a{word-spacing:0.478080px;}
.ws1f{word-spacing:0.480960px;}
.ws2{word-spacing:0.482400px;}
.ws5c{word-spacing:0.529920px;}
.ws26{word-spacing:0.576000px;}
.ws54{word-spacing:0.596160px;}
.ws5a{word-spacing:0.601200px;}
.ws74{word-spacing:0.662400px;}
.ws70{word-spacing:0.673920px;}
.ws67{word-spacing:0.721440px;}
.ws73{word-spacing:0.728640px;}
.ws2f{word-spacing:0.776880px;}
.ws79{word-spacing:0.861120px;}
.ws55{word-spacing:0.927360px;}
.ws42{word-spacing:1.258560px;}
.ws4e{word-spacing:1.987200px;}
.ws46{word-spacing:2.715840px;}
.ws45{word-spacing:3.047040px;}
.ws4d{word-spacing:3.444480px;}
.ws49{word-spacing:4.703040px;}
.ws48{word-spacing:4.901760px;}
.ws4a{word-spacing:5.696640px;}
.ws4b{word-spacing:5.762880px;}
.ws47{word-spacing:7.750080px;}
.ws3c{word-spacing:9.737280px;}
.ws3e{word-spacing:10.068480px;}
.ws3f{word-spacing:10.200960px;}
.ws3d{word-spacing:10.267200px;}
.ws41{word-spacing:12.784320px;}
.ws40{word-spacing:12.983040px;}
.ws36{word-spacing:13.115520px;}
.ws43{word-spacing:14.970240px;}
.ws37{word-spacing:17.222400px;}
.ws38{word-spacing:17.288640px;}
.ws35{word-spacing:23.448960px;}
.ws34{word-spacing:23.581440px;}
.ws4c{word-spacing:36.564480px;}
._b{margin-left:-15.031008px;}
._9{margin-left:-13.618656px;}
._4{margin-left:-11.555712px;}
._a{margin-left:-10.278864px;}
._5{margin-left:-8.352000px;}
._8{margin-left:-7.220160px;}
._6{margin-left:-5.588784px;}
._7{margin-left:-3.825360px;}
._1{margin-left:-1.358928px;}
._0{width:1.070928px;}
._2{width:2.169072px;}
._10{width:3.543696px;}
._f{width:5.166720px;}
._d{width:10.068480px;}
._e{width:13.303152px;}
._c{width:23.683824px;}
._3{width:847.396800px;}
.fc9{color:rgb(0,0,255);}
.fc7{color:rgb(78,80,78);}
.fc6{color:rgb(77,108,153);}
.fc3{color:rgb(50,62,79);}
.fc2{color:rgb(237,111,48);}
.fca{color:rgb(34,34,34);}
.fc8{color:rgb(166,166,166);}
.fc5{color:rgb(141,209,231);}
.fc4{color:rgb(127,127,127);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fs9{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs7{font-size:120.240000px;}
.fsa{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:3.060000px;}
.y39{bottom:3.239850px;}
.y2b{bottom:3.240000px;}
.y1a{bottom:3.420000px;}
.y1c{bottom:4.860000px;}
.y8{bottom:9.720000px;}
.y29{bottom:21.960000px;}
.y30{bottom:22.140000px;}
.y18{bottom:22.500000px;}
.yc{bottom:23.767020px;}
.y25{bottom:24.845040px;}
.y20{bottom:36.000000px;}
.y4{bottom:42.660000px;}
.y24{bottom:43.740000px;}
.yb{bottom:55.086840px;}
.y23{bottom:59.940000px;}
.y1f{bottom:61.740000px;}
.ya{bottom:70.210080px;}
.y21{bottom:82.260000px;}
.y22{bottom:82.620000px;}
.y5{bottom:82.800000px;}
.y9{bottom:84.067020px;}
.y7{bottom:97.923960px;}
.y6{bottom:111.600000px;}
.y1e{bottom:117.000000px;}
.y1f7{bottom:136.398240px;}
.y1ad{bottom:142.038000px;}
.y15c{bottom:144.423360px;}
.y3{bottom:146.700000px;}
.ydd{bottom:147.263760px;}
.y24c{bottom:147.341520px;}
.y225{bottom:148.085280px;}
.y29a{bottom:148.113360px;}
.y12a{bottom:149.577840px;}
.y1f6{bottom:156.916080px;}
.y1ac{bottom:160.932960px;}
.y343{bottom:161.465040px;}
.y381{bottom:161.470080px;}
.y171{bottom:163.255860px;}
.y272{bottom:164.263680px;}
.y15b{bottom:164.759040px;}
.ydc{bottom:167.417280px;}
.y24b{bottom:167.859360px;}
.yb8{bottom:168.597360px;}
.y224{bottom:168.603120px;}
.y299{bottom:168.631200px;}
.y2e9{bottom:169.038000px;}
.y129{bottom:170.095680px;}
.y1f5{bottom:177.433920px;}
.y1ab{bottom:180.010080px;}
.y342{bottom:180.360000px;}
.y380{bottom:180.365040px;}
.y393{bottom:180.367920px;}
.y31a{bottom:180.372960px;}
.y170{bottom:180.900000px;}
.y271{bottom:184.781520px;}
.y15a{bottom:185.094720px;}
.ydb{bottom:187.752960px;}
.y2e8{bottom:187.932960px;}
.y24a{bottom:188.377200px;}
.yb7{bottom:188.933040px;}
.y298{bottom:188.966880px;}
.y128{bottom:190.431360px;}
.y1f4{bottom:197.769600px;}
.y1c5{bottom:198.540000px;}
.y1aa{bottom:198.905040px;}
.y37f{bottom:199.260000px;}
.y392{bottom:199.262880px;}
.y319{bottom:199.267920px;}
.y35c{bottom:199.280880px;}
.y223{bottom:201.176640px;}
.y16f{bottom:204.140160px;}
.y270{bottom:205.299360px;}
.y159{bottom:205.612560px;}
.y2e7{bottom:207.010080px;}
.yda{bottom:208.088640px;}
.y249{bottom:208.712880px;}
.yb6{bottom:209.268720px;}
.y297{bottom:209.484720px;}
.y127{bottom:210.949200px;}
.y1a9{bottom:217.800000px;}
.y1f3{bottom:218.287440px;}
.y391{bottom:218.340000px;}
.y318{bottom:218.345040px;}
.y37e{bottom:218.352960px;}
.y35b{bottom:218.358000px;}
.y222{bottom:221.512320px;}
.y1c4{bottom:221.950800px;}
.y26f{bottom:225.635040px;}
.y2e6{bottom:225.905040px;}
.y158{bottom:226.130400px;}
.yd9{bottom:228.424320px;}
.y248{bottom:229.230720px;}
.yb5{bottom:229.422240px;}
.y296{bottom:230.002560px;}
.y126{bottom:231.467040px;}
.y317{bottom:237.240000px;}
.y37d{bottom:237.247920px;}
.y35a{bottom:237.252960px;}
.y390{bottom:237.258000px;}
.y1f2{bottom:238.805280px;}
.y221{bottom:241.848000px;}
.y2e5{bottom:244.800000px;}
.y157{bottom:246.466080px;}
.y1a8{bottom:246.600000px;}
.yd8{bottom:248.760000px;}
.y247{bottom:249.748560px;}
.yb4{bottom:249.757920px;}
.y125{bottom:250.544160px;}
.y341{bottom:256.142880px;}
.y359{bottom:256.147920px;}
.y38f{bottom:256.152960px;}
.y316{bottom:256.165920px;}
.y26e{bottom:258.390720px;}
.y1f1{bottom:259.140960px;}
.y220{bottom:262.365840px;}
.y295{bottom:262.576080px;}
.y2e4{bottom:263.890080px;}
.y156{bottom:266.983920px;}
.y124{bottom:269.439120px;}
.y246{bottom:270.084240px;}
.yb3{bottom:270.093600px;}
.y340{bottom:275.220000px;}
.y358{bottom:275.225040px;}
.y38e{bottom:275.230080px;}
.y315{bottom:275.243040px;}
.yd7{bottom:276.475860px;}
.y26d{bottom:278.544240px;}
.y1a7{bottom:279.012960px;}
.y1f0{bottom:279.658800px;}
.y2e3{bottom:282.785040px;}
.y21f{bottom:282.883680px;}
.y294{bottom:282.911760px;}
.y155{bottom:287.501760px;}
.y123{bottom:288.516240px;}
.yb2{bottom:290.429280px;}
.y245{bottom:290.602080px;}
.yd6{bottom:294.120000px;}
.y38d{bottom:294.125040px;}
.y33f{bottom:294.127920px;}
.y314{bottom:294.138000px;}
.y37c{bottom:294.176880px;}
.y1a6{bottom:297.907920px;}
.y26c{bottom:299.062080px;}
.y1ef{bottom:300.176640px;}
.y2e2{bottom:301.680000px;}
.y21e{bottom:303.219360px;}
.y293{bottom:303.247440px;}
.y122{bottom:307.411200px;}
.y154{bottom:307.837440px;}
.yb1{bottom:310.764960px;}
.y244{bottom:311.119920px;}
.y38c{bottom:313.020000px;}
.y33e{bottom:313.022880px;}
.y313{bottom:313.032960px;}
.y357{bottom:313.040880px;}
.y37b{bottom:313.071840px;}
.y1a5{bottom:316.802880px;}
.y26b{bottom:319.579920px;}
.y1ee{bottom:320.512320px;}
.y2e1{bottom:320.770080px;}
.yd5{bottom:321.943680px;}
.y21d{bottom:323.737200px;}
.y292{bottom:323.765280px;}
.y121{bottom:326.306160px;}
.y153{bottom:328.355280px;}
.y243{bottom:331.455600px;}
.y33d{bottom:332.100000px;}
.y312{bottom:332.110080px;}
.y38b{bottom:332.112960px;}
.y356{bottom:332.118000px;}
.y37a{bottom:332.148960px;}
.y1a4{bottom:335.880000px;}
.y2e0{bottom:339.665040px;}
.y26a{bottom:339.915600px;}
.y1ed{bottom:341.030160px;}
.yb0{bottom:343.172880px;}
.y21c{bottom:344.255040px;}
.y291{bottom:344.283120px;}
.y120{bottom:345.383280px;}
.y152{bottom:348.873120px;}
.y311{bottom:351.005040px;}
.y38a{bottom:351.007920px;}
.y355{bottom:351.012960px;}
.y33c{bottom:351.018000px;}
.y379{bottom:351.043920px;}
.y242{bottom:351.973440px;}
.y2df{bottom:358.560000px;}
.y269{bottom:360.433440px;}
.y1ec{bottom:361.548000px;}
.yaf{bottom:363.326400px;}
.y1a3{bottom:363.780000px;}
.y11f{bottom:364.278240px;}
.y21b{bottom:364.590720px;}
.y290{bottom:364.618800px;}
.y151{bottom:369.208800px;}
.y310{bottom:369.900000px;}
.y389{bottom:369.902880px;}
.y354{bottom:369.907920px;}
.y33b{bottom:369.912960px;}
.y378{bottom:369.938880px;}
.y241{bottom:372.491280px;}
.y2de{bottom:377.663040px;}
.y53{bottom:378.584640px;}
.y268{bottom:380.951280px;}
.y1eb{bottom:381.883680px;}
.y11e{bottom:383.173200px;}
.yae{bottom:383.662080px;}
.y21a{bottom:385.108560px;}
.y28f{bottom:385.136640px;}
.y1a2{bottom:387.213840px;}
.y388{bottom:388.980000px;}
.y353{bottom:388.985040px;}
.y30f{bottom:388.990080px;}
.y377{bottom:389.016000px;}
.y150{bottom:389.726640px;}
.y240{bottom:392.826960px;}
.y52{bottom:395.870220px;}
.y2dd{bottom:396.558000px;}
.y267{bottom:401.286960px;}
.y11d{bottom:402.250320px;}
.y1ea{bottom:402.401520px;}
.yad{bottom:403.815600px;}
.y28e{bottom:405.654480px;}
.y352{bottom:407.880000px;}
.y30e{bottom:407.885040px;}
.y376{bottom:407.910960px;}
.y14f{bottom:408.803760px;}
.y51{bottom:413.155800px;}
.y23f{bottom:413.344800px;}
.y2dc{bottom:415.452960px;}
.y219{bottom:417.682080px;}
.y11c{bottom:421.145280px;}
.y266{bottom:421.804800px;}
.y1e9{bottom:422.919360px;}
.yac{bottom:424.151280px;}
.y28d{bottom:425.990160px;}
.y30d{bottom:426.780000px;}
.y351{bottom:426.787920px;}
.y375{bottom:426.805920px;}
.y14e{bottom:429.139440px;}
.y50{bottom:430.441380px;}
.y23e{bottom:433.862640px;}
.y2db{bottom:434.530080px;}
.y1c3{bottom:437.412960px;}
.y218{bottom:438.017760px;}
.y11b{bottom:440.040240px;}
.y265{bottom:442.322640px;}
.y1e8{bottom:443.255040px;}
.yab{bottom:444.486960px;}
.y33a{bottom:445.865040px;}
.y387{bottom:445.870080px;}
.y30c{bottom:445.878000px;}
.y374{bottom:445.883040px;}
.y28c{bottom:446.508000px;}
.y4f{bottom:447.726960px;}
.y14d{bottom:449.657280px;}
.y2da{bottom:453.425040px;}
.y23d{bottom:454.198320px;}
.y1c2{bottom:456.307920px;}
.y217{bottom:458.535600px;}
.y11a{bottom:459.117360px;}
.y264{bottom:462.658320px;}
.y1e7{bottom:463.772880px;}
.y339{bottom:464.760000px;}
.y386{bottom:464.765040px;}
.y30b{bottom:464.772960px;}
.y373{bottom:464.778000px;}
.yaa{bottom:464.822640px;}
.y4e{bottom:465.012540px;}
.y14c{bottom:469.992960px;}
.y2d9{bottom:472.320000px;}
.y23c{bottom:474.716160px;}
.y1c1{bottom:475.202880px;}
.y119{bottom:478.012320px;}
.y216{bottom:478.871280px;}
.y28b{bottom:479.081520px;}
.y4d{bottom:482.118840px;}
.y263{bottom:483.176160px;}
.y385{bottom:483.660000px;}
.y30a{bottom:483.667920px;}
.y338{bottom:483.672960px;}
.y1e6{bottom:484.290720px;}
.ya9{bottom:485.158320px;}
.y14b{bottom:490.510800px;}
.y2d8{bottom:491.423040px;}
.y1c0{bottom:494.280000px;}
.y118{bottom:496.907280px;}
.y215{bottom:499.389120px;}
.y4c{bottom:499.404420px;}
.y28a{bottom:499.417200px;}
.y309{bottom:502.745040px;}
.y337{bottom:502.750080px;}
.y262{bottom:503.694000px;}
.y1e5{bottom:504.626400px;}
.ya8{bottom:505.311840px;}
.y23b{bottom:507.289680px;}
.y2d7{bottom:510.318000px;}
.y14a{bottom:511.028640px;}
.y117{bottom:515.984400px;}
.y4b{bottom:516.690000px;}
.y214{bottom:519.906960px;}
.y289{bottom:519.935040px;}
.y308{bottom:521.640000px;}
.y336{bottom:521.645040px;}
.y1bf{bottom:523.080000px;}
.y191{bottom:523.477440px;}
.y261{bottom:524.029680px;}
.y1e4{bottom:525.144240px;}
.ya7{bottom:525.647520px;}
.y23a{bottom:527.625360px;}
.y2d6{bottom:529.212960px;}
.y149{bottom:531.364320px;}
.y4a{bottom:533.975580px;}
.y116{bottom:534.879360px;}
.y213{bottom:540.242640px;}
.y288{bottom:540.270720px;}
.y335{bottom:540.540000px;}
.y307{bottom:540.542880px;}
.y260{bottom:544.547520px;}
.y2b5{bottom:544.747680px;}
.y1e3{bottom:545.662080px;}
.ya6{bottom:545.983200px;}
.y239{bottom:548.143200px;}
.y2d5{bottom:548.290080px;}
.y49{bottom:551.261160px;}
.y148{bottom:551.882160px;}
.y115{bottom:553.774320px;}
.y190{bottom:555.338880px;}
.y1be{bottom:555.364800px;}
.y16e{bottom:558.557280px;}
.y306{bottom:559.620000px;}
.y372{bottom:559.632960px;}
.y334{bottom:559.643040px;}
.y212{bottom:560.760480px;}
.y287{bottom:560.788560px;}
.y25f{bottom:565.065360px;}
.y1e2{bottom:565.997760px;}
.ya5{bottom:566.318880px;}
.y2d4{bottom:567.185040px;}
.y48{bottom:568.367460px;}
.y238{bottom:568.478880px;}
.y147{bottom:572.479920px;}
.y114{bottom:572.851440px;}
.y18f{bottom:574.233840px;}
.y1bd{bottom:574.259760px;}
.y2b4{bottom:577.155600px;}
.y371{bottom:578.527920px;}
.y305{bottom:578.532960px;}
.y333{bottom:578.538000px;}
.y16d{bottom:579.075120px;}
.yf8{bottom:581.173920px;}
.y211{bottom:581.278320px;}
.y286{bottom:581.306400px;}
.y25e{bottom:585.401040px;}
.y47{bottom:585.653040px;}
.y2d3{bottom:586.080000px;}
.ya4{bottom:586.472400px;}
.y1e1{bottom:586.515600px;}
.y237{bottom:588.996720px;}
.y113{bottom:591.746400px;}
.y146{bottom:592.815600px;}
.y18e{bottom:593.310960px;}
.y1bc{bottom:593.336880px;}
.yd4{bottom:593.925120px;}
.y1b{bottom:594.180000px;}
.y370{bottom:597.422880px;}
.y304{bottom:597.427920px;}
.y332{bottom:597.432960px;}
.y2b3{bottom:597.491280px;}
.y16c{bottom:599.410800px;}
.y210{bottom:601.614000px;}
.y285{bottom:601.642080px;}
.y46{bottom:602.938620px;}
.y2d2{bottom:605.172960px;}
.y25d{bottom:605.918880px;}
.ya3{bottom:606.808080px;}
.y1e0{bottom:607.033440px;}
.y236{bottom:609.514560px;}
.y112{bottom:610.641360px;}
.y18d{bottom:612.205920px;}
.y1bb{bottom:612.231840px;}
.y145{bottom:613.333440px;}
.y7d{bottom:613.440000px;}
.yd3{bottom:614.260800px;}
.y36f{bottom:616.500000px;}
.y303{bottom:616.505040px;}
.y331{bottom:616.510080px;}
.y2b2{bottom:618.009120px;}
.y16b{bottom:619.928640px;}
.y45{bottom:620.224200px;}
.y20f{bottom:622.131840px;}
.y284{bottom:622.159920px;}
.y2d1{bottom:624.067920px;}
.y25c{bottom:626.436720px;}
.yf7{bottom:626.531760px;}
.ya2{bottom:627.143760px;}
.y1df{bottom:627.369120px;}
.y111{bottom:629.718480px;}
.y235{bottom:629.850240px;}
.y18c{bottom:631.100880px;}
.y1ba{bottom:631.126800px;}
.y144{bottom:633.851280px;}
.yd2{bottom:634.596480px;}
.y302{bottom:635.400000px;}
.y330{bottom:635.405040px;}
.y36e{bottom:635.407920px;}
.y7c{bottom:637.200000px;}
.y44{bottom:637.509780px;}
.y2b1{bottom:638.344800px;}
.y16a{bottom:640.446480px;}
.y20e{bottom:642.649680px;}
.y283{bottom:642.677760px;}
.y2d0{bottom:642.962880px;}
.y6a{bottom:644.220000px;}
.yf6{bottom:646.685280px;}
.ya1{bottom:647.479440px;}
.y1de{bottom:647.886960px;}
.y110{bottom:648.613440px;}
.y18b{bottom:650.178000px;}
.y1b9{bottom:650.203920px;}
.y234{bottom:650.368080px;}
.y143{bottom:654.186960px;}
.y32f{bottom:654.300000px;}
.y36d{bottom:654.302880px;}
.y301{bottom:654.312960px;}
.y350{bottom:654.318000px;}
.yd1{bottom:654.932160px;}
.y43{bottom:654.974640px;}
.y7b{bottom:657.540000px;}
.y2b0{bottom:658.862640px;}
.y25b{bottom:659.010240px;}
.y169{bottom:660.782160px;}
.y2cf{bottom:662.040000px;}
.y20d{bottom:662.985360px;}
.y282{bottom:663.013440px;}
.yf5{bottom:666.838800px;}
.y10f{bottom:667.508400px;}
.ya0{bottom:667.815120px;}
.y1dd{bottom:668.404800px;}
.y18a{bottom:669.072960px;}
.y1b8{bottom:669.098880px;}
.y233{bottom:670.885920px;}
.y42{bottom:672.260220px;}
.y36c{bottom:673.380000px;}
.y32e{bottom:673.385040px;}
.y300{bottom:673.390080px;}
.y34f{bottom:673.395120px;}
.y142{bottom:674.704800px;}
.yd0{bottom:675.267840px;}
.y25a{bottom:679.345920px;}
.y2af{bottom:679.380480px;}
.y2ce{bottom:680.952960px;}
.y168{bottom:681.300000px;}
.y69{bottom:682.274160px;}
.y20c{bottom:683.503200px;}
.y281{bottom:683.531280px;}
.y10e{bottom:686.585520px;}
.yf4{bottom:687.174480px;}
.y189{bottom:687.967920px;}
.y9f{bottom:687.968640px;}
.y1b7{bottom:687.993840px;}
.y7a{bottom:688.500000px;}
.y1dc{bottom:688.740480px;}
.y41{bottom:689.545800px;}
.y232{bottom:691.221600px;}
.y32d{bottom:692.280000px;}
.y2ff{bottom:692.285040px;}
.y34e{bottom:692.290080px;}
.y384{bottom:692.292960px;}
.y141{bottom:695.222640px;}
.ycf{bottom:695.421360px;}
.y259{bottom:699.681600px;}
.y2ae{bottom:699.716160px;}
.y2cd{bottom:699.847920px;}
.y68{bottom:701.351280px;}
.y20b{bottom:704.021040px;}
.y280{bottom:704.049120px;}
.y10d{bottom:706.739040px;}
.y40{bottom:706.831380px;}
.y188{bottom:707.045040px;}
.y1b6{bottom:707.070960px;}
.yf3{bottom:707.510160px;}
.y9e{bottom:708.304320px;}
.y167{bottom:710.280000px;}
.y2fe{bottom:711.180000px;}
.y32c{bottom:711.185040px;}
.y36b{bottom:711.187920px;}
.y231{bottom:711.739440px;}
.y140{bottom:715.558320px;}
.yce{bottom:715.757040px;}
.y2cc{bottom:718.925040px;}
.y79{bottom:719.100000px;}
.y258{bottom:720.199440px;}
.y2ad{bottom:720.234000px;}
.y67{bottom:720.246240px;}
.y17{bottom:721.080000px;}
.y1db{bottom:721.496160px;}
.y3f{bottom:724.116960px;}
.y20a{bottom:724.356720px;}
.y27f{bottom:724.384800px;}
.y187{bottom:725.940000px;}
.y1b5{bottom:725.965920px;}
.y10c{bottom:727.256880px;}
.yf2{bottom:727.845840px;}
.y9d{bottom:728.640000px;}
.y32b{bottom:730.080000px;}
.y36a{bottom:730.082880px;}
.y2fd{bottom:730.100880px;}
.y230{bottom:732.257280px;}
.y13f{bottom:736.076160px;}
.ycd{bottom:736.092720px;}
.y2cb{bottom:737.820000px;}
.y66{bottom:739.141200px;}
.y257{bottom:740.717280px;}
.y2ac{bottom:740.751840px;}
.y3e{bottom:741.402540px;}
.y1da{bottom:741.649680px;}
.y166{bottom:742.680000px;}
.y19{bottom:743.580000px;}
.y1b4{bottom:744.860880px;}
.y209{bottom:744.874560px;}
.y27e{bottom:744.902640px;}
.y10b{bottom:747.774720px;}
.yf1{bottom:748.181520px;}
.y78{bottom:748.260000px;}
.y369{bottom:749.160000px;}
.y32a{bottom:749.170080px;}
.y2fc{bottom:749.178000px;}
.y22f{bottom:752.592960px;}
.y186{bottom:754.740000px;}
.ycc{bottom:756.428400px;}
.y13e{bottom:756.594000px;}
.y2ca{bottom:756.732960px;}
.y65{bottom:758.218320px;}
.y3d{bottom:758.508840px;}
.y256{bottom:761.052960px;}
.y2ab{bottom:761.087520px;}
.y1d9{bottom:762.167520px;}
.y9c{bottom:763.380000px;}
.y1b3{bottom:763.938000px;}
.y208{bottom:765.392400px;}
.y27d{bottom:765.420480px;}
.y165{bottom:766.097280px;}
.y329{bottom:768.065040px;}
.y368{bottom:768.067920px;}
.y2fb{bottom:768.072960px;}
.y10a{bottom:768.110400px;}
.yf0{bottom:768.335040px;}
.y22e{bottom:773.110800px;}
.y3c{bottom:775.794420px;}
.y2c9{bottom:775.810080px;}
.ycb{bottom:776.764080px;}
.y13d{bottom:776.929680px;}
.y77{bottom:777.420000px;}
.y255{bottom:781.570800px;}
.y2aa{bottom:781.605360px;}
.y1d8{bottom:782.503200px;}
.y1b2{bottom:782.832960px;}
.y9b{bottom:783.540000px;}
.y207{bottom:785.728080px;}
.y27c{bottom:785.756160px;}
.y328{bottom:786.960000px;}
.y367{bottom:786.962880px;}
.y2fa{bottom:786.967920px;}
.y185{bottom:787.045680px;}
.y109{bottom:788.628240px;}
.yef{bottom:788.670720px;}
.y3b{bottom:793.080000px;}
.y22d{bottom:793.628640px;}
.y2c8{bottom:794.705040px;}
.yca{bottom:796.917600px;}
.y13c{bottom:797.447520px;}
.y64{bottom:798.177600px;}
.y1b1{bottom:801.727920px;}
.y254{bottom:802.088640px;}
.y2a9{bottom:802.123200px;}
.y1d7{bottom:803.021040px;}
.y9a{bottom:803.880000px;}
.y366{bottom:806.040000px;}
.y2f9{bottom:806.045040px;}
.y327{bottom:806.050080px;}
.y34d{bottom:806.052960px;}
.y184{bottom:806.122800px;}
.y1c8{bottom:806.220000px;}
.y206{bottom:806.245920px;}
.y27b{bottom:806.274000px;}
.y76{bottom:806.400000px;}
.yee{bottom:809.006400px;}
.y108{bottom:809.146080px;}
.y3a{bottom:810.540000px;}
.y2c7{bottom:813.600000px;}
.y22c{bottom:813.964320px;}
.y1a1{bottom:815.438880px;}
.y63{bottom:817.072560px;}
.yc9{bottom:817.253280px;}
.y13b{bottom:817.965360px;}
.y1b0{bottom:820.805040px;}
.y253{bottom:822.424320px;}
.y2a8{bottom:822.458880px;}
.y1d6{bottom:823.538880px;}
.y99{bottom:824.040000px;}
.y2f8{bottom:824.940000px;}
.y326{bottom:824.945040px;}
.y34c{bottom:824.947920px;}
.y365{bottom:824.952960px;}
.y383{bottom:824.958000px;}
.y183{bottom:825.017760px;}
.y38{bottom:826.740000px;}
.y205{bottom:826.763760px;}
.y27a{bottom:826.791840px;}
.yed{bottom:829.342080px;}
.y107{bottom:829.481760px;}
.y2c6{bottom:832.689930px;}
.y22b{bottom:834.482160px;}
.y1a0{bottom:835.774560px;}
.y75{bottom:835.920000px;}
.y62{bottom:835.967520px;}
.y13a{bottom:838.301040px;}
.y1af{bottom:839.700000px;}
.y252{bottom:842.942160px;}
.y2a7{bottom:842.976720px;}
.y2f7{bottom:843.840000px;}
.y34b{bottom:843.842880px;}
.y364{bottom:843.847920px;}
.y382{bottom:843.852960px;}
.y1d5{bottom:843.874560px;}
.y182{bottom:843.912720px;}
.y98{bottom:844.380000px;}
.y37{bottom:846.540000px;}
.y204{bottom:847.099440px;}
.y279{bottom:847.127520px;}
.yec{bottom:849.677760px;}
.yc8{bottom:849.826800px;}
.y106{bottom:849.999600px;}
.y2c5{bottom:851.584890px;}
.y22a{bottom:855.000000px;}
.y61{bottom:855.044640px;}
.y19f{bottom:856.292400px;}
.y139{bottom:858.818880px;}
.y34a{bottom:862.920000px;}
.y363{bottom:862.925040px;}
.y2f6{bottom:862.930080px;}
.y181{bottom:862.989840px;}
.y251{bottom:863.460000px;}
.y2a6{bottom:863.494560px;}
.y1d4{bottom:864.392400px;}
.y97{bottom:864.720000px;}
.y74{bottom:866.520000px;}
.y203{bottom:867.617280px;}
.y278{bottom:867.645360px;}
.y36{bottom:867.960000px;}
.y1ae{bottom:868.500000px;}
.yc7{bottom:869.814720px;}
.yeb{bottom:869.831280px;}
.y1c7{bottom:869.978160px;}
.y105{bottom:870.335280px;}
.y2c4{bottom:870.479850px;}
.y60{bottom:873.939600px;}
.y19e{bottom:876.628080px;}
.y138{bottom:879.336720px;}
.y362{bottom:881.820000px;}
.y2f5{bottom:881.825040px;}
.y349{bottom:881.832960px;}
.y180{bottom:881.884800px;}
.y2a5{bottom:883.830240px;}
.y229{bottom:883.979850px;}
.y1d3{bottom:884.910240px;}
.y96{bottom:885.060000px;}
.y202{bottom:888.135120px;}
.y277{bottom:888.163200px;}
.y35{bottom:889.380000px;}
.y2c3{bottom:889.565040px;}
.yc6{bottom:890.150400px;}
.yea{bottom:890.166960px;}
.y104{bottom:890.853120px;}
.y250{bottom:892.440000px;}
.y5f{bottom:892.834560px;}
.y16{bottom:892.992240px;}
.y73{bottom:895.680000px;}
.y19d{bottom:897.145920px;}
.y137{bottom:899.672400px;}
.y2f4{bottom:900.720000px;}
.y348{bottom:900.727920px;}
.y361{bottom:900.735840px;}
.y17f{bottom:900.779760px;}
.y2a4{bottom:904.348080px;}
.y95{bottom:905.220000px;}
.y1d2{bottom:905.245920px;}
.y2c2{bottom:908.460000px;}
.y201{bottom:908.470800px;}
.y276{bottom:908.498880px;}
.yc5{bottom:910.486080px;}
.ye9{bottom:910.502640px;}
.y103{bottom:911.370960px;}
.y5e{bottom:911.911680px;}
.y34{bottom:912.245040px;}
.y19c{bottom:917.663760px;}
.y347{bottom:919.805040px;}
.y325{bottom:919.810080px;}
.y2f3{bottom:919.812960px;}
.y15{bottom:919.819440px;}
.y17e{bottom:919.856880px;}
.y136{bottom:920.190240px;}
.y228{bottom:920.736720px;}
.y72{bottom:924.840000px;}
.y94{bottom:925.560000px;}
.y1d1{bottom:925.763760px;}
.y2c1{bottom:927.367920px;}
.y200{bottom:928.988640px;}
.y275{bottom:929.016720px;}
.y24f{bottom:929.198880px;}
.yc4{bottom:930.821760px;}
.ye8{bottom:930.838320px;}
.y33{bottom:931.140000px;}
.y102{bottom:931.706640px;}
.y2a3{bottom:936.921600px;}
.y19b{bottom:937.999440px;}
.y346{bottom:938.700000px;}
.y324{bottom:938.705040px;}
.y2f2{bottom:938.707920px;}
.y14{bottom:938.714400px;}
.y17d{bottom:938.751840px;}
.y135{bottom:940.708080px;}
.y227{bottom:941.072400px;}
.y89{bottom:945.532980px;}
.y93{bottom:945.900000px;}
.y2c0{bottom:946.262880px;}
.y1d0{bottom:946.281600px;}
.y32{bottom:947.880000px;}
.y1ff{bottom:949.506480px;}
.y24e{bottom:949.534560px;}
.yc3{bottom:950.975280px;}
.ye7{bottom:950.991840px;}
.y5d{bottom:951.870960px;}
.y101{bottom:952.224480px;}
.y71{bottom:954.360000px;}
.y2a2{bottom:957.257280px;}
.y323{bottom:957.600000px;}
.y2f1{bottom:957.602880px;}
.y395{bottom:957.607920px;}
.y345{bottom:957.615840px;}
.y17c{bottom:957.646800px;}
.y13{bottom:957.791520px;}
.y19a{bottom:958.517280px;}
.y134{bottom:961.408080px;}
.y88{bottom:962.460000px;}
.y2bf{bottom:965.340000px;}
.y92{bottom:966.240000px;}
.y1cf{bottom:966.617280px;}
.y31{bottom:967.500000px;}
.y1fe{bottom:969.842160px;}
.y24d{bottom:969.870240px;}
.y5c{bottom:970.765920px;}
.yc2{bottom:971.310960px;}
.y100{bottom:972.742320px;}
.y12{bottom:973.275120px;}
.y2f0{bottom:976.680000px;}
.y322{bottom:976.685040px;}
.y344{bottom:976.692960px;}
.y17b{bottom:976.723920px;}
.y2a1{bottom:977.775120px;}
.y199{bottom:979.399440px;}
.y226{bottom:981.925920px;}
.y133{bottom:982.290240px;}
.y87{bottom:982.620000px;}
.ye6{bottom:983.565360px;}
.y2be{bottom:984.245040px;}
.y70{bottom:984.960000px;}
.y91{bottom:986.580000px;}
.y1ce{bottom:987.135120px;}
.y5b{bottom:989.660880px;}
.y1fd{bottom:990.388080px;}
.yc1{bottom:991.646640px;}
.yff{bottom:993.078000px;}
.y1c6{bottom:995.254560px;}
.y321{bottom:995.580000px;}
.y2ef{bottom:995.587920px;}
.y360{bottom:995.592960px;}
.y17a{bottom:995.618880px;}
.y2a0{bottom:998.110800px;}
.y198{bottom:999.917280px;}
.y132{bottom:1002.443760px;}
.y86{bottom:1002.780000px;}
.y2bd{bottom:1003.140000px;}
.ye5{bottom:1003.718880px;}
.y2f{bottom:1006.200000px;}
.y90{bottom:1006.740000px;}
.y1cd{bottom:1007.652960px;}
.y5a{bottom:1008.738000px;}
.y1fc{bottom:1010.905920px;}
.yc0{bottom:1011.982320px;}
.yfe{bottom:1013.595840px;}
.y6f{bottom:1014.120000px;}
.y2ee{bottom:1014.482880px;}
.y35f{bottom:1014.487920px;}
.y320{bottom:1014.500880px;}
.y179{bottom:1014.513840px;}
.y29f{bottom:1018.628640px;}
.y197{bottom:1020.252960px;}
.y2bc{bottom:1022.230080px;}
.y131{bottom:1022.779440px;}
.y85{bottom:1022.940000px;}
.ye4{bottom:1023.872400px;}
.y8f{bottom:1027.080000px;}
.y59{bottom:1027.632960px;}
.y1cc{bottom:1027.988640px;}
.y1fb{bottom:1031.241600px;}
.ybf{bottom:1032.318000px;}
.yfd{bottom:1032.672960px;}
.y2ed{bottom:1033.560000px;}
.y35e{bottom:1033.565040px;}
.y164{bottom:1033.574400px;}
.y31f{bottom:1033.578000px;}
.y178{bottom:1033.590960px;}
.y29e{bottom:1039.146480px;}
.y196{bottom:1040.770800px;}
.y2bb{bottom:1041.125040px;}
.y84{bottom:1043.105940px;}
.y6e{bottom:1043.280000px;}
.y130{bottom:1043.297280px;}
.ye3{bottom:1044.208080px;}
.y2e{bottom:1044.900000px;}
.y58{bottom:1046.527920px;}
.y8e{bottom:1047.420000px;}
.y1cb{bottom:1048.506480px;}
.yfc{bottom:1051.750080px;}
.y1fa{bottom:1051.759440px;}
.y163{bottom:1052.121600px;}
.y35d{bottom:1052.460000px;}
.y2ec{bottom:1052.467920px;}
.ybe{bottom:1052.471520px;}
.y31e{bottom:1052.472960px;}
.y177{bottom:1052.485920px;}
.y29d{bottom:1059.482160px;}
.y2ba{bottom:1060.020000px;}
.y195{bottom:1061.288640px;}
.y83{bottom:1063.260000px;}
.y12f{bottom:1063.815120px;}
.y2d{bottom:1064.520000px;}
.ye2{bottom:1064.543760px;}
.y57{bottom:1065.605040px;}
.y8d{bottom:1067.760000px;}
.y1ca{bottom:1069.024320px;}
.yfb{bottom:1070.645040px;}
.y162{bottom:1071.016560px;}
.y2eb{bottom:1071.362880px;}
.y31d{bottom:1071.367920px;}
.y176{bottom:1071.380880px;}
.y1f9{bottom:1072.277280px;}
.y6d{bottom:1072.800000px;}
.ybd{bottom:1072.807200px;}
.y2b9{bottom:1079.105760px;}
.y29c{bottom:1080.000000px;}
.y194{bottom:1081.624320px;}
.y82{bottom:1083.424500px;}
.y12e{bottom:1084.150800px;}
.y2c{bottom:1084.320000px;}
.y56{bottom:1084.500000px;}
.ye1{bottom:1084.879440px;}
.y8c{bottom:1088.097120px;}
.y1c9{bottom:1089.360000px;}
.yfa{bottom:1089.540000px;}
.y161{bottom:1090.093680px;}
.y2ea{bottom:1090.440000px;}
.y31c{bottom:1090.445040px;}
.y175{bottom:1090.458000px;}
.y11{bottom:1090.635840px;}
.y274{bottom:1092.612960px;}
.ybc{bottom:1093.142880px;}
.y2b8{bottom:1098.000720px;}
.y193{bottom:1102.142160px;}
.y81{bottom:1103.220000px;}
.y6c{bottom:1103.760000px;}
.y2a{bottom:1103.940000px;}
.y12d{bottom:1104.668640px;}
.y1f8{bottom:1104.850800px;}
.ye0{bottom:1105.215120px;}
.y29b{bottom:1108.979850px;}
.y160{bottom:1108.988640px;}
.y31b{bottom:1109.340000px;}
.y174{bottom:1109.352960px;}
.y10{bottom:1109.712960px;}
.y273{bottom:1113.130800px;}
.ybb{bottom:1113.478560px;}
.y2b7{bottom:1117.260000px;}
.yf9{bottom:1118.520000px;}
.y192{bottom:1122.660000px;}
.y8b{bottom:1122.840000px;}
.y80{bottom:1123.385940px;}
.y28{bottom:1123.740000px;}
.y12c{bottom:1125.186480px;}
.ydf{bottom:1125.368640px;}
.y55{bottom:1126.979850px;}
.y15f{bottom:1127.883600px;}
.y394{bottom:1128.240000px;}
.y173{bottom:1128.247920px;}
.yf{bottom:1128.607920px;}
.y6b{bottom:1134.720000px;}
.y7f{bottom:1143.540000px;}
.y12b{bottom:1145.522160px;}
.yde{bottom:1145.704320px;}
.yba{bottom:1145.886480px;}
.y15e{bottom:1146.960720px;}
.y172{bottom:1147.325040px;}
.y2b6{bottom:1147.500000px;}
.ye{bottom:1147.685040px;}
.y8a{bottom:1153.260000px;}
.y7e{bottom:1161.900000px;}
.y26{bottom:1162.440000px;}
.yb9{bottom:1166.040000px;}
.y15d{bottom:1166.220000px;}
.yd{bottom:1166.580000px;}
.y54{bottom:1168.020000px;}
.y2{bottom:1207.440000px;}
.y1d{bottom:1207.445040px;}
.y1{bottom:1226.340000px;}
.he{height:4.032000px;}
.hf{height:18.900000px;}
.h15{height:19.080000px;}
.h12{height:19.081500px;}
.h17{height:20.700000px;}
.h16{height:20.701500px;}
.h8{height:30.961500px;}
.h3{height:35.143594px;}
.hc{height:37.800000px;}
.h14{height:37.980000px;}
.h13{height:37.981500px;}
.hd{height:39.339844px;}
.h19{height:43.506914px;}
.h18{height:43.536094px;}
.h1e{height:47.970281px;}
.h1c{height:47.988281px;}
.hb{height:48.060000px;}
.h5{height:48.224531px;}
.h2{height:48.256875px;}
.ha{height:48.960000px;}
.h9{height:49.218750px;}
.h11{height:51.865920px;}
.h1a{height:53.186400px;}
.h10{height:58.953600px;}
.h20{height:60.606720px;}
.h24{height:60.814080px;}
.h23{height:60.926400px;}
.h1d{height:65.959920px;}
.h6{height:66.982440px;}
.h22{height:87.596719px;}
.h4{height:93.960000px;}
.h1f{height:106.477920px;}
.h21{height:106.863840px;}
.h1b{height:107.013600px;}
.h25{height:128.160000px;}
.h7{height:134.280000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wa{width:82.980000px;}
.wb{width:85.860000px;}
.wc{width:133.020000px;}
.w2{width:176.040000px;}
.w4{width:194.581500px;}
.w7{width:216.000000px;}
.w8{width:264.781500px;}
.w3{width:393.300000px;}
.w9{width:409.680000px;}
.w5{width:654.300000px;}
.w6{width:654.480000px;}
.w1{width:892.500000px;}
.w0{width:892.620000px;}
.x1{left:-6.840000px;}
.x0{left:0.000000px;}
.xf{left:7.560000px;}
.x2{left:20.160000px;}
.x5{left:27.900000px;}
.x4{left:38.340000px;}
.x6{left:66.240000px;}
.x3{left:108.000000px;}
.x14{left:116.100000px;}
.x1c{left:124.560000px;}
.x20{left:129.240000px;}
.x1e{left:150.479280px;}
.x25{left:161.985600px;}
.x7{left:174.240000px;}
.x16{left:181.080000px;}
.x19{left:192.600000px;}
.x8{left:214.380000px;}
.x1b{left:219.243240px;}
.xb{left:221.761620px;}
.xd{left:236.703960px;}
.x1a{left:279.180000px;}
.xc{left:296.642160px;}
.x15{left:324.000000px;}
.x18{left:374.220000px;}
.x9{left:385.740000px;}
.x13{left:396.720000px;}
.x12{left:483.481440px;}
.x1d{left:578.340000px;}
.xa{left:600.120000px;}
.xe{left:607.680000px;}
.x10{left:615.240000px;}
.x21{left:631.445040px;}
.x24{left:686.341440px;}
.x23{left:696.774240px;}
.x1f{left:776.160000px;}
.x17{left:783.540000px;}
.x22{left:785.850480px;}
.x11{left:794.523960px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.835840pt;}
.ls1c{letter-spacing:-0.824320pt;}
.ls3b{letter-spacing:-0.765440pt;}
.ls2e{letter-spacing:-0.706560pt;}
.ls40{letter-spacing:-0.673920pt;}
.ls2d{letter-spacing:-0.647680pt;}
.ls43{letter-spacing:-0.588800pt;}
.ls31{letter-spacing:-0.529920pt;}
.ls28{letter-spacing:-0.524160pt;}
.ls2f{letter-spacing:-0.471040pt;}
.ls10{letter-spacing:-0.412160pt;}
.ls13{letter-spacing:-0.353280pt;}
.ls3c{letter-spacing:-0.320640pt;}
.ls34{letter-spacing:-0.299520pt;}
.ls11{letter-spacing:-0.294400pt;}
.ls17{letter-spacing:-0.265600pt;}
.ls24{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.235520pt;}
.ls35{letter-spacing:-0.224640pt;}
.ls33{letter-spacing:-0.213760pt;}
.ls18{letter-spacing:-0.212480pt;}
.ls41{letter-spacing:-0.185600pt;}
.lsd{letter-spacing:-0.176640pt;}
.ls2{letter-spacing:-0.171520pt;}
.ls39{letter-spacing:-0.159360pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.117760pt;}
.ls1a{letter-spacing:-0.106880pt;}
.ls14{letter-spacing:-0.106240pt;}
.lsc{letter-spacing:-0.096000pt;}
.ls26{letter-spacing:-0.064000pt;}
.ls1b{letter-spacing:-0.058880pt;}
.ls15{letter-spacing:-0.053120pt;}
.ls1{letter-spacing:0.000000pt;}
.ls44{letter-spacing:0.011776pt;}
.ls51{letter-spacing:0.017664pt;}
.ls6{letter-spacing:0.058880pt;}
.ls37{letter-spacing:0.074240pt;}
.ls27{letter-spacing:0.074880pt;}
.ls54{letter-spacing:0.076544pt;}
.ls29{letter-spacing:0.106240pt;}
.ls2c{letter-spacing:0.106880pt;}
.lsf{letter-spacing:0.117760pt;}
.ls47{letter-spacing:0.128000pt;}
.ls3d{letter-spacing:0.149760pt;}
.ls4d{letter-spacing:0.176640pt;}
.ls5{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.212480pt;}
.ls4f{letter-spacing:0.223744pt;}
.ls25{letter-spacing:0.235520pt;}
.ls4a{letter-spacing:0.241408pt;}
.ls7{letter-spacing:0.258560pt;}
.ls3a{letter-spacing:0.259072pt;}
.ls4b{letter-spacing:0.282624pt;}
.ls12{letter-spacing:0.294400pt;}
.ls2b{letter-spacing:0.300288pt;}
.ls3f{letter-spacing:0.306176pt;}
.ls36{letter-spacing:0.323840pt;}
.ls9{letter-spacing:0.329344pt;}
.ls45{letter-spacing:0.335616pt;}
.ls42{letter-spacing:0.341504pt;}
.ls3e{letter-spacing:0.347392pt;}
.ls38{letter-spacing:0.371840pt;}
.ls49{letter-spacing:0.376832pt;}
.ls50{letter-spacing:0.382720pt;}
.ls52{letter-spacing:0.388608pt;}
.ls4e{letter-spacing:0.400384pt;}
.ls53{letter-spacing:0.423936pt;}
.ls4c{letter-spacing:0.465152pt;}
.ls16{letter-spacing:0.531200pt;}
.ls8{letter-spacing:0.584320pt;}
.lsb{letter-spacing:0.754304pt;}
.ls21{letter-spacing:0.765440pt;}
.ls1e{letter-spacing:0.896000pt;}
.ls22{letter-spacing:1.413120pt;}
.ls20{letter-spacing:1.536000pt;}
.ls48{letter-spacing:7.296000pt;}
.ls2a{letter-spacing:8.773120pt;}
.ls19{letter-spacing:25.330560pt;}
.ls32{letter-spacing:29.734848pt;}
.ls1d{letter-spacing:70.016000pt;}
.ls1f{letter-spacing:86.656000pt;}
.ls23{letter-spacing:747.152640pt;}
.ls46{letter-spacing:751.603200pt;}
.ls0{letter-spacing:751.631360pt;}
.ls30{letter-spacing:751.749120pt;}
.ws32{word-spacing:-24.796160pt;}
.ws1c{word-spacing:-24.689280pt;}
.ws6b{word-spacing:-24.475520pt;}
.ws6d{word-spacing:-18.120960pt;}
.ws6c{word-spacing:-18.046080pt;}
.ws6e{word-spacing:-17.971200pt;}
.ws59{word-spacing:-17.671680pt;}
.ws2c{word-spacing:-17.447040pt;}
.ws52{word-spacing:-16.368640pt;}
.ws5e{word-spacing:-16.133120pt;}
.wsd{word-spacing:-15.298560pt;}
.wsc{word-spacing:-14.979840pt;}
.ws53{word-spacing:-14.767360pt;}
.wse{word-spacing:-14.661120pt;}
.ws20{word-spacing:-14.656000pt;}
.ws10{word-spacing:-14.554880pt;}
.ws0{word-spacing:-14.464000pt;}
.ws25{word-spacing:-14.400000pt;}
.ws6{word-spacing:-13.895680pt;}
.ws76{word-spacing:-13.836800pt;}
.ws78{word-spacing:-13.777920pt;}
.ws1d{word-spacing:-13.719040pt;}
.ws7{word-spacing:-13.660160pt;}
.ws51{word-spacing:-13.601280pt;}
.ws22{word-spacing:-13.542400pt;}
.ws58{word-spacing:-13.536000pt;}
.wsa{word-spacing:-13.483520pt;}
.ws9{word-spacing:-13.424640pt;}
.wsb{word-spacing:-13.365760pt;}
.ws24{word-spacing:-13.306880pt;}
.ws8{word-spacing:-13.189120pt;}
.ws5f{word-spacing:-13.071360pt;}
.ws23{word-spacing:-13.012480pt;}
.ws21{word-spacing:-12.953600pt;}
.ws65{word-spacing:-12.835840pt;}
.ws1e{word-spacing:-12.776960pt;}
.ws2d{word-spacing:-12.058240pt;}
.wsf{word-spacing:-12.005120pt;}
.ws60{word-spacing:-8.648960pt;}
.ws6f{word-spacing:-8.389120pt;}
.ws33{word-spacing:-3.356160pt;}
.ws3b{word-spacing:-2.708480pt;}
.ws39{word-spacing:-2.355200pt;}
.ws3a{word-spacing:-1.943040pt;}
.ws50{word-spacing:-1.118720pt;}
.ws77{word-spacing:-1.059840pt;}
.ws7c{word-spacing:-1.000960pt;}
.ws56{word-spacing:-0.942080pt;}
.ws61{word-spacing:-0.883200pt;}
.ws44{word-spacing:-0.824320pt;}
.ws2b{word-spacing:-0.765440pt;}
.ws66{word-spacing:-0.706560pt;}
.ws72{word-spacing:-0.647680pt;}
.ws2a{word-spacing:-0.576000pt;}
.ws75{word-spacing:-0.529920pt;}
.ws18{word-spacing:-0.471040pt;}
.ws5b{word-spacing:-0.449280pt;}
.ws68{word-spacing:-0.412160pt;}
.ws63{word-spacing:-0.371840pt;}
.ws7a{word-spacing:-0.353280pt;}
.ws13{word-spacing:-0.294400pt;}
.ws1a{word-spacing:-0.265600pt;}
.ws28{word-spacing:-0.256000pt;}
.ws4f{word-spacing:-0.235520pt;}
.ws71{word-spacing:-0.224640pt;}
.ws31{word-spacing:-0.212480pt;}
.ws27{word-spacing:-0.192000pt;}
.ws12{word-spacing:-0.176640pt;}
.ws2e{word-spacing:-0.149760pt;}
.ws16{word-spacing:-0.117760pt;}
.ws30{word-spacing:-0.106240pt;}
.ws11{word-spacing:-0.096000pt;}
.ws14{word-spacing:-0.058880pt;}
.ws1{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.053120pt;}
.ws5d{word-spacing:0.058880pt;}
.ws5{word-spacing:0.064000pt;}
.ws57{word-spacing:0.106240pt;}
.ws17{word-spacing:0.117760pt;}
.ws64{word-spacing:0.149760pt;}
.ws69{word-spacing:0.159360pt;}
.ws15{word-spacing:0.176640pt;}
.ws7b{word-spacing:0.235520pt;}
.ws62{word-spacing:0.265600pt;}
.ws19{word-spacing:0.294400pt;}
.ws29{word-spacing:0.353280pt;}
.ws4{word-spacing:0.384000pt;}
.ws3{word-spacing:0.412160pt;}
.ws6a{word-spacing:0.424960pt;}
.ws1f{word-spacing:0.427520pt;}
.ws2{word-spacing:0.428800pt;}
.ws5c{word-spacing:0.471040pt;}
.ws26{word-spacing:0.512000pt;}
.ws54{word-spacing:0.529920pt;}
.ws5a{word-spacing:0.534400pt;}
.ws74{word-spacing:0.588800pt;}
.ws70{word-spacing:0.599040pt;}
.ws67{word-spacing:0.641280pt;}
.ws73{word-spacing:0.647680pt;}
.ws2f{word-spacing:0.690560pt;}
.ws79{word-spacing:0.765440pt;}
.ws55{word-spacing:0.824320pt;}
.ws42{word-spacing:1.118720pt;}
.ws4e{word-spacing:1.766400pt;}
.ws46{word-spacing:2.414080pt;}
.ws45{word-spacing:2.708480pt;}
.ws4d{word-spacing:3.061760pt;}
.ws49{word-spacing:4.180480pt;}
.ws48{word-spacing:4.357120pt;}
.ws4a{word-spacing:5.063680pt;}
.ws4b{word-spacing:5.122560pt;}
.ws47{word-spacing:6.888960pt;}
.ws3c{word-spacing:8.655360pt;}
.ws3e{word-spacing:8.949760pt;}
.ws3f{word-spacing:9.067520pt;}
.ws3d{word-spacing:9.126400pt;}
.ws41{word-spacing:11.363840pt;}
.ws40{word-spacing:11.540480pt;}
.ws36{word-spacing:11.658240pt;}
.ws43{word-spacing:13.306880pt;}
.ws37{word-spacing:15.308800pt;}
.ws38{word-spacing:15.367680pt;}
.ws35{word-spacing:20.843520pt;}
.ws34{word-spacing:20.961280pt;}
.ws4c{word-spacing:32.501760pt;}
._b{margin-left:-13.360896pt;}
._9{margin-left:-12.105472pt;}
._4{margin-left:-10.271744pt;}
._a{margin-left:-9.136768pt;}
._5{margin-left:-7.424000pt;}
._8{margin-left:-6.417920pt;}
._6{margin-left:-4.967808pt;}
._7{margin-left:-3.400320pt;}
._1{margin-left:-1.207936pt;}
._0{width:0.951936pt;}
._2{width:1.928064pt;}
._10{width:3.149952pt;}
._f{width:4.592640pt;}
._d{width:8.949760pt;}
._e{width:11.825024pt;}
._c{width:21.052288pt;}
._3{width:753.241600pt;}
.fs5{font-size:5.120000pt;}
.fs9{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs7{font-size:106.880000pt;}
.fsa{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:2.720000pt;}
.y39{bottom:2.879867pt;}
.y2b{bottom:2.880000pt;}
.y1a{bottom:3.040000pt;}
.y1c{bottom:4.320000pt;}
.y8{bottom:8.640000pt;}
.y29{bottom:19.520000pt;}
.y30{bottom:19.680000pt;}
.y18{bottom:20.000000pt;}
.yc{bottom:21.126240pt;}
.y25{bottom:22.084480pt;}
.y20{bottom:32.000000pt;}
.y4{bottom:37.920000pt;}
.y24{bottom:38.880000pt;}
.yb{bottom:48.966080pt;}
.y23{bottom:53.280000pt;}
.y1f{bottom:54.880000pt;}
.ya{bottom:62.408960pt;}
.y21{bottom:73.120000pt;}
.y22{bottom:73.440000pt;}
.y5{bottom:73.600000pt;}
.y9{bottom:74.726240pt;}
.y7{bottom:87.043520pt;}
.y6{bottom:99.200000pt;}
.y1e{bottom:104.000000pt;}
.y1f7{bottom:121.242880pt;}
.y1ad{bottom:126.256000pt;}
.y15c{bottom:128.376320pt;}
.y3{bottom:130.400000pt;}
.ydd{bottom:130.901120pt;}
.y24c{bottom:130.970240pt;}
.y225{bottom:131.631360pt;}
.y29a{bottom:131.656320pt;}
.y12a{bottom:132.958080pt;}
.y1f6{bottom:139.480960pt;}
.y1ac{bottom:143.051520pt;}
.y343{bottom:143.524480pt;}
.y381{bottom:143.528960pt;}
.y171{bottom:145.116320pt;}
.y272{bottom:146.012160pt;}
.y15b{bottom:146.452480pt;}
.ydc{bottom:148.815360pt;}
.y24b{bottom:149.208320pt;}
.yb8{bottom:149.864320pt;}
.y224{bottom:149.869440pt;}
.y299{bottom:149.894400pt;}
.y2e9{bottom:150.256000pt;}
.y129{bottom:151.196160pt;}
.y1f5{bottom:157.719040pt;}
.y1ab{bottom:160.008960pt;}
.y342{bottom:160.320000pt;}
.y380{bottom:160.324480pt;}
.y393{bottom:160.327040pt;}
.y31a{bottom:160.331520pt;}
.y170{bottom:160.800000pt;}
.y271{bottom:164.250240pt;}
.y15a{bottom:164.528640pt;}
.ydb{bottom:166.891520pt;}
.y2e8{bottom:167.051520pt;}
.y24a{bottom:167.446400pt;}
.yb7{bottom:167.940480pt;}
.y298{bottom:167.970560pt;}
.y128{bottom:169.272320pt;}
.y1f4{bottom:175.795200pt;}
.y1c5{bottom:176.480000pt;}
.y1aa{bottom:176.804480pt;}
.y37f{bottom:177.120000pt;}
.y392{bottom:177.122560pt;}
.y319{bottom:177.127040pt;}
.y35c{bottom:177.138560pt;}
.y223{bottom:178.823680pt;}
.y16f{bottom:181.457920pt;}
.y270{bottom:182.488320pt;}
.y159{bottom:182.766720pt;}
.y2e7{bottom:184.008960pt;}
.yda{bottom:184.967680pt;}
.y249{bottom:185.522560pt;}
.yb6{bottom:186.016640pt;}
.y297{bottom:186.208640pt;}
.y127{bottom:187.510400pt;}
.y1a9{bottom:193.600000pt;}
.y1f3{bottom:194.033280pt;}
.y391{bottom:194.080000pt;}
.y318{bottom:194.084480pt;}
.y37e{bottom:194.091520pt;}
.y35b{bottom:194.096000pt;}
.y222{bottom:196.899840pt;}
.y1c4{bottom:197.289600pt;}
.y26f{bottom:200.564480pt;}
.y2e6{bottom:200.804480pt;}
.y158{bottom:201.004800pt;}
.yd9{bottom:203.043840pt;}
.y248{bottom:203.760640pt;}
.yb5{bottom:203.930880pt;}
.y296{bottom:204.446720pt;}
.y126{bottom:205.748480pt;}
.y317{bottom:210.880000pt;}
.y37d{bottom:210.887040pt;}
.y35a{bottom:210.891520pt;}
.y390{bottom:210.896000pt;}
.y1f2{bottom:212.271360pt;}
.y221{bottom:214.976000pt;}
.y2e5{bottom:217.600000pt;}
.y157{bottom:219.080960pt;}
.y1a8{bottom:219.200000pt;}
.yd8{bottom:221.120000pt;}
.y247{bottom:221.998720pt;}
.yb4{bottom:222.007040pt;}
.y125{bottom:222.705920pt;}
.y341{bottom:227.682560pt;}
.y359{bottom:227.687040pt;}
.y38f{bottom:227.691520pt;}
.y316{bottom:227.703040pt;}
.y26e{bottom:229.680640pt;}
.y1f1{bottom:230.347520pt;}
.y220{bottom:233.214080pt;}
.y295{bottom:233.400960pt;}
.y2e4{bottom:234.568960pt;}
.y156{bottom:237.319040pt;}
.y124{bottom:239.501440pt;}
.y246{bottom:240.074880pt;}
.yb3{bottom:240.083200pt;}
.y340{bottom:244.640000pt;}
.y358{bottom:244.644480pt;}
.y38e{bottom:244.648960pt;}
.y315{bottom:244.660480pt;}
.yd7{bottom:245.756320pt;}
.y26d{bottom:247.594880pt;}
.y1a7{bottom:248.011520pt;}
.y1f0{bottom:248.585600pt;}
.y2e3{bottom:251.364480pt;}
.y21f{bottom:251.452160pt;}
.y294{bottom:251.477120pt;}
.y155{bottom:255.557120pt;}
.y123{bottom:256.458880pt;}
.yb2{bottom:258.159360pt;}
.y245{bottom:258.312960pt;}
.yd6{bottom:261.440000pt;}
.y38d{bottom:261.444480pt;}
.y33f{bottom:261.447040pt;}
.y314{bottom:261.456000pt;}
.y37c{bottom:261.490560pt;}
.y1a6{bottom:264.807040pt;}
.y26c{bottom:265.832960pt;}
.y1ef{bottom:266.823680pt;}
.y2e2{bottom:268.160000pt;}
.y21e{bottom:269.528320pt;}
.y293{bottom:269.553280pt;}
.y122{bottom:273.254400pt;}
.y154{bottom:273.633280pt;}
.yb1{bottom:276.235520pt;}
.y244{bottom:276.551040pt;}
.y38c{bottom:278.240000pt;}
.y33e{bottom:278.242560pt;}
.y313{bottom:278.251520pt;}
.y357{bottom:278.258560pt;}
.y37b{bottom:278.286080pt;}
.y1a5{bottom:281.602560pt;}
.y26b{bottom:284.071040pt;}
.y1ee{bottom:284.899840pt;}
.y2e1{bottom:285.128960pt;}
.yd5{bottom:286.172160pt;}
.y21d{bottom:287.766400pt;}
.y292{bottom:287.791360pt;}
.y121{bottom:290.049920pt;}
.y153{bottom:291.871360pt;}
.y243{bottom:294.627200pt;}
.y33d{bottom:295.200000pt;}
.y312{bottom:295.208960pt;}
.y38b{bottom:295.211520pt;}
.y356{bottom:295.216000pt;}
.y37a{bottom:295.243520pt;}
.y1a4{bottom:298.560000pt;}
.y2e0{bottom:301.924480pt;}
.y26a{bottom:302.147200pt;}
.y1ed{bottom:303.137920pt;}
.yb0{bottom:305.042560pt;}
.y21c{bottom:306.004480pt;}
.y291{bottom:306.029440pt;}
.y120{bottom:307.007360pt;}
.y152{bottom:310.109440pt;}
.y311{bottom:312.004480pt;}
.y38a{bottom:312.007040pt;}
.y355{bottom:312.011520pt;}
.y33c{bottom:312.016000pt;}
.y379{bottom:312.039040pt;}
.y242{bottom:312.865280pt;}
.y2df{bottom:318.720000pt;}
.y269{bottom:320.385280pt;}
.y1ec{bottom:321.376000pt;}
.yaf{bottom:322.956800pt;}
.y1a3{bottom:323.360000pt;}
.y11f{bottom:323.802880pt;}
.y21b{bottom:324.080640pt;}
.y290{bottom:324.105600pt;}
.y151{bottom:328.185600pt;}
.y310{bottom:328.800000pt;}
.y389{bottom:328.802560pt;}
.y354{bottom:328.807040pt;}
.y33b{bottom:328.811520pt;}
.y378{bottom:328.834560pt;}
.y241{bottom:331.103360pt;}
.y2de{bottom:335.700480pt;}
.y53{bottom:336.519680pt;}
.y268{bottom:338.623360pt;}
.y1eb{bottom:339.452160pt;}
.y11e{bottom:340.598400pt;}
.yae{bottom:341.032960pt;}
.y21a{bottom:342.318720pt;}
.y28f{bottom:342.343680pt;}
.y1a2{bottom:344.190080pt;}
.y388{bottom:345.760000pt;}
.y353{bottom:345.764480pt;}
.y30f{bottom:345.768960pt;}
.y377{bottom:345.792000pt;}
.y150{bottom:346.423680pt;}
.y240{bottom:349.179520pt;}
.y52{bottom:351.884640pt;}
.y2dd{bottom:352.496000pt;}
.y267{bottom:356.699520pt;}
.y11d{bottom:357.555840pt;}
.y1ea{bottom:357.690240pt;}
.yad{bottom:358.947200pt;}
.y28e{bottom:360.581760pt;}
.y352{bottom:362.560000pt;}
.y30e{bottom:362.564480pt;}
.y376{bottom:362.587520pt;}
.y14f{bottom:363.381120pt;}
.y51{bottom:367.249600pt;}
.y23f{bottom:367.417600pt;}
.y2dc{bottom:369.291520pt;}
.y219{bottom:371.272960pt;}
.y11c{bottom:374.351360pt;}
.y266{bottom:374.937600pt;}
.y1e9{bottom:375.928320pt;}
.yac{bottom:377.023360pt;}
.y28d{bottom:378.657920pt;}
.y30d{bottom:379.360000pt;}
.y351{bottom:379.367040pt;}
.y375{bottom:379.383040pt;}
.y14e{bottom:381.457280pt;}
.y50{bottom:382.614560pt;}
.y23e{bottom:385.655680pt;}
.y2db{bottom:386.248960pt;}
.y1c3{bottom:388.811520pt;}
.y218{bottom:389.349120pt;}
.y11b{bottom:391.146880pt;}
.y265{bottom:393.175680pt;}
.y1e8{bottom:394.004480pt;}
.yab{bottom:395.099520pt;}
.y33a{bottom:396.324480pt;}
.y387{bottom:396.328960pt;}
.y30c{bottom:396.336000pt;}
.y374{bottom:396.340480pt;}
.y28c{bottom:396.896000pt;}
.y4f{bottom:397.979520pt;}
.y14d{bottom:399.695360pt;}
.y2da{bottom:403.044480pt;}
.y23d{bottom:403.731840pt;}
.y1c2{bottom:405.607040pt;}
.y217{bottom:407.587200pt;}
.y11a{bottom:408.104320pt;}
.y264{bottom:411.251840pt;}
.y1e7{bottom:412.242560pt;}
.y339{bottom:413.120000pt;}
.y386{bottom:413.124480pt;}
.y30b{bottom:413.131520pt;}
.y373{bottom:413.136000pt;}
.yaa{bottom:413.175680pt;}
.y4e{bottom:413.344480pt;}
.y14c{bottom:417.771520pt;}
.y2d9{bottom:419.840000pt;}
.y23c{bottom:421.969920pt;}
.y1c1{bottom:422.402560pt;}
.y119{bottom:424.899840pt;}
.y216{bottom:425.663360pt;}
.y28b{bottom:425.850240pt;}
.y4d{bottom:428.550080pt;}
.y263{bottom:429.489920pt;}
.y385{bottom:429.920000pt;}
.y30a{bottom:429.927040pt;}
.y338{bottom:429.931520pt;}
.y1e6{bottom:430.480640pt;}
.ya9{bottom:431.251840pt;}
.y14b{bottom:436.009600pt;}
.y2d8{bottom:436.820480pt;}
.y1c0{bottom:439.360000pt;}
.y118{bottom:441.695360pt;}
.y215{bottom:443.901440pt;}
.y4c{bottom:443.915040pt;}
.y28a{bottom:443.926400pt;}
.y309{bottom:446.884480pt;}
.y337{bottom:446.888960pt;}
.y262{bottom:447.728000pt;}
.y1e5{bottom:448.556800pt;}
.ya8{bottom:449.166080pt;}
.y23b{bottom:450.924160pt;}
.y2d7{bottom:453.616000pt;}
.y14a{bottom:454.247680pt;}
.y117{bottom:458.652800pt;}
.y4b{bottom:459.280000pt;}
.y214{bottom:462.139520pt;}
.y289{bottom:462.164480pt;}
.y308{bottom:463.680000pt;}
.y336{bottom:463.684480pt;}
.y1bf{bottom:464.960000pt;}
.y191{bottom:465.313280pt;}
.y261{bottom:465.804160pt;}
.y1e4{bottom:466.794880pt;}
.ya7{bottom:467.242240pt;}
.y23a{bottom:469.000320pt;}
.y2d6{bottom:470.411520pt;}
.y149{bottom:472.323840pt;}
.y4a{bottom:474.644960pt;}
.y116{bottom:475.448320pt;}
.y213{bottom:480.215680pt;}
.y288{bottom:480.240640pt;}
.y335{bottom:480.480000pt;}
.y307{bottom:480.482560pt;}
.y260{bottom:484.042240pt;}
.y2b5{bottom:484.220160pt;}
.y1e3{bottom:485.032960pt;}
.ya6{bottom:485.318400pt;}
.y239{bottom:487.238400pt;}
.y2d5{bottom:487.368960pt;}
.y49{bottom:490.009920pt;}
.y148{bottom:490.561920pt;}
.y115{bottom:492.243840pt;}
.y190{bottom:493.634560pt;}
.y1be{bottom:493.657600pt;}
.y16e{bottom:496.495360pt;}
.y306{bottom:497.440000pt;}
.y372{bottom:497.451520pt;}
.y334{bottom:497.460480pt;}
.y212{bottom:498.453760pt;}
.y287{bottom:498.478720pt;}
.y25f{bottom:502.280320pt;}
.y1e2{bottom:503.109120pt;}
.ya5{bottom:503.394560pt;}
.y2d4{bottom:504.164480pt;}
.y48{bottom:505.215520pt;}
.y238{bottom:505.314560pt;}
.y147{bottom:508.871040pt;}
.y114{bottom:509.201280pt;}
.y18f{bottom:510.430080pt;}
.y1bd{bottom:510.453120pt;}
.y2b4{bottom:513.027200pt;}
.y371{bottom:514.247040pt;}
.y305{bottom:514.251520pt;}
.y333{bottom:514.256000pt;}
.y16d{bottom:514.733440pt;}
.yf8{bottom:516.599040pt;}
.y211{bottom:516.691840pt;}
.y286{bottom:516.716800pt;}
.y25e{bottom:520.356480pt;}
.y47{bottom:520.580480pt;}
.y2d3{bottom:520.960000pt;}
.ya4{bottom:521.308800pt;}
.y1e1{bottom:521.347200pt;}
.y237{bottom:523.552640pt;}
.y113{bottom:525.996800pt;}
.y146{bottom:526.947200pt;}
.y18e{bottom:527.387520pt;}
.y1bc{bottom:527.410560pt;}
.yd4{bottom:527.933440pt;}
.y1b{bottom:528.160000pt;}
.y370{bottom:531.042560pt;}
.y304{bottom:531.047040pt;}
.y332{bottom:531.051520pt;}
.y2b3{bottom:531.103360pt;}
.y16c{bottom:532.809600pt;}
.y210{bottom:534.768000pt;}
.y285{bottom:534.792960pt;}
.y46{bottom:535.945440pt;}
.y2d2{bottom:537.931520pt;}
.y25d{bottom:538.594560pt;}
.ya3{bottom:539.384960pt;}
.y1e0{bottom:539.585280pt;}
.y236{bottom:541.790720pt;}
.y112{bottom:542.792320pt;}
.y18d{bottom:544.183040pt;}
.y1bb{bottom:544.206080pt;}
.y145{bottom:545.185280pt;}
.y7d{bottom:545.280000pt;}
.yd3{bottom:546.009600pt;}
.y36f{bottom:548.000000pt;}
.y303{bottom:548.004480pt;}
.y331{bottom:548.008960pt;}
.y2b2{bottom:549.341440pt;}
.y16b{bottom:551.047680pt;}
.y45{bottom:551.310400pt;}
.y20f{bottom:553.006080pt;}
.y284{bottom:553.031040pt;}
.y2d1{bottom:554.727040pt;}
.y25c{bottom:556.832640pt;}
.yf7{bottom:556.917120pt;}
.ya2{bottom:557.461120pt;}
.y1df{bottom:557.661440pt;}
.y111{bottom:559.749760pt;}
.y235{bottom:559.866880pt;}
.y18c{bottom:560.978560pt;}
.y1ba{bottom:561.001600pt;}
.y144{bottom:563.423360pt;}
.yd2{bottom:564.085760pt;}
.y302{bottom:564.800000pt;}
.y330{bottom:564.804480pt;}
.y36e{bottom:564.807040pt;}
.y7c{bottom:566.400000pt;}
.y44{bottom:566.675360pt;}
.y2b1{bottom:567.417600pt;}
.y16a{bottom:569.285760pt;}
.y20e{bottom:571.244160pt;}
.y283{bottom:571.269120pt;}
.y2d0{bottom:571.522560pt;}
.y6a{bottom:572.640000pt;}
.yf6{bottom:574.831360pt;}
.ya1{bottom:575.537280pt;}
.y1de{bottom:575.899520pt;}
.y110{bottom:576.545280pt;}
.y18b{bottom:577.936000pt;}
.y1b9{bottom:577.959040pt;}
.y234{bottom:578.104960pt;}
.y143{bottom:581.499520pt;}
.y32f{bottom:581.600000pt;}
.y36d{bottom:581.602560pt;}
.y301{bottom:581.611520pt;}
.y350{bottom:581.616000pt;}
.yd1{bottom:582.161920pt;}
.y43{bottom:582.199680pt;}
.y7b{bottom:584.480000pt;}
.y2b0{bottom:585.655680pt;}
.y25b{bottom:585.786880pt;}
.y169{bottom:587.361920pt;}
.y2cf{bottom:588.480000pt;}
.y20d{bottom:589.320320pt;}
.y282{bottom:589.345280pt;}
.yf5{bottom:592.745600pt;}
.y10f{bottom:593.340800pt;}
.ya0{bottom:593.613440pt;}
.y1dd{bottom:594.137600pt;}
.y18a{bottom:594.731520pt;}
.y1b8{bottom:594.754560pt;}
.y233{bottom:596.343040pt;}
.y42{bottom:597.564640pt;}
.y36c{bottom:598.560000pt;}
.y32e{bottom:598.564480pt;}
.y300{bottom:598.568960pt;}
.y34f{bottom:598.573440pt;}
.y142{bottom:599.737600pt;}
.yd0{bottom:600.238080pt;}
.y25a{bottom:603.863040pt;}
.y2af{bottom:603.893760pt;}
.y2ce{bottom:605.291520pt;}
.y168{bottom:605.600000pt;}
.y69{bottom:606.465920pt;}
.y20c{bottom:607.558400pt;}
.y281{bottom:607.583360pt;}
.y10e{bottom:610.298240pt;}
.yf4{bottom:610.821760pt;}
.y189{bottom:611.527040pt;}
.y9f{bottom:611.527680pt;}
.y1b7{bottom:611.550080pt;}
.y7a{bottom:612.000000pt;}
.y1dc{bottom:612.213760pt;}
.y41{bottom:612.929600pt;}
.y232{bottom:614.419200pt;}
.y32d{bottom:615.360000pt;}
.y2ff{bottom:615.364480pt;}
.y34e{bottom:615.368960pt;}
.y384{bottom:615.371520pt;}
.y141{bottom:617.975680pt;}
.ycf{bottom:618.152320pt;}
.y259{bottom:621.939200pt;}
.y2ae{bottom:621.969920pt;}
.y2cd{bottom:622.087040pt;}
.y68{bottom:623.423360pt;}
.y20b{bottom:625.796480pt;}
.y280{bottom:625.821440pt;}
.y10d{bottom:628.212480pt;}
.y40{bottom:628.294560pt;}
.y188{bottom:628.484480pt;}
.y1b6{bottom:628.507520pt;}
.yf3{bottom:628.897920pt;}
.y9e{bottom:629.603840pt;}
.y167{bottom:631.360000pt;}
.y2fe{bottom:632.160000pt;}
.y32c{bottom:632.164480pt;}
.y36b{bottom:632.167040pt;}
.y231{bottom:632.657280pt;}
.y140{bottom:636.051840pt;}
.yce{bottom:636.228480pt;}
.y2cc{bottom:639.044480pt;}
.y79{bottom:639.200000pt;}
.y258{bottom:640.177280pt;}
.y2ad{bottom:640.208000pt;}
.y67{bottom:640.218880pt;}
.y17{bottom:640.960000pt;}
.y1db{bottom:641.329920pt;}
.y3f{bottom:643.659520pt;}
.y20a{bottom:643.872640pt;}
.y27f{bottom:643.897600pt;}
.y187{bottom:645.280000pt;}
.y1b5{bottom:645.303040pt;}
.y10c{bottom:646.450560pt;}
.yf2{bottom:646.974080pt;}
.y9d{bottom:647.680000pt;}
.y32b{bottom:648.960000pt;}
.y36a{bottom:648.962560pt;}
.y2fd{bottom:648.978560pt;}
.y230{bottom:650.895360pt;}
.y13f{bottom:654.289920pt;}
.ycd{bottom:654.304640pt;}
.y2cb{bottom:655.840000pt;}
.y66{bottom:657.014400pt;}
.y257{bottom:658.415360pt;}
.y2ac{bottom:658.446080pt;}
.y3e{bottom:659.024480pt;}
.y1da{bottom:659.244160pt;}
.y166{bottom:660.160000pt;}
.y19{bottom:660.960000pt;}
.y1b4{bottom:662.098560pt;}
.y209{bottom:662.110720pt;}
.y27e{bottom:662.135680pt;}
.y10b{bottom:664.688640pt;}
.yf1{bottom:665.050240pt;}
.y78{bottom:665.120000pt;}
.y369{bottom:665.920000pt;}
.y32a{bottom:665.928960pt;}
.y2fc{bottom:665.936000pt;}
.y22f{bottom:668.971520pt;}
.y186{bottom:670.880000pt;}
.ycc{bottom:672.380800pt;}
.y13e{bottom:672.528000pt;}
.y2ca{bottom:672.651520pt;}
.y65{bottom:673.971840pt;}
.y3d{bottom:674.230080pt;}
.y256{bottom:676.491520pt;}
.y2ab{bottom:676.522240pt;}
.y1d9{bottom:677.482240pt;}
.y9c{bottom:678.560000pt;}
.y1b3{bottom:679.056000pt;}
.y208{bottom:680.348800pt;}
.y27d{bottom:680.373760pt;}
.y165{bottom:680.975360pt;}
.y329{bottom:682.724480pt;}
.y368{bottom:682.727040pt;}
.y2fb{bottom:682.731520pt;}
.y10a{bottom:682.764800pt;}
.yf0{bottom:682.964480pt;}
.y22e{bottom:687.209600pt;}
.y3c{bottom:689.595040pt;}
.y2c9{bottom:689.608960pt;}
.ycb{bottom:690.456960pt;}
.y13d{bottom:690.604160pt;}
.y77{bottom:691.040000pt;}
.y255{bottom:694.729600pt;}
.y2aa{bottom:694.760320pt;}
.y1d8{bottom:695.558400pt;}
.y1b2{bottom:695.851520pt;}
.y9b{bottom:696.480000pt;}
.y207{bottom:698.424960pt;}
.y27c{bottom:698.449920pt;}
.y328{bottom:699.520000pt;}
.y367{bottom:699.522560pt;}
.y2fa{bottom:699.527040pt;}
.y185{bottom:699.596160pt;}
.y109{bottom:701.002880pt;}
.yef{bottom:701.040640pt;}
.y3b{bottom:704.960000pt;}
.y22d{bottom:705.447680pt;}
.y2c8{bottom:706.404480pt;}
.yca{bottom:708.371200pt;}
.y13c{bottom:708.842240pt;}
.y64{bottom:709.491200pt;}
.y1b1{bottom:712.647040pt;}
.y254{bottom:712.967680pt;}
.y2a9{bottom:712.998400pt;}
.y1d7{bottom:713.796480pt;}
.y9a{bottom:714.560000pt;}
.y366{bottom:716.480000pt;}
.y2f9{bottom:716.484480pt;}
.y327{bottom:716.488960pt;}
.y34d{bottom:716.491520pt;}
.y184{bottom:716.553600pt;}
.y1c8{bottom:716.640000pt;}
.y206{bottom:716.663040pt;}
.y27b{bottom:716.688000pt;}
.y76{bottom:716.800000pt;}
.yee{bottom:719.116800pt;}
.y108{bottom:719.240960pt;}
.y3a{bottom:720.480000pt;}
.y2c7{bottom:723.200000pt;}
.y22c{bottom:723.523840pt;}
.y1a1{bottom:724.834560pt;}
.y63{bottom:726.286720pt;}
.yc9{bottom:726.447360pt;}
.y13b{bottom:727.080320pt;}
.y1b0{bottom:729.604480pt;}
.y253{bottom:731.043840pt;}
.y2a8{bottom:731.074560pt;}
.y1d6{bottom:732.034560pt;}
.y99{bottom:732.480000pt;}
.y2f8{bottom:733.280000pt;}
.y326{bottom:733.284480pt;}
.y34c{bottom:733.287040pt;}
.y365{bottom:733.291520pt;}
.y383{bottom:733.296000pt;}
.y183{bottom:733.349120pt;}
.y38{bottom:734.880000pt;}
.y205{bottom:734.901120pt;}
.y27a{bottom:734.926080pt;}
.yed{bottom:737.192960pt;}
.y107{bottom:737.317120pt;}
.y2c6{bottom:740.168827pt;}
.y22b{bottom:741.761920pt;}
.y1a0{bottom:742.910720pt;}
.y75{bottom:743.040000pt;}
.y62{bottom:743.082240pt;}
.y13a{bottom:745.156480pt;}
.y1af{bottom:746.400000pt;}
.y252{bottom:749.281920pt;}
.y2a7{bottom:749.312640pt;}
.y2f7{bottom:750.080000pt;}
.y34b{bottom:750.082560pt;}
.y364{bottom:750.087040pt;}
.y382{bottom:750.091520pt;}
.y1d5{bottom:750.110720pt;}
.y182{bottom:750.144640pt;}
.y98{bottom:750.560000pt;}
.y37{bottom:752.480000pt;}
.y204{bottom:752.977280pt;}
.y279{bottom:753.002240pt;}
.yec{bottom:755.269120pt;}
.yc8{bottom:755.401600pt;}
.y106{bottom:755.555200pt;}
.y2c5{bottom:756.964347pt;}
.y22a{bottom:760.000000pt;}
.y61{bottom:760.039680pt;}
.y19f{bottom:761.148800pt;}
.y139{bottom:763.394560pt;}
.y34a{bottom:767.040000pt;}
.y363{bottom:767.044480pt;}
.y2f6{bottom:767.048960pt;}
.y181{bottom:767.102080pt;}
.y251{bottom:767.520000pt;}
.y2a6{bottom:767.550720pt;}
.y1d4{bottom:768.348800pt;}
.y97{bottom:768.640000pt;}
.y74{bottom:770.240000pt;}
.y203{bottom:771.215360pt;}
.y278{bottom:771.240320pt;}
.y36{bottom:771.520000pt;}
.y1ae{bottom:772.000000pt;}
.yc7{bottom:773.168640pt;}
.yeb{bottom:773.183360pt;}
.y1c7{bottom:773.313920pt;}
.y105{bottom:773.631360pt;}
.y2c4{bottom:773.759867pt;}
.y60{bottom:776.835200pt;}
.y19e{bottom:779.224960pt;}
.y138{bottom:781.632640pt;}
.y362{bottom:783.840000pt;}
.y2f5{bottom:783.844480pt;}
.y349{bottom:783.851520pt;}
.y180{bottom:783.897600pt;}
.y2a5{bottom:785.626880pt;}
.y229{bottom:785.759867pt;}
.y1d3{bottom:786.586880pt;}
.y96{bottom:786.720000pt;}
.y202{bottom:789.453440pt;}
.y277{bottom:789.478400pt;}
.y35{bottom:790.560000pt;}
.y2c3{bottom:790.724480pt;}
.yc6{bottom:791.244800pt;}
.yea{bottom:791.259520pt;}
.y104{bottom:791.869440pt;}
.y250{bottom:793.280000pt;}
.y5f{bottom:793.630720pt;}
.y16{bottom:793.770880pt;}
.y73{bottom:796.160000pt;}
.y19d{bottom:797.463040pt;}
.y137{bottom:799.708800pt;}
.y2f4{bottom:800.640000pt;}
.y348{bottom:800.647040pt;}
.y361{bottom:800.654080pt;}
.y17f{bottom:800.693120pt;}
.y2a4{bottom:803.864960pt;}
.y95{bottom:804.640000pt;}
.y1d2{bottom:804.663040pt;}
.y2c2{bottom:807.520000pt;}
.y201{bottom:807.529600pt;}
.y276{bottom:807.554560pt;}
.yc5{bottom:809.320960pt;}
.ye9{bottom:809.335680pt;}
.y103{bottom:810.107520pt;}
.y5e{bottom:810.588160pt;}
.y34{bottom:810.884480pt;}
.y19c{bottom:815.701120pt;}
.y347{bottom:817.604480pt;}
.y325{bottom:817.608960pt;}
.y2f3{bottom:817.611520pt;}
.y15{bottom:817.617280pt;}
.y17e{bottom:817.650560pt;}
.y136{bottom:817.946880pt;}
.y228{bottom:818.432640pt;}
.y72{bottom:822.080000pt;}
.y94{bottom:822.720000pt;}
.y1d1{bottom:822.901120pt;}
.y2c1{bottom:824.327040pt;}
.y200{bottom:825.767680pt;}
.y275{bottom:825.792640pt;}
.y24f{bottom:825.954560pt;}
.yc4{bottom:827.397120pt;}
.ye8{bottom:827.411840pt;}
.y33{bottom:827.680000pt;}
.y102{bottom:828.183680pt;}
.y2a3{bottom:832.819200pt;}
.y19b{bottom:833.777280pt;}
.y346{bottom:834.400000pt;}
.y324{bottom:834.404480pt;}
.y2f2{bottom:834.407040pt;}
.y14{bottom:834.412800pt;}
.y17d{bottom:834.446080pt;}
.y135{bottom:836.184960pt;}
.y227{bottom:836.508800pt;}
.y89{bottom:840.473760pt;}
.y93{bottom:840.800000pt;}
.y2c0{bottom:841.122560pt;}
.y1d0{bottom:841.139200pt;}
.y32{bottom:842.560000pt;}
.y1ff{bottom:844.005760pt;}
.y24e{bottom:844.030720pt;}
.yc3{bottom:845.311360pt;}
.ye7{bottom:845.326080pt;}
.y5d{bottom:846.107520pt;}
.y101{bottom:846.421760pt;}
.y71{bottom:848.320000pt;}
.y2a2{bottom:850.895360pt;}
.y323{bottom:851.200000pt;}
.y2f1{bottom:851.202560pt;}
.y395{bottom:851.207040pt;}
.y345{bottom:851.214080pt;}
.y17c{bottom:851.241600pt;}
.y13{bottom:851.370240pt;}
.y19a{bottom:852.015360pt;}
.y134{bottom:854.584960pt;}
.y88{bottom:855.520000pt;}
.y2bf{bottom:858.080000pt;}
.y92{bottom:858.880000pt;}
.y1cf{bottom:859.215360pt;}
.y31{bottom:860.000000pt;}
.y1fe{bottom:862.081920pt;}
.y24d{bottom:862.106880pt;}
.y5c{bottom:862.903040pt;}
.yc2{bottom:863.387520pt;}
.y100{bottom:864.659840pt;}
.y12{bottom:865.133440pt;}
.y2f0{bottom:868.160000pt;}
.y322{bottom:868.164480pt;}
.y344{bottom:868.171520pt;}
.y17b{bottom:868.199040pt;}
.y2a1{bottom:869.133440pt;}
.y199{bottom:870.577280pt;}
.y226{bottom:872.823040pt;}
.y133{bottom:873.146880pt;}
.y87{bottom:873.440000pt;}
.ye6{bottom:874.280320pt;}
.y2be{bottom:874.884480pt;}
.y70{bottom:875.520000pt;}
.y91{bottom:876.960000pt;}
.y1ce{bottom:877.453440pt;}
.y5b{bottom:879.698560pt;}
.y1fd{bottom:880.344960pt;}
.yc1{bottom:881.463680pt;}
.yff{bottom:882.736000pt;}
.y1c6{bottom:884.670720pt;}
.y321{bottom:884.960000pt;}
.y2ef{bottom:884.967040pt;}
.y360{bottom:884.971520pt;}
.y17a{bottom:884.994560pt;}
.y2a0{bottom:887.209600pt;}
.y198{bottom:888.815360pt;}
.y132{bottom:891.061120pt;}
.y86{bottom:891.360000pt;}
.y2bd{bottom:891.680000pt;}
.ye5{bottom:892.194560pt;}
.y2f{bottom:894.400000pt;}
.y90{bottom:894.880000pt;}
.y1cd{bottom:895.691520pt;}
.y5a{bottom:896.656000pt;}
.y1fc{bottom:898.583040pt;}
.yc0{bottom:899.539840pt;}
.yfe{bottom:900.974080pt;}
.y6f{bottom:901.440000pt;}
.y2ee{bottom:901.762560pt;}
.y35f{bottom:901.767040pt;}
.y320{bottom:901.778560pt;}
.y179{bottom:901.790080pt;}
.y29f{bottom:905.447680pt;}
.y197{bottom:906.891520pt;}
.y2bc{bottom:908.648960pt;}
.y131{bottom:909.137280pt;}
.y85{bottom:909.280000pt;}
.ye4{bottom:910.108800pt;}
.y8f{bottom:912.960000pt;}
.y59{bottom:913.451520pt;}
.y1cc{bottom:913.767680pt;}
.y1fb{bottom:916.659200pt;}
.ybf{bottom:917.616000pt;}
.yfd{bottom:917.931520pt;}
.y2ed{bottom:918.720000pt;}
.y35e{bottom:918.724480pt;}
.y164{bottom:918.732800pt;}
.y31f{bottom:918.736000pt;}
.y178{bottom:918.747520pt;}
.y29e{bottom:923.685760pt;}
.y196{bottom:925.129600pt;}
.y2bb{bottom:925.444480pt;}
.y84{bottom:927.205280pt;}
.y6e{bottom:927.360000pt;}
.y130{bottom:927.375360pt;}
.ye3{bottom:928.184960pt;}
.y2e{bottom:928.800000pt;}
.y58{bottom:930.247040pt;}
.y8e{bottom:931.040000pt;}
.y1cb{bottom:932.005760pt;}
.yfc{bottom:934.888960pt;}
.y1fa{bottom:934.897280pt;}
.y163{bottom:935.219200pt;}
.y35d{bottom:935.520000pt;}
.y2ec{bottom:935.527040pt;}
.ybe{bottom:935.530240pt;}
.y31e{bottom:935.531520pt;}
.y177{bottom:935.543040pt;}
.y29d{bottom:941.761920pt;}
.y2ba{bottom:942.240000pt;}
.y195{bottom:943.367680pt;}
.y83{bottom:945.120000pt;}
.y12f{bottom:945.613440pt;}
.y2d{bottom:946.240000pt;}
.ye2{bottom:946.261120pt;}
.y57{bottom:947.204480pt;}
.y8d{bottom:949.120000pt;}
.y1ca{bottom:950.243840pt;}
.yfb{bottom:951.684480pt;}
.y162{bottom:952.014720pt;}
.y2eb{bottom:952.322560pt;}
.y31d{bottom:952.327040pt;}
.y176{bottom:952.338560pt;}
.y1f9{bottom:953.135360pt;}
.y6d{bottom:953.600000pt;}
.ybd{bottom:953.606400pt;}
.y2b9{bottom:959.205120pt;}
.y29c{bottom:960.000000pt;}
.y194{bottom:961.443840pt;}
.y82{bottom:963.044000pt;}
.y12e{bottom:963.689600pt;}
.y2c{bottom:963.840000pt;}
.y56{bottom:964.000000pt;}
.ye1{bottom:964.337280pt;}
.y8c{bottom:967.197440pt;}
.y1c9{bottom:968.320000pt;}
.yfa{bottom:968.480000pt;}
.y161{bottom:968.972160pt;}
.y2ea{bottom:969.280000pt;}
.y31c{bottom:969.284480pt;}
.y175{bottom:969.296000pt;}
.y11{bottom:969.454080pt;}
.y274{bottom:971.211520pt;}
.ybc{bottom:971.682560pt;}
.y2b8{bottom:976.000640pt;}
.y193{bottom:979.681920pt;}
.y81{bottom:980.640000pt;}
.y6c{bottom:981.120000pt;}
.y2a{bottom:981.280000pt;}
.y12d{bottom:981.927680pt;}
.y1f8{bottom:982.089600pt;}
.ye0{bottom:982.413440pt;}
.y29b{bottom:985.759867pt;}
.y160{bottom:985.767680pt;}
.y31b{bottom:986.080000pt;}
.y174{bottom:986.091520pt;}
.y10{bottom:986.411520pt;}
.y273{bottom:989.449600pt;}
.ybb{bottom:989.758720pt;}
.y2b7{bottom:993.120000pt;}
.yf9{bottom:994.240000pt;}
.y192{bottom:997.920000pt;}
.y8b{bottom:998.080000pt;}
.y80{bottom:998.565280pt;}
.y28{bottom:998.880000pt;}
.y12c{bottom:1000.165760pt;}
.ydf{bottom:1000.327680pt;}
.y55{bottom:1001.759867pt;}
.y15f{bottom:1002.563200pt;}
.y394{bottom:1002.880000pt;}
.y173{bottom:1002.887040pt;}
.yf{bottom:1003.207040pt;}
.y6b{bottom:1008.640000pt;}
.y7f{bottom:1016.480000pt;}
.y12b{bottom:1018.241920pt;}
.yde{bottom:1018.403840pt;}
.yba{bottom:1018.565760pt;}
.y15e{bottom:1019.520640pt;}
.y172{bottom:1019.844480pt;}
.y2b6{bottom:1020.000000pt;}
.ye{bottom:1020.164480pt;}
.y8a{bottom:1025.120000pt;}
.y7e{bottom:1032.800000pt;}
.y26{bottom:1033.280000pt;}
.yb9{bottom:1036.480000pt;}
.y15d{bottom:1036.640000pt;}
.yd{bottom:1036.960000pt;}
.y54{bottom:1038.240000pt;}
.y2{bottom:1073.280000pt;}
.y1d{bottom:1073.284480pt;}
.y1{bottom:1090.080000pt;}
.he{height:3.584000pt;}
.hf{height:16.800000pt;}
.h15{height:16.960000pt;}
.h12{height:16.961333pt;}
.h17{height:18.400000pt;}
.h16{height:18.401333pt;}
.h8{height:27.521333pt;}
.h3{height:31.238750pt;}
.hc{height:33.600000pt;}
.h14{height:33.760000pt;}
.h13{height:33.761333pt;}
.hd{height:34.968750pt;}
.h19{height:38.672812pt;}
.h18{height:38.698750pt;}
.h1e{height:42.640250pt;}
.h1c{height:42.656250pt;}
.hb{height:42.720000pt;}
.h5{height:42.866250pt;}
.h2{height:42.895000pt;}
.ha{height:43.520000pt;}
.h9{height:43.750000pt;}
.h11{height:46.103040pt;}
.h1a{height:47.276800pt;}
.h10{height:52.403200pt;}
.h20{height:53.872640pt;}
.h24{height:54.056960pt;}
.h23{height:54.156800pt;}
.h1d{height:58.631040pt;}
.h6{height:59.539947pt;}
.h22{height:77.863750pt;}
.h4{height:83.520000pt;}
.h1f{height:94.647040pt;}
.h21{height:94.990080pt;}
.h1b{height:95.123200pt;}
.h25{height:113.920000pt;}
.h7{height:119.360000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wa{width:73.760000pt;}
.wb{width:76.320000pt;}
.wc{width:118.240000pt;}
.w2{width:156.480000pt;}
.w4{width:172.961333pt;}
.w7{width:192.000000pt;}
.w8{width:235.361333pt;}
.w3{width:349.600000pt;}
.w9{width:364.160000pt;}
.w5{width:581.600000pt;}
.w6{width:581.760000pt;}
.w1{width:793.333333pt;}
.w0{width:793.440000pt;}
.x1{left:-6.080000pt;}
.x0{left:0.000000pt;}
.xf{left:6.720000pt;}
.x2{left:17.920000pt;}
.x5{left:24.800000pt;}
.x4{left:34.080000pt;}
.x6{left:58.880000pt;}
.x3{left:96.000000pt;}
.x14{left:103.200000pt;}
.x1c{left:110.720000pt;}
.x20{left:114.880000pt;}
.x1e{left:133.759360pt;}
.x25{left:143.987200pt;}
.x7{left:154.880000pt;}
.x16{left:160.960000pt;}
.x19{left:171.200000pt;}
.x8{left:190.560000pt;}
.x1b{left:194.882880pt;}
.xb{left:197.121440pt;}
.xd{left:210.403520pt;}
.x1a{left:248.160000pt;}
.xc{left:263.681920pt;}
.x15{left:288.000000pt;}
.x18{left:332.640000pt;}
.x9{left:342.880000pt;}
.x13{left:352.640000pt;}
.x12{left:429.761280pt;}
.x1d{left:514.080000pt;}
.xa{left:533.440000pt;}
.xe{left:540.160000pt;}
.x10{left:546.880000pt;}
.x21{left:561.284480pt;}
.x24{left:610.081280pt;}
.x23{left:619.354880pt;}
.x1f{left:689.920000pt;}
.x17{left:696.480000pt;}
.x22{left:698.533760pt;}
.x11{left:706.243520pt;}
}




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