
    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_c338c3eb909f49e58fff717e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_65d47cb1c7aa25fac1f74fcb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_65798aa40845ecc4360b384d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.748000;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_a6aad44c2f97d55430d93384.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_632e5cda3a2501de8d6da118.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.733000;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_4ec387a94101f1bbb5627d82.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.748000;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_4ec387a94101f1bbb5627d82.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.748000;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_23f1dd801baa1d7e0a062305.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_59459f646d444017b48da8aa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.733000;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_a14a8f44ebba56d4bd4448c8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.927000;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_d4ca8fa8c0c22f2ac6c9ab69.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.941000;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_65798aa40845ecc4360b384d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.748000;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_4ec387a94101f1bbb5627d82.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.748000;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_b2a5f5f378f0dab7154fc86d.woff2')format("woff");}.fff{font-family:fff;line-height:0.941000;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_926058e5aa9a18d5a2929035.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.941000;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_b2a5f5f378f0dab7154fc86d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.941000;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_b2a5f5f378f0dab7154fc86d.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.941000;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_1c823c07fb2bc20850b4ac65.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938000;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;}
.m3{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,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);}
.v3{vertical-align:-39.118200px;}
.v2{vertical-align:-17.820000px;}
.v4{vertical-align:-4.410000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.820000px;}
.ls12{letter-spacing:-2.700000px;}
.ls24{letter-spacing:-1.890000px;}
.ls29{letter-spacing:-1.596000px;}
.ls31{letter-spacing:-1.386000px;}
.ls23{letter-spacing:-1.218000px;}
.ls30{letter-spacing:-1.008000px;}
.ls8{letter-spacing:-0.966000px;}
.ls9{letter-spacing:-0.540000px;}
.ls20{letter-spacing:-0.504000px;}
.ls14{letter-spacing:-0.432000px;}
.ls27{letter-spacing:-0.336000px;}
.ls16{letter-spacing:-0.270000px;}
.lsa{letter-spacing:-0.216000px;}
.ls1e{letter-spacing:-0.168000px;}
.ls2a{letter-spacing:-0.126000px;}
.lsb{letter-spacing:-0.108000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.132000px;}
.lsf{letter-spacing:0.162000px;}
.ls2c{letter-spacing:0.210000px;}
.ls19{letter-spacing:0.270000px;}
.ls13{letter-spacing:0.324000px;}
.ls25{letter-spacing:0.336000px;}
.ls2b{letter-spacing:0.378000px;}
.lsc{letter-spacing:0.432000px;}
.ls1c{letter-spacing:0.462000px;}
.lsd{letter-spacing:0.486000px;}
.ls21{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.594000px;}
.ls2{letter-spacing:0.600000px;}
.ls1f{letter-spacing:0.630000px;}
.ls15{letter-spacing:0.648000px;}
.ls1{letter-spacing:0.660000px;}
.ls1b{letter-spacing:0.672000px;}
.ls18{letter-spacing:0.702000px;}
.ls10{letter-spacing:0.714000px;}
.ls7{letter-spacing:0.756000px;}
.ls1a{letter-spacing:0.793800px;}
.ls6{letter-spacing:0.798000px;}
.lse{letter-spacing:0.810000px;}
.ls1d{letter-spacing:0.840000px;}
.ls28{letter-spacing:0.882000px;}
.ls22{letter-spacing:0.924000px;}
.ls26{letter-spacing:0.966000px;}
.ls17{letter-spacing:0.972000px;}
.ls11{letter-spacing:1.026000px;}
.ls2f{letter-spacing:1.302000px;}
.ls2e{letter-spacing:1.386000px;}
.ls2d{letter-spacing:1.764000px;}
.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;}
}
.wsb9{word-spacing:-15.660000px;}
.ws8e{word-spacing:-15.444000px;}
.ws58{word-spacing:-15.336000px;}
.ws6{word-spacing:-15.174000px;}
.wsb8{word-spacing:-15.012000px;}
.ws59{word-spacing:-14.580000px;}
.ws10e{word-spacing:-13.440000px;}
.ws110{word-spacing:-13.062000px;}
.ws112{word-spacing:-12.978000px;}
.ws107{word-spacing:-12.642000px;}
.ws111{word-spacing:-12.558000px;}
.ws10c{word-spacing:-12.516000px;}
.ws3{word-spacing:-12.474000px;}
.ws56{word-spacing:-12.432000px;}
.ws109{word-spacing:-12.390000px;}
.ws57{word-spacing:-12.312000px;}
.ws103{word-spacing:-12.138000px;}
.ws10f{word-spacing:-12.054000px;}
.ws10d{word-spacing:-11.886000px;}
.wsba{word-spacing:-11.705357px;}
.ws5a{word-spacing:-11.676124px;}
.ws4{word-spacing:-11.676000px;}
.ws10b{word-spacing:-11.550000px;}
.ws104{word-spacing:-11.508000px;}
.ws108{word-spacing:-11.340000px;}
.ws105{word-spacing:-11.172000px;}
.ws113{word-spacing:-10.668000px;}
.ws106{word-spacing:-10.458000px;}
.ws114{word-spacing:-10.290000px;}
.ws10a{word-spacing:-10.080000px;}
.ws5{word-spacing:-8.706960px;}
.ws9f{word-spacing:-3.510000px;}
.wsd6{word-spacing:-3.078000px;}
.ws63{word-spacing:-3.024000px;}
.wsa9{word-spacing:-2.970000px;}
.ws98{word-spacing:-2.916000px;}
.ws8b{word-spacing:-2.862000px;}
.wsf2{word-spacing:-2.808000px;}
.ws92{word-spacing:-2.754000px;}
.wsd2{word-spacing:-2.700000px;}
.wsc6{word-spacing:-2.646000px;}
.ws4d{word-spacing:-2.592000px;}
.ws5d{word-spacing:-2.538000px;}
.ws2c{word-spacing:-2.520000px;}
.wse3{word-spacing:-2.484000px;}
.wsfa{word-spacing:-2.430000px;}
.wsde{word-spacing:-2.322000px;}
.ws132{word-spacing:-2.142000px;}
.wsfb{word-spacing:-2.106000px;}
.ws11c{word-spacing:-2.100000px;}
.ws12e{word-spacing:-2.058000px;}
.wsa6{word-spacing:-2.052000px;}
.ws117{word-spacing:-2.016000px;}
.ws47{word-spacing:-1.998000px;}
.ws2b{word-spacing:-1.980000px;}
.ws123{word-spacing:-1.974000px;}
.ws3b{word-spacing:-1.944000px;}
.ws30{word-spacing:-1.932000px;}
.ws5e{word-spacing:-1.890000px;}
.wscd{word-spacing:-1.836000px;}
.ws11a{word-spacing:-1.806000px;}
.wsc5{word-spacing:-1.728000px;}
.ws124{word-spacing:-1.596000px;}
.ws127{word-spacing:-1.554000px;}
.ws2a{word-spacing:-1.512000px;}
.ws72{word-spacing:-1.458000px;}
.ws65{word-spacing:-1.404000px;}
.ws137{word-spacing:-1.386000px;}
.wsca{word-spacing:-1.350000px;}
.ws125{word-spacing:-1.260000px;}
.wse1{word-spacing:-1.242000px;}
.ws4e{word-spacing:-1.188000px;}
.ws31{word-spacing:-1.176000px;}
.ws13f{word-spacing:-1.134000px;}
.ws54{word-spacing:-1.092000px;}
.wsd5{word-spacing:-1.026000px;}
.ws115{word-spacing:-1.008000px;}
.wse2{word-spacing:-0.972000px;}
.wsa5{word-spacing:-0.918000px;}
.ws8c{word-spacing:-0.864000px;}
.ws128{word-spacing:-0.840000px;}
.ws2d{word-spacing:-0.756000px;}
.ws1{word-spacing:-0.720000px;}
.ws3c{word-spacing:-0.702000px;}
.ws129{word-spacing:-0.672000px;}
.ws2{word-spacing:-0.660000px;}
.wsd1{word-spacing:-0.594000px;}
.ws116{word-spacing:-0.546000px;}
.wsce{word-spacing:-0.540000px;}
.ws11b{word-spacing:-0.504000px;}
.wsdd{word-spacing:-0.486000px;}
.wsc1{word-spacing:-0.432000px;}
.ws146{word-spacing:-0.420000px;}
.wsf9{word-spacing:-0.378000px;}
.ws3e{word-spacing:-0.324000px;}
.wsb7{word-spacing:-0.294000px;}
.ws28{word-spacing:-0.270000px;}
.ws3d{word-spacing:-0.216000px;}
.ws32{word-spacing:-0.210000px;}
.ws66{word-spacing:-0.162000px;}
.wsf3{word-spacing:-0.108000px;}
.wsf{word-spacing:-0.054000px;}
.ws136{word-spacing:-0.042000px;}
.ws0{word-spacing:0.000000px;}
.ws48{word-spacing:0.054000px;}
.ws7a{word-spacing:0.162000px;}
.ws118{word-spacing:0.210000px;}
.ws16{word-spacing:0.216000px;}
.ws143{word-spacing:0.252000px;}
.ws67{word-spacing:0.270000px;}
.wsa7{word-spacing:0.324000px;}
.ws8d{word-spacing:0.432000px;}
.ws144{word-spacing:0.462000px;}
.ws6d{word-spacing:0.486000px;}
.ws135{word-spacing:0.504000px;}
.ws64{word-spacing:0.540000px;}
.ws60{word-spacing:0.546000px;}
.wsc3{word-spacing:0.594000px;}
.ws11d{word-spacing:0.714000px;}
.ws13{word-spacing:0.756000px;}
.ws101{word-spacing:0.810000px;}
.ws13e{word-spacing:0.918000px;}
.wsb0{word-spacing:0.972000px;}
.wsb{word-spacing:1.026000px;}
.ws18{word-spacing:1.080000px;}
.ws51{word-spacing:1.134000px;}
.wsa1{word-spacing:1.188000px;}
.ws119{word-spacing:1.218000px;}
.wsdf{word-spacing:1.242000px;}
.ws4a{word-spacing:1.296000px;}
.ws2f{word-spacing:1.302000px;}
.ws15{word-spacing:1.350000px;}
.ws82{word-spacing:1.404000px;}
.ws1a{word-spacing:1.458000px;}
.ws91{word-spacing:1.566000px;}
.ws22{word-spacing:1.620000px;}
.wsb2{word-spacing:1.728000px;}
.wscc{word-spacing:1.764000px;}
.wsb1{word-spacing:1.782000px;}
.ws90{word-spacing:1.806000px;}
.ws24{word-spacing:1.836000px;}
.ws79{word-spacing:1.890000px;}
.ws4b{word-spacing:1.944000px;}
.wsf1{word-spacing:1.974000px;}
.ws102{word-spacing:2.058000px;}
.ws2e{word-spacing:2.100000px;}
.wsc9{word-spacing:2.106000px;}
.wsc2{word-spacing:2.160000px;}
.ws55{word-spacing:2.184000px;}
.ws7d{word-spacing:2.322000px;}
.ws75{word-spacing:2.352000px;}
.ws7e{word-spacing:2.376000px;}
.ws9{word-spacing:2.430000px;}
.wsa8{word-spacing:2.484000px;}
.ws53{word-spacing:2.520000px;}
.wsb4{word-spacing:2.538000px;}
.wsb3{word-spacing:2.592000px;}
.ws8a{word-spacing:2.646000px;}
.ws50{word-spacing:2.688000px;}
.ws7b{word-spacing:2.700000px;}
.ws11f{word-spacing:2.730000px;}
.ws9e{word-spacing:2.754000px;}
.ws6c{word-spacing:2.916000px;}
.ws100{word-spacing:2.970000px;}
.ws140{word-spacing:3.024000px;}
.ws80{word-spacing:3.078000px;}
.ws12a{word-spacing:3.150000px;}
.wsc7{word-spacing:3.240000px;}
.ws9c{word-spacing:3.294000px;}
.wse0{word-spacing:3.348000px;}
.ws6a{word-spacing:3.402000px;}
.ws70{word-spacing:3.456000px;}
.wsea{word-spacing:3.510000px;}
.ws38{word-spacing:3.564000px;}
.ws133{word-spacing:3.570000px;}
.ws1c{word-spacing:3.618000px;}
.ws12c{word-spacing:3.654000px;}
.wsf8{word-spacing:3.726000px;}
.ws68{word-spacing:3.780000px;}
.ws6e{word-spacing:3.834000px;}
.ws34{word-spacing:3.888000px;}
.ws49{word-spacing:3.942000px;}
.ws81{word-spacing:3.996000px;}
.ws1e{word-spacing:4.050000px;}
.ws29{word-spacing:4.104000px;}
.ws71{word-spacing:4.158000px;}
.ws149{word-spacing:4.242000px;}
.ws89{word-spacing:4.266000px;}
.ws4f{word-spacing:4.320000px;}
.ws12b{word-spacing:4.368000px;}
.ws7c{word-spacing:4.374000px;}
.ws93{word-spacing:4.428000px;}
.ws23{word-spacing:4.482000px;}
.wse6{word-spacing:4.536000px;}
.ws42{word-spacing:4.590000px;}
.ws130{word-spacing:4.620000px;}
.wsd{word-spacing:4.644000px;}
.ws78{word-spacing:4.698000px;}
.ws19{word-spacing:4.752000px;}
.ws3a{word-spacing:4.806000px;}
.ws131{word-spacing:4.830000px;}
.ws35{word-spacing:4.860000px;}
.wsf0{word-spacing:4.872000px;}
.ws145{word-spacing:4.914000px;}
.ws77{word-spacing:4.968000px;}
.wsc{word-spacing:5.022000px;}
.ws147{word-spacing:5.040000px;}
.wsb6{word-spacing:5.076000px;}
.ws10{word-spacing:5.130000px;}
.wsee{word-spacing:5.166000px;}
.ws1f{word-spacing:5.184000px;}
.ws13d{word-spacing:5.238000px;}
.wsd7{word-spacing:5.346000px;}
.ws3f{word-spacing:5.400000px;}
.wse5{word-spacing:5.454000px;}
.ws12f{word-spacing:5.460000px;}
.ws13c{word-spacing:5.508000px;}
.ws142{word-spacing:5.544000px;}
.ws99{word-spacing:5.562000px;}
.ws1d{word-spacing:5.616000px;}
.ws84{word-spacing:5.670000px;}
.ws69{word-spacing:5.724000px;}
.wse{word-spacing:5.832000px;}
.ws83{word-spacing:5.886000px;}
.wsfc{word-spacing:5.940000px;}
.wsac{word-spacing:5.994000px;}
.wsa0{word-spacing:6.048000px;}
.ws62{word-spacing:6.102000px;}
.ws46{word-spacing:6.156000px;}
.wsa3{word-spacing:6.210000px;}
.wsef{word-spacing:6.258000px;}
.ws95{word-spacing:6.264000px;}
.ws134{word-spacing:6.300000px;}
.wsc4{word-spacing:6.318000px;}
.wsc0{word-spacing:6.372000px;}
.ws45{word-spacing:6.426000px;}
.ws4c{word-spacing:6.480000px;}
.ws13a{word-spacing:6.534000px;}
.ws138{word-spacing:6.552000px;}
.wsae{word-spacing:6.588000px;}
.ws122{word-spacing:6.594000px;}
.ws36{word-spacing:6.642000px;}
.ws1b{word-spacing:6.696000px;}
.ws14b{word-spacing:6.720000px;}
.ws25{word-spacing:6.750000px;}
.ws9d{word-spacing:6.804000px;}
.wsaa{word-spacing:6.912000px;}
.ws27{word-spacing:6.966000px;}
.wsed{word-spacing:7.020000px;}
.wsbd{word-spacing:7.128000px;}
.ws17{word-spacing:7.182000px;}
.ws11e{word-spacing:7.224000px;}
.ws44{word-spacing:7.236000px;}
.ws33{word-spacing:7.506000px;}
.wscb{word-spacing:7.560000px;}
.ws43{word-spacing:7.614000px;}
.wsec{word-spacing:7.668000px;}
.wsfd{word-spacing:7.722000px;}
.wseb{word-spacing:7.776000px;}
.wse9{word-spacing:7.830000px;}
.ws9a{word-spacing:7.884000px;}
.ws94{word-spacing:7.938000px;}
.ws52{word-spacing:8.064000px;}
.ws139{word-spacing:8.106000px;}
.wsdc{word-spacing:8.154000px;}
.ws61{word-spacing:8.262000px;}
.ws14{word-spacing:8.316000px;}
.wsad{word-spacing:8.370000px;}
.wsb5{word-spacing:8.424000px;}
.wsf5{word-spacing:8.478000px;}
.wsf6{word-spacing:8.532000px;}
.wsbc{word-spacing:8.694000px;}
.ws11{word-spacing:8.748000px;}
.wsfe{word-spacing:8.802000px;}
.wsd4{word-spacing:8.856000px;}
.wsa4{word-spacing:8.964000px;}
.ws6f{word-spacing:9.018000px;}
.ws20{word-spacing:9.072000px;}
.ws40{word-spacing:9.126000px;}
.ws26{word-spacing:9.288000px;}
.ws7{word-spacing:9.504000px;}
.ws41{word-spacing:9.612000px;}
.ws14c{word-spacing:9.618000px;}
.ws7f{word-spacing:9.774000px;}
.ws9b{word-spacing:9.936000px;}
.wsda{word-spacing:9.990000px;}
.wsf7{word-spacing:10.152000px;}
.wse4{word-spacing:10.260000px;}
.ws13b{word-spacing:10.476000px;}
.wsdb{word-spacing:10.584000px;}
.wsab{word-spacing:10.638000px;}
.ws6b{word-spacing:10.800000px;}
.ws97{word-spacing:10.854000px;}
.ws73{word-spacing:10.908000px;}
.wsd3{word-spacing:11.070000px;}
.ws88{word-spacing:11.178000px;}
.wsd9{word-spacing:11.232000px;}
.ws126{word-spacing:11.298000px;}
.wse8{word-spacing:11.340000px;}
.ws5f{word-spacing:11.424000px;}
.wsd8{word-spacing:11.448000px;}
.ws85{word-spacing:11.772000px;}
.wsc8{word-spacing:11.880000px;}
.ws14a{word-spacing:12.096000px;}
.wsbf{word-spacing:12.258000px;}
.wsa2{word-spacing:12.366000px;}
.ws86{word-spacing:12.474000px;}
.wscf{word-spacing:12.636000px;}
.ws74{word-spacing:12.744000px;}
.ws21{word-spacing:13.878000px;}
.wsa{word-spacing:14.148000px;}
.wsbe{word-spacing:14.472000px;}
.ws39{word-spacing:14.526000px;}
.ws141{word-spacing:14.634000px;}
.ws120{word-spacing:14.700000px;}
.ws121{word-spacing:14.826000px;}
.ws12{word-spacing:15.498000px;}
.ws96{word-spacing:15.930000px;}
.ws87{word-spacing:16.092000px;}
.ws148{word-spacing:16.464000px;}
.ws76{word-spacing:16.632000px;}
.wsd0{word-spacing:17.658000px;}
.wse7{word-spacing:17.820000px;}
.wsaf{word-spacing:18.036000px;}
.wsff{word-spacing:18.090000px;}
.ws8{word-spacing:18.792000px;}
.ws37{word-spacing:20.196000px;}
.wsf4{word-spacing:22.356000px;}
.ws12d{word-spacing:24.822000px;}
.ws8f{word-spacing:48.132000px;}
.ws5b{word-spacing:56.280000px;}
.ws5c{word-spacing:60.354000px;}
.wsbb{word-spacing:95.812906px;}
._7{margin-left:-4.168800px;}
._3{margin-left:-3.105000px;}
._0{margin-left:-1.134000px;}
._1{width:1.085400px;}
._2{width:2.208600px;}
._6{width:3.315600px;}
._15{width:4.590000px;}
._16{width:8.796600px;}
._4{width:23.520000px;}
._14{width:27.846000px;}
._8{width:30.324000px;}
._9{width:31.878000px;}
._b{width:33.306000px;}
._11{width:50.695142px;}
._5{width:55.062000px;}
._12{width:70.526880px;}
._c{width:81.438000px;}
._d{width:153.011750px;}
._10{width:154.485446px;}
._f{width:160.422336px;}
._13{width:166.864493px;}
._e{width:187.833082px;}
._a{width:1862.110800px;}
.fca{color:rgb(181,199,234);}
.fc9{color:rgb(156,154,155);}
.fc8{color:rgb(143,55,122);}
.fc7{color:rgb(97,146,212);}
.fc6{color:rgb(143,177,159);}
.fc5{color:rgb(112,109,110);}
.fc4{color:rgb(197,149,186);}
.fc3{color:rgb(24,116,95);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:31.320000px;}
.fsa{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:42.000446px;}
.fsb{font-size:42.105600px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.yf0{bottom:2.489250px;}
.yaf{bottom:15.759150px;}
.y20{bottom:20.196900px;}
.y1f{bottom:29.763750px;}
.y5{bottom:66.525004px;}
.ycc{bottom:95.244000px;}
.y95{bottom:95.244150px;}
.y81{bottom:95.244300px;}
.y4{bottom:97.125005px;}
.ycd{bottom:108.744150px;}
.y80{bottom:108.744300px;}
.y138{bottom:110.303250px;}
.y52{bottom:113.244000px;}
.y94{bottom:113.244150px;}
.yf9{bottom:122.244300px;}
.y7f{bottom:122.244450px;}
.y137{bottom:123.803250px;}
.ycb{bottom:131.244000px;}
.y93{bottom:131.244150px;}
.yf8{bottom:135.744300px;}
.y7e{bottom:135.744450px;}
.y136{bottom:137.303250px;}
.y1e{bottom:139.264499px;}
.yca{bottom:149.244000px;}
.y91{bottom:149.244150px;}
.yf7{bottom:149.244300px;}
.y7d{bottom:149.244450px;}
.y135{bottom:150.803250px;}
.yf6{bottom:162.744300px;}
.y7c{bottom:162.744450px;}
.yd7{bottom:163.328850px;}
.y134{bottom:164.303250px;}
.yc9{bottom:167.244000px;}
.y90{bottom:167.244150px;}
.yf5{bottom:176.244300px;}
.y7b{bottom:176.244450px;}
.y133{bottom:177.803250px;}
.yc8{bottom:185.244000px;}
.y8f{bottom:185.244150px;}
.y7a{bottom:189.744600px;}
.y132{bottom:191.303250px;}
.y4e{bottom:195.392850px;}
.y15{bottom:196.933500px;}
.yc7{bottom:203.244000px;}
.y8e{bottom:203.244150px;}
.y79{bottom:203.244600px;}
.y131{bottom:204.803250px;}
.y4d{bottom:208.892850px;}
.y1d{bottom:209.518500px;}
.y14{bottom:209.533503px;}
.y130{bottom:218.303250px;}
.yc6{bottom:221.244000px;}
.y8d{bottom:221.244150px;}
.y1c{bottom:222.118502px;}
.y13{bottom:222.133505px;}
.y4c{bottom:229.833750px;}
.y12f{bottom:231.803250px;}
.y1b{bottom:234.718504px;}
.y12{bottom:234.733496px;}
.yc5{bottom:239.244000px;}
.y78{bottom:239.244150px;}
.y4b{bottom:243.333750px;}
.y12e{bottom:245.303250px;}
.y4a{bottom:256.833750px;}
.yc4{bottom:257.244000px;}
.y77{bottom:257.244150px;}
.y12d{bottom:258.803250px;}
.y1a{bottom:259.918497px;}
.y11{bottom:259.933500px;}
.y12c{bottom:272.303250px;}
.y19{bottom:272.518500px;}
.y10{bottom:272.533503px;}
.y76{bottom:275.244150px;}
.yde{bottom:282.309450px;}
.y18{bottom:285.118502px;}
.yf{bottom:285.133499px;}
.y12b{bottom:285.803250px;}
.y47{bottom:293.244000px;}
.y75{bottom:293.244150px;}
.y12a{bottom:299.303250px;}
.y17{bottom:310.318501px;}
.ye{bottom:310.333501px;}
.y46{bottom:311.244000px;}
.y74{bottom:311.244150px;}
.y129{bottom:312.803250px;}
.y16{bottom:322.918500px;}
.yd{bottom:322.933500px;}
.y128{bottom:326.303250px;}
.y45{bottom:329.244000px;}
.y73{bottom:329.244150px;}
.y44{bottom:347.244000px;}
.y72{bottom:347.244150px;}
.yc{bottom:348.133500px;}
.y43{bottom:365.244000px;}
.y71{bottom:365.244150px;}
.y42{bottom:383.244000px;}
.y70{bottom:383.244150px;}
.yb{bottom:386.785499px;}
.y41{bottom:401.244000px;}
.y6f{bottom:401.244150px;}
.ya{bottom:408.044999px;}
.y40{bottom:419.244000px;}
.y6e{bottom:419.244150px;}
.y3f{bottom:437.244000px;}
.y6d{bottom:437.244150px;}
.y127{bottom:452.247300px;}
.y3e{bottom:455.244000px;}
.y6c{bottom:455.244150px;}
.y126{bottom:465.747300px;}
.y3d{bottom:473.244000px;}
.y6b{bottom:473.244150px;}
.y125{bottom:479.247300px;}
.y3c{bottom:491.244000px;}
.y6a{bottom:491.244150px;}
.y124{bottom:492.747300px;}
.y123{bottom:506.247300px;}
.y3b{bottom:509.244000px;}
.y69{bottom:509.244150px;}
.y122{bottom:519.747300px;}
.y9{bottom:520.864502px;}
.y3a{bottom:527.244000px;}
.y68{bottom:527.244150px;}
.y121{bottom:533.247300px;}
.y8{bottom:538.864499px;}
.y39{bottom:545.244000px;}
.y67{bottom:545.244150px;}
.y120{bottom:546.747300px;}
.y7{bottom:556.864499px;}
.y11f{bottom:560.247300px;}
.y38{bottom:563.244000px;}
.y66{bottom:563.244150px;}
.y11e{bottom:573.747300px;}
.y37{bottom:581.244000px;}
.y65{bottom:581.244150px;}
.y11d{bottom:587.247300px;}
.y36{bottom:599.244000px;}
.y64{bottom:599.244150px;}
.y11c{bottom:600.747300px;}
.y11b{bottom:614.247300px;}
.y35{bottom:617.244000px;}
.y63{bottom:617.244150px;}
.ybe{bottom:620.731500px;}
.y11a{bottom:627.747300px;}
.y34{bottom:635.244000px;}
.y8c{bottom:635.244150px;}
.y119{bottom:641.247300px;}
.ybd{bottom:642.735450px;}
.y33{bottom:653.244000px;}
.y62{bottom:653.244150px;}
.y118{bottom:654.747300px;}
.ybc{bottom:656.235450px;}
.y117{bottom:668.247300px;}
.ybb{bottom:669.735450px;}
.y32{bottom:671.244000px;}
.y61{bottom:671.244150px;}
.y116{bottom:681.747300px;}
.yd6{bottom:687.345000px;}
.y31{bottom:689.244000px;}
.y92{bottom:689.244150px;}
.y8b{bottom:690.097650px;}
.yce{bottom:691.873200px;}
.y115{bottom:695.247300px;}
.y30{bottom:707.244000px;}
.y60{bottom:707.244150px;}
.y114{bottom:708.747300px;}
.ycf{bottom:711.875700px;}
.y8a{bottom:712.101450px;}
.y113{bottom:722.247300px;}
.y2f{bottom:725.244000px;}
.y5f{bottom:725.244150px;}
.y89{bottom:725.601450px;}
.y6{bottom:726.298500px;}
.ye2{bottom:728.095800px;}
.yd0{bottom:731.689200px;}
.y112{bottom:735.747300px;}
.y88{bottom:739.101450px;}
.y2e{bottom:743.244000px;}
.y5e{bottom:743.244150px;}
.ye1{bottom:743.544000px;}
.y111{bottom:749.247300px;}
.yd1{bottom:751.534200px;}
.y3{bottom:752.599495px;}
.yae{bottom:756.906000px;}
.y2d{bottom:761.244000px;}
.y5d{bottom:761.244150px;}
.yb3{bottom:762.723328px;}
.y110{bottom:762.747300px;}
.yd2{bottom:771.358200px;}
.yb6{bottom:772.932290px;}
.yb7{bottom:774.833013px;}
.yb8{bottom:775.011206px;}
.yb4{bottom:775.775950px;}
.y10f{bottom:776.247300px;}
.yb5{bottom:776.251131px;}
.yb0{bottom:778.255800px;}
.y2c{bottom:779.244000px;}
.y5c{bottom:779.244150px;}
.yb1{bottom:783.846599px;}
.ye4{bottom:785.046450px;}
.yb2{bottom:789.274055px;}
.y10e{bottom:789.747300px;}
.yd3{bottom:791.171700px;}
.y2b{bottom:797.244000px;}
.y5b{bottom:797.244150px;}
.yef{bottom:800.079000px;}
.y10d{bottom:803.247300px;}
.y85{bottom:805.373250px;}
.ya8{bottom:808.204500px;}
.yd4{bottom:811.016700px;}
.ye5{bottom:812.473200px;}
.y2a{bottom:815.244000px;}
.y5a{bottom:815.244150px;}
.y10c{bottom:816.747300px;}
.y10b{bottom:830.247300px;}
.yd5{bottom:830.861700px;}
.ye6{bottom:832.620730px;}
.y9c{bottom:832.861500px;}
.y29{bottom:833.244000px;}
.y59{bottom:833.244150px;}
.ya9{bottom:841.437000px;}
.y10a{bottom:843.747300px;}
.yd8{bottom:850.673850px;}
.y28{bottom:851.244000px;}
.y58{bottom:851.244150px;}
.ye7{bottom:852.778786px;}
.y96{bottom:856.141800px;}
.y109{bottom:857.247300px;}
.ya2{bottom:863.591100px;}
.y27{bottom:869.244000px;}
.y57{bottom:869.244150px;}
.yd9{bottom:870.497850px;}
.y108{bottom:870.747300px;}
.ye8{bottom:872.936842px;}
.yaa{bottom:874.669500px;}
.ya3{bottom:875.718600px;}
.y2{bottom:879.369000px;}
.y97{bottom:884.208300px;}
.y107{bottom:884.247300px;}
.y26{bottom:887.244000px;}
.y56{bottom:887.244150px;}
.yda{bottom:890.342850px;}
.ye9{bottom:893.084371px;}
.y9e{bottom:893.327100px;}
.y106{bottom:897.747300px;}
.y25{bottom:905.244000px;}
.y55{bottom:905.244150px;}
.yab{bottom:907.881000px;}
.ydb{bottom:910.156350px;}
.y105{bottom:911.247300px;}
.y98{bottom:912.285300px;}
.yea{bottom:913.242427px;}
.ya1{bottom:914.883600px;}
.y9d{bottom:919.724100px;}
.y24{bottom:923.244000px;}
.y54{bottom:923.244150px;}
.y104{bottom:924.747300px;}
.ydc{bottom:930.001350px;}
.yeb{bottom:933.400483px;}
.ya0{bottom:934.896600px;}
.y103{bottom:938.247300px;}
.y99{bottom:940.351800px;}
.yac{bottom:941.103000px;}
.y23{bottom:941.244000px;}
.yf4{bottom:941.244150px;}
.yba{bottom:949.267500px;}
.ydd{bottom:949.825350px;}
.y102{bottom:951.747300px;}
.yec{bottom:953.558539px;}
.y9f{bottom:958.259100px;}
.y22{bottom:959.244000px;}
.y53{bottom:959.244150px;}
.y101{bottom:965.247300px;}
.yb9{bottom:965.788050px;}
.y1{bottom:966.726000px;}
.y9a{bottom:968.418300px;}
.ydf{bottom:969.654450px;}
.yed{bottom:973.716595px;}
.yad{bottom:974.325000px;}
.ya7{bottom:977.173950px;}
.yc3{bottom:977.244000px;}
.yf3{bottom:977.244150px;}
.ya5{bottom:977.353950px;}
.y100{bottom:978.747300px;}
.yf1{bottom:981.580200px;}
.ya6{bottom:986.893950px;}
.ya4{bottom:987.073950px;}
.ye0{bottom:989.478450px;}
.yff{bottom:992.247300px;}
.yee{bottom:993.885178px;}
.yc2{bottom:995.244000px;}
.yf2{bottom:995.244150px;}
.y9b{bottom:996.484800px;}
.y87{bottom:996.744150px;}
.yfe{bottom:1005.747300px;}
.yc1{bottom:1013.244000px;}
.y86{bottom:1013.244150px;}
.ye3{bottom:1014.744000px;}
.y84{bottom:1014.744150px;}
.y49{bottom:1016.492100px;}
.yfd{bottom:1019.247300px;}
.yc0{bottom:1031.244000px;}
.y83{bottom:1031.244150px;}
.yfc{bottom:1032.747300px;}
.yfb{bottom:1046.247300px;}
.ybf{bottom:1049.244000px;}
.y48{bottom:1049.244150px;}
.yfa{bottom:1059.747300px;}
.y50{bottom:1098.259950px;}
.y4f{bottom:1116.756000px;}
.y21{bottom:1143.070950px;}
.y82{bottom:1143.779550px;}
.y51{bottom:1144.405500px;}
.h12{height:26.316000px;}
.h10{height:30.702000px;}
.h11{height:30.702326px;}
.h15{height:30.779194px;}
.h7{height:32.130000px;}
.he{height:33.012000px;}
.hf{height:39.474000px;}
.ha{height:42.444000px;}
.hb{height:43.860000px;}
.h6{height:45.900000px;}
.hc{height:47.388000px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.hd{height:65.790000px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h16{height:205.977000px;}
.h13{height:229.386000px;}
.h14{height:318.292500px;}
.h9{height:1177.500000px;}
.h8{height:1177.795500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w4{width:348.660000px;}
.w5{width:348.661500px;}
.w2{width:637.794021px;}
.w6{width:719.961000px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2b{left:6.908250px;}
.x6{left:34.015800px;}
.x40{left:35.097600px;}
.xe{left:63.779550px;}
.x13{left:67.478700px;}
.x12{left:73.316700px;}
.x14{left:76.680000px;}
.x41{left:80.787300px;}
.x27{left:88.468650px;}
.x24{left:90.925650px;}
.x7{left:97.795200px;}
.x15{left:100.854823px;}
.x1{left:102.045000px;}
.x3d{left:104.270550px;}
.x2{left:106.297500px;}
.x3e{left:110.455050px;}
.x8{left:114.803100px;}
.x35{left:117.457050px;}
.x16{left:125.044496px;}
.x3b{left:131.443050px;}
.x36{left:137.680050px;}
.x25{left:139.246650px;}
.x3a{left:141.344550px;}
.x38{left:142.499550px;}
.x37{left:147.403050px;}
.x17{left:149.219319px;}
.x3c{left:151.489050px;}
.x39{left:154.984050px;}
.x23{left:161.149650px;}
.x18{left:173.394142px;}
.x28{left:194.421300px;}
.x19{left:197.583815px;}
.x4{left:203.484001px;}
.x1a{left:221.758638px;}
.x1b{left:245.933461px;}
.x21{left:262.579650px;}
.x1c{left:270.108284px;}
.x26{left:284.346150px;}
.x1d{left:294.283108px;}
.x3f{left:307.371150px;}
.x1e{left:318.472780px;}
.x1f{left:342.647603px;}
.x29{left:348.843300px;}
.x22{left:354.717150px;}
.x20{left:366.822427px;}
.x10{left:446.456700px;}
.x2a{left:448.961250px;}
.x3{left:454.959000px;}
.x2c{left:458.956050px;}
.x11{left:463.464600px;}
.xc{left:480.472350px;}
.xd{left:497.480250px;}
.x2d{left:501.165469px;}
.x2e{left:541.771154px;}
.x2f{left:554.229800px;}
.x30{left:602.282459px;}
.x31{left:638.841682px;}
.x34{left:652.411500px;}
.x9{left:654.074400px;}
.x32{left:674.918299px;}
.x5{left:681.093900px;}
.xb{left:699.108900px;}
.xa{left:712.408050px;}
.xf{left:741.452850px;}
.x33{left:750.249305px;}
@media print{
.v3{vertical-align:-34.771733pt;}
.v2{vertical-align:-15.840000pt;}
.v4{vertical-align:-3.920000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.840000pt;}
.ls12{letter-spacing:-2.400000pt;}
.ls24{letter-spacing:-1.680000pt;}
.ls29{letter-spacing:-1.418667pt;}
.ls31{letter-spacing:-1.232000pt;}
.ls23{letter-spacing:-1.082667pt;}
.ls30{letter-spacing:-0.896000pt;}
.ls8{letter-spacing:-0.858667pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls20{letter-spacing:-0.448000pt;}
.ls14{letter-spacing:-0.384000pt;}
.ls27{letter-spacing:-0.298667pt;}
.ls16{letter-spacing:-0.240000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls1e{letter-spacing:-0.149333pt;}
.ls2a{letter-spacing:-0.112000pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.117333pt;}
.lsf{letter-spacing:0.144000pt;}
.ls2c{letter-spacing:0.186667pt;}
.ls19{letter-spacing:0.240000pt;}
.ls13{letter-spacing:0.288000pt;}
.ls25{letter-spacing:0.298667pt;}
.ls2b{letter-spacing:0.336000pt;}
.lsc{letter-spacing:0.384000pt;}
.ls1c{letter-spacing:0.410667pt;}
.lsd{letter-spacing:0.432000pt;}
.ls21{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.528000pt;}
.ls2{letter-spacing:0.533333pt;}
.ls1f{letter-spacing:0.560000pt;}
.ls15{letter-spacing:0.576000pt;}
.ls1{letter-spacing:0.586667pt;}
.ls1b{letter-spacing:0.597333pt;}
.ls18{letter-spacing:0.624000pt;}
.ls10{letter-spacing:0.634667pt;}
.ls7{letter-spacing:0.672000pt;}
.ls1a{letter-spacing:0.705600pt;}
.ls6{letter-spacing:0.709333pt;}
.lse{letter-spacing:0.720000pt;}
.ls1d{letter-spacing:0.746667pt;}
.ls28{letter-spacing:0.784000pt;}
.ls22{letter-spacing:0.821333pt;}
.ls26{letter-spacing:0.858667pt;}
.ls17{letter-spacing:0.864000pt;}
.ls11{letter-spacing:0.912000pt;}
.ls2f{letter-spacing:1.157333pt;}
.ls2e{letter-spacing:1.232000pt;}
.ls2d{letter-spacing:1.568000pt;}
.wsb9{word-spacing:-13.920000pt;}
.ws8e{word-spacing:-13.728000pt;}
.ws58{word-spacing:-13.632000pt;}
.ws6{word-spacing:-13.488000pt;}
.wsb8{word-spacing:-13.344000pt;}
.ws59{word-spacing:-12.960000pt;}
.ws10e{word-spacing:-11.946667pt;}
.ws110{word-spacing:-11.610667pt;}
.ws112{word-spacing:-11.536000pt;}
.ws107{word-spacing:-11.237333pt;}
.ws111{word-spacing:-11.162667pt;}
.ws10c{word-spacing:-11.125333pt;}
.ws3{word-spacing:-11.088000pt;}
.ws56{word-spacing:-11.050667pt;}
.ws109{word-spacing:-11.013333pt;}
.ws57{word-spacing:-10.944000pt;}
.ws103{word-spacing:-10.789333pt;}
.ws10f{word-spacing:-10.714667pt;}
.ws10d{word-spacing:-10.565333pt;}
.wsba{word-spacing:-10.404762pt;}
.ws5a{word-spacing:-10.378777pt;}
.ws4{word-spacing:-10.378667pt;}
.ws10b{word-spacing:-10.266667pt;}
.ws104{word-spacing:-10.229333pt;}
.ws108{word-spacing:-10.080000pt;}
.ws105{word-spacing:-9.930667pt;}
.ws113{word-spacing:-9.482667pt;}
.ws106{word-spacing:-9.296000pt;}
.ws114{word-spacing:-9.146667pt;}
.ws10a{word-spacing:-8.960000pt;}
.ws5{word-spacing:-7.739520pt;}
.ws9f{word-spacing:-3.120000pt;}
.wsd6{word-spacing:-2.736000pt;}
.ws63{word-spacing:-2.688000pt;}
.wsa9{word-spacing:-2.640000pt;}
.ws98{word-spacing:-2.592000pt;}
.ws8b{word-spacing:-2.544000pt;}
.wsf2{word-spacing:-2.496000pt;}
.ws92{word-spacing:-2.448000pt;}
.wsd2{word-spacing:-2.400000pt;}
.wsc6{word-spacing:-2.352000pt;}
.ws4d{word-spacing:-2.304000pt;}
.ws5d{word-spacing:-2.256000pt;}
.ws2c{word-spacing:-2.240000pt;}
.wse3{word-spacing:-2.208000pt;}
.wsfa{word-spacing:-2.160000pt;}
.wsde{word-spacing:-2.064000pt;}
.ws132{word-spacing:-1.904000pt;}
.wsfb{word-spacing:-1.872000pt;}
.ws11c{word-spacing:-1.866667pt;}
.ws12e{word-spacing:-1.829333pt;}
.wsa6{word-spacing:-1.824000pt;}
.ws117{word-spacing:-1.792000pt;}
.ws47{word-spacing:-1.776000pt;}
.ws2b{word-spacing:-1.760000pt;}
.ws123{word-spacing:-1.754667pt;}
.ws3b{word-spacing:-1.728000pt;}
.ws30{word-spacing:-1.717333pt;}
.ws5e{word-spacing:-1.680000pt;}
.wscd{word-spacing:-1.632000pt;}
.ws11a{word-spacing:-1.605333pt;}
.wsc5{word-spacing:-1.536000pt;}
.ws124{word-spacing:-1.418667pt;}
.ws127{word-spacing:-1.381333pt;}
.ws2a{word-spacing:-1.344000pt;}
.ws72{word-spacing:-1.296000pt;}
.ws65{word-spacing:-1.248000pt;}
.ws137{word-spacing:-1.232000pt;}
.wsca{word-spacing:-1.200000pt;}
.ws125{word-spacing:-1.120000pt;}
.wse1{word-spacing:-1.104000pt;}
.ws4e{word-spacing:-1.056000pt;}
.ws31{word-spacing:-1.045333pt;}
.ws13f{word-spacing:-1.008000pt;}
.ws54{word-spacing:-0.970667pt;}
.wsd5{word-spacing:-0.912000pt;}
.ws115{word-spacing:-0.896000pt;}
.wse2{word-spacing:-0.864000pt;}
.wsa5{word-spacing:-0.816000pt;}
.ws8c{word-spacing:-0.768000pt;}
.ws128{word-spacing:-0.746667pt;}
.ws2d{word-spacing:-0.672000pt;}
.ws1{word-spacing:-0.640000pt;}
.ws3c{word-spacing:-0.624000pt;}
.ws129{word-spacing:-0.597333pt;}
.ws2{word-spacing:-0.586667pt;}
.wsd1{word-spacing:-0.528000pt;}
.ws116{word-spacing:-0.485333pt;}
.wsce{word-spacing:-0.480000pt;}
.ws11b{word-spacing:-0.448000pt;}
.wsdd{word-spacing:-0.432000pt;}
.wsc1{word-spacing:-0.384000pt;}
.ws146{word-spacing:-0.373333pt;}
.wsf9{word-spacing:-0.336000pt;}
.ws3e{word-spacing:-0.288000pt;}
.wsb7{word-spacing:-0.261333pt;}
.ws28{word-spacing:-0.240000pt;}
.ws3d{word-spacing:-0.192000pt;}
.ws32{word-spacing:-0.186667pt;}
.ws66{word-spacing:-0.144000pt;}
.wsf3{word-spacing:-0.096000pt;}
.wsf{word-spacing:-0.048000pt;}
.ws136{word-spacing:-0.037333pt;}
.ws0{word-spacing:0.000000pt;}
.ws48{word-spacing:0.048000pt;}
.ws7a{word-spacing:0.144000pt;}
.ws118{word-spacing:0.186667pt;}
.ws16{word-spacing:0.192000pt;}
.ws143{word-spacing:0.224000pt;}
.ws67{word-spacing:0.240000pt;}
.wsa7{word-spacing:0.288000pt;}
.ws8d{word-spacing:0.384000pt;}
.ws144{word-spacing:0.410667pt;}
.ws6d{word-spacing:0.432000pt;}
.ws135{word-spacing:0.448000pt;}
.ws64{word-spacing:0.480000pt;}
.ws60{word-spacing:0.485333pt;}
.wsc3{word-spacing:0.528000pt;}
.ws11d{word-spacing:0.634667pt;}
.ws13{word-spacing:0.672000pt;}
.ws101{word-spacing:0.720000pt;}
.ws13e{word-spacing:0.816000pt;}
.wsb0{word-spacing:0.864000pt;}
.wsb{word-spacing:0.912000pt;}
.ws18{word-spacing:0.960000pt;}
.ws51{word-spacing:1.008000pt;}
.wsa1{word-spacing:1.056000pt;}
.ws119{word-spacing:1.082667pt;}
.wsdf{word-spacing:1.104000pt;}
.ws4a{word-spacing:1.152000pt;}
.ws2f{word-spacing:1.157333pt;}
.ws15{word-spacing:1.200000pt;}
.ws82{word-spacing:1.248000pt;}
.ws1a{word-spacing:1.296000pt;}
.ws91{word-spacing:1.392000pt;}
.ws22{word-spacing:1.440000pt;}
.wsb2{word-spacing:1.536000pt;}
.wscc{word-spacing:1.568000pt;}
.wsb1{word-spacing:1.584000pt;}
.ws90{word-spacing:1.605333pt;}
.ws24{word-spacing:1.632000pt;}
.ws79{word-spacing:1.680000pt;}
.ws4b{word-spacing:1.728000pt;}
.wsf1{word-spacing:1.754667pt;}
.ws102{word-spacing:1.829333pt;}
.ws2e{word-spacing:1.866667pt;}
.wsc9{word-spacing:1.872000pt;}
.wsc2{word-spacing:1.920000pt;}
.ws55{word-spacing:1.941333pt;}
.ws7d{word-spacing:2.064000pt;}
.ws75{word-spacing:2.090667pt;}
.ws7e{word-spacing:2.112000pt;}
.ws9{word-spacing:2.160000pt;}
.wsa8{word-spacing:2.208000pt;}
.ws53{word-spacing:2.240000pt;}
.wsb4{word-spacing:2.256000pt;}
.wsb3{word-spacing:2.304000pt;}
.ws8a{word-spacing:2.352000pt;}
.ws50{word-spacing:2.389333pt;}
.ws7b{word-spacing:2.400000pt;}
.ws11f{word-spacing:2.426667pt;}
.ws9e{word-spacing:2.448000pt;}
.ws6c{word-spacing:2.592000pt;}
.ws100{word-spacing:2.640000pt;}
.ws140{word-spacing:2.688000pt;}
.ws80{word-spacing:2.736000pt;}
.ws12a{word-spacing:2.800000pt;}
.wsc7{word-spacing:2.880000pt;}
.ws9c{word-spacing:2.928000pt;}
.wse0{word-spacing:2.976000pt;}
.ws6a{word-spacing:3.024000pt;}
.ws70{word-spacing:3.072000pt;}
.wsea{word-spacing:3.120000pt;}
.ws38{word-spacing:3.168000pt;}
.ws133{word-spacing:3.173333pt;}
.ws1c{word-spacing:3.216000pt;}
.ws12c{word-spacing:3.248000pt;}
.wsf8{word-spacing:3.312000pt;}
.ws68{word-spacing:3.360000pt;}
.ws6e{word-spacing:3.408000pt;}
.ws34{word-spacing:3.456000pt;}
.ws49{word-spacing:3.504000pt;}
.ws81{word-spacing:3.552000pt;}
.ws1e{word-spacing:3.600000pt;}
.ws29{word-spacing:3.648000pt;}
.ws71{word-spacing:3.696000pt;}
.ws149{word-spacing:3.770667pt;}
.ws89{word-spacing:3.792000pt;}
.ws4f{word-spacing:3.840000pt;}
.ws12b{word-spacing:3.882667pt;}
.ws7c{word-spacing:3.888000pt;}
.ws93{word-spacing:3.936000pt;}
.ws23{word-spacing:3.984000pt;}
.wse6{word-spacing:4.032000pt;}
.ws42{word-spacing:4.080000pt;}
.ws130{word-spacing:4.106667pt;}
.wsd{word-spacing:4.128000pt;}
.ws78{word-spacing:4.176000pt;}
.ws19{word-spacing:4.224000pt;}
.ws3a{word-spacing:4.272000pt;}
.ws131{word-spacing:4.293333pt;}
.ws35{word-spacing:4.320000pt;}
.wsf0{word-spacing:4.330667pt;}
.ws145{word-spacing:4.368000pt;}
.ws77{word-spacing:4.416000pt;}
.wsc{word-spacing:4.464000pt;}
.ws147{word-spacing:4.480000pt;}
.wsb6{word-spacing:4.512000pt;}
.ws10{word-spacing:4.560000pt;}
.wsee{word-spacing:4.592000pt;}
.ws1f{word-spacing:4.608000pt;}
.ws13d{word-spacing:4.656000pt;}
.wsd7{word-spacing:4.752000pt;}
.ws3f{word-spacing:4.800000pt;}
.wse5{word-spacing:4.848000pt;}
.ws12f{word-spacing:4.853333pt;}
.ws13c{word-spacing:4.896000pt;}
.ws142{word-spacing:4.928000pt;}
.ws99{word-spacing:4.944000pt;}
.ws1d{word-spacing:4.992000pt;}
.ws84{word-spacing:5.040000pt;}
.ws69{word-spacing:5.088000pt;}
.wse{word-spacing:5.184000pt;}
.ws83{word-spacing:5.232000pt;}
.wsfc{word-spacing:5.280000pt;}
.wsac{word-spacing:5.328000pt;}
.wsa0{word-spacing:5.376000pt;}
.ws62{word-spacing:5.424000pt;}
.ws46{word-spacing:5.472000pt;}
.wsa3{word-spacing:5.520000pt;}
.wsef{word-spacing:5.562667pt;}
.ws95{word-spacing:5.568000pt;}
.ws134{word-spacing:5.600000pt;}
.wsc4{word-spacing:5.616000pt;}
.wsc0{word-spacing:5.664000pt;}
.ws45{word-spacing:5.712000pt;}
.ws4c{word-spacing:5.760000pt;}
.ws13a{word-spacing:5.808000pt;}
.ws138{word-spacing:5.824000pt;}
.wsae{word-spacing:5.856000pt;}
.ws122{word-spacing:5.861333pt;}
.ws36{word-spacing:5.904000pt;}
.ws1b{word-spacing:5.952000pt;}
.ws14b{word-spacing:5.973333pt;}
.ws25{word-spacing:6.000000pt;}
.ws9d{word-spacing:6.048000pt;}
.wsaa{word-spacing:6.144000pt;}
.ws27{word-spacing:6.192000pt;}
.wsed{word-spacing:6.240000pt;}
.wsbd{word-spacing:6.336000pt;}
.ws17{word-spacing:6.384000pt;}
.ws11e{word-spacing:6.421333pt;}
.ws44{word-spacing:6.432000pt;}
.ws33{word-spacing:6.672000pt;}
.wscb{word-spacing:6.720000pt;}
.ws43{word-spacing:6.768000pt;}
.wsec{word-spacing:6.816000pt;}
.wsfd{word-spacing:6.864000pt;}
.wseb{word-spacing:6.912000pt;}
.wse9{word-spacing:6.960000pt;}
.ws9a{word-spacing:7.008000pt;}
.ws94{word-spacing:7.056000pt;}
.ws52{word-spacing:7.168000pt;}
.ws139{word-spacing:7.205333pt;}
.wsdc{word-spacing:7.248000pt;}
.ws61{word-spacing:7.344000pt;}
.ws14{word-spacing:7.392000pt;}
.wsad{word-spacing:7.440000pt;}
.wsb5{word-spacing:7.488000pt;}
.wsf5{word-spacing:7.536000pt;}
.wsf6{word-spacing:7.584000pt;}
.wsbc{word-spacing:7.728000pt;}
.ws11{word-spacing:7.776000pt;}
.wsfe{word-spacing:7.824000pt;}
.wsd4{word-spacing:7.872000pt;}
.wsa4{word-spacing:7.968000pt;}
.ws6f{word-spacing:8.016000pt;}
.ws20{word-spacing:8.064000pt;}
.ws40{word-spacing:8.112000pt;}
.ws26{word-spacing:8.256000pt;}
.ws7{word-spacing:8.448000pt;}
.ws41{word-spacing:8.544000pt;}
.ws14c{word-spacing:8.549333pt;}
.ws7f{word-spacing:8.688000pt;}
.ws9b{word-spacing:8.832000pt;}
.wsda{word-spacing:8.880000pt;}
.wsf7{word-spacing:9.024000pt;}
.wse4{word-spacing:9.120000pt;}
.ws13b{word-spacing:9.312000pt;}
.wsdb{word-spacing:9.408000pt;}
.wsab{word-spacing:9.456000pt;}
.ws6b{word-spacing:9.600000pt;}
.ws97{word-spacing:9.648000pt;}
.ws73{word-spacing:9.696000pt;}
.wsd3{word-spacing:9.840000pt;}
.ws88{word-spacing:9.936000pt;}
.wsd9{word-spacing:9.984000pt;}
.ws126{word-spacing:10.042667pt;}
.wse8{word-spacing:10.080000pt;}
.ws5f{word-spacing:10.154667pt;}
.wsd8{word-spacing:10.176000pt;}
.ws85{word-spacing:10.464000pt;}
.wsc8{word-spacing:10.560000pt;}
.ws14a{word-spacing:10.752000pt;}
.wsbf{word-spacing:10.896000pt;}
.wsa2{word-spacing:10.992000pt;}
.ws86{word-spacing:11.088000pt;}
.wscf{word-spacing:11.232000pt;}
.ws74{word-spacing:11.328000pt;}
.ws21{word-spacing:12.336000pt;}
.wsa{word-spacing:12.576000pt;}
.wsbe{word-spacing:12.864000pt;}
.ws39{word-spacing:12.912000pt;}
.ws141{word-spacing:13.008000pt;}
.ws120{word-spacing:13.066667pt;}
.ws121{word-spacing:13.178667pt;}
.ws12{word-spacing:13.776000pt;}
.ws96{word-spacing:14.160000pt;}
.ws87{word-spacing:14.304000pt;}
.ws148{word-spacing:14.634667pt;}
.ws76{word-spacing:14.784000pt;}
.wsd0{word-spacing:15.696000pt;}
.wse7{word-spacing:15.840000pt;}
.wsaf{word-spacing:16.032000pt;}
.wsff{word-spacing:16.080000pt;}
.ws8{word-spacing:16.704000pt;}
.ws37{word-spacing:17.952000pt;}
.wsf4{word-spacing:19.872000pt;}
.ws12d{word-spacing:22.064000pt;}
.ws8f{word-spacing:42.784000pt;}
.ws5b{word-spacing:50.026667pt;}
.ws5c{word-spacing:53.648000pt;}
.wsbb{word-spacing:85.167027pt;}
._7{margin-left:-3.705600pt;}
._3{margin-left:-2.760000pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.964800pt;}
._2{width:1.963200pt;}
._6{width:2.947200pt;}
._15{width:4.080000pt;}
._16{width:7.819200pt;}
._4{width:20.906667pt;}
._14{width:24.752000pt;}
._8{width:26.954667pt;}
._9{width:28.336000pt;}
._b{width:29.605333pt;}
._11{width:45.062349pt;}
._5{width:48.944000pt;}
._12{width:62.690560pt;}
._c{width:72.389333pt;}
._d{width:136.010445pt;}
._10{width:137.320397pt;}
._f{width:142.597632pt;}
._13{width:148.323994pt;}
._e{width:166.962739pt;}
._a{width:1655.209600pt;}
.fs8{font-size:27.840000pt;}
.fsa{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:37.333730pt;}
.fsb{font-size:37.427200pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.yf0{bottom:2.212667pt;}
.yaf{bottom:14.008133pt;}
.y20{bottom:17.952800pt;}
.y1f{bottom:26.456667pt;}
.y5{bottom:59.133337pt;}
.ycc{bottom:84.661333pt;}
.y95{bottom:84.661467pt;}
.y81{bottom:84.661600pt;}
.y4{bottom:86.333337pt;}
.ycd{bottom:96.661467pt;}
.y80{bottom:96.661600pt;}
.y138{bottom:98.047333pt;}
.y52{bottom:100.661333pt;}
.y94{bottom:100.661467pt;}
.yf9{bottom:108.661600pt;}
.y7f{bottom:108.661733pt;}
.y137{bottom:110.047333pt;}
.ycb{bottom:116.661333pt;}
.y93{bottom:116.661467pt;}
.yf8{bottom:120.661600pt;}
.y7e{bottom:120.661733pt;}
.y136{bottom:122.047333pt;}
.y1e{bottom:123.790666pt;}
.yca{bottom:132.661333pt;}
.y91{bottom:132.661467pt;}
.yf7{bottom:132.661600pt;}
.y7d{bottom:132.661733pt;}
.y135{bottom:134.047333pt;}
.yf6{bottom:144.661600pt;}
.y7c{bottom:144.661733pt;}
.yd7{bottom:145.181200pt;}
.y134{bottom:146.047333pt;}
.yc9{bottom:148.661333pt;}
.y90{bottom:148.661467pt;}
.yf5{bottom:156.661600pt;}
.y7b{bottom:156.661733pt;}
.y133{bottom:158.047333pt;}
.yc8{bottom:164.661333pt;}
.y8f{bottom:164.661467pt;}
.y7a{bottom:168.661867pt;}
.y132{bottom:170.047333pt;}
.y4e{bottom:173.682533pt;}
.y15{bottom:175.052000pt;}
.yc7{bottom:180.661333pt;}
.y8e{bottom:180.661467pt;}
.y79{bottom:180.661867pt;}
.y131{bottom:182.047333pt;}
.y4d{bottom:185.682533pt;}
.y1d{bottom:186.238666pt;}
.y14{bottom:186.252002pt;}
.y130{bottom:194.047333pt;}
.yc6{bottom:196.661333pt;}
.y8d{bottom:196.661467pt;}
.y1c{bottom:197.438668pt;}
.y13{bottom:197.452004pt;}
.y4c{bottom:204.296667pt;}
.y12f{bottom:206.047333pt;}
.y1b{bottom:208.638670pt;}
.y12{bottom:208.651996pt;}
.yc5{bottom:212.661333pt;}
.y78{bottom:212.661467pt;}
.y4b{bottom:216.296667pt;}
.y12e{bottom:218.047333pt;}
.y4a{bottom:228.296667pt;}
.yc4{bottom:228.661333pt;}
.y77{bottom:228.661467pt;}
.y12d{bottom:230.047333pt;}
.y1a{bottom:231.038664pt;}
.y11{bottom:231.052000pt;}
.y12c{bottom:242.047333pt;}
.y19{bottom:242.238666pt;}
.y10{bottom:242.252002pt;}
.y76{bottom:244.661467pt;}
.yde{bottom:250.941733pt;}
.y18{bottom:253.438668pt;}
.yf{bottom:253.451999pt;}
.y12b{bottom:254.047333pt;}
.y47{bottom:260.661333pt;}
.y75{bottom:260.661467pt;}
.y12a{bottom:266.047333pt;}
.y17{bottom:275.838667pt;}
.ye{bottom:275.852001pt;}
.y46{bottom:276.661333pt;}
.y74{bottom:276.661467pt;}
.y129{bottom:278.047333pt;}
.y16{bottom:287.038667pt;}
.yd{bottom:287.052000pt;}
.y128{bottom:290.047333pt;}
.y45{bottom:292.661333pt;}
.y73{bottom:292.661467pt;}
.y44{bottom:308.661333pt;}
.y72{bottom:308.661467pt;}
.yc{bottom:309.452000pt;}
.y43{bottom:324.661333pt;}
.y71{bottom:324.661467pt;}
.y42{bottom:340.661333pt;}
.y70{bottom:340.661467pt;}
.yb{bottom:343.809333pt;}
.y41{bottom:356.661333pt;}
.y6f{bottom:356.661467pt;}
.ya{bottom:362.706666pt;}
.y40{bottom:372.661333pt;}
.y6e{bottom:372.661467pt;}
.y3f{bottom:388.661333pt;}
.y6d{bottom:388.661467pt;}
.y127{bottom:401.997600pt;}
.y3e{bottom:404.661333pt;}
.y6c{bottom:404.661467pt;}
.y126{bottom:413.997600pt;}
.y3d{bottom:420.661333pt;}
.y6b{bottom:420.661467pt;}
.y125{bottom:425.997600pt;}
.y3c{bottom:436.661333pt;}
.y6a{bottom:436.661467pt;}
.y124{bottom:437.997600pt;}
.y123{bottom:449.997600pt;}
.y3b{bottom:452.661333pt;}
.y69{bottom:452.661467pt;}
.y122{bottom:461.997600pt;}
.y9{bottom:462.990669pt;}
.y3a{bottom:468.661333pt;}
.y68{bottom:468.661467pt;}
.y121{bottom:473.997600pt;}
.y8{bottom:478.990666pt;}
.y39{bottom:484.661333pt;}
.y67{bottom:484.661467pt;}
.y120{bottom:485.997600pt;}
.y7{bottom:494.990666pt;}
.y11f{bottom:497.997600pt;}
.y38{bottom:500.661333pt;}
.y66{bottom:500.661467pt;}
.y11e{bottom:509.997600pt;}
.y37{bottom:516.661333pt;}
.y65{bottom:516.661467pt;}
.y11d{bottom:521.997600pt;}
.y36{bottom:532.661333pt;}
.y64{bottom:532.661467pt;}
.y11c{bottom:533.997600pt;}
.y11b{bottom:545.997600pt;}
.y35{bottom:548.661333pt;}
.y63{bottom:548.661467pt;}
.ybe{bottom:551.761333pt;}
.y11a{bottom:557.997600pt;}
.y34{bottom:564.661333pt;}
.y8c{bottom:564.661467pt;}
.y119{bottom:569.997600pt;}
.ybd{bottom:571.320400pt;}
.y33{bottom:580.661333pt;}
.y62{bottom:580.661467pt;}
.y118{bottom:581.997600pt;}
.ybc{bottom:583.320400pt;}
.y117{bottom:593.997600pt;}
.ybb{bottom:595.320400pt;}
.y32{bottom:596.661333pt;}
.y61{bottom:596.661467pt;}
.y116{bottom:605.997600pt;}
.yd6{bottom:610.973333pt;}
.y31{bottom:612.661333pt;}
.y92{bottom:612.661467pt;}
.y8b{bottom:613.420133pt;}
.yce{bottom:614.998400pt;}
.y115{bottom:617.997600pt;}
.y30{bottom:628.661333pt;}
.y60{bottom:628.661467pt;}
.y114{bottom:629.997600pt;}
.ycf{bottom:632.778400pt;}
.y8a{bottom:632.979067pt;}
.y113{bottom:641.997600pt;}
.y2f{bottom:644.661333pt;}
.y5f{bottom:644.661467pt;}
.y89{bottom:644.979067pt;}
.y6{bottom:645.598667pt;}
.ye2{bottom:647.196267pt;}
.yd0{bottom:650.390400pt;}
.y112{bottom:653.997600pt;}
.y88{bottom:656.979067pt;}
.y2e{bottom:660.661333pt;}
.y5e{bottom:660.661467pt;}
.ye1{bottom:660.928000pt;}
.y111{bottom:665.997600pt;}
.yd1{bottom:668.030400pt;}
.y3{bottom:668.977329pt;}
.yae{bottom:672.805333pt;}
.y2d{bottom:676.661333pt;}
.y5d{bottom:676.661467pt;}
.yb3{bottom:677.976291pt;}
.y110{bottom:677.997600pt;}
.yd2{bottom:685.651733pt;}
.yb6{bottom:687.050925pt;}
.yb7{bottom:688.740456pt;}
.yb8{bottom:688.898850pt;}
.yb4{bottom:689.578622pt;}
.y10f{bottom:689.997600pt;}
.yb5{bottom:690.001005pt;}
.yb0{bottom:691.782933pt;}
.y2c{bottom:692.661333pt;}
.y5c{bottom:692.661467pt;}
.yb1{bottom:696.752533pt;}
.ye4{bottom:697.819067pt;}
.yb2{bottom:701.576938pt;}
.y10e{bottom:701.997600pt;}
.yd3{bottom:703.263733pt;}
.y2b{bottom:708.661333pt;}
.y5b{bottom:708.661467pt;}
.yef{bottom:711.181333pt;}
.y10d{bottom:713.997600pt;}
.y85{bottom:715.887333pt;}
.ya8{bottom:718.404000pt;}
.yd4{bottom:720.903733pt;}
.ye5{bottom:722.198400pt;}
.y2a{bottom:724.661333pt;}
.y5a{bottom:724.661467pt;}
.y10c{bottom:725.997600pt;}
.y10b{bottom:737.997600pt;}
.yd5{bottom:738.543733pt;}
.ye6{bottom:740.107315pt;}
.y9c{bottom:740.321333pt;}
.y29{bottom:740.661333pt;}
.y59{bottom:740.661467pt;}
.ya9{bottom:747.944000pt;}
.y10a{bottom:749.997600pt;}
.yd8{bottom:756.154533pt;}
.y28{bottom:756.661333pt;}
.y58{bottom:756.661467pt;}
.ye7{bottom:758.025587pt;}
.y96{bottom:761.014933pt;}
.y109{bottom:761.997600pt;}
.ya2{bottom:767.636533pt;}
.y27{bottom:772.661333pt;}
.y57{bottom:772.661467pt;}
.yd9{bottom:773.775867pt;}
.y108{bottom:773.997600pt;}
.ye8{bottom:775.943859pt;}
.yaa{bottom:777.484000pt;}
.ya3{bottom:778.416533pt;}
.y2{bottom:781.661334pt;}
.y97{bottom:785.962933pt;}
.y107{bottom:785.997600pt;}
.y26{bottom:788.661333pt;}
.y56{bottom:788.661467pt;}
.yda{bottom:791.415867pt;}
.ye9{bottom:793.852774pt;}
.y9e{bottom:794.068533pt;}
.y106{bottom:797.997600pt;}
.y25{bottom:804.661333pt;}
.y55{bottom:804.661467pt;}
.yab{bottom:807.005333pt;}
.ydb{bottom:809.027867pt;}
.y105{bottom:809.997600pt;}
.y98{bottom:810.920267pt;}
.yea{bottom:811.771046pt;}
.ya1{bottom:813.229867pt;}
.y9d{bottom:817.532533pt;}
.y24{bottom:820.661333pt;}
.y54{bottom:820.661467pt;}
.y104{bottom:821.997600pt;}
.ydc{bottom:826.667867pt;}
.yeb{bottom:829.689318pt;}
.ya0{bottom:831.019200pt;}
.y103{bottom:833.997600pt;}
.y99{bottom:835.868267pt;}
.yac{bottom:836.536000pt;}
.y23{bottom:836.661333pt;}
.yf4{bottom:836.661467pt;}
.yba{bottom:843.793333pt;}
.ydd{bottom:844.289200pt;}
.y102{bottom:845.997600pt;}
.yec{bottom:847.607590pt;}
.y9f{bottom:851.785867pt;}
.y22{bottom:852.661333pt;}
.y53{bottom:852.661467pt;}
.y101{bottom:857.997600pt;}
.yb9{bottom:858.478267pt;}
.y1{bottom:859.312000pt;}
.y9a{bottom:860.816267pt;}
.ydf{bottom:861.915067pt;}
.yed{bottom:865.525862pt;}
.yad{bottom:866.066667pt;}
.ya7{bottom:868.599067pt;}
.yc3{bottom:868.661333pt;}
.yf3{bottom:868.661467pt;}
.ya5{bottom:868.759067pt;}
.y100{bottom:869.997600pt;}
.yf1{bottom:872.515733pt;}
.ya6{bottom:877.239067pt;}
.ya4{bottom:877.399067pt;}
.ye0{bottom:879.536400pt;}
.yff{bottom:881.997600pt;}
.yee{bottom:883.453491pt;}
.yc2{bottom:884.661333pt;}
.yf2{bottom:884.661467pt;}
.y9b{bottom:885.764267pt;}
.y87{bottom:885.994800pt;}
.yfe{bottom:893.997600pt;}
.yc1{bottom:900.661333pt;}
.y86{bottom:900.661467pt;}
.ye3{bottom:901.994667pt;}
.y84{bottom:901.994800pt;}
.y49{bottom:903.548533pt;}
.yfd{bottom:905.997600pt;}
.yc0{bottom:916.661333pt;}
.y83{bottom:916.661467pt;}
.yfc{bottom:917.997600pt;}
.yfb{bottom:929.997600pt;}
.ybf{bottom:932.661333pt;}
.y48{bottom:932.661467pt;}
.yfa{bottom:941.997600pt;}
.y50{bottom:976.231067pt;}
.y4f{bottom:992.672000pt;}
.y21{bottom:1016.063067pt;}
.y82{bottom:1016.692933pt;}
.y51{bottom:1017.249333pt;}
.h12{height:23.392000pt;}
.h10{height:27.290667pt;}
.h11{height:27.290956pt;}
.h15{height:27.359283pt;}
.h7{height:28.560000pt;}
.he{height:29.344000pt;}
.hf{height:35.088000pt;}
.ha{height:37.728000pt;}
.hb{height:38.986667pt;}
.h6{height:40.800000pt;}
.hc{height:42.122667pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.hd{height:58.480000pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h16{height:183.090667pt;}
.h13{height:203.898667pt;}
.h14{height:282.926667pt;}
.h9{height:1046.666667pt;}
.h8{height:1046.929333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w4{width:309.920000pt;}
.w5{width:309.921333pt;}
.w2{width:566.928019pt;}
.w6{width:639.965333pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:6.140667pt;}
.x6{left:30.236267pt;}
.x40{left:31.197867pt;}
.xe{left:56.692933pt;}
.x13{left:59.981067pt;}
.x12{left:65.170400pt;}
.x14{left:68.160000pt;}
.x41{left:71.810933pt;}
.x27{left:78.638800pt;}
.x24{left:80.822800pt;}
.x7{left:86.929067pt;}
.x15{left:89.648732pt;}
.x1{left:90.706667pt;}
.x3d{left:92.684933pt;}
.x2{left:94.486667pt;}
.x3e{left:98.182267pt;}
.x8{left:102.047200pt;}
.x35{left:104.406267pt;}
.x16{left:111.150663pt;}
.x3b{left:116.838267pt;}
.x36{left:122.382267pt;}
.x25{left:123.774800pt;}
.x3a{left:125.639600pt;}
.x38{left:126.666267pt;}
.x37{left:131.024933pt;}
.x17{left:132.639395pt;}
.x3c{left:134.656933pt;}
.x39{left:137.763600pt;}
.x23{left:143.244133pt;}
.x18{left:154.128126pt;}
.x28{left:172.818933pt;}
.x19{left:175.630058pt;}
.x4{left:180.874667pt;}
.x1a{left:197.118789pt;}
.x1b{left:218.607521pt;}
.x21{left:233.404133pt;}
.x1c{left:240.096253pt;}
.x26{left:252.752133pt;}
.x1d{left:261.584985pt;}
.x3f{left:273.218800pt;}
.x1e{left:283.086916pt;}
.x1f{left:304.575647pt;}
.x29{left:310.082933pt;}
.x22{left:315.304133pt;}
.x20{left:326.064379pt;}
.x10{left:396.850400pt;}
.x2a{left:399.076667pt;}
.x3{left:404.408000pt;}
.x2c{left:407.960933pt;}
.x11{left:411.968533pt;}
.xc{left:427.086533pt;}
.xd{left:442.204667pt;}
.x2d{left:445.480417pt;}
.x2e{left:481.574359pt;}
.x2f{left:492.648711pt;}
.x30{left:535.362186pt;}
.x31{left:567.859273pt;}
.x34{left:579.921333pt;}
.x9{left:581.399467pt;}
.x32{left:599.927377pt;}
.x5{left:605.416800pt;}
.xb{left:621.430133pt;}
.xa{left:633.251600pt;}
.xf{left:659.069200pt;}
.x33{left:666.888271pt;}
}




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