
    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_141f8cef24d266183bd44d74.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_34b1675a6dce9a515b706f6f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8493ea8e0ba3ba993a9307b2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.898438;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_1d7b19016f91f4344dae837e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.904297;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_fd56dd44d08e65c8d5f51fc7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.870605;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_2ee7feb996c466f743bffdee.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2c923c567ade57db4648a0d7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.690918;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_67e9a2a74d2ba9f3ee65f8bd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e6c982d089f7752a59ee175d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8{transform:matrix(0.000000,-0.249983,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249983,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249983,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.250048,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250048,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250048,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.250163,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250163,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250163,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.176719,-0.176834,0.176719,0.176834,0,0);-ms-transform:matrix(0.176719,-0.176834,0.176719,0.176834,0,0);-webkit-transform:matrix(0.176719,-0.176834,0.176719,0.176834,0,0);}
.m9{transform:matrix(0.176759,-0.176794,0.176759,0.176794,0,0);-ms-transform:matrix(0.176759,-0.176794,0.176759,0.176794,0,0);-webkit-transform:matrix(0.176759,-0.176794,0.176759,0.176794,0,0);}
.md{transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,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);}
.m5{transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,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);}
.v7{vertical-align:-41.287800px;}
.v4{vertical-align:-4.421520px;}
.v5{vertical-align:-2.204400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.941600px;}
.v1{vertical-align:36.000000px;}
.v6{vertical-align:67.227000px;}
.v2{vertical-align:100.034880px;}
.ls58{letter-spacing:-11.910960px;}
.ls5a{letter-spacing:-10.765440px;}
.ls3{letter-spacing:-9.059040px;}
.ls1e{letter-spacing:-5.760000px;}
.ls15{letter-spacing:-4.752000px;}
.ls56{letter-spacing:-3.672000px;}
.ls16{letter-spacing:-2.232000px;}
.ls40{letter-spacing:-2.115990px;}
.ls55{letter-spacing:-1.969749px;}
.ls42{letter-spacing:-1.448140px;}
.ls2d{letter-spacing:-1.206783px;}
.ls3b{letter-spacing:-1.199061px;}
.ls37{letter-spacing:-0.965426px;}
.ls21{letter-spacing:-0.889536px;}
.ls2f{letter-spacing:-0.804522px;}
.ls22{letter-spacing:-0.800582px;}
.ls43{letter-spacing:-0.724070px;}
.ls3e{letter-spacing:-0.705330px;}
.ls35{letter-spacing:-0.617165px;}
.ls3c{letter-spacing:-0.563165px;}
.ls2a{letter-spacing:-0.540019px;}
.ls41{letter-spacing:-0.493731px;}
.ls48{letter-spacing:-0.476615px;}
.ls4f{letter-spacing:-0.468228px;}
.ls2c{letter-spacing:-0.462874px;}
.lsc{letter-spacing:-0.432000px;}
.ls38{letter-spacing:-0.424301px;}
.ls3f{letter-spacing:-0.423198px;}
.ls30{letter-spacing:-0.402261px;}
.ls4d{letter-spacing:-0.392850px;}
.ls9{letter-spacing:-0.384480px;}
.ls47{letter-spacing:-0.357461px;}
.ls39{letter-spacing:-0.352665px;}
.ls4e{letter-spacing:-0.351171px;}
.lsf{letter-spacing:-0.324000px;}
.ls2e{letter-spacing:-0.321809px;}
.ls19{letter-spacing:-0.319680px;}
.ls2b{letter-spacing:-0.308582px;}
.ls1d{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.276480px;}
.ls33{letter-spacing:-0.241357px;}
.ls53{letter-spacing:-0.240480px;}
.ls7{letter-spacing:-0.239760px;}
.ls4b{letter-spacing:-0.227853px;}
.ls12{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.192240px;}
.lse{letter-spacing:-0.191520px;}
.ls4a{letter-spacing:-0.178747px;}
.ls23{letter-spacing:-0.177907px;}
.ls51{letter-spacing:-0.175644px;}
.ls34{letter-spacing:-0.154291px;}
.ls4{letter-spacing:-0.144000px;}
.ls59{letter-spacing:-0.120240px;}
.ls13{letter-spacing:-0.102240px;}
.ls54{letter-spacing:-0.084240px;}
.ls36{letter-spacing:-0.080452px;}
.ls3d{letter-spacing:-0.070533px;}
.ls5{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.012974px;}
.ls28{letter-spacing:0.017346px;}
.ls27{letter-spacing:0.017946px;}
.ls45{letter-spacing:0.074632px;}
.ls20{letter-spacing:0.088954px;}
.ls11{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.120240px;}
.ls10{letter-spacing:0.131760px;}
.lsb{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.154291px;}
.ls8{letter-spacing:0.159840px;}
.ls2{letter-spacing:0.167760px;}
.ls50{letter-spacing:0.175586px;}
.ls49{letter-spacing:0.178731px;}
.ls1a{letter-spacing:0.216000px;}
.ls5b{letter-spacing:0.240480px;}
.ls32{letter-spacing:0.241357px;}
.ls52{letter-spacing:0.257184px;}
.ls46{letter-spacing:0.257352px;}
.ls4c{letter-spacing:0.261850px;}
.ls44{letter-spacing:0.261900px;}
.ls1f{letter-spacing:0.264240px;}
.lsa{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.306720px;}
.ls0{letter-spacing:0.335520px;}
.ls3a{letter-spacing:0.352665px;}
.ls29{letter-spacing:0.385728px;}
.ls31{letter-spacing:0.402261px;}
.ls5e{letter-spacing:0.422928px;}
.ls57{letter-spacing:0.864000px;}
.ls18{letter-spacing:0.959040px;}
.ls24{letter-spacing:0.978490px;}
.ls17{letter-spacing:1.646352px;}
.ls5c{letter-spacing:3.132000px;}
.ls1c{letter-spacing:49.284000px;}
.ls5f{letter-spacing:71.436384px;}
.ls1b{letter-spacing:378.520560px;}
.ls5d{letter-spacing:388.517040px;}
.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;}
}
.ws5{word-spacing:-66.413520px;}
.wsa6{word-spacing:-53.442720px;}
.ws2f{word-spacing:-53.250480px;}
.ws21{word-spacing:-53.058240px;}
.ws2d{word-spacing:-46.972800px;}
.ws3b{word-spacing:-44.115840px;}
.wsaf{word-spacing:-43.254000px;}
.wsa7{word-spacing:-42.677280px;}
.ws45{word-spacing:-40.032000px;}
.ws4{word-spacing:-39.888000px;}
.ws3{word-spacing:-38.154240px;}
.ws2a{word-spacing:-36.761040px;}
.ws99{word-spacing:-34.536266px;}
.ws6{word-spacing:-33.546960px;}
.wsa5{word-spacing:-33.306480px;}
.wsa9{word-spacing:-33.186240px;}
.wsac{word-spacing:-30.024000px;}
.ws8d{word-spacing:-29.700000px;}
.ws1e{word-spacing:-26.621280px;}
.ws1d{word-spacing:-26.429760px;}
.ws33{word-spacing:-24.192000px;}
.ws32{word-spacing:-24.084000px;}
.ws34{word-spacing:-23.412960px;}
.ws7{word-spacing:-22.377600px;}
.ws85{word-spacing:-20.886525px;}
.ws8b{word-spacing:-20.822384px;}
.ws14{word-spacing:-20.304000px;}
.ws9b{word-spacing:-20.232000px;}
.ws4f{word-spacing:-20.192467px;}
.ws22{word-spacing:-20.160000px;}
.ws35{word-spacing:-20.016000px;}
.ws51{word-spacing:-19.925606px;}
.ws15{word-spacing:-19.584000px;}
.ws50{word-spacing:-19.213978px;}
.ws5f{word-spacing:-18.584458px;}
.ws87{word-spacing:-18.463950px;}
.ws68{word-spacing:-18.182197px;}
.ws8c{word-spacing:-18.143316px;}
.ws6a{word-spacing:-18.101745px;}
.ws86{word-spacing:-17.809200px;}
.ws38{word-spacing:-17.784000px;}
.ws60{word-spacing:-17.779936px;}
.ws6d{word-spacing:-17.619032px;}
.ws5a{word-spacing:-17.589197px;}
.ws56{word-spacing:-17.434906px;}
.ws5d{word-spacing:-17.377675px;}
.ws58{word-spacing:-17.126323px;}
.ws59{word-spacing:-16.972032px;}
.ws57{word-spacing:-16.894886px;}
.ws61{word-spacing:-16.817741px;}
.ws84{word-spacing:-16.741097px;}
.ws6c{word-spacing:-16.734058px;}
.ws8a{word-spacing:-16.446510px;}
.ws9a{word-spacing:-16.344000px;}
.ws67{word-spacing:-16.293123px;}
.ws82{word-spacing:-16.204905px;}
.ws83{word-spacing:-16.085752px;}
.ws66{word-spacing:-15.940458px;}
.ws88{word-spacing:-15.919753px;}
.ws89{word-spacing:-15.802696px;}
.ws65{word-spacing:-15.587793px;}
.ws6b{word-spacing:-15.446727px;}
.ws4c{word-spacing:-14.256000px;}
.ws63{word-spacing:-13.698854px;}
.ws64{word-spacing:-13.274554px;}
.ws4b{word-spacing:-11.342160px;}
.ws94{word-spacing:-6.492960px;}
.wsa8{word-spacing:-4.037040px;}
.ws90{word-spacing:-3.780000px;}
.ws18{word-spacing:-3.744000px;}
.ws9c{word-spacing:-3.268080px;}
.ws52{word-spacing:-3.024000px;}
.ws9f{word-spacing:-2.592000px;}
.ws95{word-spacing:-2.442960px;}
.ws23{word-spacing:-2.304000px;}
.ws25{word-spacing:-2.160000px;}
.wsa4{word-spacing:-2.088000px;}
.ws26{word-spacing:-2.016000px;}
.wsae{word-spacing:-1.922400px;}
.ws9d{word-spacing:-1.872000px;}
.ws13{word-spacing:-1.803600px;}
.ws97{word-spacing:-1.684800px;}
.ws55{word-spacing:-1.601165px;}
.ws1a{word-spacing:-1.584000px;}
.ws40{word-spacing:-1.576800px;}
.ws31{word-spacing:-1.537920px;}
.ws36{word-spacing:-1.512000px;}
.ws3a{word-spacing:-1.440000px;}
.ws20{word-spacing:-1.436400px;}
.ws30{word-spacing:-1.153440px;}
.ws9e{word-spacing:-1.152000px;}
.ws12{word-spacing:-1.082160px;}
.ws48{word-spacing:-1.008000px;}
.ws24{word-spacing:-0.864000px;}
.ws9{word-spacing:-0.838800px;}
.ws75{word-spacing:-0.804522px;}
.wsb0{word-spacing:-0.792720px;}
.wsab{word-spacing:-0.792000px;}
.ws1b{word-spacing:-0.720000px;}
.ws2{word-spacing:-0.677376px;}
.ws2c{word-spacing:-0.432000px;}
.ws7b{word-spacing:-0.402261px;}
.ws6e{word-spacing:-0.385728px;}
.ws17{word-spacing:-0.384480px;}
.ws11{word-spacing:-0.360720px;}
.wsaa{word-spacing:-0.360000px;}
.ws79{word-spacing:-0.352665px;}
.wsc{word-spacing:-0.288000px;}
.ws4e{word-spacing:-0.264240px;}
.ws96{word-spacing:-0.252720px;}
.ws2e{word-spacing:-0.239760px;}
.ws41{word-spacing:-0.216000px;}
.ws1{word-spacing:-0.201312px;}
.ws46{word-spacing:-0.192240px;}
.ws8{word-spacing:-0.167760px;}
.ws19{word-spacing:-0.144000px;}
.ws2b{word-spacing:-0.131760px;}
.ws8f{word-spacing:-0.130925px;}
.ws92{word-spacing:-0.128592px;}
.ws4a{word-spacing:-0.120240px;}
.ws28{word-spacing:-0.108000px;}
.wsa0{word-spacing:-0.072000px;}
.wsa{word-spacing:0.000000px;}
.ws7c{word-spacing:0.070533px;}
.ws70{word-spacing:0.077146px;}
.ws37{word-spacing:0.102240px;}
.ws1c{word-spacing:0.144000px;}
.ws77{word-spacing:0.154291px;}
.ws81{word-spacing:0.160904px;}
.ws91{word-spacing:0.175644px;}
.ws54{word-spacing:0.177907px;}
.ws8e{word-spacing:0.178747px;}
.ws42{word-spacing:0.192240px;}
.wsad{word-spacing:0.216000px;}
.ws10{word-spacing:0.239760px;}
.ws76{word-spacing:0.241357px;}
.wsd{word-spacing:0.276480px;}
.ws6f{word-spacing:0.308582px;}
.ws73{word-spacing:0.321809px;}
.ws93{word-spacing:0.324000px;}
.ws16{word-spacing:0.384480px;}
.ws74{word-spacing:0.402261px;}
.ws7d{word-spacing:0.423198px;}
.ws47{word-spacing:0.432000px;}
.ws29{word-spacing:0.540000px;}
.wsb2{word-spacing:0.576720px;}
.wsf{word-spacing:0.719280px;}
.ws4d{word-spacing:0.720000px;}
.ws53{word-spacing:0.800582px;}
.ws80{word-spacing:0.804522px;}
.ws78{word-spacing:0.965426px;}
.ws49{word-spacing:1.152000px;}
.wse{word-spacing:1.198800px;}
.ws7a{word-spacing:1.199061px;}
.ws27{word-spacing:1.296000px;}
.wsb1{word-spacing:1.345680px;}
.ws1f{word-spacing:1.436400px;}
.wsb{word-spacing:1.872000px;}
.ws3f{word-spacing:2.077920px;}
.ws7e{word-spacing:2.115990px;}
.ws98{word-spacing:2.394000px;}
.ws3e{word-spacing:2.717280px;}
.ws3d{word-spacing:3.516480px;}
.ws5c{word-spacing:3.668842px;}
.ws5b{word-spacing:3.875544px;}
.wsa3{word-spacing:4.032000px;}
.ws3c{word-spacing:4.155840px;}
.ws39{word-spacing:4.752000px;}
.wsa2{word-spacing:12.078720px;}
.ws0{word-spacing:18.453600px;}
.ws71{word-spacing:21.628570px;}
.ws72{word-spacing:29.339290px;}
.ws69{word-spacing:54.159607px;}
.ws7f{word-spacing:68.867083px;}
.ws62{word-spacing:233.240160px;}
.wsa1{word-spacing:370.367040px;}
.ws43{word-spacing:655.488000px;}
.ws44{word-spacing:729.360000px;}
.ws5e{word-spacing:1028.179812px;}
._22{margin-left:-518.598923px;}
._26{margin-left:-257.793768px;}
._28{margin-left:-87.276960px;}
._13{margin-left:-15.840000px;}
._a{margin-left:-13.898952px;}
._3{margin-left:-12.749760px;}
._b{margin-left:-10.993248px;}
._19{margin-left:-9.523008px;}
._6{margin-left:-7.495200px;}
._d{margin-left:-6.454704px;}
._8{margin-left:-5.228496px;}
._7{margin-left:-3.330648px;}
._5{margin-left:-2.288160px;}
._1{margin-left:-1.040112px;}
._2{width:1.727928px;}
._4{width:3.168000px;}
._25{width:4.420272px;}
._18{width:5.566032px;}
._0{width:8.220240px;}
._17{width:10.828488px;}
._27{width:12.229704px;}
._1c{width:19.276800px;}
._1b{width:46.264320px;}
._24{width:54.023652px;}
._11{width:95.396040px;}
._10{width:103.624056px;}
._c{width:178.752240px;}
._23{width:195.088540px;}
._1a{width:200.700792px;}
._29{width:220.735368px;}
._14{width:297.360000px;}
._21{width:339.251012px;}
._16{width:368.141832px;}
._2a{width:388.517040px;}
._20{width:409.692884px;}
._1f{width:493.684846px;}
._e{width:518.941200px;}
._f{width:543.130200px;}
._15{width:729.504000px;}
._12{width:823.824000px;}
._1e{width:998.780744px;}
._1d{width:1438.804564px;}
._9{width:1588.091712px;}
.fc1f{color:rgb(40,128,194);}
.fc1e{color:rgb(157,157,157);}
.fc1d{color:rgb(46,45,77);}
.fcc{color:rgb(112,173,71);}
.fc18{color:rgb(202,134,120);}
.fcb{color:rgb(127,96,0);}
.fca{color:rgb(114,192,44);}
.fc7{color:transparent;}
.fc5{color:rgb(137,138,137);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,170,220);}
.fc1{color:rgb(0,170,218);}
.fc9{color:rgb(191,191,191);}
.fc11{color:rgb(0,112,192);}
.fc1b{color:rgb(46,46,46);}
.fc6{color:rgb(0,0,0);}
.fc15{color:rgb(100,174,139);}
.fc17{color:rgb(223,83,87);}
.fc10{color:rgb(0,32,96);}
.fc4{color:rgb(92,92,92);}
.fc0{color:rgb(91,91,91);}
.fc8{color:rgb(255,20,9);}
.fcd{color:rgb(56,87,35);}
.fc14{color:rgb(165,165,165);}
.fc19{color:rgb(107,164,44);}
.fce{color:rgb(0,176,80);}
.fcf{color:rgb(192,0,0);}
.fc16{color:rgb(13,141,192);}
.fc12{color:rgb(255,255,255);}
.fc13{color:rgb(157,195,230);}
.fc1a{color:rgb(232,144,56);}
.fc1c{color:rgb(97,103,113);}
.fs10{font-size:19.276800px;}
.fs13{font-size:40.777200px;}
.fs1b{font-size:58.528504px;}
.fs1c{font-size:58.548000px;}
.fs16{font-size:59.576858px;}
.fs17{font-size:59.582400px;}
.fs12{font-size:60.614400px;}
.fs1e{font-size:64.296000px;}
.fs1f{font-size:64.338000px;}
.fs19{font-size:65.462400px;}
.fs1a{font-size:65.475000px;}
.fs14{font-size:70.533000px;}
.fs7{font-size:72.000000px;}
.fs1d{font-size:74.632200px;}
.fs18{font-size:75.951000px;}
.fsf{font-size:77.145600px;}
.fs5{font-size:79.920000px;}
.fs11{font-size:80.452200px;}
.fs15{font-size:80.457600px;}
.fs20{font-size:84.240000px;}
.fse{font-size:88.953600px;}
.fs8{font-size:95.760000px;}
.fsb{font-size:102.240000px;}
.fs9{font-size:108.000000px;}
.fs4{font-size:120.240000px;}
.fs21{font-size:131.316600px;}
.fsa{font-size:131.760000px;}
.fs2{font-size:138.240000px;}
.fs1{font-size:144.000000px;}
.fsc{font-size:159.840000px;}
.fs0{font-size:167.760000px;}
.fs6{font-size:192.240000px;}
.fs3{font-size:239.760000px;}
.fsd{font-size:264.240000px;}
.y99{bottom:-182.863500px;}
.y98{bottom:-99.656250px;}
.y94{bottom:-29.122950px;}
.y7c{bottom:-14.327250px;}
.y7b{bottom:-9.367950px;}
.y0{bottom:0.000000px;}
.yfc{bottom:6.971250px;}
.y69{bottom:7.227900px;}
.y3f{bottom:7.854000px;}
.y10{bottom:8.448150px;}
.y74{bottom:8.452350px;}
.y6c{bottom:8.454000px;}
.yf9{bottom:8.506500px;}
.ydc{bottom:9.539850px;}
.y1b{bottom:9.605700px;}
.y67{bottom:9.737400px;}
.y4c{bottom:9.856350px;}
.yd9{bottom:10.091700px;}
.yf3{bottom:10.092000px;}
.y26{bottom:10.159950px;}
.y2d{bottom:10.855200px;}
.y3d{bottom:11.152650px;}
.yfa{bottom:11.694000px;}
.y5e{bottom:11.695950px;}
.y4a{bottom:12.372000px;}
.yb{bottom:13.324020px;}
.yb4{bottom:13.578244px;}
.ya3{bottom:13.802569px;}
.yf4{bottom:14.349600px;}
.yd{bottom:15.012120px;}
.yd0{bottom:15.085650px;}
.yce{bottom:15.086100px;}
.yb3{bottom:16.145007px;}
.ya2{bottom:16.414716px;}
.y95{bottom:19.919700px;}
.yfe{bottom:28.571100px;}
.yfb{bottom:28.578000px;}
.y68{bottom:28.827900px;}
.yf8{bottom:30.106350px;}
.ydb{bottom:31.139850px;}
.y66{bottom:31.332000px;}
.y25{bottom:31.759950px;}
.yde{bottom:32.787150px;}
.y97{bottom:33.144600px;}
.yee{bottom:33.964500px;}
.y40{bottom:33.972000px;}
.yf{bottom:33.972150px;}
.y3c{bottom:33.974400px;}
.y1f{bottom:34.572000px;}
.y89{bottom:37.002000px;}
.y75{bottom:40.224000px;}
.yb1{bottom:40.746600px;}
.ya0{bottom:41.451300px;}
.yd4{bottom:45.208950px;}
.ya{bottom:49.335900px;}
.y96{bottom:49.675950px;}
.yd6{bottom:51.012000px;}
.yc{bottom:51.024000px;}
.y24{bottom:53.359950px;}
.ycb{bottom:53.366280px;}
.ydd{bottom:54.377850px;}
.y10c{bottom:56.940780px;}
.yec{bottom:57.694920px;}
.yb2{bottom:60.535513px;}
.ya1{bottom:61.590109px;}
.yaf{bottom:67.011450px;}
.yd8{bottom:67.336350px;}
.ycd{bottom:73.914000px;}
.yca{bottom:78.575100px;}
.yc2{bottom:80.310750px;}
.yd5{bottom:83.412000px;}
.y51{bottom:83.912730px;}
.y3e{bottom:84.883050px;}
.y9e{bottom:87.146700px;}
.ycf{bottom:88.198500px;}
.yb5{bottom:93.846150px;}
.yeb{bottom:94.014960px;}
.ya4{bottom:95.489100px;}
.y6f{bottom:95.819400px;}
.ybd{bottom:96.768450px;}
.yaa{bottom:98.463000px;}
.yae{bottom:99.411450px;}
.yd7{bottom:99.736350px;}
.y59{bottom:105.564900px;}
.yf6{bottom:107.459100px;}
.yc1{bottom:112.710750px;}
.y50{bottom:112.712550px;}
.yd2{bottom:113.005500px;}
.y10b{bottom:120.476100px;}
.yf2{bottom:121.903740px;}
.yb6{bottom:126.018276px;}
.y6{bottom:128.833350px;}
.yf5{bottom:129.059100px;}
.y65{bottom:132.382500px;}
.yea{bottom:133.606320px;}
.yc9{bottom:134.492250px;}
.ye4{bottom:135.203700px;}
.y41{bottom:135.615900px;}
.y9b{bottom:140.322150px;}
.ya5{bottom:144.599893px;}
.yd3{bottom:145.441500px;}
.yb0{bottom:146.163000px;}
.y6d{bottom:146.631000px;}
.y9f{bottom:149.761500px;}
.y64{bottom:153.982500px;}
.yf1{bottom:157.915620px;}
.yb7{bottom:158.190402px;}
.y58{bottom:159.564900px;}
.y6a{bottom:164.340000px;}
.y9a{bottom:164.568000px;}
.y5{bottom:167.533350px;}
.ye9{bottom:173.449320px;}
.y63{bottom:175.582500px;}
.y93{bottom:176.415300px;}
.ye3{bottom:178.403700px;}
.y10a{bottom:184.203660px;}
.yb8{bottom:190.362528px;}
.yc8{bottom:190.991850px;}
.ya6{bottom:193.710686px;}
.yf0{bottom:193.927500px;}
.y62{bottom:197.182500px;}
.y5d{bottom:199.186350px;}
.y92{bottom:200.661150px;}
.y4{bottom:204.973350px;}
.y21{bottom:207.753480px;}
.y1a{bottom:211.101270px;}
.ye2{bottom:212.477220px;}
.y57{bottom:213.564900px;}
.y88{bottom:221.049600px;}
.yb9{bottom:222.534654px;}
.yd1{bottom:223.147500px;}
.y48{bottom:223.848600px;}
.y2e{bottom:224.752950px;}
.y9c{bottom:228.488700px;}
.y9d{bottom:228.764250px;}
.y20{bottom:236.553300px;}
.y19{bottom:239.901090px;}
.y5c{bottom:242.386350px;}
.y8f{bottom:242.540250px;}
.ya7{bottom:242.821480px;}
.y91{bottom:243.091350px;}
.y3{bottom:243.853350px;}
.y87{bottom:244.193400px;}
.y109{bottom:247.738980px;}
.yc7{bottom:248.322150px;}
.yba{bottom:254.706780px;}
.y71{bottom:260.931600px;}
.y8e{bottom:263.755350px;}
.y90{bottom:264.306450px;}
.y56{bottom:267.564900px;}
.yef{bottom:268.408050px;}
.yed{bottom:272.590500px;}
.ye8{bottom:273.685920px;}
.y46{bottom:282.787680px;}
.ybb{bottom:286.878906px;}
.y70{bottom:287.739450px;}
.y2f{bottom:290.340900px;}
.ya8{bottom:291.932273px;}
.y2{bottom:297.114270px;}
.ybf{bottom:303.776550px;}
.ydf{bottom:305.170950px;}
.y73{bottom:309.368550px;}
.yac{bottom:309.947700px;}
.y107{bottom:310.562400px;}
.y108{bottom:311.274300px;}
.y34{bottom:312.427650px;}
.y55{bottom:321.564900px;}
.y15{bottom:327.234210px;}
.y5b{bottom:328.786350px;}
.y31{bottom:329.749380px;}
.y106{bottom:332.162400px;}
.y72{bottom:336.176400px;}
.y2a{bottom:337.385130px;}
.y18{bottom:340.473030px;}
.y1{bottom:342.493350px;}
.yc0{bottom:344.470350px;}
.y28{bottom:347.031150px;}
.yad{bottom:351.360750px;}
.y45{bottom:354.995400px;}
.y14{bottom:356.034030px;}
.y8d{bottom:356.054850px;}
.y30{bottom:358.549200px;}
.y8c{bottom:359.636550px;}
.y29{bottom:366.184950px;}
.y17{bottom:369.272850px;}
.y83{bottom:369.279750px;}
.y6e{bottom:370.600200px;}
.y5a{bottom:371.986350px;}
.y86{bottom:373.412550px;}
.y54{bottom:375.564900px;}
.y82{bottom:376.718850px;}
.y8b{bottom:377.820900px;}
.y27{bottom:379.431150px;}
.y13{bottom:384.833850px;}
.ybe{bottom:385.164300px;}
.y43{bottom:391.721730px;}
.yab{bottom:392.773800px;}
.y84{bottom:393.525600px;}
.y85{bottom:397.658400px;}
.y16{bottom:398.072670px;}
.ye7{bottom:398.709060px;}
.y81{bottom:400.964550px;}
.y8a{bottom:403.444350px;}
.ye5{bottom:403.696050px;}
.ye0{bottom:404.273550px;}
.y35{bottom:407.603400px;}
.ycc{bottom:408.008850px;}
.ybc{bottom:417.655050px;}
.y42{bottom:420.521550px;}
.ya9{bottom:426.002250px;}
.y53{bottom:429.564900px;}
.y110{bottom:440.105310px;}
.y9{bottom:453.262320px;}
.y80{bottom:475.079700px;}
.y7a{bottom:483.343500px;}
.y52{bottom:483.564900px;}
.y105{bottom:491.039850px;}
.y4b{bottom:492.127500px;}
.y33{bottom:497.637000px;}
.y10f{bottom:503.640630px;}
.y1e{bottom:508.112730px;}
.y60{bottom:508.697550px;}
.y1d{bottom:511.903830px;}
.ye6{bottom:515.973300px;}
.y8{bottom:518.057460px;}
.y47{bottom:521.183550px;}
.y104{bottom:529.919850px;}
.y79{bottom:531.285900px;}
.y44{bottom:539.947500px;}
.y1c{bottom:540.703650px;}
.yc4{bottom:559.647000px;}
.y78{bottom:563.246100px;}
.y7f{bottom:563.246250px;}
.y10e{bottom:567.175950px;}
.y103{bottom:568.799850px;}
.ye1{bottom:572.112720px;}
.y4f{bottom:577.433550px;}
.y22{bottom:581.718150px;}
.y7{bottom:582.852600px;}
.y2c{bottom:586.243050px;}
.yc3{bottom:592.047000px;}
.y77{bottom:593.553450px;}
.y7e{bottom:593.553600px;}
.y102{bottom:601.199850px;}
.yff{bottom:608.449200px;}
.yfd{bottom:611.505750px;}
.yf7{bottom:616.529250px;}
.y111{bottom:618.779850px;}
.y76{bottom:624.136350px;}
.y2b{bottom:625.843200px;}
.y7d{bottom:628.820100px;}
.yc6{bottom:629.412930px;}
.y4e{bottom:637.733550px;}
.y101{bottom:640.079850px;}
.yc5{bottom:641.797650px;}
.y5f{bottom:653.218650px;}
.yda{bottom:656.947950px;}
.y6b{bottom:659.921550px;}
.y4d{bottom:665.200740px;}
.y10d{bottom:670.413750px;}
.y12{bottom:671.651760px;}
.y3b{bottom:678.572400px;}
.y100{bottom:678.959850px;}
.y3a{bottom:700.172400px;}
.y61{bottom:701.545500px;}
.y39{bottom:721.772400px;}
.y11{bottom:723.508500px;}
.ye{bottom:723.882000px;}
.y23{bottom:729.184050px;}
.y49{bottom:736.032000px;}
.y38{bottom:743.372400px;}
.y32{bottom:762.592650px;}
.y37{bottom:764.972400px;}
.y36{bottom:786.572400px;}
.h1e{height:14.034037px;}
.h25{height:28.253343px;}
.h24{height:41.997966px;}
.h30{height:42.610351px;}
.h31{height:42.624545px;}
.h2a{height:43.373582px;}
.h2b{height:43.377616px;}
.h33{height:46.809246px;}
.h2d{height:47.658417px;}
.h27{height:48.870277px;}
.h26{height:50.626714px;}
.h32{height:54.334282px;}
.h2c{height:55.294405px;}
.h23{height:55.743004px;}
.h20{height:55.743604px;}
.h28{height:55.746745px;}
.h1b{height:56.013431px;}
.h1c{height:56.014031px;}
.h34{height:57.678012px;}
.h22{height:57.746452px;}
.h1f{height:58.414268px;}
.h2e{height:58.697314px;}
.h19{height:60.460650px;}
.h8{height:64.546875px;}
.h3b{height:64.554675px;}
.h9{height:64.563675px;}
.h39{height:64.584075px;}
.h18{height:64.586916px;}
.h1d{height:66.952500px;}
.h36{height:69.715898px;}
.h11{height:70.839141px;}
.h10{height:74.830078px;}
.h35{height:75.519844px;}
.hf{height:78.416016px;}
.ha{height:85.847344px;}
.h15{height:87.538008px;}
.hc{height:96.820312px;}
.h14{height:104.835938px;}
.h6{height:107.793281px;}
.h3a{height:109.106419px;}
.h38{height:117.723280px;}
.hd{height:118.120781px;}
.h2{height:122.133867px;}
.h21{height:122.970004px;}
.h4{height:123.930000px;}
.h3{height:129.093750px;}
.h3d{height:133.197539px;}
.h3c{height:137.984766px;}
.h13{height:143.294062px;}
.h1{height:150.394219px;}
.h12{height:152.335819px;}
.he{height:167.761758px;}
.h7{height:172.340156px;}
.hb{height:185.882224px;}
.h3e{height:191.857852px;}
.h37{height:211.494000px;}
.h5{height:214.941094px;}
.h16{height:236.887031px;}
.h17{height:440.250000px;}
.h2f{height:448.537500px;}
.h29{height:457.431000px;}
.h1a{height:652.791000px;}
.h0{height:810.000000px;}
.w3{width:61.996500px;}
.w6{width:211.366500px;}
.w5{width:273.855000px;}
.w4{width:278.821500px;}
.w1{width:689.475000px;}
.w2{width:1110.798000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x7{left:10.804500px;}
.x4f{left:18.599100px;}
.x70{left:28.966800px;}
.x4{left:32.400000px;}
.x6d{left:40.109700px;}
.x5{left:41.522250px;}
.x3a{left:43.063650px;}
.x6e{left:45.068986px;}
.x46{left:46.442850px;}
.xa2{left:47.478600px;}
.x92{left:49.749900px;}
.x75{left:59.522250px;}
.x6a{left:60.600900px;}
.x41{left:69.233250px;}
.x1{left:71.586900px;}
.x86{left:76.743450px;}
.x21{left:82.173750px;}
.x16{left:86.307300px;}
.x4a{left:99.247800px;}
.xa3{left:101.478600px;}
.x78{left:102.714000px;}
.x15{left:103.938300px;}
.x65{left:105.075150px;}
.x49{left:109.509150px;}
.x73{left:114.828900px;}
.x76{left:123.814960px;}
.x79{left:124.896150px;}
.x6b{left:126.060042px;}
.x71{left:127.160550px;}
.x4b{left:130.360950px;}
.x3d{left:134.146500px;}
.x1f{left:136.997700px;}
.x14{left:139.187850px;}
.x6f{left:142.216950px;}
.x30{left:144.883650px;}
.x39{left:149.522250px;}
.x2f{left:162.223650px;}
.x77{left:165.921720px;}
.xa4{left:167.349600px;}
.x6c{left:168.930725px;}
.x56{left:171.373800px;}
.x72{left:172.493250px;}
.x69{left:177.613500px;}
.x74{left:184.677900px;}
.xa1{left:202.860000px;}
.x52{left:211.936950px;}
.x48{left:240.991200px;}
.x8c{left:243.783750px;}
.x4e{left:246.928500px;}
.x85{left:250.231500px;}
.x8b{left:258.714750px;}
.x2c{left:273.481650px;}
.x7f{left:284.051700px;}
.x5f{left:288.653400px;}
.x4d{left:294.199950px;}
.x4c{left:295.528200px;}
.x31{left:299.249130px;}
.x67{left:303.929400px;}
.x57{left:314.562450px;}
.xd{left:361.960680px;}
.x8{left:365.608950px;}
.x10{left:389.167050px;}
.x34{left:401.845950px;}
.x37{left:407.642250px;}
.x36{left:413.214750px;}
.x9a{left:435.892290px;}
.x66{left:443.763450px;}
.x55{left:447.147150px;}
.xf{left:448.815000px;}
.x3c{left:454.222500px;}
.xe{left:465.549060px;}
.x99{left:485.220750px;}
.x5e{left:489.150450px;}
.x9b{left:497.996250px;}
.x19{left:505.392750px;}
.x5d{left:518.828850px;}
.x9{left:536.990910px;}
.xaa{left:540.637230px;}
.xa9{left:559.188390px;}
.x80{left:561.318750px;}
.x87{left:574.891650px;}
.x43{left:580.641600px;}
.x59{left:588.557100px;}
.x58{left:589.609650px;}
.x5a{left:598.030200px;}
.x68{left:601.135500px;}
.x42{left:603.508950px;}
.x20{left:608.323950px;}
.x5b{left:609.671700px;}
.xa7{left:612.486930px;}
.x88{left:623.131650px;}
.xa6{left:625.078650px;}
.x82{left:628.166250px;}
.x8a{left:634.725150px;}
.x2a{left:636.722550px;}
.x2d{left:638.414550px;}
.x2e{left:640.928250px;}
.x83{left:644.719410px;}
.x81{left:650.336250px;}
.x64{left:653.647950px;}
.x35{left:656.401740px;}
.x8f{left:663.150150px;}
.x7d{left:665.081700px;}
.x53{left:671.745450px;}
.x7c{left:691.352700px;}
.x2b{left:696.498150px;}
.xa8{left:700.148370px;}
.x89{left:716.569650px;}
.x33{left:718.003950px;}
.x47{left:720.000000px;}
.xa0{left:743.400000px;}
.x5c{left:756.485250px;}
.x84{left:769.115700px;}
.x12{left:787.876050px;}
.x13{left:789.863070px;}
.x3e{left:793.204950px;}
.x3f{left:796.084950px;}
.x45{left:822.085650px;}
.x18{left:823.821390px;}
.x17{left:835.168950px;}
.x44{left:850.345950px;}
.x51{left:851.935050px;}
.x50{left:853.263300px;}
.x11{left:865.743660px;}
.xa5{left:867.239400px;}
.x90{left:869.182230px;}
.x91{left:877.192770px;}
.x3{left:887.143920px;}
.x62{left:891.097800px;}
.x7e{left:897.275700px;}
.x8d{left:909.701850px;}
.x8e{left:918.692850px;}
.x63{left:928.158000px;}
.x2{left:932.324100px;}
.x7b{left:950.945550px;}
.x96{left:954.985620px;}
.xb{left:978.248100px;}
.x40{left:983.104950px;}
.x1a{left:986.807850px;}
.x9f{left:988.865100px;}
.x9e{left:990.902850px;}
.x61{left:997.734750px;}
.xa{left:998.956200px;}
.x7a{left:1000.625550px;}
.xc{left:1002.379620px;}
.x54{left:1015.752150px;}
.x60{left:1020.532950px;}
.x93{left:1039.717200px;}
.x1e{left:1058.324490px;}
.x1d{left:1068.953850px;}
.x97{left:1083.112320px;}
.x32{left:1127.502000px;}
.x9c{left:1146.318900px;}
.x98{left:1149.167820px;}
.x94{left:1188.046200px;}
.x1c{left:1218.826650px;}
.x3b{left:1221.658800px;}
.x38{left:1234.754850px;}
.x1b{left:1239.011550px;}
.x95{left:1254.730800px;}
.x9d{left:1286.178900px;}
.x25{left:1330.961550px;}
.x22{left:1333.481550px;}
.x24{left:1334.741550px;}
.x23{left:1345.541550px;}
.x26{left:1356.521700px;}
.x27{left:1362.461550px;}
.x28{left:1408.901550px;}
.x29{left:1410.161550px;}
.x6{left:1418.980500px;}
@media print{
.v7{vertical-align:-36.700267pt;}
.v4{vertical-align:-3.930240pt;}
.v5{vertical-align:-1.959467pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.725867pt;}
.v1{vertical-align:32.000000pt;}
.v6{vertical-align:59.757333pt;}
.v2{vertical-align:88.919893pt;}
.ls58{letter-spacing:-10.587520pt;}
.ls5a{letter-spacing:-9.569280pt;}
.ls3{letter-spacing:-8.052480pt;}
.ls1e{letter-spacing:-5.120000pt;}
.ls15{letter-spacing:-4.224000pt;}
.ls56{letter-spacing:-3.264000pt;}
.ls16{letter-spacing:-1.984000pt;}
.ls40{letter-spacing:-1.880880pt;}
.ls55{letter-spacing:-1.750888pt;}
.ls42{letter-spacing:-1.287235pt;}
.ls2d{letter-spacing:-1.072696pt;}
.ls3b{letter-spacing:-1.065832pt;}
.ls37{letter-spacing:-0.858157pt;}
.ls21{letter-spacing:-0.790699pt;}
.ls2f{letter-spacing:-0.715131pt;}
.ls22{letter-spacing:-0.711629pt;}
.ls43{letter-spacing:-0.643618pt;}
.ls3e{letter-spacing:-0.626960pt;}
.ls35{letter-spacing:-0.548591pt;}
.ls3c{letter-spacing:-0.500591pt;}
.ls2a{letter-spacing:-0.480017pt;}
.ls41{letter-spacing:-0.438872pt;}
.ls48{letter-spacing:-0.423658pt;}
.ls4f{letter-spacing:-0.416203pt;}
.ls2c{letter-spacing:-0.411443pt;}
.lsc{letter-spacing:-0.384000pt;}
.ls38{letter-spacing:-0.377156pt;}
.ls3f{letter-spacing:-0.376176pt;}
.ls30{letter-spacing:-0.357565pt;}
.ls4d{letter-spacing:-0.349200pt;}
.ls9{letter-spacing:-0.341760pt;}
.ls47{letter-spacing:-0.317743pt;}
.ls39{letter-spacing:-0.313480pt;}
.ls4e{letter-spacing:-0.312152pt;}
.lsf{letter-spacing:-0.288000pt;}
.ls2e{letter-spacing:-0.286052pt;}
.ls19{letter-spacing:-0.284160pt;}
.ls2b{letter-spacing:-0.274295pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.245760pt;}
.ls33{letter-spacing:-0.214539pt;}
.ls53{letter-spacing:-0.213760pt;}
.ls7{letter-spacing:-0.213120pt;}
.ls4b{letter-spacing:-0.202536pt;}
.ls12{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.170880pt;}
.lse{letter-spacing:-0.170240pt;}
.ls4a{letter-spacing:-0.158886pt;}
.ls23{letter-spacing:-0.158140pt;}
.ls51{letter-spacing:-0.156128pt;}
.ls34{letter-spacing:-0.137148pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls59{letter-spacing:-0.106880pt;}
.ls13{letter-spacing:-0.090880pt;}
.ls54{letter-spacing:-0.074880pt;}
.ls36{letter-spacing:-0.071513pt;}
.ls3d{letter-spacing:-0.062696pt;}
.ls5{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.011532pt;}
.ls28{letter-spacing:0.015419pt;}
.ls27{letter-spacing:0.015952pt;}
.ls45{letter-spacing:0.066340pt;}
.ls20{letter-spacing:0.079070pt;}
.ls11{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.106880pt;}
.ls10{letter-spacing:0.117120pt;}
.lsb{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.137148pt;}
.ls8{letter-spacing:0.142080pt;}
.ls2{letter-spacing:0.149120pt;}
.ls50{letter-spacing:0.156076pt;}
.ls49{letter-spacing:0.158872pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls5b{letter-spacing:0.213760pt;}
.ls32{letter-spacing:0.214539pt;}
.ls52{letter-spacing:0.228608pt;}
.ls46{letter-spacing:0.228757pt;}
.ls4c{letter-spacing:0.232755pt;}
.ls44{letter-spacing:0.232800pt;}
.ls1f{letter-spacing:0.234880pt;}
.lsa{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.272640pt;}
.ls0{letter-spacing:0.298240pt;}
.ls3a{letter-spacing:0.313480pt;}
.ls29{letter-spacing:0.342869pt;}
.ls31{letter-spacing:0.357565pt;}
.ls5e{letter-spacing:0.375936pt;}
.ls57{letter-spacing:0.768000pt;}
.ls18{letter-spacing:0.852480pt;}
.ls24{letter-spacing:0.869769pt;}
.ls17{letter-spacing:1.463424pt;}
.ls5c{letter-spacing:2.784000pt;}
.ls1c{letter-spacing:43.808000pt;}
.ls5f{letter-spacing:63.499008pt;}
.ls1b{letter-spacing:336.462720pt;}
.ls5d{letter-spacing:345.348480pt;}
.ws5{word-spacing:-59.034240pt;}
.wsa6{word-spacing:-47.504640pt;}
.ws2f{word-spacing:-47.333760pt;}
.ws21{word-spacing:-47.162880pt;}
.ws2d{word-spacing:-41.753600pt;}
.ws3b{word-spacing:-39.214080pt;}
.wsaf{word-spacing:-38.448000pt;}
.wsa7{word-spacing:-37.935360pt;}
.ws45{word-spacing:-35.584000pt;}
.ws4{word-spacing:-35.456000pt;}
.ws3{word-spacing:-33.914880pt;}
.ws2a{word-spacing:-32.676480pt;}
.ws99{word-spacing:-30.698903pt;}
.ws6{word-spacing:-29.819520pt;}
.wsa5{word-spacing:-29.605760pt;}
.wsa9{word-spacing:-29.498880pt;}
.wsac{word-spacing:-26.688000pt;}
.ws8d{word-spacing:-26.400000pt;}
.ws1e{word-spacing:-23.663360pt;}
.ws1d{word-spacing:-23.493120pt;}
.ws33{word-spacing:-21.504000pt;}
.ws32{word-spacing:-21.408000pt;}
.ws34{word-spacing:-20.811520pt;}
.ws7{word-spacing:-19.891200pt;}
.ws85{word-spacing:-18.565800pt;}
.ws8b{word-spacing:-18.508786pt;}
.ws14{word-spacing:-18.048000pt;}
.ws9b{word-spacing:-17.984000pt;}
.ws4f{word-spacing:-17.948860pt;}
.ws22{word-spacing:-17.920000pt;}
.ws35{word-spacing:-17.792000pt;}
.ws51{word-spacing:-17.711650pt;}
.ws15{word-spacing:-17.408000pt;}
.ws50{word-spacing:-17.079091pt;}
.ws5f{word-spacing:-16.519518pt;}
.ws87{word-spacing:-16.412400pt;}
.ws68{word-spacing:-16.161953pt;}
.ws8c{word-spacing:-16.127392pt;}
.ws6a{word-spacing:-16.090440pt;}
.ws86{word-spacing:-15.830400pt;}
.ws38{word-spacing:-15.808000pt;}
.ws60{word-spacing:-15.804388pt;}
.ws6d{word-spacing:-15.661362pt;}
.ws5a{word-spacing:-15.634842pt;}
.ws56{word-spacing:-15.497694pt;}
.ws5d{word-spacing:-15.446822pt;}
.ws58{word-spacing:-15.223398pt;}
.ws59{word-spacing:-15.086251pt;}
.ws57{word-spacing:-15.017677pt;}
.ws61{word-spacing:-14.949103pt;}
.ws84{word-spacing:-14.880975pt;}
.ws6c{word-spacing:-14.874718pt;}
.ws8a{word-spacing:-14.619120pt;}
.ws9a{word-spacing:-14.528000pt;}
.ws67{word-spacing:-14.482776pt;}
.ws82{word-spacing:-14.404360pt;}
.ws83{word-spacing:-14.298446pt;}
.ws66{word-spacing:-14.169296pt;}
.ws88{word-spacing:-14.150892pt;}
.ws89{word-spacing:-14.046841pt;}
.ws65{word-spacing:-13.855816pt;}
.ws6b{word-spacing:-13.730424pt;}
.ws4c{word-spacing:-12.672000pt;}
.ws63{word-spacing:-12.176759pt;}
.ws64{word-spacing:-11.799603pt;}
.ws4b{word-spacing:-10.081920pt;}
.ws94{word-spacing:-5.771520pt;}
.wsa8{word-spacing:-3.588480pt;}
.ws90{word-spacing:-3.360000pt;}
.ws18{word-spacing:-3.328000pt;}
.ws9c{word-spacing:-2.904960pt;}
.ws52{word-spacing:-2.688000pt;}
.ws9f{word-spacing:-2.304000pt;}
.ws95{word-spacing:-2.171520pt;}
.ws23{word-spacing:-2.048000pt;}
.ws25{word-spacing:-1.920000pt;}
.wsa4{word-spacing:-1.856000pt;}
.ws26{word-spacing:-1.792000pt;}
.wsae{word-spacing:-1.708800pt;}
.ws9d{word-spacing:-1.664000pt;}
.ws13{word-spacing:-1.603200pt;}
.ws97{word-spacing:-1.497600pt;}
.ws55{word-spacing:-1.423258pt;}
.ws1a{word-spacing:-1.408000pt;}
.ws40{word-spacing:-1.401600pt;}
.ws31{word-spacing:-1.367040pt;}
.ws36{word-spacing:-1.344000pt;}
.ws3a{word-spacing:-1.280000pt;}
.ws20{word-spacing:-1.276800pt;}
.ws30{word-spacing:-1.025280pt;}
.ws9e{word-spacing:-1.024000pt;}
.ws12{word-spacing:-0.961920pt;}
.ws48{word-spacing:-0.896000pt;}
.ws24{word-spacing:-0.768000pt;}
.ws9{word-spacing:-0.745600pt;}
.ws75{word-spacing:-0.715131pt;}
.wsb0{word-spacing:-0.704640pt;}
.wsab{word-spacing:-0.704000pt;}
.ws1b{word-spacing:-0.640000pt;}
.ws2{word-spacing:-0.602112pt;}
.ws2c{word-spacing:-0.384000pt;}
.ws7b{word-spacing:-0.357565pt;}
.ws6e{word-spacing:-0.342869pt;}
.ws17{word-spacing:-0.341760pt;}
.ws11{word-spacing:-0.320640pt;}
.wsaa{word-spacing:-0.320000pt;}
.ws79{word-spacing:-0.313480pt;}
.wsc{word-spacing:-0.256000pt;}
.ws4e{word-spacing:-0.234880pt;}
.ws96{word-spacing:-0.224640pt;}
.ws2e{word-spacing:-0.213120pt;}
.ws41{word-spacing:-0.192000pt;}
.ws1{word-spacing:-0.178944pt;}
.ws46{word-spacing:-0.170880pt;}
.ws8{word-spacing:-0.149120pt;}
.ws19{word-spacing:-0.128000pt;}
.ws2b{word-spacing:-0.117120pt;}
.ws8f{word-spacing:-0.116378pt;}
.ws92{word-spacing:-0.114304pt;}
.ws4a{word-spacing:-0.106880pt;}
.ws28{word-spacing:-0.096000pt;}
.wsa0{word-spacing:-0.064000pt;}
.wsa{word-spacing:0.000000pt;}
.ws7c{word-spacing:0.062696pt;}
.ws70{word-spacing:0.068574pt;}
.ws37{word-spacing:0.090880pt;}
.ws1c{word-spacing:0.128000pt;}
.ws77{word-spacing:0.137148pt;}
.ws81{word-spacing:0.143026pt;}
.ws91{word-spacing:0.156128pt;}
.ws54{word-spacing:0.158140pt;}
.ws8e{word-spacing:0.158886pt;}
.ws42{word-spacing:0.170880pt;}
.wsad{word-spacing:0.192000pt;}
.ws10{word-spacing:0.213120pt;}
.ws76{word-spacing:0.214539pt;}
.wsd{word-spacing:0.245760pt;}
.ws6f{word-spacing:0.274295pt;}
.ws73{word-spacing:0.286052pt;}
.ws93{word-spacing:0.288000pt;}
.ws16{word-spacing:0.341760pt;}
.ws74{word-spacing:0.357565pt;}
.ws7d{word-spacing:0.376176pt;}
.ws47{word-spacing:0.384000pt;}
.ws29{word-spacing:0.480000pt;}
.wsb2{word-spacing:0.512640pt;}
.wsf{word-spacing:0.639360pt;}
.ws4d{word-spacing:0.640000pt;}
.ws53{word-spacing:0.711629pt;}
.ws80{word-spacing:0.715131pt;}
.ws78{word-spacing:0.858157pt;}
.ws49{word-spacing:1.024000pt;}
.wse{word-spacing:1.065600pt;}
.ws7a{word-spacing:1.065832pt;}
.ws27{word-spacing:1.152000pt;}
.wsb1{word-spacing:1.196160pt;}
.ws1f{word-spacing:1.276800pt;}
.wsb{word-spacing:1.664000pt;}
.ws3f{word-spacing:1.847040pt;}
.ws7e{word-spacing:1.880880pt;}
.ws98{word-spacing:2.128000pt;}
.ws3e{word-spacing:2.415360pt;}
.ws3d{word-spacing:3.125760pt;}
.ws5c{word-spacing:3.261193pt;}
.ws5b{word-spacing:3.444928pt;}
.wsa3{word-spacing:3.584000pt;}
.ws3c{word-spacing:3.694080pt;}
.ws39{word-spacing:4.224000pt;}
.wsa2{word-spacing:10.736640pt;}
.ws0{word-spacing:16.403200pt;}
.ws71{word-spacing:19.225395pt;}
.ws72{word-spacing:26.079369pt;}
.ws69{word-spacing:48.141873pt;}
.ws7f{word-spacing:61.215185pt;}
.ws62{word-spacing:207.324587pt;}
.wsa1{word-spacing:329.215147pt;}
.ws43{word-spacing:582.656000pt;}
.ws44{word-spacing:648.320000pt;}
.ws5e{word-spacing:913.937611pt;}
._22{margin-left:-460.976820pt;}
._26{margin-left:-229.150016pt;}
._28{margin-left:-77.579520pt;}
._13{margin-left:-14.080000pt;}
._a{margin-left:-12.354624pt;}
._3{margin-left:-11.333120pt;}
._b{margin-left:-9.771776pt;}
._19{margin-left:-8.464896pt;}
._6{margin-left:-6.662400pt;}
._d{margin-left:-5.737515pt;}
._8{margin-left:-4.647552pt;}
._7{margin-left:-2.960576pt;}
._5{margin-left:-2.033920pt;}
._1{margin-left:-0.924544pt;}
._2{width:1.535936pt;}
._4{width:2.816000pt;}
._25{width:3.929131pt;}
._18{width:4.947584pt;}
._0{width:7.306880pt;}
._17{width:9.625323pt;}
._27{width:10.870848pt;}
._1c{width:17.134933pt;}
._1b{width:41.123840pt;}
._24{width:48.021024pt;}
._11{width:84.796480pt;}
._10{width:92.110272pt;}
._c{width:158.890880pt;}
._23{width:173.412035pt;}
._1a{width:178.400704pt;}
._29{width:196.209216pt;}
._14{width:264.320000pt;}
._21{width:301.556455pt;}
._16{width:327.237184pt;}
._2a{width:345.348480pt;}
._20{width:364.171452pt;}
._1f{width:438.830974pt;}
._e{width:461.281067pt;}
._f{width:482.782400pt;}
._15{width:648.448000pt;}
._12{width:732.288000pt;}
._1e{width:887.805105pt;}
._1d{width:1278.937390pt;}
._9{width:1411.637077pt;}
.fs10{font-size:17.134933pt;}
.fs13{font-size:36.246400pt;}
.fs1b{font-size:52.025337pt;}
.fs1c{font-size:52.042667pt;}
.fs16{font-size:52.957207pt;}
.fs17{font-size:52.962133pt;}
.fs12{font-size:53.879467pt;}
.fs1e{font-size:57.152000pt;}
.fs1f{font-size:57.189333pt;}
.fs19{font-size:58.188800pt;}
.fs1a{font-size:58.200000pt;}
.fs14{font-size:62.696000pt;}
.fs7{font-size:64.000000pt;}
.fs1d{font-size:66.339733pt;}
.fs18{font-size:67.512000pt;}
.fsf{font-size:68.573867pt;}
.fs5{font-size:71.040000pt;}
.fs11{font-size:71.513067pt;}
.fs15{font-size:71.517867pt;}
.fs20{font-size:74.880000pt;}
.fse{font-size:79.069867pt;}
.fs8{font-size:85.120000pt;}
.fsb{font-size:90.880000pt;}
.fs9{font-size:96.000000pt;}
.fs4{font-size:106.880000pt;}
.fs21{font-size:116.725867pt;}
.fsa{font-size:117.120000pt;}
.fs2{font-size:122.880000pt;}
.fs1{font-size:128.000000pt;}
.fsc{font-size:142.080000pt;}
.fs0{font-size:149.120000pt;}
.fs6{font-size:170.880000pt;}
.fs3{font-size:213.120000pt;}
.fsd{font-size:234.880000pt;}
.y99{bottom:-162.545333pt;}
.y98{bottom:-88.583333pt;}
.y94{bottom:-25.887067pt;}
.y7c{bottom:-12.735333pt;}
.y7b{bottom:-8.327067pt;}
.y0{bottom:0.000000pt;}
.yfc{bottom:6.196667pt;}
.y69{bottom:6.424800pt;}
.y3f{bottom:6.981333pt;}
.y10{bottom:7.509467pt;}
.y74{bottom:7.513200pt;}
.y6c{bottom:7.514667pt;}
.yf9{bottom:7.561333pt;}
.ydc{bottom:8.479867pt;}
.y1b{bottom:8.538400pt;}
.y67{bottom:8.655467pt;}
.y4c{bottom:8.761200pt;}
.yd9{bottom:8.970400pt;}
.yf3{bottom:8.970667pt;}
.y26{bottom:9.031067pt;}
.y2d{bottom:9.649067pt;}
.y3d{bottom:9.913467pt;}
.yfa{bottom:10.394667pt;}
.y5e{bottom:10.396400pt;}
.y4a{bottom:10.997333pt;}
.yb{bottom:11.843573pt;}
.yb4{bottom:12.069550pt;}
.ya3{bottom:12.268950pt;}
.yf4{bottom:12.755200pt;}
.yd{bottom:13.344107pt;}
.yd0{bottom:13.409467pt;}
.yce{bottom:13.409867pt;}
.yb3{bottom:14.351117pt;}
.ya2{bottom:14.590858pt;}
.y95{bottom:17.706400pt;}
.yfe{bottom:25.396533pt;}
.yfb{bottom:25.402667pt;}
.y68{bottom:25.624800pt;}
.yf8{bottom:26.761200pt;}
.ydb{bottom:27.679867pt;}
.y66{bottom:27.850667pt;}
.y25{bottom:28.231067pt;}
.yde{bottom:29.144133pt;}
.y97{bottom:29.461867pt;}
.yee{bottom:30.190667pt;}
.y40{bottom:30.197333pt;}
.yf{bottom:30.197467pt;}
.y3c{bottom:30.199467pt;}
.y1f{bottom:30.730667pt;}
.y89{bottom:32.890667pt;}
.y75{bottom:35.754667pt;}
.yb1{bottom:36.219200pt;}
.ya0{bottom:36.845600pt;}
.yd4{bottom:40.185733pt;}
.ya{bottom:43.854133pt;}
.y96{bottom:44.156400pt;}
.yd6{bottom:45.344000pt;}
.yc{bottom:45.354667pt;}
.y24{bottom:47.431067pt;}
.ycb{bottom:47.436693pt;}
.ydd{bottom:48.335867pt;}
.y10c{bottom:50.614027pt;}
.yec{bottom:51.284373pt;}
.yb2{bottom:53.809345pt;}
.ya1{bottom:54.746764pt;}
.yaf{bottom:59.565733pt;}
.yd8{bottom:59.854533pt;}
.ycd{bottom:65.701333pt;}
.yca{bottom:69.844533pt;}
.yc2{bottom:71.387333pt;}
.yd5{bottom:74.144000pt;}
.y51{bottom:74.589093pt;}
.y3e{bottom:75.451600pt;}
.y9e{bottom:77.463733pt;}
.ycf{bottom:78.398667pt;}
.yb5{bottom:83.418800pt;}
.yeb{bottom:83.568853pt;}
.ya4{bottom:84.879200pt;}
.y6f{bottom:85.172800pt;}
.ybd{bottom:86.016400pt;}
.yaa{bottom:87.522667pt;}
.yae{bottom:88.365733pt;}
.yd7{bottom:88.654533pt;}
.y59{bottom:93.835467pt;}
.yf6{bottom:95.519200pt;}
.yc1{bottom:100.187333pt;}
.y50{bottom:100.188933pt;}
.yd2{bottom:100.449333pt;}
.y10b{bottom:107.089867pt;}
.yf2{bottom:108.358880pt;}
.yb6{bottom:112.016245pt;}
.y6{bottom:114.518533pt;}
.yf5{bottom:114.719200pt;}
.y65{bottom:117.673333pt;}
.yea{bottom:118.761173pt;}
.yc9{bottom:119.548667pt;}
.ye4{bottom:120.181067pt;}
.y41{bottom:120.547467pt;}
.y9b{bottom:124.730800pt;}
.ya5{bottom:128.533238pt;}
.yd3{bottom:129.281333pt;}
.yb0{bottom:129.922667pt;}
.y6d{bottom:130.338667pt;}
.y9f{bottom:133.121333pt;}
.y64{bottom:136.873333pt;}
.yf1{bottom:140.369440pt;}
.yb7{bottom:140.613691pt;}
.y58{bottom:141.835467pt;}
.y6a{bottom:146.080000pt;}
.y9a{bottom:146.282667pt;}
.y5{bottom:148.918533pt;}
.ye9{bottom:154.177173pt;}
.y63{bottom:156.073333pt;}
.y93{bottom:156.813600pt;}
.ye3{bottom:158.581067pt;}
.y10a{bottom:163.736587pt;}
.yb8{bottom:169.211136pt;}
.yc8{bottom:169.770533pt;}
.ya6{bottom:172.187277pt;}
.yf0{bottom:172.380000pt;}
.y62{bottom:175.273333pt;}
.y5d{bottom:177.054533pt;}
.y92{bottom:178.365467pt;}
.y4{bottom:182.198533pt;}
.y21{bottom:184.669760pt;}
.y1a{bottom:187.645573pt;}
.ye2{bottom:188.868640pt;}
.y57{bottom:189.835467pt;}
.y88{bottom:196.488533pt;}
.yb9{bottom:197.808581pt;}
.yd1{bottom:198.353333pt;}
.y48{bottom:198.976533pt;}
.y2e{bottom:199.780400pt;}
.y9c{bottom:203.101067pt;}
.y9d{bottom:203.346000pt;}
.y20{bottom:210.269600pt;}
.y19{bottom:213.245413pt;}
.y5c{bottom:215.454533pt;}
.y8f{bottom:215.591333pt;}
.ya7{bottom:215.841315pt;}
.y91{bottom:216.081200pt;}
.y3{bottom:216.758533pt;}
.y87{bottom:217.060800pt;}
.y109{bottom:220.212427pt;}
.yc7{bottom:220.730800pt;}
.yba{bottom:226.406027pt;}
.y71{bottom:231.939200pt;}
.y8e{bottom:234.449200pt;}
.y90{bottom:234.939067pt;}
.y56{bottom:237.835467pt;}
.yef{bottom:238.584933pt;}
.yed{bottom:242.302667pt;}
.ye8{bottom:243.276373pt;}
.y46{bottom:251.366827pt;}
.ybb{bottom:255.003472pt;}
.y70{bottom:255.768400pt;}
.y2f{bottom:258.080800pt;}
.ya8{bottom:259.495354pt;}
.y2{bottom:264.101573pt;}
.ybf{bottom:270.023600pt;}
.ydf{bottom:271.263067pt;}
.y73{bottom:274.994267pt;}
.yac{bottom:275.509067pt;}
.y107{bottom:276.055467pt;}
.y108{bottom:276.688267pt;}
.y34{bottom:277.713467pt;}
.y55{bottom:285.835467pt;}
.y15{bottom:290.874853pt;}
.y5b{bottom:292.254533pt;}
.y31{bottom:293.110560pt;}
.y106{bottom:295.255467pt;}
.y72{bottom:298.823467pt;}
.y2a{bottom:299.897893pt;}
.y18{bottom:302.642693pt;}
.y1{bottom:304.438533pt;}
.yc0{bottom:306.195867pt;}
.y28{bottom:308.472133pt;}
.yad{bottom:312.320667pt;}
.y45{bottom:315.551467pt;}
.y14{bottom:316.474693pt;}
.y8d{bottom:316.493200pt;}
.y30{bottom:318.710400pt;}
.y8c{bottom:319.676933pt;}
.y29{bottom:325.497733pt;}
.y17{bottom:328.242533pt;}
.y83{bottom:328.248667pt;}
.y6e{bottom:329.422400pt;}
.y5a{bottom:330.654533pt;}
.y86{bottom:331.922267pt;}
.y54{bottom:333.835467pt;}
.y82{bottom:334.861200pt;}
.y8b{bottom:335.840800pt;}
.y27{bottom:337.272133pt;}
.y13{bottom:342.074533pt;}
.ybe{bottom:342.368267pt;}
.y43{bottom:348.197093pt;}
.yab{bottom:349.132267pt;}
.y84{bottom:349.800533pt;}
.y85{bottom:353.474133pt;}
.y16{bottom:353.842373pt;}
.ye7{bottom:354.408053pt;}
.y81{bottom:356.412933pt;}
.y8a{bottom:358.617200pt;}
.ye5{bottom:358.840933pt;}
.ye0{bottom:359.354267pt;}
.y35{bottom:362.314133pt;}
.ycc{bottom:362.674533pt;}
.ybc{bottom:371.248933pt;}
.y42{bottom:373.796933pt;}
.ya9{bottom:378.668667pt;}
.y53{bottom:381.835467pt;}
.y110{bottom:391.204720pt;}
.y9{bottom:402.899840pt;}
.y80{bottom:422.293067pt;}
.y7a{bottom:429.638667pt;}
.y52{bottom:429.835467pt;}
.y105{bottom:436.479867pt;}
.y4b{bottom:437.446667pt;}
.y33{bottom:442.344000pt;}
.y10f{bottom:447.680560pt;}
.y1e{bottom:451.655760pt;}
.y60{bottom:452.175600pt;}
.y1d{bottom:455.025627pt;}
.ye6{bottom:458.642933pt;}
.y8{bottom:460.495520pt;}
.y47{bottom:463.274267pt;}
.y104{bottom:471.039867pt;}
.y79{bottom:472.254133pt;}
.y44{bottom:479.953333pt;}
.y1c{bottom:480.625467pt;}
.yc4{bottom:497.464000pt;}
.y78{bottom:500.663200pt;}
.y7f{bottom:500.663333pt;}
.y10e{bottom:504.156400pt;}
.y103{bottom:505.599867pt;}
.ye1{bottom:508.544640pt;}
.y4f{bottom:513.274267pt;}
.y22{bottom:517.082800pt;}
.y7{bottom:518.091200pt;}
.y2c{bottom:521.104933pt;}
.yc3{bottom:526.264000pt;}
.y77{bottom:527.603067pt;}
.y7e{bottom:527.603200pt;}
.y102{bottom:534.399867pt;}
.yff{bottom:540.843733pt;}
.yfd{bottom:543.560667pt;}
.yf7{bottom:548.026000pt;}
.y111{bottom:550.026533pt;}
.y76{bottom:554.787867pt;}
.y2b{bottom:556.305067pt;}
.y7d{bottom:558.951200pt;}
.yc6{bottom:559.478160pt;}
.y4e{bottom:566.874267pt;}
.y101{bottom:568.959867pt;}
.yc5{bottom:570.486800pt;}
.y5f{bottom:580.638800pt;}
.yda{bottom:583.953733pt;}
.y6b{bottom:586.596933pt;}
.y4d{bottom:591.289547pt;}
.y10d{bottom:595.923333pt;}
.y12{bottom:597.023787pt;}
.y3b{bottom:603.175467pt;}
.y100{bottom:603.519867pt;}
.y3a{bottom:622.375467pt;}
.y61{bottom:623.596000pt;}
.y39{bottom:641.575467pt;}
.y11{bottom:643.118667pt;}
.ye{bottom:643.450667pt;}
.y23{bottom:648.163600pt;}
.y49{bottom:654.250667pt;}
.y38{bottom:660.775467pt;}
.y32{bottom:677.860133pt;}
.y37{bottom:679.975467pt;}
.y36{bottom:699.175467pt;}
.h1e{height:12.474700pt;}
.h25{height:25.114083pt;}
.h24{height:37.331525pt;}
.h30{height:37.875868pt;}
.h31{height:37.888484pt;}
.h2a{height:38.554295pt;}
.h2b{height:38.557881pt;}
.h33{height:41.608219pt;}
.h2d{height:42.363037pt;}
.h27{height:43.440246pt;}
.h26{height:45.001523pt;}
.h32{height:48.297140pt;}
.h2c{height:49.150582pt;}
.h23{height:49.549337pt;}
.h20{height:49.549870pt;}
.h28{height:49.552663pt;}
.h1b{height:49.789717pt;}
.h1c{height:49.790250pt;}
.h34{height:51.269344pt;}
.h22{height:51.330180pt;}
.h1f{height:51.923794pt;}
.h2e{height:52.175391pt;}
.h19{height:53.742800pt;}
.h8{height:57.375000pt;}
.h3b{height:57.381933pt;}
.h9{height:57.389933pt;}
.h39{height:57.408067pt;}
.h18{height:57.410592pt;}
.h1d{height:59.513333pt;}
.h36{height:61.969687pt;}
.h11{height:62.968125pt;}
.h10{height:66.515625pt;}
.h35{height:67.128750pt;}
.hf{height:69.703125pt;}
.ha{height:76.308750pt;}
.h15{height:77.811562pt;}
.hc{height:86.062500pt;}
.h14{height:93.187500pt;}
.h6{height:95.816250pt;}
.h3a{height:96.983483pt;}
.h38{height:104.642916pt;}
.hd{height:104.996250pt;}
.h2{height:108.563437pt;}
.h21{height:109.306670pt;}
.h4{height:110.160000pt;}
.h3{height:114.750000pt;}
.h3d{height:118.397812pt;}
.h3c{height:122.653125pt;}
.h13{height:127.372500pt;}
.h1{height:133.683750pt;}
.h12{height:135.409617pt;}
.he{height:149.121562pt;}
.h7{height:153.191250pt;}
.hb{height:165.228643pt;}
.h3e{height:170.540312pt;}
.h37{height:187.994667pt;}
.h5{height:191.058750pt;}
.h16{height:210.566250pt;}
.h17{height:391.333333pt;}
.h2f{height:398.700000pt;}
.h29{height:406.605333pt;}
.h1a{height:580.258667pt;}
.h0{height:720.000000pt;}
.w3{width:55.108000pt;}
.w6{width:187.881333pt;}
.w5{width:243.426667pt;}
.w4{width:247.841333pt;}
.w1{width:612.866667pt;}
.w2{width:987.376000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x7{left:9.604000pt;}
.x4f{left:16.532533pt;}
.x70{left:25.748267pt;}
.x4{left:28.800000pt;}
.x6d{left:35.653067pt;}
.x5{left:36.908667pt;}
.x3a{left:38.278800pt;}
.x6e{left:40.061321pt;}
.x46{left:41.282533pt;}
.xa2{left:42.203200pt;}
.x92{left:44.222133pt;}
.x75{left:52.908667pt;}
.x6a{left:53.867467pt;}
.x41{left:61.540667pt;}
.x1{left:63.632800pt;}
.x86{left:68.216400pt;}
.x21{left:73.043333pt;}
.x16{left:76.717600pt;}
.x4a{left:88.220267pt;}
.xa3{left:90.203200pt;}
.x78{left:91.301333pt;}
.x15{left:92.389600pt;}
.x65{left:93.400133pt;}
.x49{left:97.341467pt;}
.x73{left:102.070133pt;}
.x76{left:110.057742pt;}
.x79{left:111.018800pt;}
.x6b{left:112.053371pt;}
.x71{left:113.031600pt;}
.x4b{left:115.876400pt;}
.x3d{left:119.241333pt;}
.x1f{left:121.775733pt;}
.x14{left:123.722533pt;}
.x6f{left:126.415067pt;}
.x30{left:128.785467pt;}
.x39{left:132.908667pt;}
.x2f{left:144.198800pt;}
.x77{left:147.485973pt;}
.xa4{left:148.755200pt;}
.x6c{left:150.160645pt;}
.x56{left:152.332267pt;}
.x72{left:153.327333pt;}
.x69{left:157.878667pt;}
.x74{left:164.158133pt;}
.xa1{left:180.320000pt;}
.x52{left:188.388400pt;}
.x48{left:214.214400pt;}
.x8c{left:216.696667pt;}
.x4e{left:219.492000pt;}
.x85{left:222.428000pt;}
.x8b{left:229.968667pt;}
.x2c{left:243.094800pt;}
.x7f{left:252.490400pt;}
.x5f{left:256.580800pt;}
.x4d{left:261.511067pt;}
.x4c{left:262.691733pt;}
.x31{left:265.999227pt;}
.x67{left:270.159467pt;}
.x57{left:279.611067pt;}
.xd{left:321.742827pt;}
.x8{left:324.985733pt;}
.x10{left:345.926267pt;}
.x34{left:357.196400pt;}
.x37{left:362.348667pt;}
.x36{left:367.302000pt;}
.x9a{left:387.459813pt;}
.x66{left:394.456400pt;}
.x55{left:397.464133pt;}
.xf{left:398.946667pt;}
.x3c{left:403.753333pt;}
.xe{left:413.821387pt;}
.x99{left:431.307333pt;}
.x5e{left:434.800400pt;}
.x9b{left:442.663333pt;}
.x19{left:449.238000pt;}
.x5d{left:461.181200pt;}
.x9{left:477.325253pt;}
.xaa{left:480.566427pt;}
.xa9{left:497.056347pt;}
.x80{left:498.950000pt;}
.x87{left:511.014800pt;}
.x43{left:516.125867pt;}
.x59{left:523.161867pt;}
.x58{left:524.097467pt;}
.x5a{left:531.582400pt;}
.x68{left:534.342667pt;}
.x42{left:536.452400pt;}
.x20{left:540.732400pt;}
.x5b{left:541.930400pt;}
.xa7{left:544.432827pt;}
.x88{left:553.894800pt;}
.xa6{left:555.625467pt;}
.x82{left:558.370000pt;}
.x8a{left:564.200133pt;}
.x2a{left:565.975600pt;}
.x2d{left:567.479600pt;}
.x2e{left:569.714000pt;}
.x83{left:573.083920pt;}
.x81{left:578.076667pt;}
.x64{left:581.020400pt;}
.x35{left:583.468213pt;}
.x8f{left:589.466800pt;}
.x7d{left:591.183733pt;}
.x53{left:597.107067pt;}
.x7c{left:614.535733pt;}
.x2b{left:619.109467pt;}
.xa8{left:622.354107pt;}
.x89{left:636.950800pt;}
.x33{left:638.225733pt;}
.x47{left:640.000000pt;}
.xa0{left:660.800000pt;}
.x5c{left:672.431333pt;}
.x84{left:683.658400pt;}
.x12{left:700.334267pt;}
.x13{left:702.100507pt;}
.x3e{left:705.071067pt;}
.x3f{left:707.631067pt;}
.x45{left:730.742800pt;}
.x18{left:732.285680pt;}
.x17{left:742.372400pt;}
.x44{left:755.863067pt;}
.x51{left:757.275600pt;}
.x50{left:758.456267pt;}
.x11{left:769.549920pt;}
.xa5{left:770.879467pt;}
.x90{left:772.606427pt;}
.x91{left:779.726907pt;}
.x3{left:788.572373pt;}
.x62{left:792.086933pt;}
.x7e{left:797.578400pt;}
.x8d{left:808.623867pt;}
.x8e{left:816.615867pt;}
.x63{left:825.029333pt;}
.x2{left:828.732533pt;}
.x7b{left:845.284933pt;}
.x96{left:848.876107pt;}
.xb{left:869.553867pt;}
.x40{left:873.871067pt;}
.x1a{left:877.162533pt;}
.x9f{left:878.991200pt;}
.x9e{left:880.802533pt;}
.x61{left:886.875333pt;}
.xa{left:887.961067pt;}
.x7a{left:889.444933pt;}
.xc{left:891.004107pt;}
.x54{left:902.890800pt;}
.x60{left:907.140400pt;}
.x93{left:924.193067pt;}
.x1e{left:940.732880pt;}
.x1d{left:950.181200pt;}
.x97{left:962.766507pt;}
.x32{left:1002.224000pt;}
.x9c{left:1018.950133pt;}
.x98{left:1021.482507pt;}
.x94{left:1056.041067pt;}
.x1c{left:1083.401467pt;}
.x3b{left:1085.918933pt;}
.x38{left:1097.559867pt;}
.x1b{left:1101.343600pt;}
.x95{left:1115.316267pt;}
.x9d{left:1143.270133pt;}
.x25{left:1183.076933pt;}
.x22{left:1185.316933pt;}
.x24{left:1186.436933pt;}
.x23{left:1196.036933pt;}
.x26{left:1205.797067pt;}
.x27{left:1211.076933pt;}
.x28{left:1252.356933pt;}
.x29{left:1253.476933pt;}
.x6{left:1261.316000pt;}
}




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