
    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_491f96b88b7088d51ce1d264.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.940430;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_300f713085591291b8127ee3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.937988;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_35abd59164ae954955dcb694.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bbfdd01c29ed11c299dc9ef0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937988;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_3de1ca09c78f8f48ba4bf121.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940430;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_1352a13fa7d63cefa889da6f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.940430;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_300f713085591291b8127ee3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.937988;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_b5c77b5f541937df6dc1bc86.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9f03b720a1c3cf76f6e1e086.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940430;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_300f713085591291b8127ee3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.937988;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_1352a13fa7d63cefa889da6f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.940430;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_300f713085591291b8127ee3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.937988;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_9f03b720a1c3cf76f6e1e086.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.940430;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_300f713085591291b8127ee3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.937988;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_8fe246a6e24b25d1eb137edf.woff2')format("woff");}.fff{font-family:fff;line-height:0.677246;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_549e0a5f8b82f72ad09222d7.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.687500;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_91ef04f26d14db360efa7eaf.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.920410;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_1cecc9d61209c013eb7bf062.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.940430;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_d188f4333fe9129de5aeefd0.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.937988;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,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);}
.v2{vertical-align:-28.350000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:28.350000px;}
.v4{vertical-align:29.802000px;}
.v1{vertical-align:37.800000px;}
.lsa{letter-spacing:-8.580000px;}
.ls5{letter-spacing:-3.834000px;}
.ls10{letter-spacing:-1.650000px;}
.ls3{letter-spacing:-1.404000px;}
.ls8{letter-spacing:-1.254000px;}
.ls9{letter-spacing:-0.990000px;}
.ls12{letter-spacing:-0.198000px;}
.ls2{letter-spacing:-0.054000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.108000px;}
.ls11{letter-spacing:0.198000px;}
.lse{letter-spacing:0.330000px;}
.lsb{letter-spacing:0.396000px;}
.lsd{letter-spacing:0.670200px;}
.lsc{letter-spacing:0.693000px;}
.ls14{letter-spacing:0.783000px;}
.ls13{letter-spacing:0.810000px;}
.ls7{letter-spacing:0.990000px;}
.lsf{letter-spacing:1.128600px;}
.ls0{letter-spacing:74.970600px;}
.ls6{letter-spacing:891.230400px;}
.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;}
}
.wsa{word-spacing:-17.490000px;}
.ws11f{word-spacing:-17.250000px;}
.wsa4{word-spacing:-16.896000px;}
.ws119{word-spacing:-16.830000px;}
.ws10d{word-spacing:-16.698000px;}
.ws2{word-spacing:-16.500000px;}
.wsbd{word-spacing:-15.510000px;}
.ws55{word-spacing:-15.246000px;}
.ws1{word-spacing:-15.000000px;}
.ws135{word-spacing:-14.310000px;}
.ws5{word-spacing:-13.608000px;}
.ws7{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.446000px;}
.ws4{word-spacing:-12.096000px;}
.ws0{word-spacing:-11.025000px;}
.ws6{word-spacing:-9.666000px;}
.ws10b{word-spacing:-7.392000px;}
.ws107{word-spacing:-7.260000px;}
.wsfe{word-spacing:-6.798000px;}
.wsfa{word-spacing:-5.874000px;}
.ws108{word-spacing:-5.610000px;}
.ws116{word-spacing:-5.148000px;}
.ws11d{word-spacing:-4.884000px;}
.ws105{word-spacing:-4.752000px;}
.wsc8{word-spacing:-4.488000px;}
.ws59{word-spacing:-4.356000px;}
.ws1e{word-spacing:-4.290000px;}
.ws110{word-spacing:-4.224000px;}
.wse2{word-spacing:-4.158000px;}
.wsd{word-spacing:-4.026000px;}
.ws12d{word-spacing:-3.996000px;}
.ws90{word-spacing:-3.960000px;}
.ws47{word-spacing:-3.894000px;}
.ws118{word-spacing:-3.828000px;}
.ws11c{word-spacing:-3.762000px;}
.ws101{word-spacing:-3.630000px;}
.ws10c{word-spacing:-3.498000px;}
.wsf3{word-spacing:-3.432000px;}
.ws77{word-spacing:-3.366000px;}
.ws113{word-spacing:-3.300000px;}
.ws117{word-spacing:-3.234000px;}
.ws9a{word-spacing:-3.168000px;}
.ws83{word-spacing:-3.102000px;}
.ws7e{word-spacing:-3.036000px;}
.ws82{word-spacing:-2.970000px;}
.ws111{word-spacing:-2.904000px;}
.ws58{word-spacing:-2.838000px;}
.ws2c{word-spacing:-2.772000px;}
.ws10{word-spacing:-2.706000px;}
.ws109{word-spacing:-2.640000px;}
.wsab{word-spacing:-2.574000px;}
.ws41{word-spacing:-2.508000px;}
.wsc5{word-spacing:-2.442000px;}
.ws31{word-spacing:-2.376000px;}
.ws3f{word-spacing:-2.310000px;}
.ws11{word-spacing:-2.244000px;}
.ws93{word-spacing:-2.178000px;}
.ws50{word-spacing:-2.112000px;}
.ws145{word-spacing:-2.106000px;}
.ws3a{word-spacing:-2.046000px;}
.wscf{word-spacing:-1.980000px;}
.wsb8{word-spacing:-1.914000px;}
.ws126{word-spacing:-1.890000px;}
.ws89{word-spacing:-1.848000px;}
.ws155{word-spacing:-1.836000px;}
.wsc6{word-spacing:-1.782000px;}
.wsa0{word-spacing:-1.716000px;}
.ws15e{word-spacing:-1.674000px;}
.wsc4{word-spacing:-1.650000px;}
.wse1{word-spacing:-1.584000px;}
.ws9b{word-spacing:-1.518000px;}
.ws15c{word-spacing:-1.458000px;}
.ws64{word-spacing:-1.452000px;}
.ws151{word-spacing:-1.404000px;}
.ws11e{word-spacing:-1.386000px;}
.ws94{word-spacing:-1.320000px;}
.ws165{word-spacing:-1.296000px;}
.ws63{word-spacing:-1.254000px;}
.ws148{word-spacing:-1.242000px;}
.ws8e{word-spacing:-1.188000px;}
.wsdc{word-spacing:-1.122000px;}
.wse0{word-spacing:-1.056000px;}
.ws15{word-spacing:-0.990000px;}
.ws52{word-spacing:-0.924000px;}
.ws121{word-spacing:-0.864000px;}
.ws5a{word-spacing:-0.858000px;}
.ws12c{word-spacing:-0.810000px;}
.ws5d{word-spacing:-0.792000px;}
.ws152{word-spacing:-0.756000px;}
.wsd6{word-spacing:-0.726000px;}
.wseb{word-spacing:-0.660000px;}
.ws7f{word-spacing:-0.594000px;}
.ws2b{word-spacing:-0.528000px;}
.ws8c{word-spacing:-0.462000px;}
.ws12b{word-spacing:-0.432000px;}
.ws3e{word-spacing:-0.396000px;}
.ws131{word-spacing:-0.378000px;}
.wsc{word-spacing:-0.330000px;}
.ws160{word-spacing:-0.324000px;}
.ws81{word-spacing:-0.264000px;}
.ws130{word-spacing:-0.216000px;}
.wsb2{word-spacing:-0.198000px;}
.ws87{word-spacing:-0.132000px;}
.ws34{word-spacing:-0.066000px;}
.ws166{word-spacing:-0.054000px;}
.ws8{word-spacing:0.000000px;}
.ws161{word-spacing:0.054000px;}
.ws1d{word-spacing:0.066000px;}
.wsaf{word-spacing:0.132000px;}
.ws12f{word-spacing:0.162000px;}
.wsbb{word-spacing:0.198000px;}
.ws14f{word-spacing:0.216000px;}
.ws46{word-spacing:0.264000px;}
.ws21{word-spacing:0.330000px;}
.ws13f{word-spacing:0.378000px;}
.wsc7{word-spacing:0.396000px;}
.ws7b{word-spacing:0.462000px;}
.ws1a{word-spacing:0.528000px;}
.ws13d{word-spacing:0.540000px;}
.wsb{word-spacing:0.594000px;}
.ws143{word-spacing:0.648000px;}
.ws49{word-spacing:0.660000px;}
.wsca{word-spacing:0.726000px;}
.wsd8{word-spacing:0.792000px;}
.ws98{word-spacing:0.858000px;}
.ws141{word-spacing:0.918000px;}
.ws11a{word-spacing:0.924000px;}
.ws66{word-spacing:0.990000px;}
.ws137{word-spacing:1.026000px;}
.ws6f{word-spacing:1.056000px;}
.ws150{word-spacing:1.080000px;}
.ws60{word-spacing:1.122000px;}
.wsb5{word-spacing:1.188000px;}
.ws122{word-spacing:1.242000px;}
.ws69{word-spacing:1.254000px;}
.ws149{word-spacing:1.296000px;}
.ws3d{word-spacing:1.320000px;}
.ws124{word-spacing:1.350000px;}
.wsf0{word-spacing:1.386000px;}
.ws53{word-spacing:1.452000px;}
.ws154{word-spacing:1.512000px;}
.ws51{word-spacing:1.518000px;}
.wsa1{word-spacing:1.584000px;}
.ws138{word-spacing:1.620000px;}
.wsaa{word-spacing:1.650000px;}
.wsac{word-spacing:1.716000px;}
.ws158{word-spacing:1.728000px;}
.wsba{word-spacing:1.782000px;}
.ws35{word-spacing:1.848000px;}
.wsd7{word-spacing:1.914000px;}
.ws8d{word-spacing:1.980000px;}
.ws139{word-spacing:1.998000px;}
.wse{word-spacing:2.046000px;}
.ws48{word-spacing:2.112000px;}
.ws14e{word-spacing:2.160000px;}
.ws56{word-spacing:2.178000px;}
.ws156{word-spacing:2.214000px;}
.wsb3{word-spacing:2.244000px;}
.ws142{word-spacing:2.268000px;}
.ws1c{word-spacing:2.310000px;}
.ws5f{word-spacing:2.376000px;}
.ws16f{word-spacing:2.430000px;}
.wsb0{word-spacing:2.442000px;}
.wsa9{word-spacing:2.508000px;}
.ws127{word-spacing:2.538000px;}
.ws7a{word-spacing:2.574000px;}
.ws120{word-spacing:2.592000px;}
.wsae{word-spacing:2.640000px;}
.wsd1{word-spacing:2.706000px;}
.ws6c{word-spacing:2.772000px;}
.ws136{word-spacing:2.808000px;}
.ws76{word-spacing:2.838000px;}
.ws7d{word-spacing:2.904000px;}
.ws163{word-spacing:2.916000px;}
.wsd3{word-spacing:2.970000px;}
.ws15d{word-spacing:3.024000px;}
.ws13{word-spacing:3.036000px;}
.wsfc{word-spacing:3.102000px;}
.ws15f{word-spacing:3.132000px;}
.wsde{word-spacing:3.168000px;}
.ws16d{word-spacing:3.186000px;}
.wsf2{word-spacing:3.234000px;}
.ws13e{word-spacing:3.240000px;}
.ws14{word-spacing:3.300000px;}
.ws5e{word-spacing:3.366000px;}
.ws162{word-spacing:3.402000px;}
.ws2d{word-spacing:3.432000px;}
.ws61{word-spacing:3.498000px;}
.ws153{word-spacing:3.510000px;}
.ws5c{word-spacing:3.564000px;}
.ws14b{word-spacing:3.618000px;}
.ws88{word-spacing:3.630000px;}
.ws144{word-spacing:3.672000px;}
.ws20{word-spacing:3.696000px;}
.ws16e{word-spacing:3.726000px;}
.ws28{word-spacing:3.762000px;}
.ws1f{word-spacing:3.828000px;}
.wsc3{word-spacing:3.894000px;}
.ws8f{word-spacing:3.960000px;}
.ws12a{word-spacing:3.996000px;}
.ws6e{word-spacing:4.026000px;}
.ws13a{word-spacing:4.050000px;}
.ws4e{word-spacing:4.092000px;}
.ws3c{word-spacing:4.158000px;}
.ws16a{word-spacing:4.212000px;}
.ws18{word-spacing:4.224000px;}
.wsb4{word-spacing:4.290000px;}
.ws134{word-spacing:4.320000px;}
.wsea{word-spacing:4.356000px;}
.wse4{word-spacing:4.422000px;}
.ws13b{word-spacing:4.428000px;}
.wsbf{word-spacing:4.488000px;}
.ws7c{word-spacing:4.554000px;}
.ws38{word-spacing:4.620000px;}
.ws125{word-spacing:4.644000px;}
.ws1b{word-spacing:4.686000px;}
.ws16b{word-spacing:4.698000px;}
.wsf{word-spacing:4.752000px;}
.ws45{word-spacing:4.818000px;}
.ws129{word-spacing:4.860000px;}
.ws5b{word-spacing:4.884000px;}
.wsa5{word-spacing:4.950000px;}
.ws4f{word-spacing:5.016000px;}
.ws6d{word-spacing:5.082000px;}
.wsa2{word-spacing:5.148000px;}
.ws168{word-spacing:5.184000px;}
.wsff{word-spacing:5.214000px;}
.ws167{word-spacing:5.238000px;}
.wsdb{word-spacing:5.280000px;}
.ws2e{word-spacing:5.346000px;}
.ws36{word-spacing:5.412000px;}
.ws169{word-spacing:5.454000px;}
.ws4c{word-spacing:5.478000px;}
.ws19{word-spacing:5.544000px;}
.ws3b{word-spacing:5.610000px;}
.wsad{word-spacing:5.676000px;}
.ws80{word-spacing:5.742000px;}
.wse3{word-spacing:5.808000px;}
.ws115{word-spacing:5.874000px;}
.ws9f{word-spacing:5.940000px;}
.ws33{word-spacing:6.006000px;}
.ws14d{word-spacing:6.048000px;}
.ws44{word-spacing:6.072000px;}
.wsb7{word-spacing:6.138000px;}
.ws71{word-spacing:6.204000px;}
.ws42{word-spacing:6.270000px;}
.ws73{word-spacing:6.336000px;}
.ws99{word-spacing:6.402000px;}
.ws9e{word-spacing:6.468000px;}
.ws15a{word-spacing:6.480000px;}
.wsf9{word-spacing:6.534000px;}
.ws132{word-spacing:6.588000px;}
.ws6a{word-spacing:6.600000px;}
.ws84{word-spacing:6.666000px;}
.wse7{word-spacing:6.732000px;}
.ws8a{word-spacing:6.798000px;}
.ws128{word-spacing:6.858000px;}
.ws4d{word-spacing:6.864000px;}
.ws75{word-spacing:6.930000px;}
.ws157{word-spacing:6.966000px;}
.ws62{word-spacing:6.996000px;}
.ws123{word-spacing:7.020000px;}
.ws22{word-spacing:7.062000px;}
.ws11b{word-spacing:7.128000px;}
.ws14c{word-spacing:7.182000px;}
.wsd2{word-spacing:7.194000px;}
.ws140{word-spacing:7.236000px;}
.ws40{word-spacing:7.260000px;}
.ws27{word-spacing:7.326000px;}
.ws43{word-spacing:7.392000px;}
.ws9{word-spacing:7.452000px;}
.ws74{word-spacing:7.458000px;}
.ws54{word-spacing:7.524000px;}
.ws146{word-spacing:7.560000px;}
.ws8b{word-spacing:7.590000px;}
.wsa8{word-spacing:7.656000px;}
.wsc9{word-spacing:7.722000px;}
.ws32{word-spacing:7.788000px;}
.wsa3{word-spacing:7.854000px;}
.ws85{word-spacing:7.920000px;}
.ws26{word-spacing:7.986000px;}
.ws86{word-spacing:8.052000px;}
.ws159{word-spacing:8.100000px;}
.ws39{word-spacing:8.118000px;}
.wsc0{word-spacing:8.184000px;}
.ws2f{word-spacing:8.316000px;}
.ws92{word-spacing:8.382000px;}
.ws12{word-spacing:8.448000px;}
.ws68{word-spacing:8.514000px;}
.ws25{word-spacing:8.580000px;}
.ws30{word-spacing:8.646000px;}
.wsf1{word-spacing:8.712000px;}
.ws133{word-spacing:8.748000px;}
.ws6b{word-spacing:8.778000px;}
.wsd5{word-spacing:8.844000px;}
.ws104{word-spacing:8.910000px;}
.wsfd{word-spacing:8.976000px;}
.ws97{word-spacing:9.042000px;}
.wsdd{word-spacing:9.108000px;}
.wsa7{word-spacing:9.174000px;}
.ws37{word-spacing:9.240000px;}
.ws91{word-spacing:9.306000px;}
.wsb6{word-spacing:9.372000px;}
.ws70{word-spacing:9.438000px;}
.ws9c{word-spacing:9.504000px;}
.ws23{word-spacing:9.570000px;}
.ws112{word-spacing:9.702000px;}
.ws96{word-spacing:9.768000px;}
.wscd{word-spacing:9.834000px;}
.ws95{word-spacing:9.900000px;}
.wse6{word-spacing:9.966000px;}
.ws102{word-spacing:10.032000px;}
.wsf5{word-spacing:10.164000px;}
.ws2a{word-spacing:10.230000px;}
.ws24{word-spacing:10.296000px;}
.ws79{word-spacing:10.362000px;}
.ws57{word-spacing:10.428000px;}
.ws147{word-spacing:10.530000px;}
.ws114{word-spacing:10.560000px;}
.ws67{word-spacing:10.626000px;}
.wsdf{word-spacing:10.692000px;}
.ws164{word-spacing:10.746000px;}
.ws100{word-spacing:10.758000px;}
.wsfb{word-spacing:11.022000px;}
.ws14a{word-spacing:11.070000px;}
.wsbe{word-spacing:11.088000px;}
.wsd4{word-spacing:11.220000px;}
.wse5{word-spacing:11.418000px;}
.wse8{word-spacing:11.616000px;}
.ws4a{word-spacing:11.880000px;}
.wsce{word-spacing:12.012000px;}
.ws13c{word-spacing:12.042000px;}
.ws29{word-spacing:12.078000px;}
.wsf6{word-spacing:12.144000px;}
.ws9d{word-spacing:12.210000px;}
.wsb9{word-spacing:12.276000px;}
.wsa6{word-spacing:12.540000px;}
.wsd0{word-spacing:12.606000px;}
.wsc2{word-spacing:12.672000px;}
.ws17{word-spacing:12.738000px;}
.ws78{word-spacing:12.804000px;}
.wsc1{word-spacing:13.134000px;}
.wsed{word-spacing:13.464000px;}
.ws103{word-spacing:13.728000px;}
.wsec{word-spacing:13.860000px;}
.wsf4{word-spacing:13.926000px;}
.ws4b{word-spacing:14.652000px;}
.wscb{word-spacing:14.784000px;}
.ws10a{word-spacing:14.982000px;}
.ws65{word-spacing:15.378000px;}
.ws16c{word-spacing:15.444000px;}
.wscc{word-spacing:15.576000px;}
.wsd9{word-spacing:15.906000px;}
.ws10e{word-spacing:16.038000px;}
.ws16{word-spacing:16.566000px;}
.wse9{word-spacing:17.028000px;}
.ws10f{word-spacing:17.094000px;}
.wsda{word-spacing:17.358000px;}
.ws106{word-spacing:17.424000px;}
.ws12e{word-spacing:17.550000px;}
.ws72{word-spacing:17.556000px;}
.wsee{word-spacing:17.754000px;}
.wsf7{word-spacing:18.216000px;}
.wsef{word-spacing:18.810000px;}
.wsb1{word-spacing:19.074000px;}
.ws15b{word-spacing:20.088000px;}
.wsf8{word-spacing:26.268000px;}
.wsbc{word-spacing:841.730400px;}
._16{margin-left:-1726.027200px;}
._2b{margin-left:-43.362000px;}
._27{margin-left:-35.145600px;}
._26{margin-left:-34.135200px;}
._24{margin-left:-32.770800px;}
._28{margin-left:-31.324800px;}
._11{margin-left:-30.274800px;}
._1f{margin-left:-28.327200px;}
._15{margin-left:-26.169600px;}
._1b{margin-left:-24.486000px;}
._1e{margin-left:-23.407200px;}
._25{margin-left:-21.912000px;}
._f{margin-left:-20.394000px;}
._e{margin-left:-19.016400px;}
._19{margin-left:-17.965200px;}
._18{margin-left:-16.785600px;}
._9{margin-left:-15.237600px;}
._1c{margin-left:-14.091600px;}
._1a{margin-left:-12.553200px;}
._2c{margin-left:-10.393200px;}
._17{margin-left:-8.842800px;}
._14{margin-left:-7.822200px;}
._1d{margin-left:-6.751800px;}
._8{margin-left:-5.523600px;}
._5{margin-left:-3.830400px;}
._0{margin-left:-2.692800px;}
._3{margin-left:-1.022400px;}
._a{width:1.050000px;}
._1{width:2.131200px;}
._b{width:3.233400px;}
._c{width:4.348200px;}
._4{width:5.913600px;}
._d{width:7.641600px;}
._2{width:8.659200px;}
._13{width:9.846600px;}
._6{width:11.193900px;}
._22{width:12.560400px;}
._2a{width:13.993200px;}
._29{width:15.334800px;}
._23{width:16.429200px;}
._10{width:18.150000px;}
._2d{width:19.808400px;}
._12{width:22.672200px;}
._20{width:25.931400px;}
._21{width:27.093000px;}
._7{width:31.311600px;}
._2e{width:32.538000px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:28.080000px;}
.fs6{font-size:42.000000px;}
.fs4{font-size:44.100000px;}
.fsb{font-size:46.200000px;}
.fs0{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs3{font-size:58.800000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:63.000000px;}
.fs8{font-size:66.000000px;}
.fsc{font-size:69.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:45.465600px;}
.y2{bottom:58.093950px;}
.y23{bottom:59.709600px;}
.y1{bottom:72.337950px;}
.y7e{bottom:92.682300px;}
.y14e{bottom:95.404800px;}
.y106{bottom:95.685300px;}
.y188{bottom:97.927200px;}
.y50{bottom:101.542800px;}
.ybf{bottom:101.568300px;}
.y125{bottom:102.763800px;}
.yde{bottom:104.545800px;}
.ya1{bottom:110.403300px;}
.y21{bottom:111.325200px;}
.y7d{bottom:112.185300px;}
.y187{bottom:112.925700px;}
.y105{bottom:115.188300px;}
.y4f{bottom:121.045800px;}
.ybe{bottom:121.071300px;}
.y124{bottom:122.266800px;}
.ydd{bottom:124.048800px;}
.y14d{bottom:125.401800px;}
.y20{bottom:126.323700px;}
.y186{bottom:127.924200px;}
.ya0{bottom:129.906300px;}
.y7c{bottom:131.688300px;}
.y104{bottom:134.691300px;}
.y14c{bottom:140.400300px;}
.y4e{bottom:140.548800px;}
.ybd{bottom:140.574300px;}
.y123{bottom:141.769800px;}
.y185{bottom:142.922700px;}
.ydc{bottom:143.551800px;}
.y9f{bottom:149.409300px;}
.y1f{bottom:150.799200px;}
.y7b{bottom:151.191300px;}
.y103{bottom:154.194300px;}
.y14b{bottom:155.398800px;}
.y184{bottom:157.921200px;}
.y4d{bottom:160.051800px;}
.ybc{bottom:160.077300px;}
.y122{bottom:161.272800px;}
.ydb{bottom:163.054800px;}
.y1e{bottom:167.296200px;}
.y9e{bottom:168.912300px;}
.y14a{bottom:170.397300px;}
.y7a{bottom:170.694300px;}
.y183{bottom:172.919700px;}
.y102{bottom:173.697300px;}
.y4c{bottom:179.554800px;}
.ybb{bottom:179.580300px;}
.y121{bottom:180.775800px;}
.yda{bottom:182.557800px;}
.y149{bottom:185.395800px;}
.y182{bottom:187.918200px;}
.y9d{bottom:188.415300px;}
.y79{bottom:190.197300px;}
.y101{bottom:193.200300px;}
.y4b{bottom:199.057800px;}
.yba{bottom:199.083300px;}
.y120{bottom:200.278800px;}
.y148{bottom:200.394300px;}
.yd9{bottom:202.060800px;}
.y181{bottom:202.916700px;}
.y9c{bottom:207.918300px;}
.y78{bottom:209.700300px;}
.y100{bottom:212.703300px;}
.y147{bottom:215.392800px;}
.y180{bottom:217.915200px;}
.y4a{bottom:218.560800px;}
.yb9{bottom:218.586300px;}
.y11f{bottom:219.781800px;}
.yd8{bottom:221.563800px;}
.y9b{bottom:227.421300px;}
.y77{bottom:229.203300px;}
.y146{bottom:230.391300px;}
.yff{bottom:232.206300px;}
.y17f{bottom:232.913700px;}
.y49{bottom:238.063800px;}
.yb8{bottom:238.089300px;}
.y11e{bottom:239.284800px;}
.yd7{bottom:241.066800px;}
.y145{bottom:245.389800px;}
.y9a{bottom:246.924300px;}
.y17e{bottom:247.912200px;}
.y76{bottom:248.706300px;}
.yfe{bottom:251.709300px;}
.y48{bottom:257.566800px;}
.yb7{bottom:257.592300px;}
.y11d{bottom:258.787800px;}
.y144{bottom:260.388300px;}
.yd6{bottom:260.569800px;}
.y1b{bottom:261.057150px;}
.y17d{bottom:262.910700px;}
.y99{bottom:266.427300px;}
.y75{bottom:268.209300px;}
.yfd{bottom:271.212300px;}
.y143{bottom:275.386800px;}
.y47{bottom:277.069800px;}
.yb6{bottom:277.095300px;}
.y17c{bottom:277.909200px;}
.y11c{bottom:278.290800px;}
.yd5{bottom:280.072800px;}
.y1a{bottom:280.560150px;}
.y98{bottom:285.930300px;}
.y74{bottom:287.712300px;}
.y142{bottom:290.385300px;}
.yfc{bottom:290.715300px;}
.y17b{bottom:292.907700px;}
.y46{bottom:296.572800px;}
.yb5{bottom:296.598300px;}
.y11b{bottom:297.793800px;}
.yd4{bottom:299.575800px;}
.y19{bottom:300.063150px;}
.y141{bottom:305.383800px;}
.y97{bottom:305.433300px;}
.y73{bottom:307.215300px;}
.y17a{bottom:307.906200px;}
.yfb{bottom:310.218300px;}
.y45{bottom:316.075800px;}
.yb4{bottom:316.101300px;}
.y11a{bottom:317.296800px;}
.yd3{bottom:319.078800px;}
.y140{bottom:320.382300px;}
.y179{bottom:322.904700px;}
.y96{bottom:324.936300px;}
.y72{bottom:326.718300px;}
.yfa{bottom:329.721300px;}
.y13f{bottom:335.380800px;}
.y44{bottom:335.578800px;}
.yb3{bottom:335.604300px;}
.y119{bottom:336.799800px;}
.y178{bottom:337.903200px;}
.yd2{bottom:338.581800px;}
.y95{bottom:344.439300px;}
.y71{bottom:346.221300px;}
.yf9{bottom:349.224300px;}
.y13e{bottom:350.379300px;}
.y177{bottom:352.901700px;}
.y43{bottom:355.081800px;}
.yb2{bottom:355.107300px;}
.y118{bottom:356.302800px;}
.yd1{bottom:358.084800px;}
.y18{bottom:359.307450px;}
.y94{bottom:363.942300px;}
.y13d{bottom:365.377800px;}
.y70{bottom:365.724300px;}
.y176{bottom:367.900200px;}
.yf8{bottom:368.727300px;}
.y42{bottom:374.584800px;}
.yb1{bottom:374.610300px;}
.y117{bottom:375.805800px;}
.yd0{bottom:377.587800px;}
.y13c{bottom:380.376300px;}
.y175{bottom:382.898700px;}
.y93{bottom:383.445300px;}
.y6f{bottom:385.227300px;}
.y17{bottom:386.667450px;}
.yf7{bottom:388.230300px;}
.y41{bottom:394.087800px;}
.yb0{bottom:394.113300px;}
.y116{bottom:395.308800px;}
.y13b{bottom:395.374800px;}
.ycf{bottom:397.090800px;}
.y174{bottom:397.897200px;}
.y92{bottom:402.948300px;}
.y16{bottom:404.667450px;}
.y6e{bottom:404.730300px;}
.yf6{bottom:407.733300px;}
.y13a{bottom:410.373300px;}
.y173{bottom:412.895700px;}
.y40{bottom:413.590800px;}
.yaf{bottom:413.616300px;}
.y115{bottom:414.811800px;}
.yce{bottom:416.593800px;}
.y91{bottom:422.451300px;}
.y15{bottom:422.667450px;}
.y6d{bottom:424.233300px;}
.y139{bottom:425.371800px;}
.yf5{bottom:427.236300px;}
.y172{bottom:427.894200px;}
.y3f{bottom:433.093800px;}
.yae{bottom:433.119300px;}
.y114{bottom:434.314800px;}
.ycd{bottom:436.096800px;}
.y138{bottom:440.370300px;}
.y14{bottom:440.667450px;}
.y90{bottom:441.954300px;}
.y171{bottom:442.892700px;}
.y6c{bottom:443.736300px;}
.yf4{bottom:446.739300px;}
.y3e{bottom:452.596800px;}
.yad{bottom:452.622300px;}
.y113{bottom:453.817800px;}
.y137{bottom:455.368800px;}
.ycc{bottom:455.599800px;}
.y170{bottom:457.891200px;}
.y13{bottom:458.667450px;}
.y8f{bottom:461.457300px;}
.y6b{bottom:463.239300px;}
.yf3{bottom:466.242300px;}
.y136{bottom:470.367300px;}
.y3d{bottom:472.099800px;}
.yac{bottom:472.125300px;}
.y16f{bottom:472.889700px;}
.y112{bottom:473.320800px;}
.ycb{bottom:475.102800px;}
.y12{bottom:476.667450px;}
.y8e{bottom:480.960300px;}
.y6a{bottom:482.742300px;}
.y135{bottom:485.365800px;}
.yf2{bottom:485.745300px;}
.y16e{bottom:487.888200px;}
.y3c{bottom:491.602800px;}
.yab{bottom:491.628300px;}
.y111{bottom:492.823800px;}
.yca{bottom:494.605800px;}
.y11{bottom:494.667450px;}
.y134{bottom:500.364300px;}
.y8d{bottom:500.463300px;}
.y69{bottom:502.245300px;}
.y16d{bottom:502.886700px;}
.yf1{bottom:505.248300px;}
.y3b{bottom:511.105800px;}
.yaa{bottom:511.131300px;}
.y110{bottom:512.326800px;}
.y10{bottom:512.667450px;}
.yc9{bottom:514.108800px;}
.y16c{bottom:517.885200px;}
.y8c{bottom:519.966300px;}
.y68{bottom:521.748300px;}
.yf0{bottom:524.751300px;}
.y133{bottom:530.364300px;}
.y3a{bottom:530.608800px;}
.yf{bottom:530.667450px;}
.y10f{bottom:531.829800px;}
.y16b{bottom:532.883700px;}
.yc8{bottom:533.611800px;}
.y8b{bottom:539.469300px;}
.y67{bottom:541.251300px;}
.yef{bottom:544.254300px;}
.y16a{bottom:547.882200px;}
.ye{bottom:548.667450px;}
.y39{bottom:550.111800px;}
.ya9{bottom:550.137300px;}
.y10e{bottom:551.332800px;}
.yc7{bottom:553.114800px;}
.y8a{bottom:558.972300px;}
.y66{bottom:560.754300px;}
.y169{bottom:562.880700px;}
.yee{bottom:563.757300px;}
.yd{bottom:566.667450px;}
.y132{bottom:567.565800px;}
.y38{bottom:569.614800px;}
.ya8{bottom:569.640300px;}
.y10d{bottom:570.835800px;}
.yc6{bottom:572.617800px;}
.y168{bottom:577.879200px;}
.y89{bottom:578.475300px;}
.y65{bottom:580.257300px;}
.y131{bottom:582.564300px;}
.yed{bottom:583.260300px;}
.yc{bottom:584.667450px;}
.y37{bottom:589.117800px;}
.ya7{bottom:589.143300px;}
.y10c{bottom:590.338800px;}
.yc5{bottom:592.120800px;}
.y167{bottom:592.877700px;}
.y88{bottom:597.978300px;}
.y64{bottom:599.760300px;}
.yb{bottom:602.667450px;}
.yec{bottom:602.763300px;}
.y166{bottom:607.876200px;}
.y36{bottom:608.620800px;}
.ya6{bottom:608.646300px;}
.yc4{bottom:611.623800px;}
.y130{bottom:612.564300px;}
.y87{bottom:617.481300px;}
.y63{bottom:619.263300px;}
.y10b{bottom:620.484300px;}
.ya{bottom:620.667450px;}
.yeb{bottom:622.266300px;}
.y165{bottom:622.874700px;}
.y35{bottom:628.123800px;}
.ya5{bottom:628.149300px;}
.yc3{bottom:631.126800px;}
.y86{bottom:636.984300px;}
.y164{bottom:637.873200px;}
.y9{bottom:638.667450px;}
.y62{bottom:638.766300px;}
.yea{bottom:641.769300px;}
.y34{bottom:647.626800px;}
.ya4{bottom:647.652300px;}
.yc2{bottom:650.629800px;}
.y163{bottom:652.871700px;}
.y85{bottom:656.487300px;}
.y8{bottom:656.667450px;}
.y61{bottom:658.269300px;}
.ye9{bottom:661.272300px;}
.y12f{bottom:661.323300px;}
.y33{bottom:667.129800px;}
.ya3{bottom:667.155300px;}
.y162{bottom:667.870200px;}
.yc1{bottom:670.132800px;}
.y7{bottom:674.667450px;}
.y84{bottom:675.990300px;}
.y60{bottom:677.772300px;}
.y12e{bottom:677.820300px;}
.ye8{bottom:680.775300px;}
.y161{bottom:682.868700px;}
.y32{bottom:686.632800px;}
.ya2{bottom:686.658300px;}
.y12d{bottom:694.317300px;}
.y83{bottom:695.493300px;}
.y5f{bottom:697.275300px;}
.y160{bottom:697.867200px;}
.yc0{bottom:700.278300px;}
.y31{bottom:706.135800px;}
.y12c{bottom:710.814300px;}
.y15f{bottom:712.865700px;}
.y82{bottom:714.996300px;}
.y6{bottom:715.062000px;}
.y5e{bottom:716.778300px;}
.ye7{bottom:719.781300px;}
.y30{bottom:725.638800px;}
.y15e{bottom:727.864200px;}
.y5{bottom:731.976900px;}
.y81{bottom:734.499300px;}
.y5d{bottom:736.281300px;}
.y12b{bottom:737.064300px;}
.ye6{bottom:739.284300px;}
.y15d{bottom:742.862700px;}
.y2f{bottom:745.141800px;}
.y80{bottom:754.002300px;}
.y5c{bottom:755.784300px;}
.y15c{bottom:757.861200px;}
.ye5{bottom:758.787300px;}
.y2e{bottom:764.644800px;}
.y15b{bottom:772.859700px;}
.y7f{bottom:773.505300px;}
.y5b{bottom:775.287300px;}
.ye4{bottom:778.290300px;}
.y2d{bottom:784.147800px;}
.y12a{bottom:786.573300px;}
.y15a{bottom:787.858200px;}
.y10a{bottom:793.008300px;}
.y5a{bottom:794.790300px;}
.ye3{bottom:797.793300px;}
.y159{bottom:802.856700px;}
.y129{bottom:803.070300px;}
.y2c{bottom:803.650800px;}
.y109{bottom:812.511300px;}
.y59{bottom:814.293300px;}
.ye2{bottom:817.296300px;}
.y158{bottom:817.855200px;}
.y128{bottom:819.567300px;}
.y2b{bottom:823.153800px;}
.y108{bottom:832.014300px;}
.y157{bottom:832.853700px;}
.y58{bottom:833.796300px;}
.y127{bottom:836.064300px;}
.ye1{bottom:836.799300px;}
.y4{bottom:840.097800px;}
.y2a{bottom:842.656800px;}
.y156{bottom:847.852200px;}
.y107{bottom:851.517300px;}
.y57{bottom:853.299300px;}
.ye0{bottom:856.302300px;}
.y29{bottom:862.159800px;}
.y126{bottom:862.314300px;}
.y155{bottom:862.850700px;}
.y3{bottom:865.590300px;}
.y56{bottom:872.802300px;}
.ydf{bottom:875.805300px;}
.y154{bottom:877.849200px;}
.y28{bottom:881.662800px;}
.y55{bottom:892.305300px;}
.y153{bottom:892.847700px;}
.y27{bottom:901.165800px;}
.y152{bottom:907.846200px;}
.y54{bottom:911.808300px;}
.y26{bottom:920.668800px;}
.y151{bottom:922.844700px;}
.y53{bottom:931.311300px;}
.y150{bottom:937.843200px;}
.y25{bottom:950.814300px;}
.y14f{bottom:952.841700px;}
.y1d{bottom:973.624200px;}
.y52{bottom:983.881050px;}
.y22{bottom:983.881200px;}
.y1c{bottom:988.622700px;}
.y51{bottom:1025.070000px;}
.hb{height:27.558984px;}
.h5{height:30.620215px;}
.h2{height:33.328125px;}
.he{height:36.413086px;}
.h8{height:37.494141px;}
.h6{height:41.660156px;}
.h9{height:45.536133px;}
.h7{height:45.826172px;}
.hd{height:47.605957px;}
.hc{height:61.880320px;}
.h3{height:62.094727px;}
.h4{height:78.368555px;}
.ha{height:1045.980000px;}
.h0{height:1045.984500px;}
.h1{height:1046.250000px;}
.w1{width:726.750000px;}
.w2{width:727.080000px;}
.w0{width:727.086000px;}
.x0{left:0.000000px;}
.x8{left:72.283500px;}
.x1{left:76.535400px;}
.x6{left:80.814900px;}
.x9{left:87.282000px;}
.x3{left:91.517400px;}
.x2{left:93.543300px;}
.xb{left:96.286500px;}
.xc{left:99.283500px;}
.xd{left:103.535400px;}
.x7{left:516.282900px;}
.xa{left:634.051200px;}
.x5{left:642.301200px;}
.x4{left:705.060000px;}
@media print{
.v2{vertical-align:-25.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:25.200000pt;}
.v4{vertical-align:26.490667pt;}
.v1{vertical-align:33.600000pt;}
.lsa{letter-spacing:-7.626667pt;}
.ls5{letter-spacing:-3.408000pt;}
.ls10{letter-spacing:-1.466667pt;}
.ls3{letter-spacing:-1.248000pt;}
.ls8{letter-spacing:-1.114667pt;}
.ls9{letter-spacing:-0.880000pt;}
.ls12{letter-spacing:-0.176000pt;}
.ls2{letter-spacing:-0.048000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.096000pt;}
.ls11{letter-spacing:0.176000pt;}
.lse{letter-spacing:0.293333pt;}
.lsb{letter-spacing:0.352000pt;}
.lsd{letter-spacing:0.595733pt;}
.lsc{letter-spacing:0.616000pt;}
.ls14{letter-spacing:0.696000pt;}
.ls13{letter-spacing:0.720000pt;}
.ls7{letter-spacing:0.880000pt;}
.lsf{letter-spacing:1.003200pt;}
.ls0{letter-spacing:66.640533pt;}
.ls6{letter-spacing:792.204800pt;}
.wsa{word-spacing:-15.546667pt;}
.ws11f{word-spacing:-15.333333pt;}
.wsa4{word-spacing:-15.018667pt;}
.ws119{word-spacing:-14.960000pt;}
.ws10d{word-spacing:-14.842667pt;}
.ws2{word-spacing:-14.666667pt;}
.wsbd{word-spacing:-13.786667pt;}
.ws55{word-spacing:-13.552000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws135{word-spacing:-12.720000pt;}
.ws5{word-spacing:-12.096000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.952000pt;}
.ws4{word-spacing:-10.752000pt;}
.ws0{word-spacing:-9.800000pt;}
.ws6{word-spacing:-8.592000pt;}
.ws10b{word-spacing:-6.570667pt;}
.ws107{word-spacing:-6.453333pt;}
.wsfe{word-spacing:-6.042667pt;}
.wsfa{word-spacing:-5.221333pt;}
.ws108{word-spacing:-4.986667pt;}
.ws116{word-spacing:-4.576000pt;}
.ws11d{word-spacing:-4.341333pt;}
.ws105{word-spacing:-4.224000pt;}
.wsc8{word-spacing:-3.989333pt;}
.ws59{word-spacing:-3.872000pt;}
.ws1e{word-spacing:-3.813333pt;}
.ws110{word-spacing:-3.754667pt;}
.wse2{word-spacing:-3.696000pt;}
.wsd{word-spacing:-3.578667pt;}
.ws12d{word-spacing:-3.552000pt;}
.ws90{word-spacing:-3.520000pt;}
.ws47{word-spacing:-3.461333pt;}
.ws118{word-spacing:-3.402667pt;}
.ws11c{word-spacing:-3.344000pt;}
.ws101{word-spacing:-3.226667pt;}
.ws10c{word-spacing:-3.109333pt;}
.wsf3{word-spacing:-3.050667pt;}
.ws77{word-spacing:-2.992000pt;}
.ws113{word-spacing:-2.933333pt;}
.ws117{word-spacing:-2.874667pt;}
.ws9a{word-spacing:-2.816000pt;}
.ws83{word-spacing:-2.757333pt;}
.ws7e{word-spacing:-2.698667pt;}
.ws82{word-spacing:-2.640000pt;}
.ws111{word-spacing:-2.581333pt;}
.ws58{word-spacing:-2.522667pt;}
.ws2c{word-spacing:-2.464000pt;}
.ws10{word-spacing:-2.405333pt;}
.ws109{word-spacing:-2.346667pt;}
.wsab{word-spacing:-2.288000pt;}
.ws41{word-spacing:-2.229333pt;}
.wsc5{word-spacing:-2.170667pt;}
.ws31{word-spacing:-2.112000pt;}
.ws3f{word-spacing:-2.053333pt;}
.ws11{word-spacing:-1.994667pt;}
.ws93{word-spacing:-1.936000pt;}
.ws50{word-spacing:-1.877333pt;}
.ws145{word-spacing:-1.872000pt;}
.ws3a{word-spacing:-1.818667pt;}
.wscf{word-spacing:-1.760000pt;}
.wsb8{word-spacing:-1.701333pt;}
.ws126{word-spacing:-1.680000pt;}
.ws89{word-spacing:-1.642667pt;}
.ws155{word-spacing:-1.632000pt;}
.wsc6{word-spacing:-1.584000pt;}
.wsa0{word-spacing:-1.525333pt;}
.ws15e{word-spacing:-1.488000pt;}
.wsc4{word-spacing:-1.466667pt;}
.wse1{word-spacing:-1.408000pt;}
.ws9b{word-spacing:-1.349333pt;}
.ws15c{word-spacing:-1.296000pt;}
.ws64{word-spacing:-1.290667pt;}
.ws151{word-spacing:-1.248000pt;}
.ws11e{word-spacing:-1.232000pt;}
.ws94{word-spacing:-1.173333pt;}
.ws165{word-spacing:-1.152000pt;}
.ws63{word-spacing:-1.114667pt;}
.ws148{word-spacing:-1.104000pt;}
.ws8e{word-spacing:-1.056000pt;}
.wsdc{word-spacing:-0.997333pt;}
.wse0{word-spacing:-0.938667pt;}
.ws15{word-spacing:-0.880000pt;}
.ws52{word-spacing:-0.821333pt;}
.ws121{word-spacing:-0.768000pt;}
.ws5a{word-spacing:-0.762667pt;}
.ws12c{word-spacing:-0.720000pt;}
.ws5d{word-spacing:-0.704000pt;}
.ws152{word-spacing:-0.672000pt;}
.wsd6{word-spacing:-0.645333pt;}
.wseb{word-spacing:-0.586667pt;}
.ws7f{word-spacing:-0.528000pt;}
.ws2b{word-spacing:-0.469333pt;}
.ws8c{word-spacing:-0.410667pt;}
.ws12b{word-spacing:-0.384000pt;}
.ws3e{word-spacing:-0.352000pt;}
.ws131{word-spacing:-0.336000pt;}
.wsc{word-spacing:-0.293333pt;}
.ws160{word-spacing:-0.288000pt;}
.ws81{word-spacing:-0.234667pt;}
.ws130{word-spacing:-0.192000pt;}
.wsb2{word-spacing:-0.176000pt;}
.ws87{word-spacing:-0.117333pt;}
.ws34{word-spacing:-0.058667pt;}
.ws166{word-spacing:-0.048000pt;}
.ws8{word-spacing:0.000000pt;}
.ws161{word-spacing:0.048000pt;}
.ws1d{word-spacing:0.058667pt;}
.wsaf{word-spacing:0.117333pt;}
.ws12f{word-spacing:0.144000pt;}
.wsbb{word-spacing:0.176000pt;}
.ws14f{word-spacing:0.192000pt;}
.ws46{word-spacing:0.234667pt;}
.ws21{word-spacing:0.293333pt;}
.ws13f{word-spacing:0.336000pt;}
.wsc7{word-spacing:0.352000pt;}
.ws7b{word-spacing:0.410667pt;}
.ws1a{word-spacing:0.469333pt;}
.ws13d{word-spacing:0.480000pt;}
.wsb{word-spacing:0.528000pt;}
.ws143{word-spacing:0.576000pt;}
.ws49{word-spacing:0.586667pt;}
.wsca{word-spacing:0.645333pt;}
.wsd8{word-spacing:0.704000pt;}
.ws98{word-spacing:0.762667pt;}
.ws141{word-spacing:0.816000pt;}
.ws11a{word-spacing:0.821333pt;}
.ws66{word-spacing:0.880000pt;}
.ws137{word-spacing:0.912000pt;}
.ws6f{word-spacing:0.938667pt;}
.ws150{word-spacing:0.960000pt;}
.ws60{word-spacing:0.997333pt;}
.wsb5{word-spacing:1.056000pt;}
.ws122{word-spacing:1.104000pt;}
.ws69{word-spacing:1.114667pt;}
.ws149{word-spacing:1.152000pt;}
.ws3d{word-spacing:1.173333pt;}
.ws124{word-spacing:1.200000pt;}
.wsf0{word-spacing:1.232000pt;}
.ws53{word-spacing:1.290667pt;}
.ws154{word-spacing:1.344000pt;}
.ws51{word-spacing:1.349333pt;}
.wsa1{word-spacing:1.408000pt;}
.ws138{word-spacing:1.440000pt;}
.wsaa{word-spacing:1.466667pt;}
.wsac{word-spacing:1.525333pt;}
.ws158{word-spacing:1.536000pt;}
.wsba{word-spacing:1.584000pt;}
.ws35{word-spacing:1.642667pt;}
.wsd7{word-spacing:1.701333pt;}
.ws8d{word-spacing:1.760000pt;}
.ws139{word-spacing:1.776000pt;}
.wse{word-spacing:1.818667pt;}
.ws48{word-spacing:1.877333pt;}
.ws14e{word-spacing:1.920000pt;}
.ws56{word-spacing:1.936000pt;}
.ws156{word-spacing:1.968000pt;}
.wsb3{word-spacing:1.994667pt;}
.ws142{word-spacing:2.016000pt;}
.ws1c{word-spacing:2.053333pt;}
.ws5f{word-spacing:2.112000pt;}
.ws16f{word-spacing:2.160000pt;}
.wsb0{word-spacing:2.170667pt;}
.wsa9{word-spacing:2.229333pt;}
.ws127{word-spacing:2.256000pt;}
.ws7a{word-spacing:2.288000pt;}
.ws120{word-spacing:2.304000pt;}
.wsae{word-spacing:2.346667pt;}
.wsd1{word-spacing:2.405333pt;}
.ws6c{word-spacing:2.464000pt;}
.ws136{word-spacing:2.496000pt;}
.ws76{word-spacing:2.522667pt;}
.ws7d{word-spacing:2.581333pt;}
.ws163{word-spacing:2.592000pt;}
.wsd3{word-spacing:2.640000pt;}
.ws15d{word-spacing:2.688000pt;}
.ws13{word-spacing:2.698667pt;}
.wsfc{word-spacing:2.757333pt;}
.ws15f{word-spacing:2.784000pt;}
.wsde{word-spacing:2.816000pt;}
.ws16d{word-spacing:2.832000pt;}
.wsf2{word-spacing:2.874667pt;}
.ws13e{word-spacing:2.880000pt;}
.ws14{word-spacing:2.933333pt;}
.ws5e{word-spacing:2.992000pt;}
.ws162{word-spacing:3.024000pt;}
.ws2d{word-spacing:3.050667pt;}
.ws61{word-spacing:3.109333pt;}
.ws153{word-spacing:3.120000pt;}
.ws5c{word-spacing:3.168000pt;}
.ws14b{word-spacing:3.216000pt;}
.ws88{word-spacing:3.226667pt;}
.ws144{word-spacing:3.264000pt;}
.ws20{word-spacing:3.285333pt;}
.ws16e{word-spacing:3.312000pt;}
.ws28{word-spacing:3.344000pt;}
.ws1f{word-spacing:3.402667pt;}
.wsc3{word-spacing:3.461333pt;}
.ws8f{word-spacing:3.520000pt;}
.ws12a{word-spacing:3.552000pt;}
.ws6e{word-spacing:3.578667pt;}
.ws13a{word-spacing:3.600000pt;}
.ws4e{word-spacing:3.637333pt;}
.ws3c{word-spacing:3.696000pt;}
.ws16a{word-spacing:3.744000pt;}
.ws18{word-spacing:3.754667pt;}
.wsb4{word-spacing:3.813333pt;}
.ws134{word-spacing:3.840000pt;}
.wsea{word-spacing:3.872000pt;}
.wse4{word-spacing:3.930667pt;}
.ws13b{word-spacing:3.936000pt;}
.wsbf{word-spacing:3.989333pt;}
.ws7c{word-spacing:4.048000pt;}
.ws38{word-spacing:4.106667pt;}
.ws125{word-spacing:4.128000pt;}
.ws1b{word-spacing:4.165333pt;}
.ws16b{word-spacing:4.176000pt;}
.wsf{word-spacing:4.224000pt;}
.ws45{word-spacing:4.282667pt;}
.ws129{word-spacing:4.320000pt;}
.ws5b{word-spacing:4.341333pt;}
.wsa5{word-spacing:4.400000pt;}
.ws4f{word-spacing:4.458667pt;}
.ws6d{word-spacing:4.517333pt;}
.wsa2{word-spacing:4.576000pt;}
.ws168{word-spacing:4.608000pt;}
.wsff{word-spacing:4.634667pt;}
.ws167{word-spacing:4.656000pt;}
.wsdb{word-spacing:4.693333pt;}
.ws2e{word-spacing:4.752000pt;}
.ws36{word-spacing:4.810667pt;}
.ws169{word-spacing:4.848000pt;}
.ws4c{word-spacing:4.869333pt;}
.ws19{word-spacing:4.928000pt;}
.ws3b{word-spacing:4.986667pt;}
.wsad{word-spacing:5.045333pt;}
.ws80{word-spacing:5.104000pt;}
.wse3{word-spacing:5.162667pt;}
.ws115{word-spacing:5.221333pt;}
.ws9f{word-spacing:5.280000pt;}
.ws33{word-spacing:5.338667pt;}
.ws14d{word-spacing:5.376000pt;}
.ws44{word-spacing:5.397333pt;}
.wsb7{word-spacing:5.456000pt;}
.ws71{word-spacing:5.514667pt;}
.ws42{word-spacing:5.573333pt;}
.ws73{word-spacing:5.632000pt;}
.ws99{word-spacing:5.690667pt;}
.ws9e{word-spacing:5.749333pt;}
.ws15a{word-spacing:5.760000pt;}
.wsf9{word-spacing:5.808000pt;}
.ws132{word-spacing:5.856000pt;}
.ws6a{word-spacing:5.866667pt;}
.ws84{word-spacing:5.925333pt;}
.wse7{word-spacing:5.984000pt;}
.ws8a{word-spacing:6.042667pt;}
.ws128{word-spacing:6.096000pt;}
.ws4d{word-spacing:6.101333pt;}
.ws75{word-spacing:6.160000pt;}
.ws157{word-spacing:6.192000pt;}
.ws62{word-spacing:6.218667pt;}
.ws123{word-spacing:6.240000pt;}
.ws22{word-spacing:6.277333pt;}
.ws11b{word-spacing:6.336000pt;}
.ws14c{word-spacing:6.384000pt;}
.wsd2{word-spacing:6.394667pt;}
.ws140{word-spacing:6.432000pt;}
.ws40{word-spacing:6.453333pt;}
.ws27{word-spacing:6.512000pt;}
.ws43{word-spacing:6.570667pt;}
.ws9{word-spacing:6.624000pt;}
.ws74{word-spacing:6.629333pt;}
.ws54{word-spacing:6.688000pt;}
.ws146{word-spacing:6.720000pt;}
.ws8b{word-spacing:6.746667pt;}
.wsa8{word-spacing:6.805333pt;}
.wsc9{word-spacing:6.864000pt;}
.ws32{word-spacing:6.922667pt;}
.wsa3{word-spacing:6.981333pt;}
.ws85{word-spacing:7.040000pt;}
.ws26{word-spacing:7.098667pt;}
.ws86{word-spacing:7.157333pt;}
.ws159{word-spacing:7.200000pt;}
.ws39{word-spacing:7.216000pt;}
.wsc0{word-spacing:7.274667pt;}
.ws2f{word-spacing:7.392000pt;}
.ws92{word-spacing:7.450667pt;}
.ws12{word-spacing:7.509333pt;}
.ws68{word-spacing:7.568000pt;}
.ws25{word-spacing:7.626667pt;}
.ws30{word-spacing:7.685333pt;}
.wsf1{word-spacing:7.744000pt;}
.ws133{word-spacing:7.776000pt;}
.ws6b{word-spacing:7.802667pt;}
.wsd5{word-spacing:7.861333pt;}
.ws104{word-spacing:7.920000pt;}
.wsfd{word-spacing:7.978667pt;}
.ws97{word-spacing:8.037333pt;}
.wsdd{word-spacing:8.096000pt;}
.wsa7{word-spacing:8.154667pt;}
.ws37{word-spacing:8.213333pt;}
.ws91{word-spacing:8.272000pt;}
.wsb6{word-spacing:8.330667pt;}
.ws70{word-spacing:8.389333pt;}
.ws9c{word-spacing:8.448000pt;}
.ws23{word-spacing:8.506667pt;}
.ws112{word-spacing:8.624000pt;}
.ws96{word-spacing:8.682667pt;}
.wscd{word-spacing:8.741333pt;}
.ws95{word-spacing:8.800000pt;}
.wse6{word-spacing:8.858667pt;}
.ws102{word-spacing:8.917333pt;}
.wsf5{word-spacing:9.034667pt;}
.ws2a{word-spacing:9.093333pt;}
.ws24{word-spacing:9.152000pt;}
.ws79{word-spacing:9.210667pt;}
.ws57{word-spacing:9.269333pt;}
.ws147{word-spacing:9.360000pt;}
.ws114{word-spacing:9.386667pt;}
.ws67{word-spacing:9.445333pt;}
.wsdf{word-spacing:9.504000pt;}
.ws164{word-spacing:9.552000pt;}
.ws100{word-spacing:9.562667pt;}
.wsfb{word-spacing:9.797333pt;}
.ws14a{word-spacing:9.840000pt;}
.wsbe{word-spacing:9.856000pt;}
.wsd4{word-spacing:9.973333pt;}
.wse5{word-spacing:10.149333pt;}
.wse8{word-spacing:10.325333pt;}
.ws4a{word-spacing:10.560000pt;}
.wsce{word-spacing:10.677333pt;}
.ws13c{word-spacing:10.704000pt;}
.ws29{word-spacing:10.736000pt;}
.wsf6{word-spacing:10.794667pt;}
.ws9d{word-spacing:10.853333pt;}
.wsb9{word-spacing:10.912000pt;}
.wsa6{word-spacing:11.146667pt;}
.wsd0{word-spacing:11.205333pt;}
.wsc2{word-spacing:11.264000pt;}
.ws17{word-spacing:11.322667pt;}
.ws78{word-spacing:11.381333pt;}
.wsc1{word-spacing:11.674667pt;}
.wsed{word-spacing:11.968000pt;}
.ws103{word-spacing:12.202667pt;}
.wsec{word-spacing:12.320000pt;}
.wsf4{word-spacing:12.378667pt;}
.ws4b{word-spacing:13.024000pt;}
.wscb{word-spacing:13.141333pt;}
.ws10a{word-spacing:13.317333pt;}
.ws65{word-spacing:13.669333pt;}
.ws16c{word-spacing:13.728000pt;}
.wscc{word-spacing:13.845333pt;}
.wsd9{word-spacing:14.138667pt;}
.ws10e{word-spacing:14.256000pt;}
.ws16{word-spacing:14.725333pt;}
.wse9{word-spacing:15.136000pt;}
.ws10f{word-spacing:15.194667pt;}
.wsda{word-spacing:15.429333pt;}
.ws106{word-spacing:15.488000pt;}
.ws12e{word-spacing:15.600000pt;}
.ws72{word-spacing:15.605333pt;}
.wsee{word-spacing:15.781333pt;}
.wsf7{word-spacing:16.192000pt;}
.wsef{word-spacing:16.720000pt;}
.wsb1{word-spacing:16.954667pt;}
.ws15b{word-spacing:17.856000pt;}
.wsf8{word-spacing:23.349333pt;}
.wsbc{word-spacing:748.204800pt;}
._16{margin-left:-1534.246400pt;}
._2b{margin-left:-38.544000pt;}
._27{margin-left:-31.240533pt;}
._26{margin-left:-30.342400pt;}
._24{margin-left:-29.129600pt;}
._28{margin-left:-27.844267pt;}
._11{margin-left:-26.910933pt;}
._1f{margin-left:-25.179733pt;}
._15{margin-left:-23.261867pt;}
._1b{margin-left:-21.765333pt;}
._1e{margin-left:-20.806400pt;}
._25{margin-left:-19.477333pt;}
._f{margin-left:-18.128000pt;}
._e{margin-left:-16.903467pt;}
._19{margin-left:-15.969067pt;}
._18{margin-left:-14.920533pt;}
._9{margin-left:-13.544533pt;}
._1c{margin-left:-12.525867pt;}
._1a{margin-left:-11.158400pt;}
._2c{margin-left:-9.238400pt;}
._17{margin-left:-7.860267pt;}
._14{margin-left:-6.953067pt;}
._1d{margin-left:-6.001600pt;}
._8{margin-left:-4.909867pt;}
._5{margin-left:-3.404800pt;}
._0{margin-left:-2.393600pt;}
._3{margin-left:-0.908800pt;}
._a{width:0.933333pt;}
._1{width:1.894400pt;}
._b{width:2.874133pt;}
._c{width:3.865067pt;}
._4{width:5.256533pt;}
._d{width:6.792533pt;}
._2{width:7.697067pt;}
._13{width:8.752533pt;}
._6{width:9.950133pt;}
._22{width:11.164800pt;}
._2a{width:12.438400pt;}
._29{width:13.630933pt;}
._23{width:14.603733pt;}
._10{width:16.133333pt;}
._2d{width:17.607467pt;}
._12{width:20.153067pt;}
._20{width:23.050133pt;}
._21{width:24.082667pt;}
._7{width:27.832533pt;}
._2e{width:28.922667pt;}
.fsa{font-size:24.960000pt;}
.fs6{font-size:37.333333pt;}
.fs4{font-size:39.200000pt;}
.fsb{font-size:41.066667pt;}
.fs0{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs3{font-size:52.266667pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:56.000000pt;}
.fs8{font-size:58.666667pt;}
.fsc{font-size:61.333333pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:40.413867pt;}
.y2{bottom:51.639067pt;}
.y23{bottom:53.075200pt;}
.y1{bottom:64.300400pt;}
.y7e{bottom:82.384267pt;}
.y14e{bottom:84.804267pt;}
.y106{bottom:85.053600pt;}
.y188{bottom:87.046400pt;}
.y50{bottom:90.260267pt;}
.ybf{bottom:90.282933pt;}
.y125{bottom:91.345600pt;}
.yde{bottom:92.929600pt;}
.ya1{bottom:98.136267pt;}
.y21{bottom:98.955733pt;}
.y7d{bottom:99.720267pt;}
.y187{bottom:100.378400pt;}
.y105{bottom:102.389600pt;}
.y4f{bottom:107.596267pt;}
.ybe{bottom:107.618933pt;}
.y124{bottom:108.681600pt;}
.ydd{bottom:110.265600pt;}
.y14d{bottom:111.468267pt;}
.y20{bottom:112.287733pt;}
.y186{bottom:113.710400pt;}
.ya0{bottom:115.472267pt;}
.y7c{bottom:117.056267pt;}
.y104{bottom:119.725600pt;}
.y14c{bottom:124.800267pt;}
.y4e{bottom:124.932267pt;}
.ybd{bottom:124.954933pt;}
.y123{bottom:126.017600pt;}
.y185{bottom:127.042400pt;}
.ydc{bottom:127.601600pt;}
.y9f{bottom:132.808267pt;}
.y1f{bottom:134.043733pt;}
.y7b{bottom:134.392267pt;}
.y103{bottom:137.061600pt;}
.y14b{bottom:138.132267pt;}
.y184{bottom:140.374400pt;}
.y4d{bottom:142.268267pt;}
.ybc{bottom:142.290933pt;}
.y122{bottom:143.353600pt;}
.ydb{bottom:144.937600pt;}
.y1e{bottom:148.707733pt;}
.y9e{bottom:150.144267pt;}
.y14a{bottom:151.464267pt;}
.y7a{bottom:151.728267pt;}
.y183{bottom:153.706400pt;}
.y102{bottom:154.397600pt;}
.y4c{bottom:159.604267pt;}
.ybb{bottom:159.626933pt;}
.y121{bottom:160.689600pt;}
.yda{bottom:162.273600pt;}
.y149{bottom:164.796267pt;}
.y182{bottom:167.038400pt;}
.y9d{bottom:167.480267pt;}
.y79{bottom:169.064267pt;}
.y101{bottom:171.733600pt;}
.y4b{bottom:176.940267pt;}
.yba{bottom:176.962933pt;}
.y120{bottom:178.025600pt;}
.y148{bottom:178.128267pt;}
.yd9{bottom:179.609600pt;}
.y181{bottom:180.370400pt;}
.y9c{bottom:184.816267pt;}
.y78{bottom:186.400267pt;}
.y100{bottom:189.069600pt;}
.y147{bottom:191.460267pt;}
.y180{bottom:193.702400pt;}
.y4a{bottom:194.276267pt;}
.yb9{bottom:194.298933pt;}
.y11f{bottom:195.361600pt;}
.yd8{bottom:196.945600pt;}
.y9b{bottom:202.152267pt;}
.y77{bottom:203.736267pt;}
.y146{bottom:204.792267pt;}
.yff{bottom:206.405600pt;}
.y17f{bottom:207.034400pt;}
.y49{bottom:211.612267pt;}
.yb8{bottom:211.634933pt;}
.y11e{bottom:212.697600pt;}
.yd7{bottom:214.281600pt;}
.y145{bottom:218.124267pt;}
.y9a{bottom:219.488267pt;}
.y17e{bottom:220.366400pt;}
.y76{bottom:221.072267pt;}
.yfe{bottom:223.741600pt;}
.y48{bottom:228.948267pt;}
.yb7{bottom:228.970933pt;}
.y11d{bottom:230.033600pt;}
.y144{bottom:231.456267pt;}
.yd6{bottom:231.617600pt;}
.y1b{bottom:232.050800pt;}
.y17d{bottom:233.698400pt;}
.y99{bottom:236.824267pt;}
.y75{bottom:238.408267pt;}
.yfd{bottom:241.077600pt;}
.y143{bottom:244.788267pt;}
.y47{bottom:246.284267pt;}
.yb6{bottom:246.306933pt;}
.y17c{bottom:247.030400pt;}
.y11c{bottom:247.369600pt;}
.yd5{bottom:248.953600pt;}
.y1a{bottom:249.386800pt;}
.y98{bottom:254.160267pt;}
.y74{bottom:255.744267pt;}
.y142{bottom:258.120267pt;}
.yfc{bottom:258.413600pt;}
.y17b{bottom:260.362400pt;}
.y46{bottom:263.620267pt;}
.yb5{bottom:263.642933pt;}
.y11b{bottom:264.705600pt;}
.yd4{bottom:266.289600pt;}
.y19{bottom:266.722800pt;}
.y141{bottom:271.452267pt;}
.y97{bottom:271.496267pt;}
.y73{bottom:273.080267pt;}
.y17a{bottom:273.694400pt;}
.yfb{bottom:275.749600pt;}
.y45{bottom:280.956267pt;}
.yb4{bottom:280.978933pt;}
.y11a{bottom:282.041600pt;}
.yd3{bottom:283.625600pt;}
.y140{bottom:284.784267pt;}
.y179{bottom:287.026400pt;}
.y96{bottom:288.832267pt;}
.y72{bottom:290.416267pt;}
.yfa{bottom:293.085600pt;}
.y13f{bottom:298.116267pt;}
.y44{bottom:298.292267pt;}
.yb3{bottom:298.314933pt;}
.y119{bottom:299.377600pt;}
.y178{bottom:300.358400pt;}
.yd2{bottom:300.961600pt;}
.y95{bottom:306.168267pt;}
.y71{bottom:307.752267pt;}
.yf9{bottom:310.421600pt;}
.y13e{bottom:311.448267pt;}
.y177{bottom:313.690400pt;}
.y43{bottom:315.628267pt;}
.yb2{bottom:315.650933pt;}
.y118{bottom:316.713600pt;}
.yd1{bottom:318.297600pt;}
.y18{bottom:319.384400pt;}
.y94{bottom:323.504267pt;}
.y13d{bottom:324.780267pt;}
.y70{bottom:325.088267pt;}
.y176{bottom:327.022400pt;}
.yf8{bottom:327.757600pt;}
.y42{bottom:332.964267pt;}
.yb1{bottom:332.986933pt;}
.y117{bottom:334.049600pt;}
.yd0{bottom:335.633600pt;}
.y13c{bottom:338.112267pt;}
.y175{bottom:340.354400pt;}
.y93{bottom:340.840267pt;}
.y6f{bottom:342.424267pt;}
.y17{bottom:343.704400pt;}
.yf7{bottom:345.093600pt;}
.y41{bottom:350.300267pt;}
.yb0{bottom:350.322933pt;}
.y116{bottom:351.385600pt;}
.y13b{bottom:351.444267pt;}
.ycf{bottom:352.969600pt;}
.y174{bottom:353.686400pt;}
.y92{bottom:358.176267pt;}
.y16{bottom:359.704400pt;}
.y6e{bottom:359.760267pt;}
.yf6{bottom:362.429600pt;}
.y13a{bottom:364.776267pt;}
.y173{bottom:367.018400pt;}
.y40{bottom:367.636267pt;}
.yaf{bottom:367.658933pt;}
.y115{bottom:368.721600pt;}
.yce{bottom:370.305600pt;}
.y91{bottom:375.512267pt;}
.y15{bottom:375.704400pt;}
.y6d{bottom:377.096267pt;}
.y139{bottom:378.108267pt;}
.yf5{bottom:379.765600pt;}
.y172{bottom:380.350400pt;}
.y3f{bottom:384.972267pt;}
.yae{bottom:384.994933pt;}
.y114{bottom:386.057600pt;}
.ycd{bottom:387.641600pt;}
.y138{bottom:391.440267pt;}
.y14{bottom:391.704400pt;}
.y90{bottom:392.848267pt;}
.y171{bottom:393.682400pt;}
.y6c{bottom:394.432267pt;}
.yf4{bottom:397.101600pt;}
.y3e{bottom:402.308267pt;}
.yad{bottom:402.330933pt;}
.y113{bottom:403.393600pt;}
.y137{bottom:404.772267pt;}
.ycc{bottom:404.977600pt;}
.y170{bottom:407.014400pt;}
.y13{bottom:407.704400pt;}
.y8f{bottom:410.184267pt;}
.y6b{bottom:411.768267pt;}
.yf3{bottom:414.437600pt;}
.y136{bottom:418.104267pt;}
.y3d{bottom:419.644267pt;}
.yac{bottom:419.666933pt;}
.y16f{bottom:420.346400pt;}
.y112{bottom:420.729600pt;}
.ycb{bottom:422.313600pt;}
.y12{bottom:423.704400pt;}
.y8e{bottom:427.520267pt;}
.y6a{bottom:429.104267pt;}
.y135{bottom:431.436267pt;}
.yf2{bottom:431.773600pt;}
.y16e{bottom:433.678400pt;}
.y3c{bottom:436.980267pt;}
.yab{bottom:437.002933pt;}
.y111{bottom:438.065600pt;}
.yca{bottom:439.649600pt;}
.y11{bottom:439.704400pt;}
.y134{bottom:444.768267pt;}
.y8d{bottom:444.856267pt;}
.y69{bottom:446.440267pt;}
.y16d{bottom:447.010400pt;}
.yf1{bottom:449.109600pt;}
.y3b{bottom:454.316267pt;}
.yaa{bottom:454.338933pt;}
.y110{bottom:455.401600pt;}
.y10{bottom:455.704400pt;}
.yc9{bottom:456.985600pt;}
.y16c{bottom:460.342400pt;}
.y8c{bottom:462.192267pt;}
.y68{bottom:463.776267pt;}
.yf0{bottom:466.445600pt;}
.y133{bottom:471.434933pt;}
.y3a{bottom:471.652267pt;}
.yf{bottom:471.704400pt;}
.y10f{bottom:472.737600pt;}
.y16b{bottom:473.674400pt;}
.yc8{bottom:474.321600pt;}
.y8b{bottom:479.528267pt;}
.y67{bottom:481.112267pt;}
.yef{bottom:483.781600pt;}
.y16a{bottom:487.006400pt;}
.ye{bottom:487.704400pt;}
.y39{bottom:488.988267pt;}
.ya9{bottom:489.010933pt;}
.y10e{bottom:490.073600pt;}
.yc7{bottom:491.657600pt;}
.y8a{bottom:496.864267pt;}
.y66{bottom:498.448267pt;}
.y169{bottom:500.338400pt;}
.yee{bottom:501.117600pt;}
.yd{bottom:503.704400pt;}
.y132{bottom:504.502933pt;}
.y38{bottom:506.324267pt;}
.ya8{bottom:506.346933pt;}
.y10d{bottom:507.409600pt;}
.yc6{bottom:508.993600pt;}
.y168{bottom:513.670400pt;}
.y89{bottom:514.200267pt;}
.y65{bottom:515.784267pt;}
.y131{bottom:517.834933pt;}
.yed{bottom:518.453600pt;}
.yc{bottom:519.704400pt;}
.y37{bottom:523.660267pt;}
.ya7{bottom:523.682933pt;}
.y10c{bottom:524.745600pt;}
.yc5{bottom:526.329600pt;}
.y167{bottom:527.002400pt;}
.y88{bottom:531.536267pt;}
.y64{bottom:533.120267pt;}
.yb{bottom:535.704400pt;}
.yec{bottom:535.789600pt;}
.y166{bottom:540.334400pt;}
.y36{bottom:540.996267pt;}
.ya6{bottom:541.018933pt;}
.yc4{bottom:543.665600pt;}
.y130{bottom:544.501600pt;}
.y87{bottom:548.872267pt;}
.y63{bottom:550.456267pt;}
.y10b{bottom:551.541600pt;}
.ya{bottom:551.704400pt;}
.yeb{bottom:553.125600pt;}
.y165{bottom:553.666400pt;}
.y35{bottom:558.332267pt;}
.ya5{bottom:558.354933pt;}
.yc3{bottom:561.001600pt;}
.y86{bottom:566.208267pt;}
.y164{bottom:566.998400pt;}
.y9{bottom:567.704400pt;}
.y62{bottom:567.792267pt;}
.yea{bottom:570.461600pt;}
.y34{bottom:575.668267pt;}
.ya4{bottom:575.690933pt;}
.yc2{bottom:578.337600pt;}
.y163{bottom:580.330400pt;}
.y85{bottom:583.544267pt;}
.y8{bottom:583.704400pt;}
.y61{bottom:585.128267pt;}
.ye9{bottom:587.797600pt;}
.y12f{bottom:587.842933pt;}
.y33{bottom:593.004267pt;}
.ya3{bottom:593.026933pt;}
.y162{bottom:593.662400pt;}
.yc1{bottom:595.673600pt;}
.y7{bottom:599.704400pt;}
.y84{bottom:600.880267pt;}
.y60{bottom:602.464267pt;}
.y12e{bottom:602.506933pt;}
.ye8{bottom:605.133600pt;}
.y161{bottom:606.994400pt;}
.y32{bottom:610.340267pt;}
.ya2{bottom:610.362933pt;}
.y12d{bottom:617.170933pt;}
.y83{bottom:618.216267pt;}
.y5f{bottom:619.800267pt;}
.y160{bottom:620.326400pt;}
.yc0{bottom:622.469600pt;}
.y31{bottom:627.676267pt;}
.y12c{bottom:631.834933pt;}
.y15f{bottom:633.658400pt;}
.y82{bottom:635.552267pt;}
.y6{bottom:635.610667pt;}
.y5e{bottom:637.136267pt;}
.ye7{bottom:639.805600pt;}
.y30{bottom:645.012267pt;}
.y15e{bottom:646.990400pt;}
.y5{bottom:650.646133pt;}
.y81{bottom:652.888267pt;}
.y5d{bottom:654.472267pt;}
.y12b{bottom:655.168267pt;}
.ye6{bottom:657.141600pt;}
.y15d{bottom:660.322400pt;}
.y2f{bottom:662.348267pt;}
.y80{bottom:670.224267pt;}
.y5c{bottom:671.808267pt;}
.y15c{bottom:673.654400pt;}
.ye5{bottom:674.477600pt;}
.y2e{bottom:679.684267pt;}
.y15b{bottom:686.986400pt;}
.y7f{bottom:687.560267pt;}
.y5b{bottom:689.144267pt;}
.ye4{bottom:691.813600pt;}
.y2d{bottom:697.020267pt;}
.y12a{bottom:699.176267pt;}
.y15a{bottom:700.318400pt;}
.y10a{bottom:704.896267pt;}
.y5a{bottom:706.480267pt;}
.ye3{bottom:709.149600pt;}
.y159{bottom:713.650400pt;}
.y129{bottom:713.840267pt;}
.y2c{bottom:714.356267pt;}
.y109{bottom:722.232267pt;}
.y59{bottom:723.816267pt;}
.ye2{bottom:726.485600pt;}
.y158{bottom:726.982400pt;}
.y128{bottom:728.504267pt;}
.y2b{bottom:731.692267pt;}
.y108{bottom:739.568267pt;}
.y157{bottom:740.314400pt;}
.y58{bottom:741.152267pt;}
.y127{bottom:743.168267pt;}
.ye1{bottom:743.821600pt;}
.y4{bottom:746.753600pt;}
.y2a{bottom:749.028267pt;}
.y156{bottom:753.646400pt;}
.y107{bottom:756.904267pt;}
.y57{bottom:758.488267pt;}
.ye0{bottom:761.157600pt;}
.y29{bottom:766.364267pt;}
.y126{bottom:766.501600pt;}
.y155{bottom:766.978400pt;}
.y3{bottom:769.413600pt;}
.y56{bottom:775.824267pt;}
.ydf{bottom:778.493600pt;}
.y154{bottom:780.310400pt;}
.y28{bottom:783.700267pt;}
.y55{bottom:793.160267pt;}
.y153{bottom:793.642400pt;}
.y27{bottom:801.036267pt;}
.y152{bottom:806.974400pt;}
.y54{bottom:810.496267pt;}
.y26{bottom:818.372267pt;}
.y151{bottom:820.306400pt;}
.y53{bottom:827.832267pt;}
.y150{bottom:833.638400pt;}
.y25{bottom:845.168267pt;}
.y14f{bottom:846.970400pt;}
.y1d{bottom:865.443733pt;}
.y52{bottom:874.560933pt;}
.y22{bottom:874.561067pt;}
.y1c{bottom:878.775733pt;}
.y51{bottom:911.173333pt;}
.hb{height:24.496875pt;}
.h5{height:27.217969pt;}
.h2{height:29.625000pt;}
.he{height:32.367188pt;}
.h8{height:33.328125pt;}
.h6{height:37.031250pt;}
.h9{height:40.476562pt;}
.h7{height:40.734375pt;}
.hd{height:42.316406pt;}
.hc{height:55.004729pt;}
.h3{height:55.195312pt;}
.h4{height:69.660938pt;}
.ha{height:929.760000pt;}
.h0{height:929.764000pt;}
.h1{height:930.000000pt;}
.w1{width:646.000000pt;}
.w2{width:646.293333pt;}
.w0{width:646.298667pt;}
.x0{left:0.000000pt;}
.x8{left:64.252000pt;}
.x1{left:68.031467pt;}
.x6{left:71.835467pt;}
.x9{left:77.584000pt;}
.x3{left:81.348800pt;}
.x2{left:83.149600pt;}
.xb{left:85.588000pt;}
.xc{left:88.252000pt;}
.xd{left:92.031467pt;}
.x7{left:458.918133pt;}
.xa{left:563.601067pt;}
.x5{left:570.934400pt;}
.x4{left:626.720000pt;}
}




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