
    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_69789215594d03d699b9592d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_7c9baf9f039bc8c3bdd9bf71.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_bbf5a4062c76a1afe52c32f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002441;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_4f5fe3956b351c34f5eecebf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_ebd6edfbffc91c682a61d1f5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7cfa4d899c868bb4053a8821.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a101d3e2e927d7a8fc3e950b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.096680;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_1bbcf91207b915f370106cc6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.676758;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_eda090c7a78c0de2e7080a5a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.835938;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_7a66e02e75f8ea41fdc9fcf3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.672852;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_74fb1a36d6baa42324939a5e.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_eb80be983aefab2910fc8f65.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.669434;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:ffd;src:url('chunks/assets/font_bc2ccb302f14ceb81659a39d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.835938;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:ffe;src:url('chunks/assets/font_583addd0d03f2d75eece1c39.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.881836;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:fff;src:url('chunks/assets/font_16f071847c9222856202f013.woff2')format("woff");}.fff{font-family:fff;line-height:0.922363;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:ff10;src:url('chunks/assets/font_ddf69244c35aab762fcaa923.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.862305;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:ff11;src:url('chunks/assets/font_cbec7182c96a46890ff64018.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.675781;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:ff12;src:url('chunks/assets/font_6b7eec4fea74b22e844eb9cf.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.862305;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:ff13;src:url('chunks/assets/font_5dedb6242f586cc61a2975c3.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.689453;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.720000px;}
.ls44{letter-spacing:-0.057600px;}
.ls1c{letter-spacing:-0.036000px;}
.ls19{letter-spacing:-0.028800px;}
.ls1a{letter-spacing:-0.021600px;}
.ls1d{letter-spacing:-0.014400px;}
.ls1b{letter-spacing:-0.007200px;}
.ls1{letter-spacing:0.000000px;}
.ls72{letter-spacing:0.002400px;}
.ls15{letter-spacing:0.007200px;}
.ls46{letter-spacing:0.010800px;}
.ls25{letter-spacing:0.014400px;}
.ls54{letter-spacing:0.015000px;}
.ls58{letter-spacing:0.015600px;}
.ls16{letter-spacing:0.021600px;}
.ls18{letter-spacing:0.028800px;}
.ls49{letter-spacing:0.035400px;}
.ls2d{letter-spacing:0.036000px;}
.ls41{letter-spacing:0.043200px;}
.ls45{letter-spacing:0.050400px;}
.ls40{letter-spacing:0.062208px;}
.ls39{letter-spacing:0.069984px;}
.ls42{letter-spacing:0.081000px;}
.ls6e{letter-spacing:0.085536px;}
.ls4{letter-spacing:0.093312px;}
.ls5c{letter-spacing:0.101088px;}
.ls5{letter-spacing:0.108000px;}
.ls47{letter-spacing:0.108864px;}
.ls17{letter-spacing:0.119520px;}
.ls9{letter-spacing:0.132192px;}
.ls3f{letter-spacing:0.147744px;}
.ls4d{letter-spacing:0.171072px;}
.ls4c{letter-spacing:0.178848px;}
.ls74{letter-spacing:0.186624px;}
.ls68{letter-spacing:0.223800px;}
.ls57{letter-spacing:0.224160px;}
.ls7{letter-spacing:0.275040px;}
.ls12{letter-spacing:0.304560px;}
.ls4e{letter-spacing:0.323136px;}
.ls6c{letter-spacing:0.324720px;}
.ls2b{letter-spacing:0.343440px;}
.lsd{letter-spacing:0.354960px;}
.ls0{letter-spacing:0.373248px;}
.ls36{letter-spacing:0.389664px;}
.ls33{letter-spacing:0.395568px;}
.ls24{letter-spacing:0.437184px;}
.ls3b{letter-spacing:0.439200px;}
.ls34{letter-spacing:0.454608px;}
.ls37{letter-spacing:0.465696px;}
.ls5b{letter-spacing:0.475200px;}
.ls32{letter-spacing:0.490032px;}
.ls4f{letter-spacing:0.522720px;}
.ls56{letter-spacing:0.579744px;}
.ls5a{letter-spacing:0.636768px;}
.lsf{letter-spacing:0.663264px;}
.ls38{letter-spacing:0.674784px;}
.ls6{letter-spacing:0.680400px;}
.ls11{letter-spacing:0.690336px;}
.lsa{letter-spacing:0.730944px;}
.lsb{letter-spacing:0.744480px;}
.ls64{letter-spacing:0.746400px;}
.ls63{letter-spacing:0.747000px;}
.ls31{letter-spacing:0.771120px;}
.ls2c{letter-spacing:0.845856px;}
.ls10{letter-spacing:0.879840px;}
.lse{letter-spacing:0.967824px;}
.ls14{letter-spacing:1.015200px;}
.ls8{letter-spacing:1.016928px;}
.ls13{letter-spacing:1.137024px;}
.ls6b{letter-spacing:1.365600px;}
.ls20{letter-spacing:1.566360px;}
.ls5f{letter-spacing:1.644000px;}
.ls1f{letter-spacing:1.672320px;}
.ls51{letter-spacing:1.679616px;}
.ls22{letter-spacing:1.710720px;}
.ls50{letter-spacing:1.788480px;}
.ls1e{letter-spacing:1.800120px;}
.ls21{letter-spacing:1.929312px;}
.ls23{letter-spacing:1.941840px;}
.ls70{letter-spacing:2.121600px;}
.ls71{letter-spacing:2.123400px;}
.ls75{letter-spacing:2.696400px;}
.ls27{letter-spacing:2.999400px;}
.ls3d{letter-spacing:3.210000px;}
.ls59{letter-spacing:3.346200px;}
.ls6f{letter-spacing:3.589800px;}
.ls67{letter-spacing:3.811200px;}
.ls5d{letter-spacing:4.287000px;}
.ls5e{letter-spacing:4.288200px;}
.lsc{letter-spacing:6.024360px;}
.ls4a{letter-spacing:6.978000px;}
.ls30{letter-spacing:7.191600px;}
.ls53{letter-spacing:7.648800px;}
.ls76{letter-spacing:8.794200px;}
.ls77{letter-spacing:8.796000px;}
.ls6d{letter-spacing:8.929200px;}
.ls60{letter-spacing:9.803400px;}
.ls66{letter-spacing:9.957000px;}
.ls65{letter-spacing:9.957600px;}
.ls2a{letter-spacing:10.414200px;}
.ls2f{letter-spacing:10.969800px;}
.ls26{letter-spacing:11.420400px;}
.ls29{letter-spacing:14.452800px;}
.ls35{letter-spacing:14.961000px;}
.ls69{letter-spacing:17.863200px;}
.ls6a{letter-spacing:17.865000px;}
.ls2{letter-spacing:18.225648px;}
.ls3{letter-spacing:18.355536px;}
.ls3a{letter-spacing:19.889400px;}
.ls52{letter-spacing:22.187400px;}
.ls73{letter-spacing:23.239200px;}
.ls61{letter-spacing:23.329800px;}
.ls62{letter-spacing:23.330400px;}
.ls28{letter-spacing:29.310600px;}
.ls3e{letter-spacing:33.351000px;}
.ls4b{letter-spacing:37.027800px;}
.ls2e{letter-spacing:38.203800px;}
.ls43{letter-spacing:38.273400px;}
.ls48{letter-spacing:54.867000px;}
.ls3c{letter-spacing:63.989280px;}
.ls55{letter-spacing:200.160000px;}
.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;}
}
.wsc9{word-spacing:-200.232000px;}
.wsc{word-spacing:-19.830240px;}
.wsb{word-spacing:-19.559520px;}
.ws1{word-spacing:-18.414576px;}
.ws0{word-spacing:-18.284688px;}
.ws19{word-spacing:-2.067120px;}
.ws17{word-spacing:-2.054592px;}
.wsbf{word-spacing:-1.944000px;}
.ws18{word-spacing:-1.866240px;}
.wsc0{word-spacing:-1.835136px;}
.ws8{word-spacing:-1.111968px;}
.ws1c{word-spacing:-0.940896px;}
.ws32{word-spacing:-0.835920px;}
.ws6{word-spacing:-0.788400px;}
.ws4e{word-spacing:-0.769824px;}
.wsca{word-spacing:-0.731808px;}
.wsc7{word-spacing:-0.674784px;}
.wsa4{word-spacing:-0.617760px;}
.wscb{word-spacing:-0.570240px;}
.ws4f{word-spacing:-0.560736px;}
.ws7{word-spacing:-0.550080px;}
.ws38{word-spacing:-0.549072px;}
.ws1d{word-spacing:-0.532224px;}
.ws2{word-spacing:-0.528768px;}
.ws3a{word-spacing:-0.513648px;}
.ws45{word-spacing:-0.484704px;}
.ws39{word-spacing:-0.454608px;}
.wsa3{word-spacing:-0.418176px;}
.ws1b{word-spacing:-0.408240px;}
.wse9{word-spacing:-0.383760px;}
.ws100{word-spacing:-0.264384px;}
.ws87{word-spacing:-0.256608px;}
.ws3{word-spacing:-0.248832px;}
.wsd{word-spacing:-0.239040px;}
.ws5c{word-spacing:-0.225504px;}
.ws5{word-spacing:-0.216000px;}
.wsa{word-spacing:-0.209952px;}
.ws75{word-spacing:-0.186624px;}
.wsd0{word-spacing:-0.178848px;}
.wsfe{word-spacing:-0.163296px;}
.ws4{word-spacing:-0.155520px;}
.ws56{word-spacing:-0.147744px;}
.ws5e{word-spacing:-0.139968px;}
.ws70{word-spacing:-0.122400px;}
.ws5f{word-spacing:-0.115200px;}
.ws22{word-spacing:-0.108000px;}
.wse{word-spacing:-0.100800px;}
.ws12{word-spacing:-0.093600px;}
.ws1e{word-spacing:-0.086400px;}
.ws10{word-spacing:-0.079200px;}
.wsdf{word-spacing:-0.077760px;}
.wsf{word-spacing:-0.072000px;}
.ws14{word-spacing:-0.064800px;}
.ws16{word-spacing:-0.057600px;}
.ws13{word-spacing:-0.050400px;}
.ws11{word-spacing:-0.043200px;}
.ws15{word-spacing:-0.036000px;}
.ws9{word-spacing:0.000000px;}
.wsab{word-spacing:10.756800px;}
.wsaa{word-spacing:10.828800px;}
.ws108{word-spacing:11.700000px;}
.ws2d{word-spacing:11.721600px;}
.ws92{word-spacing:11.930400px;}
.ws60{word-spacing:12.045600px;}
.ws103{word-spacing:12.067200px;}
.ws48{word-spacing:12.218400px;}
.ws49{word-spacing:12.232800px;}
.ws36{word-spacing:12.391200px;}
.ws37{word-spacing:12.405600px;}
.ws107{word-spacing:12.412800px;}
.ws8f{word-spacing:12.477600px;}
.ws4b{word-spacing:12.614400px;}
.ws20{word-spacing:12.636000px;}
.ws66{word-spacing:12.657600px;}
.wsc4{word-spacing:13.036200px;}
.wsc5{word-spacing:13.039200px;}
.ws2c{word-spacing:13.046400px;}
.ws99{word-spacing:13.140000px;}
.wse4{word-spacing:13.183200px;}
.ws109{word-spacing:13.262400px;}
.ws7a{word-spacing:13.370400px;}
.ws79{word-spacing:13.572000px;}
.wsac{word-spacing:13.600800px;}
.ws89{word-spacing:13.680000px;}
.wsc8{word-spacing:13.752000px;}
.wse8{word-spacing:13.802400px;}
.wse6{word-spacing:13.816800px;}
.wse7{word-spacing:13.830600px;}
.wse5{word-spacing:13.852800px;}
.wsb6{word-spacing:13.924800px;}
.ws53{word-spacing:13.968000px;}
.ws69{word-spacing:14.112000px;}
.ws6a{word-spacing:14.133600px;}
.ws28{word-spacing:14.306400px;}
.ws7c{word-spacing:14.313600px;}
.ws7d{word-spacing:14.320800px;}
.wscf{word-spacing:14.378400px;}
.wsf2{word-spacing:14.407200px;}
.wscc{word-spacing:14.414400px;}
.ws29{word-spacing:14.421600px;}
.ws61{word-spacing:14.443200px;}
.wsf1{word-spacing:14.450400px;}
.ws62{word-spacing:14.472000px;}
.wsf0{word-spacing:14.486400px;}
.ws41{word-spacing:14.608800px;}
.ws65{word-spacing:14.637600px;}
.ws40{word-spacing:14.644800px;}
.ws43{word-spacing:14.803200px;}
.wsdb{word-spacing:14.817600px;}
.wsdc{word-spacing:14.860800px;}
.ws42{word-spacing:14.932800px;}
.ws3b{word-spacing:14.947200px;}
.ws25{word-spacing:14.983200px;}
.ws3c{word-spacing:14.990400px;}
.ws110{word-spacing:15.012000px;}
.ws10f{word-spacing:15.069600px;}
.ws1f{word-spacing:15.091200px;}
.wsb9{word-spacing:15.321600px;}
.ws2e{word-spacing:15.393600px;}
.wsde{word-spacing:15.400800px;}
.wsd9{word-spacing:15.465600px;}
.wsbe{word-spacing:15.530400px;}
.ws2b{word-spacing:15.645600px;}
.ws4c{word-spacing:15.681600px;}
.ws105{word-spacing:15.724800px;}
.ws46{word-spacing:15.811200px;}
.wsc3{word-spacing:16.092000px;}
.ws10c{word-spacing:16.135200px;}
.ws91{word-spacing:16.610400px;}
.wsb3{word-spacing:16.660800px;}
.ws78{word-spacing:16.668000px;}
.ws90{word-spacing:16.884000px;}
.ws80{word-spacing:16.941600px;}
.ws81{word-spacing:17.020800px;}
.ws94{word-spacing:17.186400px;}
.ws7f{word-spacing:17.474400px;}
.wsee{word-spacing:17.769600px;}
.wseb{word-spacing:17.776800px;}
.wsec{word-spacing:17.798400px;}
.wsed{word-spacing:17.805600px;}
.wsea{word-spacing:17.884800px;}
.wsdd{word-spacing:17.956800px;}
.wsb0{word-spacing:17.964000px;}
.ws63{word-spacing:17.971200px;}
.ws5b{word-spacing:18.180000px;}
.ws10b{word-spacing:18.388800px;}
.ws2f{word-spacing:18.518400px;}
.ws82{word-spacing:18.612000px;}
.ws47{word-spacing:18.669600px;}
.ws106{word-spacing:19.144800px;}
.ws51{word-spacing:19.245600px;}
.ws1a{word-spacing:19.274400px;}
.wsd4{word-spacing:19.432800px;}
.ws71{word-spacing:19.447200px;}
.wsa2{word-spacing:19.656000px;}
.ws9d{word-spacing:19.670400px;}
.ws9e{word-spacing:19.677600px;}
.ws57{word-spacing:19.821600px;}
.wsd2{word-spacing:19.834200px;}
.wsd3{word-spacing:19.836000px;}
.wsd1{word-spacing:19.879200px;}
.wsc6{word-spacing:19.893600px;}
.wsff{word-spacing:20.030400px;}
.ws6f{word-spacing:20.095200px;}
.ws23{word-spacing:20.188800px;}
.ws10a{word-spacing:20.289600px;}
.wscd{word-spacing:20.388600px;}
.ws5a{word-spacing:20.419200px;}
.ws8b{word-spacing:20.462400px;}
.ws21{word-spacing:20.649600px;}
.ws3f{word-spacing:20.923200px;}
.wsef{word-spacing:21.038400px;}
.wsba{word-spacing:21.052800px;}
.ws67{word-spacing:21.132000px;}
.wsa5{word-spacing:21.146400px;}
.ws74{word-spacing:21.175200px;}
.ws104{word-spacing:21.196800px;}
.ws7b{word-spacing:21.463200px;}
.ws97{word-spacing:21.520800px;}
.ws96{word-spacing:21.571200px;}
.ws52{word-spacing:21.686400px;}
.wsa0{word-spacing:21.729600px;}
.ws3e{word-spacing:21.787200px;}
.ws3d{word-spacing:21.816000px;}
.wsd8{word-spacing:21.859200px;}
.wsa6{word-spacing:21.895200px;}
.wsfb{word-spacing:21.981600px;}
.wsc2{word-spacing:22.118400px;}
.wsc1{word-spacing:22.156200px;}
.ws50{word-spacing:22.413600px;}
.wsb5{word-spacing:22.521600px;}
.ws35{word-spacing:22.528800px;}
.wsce{word-spacing:22.845600px;}
.wsb4{word-spacing:22.881600px;}
.ws9f{word-spacing:22.924800px;}
.ws101{word-spacing:22.968000px;}
.wsb8{word-spacing:23.018400px;}
.ws4d{word-spacing:23.184000px;}
.ws102{word-spacing:23.205600px;}
.wse1{word-spacing:23.248800px;}
.wsfa{word-spacing:23.263200px;}
.wse2{word-spacing:23.270400px;}
.wse3{word-spacing:23.277600px;}
.wse0{word-spacing:23.284800px;}
.ws44{word-spacing:23.522400px;}
.wsb1{word-spacing:23.601600px;}
.wsda{word-spacing:23.630400px;}
.ws98{word-spacing:23.659200px;}
.ws7e{word-spacing:23.788800px;}
.wsf4{word-spacing:24.343200px;}
.wsf5{word-spacing:24.357600px;}
.ws88{word-spacing:24.458400px;}
.ws93{word-spacing:25.070400px;}
.ws86{word-spacing:25.293600px;}
.wsbc{word-spacing:25.541460px;}
.wsbd{word-spacing:25.574400px;}
.ws2a{word-spacing:25.768800px;}
.wsa1{word-spacing:26.409600px;}
.ws85{word-spacing:26.661600px;}
.ws9b{word-spacing:26.704800px;}
.ws55{word-spacing:27.324000px;}
.ws54{word-spacing:27.374400px;}
.ws10e{word-spacing:27.698400px;}
.ws24{word-spacing:28.101600px;}
.ws6c{word-spacing:29.217600px;}
.ws27{word-spacing:29.239200px;}
.ws26{word-spacing:29.253600px;}
.wsa7{word-spacing:29.275200px;}
.ws9a{word-spacing:29.556000px;}
.wsf3{word-spacing:30.175200px;}
.ws72{word-spacing:30.283200px;}
.ws73{word-spacing:30.348000px;}
.wsb7{word-spacing:30.434400px;}
.wsad{word-spacing:30.513600px;}
.wsae{word-spacing:30.535200px;}
.ws83{word-spacing:30.924000px;}
.wsd5{word-spacing:31.068000px;}
.ws76{word-spacing:31.125600px;}
.ws77{word-spacing:31.190400px;}
.wsf8{word-spacing:31.204800px;}
.ws5d{word-spacing:32.378400px;}
.ws64{word-spacing:32.601600px;}
.wsd7{word-spacing:33.602400px;}
.ws8a{word-spacing:33.609600px;}
.wsd6{word-spacing:33.652800px;}
.wsfc{word-spacing:34.113600px;}
.wsfd{word-spacing:34.120800px;}
.wsa9{word-spacing:34.387200px;}
.ws95{word-spacing:35.013600px;}
.wsaf{word-spacing:35.172000px;}
.ws6b{word-spacing:35.553600px;}
.ws8c{word-spacing:36.921600px;}
.ws8e{word-spacing:37.022400px;}
.ws8d{word-spacing:37.029600px;}
.wsf9{word-spacing:37.411200px;}
.wsf6{word-spacing:37.893600px;}
.ws84{word-spacing:37.951200px;}
.ws34{word-spacing:38.131200px;}
.ws33{word-spacing:38.167200px;}
.wsa8{word-spacing:38.649600px;}
.ws31{word-spacing:38.815200px;}
.ws30{word-spacing:38.822400px;}
.ws9c{word-spacing:38.844000px;}
.ws58{word-spacing:41.359800px;}
.ws59{word-spacing:41.414400px;}
.wsbb{word-spacing:42.343200px;}
.wsb2{word-spacing:42.732000px;}
.ws68{word-spacing:43.135200px;}
.ws6d{word-spacing:44.316000px;}
.ws6e{word-spacing:44.431200px;}
.ws10d{word-spacing:56.800800px;}
.wsf7{word-spacing:61.149600px;}
.ws4a{word-spacing:67.485600px;}
._13{margin-left:-15.822540px;}
._11{margin-left:-14.533740px;}
._c{margin-left:-12.884400px;}
._d{margin-left:-11.348340px;}
._12{margin-left:-9.785940px;}
._e{margin-left:-8.548140px;}
._f{margin-left:-6.499740px;}
._b{margin-left:-5.178780px;}
._10{margin-left:-3.881400px;}
._2{margin-left:-2.164320px;}
._1{margin-left:-1.121760px;}
._0{width:1.003680px;}
._16{width:2.054880px;}
._6{width:3.111840px;}
._3{width:4.466880px;}
._15{width:6.380640px;}
._a{width:7.493760px;}
._9{width:8.595360px;}
._14{width:10.260000px;}
._5{width:11.341440px;}
._4{width:12.520800px;}
._8{width:18.832416px;}
._7{width:20.913120px;}
.fcc{color:rgb(0,0,255);}
.fc8{color:rgb(52,90,138);}
.fc7{color:rgb(79,129,189);}
.fc6{color:rgb(23,54,93);}
.fc4{color:transparent;}
.fc1{color:rgb(84,141,212);}
.fcb{color:rgb(51,51,51);}
.fca{color:rgb(34,34,34);}
.fc9{color:rgb(37,37,37);}
.fc5{color:rgb(102,102,102);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:47.520000px;}
.fs1{font-size:59.040000px;}
.fsa{font-size:64.800000px;}
.fs7{font-size:67.680000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs5{font-size:95.040000px;}
.fs3{font-size:108.000000px;}
.fs8{font-size:119.520000px;}
.fs9{font-size:125.280000px;}
.fs2{font-size:155.520000px;}
.fs4{font-size:275.040000px;}
.y0{bottom:0.000000px;}
.y55{bottom:7.200000px;}
.y58{bottom:7.560000px;}
.y1{bottom:13.500000px;}
.y57{bottom:18.720000px;}
.y4{bottom:19.439940px;}
.y2f{bottom:43.875045px;}
.y140{bottom:100.035045px;}
.y15b{bottom:105.435045px;}
.y84{bottom:109.395045px;}
.ye3{bottom:120.915045px;}
.y13f{bottom:121.275045px;}
.yc8{bottom:124.155045px;}
.y174{bottom:126.315045px;}
.y102{bottom:126.675045px;}
.y83{bottom:130.635045px;}
.yab{bottom:134.235045px;}
.ye2{bottom:142.155000px;}
.yc7{bottom:145.395000px;}
.y15a{bottom:147.555000px;}
.y101{bottom:147.915000px;}
.y3{bottom:148.050060px;}
.y82{bottom:151.515000px;}
.y209{bottom:153.315000px;}
.yaa{bottom:155.475000px;}
.yb{bottom:158.760000px;}
.ye1{bottom:163.035000px;}
.y13e{bottom:163.395000px;}
.yc6{bottom:166.275000px;}
.y173{bottom:168.435000px;}
.y100{bottom:168.795000px;}
.y81{bottom:172.755000px;}
.y208{bottom:174.195000px;}
.ya9{bottom:176.355000px;}
.ye0{bottom:184.275000px;}
.yc5{bottom:187.515000px;}
.y11d{bottom:188.235000px;}
.y172{bottom:189.675000px;}
.yff{bottom:190.035000px;}
.ya{bottom:191.520000px;}
.y175{bottom:193.635000px;}
.y80{bottom:193.995000px;}
.y207{bottom:195.435000px;}
.y1cb{bottom:196.875000px;}
.ya8{bottom:197.595000px;}
.y13d{bottom:205.515000px;}
.yc4{bottom:208.755000px;}
.y11c{bottom:209.115000px;}
.yfe{bottom:210.915000px;}
.y7f{bottom:214.875000px;}
.y206{bottom:215.955000px;}
.y1ca{bottom:217.755000px;}
.ya7{bottom:218.475000px;}
.ydf{bottom:221.715000px;}
.y9{bottom:224.640000px;}
.y13c{bottom:226.755000px;}
.yc3{bottom:229.635000px;}
.y11b{bottom:230.355000px;}
.y171{bottom:231.795000px;}
.yfd{bottom:232.155000px;}
.y205{bottom:233.235000px;}
.y7e{bottom:236.115000px;}
.y1c9{bottom:238.995000px;}
.ya6{bottom:239.715000px;}
.y204{bottom:247.275000px;}
.y13b{bottom:247.635000px;}
.y11a{bottom:251.595000px;}
.y159{bottom:253.035000px;}
.yfc{bottom:253.395000px;}
.y7d{bottom:256.995000px;}
.yde{bottom:259.155000px;}
.y1c8{bottom:259.875000px;}
.y8{bottom:260.640000px;}
.ya5{bottom:260.955000px;}
.yc2{bottom:267.435000px;}
.y119{bottom:272.475000px;}
.yfb{bottom:274.275000px;}
.y7c{bottom:278.235000px;}
.ydd{bottom:280.395000px;}
.ya4{bottom:281.835000px;}
.y21e{bottom:284.355000px;}
.y13a{bottom:285.435000px;}
.y170{bottom:291.915000px;}
.y118{bottom:293.715000px;}
.y18e{bottom:295.155000px;}
.yfa{bottom:295.515000px;}
.y1c7{bottom:297.675000px;}
.y7b{bottom:299.475000px;}
.ydc{bottom:301.275000px;}
.ya3{bottom:303.075000px;}
.yc1{bottom:304.515000px;}
.y21d{bottom:305.595000px;}
.y7{bottom:308.160000px;}
.y19c{bottom:311.355000px;}
.y16f{bottom:313.155000px;}
.y117{bottom:314.595000px;}
.y158{bottom:316.395000px;}
.yf9{bottom:316.755000px;}
.y7a{bottom:320.355000px;}
.ydb{bottom:322.515000px;}
.y1ec{bottom:323.235000px;}
.ya2{bottom:323.955000px;}
.y1bd{bottom:324.315000px;}
.yc0{bottom:325.755000px;}
.y21c{bottom:326.475000px;}
.y19b{bottom:332.595000px;}
.y16e{bottom:334.395000px;}
.y1c6{bottom:335.115000px;}
.y116{bottom:335.835000px;}
.y18d{bottom:337.275000px;}
.yf8{bottom:337.635000px;}
.y1f8{bottom:340.875000px;}
.y79{bottom:341.595000px;}
.y139{bottom:343.755000px;}
.y1eb{bottom:344.115000px;}
.yda{bottom:344.475000px;}
.y1ad{bottom:344.835000px;}
.ya1{bottom:345.195000px;}
.ybf{bottom:346.635000px;}
.y21b{bottom:347.715000px;}
.y19a{bottom:353.835000px;}
.y16d{bottom:355.275000px;}
.y6{bottom:355.680000px;}
.y1c5{bottom:355.995000px;}
.y115{bottom:357.075000px;}
.y18c{bottom:358.515000px;}
.y157{bottom:358.875000px;}
.y1b1{bottom:359.595000px;}
.y1f7{bottom:362.115000px;}
.y78{bottom:362.835000px;}
.y138{bottom:364.995000px;}
.y1ea{bottom:365.355000px;}
.y1ac{bottom:365.715000px;}
.ya0{bottom:366.435000px;}
.ybe{bottom:367.875000px;}
.y194{bottom:368.595000px;}
.y21a{bottom:368.955000px;}
.y199{bottom:374.715000px;}
.yf7{bottom:375.435000px;}
.y16c{bottom:376.515000px;}
.y1c4{bottom:377.235000px;}
.y114{bottom:377.955000px;}
.y18b{bottom:379.035000px;}
.y156{bottom:379.755000px;}
.yd9{bottom:380.475000px;}
.y1b0{bottom:380.835000px;}
.y1e0{bottom:381.555000px;}
.y1f6{bottom:382.995000px;}
.y77{bottom:383.715000px;}
.y137{bottom:385.875000px;}
.y1e9{bottom:386.595000px;}
.y1ab{bottom:386.955000px;}
.y9f{bottom:387.315000px;}
.y1bc{bottom:387.675000px;}
.y1a7{bottom:388.395000px;}
.y193{bottom:389.835000px;}
.y4f{bottom:393.075000px;}
.y18a{bottom:393.435000px;}
.y198{bottom:395.955000px;}
.y16b{bottom:397.395000px;}
.ybd{bottom:398.115000px;}
.y113{bottom:399.195000px;}
.y155{bottom:400.995000px;}
.yd8{bottom:401.715000px;}
.y1df{bottom:402.435000px;}
.y1f5{bottom:404.235000px;}
.y1a1{bottom:404.595000px;}
.y76{bottom:404.955000px;}
.y136{bottom:407.115000px;}
.y1aa{bottom:407.475000px;}
.y1bb{bottom:408.195000px;}
.y9e{bottom:408.555000px;}
.y1a6{bottom:409.275000px;}
.y192{bottom:410.715000px;}
.y219{bottom:411.075000px;}
.yf6{bottom:412.515000px;}
.y4e{bottom:414.315000px;}
.y197{bottom:416.475000px;}
.y16a{bottom:418.635000px;}
.y1c3{bottom:419.355000px;}
.ybc{bottom:420.435000px;}
.y154{bottom:421.875000px;}
.y1af{bottom:422.235000px;}
.yd7{bottom:422.595000px;}
.y1de{bottom:423.675000px;}
.y1e8{bottom:424.395000px;}
.y1a9{bottom:425.115000px;}
.y1ba{bottom:425.475000px;}
.y75{bottom:425.835000px;}
.y202{bottom:427.995000px;}
.y135{bottom:428.355000px;}
.y9d{bottom:429.795000px;}
.y1a5{bottom:430.515000px;}
.y191{bottom:431.235000px;}
.y218{bottom:431.955000px;}
.yf5{bottom:433.755000px;}
.y196{bottom:434.115000px;}
.y4d{bottom:435.195000px;}
.y180{bottom:435.555000px;}
.y1e7{bottom:438.435000px;}
.y1a8{bottom:439.155000px;}
.y1b9{bottom:439.515000px;}
.y169{bottom:439.875000px;}
.y112{bottom:441.315000px;}
.ybb{bottom:441.675000px;}
.y153{bottom:443.115000px;}
.yd6{bottom:443.835000px;}
.y1dd{bottom:444.555000px;}
.y5{bottom:446.355000px;}
.y1a0{bottom:446.715000px;}
.y74{bottom:447.075000px;}
.y195{bottom:448.155000px;}
.y190{bottom:448.875000px;}
.y134{bottom:449.235000px;}
.y9c{bottom:450.675000px;}
.y1a4{bottom:451.395000px;}
.y217{bottom:453.195000px;}
.y1ae{bottom:454.275000px;}
.yf4{bottom:454.635000px;}
.y4c{bottom:456.435000px;}
.y1c2{bottom:457.515000px;}
.y168{bottom:460.755000px;}
.y111{bottom:462.555000px;}
.y18f{bottom:463.275000px;}
.y152{bottom:464.355000px;}
.yd5{bottom:465.795000px;}
.y1f4{bottom:466.875000px;}
.y19f{bottom:467.955000px;}
.y73{bottom:468.315000px;}
.y201{bottom:469.755000px;}
.y133{bottom:470.475000px;}
.y1c1{bottom:471.555000px;}
.y9b{bottom:471.915000px;}
.y216{bottom:474.435000px;}
.yf3{bottom:475.875000px;}
.y2e{bottom:476.955000px;}
.y4b{bottom:477.315000px;}
.y17f{bottom:477.675000px;}
.y167{bottom:481.995000px;}
.y110{bottom:483.435000px;}
.y1f3{bottom:484.515000px;}
.y151{bottom:485.235000px;}
.y1dc{bottom:487.035000px;}
.y200{bottom:487.395000px;}
.y19e{bottom:488.475000px;}
.y72{bottom:489.195000px;}
.y1a3{bottom:489.555000px;}
.y132{bottom:491.355000px;}
.y9a{bottom:492.795000px;}
.y2d{bottom:494.235000px;}
.y215{bottom:495.315000px;}
.yf2{bottom:497.835000px;}
.y4a{bottom:498.555000px;}
.y17e{bottom:498.915000px;}
.y1ff{bottom:501.435000px;}
.yba{bottom:501.795000px;}
.y166{bottom:503.235000px;}
.y1a2{bottom:503.955000px;}
.y10f{bottom:504.675000px;}
.y19d{bottom:506.115000px;}
.y150{bottom:506.475000px;}
.y1db{bottom:507.915000px;}
.y71{bottom:510.435000px;}
.y131{bottom:512.595000px;}
.y2c{bottom:514.035000px;}
.y214{bottom:516.555000px;}
.y49{bottom:519.795000px;}
.yf1{bottom:520.155000px;}
.yb9{bottom:523.035000px;}
.y165{bottom:524.115000px;}
.y10e{bottom:525.915000px;}
.y14f{bottom:527.355000px;}
.y1da{bottom:529.155000px;}
.y2b{bottom:531.315000px;}
.y70{bottom:531.675000px;}
.y130{bottom:533.835000px;}
.y99{bottom:535.275000px;}
.y213{bottom:537.795000px;}
.y48{bottom:540.675000px;}
.y17d{bottom:541.035000px;}
.yf0{bottom:542.115000px;}
.yb8{bottom:544.275000px;}
.y164{bottom:545.355000px;}
.y10d{bottom:546.795000px;}
.y2a{bottom:548.595000px;}
.y1d9{bottom:550.395000px;}
.y6f{bottom:552.555000px;}
.y12f{bottom:554.715000px;}
.y98{bottom:556.155000px;}
.y212{bottom:558.675000px;}
.y47{bottom:561.915000px;}
.y17c{bottom:562.275000px;}
.yb7{bottom:565.155000px;}
.y163{bottom:566.235000px;}
.y10c{bottom:568.035000px;}
.y29{bottom:568.395000px;}
.y14e{bottom:569.835000px;}
.y1d8{bottom:571.275000px;}
.y6e{bottom:573.795000px;}
.y12e{bottom:575.955000px;}
.y97{bottom:577.395000px;}
.y211{bottom:579.915000px;}
.yef{bottom:580.635000px;}
.y46{bottom:582.795000px;}
.y17b{bottom:583.155000px;}
.yb6{bottom:586.395000px;}
.y162{bottom:587.475000px;}
.y28{bottom:588.195000px;}
.y10b{bottom:589.275000px;}
.y14d{bottom:590.715000px;}
.y1d7{bottom:592.515000px;}
.y6d{bottom:594.675000px;}
.y12d{bottom:596.835000px;}
.y96{bottom:598.275000px;}
.y210{bottom:600.795000px;}
.y45{bottom:604.035000px;}
.y17a{bottom:604.395000px;}
.y27{bottom:605.475000px;}
.yb5{bottom:607.275000px;}
.yd4{bottom:607.635000px;}
.y161{bottom:608.715000px;}
.y10a{bottom:610.155000px;}
.y14c{bottom:611.955000px;}
.y1d6{bottom:613.395000px;}
.y6c{bottom:615.915000px;}
.yee{bottom:618.075000px;}
.y95{bottom:619.515000px;}
.y26{bottom:625.275000px;}
.yb4{bottom:628.515000px;}
.yd3{bottom:629.235000px;}
.y160{bottom:629.595000px;}
.y109{bottom:631.395000px;}
.y14b{bottom:633.195000px;}
.y1d5{bottom:634.635000px;}
.y6b{bottom:637.155000px;}
.y20f{bottom:638.595000px;}
.yed{bottom:639.315000px;}
.y94{bottom:640.755000px;}
.y25{bottom:645.435000px;}
.y44{bottom:646.155000px;}
.y179{bottom:646.515000px;}
.yb3{bottom:649.755000px;}
.y15f{bottom:650.835000px;}
.y14a{bottom:654.075000px;}
.y1d4{bottom:655.875000px;}
.y6a{bottom:658.035000px;}
.yec{bottom:660.195000px;}
.y93{bottom:661.275000px;}
.y189{bottom:661.995000px;}
.y24{bottom:662.715000px;}
.y108{bottom:664.515000px;}
.yd2{bottom:665.595000px;}
.y43{bottom:667.395000px;}
.y178{bottom:667.755000px;}
.y15e{bottom:672.075000px;}
.y1b8{bottom:674.595000px;}
.y149{bottom:675.315000px;}
.y20e{bottom:675.675000px;}
.y1d3{bottom:676.755000px;}
.y92{bottom:678.555000px;}
.y69{bottom:679.275000px;}
.yb2{bottom:679.635000px;}
.yeb{bottom:681.435000px;}
.y23{bottom:682.515000px;}
.y188{bottom:682.875000px;}
.y107{bottom:685.395000px;}
.yd1{bottom:686.475000px;}
.y42{bottom:688.635000px;}
.y91{bottom:692.955000px;}
.y1b7{bottom:695.835000px;}
.y20d{bottom:696.915000px;}
.y148{bottom:697.275000px;}
.y1d2{bottom:697.995000px;}
.y68{bottom:700.155000px;}
.y22{bottom:702.315000px;}
.yea{bottom:702.675000px;}
.y1e6{bottom:703.755000px;}
.y187{bottom:704.115000px;}
.y106{bottom:706.635000px;}
.yd0{bottom:707.715000px;}
.y41{bottom:709.515000px;}
.yb1{bottom:709.875000px;}
.y15d{bottom:714.195000px;}
.y1b6{bottom:716.715000px;}
.y20c{bottom:718.155000px;}
.y147{bottom:718.515000px;}
.y1d1{bottom:719.235000px;}
.y21{bottom:719.595000px;}
.y67{bottom:721.395000px;}
.y12c{bottom:723.555000px;}
.y1e5{bottom:724.635000px;}
.y186{bottom:725.355000px;}
.y105{bottom:727.875000px;}
.ycf{bottom:728.955000px;}
.y40{bottom:730.755000px;}
.y15c{bottom:735.075000px;}
.y1b5{bottom:737.955000px;}
.y20b{bottom:738.675000px;}
.y20{bottom:739.395000px;}
.ye9{bottom:740.115000px;}
.y146{bottom:740.475000px;}
.y66{bottom:742.635000px;}
.y12b{bottom:744.795000px;}
.y1e4{bottom:745.875000px;}
.y185{bottom:746.235000px;}
.y104{bottom:748.755000px;}
.yce{bottom:749.835000px;}
.y3f{bottom:751.635000px;}
.yb0{bottom:751.995000px;}
.y20a{bottom:755.955000px;}
.y141{bottom:756.315000px;}
.y1f2{bottom:757.755000px;}
.y1b4{bottom:758.475000px;}
.y1f{bottom:759.195000px;}
.y1d0{bottom:761.355000px;}
.y145{bottom:761.715000px;}
.y65{bottom:763.515000px;}
.y12a{bottom:765.675000px;}
.y1e3{bottom:766.755000px;}
.y184{bottom:767.475000px;}
.y103{bottom:769.995000px;}
.y1c0{bottom:770.355000px;}
.ycd{bottom:771.795000px;}
.y3e{bottom:772.875000px;}
.yaf{bottom:773.235150px;}
.y1b3{bottom:776.115000px;}
.y1e{bottom:776.475000px;}
.ye8{bottom:777.555000px;}
.y1f1{bottom:778.635000px;}
.y1cf{bottom:782.235150px;}
.y1fe{bottom:782.595000px;}
.y144{bottom:783.675000px;}
.y64{bottom:784.755000px;}
.y129{bottom:786.915000px;}
.y1bf{bottom:787.995000px;}
.y183{bottom:788.355000px;}
.y203{bottom:789.795000px;}
.y1b2{bottom:790.155000px;}
.y3d{bottom:794.115000px;}
.y1d{bottom:796.275000px;}
.y225{bottom:797.355000px;}
.ye7{bottom:798.435000px;}
.y1f0{bottom:799.875000px;}
.y1be{bottom:802.395000px;}
.y1ce{bottom:803.475000px;}
.y1fd{bottom:803.835000px;}
.y143{bottom:804.915000px;}
.y63{bottom:805.995000px;}
.ycc{bottom:808.155000px;}
.y1e2{bottom:808.515000px;}
.y182{bottom:808.875000px;}
.y3c{bottom:814.995000px;}
.yae{bottom:815.355000px;}
.y1c{bottom:816.075000px;}
.ye6{bottom:819.675000px;}
.y1ef{bottom:821.115000px;}
.y1e1{bottom:822.555000px;}
.y181{bottom:823.275000px;}
.y1cd{bottom:823.995000px;}
.y1fc{bottom:824.715000px;}
.y142{bottom:825.795000px;}
.y62{bottom:826.875000px;}
.ycb{bottom:829.035000px;}
.y1b{bottom:836.235000px;}
.yad{bottom:836.595000px;}
.y1cc{bottom:838.395000px;}
.ye5{bottom:840.555000px;}
.y1ee{bottom:841.275000px;}
.y1fb{bottom:845.235000px;}
.y61{bottom:848.115000px;}
.yca{bottom:850.275000px;}
.y1a{bottom:853.515000px;}
.y3b{bottom:857.475000px;}
.y1ed{bottom:858.915000px;}
.ye4{bottom:861.795000px;}
.y1fa{bottom:862.875000px;}
.y60{bottom:868.995000px;}
.y128{bottom:871.155000px;}
.y19{bottom:873.315000px;}
.y1f9{bottom:877.275000px;}
.y3a{bottom:878.355000px;}
.y177{bottom:878.715000px;}
.y90{bottom:883.035000px;}
.yc9{bottom:887.715000px;}
.y5f{bottom:890.235000px;}
.y127{bottom:892.395000px;}
.y18{bottom:893.115000px;}
.yac{bottom:895.275000px;}
.y39{bottom:899.595000px;}
.y224{bottom:899.955000px;}
.y8f{bottom:903.915000px;}
.y5e{bottom:911.475000px;}
.y17{bottom:912.915000px;}
.y126{bottom:913.635000px;}
.y176{bottom:916.155000px;}
.y38{bottom:920.475000px;}
.y223{bottom:920.835000px;}
.y8e{bottom:925.155000px;}
.y16{bottom:930.195000px;}
.y5d{bottom:932.355000px;}
.y125{bottom:934.515000px;}
.y37{bottom:941.715000px;}
.y222{bottom:942.075000px;}
.y8d{bottom:946.395000px;}
.y15{bottom:949.995000px;}
.y5c{bottom:953.595000px;}
.y124{bottom:955.755000px;}
.y52{bottom:962.595000px;}
.y36{bottom:962.955000px;}
.y8c{bottom:967.275000px;}
.y14{bottom:969.795000px;}
.y5b{bottom:974.835000px;}
.y123{bottom:976.995000px;}
.y35{bottom:983.835000px;}
.y221{bottom:984.195000px;}
.y8b{bottom:988.515000px;}
.y13{bottom:989.595000px;}
.y5a{bottom:995.715000px;}
.y122{bottom:997.875000px;}
.y51{bottom:1004.715000px;}
.y34{bottom:1005.075000px;}
.y220{bottom:1005.435000px;}
.y12{bottom:1007.235000px;}
.y8a{bottom:1009.395000px;}
.y121{bottom:1019.115000px;}
.y33{bottom:1025.955000px;}
.y11{bottom:1027.035000px;}
.y89{bottom:1030.635000px;}
.y120{bottom:1039.995000px;}
.y10{bottom:1046.835000px;}
.y32{bottom:1047.195000px;}
.y88{bottom:1051.875000px;}
.y11f{bottom:1061.235000px;}
.yf{bottom:1066.635000px;}
.y31{bottom:1068.435000px;}
.y87{bottom:1072.755000px;}
.y59{bottom:1073.475000px;}
.y21f{bottom:1082.835000px;}
.y30{bottom:1092.195000px;}
.y86{bottom:1093.995000px;}
.y11e{bottom:1099.035000px;}
.ye{bottom:1102.275000px;}
.y50{bottom:1104.435000px;}
.y85{bottom:1115.235000px;}
.y2{bottom:1124.595000px;}
.y56{bottom:1160.415000px;}
.y53{bottom:1179.315000px;}
.y54{bottom:1185.615000px;}
.yc{bottom:1663.005000px;}
.yd{bottom:1688.565000px;}
.h9{height:0.000000px;}
.h10{height:24.120030px;}
.h14{height:24.480015px;}
.h4{height:33.840000px;}
.he{height:39.350391px;}
.h5{height:48.690703px;}
.hd{height:49.272891px;}
.h12{height:49.320000px;}
.h18{height:50.695313px;}
.h15{height:51.371719px;}
.h13{height:56.383594px;}
.hc{height:57.332813px;}
.h17{height:59.378906px;}
.h3{height:62.648438px;}
.h11{height:63.210938px;}
.h16{height:64.129219px;}
.hb{height:78.380156px;}
.h8{height:89.068359px;}
.hf{height:104.930156px;}
.h7{height:128.258438px;}
.ha{height:239.317031px;}
.h6{height:392.760000px;}
.h2{height:1235.835000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:0.000000px;}
.wb{width:82.080000px;}
.w9{width:95.760000px;}
.w7{width:173.880000px;}
.w8{width:210.240000px;}
.w6{width:223.560000px;}
.wa{width:429.840000px;}
.w4{width:621.000000px;}
.w3{width:679.320000px;}
.w2{width:865.935000px;}
.w0{width:892.935000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.920135px;}
.x4{left:10.800000px;}
.x1{left:13.500000px;}
.x8{left:113.760135px;}
.xc{left:119.340000px;}
.x9{left:131.760135px;}
.x1a{left:140.760150px;}
.xa{left:149.760150px;}
.x2{left:152.280000px;}
.x5{left:154.395000px;}
.x11{left:157.500000px;}
.x1b{left:167.760150px;}
.x19{left:179.280000px;}
.x3{left:181.395000px;}
.x17{left:206.280000px;}
.x21{left:221.760150px;}
.x18{left:233.280000px;}
.x2e{left:250.130100px;}
.x12{left:253.260000px;}
.x1e{left:260.280000px;}
.x3d{left:263.189250px;}
.x32{left:264.855450px;}
.x2b{left:277.738800px;}
.x20{left:287.280000px;}
.x34{left:298.700700px;}
.x37{left:301.416150px;}
.x30{left:304.788900px;}
.x3e{left:310.814850px;}
.x1f{left:314.280000px;}
.x29{left:327.237600px;}
.x27{left:329.301300px;}
.xe{left:342.900000px;}
.x43{left:344.328750px;}
.x23{left:351.925800px;}
.xb{left:353.144550px;}
.x3f{left:358.028700px;}
.x40{left:362.035050px;}
.x15{left:363.935700px;}
.x3a{left:365.481150px;}
.x1c{left:381.966750px;}
.x25{left:389.394600px;}
.x41{left:400.965750px;}
.x3b{left:451.830000px;}
.xf{left:516.780000px;}
.x45{left:528.810000px;}
.x2a{left:582.810000px;}
.x2d{left:584.909850px;}
.x38{left:590.310000px;}
.x22{left:600.810000px;}
.x42{left:601.830000px;}
.x31{left:603.810000px;}
.x44{left:607.829850px;}
.x2f{left:621.967050px;}
.x3c{left:626.310000px;}
.x35{left:629.054850px;}
.x1d{left:636.097350px;}
.x24{left:643.904550px;}
.x33{left:645.810000px;}
.x28{left:650.017350px;}
.x36{left:661.829850px;}
.x39{left:664.830000px;}
.x2c{left:680.054850px;}
.x13{left:683.100000px;}
.x26{left:689.310000px;}
.x16{left:704.446350px;}
.x10{left:714.413100px;}
.x14{left:748.830000px;}
.x7{left:768.915000px;}
.x6{left:827.595000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.640000pt;}
.ls44{letter-spacing:-0.051200pt;}
.ls1c{letter-spacing:-0.032000pt;}
.ls19{letter-spacing:-0.025600pt;}
.ls1a{letter-spacing:-0.019200pt;}
.ls1d{letter-spacing:-0.012800pt;}
.ls1b{letter-spacing:-0.006400pt;}
.ls1{letter-spacing:0.000000pt;}
.ls72{letter-spacing:0.002133pt;}
.ls15{letter-spacing:0.006400pt;}
.ls46{letter-spacing:0.009600pt;}
.ls25{letter-spacing:0.012800pt;}
.ls54{letter-spacing:0.013333pt;}
.ls58{letter-spacing:0.013867pt;}
.ls16{letter-spacing:0.019200pt;}
.ls18{letter-spacing:0.025600pt;}
.ls49{letter-spacing:0.031467pt;}
.ls2d{letter-spacing:0.032000pt;}
.ls41{letter-spacing:0.038400pt;}
.ls45{letter-spacing:0.044800pt;}
.ls40{letter-spacing:0.055296pt;}
.ls39{letter-spacing:0.062208pt;}
.ls42{letter-spacing:0.072000pt;}
.ls6e{letter-spacing:0.076032pt;}
.ls4{letter-spacing:0.082944pt;}
.ls5c{letter-spacing:0.089856pt;}
.ls5{letter-spacing:0.096000pt;}
.ls47{letter-spacing:0.096768pt;}
.ls17{letter-spacing:0.106240pt;}
.ls9{letter-spacing:0.117504pt;}
.ls3f{letter-spacing:0.131328pt;}
.ls4d{letter-spacing:0.152064pt;}
.ls4c{letter-spacing:0.158976pt;}
.ls74{letter-spacing:0.165888pt;}
.ls68{letter-spacing:0.198933pt;}
.ls57{letter-spacing:0.199253pt;}
.ls7{letter-spacing:0.244480pt;}
.ls12{letter-spacing:0.270720pt;}
.ls4e{letter-spacing:0.287232pt;}
.ls6c{letter-spacing:0.288640pt;}
.ls2b{letter-spacing:0.305280pt;}
.lsd{letter-spacing:0.315520pt;}
.ls0{letter-spacing:0.331776pt;}
.ls36{letter-spacing:0.346368pt;}
.ls33{letter-spacing:0.351616pt;}
.ls24{letter-spacing:0.388608pt;}
.ls3b{letter-spacing:0.390400pt;}
.ls34{letter-spacing:0.404096pt;}
.ls37{letter-spacing:0.413952pt;}
.ls5b{letter-spacing:0.422400pt;}
.ls32{letter-spacing:0.435584pt;}
.ls4f{letter-spacing:0.464640pt;}
.ls56{letter-spacing:0.515328pt;}
.ls5a{letter-spacing:0.566016pt;}
.lsf{letter-spacing:0.589568pt;}
.ls38{letter-spacing:0.599808pt;}
.ls6{letter-spacing:0.604800pt;}
.ls11{letter-spacing:0.613632pt;}
.lsa{letter-spacing:0.649728pt;}
.lsb{letter-spacing:0.661760pt;}
.ls64{letter-spacing:0.663467pt;}
.ls63{letter-spacing:0.664000pt;}
.ls31{letter-spacing:0.685440pt;}
.ls2c{letter-spacing:0.751872pt;}
.ls10{letter-spacing:0.782080pt;}
.lse{letter-spacing:0.860288pt;}
.ls14{letter-spacing:0.902400pt;}
.ls8{letter-spacing:0.903936pt;}
.ls13{letter-spacing:1.010688pt;}
.ls6b{letter-spacing:1.213867pt;}
.ls20{letter-spacing:1.392320pt;}
.ls5f{letter-spacing:1.461333pt;}
.ls1f{letter-spacing:1.486507pt;}
.ls51{letter-spacing:1.492992pt;}
.ls22{letter-spacing:1.520640pt;}
.ls50{letter-spacing:1.589760pt;}
.ls1e{letter-spacing:1.600107pt;}
.ls21{letter-spacing:1.714944pt;}
.ls23{letter-spacing:1.726080pt;}
.ls70{letter-spacing:1.885867pt;}
.ls71{letter-spacing:1.887467pt;}
.ls75{letter-spacing:2.396800pt;}
.ls27{letter-spacing:2.666133pt;}
.ls3d{letter-spacing:2.853333pt;}
.ls59{letter-spacing:2.974400pt;}
.ls6f{letter-spacing:3.190933pt;}
.ls67{letter-spacing:3.387733pt;}
.ls5d{letter-spacing:3.810667pt;}
.ls5e{letter-spacing:3.811733pt;}
.lsc{letter-spacing:5.354987pt;}
.ls4a{letter-spacing:6.202667pt;}
.ls30{letter-spacing:6.392533pt;}
.ls53{letter-spacing:6.798933pt;}
.ls76{letter-spacing:7.817067pt;}
.ls77{letter-spacing:7.818667pt;}
.ls6d{letter-spacing:7.937067pt;}
.ls60{letter-spacing:8.714133pt;}
.ls66{letter-spacing:8.850667pt;}
.ls65{letter-spacing:8.851200pt;}
.ls2a{letter-spacing:9.257067pt;}
.ls2f{letter-spacing:9.750933pt;}
.ls26{letter-spacing:10.151467pt;}
.ls29{letter-spacing:12.846933pt;}
.ls35{letter-spacing:13.298667pt;}
.ls69{letter-spacing:15.878400pt;}
.ls6a{letter-spacing:15.880000pt;}
.ls2{letter-spacing:16.200576pt;}
.ls3{letter-spacing:16.316032pt;}
.ls3a{letter-spacing:17.679467pt;}
.ls52{letter-spacing:19.722133pt;}
.ls73{letter-spacing:20.657067pt;}
.ls61{letter-spacing:20.737600pt;}
.ls62{letter-spacing:20.738133pt;}
.ls28{letter-spacing:26.053867pt;}
.ls3e{letter-spacing:29.645333pt;}
.ls4b{letter-spacing:32.913600pt;}
.ls2e{letter-spacing:33.958933pt;}
.ls43{letter-spacing:34.020800pt;}
.ls48{letter-spacing:48.770667pt;}
.ls3c{letter-spacing:56.879360pt;}
.ls55{letter-spacing:177.920000pt;}
.wsc9{word-spacing:-177.984000pt;}
.wsc{word-spacing:-17.626880pt;}
.wsb{word-spacing:-17.386240pt;}
.ws1{word-spacing:-16.368512pt;}
.ws0{word-spacing:-16.253056pt;}
.ws19{word-spacing:-1.837440pt;}
.ws17{word-spacing:-1.826304pt;}
.wsbf{word-spacing:-1.728000pt;}
.ws18{word-spacing:-1.658880pt;}
.wsc0{word-spacing:-1.631232pt;}
.ws8{word-spacing:-0.988416pt;}
.ws1c{word-spacing:-0.836352pt;}
.ws32{word-spacing:-0.743040pt;}
.ws6{word-spacing:-0.700800pt;}
.ws4e{word-spacing:-0.684288pt;}
.wsca{word-spacing:-0.650496pt;}
.wsc7{word-spacing:-0.599808pt;}
.wsa4{word-spacing:-0.549120pt;}
.wscb{word-spacing:-0.506880pt;}
.ws4f{word-spacing:-0.498432pt;}
.ws7{word-spacing:-0.488960pt;}
.ws38{word-spacing:-0.488064pt;}
.ws1d{word-spacing:-0.473088pt;}
.ws2{word-spacing:-0.470016pt;}
.ws3a{word-spacing:-0.456576pt;}
.ws45{word-spacing:-0.430848pt;}
.ws39{word-spacing:-0.404096pt;}
.wsa3{word-spacing:-0.371712pt;}
.ws1b{word-spacing:-0.362880pt;}
.wse9{word-spacing:-0.341120pt;}
.ws100{word-spacing:-0.235008pt;}
.ws87{word-spacing:-0.228096pt;}
.ws3{word-spacing:-0.221184pt;}
.wsd{word-spacing:-0.212480pt;}
.ws5c{word-spacing:-0.200448pt;}
.ws5{word-spacing:-0.192000pt;}
.wsa{word-spacing:-0.186624pt;}
.ws75{word-spacing:-0.165888pt;}
.wsd0{word-spacing:-0.158976pt;}
.wsfe{word-spacing:-0.145152pt;}
.ws4{word-spacing:-0.138240pt;}
.ws56{word-spacing:-0.131328pt;}
.ws5e{word-spacing:-0.124416pt;}
.ws70{word-spacing:-0.108800pt;}
.ws5f{word-spacing:-0.102400pt;}
.ws22{word-spacing:-0.096000pt;}
.wse{word-spacing:-0.089600pt;}
.ws12{word-spacing:-0.083200pt;}
.ws1e{word-spacing:-0.076800pt;}
.ws10{word-spacing:-0.070400pt;}
.wsdf{word-spacing:-0.069120pt;}
.wsf{word-spacing:-0.064000pt;}
.ws14{word-spacing:-0.057600pt;}
.ws16{word-spacing:-0.051200pt;}
.ws13{word-spacing:-0.044800pt;}
.ws11{word-spacing:-0.038400pt;}
.ws15{word-spacing:-0.032000pt;}
.ws9{word-spacing:0.000000pt;}
.wsab{word-spacing:9.561600pt;}
.wsaa{word-spacing:9.625600pt;}
.ws108{word-spacing:10.400000pt;}
.ws2d{word-spacing:10.419200pt;}
.ws92{word-spacing:10.604800pt;}
.ws60{word-spacing:10.707200pt;}
.ws103{word-spacing:10.726400pt;}
.ws48{word-spacing:10.860800pt;}
.ws49{word-spacing:10.873600pt;}
.ws36{word-spacing:11.014400pt;}
.ws37{word-spacing:11.027200pt;}
.ws107{word-spacing:11.033600pt;}
.ws8f{word-spacing:11.091200pt;}
.ws4b{word-spacing:11.212800pt;}
.ws20{word-spacing:11.232000pt;}
.ws66{word-spacing:11.251200pt;}
.wsc4{word-spacing:11.587733pt;}
.wsc5{word-spacing:11.590400pt;}
.ws2c{word-spacing:11.596800pt;}
.ws99{word-spacing:11.680000pt;}
.wse4{word-spacing:11.718400pt;}
.ws109{word-spacing:11.788800pt;}
.ws7a{word-spacing:11.884800pt;}
.ws79{word-spacing:12.064000pt;}
.wsac{word-spacing:12.089600pt;}
.ws89{word-spacing:12.160000pt;}
.wsc8{word-spacing:12.224000pt;}
.wse8{word-spacing:12.268800pt;}
.wse6{word-spacing:12.281600pt;}
.wse7{word-spacing:12.293867pt;}
.wse5{word-spacing:12.313600pt;}
.wsb6{word-spacing:12.377600pt;}
.ws53{word-spacing:12.416000pt;}
.ws69{word-spacing:12.544000pt;}
.ws6a{word-spacing:12.563200pt;}
.ws28{word-spacing:12.716800pt;}
.ws7c{word-spacing:12.723200pt;}
.ws7d{word-spacing:12.729600pt;}
.wscf{word-spacing:12.780800pt;}
.wsf2{word-spacing:12.806400pt;}
.wscc{word-spacing:12.812800pt;}
.ws29{word-spacing:12.819200pt;}
.ws61{word-spacing:12.838400pt;}
.wsf1{word-spacing:12.844800pt;}
.ws62{word-spacing:12.864000pt;}
.wsf0{word-spacing:12.876800pt;}
.ws41{word-spacing:12.985600pt;}
.ws65{word-spacing:13.011200pt;}
.ws40{word-spacing:13.017600pt;}
.ws43{word-spacing:13.158400pt;}
.wsdb{word-spacing:13.171200pt;}
.wsdc{word-spacing:13.209600pt;}
.ws42{word-spacing:13.273600pt;}
.ws3b{word-spacing:13.286400pt;}
.ws25{word-spacing:13.318400pt;}
.ws3c{word-spacing:13.324800pt;}
.ws110{word-spacing:13.344000pt;}
.ws10f{word-spacing:13.395200pt;}
.ws1f{word-spacing:13.414400pt;}
.wsb9{word-spacing:13.619200pt;}
.ws2e{word-spacing:13.683200pt;}
.wsde{word-spacing:13.689600pt;}
.wsd9{word-spacing:13.747200pt;}
.wsbe{word-spacing:13.804800pt;}
.ws2b{word-spacing:13.907200pt;}
.ws4c{word-spacing:13.939200pt;}
.ws105{word-spacing:13.977600pt;}
.ws46{word-spacing:14.054400pt;}
.wsc3{word-spacing:14.304000pt;}
.ws10c{word-spacing:14.342400pt;}
.ws91{word-spacing:14.764800pt;}
.wsb3{word-spacing:14.809600pt;}
.ws78{word-spacing:14.816000pt;}
.ws90{word-spacing:15.008000pt;}
.ws80{word-spacing:15.059200pt;}
.ws81{word-spacing:15.129600pt;}
.ws94{word-spacing:15.276800pt;}
.ws7f{word-spacing:15.532800pt;}
.wsee{word-spacing:15.795200pt;}
.wseb{word-spacing:15.801600pt;}
.wsec{word-spacing:15.820800pt;}
.wsed{word-spacing:15.827200pt;}
.wsea{word-spacing:15.897600pt;}
.wsdd{word-spacing:15.961600pt;}
.wsb0{word-spacing:15.968000pt;}
.ws63{word-spacing:15.974400pt;}
.ws5b{word-spacing:16.160000pt;}
.ws10b{word-spacing:16.345600pt;}
.ws2f{word-spacing:16.460800pt;}
.ws82{word-spacing:16.544000pt;}
.ws47{word-spacing:16.595200pt;}
.ws106{word-spacing:17.017600pt;}
.ws51{word-spacing:17.107200pt;}
.ws1a{word-spacing:17.132800pt;}
.wsd4{word-spacing:17.273600pt;}
.ws71{word-spacing:17.286400pt;}
.wsa2{word-spacing:17.472000pt;}
.ws9d{word-spacing:17.484800pt;}
.ws9e{word-spacing:17.491200pt;}
.ws57{word-spacing:17.619200pt;}
.wsd2{word-spacing:17.630400pt;}
.wsd3{word-spacing:17.632000pt;}
.wsd1{word-spacing:17.670400pt;}
.wsc6{word-spacing:17.683200pt;}
.wsff{word-spacing:17.804800pt;}
.ws6f{word-spacing:17.862400pt;}
.ws23{word-spacing:17.945600pt;}
.ws10a{word-spacing:18.035200pt;}
.wscd{word-spacing:18.123200pt;}
.ws5a{word-spacing:18.150400pt;}
.ws8b{word-spacing:18.188800pt;}
.ws21{word-spacing:18.355200pt;}
.ws3f{word-spacing:18.598400pt;}
.wsef{word-spacing:18.700800pt;}
.wsba{word-spacing:18.713600pt;}
.ws67{word-spacing:18.784000pt;}
.wsa5{word-spacing:18.796800pt;}
.ws74{word-spacing:18.822400pt;}
.ws104{word-spacing:18.841600pt;}
.ws7b{word-spacing:19.078400pt;}
.ws97{word-spacing:19.129600pt;}
.ws96{word-spacing:19.174400pt;}
.ws52{word-spacing:19.276800pt;}
.wsa0{word-spacing:19.315200pt;}
.ws3e{word-spacing:19.366400pt;}
.ws3d{word-spacing:19.392000pt;}
.wsd8{word-spacing:19.430400pt;}
.wsa6{word-spacing:19.462400pt;}
.wsfb{word-spacing:19.539200pt;}
.wsc2{word-spacing:19.660800pt;}
.wsc1{word-spacing:19.694400pt;}
.ws50{word-spacing:19.923200pt;}
.wsb5{word-spacing:20.019200pt;}
.ws35{word-spacing:20.025600pt;}
.wsce{word-spacing:20.307200pt;}
.wsb4{word-spacing:20.339200pt;}
.ws9f{word-spacing:20.377600pt;}
.ws101{word-spacing:20.416000pt;}
.wsb8{word-spacing:20.460800pt;}
.ws4d{word-spacing:20.608000pt;}
.ws102{word-spacing:20.627200pt;}
.wse1{word-spacing:20.665600pt;}
.wsfa{word-spacing:20.678400pt;}
.wse2{word-spacing:20.684800pt;}
.wse3{word-spacing:20.691200pt;}
.wse0{word-spacing:20.697600pt;}
.ws44{word-spacing:20.908800pt;}
.wsb1{word-spacing:20.979200pt;}
.wsda{word-spacing:21.004800pt;}
.ws98{word-spacing:21.030400pt;}
.ws7e{word-spacing:21.145600pt;}
.wsf4{word-spacing:21.638400pt;}
.wsf5{word-spacing:21.651200pt;}
.ws88{word-spacing:21.740800pt;}
.ws93{word-spacing:22.284800pt;}
.ws86{word-spacing:22.483200pt;}
.wsbc{word-spacing:22.703520pt;}
.wsbd{word-spacing:22.732800pt;}
.ws2a{word-spacing:22.905600pt;}
.wsa1{word-spacing:23.475200pt;}
.ws85{word-spacing:23.699200pt;}
.ws9b{word-spacing:23.737600pt;}
.ws55{word-spacing:24.288000pt;}
.ws54{word-spacing:24.332800pt;}
.ws10e{word-spacing:24.620800pt;}
.ws24{word-spacing:24.979200pt;}
.ws6c{word-spacing:25.971200pt;}
.ws27{word-spacing:25.990400pt;}
.ws26{word-spacing:26.003200pt;}
.wsa7{word-spacing:26.022400pt;}
.ws9a{word-spacing:26.272000pt;}
.wsf3{word-spacing:26.822400pt;}
.ws72{word-spacing:26.918400pt;}
.ws73{word-spacing:26.976000pt;}
.wsb7{word-spacing:27.052800pt;}
.wsad{word-spacing:27.123200pt;}
.wsae{word-spacing:27.142400pt;}
.ws83{word-spacing:27.488000pt;}
.wsd5{word-spacing:27.616000pt;}
.ws76{word-spacing:27.667200pt;}
.ws77{word-spacing:27.724800pt;}
.wsf8{word-spacing:27.737600pt;}
.ws5d{word-spacing:28.780800pt;}
.ws64{word-spacing:28.979200pt;}
.wsd7{word-spacing:29.868800pt;}
.ws8a{word-spacing:29.875200pt;}
.wsd6{word-spacing:29.913600pt;}
.wsfc{word-spacing:30.323200pt;}
.wsfd{word-spacing:30.329600pt;}
.wsa9{word-spacing:30.566400pt;}
.ws95{word-spacing:31.123200pt;}
.wsaf{word-spacing:31.264000pt;}
.ws6b{word-spacing:31.603200pt;}
.ws8c{word-spacing:32.819200pt;}
.ws8e{word-spacing:32.908800pt;}
.ws8d{word-spacing:32.915200pt;}
.wsf9{word-spacing:33.254400pt;}
.wsf6{word-spacing:33.683200pt;}
.ws84{word-spacing:33.734400pt;}
.ws34{word-spacing:33.894400pt;}
.ws33{word-spacing:33.926400pt;}
.wsa8{word-spacing:34.355200pt;}
.ws31{word-spacing:34.502400pt;}
.ws30{word-spacing:34.508800pt;}
.ws9c{word-spacing:34.528000pt;}
.ws58{word-spacing:36.764267pt;}
.ws59{word-spacing:36.812800pt;}
.wsbb{word-spacing:37.638400pt;}
.wsb2{word-spacing:37.984000pt;}
.ws68{word-spacing:38.342400pt;}
.ws6d{word-spacing:39.392000pt;}
.ws6e{word-spacing:39.494400pt;}
.ws10d{word-spacing:50.489600pt;}
.wsf7{word-spacing:54.355200pt;}
.ws4a{word-spacing:59.987200pt;}
._13{margin-left:-14.064480pt;}
._11{margin-left:-12.918880pt;}
._c{margin-left:-11.452800pt;}
._d{margin-left:-10.087413pt;}
._12{margin-left:-8.698613pt;}
._e{margin-left:-7.598347pt;}
._f{margin-left:-5.777547pt;}
._b{margin-left:-4.603360pt;}
._10{margin-left:-3.450133pt;}
._2{margin-left:-1.923840pt;}
._1{margin-left:-0.997120pt;}
._0{width:0.892160pt;}
._16{width:1.826560pt;}
._6{width:2.766080pt;}
._3{width:3.970560pt;}
._15{width:5.671680pt;}
._a{width:6.661120pt;}
._9{width:7.640320pt;}
._14{width:9.120000pt;}
._5{width:10.081280pt;}
._4{width:11.129600pt;}
._8{width:16.739925pt;}
._7{width:18.589440pt;}
.fsb{font-size:42.240000pt;}
.fs1{font-size:52.480000pt;}
.fsa{font-size:57.600000pt;}
.fs7{font-size:60.160000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs5{font-size:84.480000pt;}
.fs3{font-size:96.000000pt;}
.fs8{font-size:106.240000pt;}
.fs9{font-size:111.360000pt;}
.fs2{font-size:138.240000pt;}
.fs4{font-size:244.480000pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:6.400000pt;}
.y58{bottom:6.720000pt;}
.y1{bottom:12.000000pt;}
.y57{bottom:16.640000pt;}
.y4{bottom:17.279947pt;}
.y2f{bottom:39.000040pt;}
.y140{bottom:88.920040pt;}
.y15b{bottom:93.720040pt;}
.y84{bottom:97.240040pt;}
.ye3{bottom:107.480040pt;}
.y13f{bottom:107.800040pt;}
.yc8{bottom:110.360040pt;}
.y174{bottom:112.280040pt;}
.y102{bottom:112.600040pt;}
.y83{bottom:116.120040pt;}
.yab{bottom:119.320040pt;}
.ye2{bottom:126.360000pt;}
.yc7{bottom:129.240000pt;}
.y15a{bottom:131.160000pt;}
.y101{bottom:131.480000pt;}
.y3{bottom:131.600053pt;}
.y82{bottom:134.680000pt;}
.y209{bottom:136.280000pt;}
.yaa{bottom:138.200000pt;}
.yb{bottom:141.120000pt;}
.ye1{bottom:144.920000pt;}
.y13e{bottom:145.240000pt;}
.yc6{bottom:147.800000pt;}
.y173{bottom:149.720000pt;}
.y100{bottom:150.040000pt;}
.y81{bottom:153.560000pt;}
.y208{bottom:154.840000pt;}
.ya9{bottom:156.760000pt;}
.ye0{bottom:163.800000pt;}
.yc5{bottom:166.680000pt;}
.y11d{bottom:167.320000pt;}
.y172{bottom:168.600000pt;}
.yff{bottom:168.920000pt;}
.ya{bottom:170.240000pt;}
.y175{bottom:172.120000pt;}
.y80{bottom:172.440000pt;}
.y207{bottom:173.720000pt;}
.y1cb{bottom:175.000000pt;}
.ya8{bottom:175.640000pt;}
.y13d{bottom:182.680000pt;}
.yc4{bottom:185.560000pt;}
.y11c{bottom:185.880000pt;}
.yfe{bottom:187.480000pt;}
.y7f{bottom:191.000000pt;}
.y206{bottom:191.960000pt;}
.y1ca{bottom:193.560000pt;}
.ya7{bottom:194.200000pt;}
.ydf{bottom:197.080000pt;}
.y9{bottom:199.680000pt;}
.y13c{bottom:201.560000pt;}
.yc3{bottom:204.120000pt;}
.y11b{bottom:204.760000pt;}
.y171{bottom:206.040000pt;}
.yfd{bottom:206.360000pt;}
.y205{bottom:207.320000pt;}
.y7e{bottom:209.880000pt;}
.y1c9{bottom:212.440000pt;}
.ya6{bottom:213.080000pt;}
.y204{bottom:219.800000pt;}
.y13b{bottom:220.120000pt;}
.y11a{bottom:223.640000pt;}
.y159{bottom:224.920000pt;}
.yfc{bottom:225.240000pt;}
.y7d{bottom:228.440000pt;}
.yde{bottom:230.360000pt;}
.y1c8{bottom:231.000000pt;}
.y8{bottom:231.680000pt;}
.ya5{bottom:231.960000pt;}
.yc2{bottom:237.720000pt;}
.y119{bottom:242.200000pt;}
.yfb{bottom:243.800000pt;}
.y7c{bottom:247.320000pt;}
.ydd{bottom:249.240000pt;}
.ya4{bottom:250.520000pt;}
.y21e{bottom:252.760000pt;}
.y13a{bottom:253.720000pt;}
.y170{bottom:259.480000pt;}
.y118{bottom:261.080000pt;}
.y18e{bottom:262.360000pt;}
.yfa{bottom:262.680000pt;}
.y1c7{bottom:264.600000pt;}
.y7b{bottom:266.200000pt;}
.ydc{bottom:267.800000pt;}
.ya3{bottom:269.400000pt;}
.yc1{bottom:270.680000pt;}
.y21d{bottom:271.640000pt;}
.y7{bottom:273.920000pt;}
.y19c{bottom:276.760000pt;}
.y16f{bottom:278.360000pt;}
.y117{bottom:279.640000pt;}
.y158{bottom:281.240000pt;}
.yf9{bottom:281.560000pt;}
.y7a{bottom:284.760000pt;}
.ydb{bottom:286.680000pt;}
.y1ec{bottom:287.320000pt;}
.ya2{bottom:287.960000pt;}
.y1bd{bottom:288.280000pt;}
.yc0{bottom:289.560000pt;}
.y21c{bottom:290.200000pt;}
.y19b{bottom:295.640000pt;}
.y16e{bottom:297.240000pt;}
.y1c6{bottom:297.880000pt;}
.y116{bottom:298.520000pt;}
.y18d{bottom:299.800000pt;}
.yf8{bottom:300.120000pt;}
.y1f8{bottom:303.000000pt;}
.y79{bottom:303.640000pt;}
.y139{bottom:305.560000pt;}
.y1eb{bottom:305.880000pt;}
.yda{bottom:306.200000pt;}
.y1ad{bottom:306.520000pt;}
.ya1{bottom:306.840000pt;}
.ybf{bottom:308.120000pt;}
.y21b{bottom:309.080000pt;}
.y19a{bottom:314.520000pt;}
.y16d{bottom:315.800000pt;}
.y6{bottom:316.160000pt;}
.y1c5{bottom:316.440000pt;}
.y115{bottom:317.400000pt;}
.y18c{bottom:318.680000pt;}
.y157{bottom:319.000000pt;}
.y1b1{bottom:319.640000pt;}
.y1f7{bottom:321.880000pt;}
.y78{bottom:322.520000pt;}
.y138{bottom:324.440000pt;}
.y1ea{bottom:324.760000pt;}
.y1ac{bottom:325.080000pt;}
.ya0{bottom:325.720000pt;}
.ybe{bottom:327.000000pt;}
.y194{bottom:327.640000pt;}
.y21a{bottom:327.960000pt;}
.y199{bottom:333.080000pt;}
.yf7{bottom:333.720000pt;}
.y16c{bottom:334.680000pt;}
.y1c4{bottom:335.320000pt;}
.y114{bottom:335.960000pt;}
.y18b{bottom:336.920000pt;}
.y156{bottom:337.560000pt;}
.yd9{bottom:338.200000pt;}
.y1b0{bottom:338.520000pt;}
.y1e0{bottom:339.160000pt;}
.y1f6{bottom:340.440000pt;}
.y77{bottom:341.080000pt;}
.y137{bottom:343.000000pt;}
.y1e9{bottom:343.640000pt;}
.y1ab{bottom:343.960000pt;}
.y9f{bottom:344.280000pt;}
.y1bc{bottom:344.600000pt;}
.y1a7{bottom:345.240000pt;}
.y193{bottom:346.520000pt;}
.y4f{bottom:349.400000pt;}
.y18a{bottom:349.720000pt;}
.y198{bottom:351.960000pt;}
.y16b{bottom:353.240000pt;}
.ybd{bottom:353.880000pt;}
.y113{bottom:354.840000pt;}
.y155{bottom:356.440000pt;}
.yd8{bottom:357.080000pt;}
.y1df{bottom:357.720000pt;}
.y1f5{bottom:359.320000pt;}
.y1a1{bottom:359.640000pt;}
.y76{bottom:359.960000pt;}
.y136{bottom:361.880000pt;}
.y1aa{bottom:362.200000pt;}
.y1bb{bottom:362.840000pt;}
.y9e{bottom:363.160000pt;}
.y1a6{bottom:363.800000pt;}
.y192{bottom:365.080000pt;}
.y219{bottom:365.400000pt;}
.yf6{bottom:366.680000pt;}
.y4e{bottom:368.280000pt;}
.y197{bottom:370.200000pt;}
.y16a{bottom:372.120000pt;}
.y1c3{bottom:372.760000pt;}
.ybc{bottom:373.720000pt;}
.y154{bottom:375.000000pt;}
.y1af{bottom:375.320000pt;}
.yd7{bottom:375.640000pt;}
.y1de{bottom:376.600000pt;}
.y1e8{bottom:377.240000pt;}
.y1a9{bottom:377.880000pt;}
.y1ba{bottom:378.200000pt;}
.y75{bottom:378.520000pt;}
.y202{bottom:380.440000pt;}
.y135{bottom:380.760000pt;}
.y9d{bottom:382.040000pt;}
.y1a5{bottom:382.680000pt;}
.y191{bottom:383.320000pt;}
.y218{bottom:383.960000pt;}
.yf5{bottom:385.560000pt;}
.y196{bottom:385.880000pt;}
.y4d{bottom:386.840000pt;}
.y180{bottom:387.160000pt;}
.y1e7{bottom:389.720000pt;}
.y1a8{bottom:390.360000pt;}
.y1b9{bottom:390.680000pt;}
.y169{bottom:391.000000pt;}
.y112{bottom:392.280000pt;}
.ybb{bottom:392.600000pt;}
.y153{bottom:393.880000pt;}
.yd6{bottom:394.520000pt;}
.y1dd{bottom:395.160000pt;}
.y5{bottom:396.760000pt;}
.y1a0{bottom:397.080000pt;}
.y74{bottom:397.400000pt;}
.y195{bottom:398.360000pt;}
.y190{bottom:399.000000pt;}
.y134{bottom:399.320000pt;}
.y9c{bottom:400.600000pt;}
.y1a4{bottom:401.240000pt;}
.y217{bottom:402.840000pt;}
.y1ae{bottom:403.800000pt;}
.yf4{bottom:404.120000pt;}
.y4c{bottom:405.720000pt;}
.y1c2{bottom:406.680000pt;}
.y168{bottom:409.560000pt;}
.y111{bottom:411.160000pt;}
.y18f{bottom:411.800000pt;}
.y152{bottom:412.760000pt;}
.yd5{bottom:414.040000pt;}
.y1f4{bottom:415.000000pt;}
.y19f{bottom:415.960000pt;}
.y73{bottom:416.280000pt;}
.y201{bottom:417.560000pt;}
.y133{bottom:418.200000pt;}
.y1c1{bottom:419.160000pt;}
.y9b{bottom:419.480000pt;}
.y216{bottom:421.720000pt;}
.yf3{bottom:423.000000pt;}
.y2e{bottom:423.960000pt;}
.y4b{bottom:424.280000pt;}
.y17f{bottom:424.600000pt;}
.y167{bottom:428.440000pt;}
.y110{bottom:429.720000pt;}
.y1f3{bottom:430.680000pt;}
.y151{bottom:431.320000pt;}
.y1dc{bottom:432.920000pt;}
.y200{bottom:433.240000pt;}
.y19e{bottom:434.200000pt;}
.y72{bottom:434.840000pt;}
.y1a3{bottom:435.160000pt;}
.y132{bottom:436.760000pt;}
.y9a{bottom:438.040000pt;}
.y2d{bottom:439.320000pt;}
.y215{bottom:440.280000pt;}
.yf2{bottom:442.520000pt;}
.y4a{bottom:443.160000pt;}
.y17e{bottom:443.480000pt;}
.y1ff{bottom:445.720000pt;}
.yba{bottom:446.040000pt;}
.y166{bottom:447.320000pt;}
.y1a2{bottom:447.960000pt;}
.y10f{bottom:448.600000pt;}
.y19d{bottom:449.880000pt;}
.y150{bottom:450.200000pt;}
.y1db{bottom:451.480000pt;}
.y71{bottom:453.720000pt;}
.y131{bottom:455.640000pt;}
.y2c{bottom:456.920000pt;}
.y214{bottom:459.160000pt;}
.y49{bottom:462.040000pt;}
.yf1{bottom:462.360000pt;}
.yb9{bottom:464.920000pt;}
.y165{bottom:465.880000pt;}
.y10e{bottom:467.480000pt;}
.y14f{bottom:468.760000pt;}
.y1da{bottom:470.360000pt;}
.y2b{bottom:472.280000pt;}
.y70{bottom:472.600000pt;}
.y130{bottom:474.520000pt;}
.y99{bottom:475.800000pt;}
.y213{bottom:478.040000pt;}
.y48{bottom:480.600000pt;}
.y17d{bottom:480.920000pt;}
.yf0{bottom:481.880000pt;}
.yb8{bottom:483.800000pt;}
.y164{bottom:484.760000pt;}
.y10d{bottom:486.040000pt;}
.y2a{bottom:487.640000pt;}
.y1d9{bottom:489.240000pt;}
.y6f{bottom:491.160000pt;}
.y12f{bottom:493.080000pt;}
.y98{bottom:494.360000pt;}
.y212{bottom:496.600000pt;}
.y47{bottom:499.480000pt;}
.y17c{bottom:499.800000pt;}
.yb7{bottom:502.360000pt;}
.y163{bottom:503.320000pt;}
.y10c{bottom:504.920000pt;}
.y29{bottom:505.240000pt;}
.y14e{bottom:506.520000pt;}
.y1d8{bottom:507.800000pt;}
.y6e{bottom:510.040000pt;}
.y12e{bottom:511.960000pt;}
.y97{bottom:513.240000pt;}
.y211{bottom:515.480000pt;}
.yef{bottom:516.120000pt;}
.y46{bottom:518.040000pt;}
.y17b{bottom:518.360000pt;}
.yb6{bottom:521.240000pt;}
.y162{bottom:522.200000pt;}
.y28{bottom:522.840000pt;}
.y10b{bottom:523.800000pt;}
.y14d{bottom:525.080000pt;}
.y1d7{bottom:526.680000pt;}
.y6d{bottom:528.600000pt;}
.y12d{bottom:530.520000pt;}
.y96{bottom:531.800000pt;}
.y210{bottom:534.040000pt;}
.y45{bottom:536.920000pt;}
.y17a{bottom:537.240000pt;}
.y27{bottom:538.200000pt;}
.yb5{bottom:539.800000pt;}
.yd4{bottom:540.120000pt;}
.y161{bottom:541.080000pt;}
.y10a{bottom:542.360000pt;}
.y14c{bottom:543.960000pt;}
.y1d6{bottom:545.240000pt;}
.y6c{bottom:547.480000pt;}
.yee{bottom:549.400000pt;}
.y95{bottom:550.680000pt;}
.y26{bottom:555.800000pt;}
.yb4{bottom:558.680000pt;}
.yd3{bottom:559.320000pt;}
.y160{bottom:559.640000pt;}
.y109{bottom:561.240000pt;}
.y14b{bottom:562.840000pt;}
.y1d5{bottom:564.120000pt;}
.y6b{bottom:566.360000pt;}
.y20f{bottom:567.640000pt;}
.yed{bottom:568.280000pt;}
.y94{bottom:569.560000pt;}
.y25{bottom:573.720000pt;}
.y44{bottom:574.360000pt;}
.y179{bottom:574.680000pt;}
.yb3{bottom:577.560000pt;}
.y15f{bottom:578.520000pt;}
.y14a{bottom:581.400000pt;}
.y1d4{bottom:583.000000pt;}
.y6a{bottom:584.920000pt;}
.yec{bottom:586.840000pt;}
.y93{bottom:587.800000pt;}
.y189{bottom:588.440000pt;}
.y24{bottom:589.080000pt;}
.y108{bottom:590.680000pt;}
.yd2{bottom:591.640000pt;}
.y43{bottom:593.240000pt;}
.y178{bottom:593.560000pt;}
.y15e{bottom:597.400000pt;}
.y1b8{bottom:599.640000pt;}
.y149{bottom:600.280000pt;}
.y20e{bottom:600.600000pt;}
.y1d3{bottom:601.560000pt;}
.y92{bottom:603.160000pt;}
.y69{bottom:603.800000pt;}
.yb2{bottom:604.120000pt;}
.yeb{bottom:605.720000pt;}
.y23{bottom:606.680000pt;}
.y188{bottom:607.000000pt;}
.y107{bottom:609.240000pt;}
.yd1{bottom:610.200000pt;}
.y42{bottom:612.120000pt;}
.y91{bottom:615.960000pt;}
.y1b7{bottom:618.520000pt;}
.y20d{bottom:619.480000pt;}
.y148{bottom:619.800000pt;}
.y1d2{bottom:620.440000pt;}
.y68{bottom:622.360000pt;}
.y22{bottom:624.280000pt;}
.yea{bottom:624.600000pt;}
.y1e6{bottom:625.560000pt;}
.y187{bottom:625.880000pt;}
.y106{bottom:628.120000pt;}
.yd0{bottom:629.080000pt;}
.y41{bottom:630.680000pt;}
.yb1{bottom:631.000000pt;}
.y15d{bottom:634.840000pt;}
.y1b6{bottom:637.080000pt;}
.y20c{bottom:638.360000pt;}
.y147{bottom:638.680000pt;}
.y1d1{bottom:639.320000pt;}
.y21{bottom:639.640000pt;}
.y67{bottom:641.240000pt;}
.y12c{bottom:643.160000pt;}
.y1e5{bottom:644.120000pt;}
.y186{bottom:644.760000pt;}
.y105{bottom:647.000000pt;}
.ycf{bottom:647.960000pt;}
.y40{bottom:649.560000pt;}
.y15c{bottom:653.400000pt;}
.y1b5{bottom:655.960000pt;}
.y20b{bottom:656.600000pt;}
.y20{bottom:657.240000pt;}
.ye9{bottom:657.880000pt;}
.y146{bottom:658.200000pt;}
.y66{bottom:660.120000pt;}
.y12b{bottom:662.040000pt;}
.y1e4{bottom:663.000000pt;}
.y185{bottom:663.320000pt;}
.y104{bottom:665.560000pt;}
.yce{bottom:666.520000pt;}
.y3f{bottom:668.120000pt;}
.yb0{bottom:668.440000pt;}
.y20a{bottom:671.960000pt;}
.y141{bottom:672.280000pt;}
.y1f2{bottom:673.560000pt;}
.y1b4{bottom:674.200000pt;}
.y1f{bottom:674.840000pt;}
.y1d0{bottom:676.760000pt;}
.y145{bottom:677.080000pt;}
.y65{bottom:678.680000pt;}
.y12a{bottom:680.600000pt;}
.y1e3{bottom:681.560000pt;}
.y184{bottom:682.200000pt;}
.y103{bottom:684.440000pt;}
.y1c0{bottom:684.760000pt;}
.ycd{bottom:686.040000pt;}
.y3e{bottom:687.000000pt;}
.yaf{bottom:687.320133pt;}
.y1b3{bottom:689.880000pt;}
.y1e{bottom:690.200000pt;}
.ye8{bottom:691.160000pt;}
.y1f1{bottom:692.120000pt;}
.y1cf{bottom:695.320133pt;}
.y1fe{bottom:695.640000pt;}
.y144{bottom:696.600000pt;}
.y64{bottom:697.560000pt;}
.y129{bottom:699.480000pt;}
.y1bf{bottom:700.440000pt;}
.y183{bottom:700.760000pt;}
.y203{bottom:702.040000pt;}
.y1b2{bottom:702.360000pt;}
.y3d{bottom:705.880000pt;}
.y1d{bottom:707.800000pt;}
.y225{bottom:708.760000pt;}
.ye7{bottom:709.720000pt;}
.y1f0{bottom:711.000000pt;}
.y1be{bottom:713.240000pt;}
.y1ce{bottom:714.200000pt;}
.y1fd{bottom:714.520000pt;}
.y143{bottom:715.480000pt;}
.y63{bottom:716.440000pt;}
.ycc{bottom:718.360000pt;}
.y1e2{bottom:718.680000pt;}
.y182{bottom:719.000000pt;}
.y3c{bottom:724.440000pt;}
.yae{bottom:724.760000pt;}
.y1c{bottom:725.400000pt;}
.ye6{bottom:728.600000pt;}
.y1ef{bottom:729.880000pt;}
.y1e1{bottom:731.160000pt;}
.y181{bottom:731.800000pt;}
.y1cd{bottom:732.440000pt;}
.y1fc{bottom:733.080000pt;}
.y142{bottom:734.040000pt;}
.y62{bottom:735.000000pt;}
.ycb{bottom:736.920000pt;}
.y1b{bottom:743.320000pt;}
.yad{bottom:743.640000pt;}
.y1cc{bottom:745.240000pt;}
.ye5{bottom:747.160000pt;}
.y1ee{bottom:747.800000pt;}
.y1fb{bottom:751.320000pt;}
.y61{bottom:753.880000pt;}
.yca{bottom:755.800000pt;}
.y1a{bottom:758.680000pt;}
.y3b{bottom:762.200000pt;}
.y1ed{bottom:763.480000pt;}
.ye4{bottom:766.040000pt;}
.y1fa{bottom:767.000000pt;}
.y60{bottom:772.440000pt;}
.y128{bottom:774.360000pt;}
.y19{bottom:776.280000pt;}
.y1f9{bottom:779.800000pt;}
.y3a{bottom:780.760000pt;}
.y177{bottom:781.080000pt;}
.y90{bottom:784.920000pt;}
.yc9{bottom:789.080000pt;}
.y5f{bottom:791.320000pt;}
.y127{bottom:793.240000pt;}
.y18{bottom:793.880000pt;}
.yac{bottom:795.800000pt;}
.y39{bottom:799.640000pt;}
.y224{bottom:799.960000pt;}
.y8f{bottom:803.480000pt;}
.y5e{bottom:810.200000pt;}
.y17{bottom:811.480000pt;}
.y126{bottom:812.120000pt;}
.y176{bottom:814.360000pt;}
.y38{bottom:818.200000pt;}
.y223{bottom:818.520000pt;}
.y8e{bottom:822.360000pt;}
.y16{bottom:826.840000pt;}
.y5d{bottom:828.760000pt;}
.y125{bottom:830.680000pt;}
.y37{bottom:837.080000pt;}
.y222{bottom:837.400000pt;}
.y8d{bottom:841.240000pt;}
.y15{bottom:844.440000pt;}
.y5c{bottom:847.640000pt;}
.y124{bottom:849.560000pt;}
.y52{bottom:855.640000pt;}
.y36{bottom:855.960000pt;}
.y8c{bottom:859.800000pt;}
.y14{bottom:862.040000pt;}
.y5b{bottom:866.520000pt;}
.y123{bottom:868.440000pt;}
.y35{bottom:874.520000pt;}
.y221{bottom:874.840000pt;}
.y8b{bottom:878.680000pt;}
.y13{bottom:879.640000pt;}
.y5a{bottom:885.080000pt;}
.y122{bottom:887.000000pt;}
.y51{bottom:893.080000pt;}
.y34{bottom:893.400000pt;}
.y220{bottom:893.720000pt;}
.y12{bottom:895.320000pt;}
.y8a{bottom:897.240000pt;}
.y121{bottom:905.880000pt;}
.y33{bottom:911.960000pt;}
.y11{bottom:912.920000pt;}
.y89{bottom:916.120000pt;}
.y120{bottom:924.440000pt;}
.y10{bottom:930.520000pt;}
.y32{bottom:930.840000pt;}
.y88{bottom:935.000000pt;}
.y11f{bottom:943.320000pt;}
.yf{bottom:948.120000pt;}
.y31{bottom:949.720000pt;}
.y87{bottom:953.560000pt;}
.y59{bottom:954.200000pt;}
.y21f{bottom:962.520000pt;}
.y30{bottom:970.840000pt;}
.y86{bottom:972.440000pt;}
.y11e{bottom:976.920000pt;}
.ye{bottom:979.800000pt;}
.y50{bottom:981.720000pt;}
.y85{bottom:991.320000pt;}
.y2{bottom:999.640000pt;}
.y56{bottom:1031.480000pt;}
.y53{bottom:1048.280000pt;}
.y54{bottom:1053.880000pt;}
.yc{bottom:1478.226667pt;}
.yd{bottom:1500.946667pt;}
.h9{height:0.000000pt;}
.h10{height:21.440027pt;}
.h14{height:21.760013pt;}
.h4{height:30.080000pt;}
.he{height:34.978125pt;}
.h5{height:43.280625pt;}
.hd{height:43.798125pt;}
.h12{height:43.840000pt;}
.h18{height:45.062500pt;}
.h15{height:45.663750pt;}
.h13{height:50.118750pt;}
.hc{height:50.962500pt;}
.h17{height:52.781250pt;}
.h3{height:55.687500pt;}
.h11{height:56.187500pt;}
.h16{height:57.003750pt;}
.hb{height:69.671250pt;}
.h8{height:79.171875pt;}
.hf{height:93.271250pt;}
.h7{height:114.007500pt;}
.ha{height:212.726250pt;}
.h6{height:349.120000pt;}
.h2{height:1098.520000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:0.000000pt;}
.wb{width:72.960000pt;}
.w9{width:85.120000pt;}
.w7{width:154.560000pt;}
.w8{width:186.880000pt;}
.w6{width:198.720000pt;}
.wa{width:382.080000pt;}
.w4{width:552.000000pt;}
.w3{width:603.840000pt;}
.w2{width:769.720000pt;}
.w0{width:793.720000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:7.040120pt;}
.x4{left:9.600000pt;}
.x1{left:12.000000pt;}
.x8{left:101.120120pt;}
.xc{left:106.080000pt;}
.x9{left:117.120120pt;}
.x1a{left:125.120133pt;}
.xa{left:133.120133pt;}
.x2{left:135.360000pt;}
.x5{left:137.240000pt;}
.x11{left:140.000000pt;}
.x1b{left:149.120133pt;}
.x19{left:159.360000pt;}
.x3{left:161.240000pt;}
.x17{left:183.360000pt;}
.x21{left:197.120133pt;}
.x18{left:207.360000pt;}
.x2e{left:222.337867pt;}
.x12{left:225.120000pt;}
.x1e{left:231.360000pt;}
.x3d{left:233.946000pt;}
.x32{left:235.427067pt;}
.x2b{left:246.878933pt;}
.x20{left:255.360000pt;}
.x34{left:265.511733pt;}
.x37{left:267.925467pt;}
.x30{left:270.923467pt;}
.x3e{left:276.279867pt;}
.x1f{left:279.360000pt;}
.x29{left:290.877867pt;}
.x27{left:292.712267pt;}
.xe{left:304.800000pt;}
.x43{left:306.070000pt;}
.x23{left:312.822933pt;}
.xb{left:313.906267pt;}
.x3f{left:318.247733pt;}
.x40{left:321.808933pt;}
.x15{left:323.498400pt;}
.x3a{left:324.872133pt;}
.x1c{left:339.526000pt;}
.x25{left:346.128533pt;}
.x41{left:356.414000pt;}
.x3b{left:401.626667pt;}
.xf{left:459.360000pt;}
.x45{left:470.053333pt;}
.x2a{left:518.053333pt;}
.x2d{left:519.919867pt;}
.x38{left:524.720000pt;}
.x22{left:534.053333pt;}
.x42{left:534.960000pt;}
.x31{left:536.720000pt;}
.x44{left:540.293200pt;}
.x2f{left:552.859600pt;}
.x3c{left:556.720000pt;}
.x35{left:559.159867pt;}
.x1d{left:565.419867pt;}
.x24{left:572.359600pt;}
.x33{left:574.053333pt;}
.x28{left:577.793200pt;}
.x36{left:588.293200pt;}
.x39{left:590.960000pt;}
.x2c{left:604.493200pt;}
.x13{left:607.200000pt;}
.x26{left:612.720000pt;}
.x16{left:626.174533pt;}
.x10{left:635.033867pt;}
.x14{left:665.626667pt;}
.x7{left:683.480000pt;}
.x6{left:735.640000pt;}
}




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