
    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_fcc5432cef353aa0022970c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904785;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_436201d5ec9a087c11b6a1ad.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.734000;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_9074dca7132042c9c3d6e90f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.951000;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_7eb49fc4422ac43fa4739fa8.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1a2905af815475f6dc7163f3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931000;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_021414c9557417276b672066.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d1c27a6ea9d435855dd802aa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.884000;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_63d83423262879665a6bcfc2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.686000;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_2f9854a58f93883bb3ecf715.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006000;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_0c648fa545372eafcad36f1b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.011000;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_467aa557b8d8d54a2fe1afc9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.988000;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_d789c860739bdb78cf3e0ece.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.744000;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_02fabe642781f228777150b8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.888672;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-19.800000px;}
.v2{vertical-align:-16.200000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.970000px;}
.v3{vertical-align:19.812000px;}
.v1{vertical-align:32.400600px;}
.ls4d{letter-spacing:-1.560000px;}
.ls3a{letter-spacing:-1.320000px;}
.ls39{letter-spacing:-0.990000px;}
.ls2f{letter-spacing:-0.600000px;}
.ls5{letter-spacing:-0.480000px;}
.ls2e{letter-spacing:-0.420000px;}
.ls37{letter-spacing:-0.300000px;}
.ls35{letter-spacing:-0.240000px;}
.ls36{letter-spacing:-0.060000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.027000px;}
.ls51{letter-spacing:0.033000px;}
.ls6{letter-spacing:0.054000px;}
.ls11{letter-spacing:0.066000px;}
.ls22{letter-spacing:0.099000px;}
.ls9{letter-spacing:0.108000px;}
.ls28{letter-spacing:0.120000px;}
.ls3d{letter-spacing:0.128700px;}
.ls19{letter-spacing:0.132000px;}
.ls2b{letter-spacing:0.134400px;}
.ls8{letter-spacing:0.162000px;}
.ls23{letter-spacing:0.165000px;}
.ls2a{letter-spacing:0.198000px;}
.ls3f{letter-spacing:0.231000px;}
.ls27{letter-spacing:0.240000px;}
.ls45{letter-spacing:0.257400px;}
.ls18{letter-spacing:0.264000px;}
.ls2{letter-spacing:0.270000px;}
.ls4c{letter-spacing:0.297000px;}
.ls3b{letter-spacing:0.300000px;}
.lsb{letter-spacing:0.330000px;}
.ls4e{letter-spacing:0.343200px;}
.ls1{letter-spacing:0.351000px;}
.ls26{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.378000px;}
.ls21{letter-spacing:0.396000px;}
.ls3c{letter-spacing:0.420000px;}
.ls10{letter-spacing:0.462000px;}
.ls14{letter-spacing:0.493800px;}
.ls29{letter-spacing:0.528000px;}
.ls1f{letter-spacing:0.540000px;}
.ls24{letter-spacing:0.594000px;}
.ls2d{letter-spacing:0.600000px;}
.ls7{letter-spacing:0.648000px;}
.ls12{letter-spacing:0.660000px;}
.ls4f{letter-spacing:0.686400px;}
.ls30{letter-spacing:0.726000px;}
.ls13{letter-spacing:0.759000px;}
.ls41{letter-spacing:0.780000px;}
.ls16{letter-spacing:0.792000px;}
.ls25{letter-spacing:0.825000px;}
.ls33{letter-spacing:0.858000px;}
.ls2c{letter-spacing:0.900000px;}
.ls38{letter-spacing:0.924000px;}
.ls40{letter-spacing:0.930000px;}
.ls43{letter-spacing:0.957000px;}
.ls42{letter-spacing:0.960000px;}
.ls31{letter-spacing:0.990000px;}
.ls49{letter-spacing:1.056000px;}
.lsf{letter-spacing:1.122000px;}
.ls1b{letter-spacing:1.134000px;}
.lsc{letter-spacing:1.140000px;}
.ls1a{letter-spacing:1.242000px;}
.ls17{letter-spacing:1.254000px;}
.ls1e{letter-spacing:1.296000px;}
.ls34{letter-spacing:1.386000px;}
.ls50{letter-spacing:1.452000px;}
.ls15{letter-spacing:1.584000px;}
.ls32{letter-spacing:2.019600px;}
.ls1d{letter-spacing:3.510000px;}
.ls4a{letter-spacing:3.537600px;}
.ls1c{letter-spacing:3.564000px;}
.ls44{letter-spacing:4.686000px;}
.lsd{letter-spacing:4.914000px;}
.ls47{letter-spacing:5.346000px;}
.ls4b{letter-spacing:6.534000px;}
.ls48{letter-spacing:7.524000px;}
.ls46{letter-spacing:2082.471000px;}
.ls3e{letter-spacing:2094.399000px;}
.lse{letter-spacing:2115.471000px;}
.lsa{letter-spacing:2127.399000px;}
.ls0{letter-spacing:2844.088800px;}
.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;}
}
.ws0{word-spacing:-22.680000px;}
.ws1{word-spacing:-17.010000px;}
.ws1a{word-spacing:-16.500000px;}
.ws29{word-spacing:-15.444000px;}
.wsa1{word-spacing:-14.916000px;}
.ws9f{word-spacing:-14.388000px;}
.wsad{word-spacing:-14.322000px;}
.ws59{word-spacing:-14.058000px;}
.ws6b{word-spacing:-14.025000px;}
.ws28{word-spacing:-13.860000px;}
.ws27{word-spacing:-12.750000px;}
.ws2a{word-spacing:-12.636000px;}
.wsa2{word-spacing:-9.695400px;}
.wsa0{word-spacing:-9.352200px;}
.ws8c{word-spacing:-9.266400px;}
.ws7b{word-spacing:-9.137700px;}
.ws1b{word-spacing:-9.009000px;}
.ws3{word-spacing:-7.371000px;}
.ws38{word-spacing:-1.584000px;}
.wsb1{word-spacing:-0.858000px;}
.ws37{word-spacing:-0.660000px;}
.ws3d{word-spacing:-0.540000px;}
.ws9d{word-spacing:-0.462000px;}
.ws2{word-spacing:-0.405000px;}
.ws49{word-spacing:-0.330000px;}
.wsb0{word-spacing:-0.264000px;}
.ws5c{word-spacing:-0.198000px;}
.wsa5{word-spacing:-0.132000px;}
.ws4{word-spacing:0.000000px;}
.ws6c{word-spacing:0.132000px;}
.ws63{word-spacing:0.180000px;}
.ws48{word-spacing:0.198000px;}
.ws13{word-spacing:0.216000px;}
.ws89{word-spacing:0.264000px;}
.ws32{word-spacing:0.330000px;}
.wsaf{word-spacing:0.462000px;}
.ws5{word-spacing:0.480000px;}
.wsae{word-spacing:0.528000px;}
.ws50{word-spacing:0.540000px;}
.ws12{word-spacing:0.594000px;}
.ws66{word-spacing:0.600000px;}
.ws81{word-spacing:0.720000px;}
.ws5e{word-spacing:0.726000px;}
.wsb{word-spacing:0.756000px;}
.ws5f{word-spacing:0.792000px;}
.ws23{word-spacing:0.858000px;}
.ws6d{word-spacing:0.990000px;}
.ws3f{word-spacing:1.026000px;}
.wsa9{word-spacing:1.080000px;}
.ws93{word-spacing:1.122000px;}
.wsa{word-spacing:1.188000px;}
.ws14{word-spacing:1.242000px;}
.ws45{word-spacing:1.254000px;}
.ws87{word-spacing:1.320000px;}
.ws1d{word-spacing:1.386000px;}
.ws6e{word-spacing:1.452000px;}
.wsd{word-spacing:1.458000px;}
.ws3b{word-spacing:1.518000px;}
.wsa3{word-spacing:1.560000px;}
.ws43{word-spacing:1.584000px;}
.wsac{word-spacing:1.650000px;}
.ws77{word-spacing:1.680000px;}
.ws7a{word-spacing:1.716000px;}
.ws94{word-spacing:1.782000px;}
.wsf{word-spacing:1.836000px;}
.ws61{word-spacing:1.848000px;}
.ws86{word-spacing:1.860000px;}
.ws78{word-spacing:1.914000px;}
.ws57{word-spacing:1.980000px;}
.ws56{word-spacing:2.046000px;}
.ws22{word-spacing:2.112000px;}
.ws88{word-spacing:2.178000px;}
.ws7{word-spacing:2.208000px;}
.ws30{word-spacing:2.244000px;}
.wsaa{word-spacing:2.268000px;}
.ws9a{word-spacing:2.310000px;}
.ws84{word-spacing:2.376000px;}
.ws24{word-spacing:2.442000px;}
.ws5b{word-spacing:2.508000px;}
.ws6{word-spacing:2.544000px;}
.ws7e{word-spacing:2.574000px;}
.ws64{word-spacing:2.580000px;}
.ws7c{word-spacing:2.640000px;}
.ws3e{word-spacing:2.700000px;}
.ws7d{word-spacing:2.706000px;}
.ws2c{word-spacing:2.772000px;}
.ws68{word-spacing:2.820000px;}
.ws99{word-spacing:2.838000px;}
.ws16{word-spacing:2.862000px;}
.ws9b{word-spacing:2.904000px;}
.ws2f{word-spacing:2.970000px;}
.ws33{word-spacing:3.036000px;}
.ws54{word-spacing:3.168000px;}
.ws17{word-spacing:3.186000px;}
.ws39{word-spacing:3.234000px;}
.ws41{word-spacing:3.300000px;}
.ws40{word-spacing:3.348000px;}
.ws71{word-spacing:3.366000px;}
.ws95{word-spacing:3.402000px;}
.ws83{word-spacing:3.420000px;}
.ws9c{word-spacing:3.432000px;}
.ws73{word-spacing:3.498000px;}
.ws18{word-spacing:3.510000px;}
.ws19{word-spacing:3.564000px;}
.ws42{word-spacing:3.630000px;}
.ws74{word-spacing:3.696000px;}
.ws82{word-spacing:3.720000px;}
.ws4a{word-spacing:3.762000px;}
.ws4c{word-spacing:3.828000px;}
.ws2b{word-spacing:3.894000px;}
.ws8f{word-spacing:3.900000px;}
.ws72{word-spacing:4.026000px;}
.ws76{word-spacing:4.080000px;}
.ws1f{word-spacing:4.092000px;}
.ws11{word-spacing:4.104000px;}
.ws70{word-spacing:4.158000px;}
.ws85{word-spacing:4.200000px;}
.wsa8{word-spacing:4.212000px;}
.ws51{word-spacing:4.224000px;}
.ws91{word-spacing:4.290000px;}
.wsab{word-spacing:4.320000px;}
.ws25{word-spacing:4.356000px;}
.ws5d{word-spacing:4.422000px;}
.ws96{word-spacing:4.428000px;}
.ws69{word-spacing:4.440000px;}
.ws10{word-spacing:4.482000px;}
.ws46{word-spacing:4.488000px;}
.ws80{word-spacing:4.500000px;}
.ws58{word-spacing:4.554000px;}
.ws7f{word-spacing:4.560000px;}
.ws8e{word-spacing:4.620000px;}
.ws98{word-spacing:4.686000px;}
.ws15{word-spacing:4.698000px;}
.ws4f{word-spacing:4.740000px;}
.ws6a{word-spacing:4.752000px;}
.wse{word-spacing:4.806000px;}
.ws6f{word-spacing:4.818000px;}
.ws47{word-spacing:4.884000px;}
.ws1e{word-spacing:4.950000px;}
.ws26{word-spacing:4.968000px;}
.ws21{word-spacing:5.016000px;}
.wsa6{word-spacing:5.082000px;}
.wsa7{word-spacing:5.130000px;}
.ws36{word-spacing:5.148000px;}
.ws53{word-spacing:5.214000px;}
.ws31{word-spacing:5.280000px;}
.ws3c{word-spacing:5.346000px;}
.ws90{word-spacing:5.412000px;}
.ws67{word-spacing:5.460000px;}
.ws55{word-spacing:5.544000px;}
.ws8d{word-spacing:5.610000px;}
.ws65{word-spacing:5.640000px;}
.wsc{word-spacing:5.670000px;}
.ws92{word-spacing:5.676000px;}
.ws2d{word-spacing:5.742000px;}
.ws4e{word-spacing:5.760000px;}
.ws8a{word-spacing:5.808000px;}
.ws62{word-spacing:5.820000px;}
.ws44{word-spacing:5.874000px;}
.ws9e{word-spacing:5.940000px;}
.ws2e{word-spacing:6.006000px;}
.ws60{word-spacing:6.072000px;}
.ws35{word-spacing:6.138000px;}
.ws3a{word-spacing:6.204000px;}
.ws8b{word-spacing:6.270000px;}
.ws4d{word-spacing:6.300000px;}
.ws5a{word-spacing:6.336000px;}
.ws34{word-spacing:6.402000px;}
.ws79{word-spacing:6.534000px;}
.ws52{word-spacing:6.600000px;}
.ws97{word-spacing:6.666000px;}
.ws75{word-spacing:6.732000px;}
.ws4b{word-spacing:6.798000px;}
.wsa4{word-spacing:6.864000px;}
.ws20{word-spacing:6.930000px;}
.ws8{word-spacing:10.656000px;}
.ws9{word-spacing:13.344000px;}
.ws1c{word-spacing:84.708000px;}
._3{margin-left:-24.000000px;}
._4{margin-left:-22.692600px;}
._5{margin-left:-17.640000px;}
._f{margin-left:-13.860000px;}
._11{margin-left:-12.000000px;}
._d{margin-left:-2.508000px;}
._9{margin-left:-1.197000px;}
._1{width:2.064000px;}
._12{width:3.366000px;}
._b{width:4.968000px;}
._c{width:7.590000px;}
._2{width:10.800000px;}
._0{width:13.344000px;}
._6{width:14.472000px;}
._8{width:15.660000px;}
._14{width:28.079400px;}
._17{width:29.700000px;}
._15{width:32.129400px;}
._13{width:33.911400px;}
._a{width:48.869400px;}
._e{width:51.138000px;}
._7{width:53.783400px;}
._10{width:84.708000px;}
._16{width:89.388000px;}
.fc2{color:rgb(96,139,155);}
.fc1{color:rgb(156,193,232);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.100000px;}
.fsd{font-size:39.000000px;}
.fsc{font-size:42.900000px;}
.fs2{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs5{font-size:70.200000px;}
.fsb{font-size:78.000000px;}
.fs4{font-size:81.000000px;}
.fs6{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.039350px;}
.y4a{bottom:138.191700px;}
.y75{bottom:138.194550px;}
.yd7{bottom:138.194700px;}
.y16c{bottom:138.198000px;}
.y1e1{bottom:138.828000px;}
.y9{bottom:140.314950px;}
.y11c{bottom:142.238700px;}
.y142{bottom:142.238850px;}
.y89{bottom:142.239000px;}
.y102{bottom:142.239300px;}
.y8{bottom:152.314950px;}
.y74{bottom:154.178550px;}
.yd6{bottom:154.178700px;}
.y1bf{bottom:154.179000px;}
.y16b{bottom:154.182000px;}
.y49{bottom:158.225700px;}
.yae{bottom:164.438850px;}
.y1e0{bottom:170.013000px;}
.y16a{bottom:170.166000px;}
.y7{bottom:170.682300px;}
.y73{bottom:174.212550px;}
.yd5{bottom:174.212700px;}
.y1be{bottom:174.213000px;}
.yad{bottom:185.228850px;}
.y72{bottom:186.158550px;}
.y1bd{bottom:186.159000px;}
.y101{bottom:188.986500px;}
.y11b{bottom:189.619050px;}
.y6{bottom:189.858300px;}
.y169{bottom:190.200000px;}
.y194{bottom:190.803000px;}
.y88{bottom:195.264450px;}
.y141{bottom:198.029100px;}
.y1cd{bottom:198.379800px;}
.y71{bottom:202.142550px;}
.y1bc{bottom:202.143000px;}
.y168{bottom:202.146000px;}
.yac{bottom:206.018850px;}
.y11a{bottom:207.217800px;}
.y5{bottom:209.034300px;}
.y100{bottom:209.776500px;}
.y193{bottom:211.593000px;}
.y87{bottom:216.054450px;}
.y70{bottom:218.126550px;}
.y1bb{bottom:218.127000px;}
.y167{bottom:218.130000px;}
.y140{bottom:218.819100px;}
.y1cc{bottom:219.169800px;}
.y48{bottom:221.557350px;}
.y4{bottom:221.826300px;}
.y1df{bottom:221.988000px;}
.yd4{bottom:222.176100px;}
.yab{bottom:226.808850px;}
.y119{bottom:231.186300px;}
.y192{bottom:232.383000px;}
.y166{bottom:234.114000px;}
.y86{bottom:236.844450px;}
.y6f{bottom:238.160550px;}
.y1ba{bottom:238.161000px;}
.y47{bottom:239.156100px;}
.y13f{bottom:239.609100px;}
.yff{bottom:240.961500px;}
.y3{bottom:241.002300px;}
.yd3{bottom:242.570100px;}
.y1de{bottom:242.778000px;}
.yaa{bottom:247.598850px;}
.y1b9{bottom:250.101000px;}
.y6e{bottom:250.103550px;}
.y1cb{bottom:250.354800px;}
.y191{bottom:253.173000px;}
.y2{bottom:253.794300px;}
.y165{bottom:254.148000px;}
.y85{bottom:257.634450px;}
.y118{bottom:259.412700px;}
.y13e{bottom:260.344050px;}
.yfe{bottom:261.751500px;}
.yd2{bottom:262.964100px;}
.y46{bottom:263.124600px;}
.y1dd{bottom:263.568000px;}
.y6d{bottom:266.087550px;}
.ya9{bottom:268.388850px;}
.y1b8{bottom:270.135000px;}
.y1ca{bottom:271.144800px;}
.y190{bottom:273.963000px;}
.y84{bottom:278.424450px;}
.y13d{bottom:281.134050px;}
.y1b7{bottom:282.075000px;}
.yfd{bottom:282.541500px;}
.y6c{bottom:286.121550px;}
.ya8{bottom:289.178850px;}
.y45{bottom:291.351000px;}
.y18f{bottom:294.753000px;}
.y1f2{bottom:298.778250px;}
.y83{bottom:299.214450px;}
.yd1{bottom:299.909550px;}
.y13c{bottom:301.924050px;}
.y1b6{bottom:302.109000px;}
.y1c9{bottom:302.329800px;}
.y164{bottom:306.728250px;}
.ya7{bottom:309.968850px;}
.y1b5{bottom:314.049000px;}
.y37{bottom:314.443800px;}
.y18e{bottom:315.543000px;}
.yd0{bottom:317.504550px;}
.y1f1{bottom:319.568250px;}
.yfc{bottom:319.873950px;}
.y82{bottom:320.004450px;}
.y13b{bottom:322.714050px;}
.y1c8{bottom:323.119800px;}
.y1dc{bottom:325.938000px;}
.y163{bottom:327.518250px;}
.ya6{bottom:330.758850px;}
.y1b4{bottom:334.083000px;}
.ycf{bottom:335.099550px;}
.y18d{bottom:336.333000px;}
.yfb{bottom:337.468950px;}
.y81{bottom:340.794450px;}
.y13a{bottom:343.504050px;}
.y1db{bottom:346.728000px;}
.y162{bottom:348.302250px;}
.y1f0{bottom:350.753250px;}
.ya5{bottom:351.548850px;}
.yce{bottom:352.694550px;}
.y1c7{bottom:354.304800px;}
.yfa{bottom:355.063950px;}
.y18c{bottom:357.123000px;}
.y80{bottom:361.584450px;}
.y139{bottom:364.294050px;}
.y1da{bottom:367.518000px;}
.y161{bottom:369.092250px;}
.ycd{bottom:370.289550px;}
.ya4{bottom:372.338850px;}
.yf9{bottom:372.658950px;}
.y1c6{bottom:375.094800px;}
.y18b{bottom:377.913000px;}
.y1ef{bottom:381.938250px;}
.y7f{bottom:382.374450px;}
.ycc{bottom:387.884550px;}
.y1d9{bottom:388.308000px;}
.y160{bottom:389.873250px;}
.yf8{bottom:390.253950px;}
.ya3{bottom:393.128850px;}
.y29{bottom:393.362400px;}
.y36{bottom:393.402900px;}
.y138{bottom:395.479050px;}
.y1b3{bottom:397.567350px;}
.y18a{bottom:398.703000px;}
.y1c5{bottom:406.279800px;}
.yf7{bottom:407.848950px;}
.y28{bottom:409.346400px;}
.y35{bottom:409.386900px;}
.y15f{bottom:410.663250px;}
.y1ee{bottom:413.123250px;}
.y7e{bottom:413.559450px;}
.ya2{bottom:413.918850px;}
.y137{bottom:416.269050px;}
.y1b2{bottom:418.357350px;}
.y189{bottom:419.493000px;}
.y6b{bottom:419.547600px;}
.ycb{bottom:422.011050px;}
.y27{bottom:425.330400px;}
.y34{bottom:425.370900px;}
.y1c4{bottom:427.069800px;}
.y15e{bottom:431.453250px;}
.y7d{bottom:434.349450px;}
.ya1{bottom:434.708850px;}
.y136{bottom:437.059050px;}
.y1b1{bottom:439.147350px;}
.y188{bottom:440.283000px;}
.y6a{bottom:440.337600px;}
.y26{bottom:441.314400px;}
.y33{bottom:441.354900px;}
.yf6{bottom:442.165350px;}
.yca{bottom:442.801050px;}
.y1ed{bottom:444.308250px;}
.y15d{bottom:452.243250px;}
.y7c{bottom:455.139450px;}
.ya0{bottom:455.498850px;}
.y32{bottom:457.338900px;}
.y135{bottom:457.849050px;}
.y1b0{bottom:459.937350px;}
.y187{bottom:461.073000px;}
.y69{bottom:461.127600px;}
.yf5{bottom:462.559350px;}
.yc9{bottom:463.591050px;}
.y25{bottom:465.290400px;}
.y1c3{bottom:473.132550px;}
.y31{bottom:473.322900px;}
.y1ec{bottom:475.493250px;}
.y7b{bottom:475.929450px;}
.y9f{bottom:476.288850px;}
.y134{bottom:478.639050px;}
.y1af{bottom:480.727350px;}
.y186{bottom:481.863000px;}
.y68{bottom:481.917600px;}
.yf4{bottom:482.953350px;}
.y30{bottom:489.306900px;}
.y1d8{bottom:492.258000px;}
.y9e{bottom:497.078850px;}
.y15c{bottom:498.306000px;}
.y133{bottom:499.429050px;}
.yc8{bottom:500.929500px;}
.y185{bottom:502.653000px;}
.y67{bottom:502.707600px;}
.yf3{bottom:503.347350px;}
.y2f{bottom:505.290900px;}
.y1ae{bottom:511.912350px;}
.y1d7{bottom:513.048000px;}
.y9d{bottom:517.868850px;}
.yc7{bottom:518.524500px;}
.y132{bottom:520.219050px;}
.y2e{bottom:521.274900px;}
.y1eb{bottom:521.556000px;}
.y184{bottom:523.443000px;}
.y7a{bottom:532.626000px;}
.y1ad{bottom:532.702350px;}
.y1d6{bottom:533.838000px;}
.y66{bottom:533.892600px;}
.yf2{bottom:534.136350px;}
.yc6{bottom:536.119500px;}
.y2d{bottom:537.258900px;}
.y131{bottom:541.009050px;}
.y183{bottom:544.233000px;}
.y79{bottom:550.224750px;}
.y2c{bottom:553.242900px;}
.y1ac{bottom:553.492350px;}
.yc5{bottom:553.714500px;}
.yf1{bottom:554.530350px;}
.y65{bottom:554.682600px;}
.y9c{bottom:559.454250px;}
.y130{bottom:561.799050px;}
.y182{bottom:565.023000px;}
.y1c2{bottom:566.757000px;}
.y2b{bottom:569.226900px;}
.yc4{bottom:571.309500px;}
.y78{bottom:574.193250px;}
.y1ab{bottom:574.282350px;}
.yf0{bottom:574.924350px;}
.y64{bottom:575.472600px;}
.y9b{bottom:577.049250px;}
.y12f{bottom:582.589050px;}
.y15b{bottom:583.386600px;}
.y2a{bottom:585.210900px;}
.y181{bottom:585.813000px;}
.yc3{bottom:588.904500px;}
.y1c1{bottom:590.725500px;}
.y9a{bottom:594.644250px;}
.y1aa{bottom:595.072350px;}
.yef{bottom:595.318350px;}
.y63{bottom:596.262600px;}
.y77{bottom:602.422650px;}
.y12e{bottom:603.379050px;}
.y15a{bottom:604.176600px;}
.yc2{bottom:606.499500px;}
.y1ea{bottom:606.604350px;}
.y99{bottom:612.239250px;}
.yee{bottom:615.712350px;}
.y1a9{bottom:615.862350px;}
.y180{bottom:616.998000px;}
.y62{bottom:617.052600px;}
.y76{bottom:618.406650px;}
.yc1{bottom:624.094500px;}
.y12d{bottom:624.169050px;}
.y159{bottom:624.966600px;}
.y18{bottom:625.967400px;}
.y24{bottom:625.994400px;}
.y98{bottom:629.834250px;}
.yed{bottom:636.106350px;}
.y17f{bottom:637.788000px;}
.y1e9{bottom:637.789350px;}
.y61{bottom:637.842600px;}
.yc0{bottom:641.689500px;}
.y17{bottom:641.951400px;}
.y23{bottom:641.978400px;}
.y12c{bottom:644.959050px;}
.y158{bottom:645.756600px;}
.y1a8{bottom:647.037300px;}
.y97{bottom:647.429250px;}
.y1d5{bottom:648.183000px;}
.yec{bottom:656.500350px;}
.y16{bottom:657.935400px;}
.y22{bottom:657.962400px;}
.y17e{bottom:658.578000px;}
.y1e8{bottom:658.579350px;}
.y60{bottom:658.632600px;}
.ybf{bottom:659.284500px;}
.y117{bottom:664.288200px;}
.y96{bottom:665.024250px;}
.y157{bottom:666.546600px;}
.y1a7{bottom:667.827300px;}
.y1d4{bottom:668.973000px;}
.y15{bottom:673.919400px;}
.y21{bottom:673.946400px;}
.yeb{bottom:676.894350px;}
.y17d{bottom:679.368000px;}
.y1e7{bottom:679.369350px;}
.y5f{bottom:679.422600px;}
.y95{bottom:682.619250px;}
.y116{bottom:685.078200px;}
.y12b{bottom:686.539950px;}
.y1a6{bottom:688.604250px;}
.y1d3{bottom:689.763000px;}
.y20{bottom:689.930400px;}
.ybe{bottom:693.385800px;}
.yea{bottom:697.288350px;}
.y156{bottom:697.731600px;}
.y14{bottom:697.895400px;}
.y17c{bottom:700.158000px;}
.y5e{bottom:700.212600px;}
.y12a{bottom:704.134950px;}
.y1f{bottom:705.914400px;}
.y1a5{bottom:709.394250px;}
.y1e6{bottom:710.554350px;}
.ybd{bottom:714.175800px;}
.y115{bottom:714.365700px;}
.ye9{bottom:717.682350px;}
.y155{bottom:718.521600px;}
.y17b{bottom:720.948000px;}
.y94{bottom:720.949350px;}
.y5d{bottom:720.986400px;}
.y129{bottom:721.729950px;}
.y1e{bottom:721.898400px;}
.y1a4{bottom:730.184250px;}
.y1e5{bottom:731.344350px;}
.y114{bottom:735.155700px;}
.y1d{bottom:737.882400px;}
.ye8{bottom:738.076350px;}
.y154{bottom:739.311600px;}
.y128{bottom:739.324950px;}
.y17a{bottom:741.738000px;}
.y93{bottom:741.739350px;}
.y5c{bottom:741.776400px;}
.ybc{bottom:745.360800px;}
.y1a3{bottom:750.974250px;}
.y1c{bottom:753.866400px;}
.y113{bottom:755.945700px;}
.y127{bottom:756.919950px;}
.ye7{bottom:758.470350px;}
.y153{bottom:760.101600px;}
.y179{bottom:762.528000px;}
.y92{bottom:762.529350px;}
.y5b{bottom:762.566400px;}
.ybb{bottom:766.150800px;}
.y1b{bottom:769.850400px;}
.y152{bottom:780.891600px;}
.y1a2{bottom:782.147250px;}
.y178{bottom:783.318000px;}
.y91{bottom:783.319350px;}
.y112{bottom:785.233200px;}
.y1a{bottom:785.834400px;}
.yba{bottom:786.940800px;}
.ye6{bottom:789.259350px;}
.y1d2{bottom:793.713000px;}
.y5a{bottom:793.751400px;}
.y126{bottom:795.297450px;}
.y151{bottom:801.681600px;}
.y19{bottom:801.818400px;}
.y1a1{bottom:802.937250px;}
.y177{bottom:804.108000px;}
.y90{bottom:804.109350px;}
.y111{bottom:806.023200px;}
.yb9{bottom:807.730800px;}
.ye5{bottom:809.653350px;}
.y1d1{bottom:814.503000px;}
.y59{bottom:814.541400px;}
.y125{bottom:816.087450px;}
.y150{bottom:822.471600px;}
.y1a0{bottom:823.727250px;}
.y176{bottom:824.898000px;}
.y8f{bottom:824.899350px;}
.y110{bottom:826.813200px;}
.yb8{bottom:828.520800px;}
.ye4{bottom:830.047350px;}
.y1e4{bottom:835.294350px;}
.y58{bottom:835.328550px;}
.y124{bottom:836.877450px;}
.y19f{bottom:844.517250px;}
.y175{bottom:845.688000px;}
.y8e{bottom:845.689350px;}
.y10f{bottom:847.603200px;}
.y44{bottom:849.293100px;}
.yb7{bottom:849.310800px;}
.ye3{bottom:850.441350px;}
.y57{bottom:856.084350px;}
.y14f{bottom:864.058500px;}
.y19e{bottom:865.292100px;}
.y174{bottom:866.478000px;}
.y8d{bottom:866.479350px;}
.y10e{bottom:868.393200px;}
.y43{bottom:870.083100px;}
.yb6{bottom:870.100800px;}
.ye2{bottom:870.835350px;}
.y56{bottom:876.874350px;}
.y123{bottom:878.461350px;}
.y14e{bottom:881.653500px;}
.y19d{bottom:886.082100px;}
.y8c{bottom:887.269350px;}
.y10d{bottom:889.183200px;}
.y42{bottom:890.873100px;}
.yb5{bottom:890.890800px;}
.ye1{bottom:891.229350px;}
.y122{bottom:896.056350px;}
.y173{bottom:897.663000px;}
.y55{bottom:897.664350px;}
.y13{bottom:897.921450px;}
.y14d{bottom:899.248500px;}
.y19c{bottom:906.872100px;}
.y8b{bottom:908.059350px;}
.y10c{bottom:909.973200px;}
.ye0{bottom:911.623350px;}
.yb4{bottom:911.660100px;}
.y41{bottom:911.663100px;}
.y121{bottom:913.651350px;}
.y14c{bottom:916.843500px;}
.y172{bottom:918.453000px;}
.y54{bottom:918.454350px;}
.y12{bottom:918.699150px;}
.y19b{bottom:927.662100px;}
.y8a{bottom:928.849350px;}
.y10b{bottom:930.763200px;}
.y120{bottom:931.246350px;}
.ydf{bottom:932.017350px;}
.yb3{bottom:932.450100px;}
.y40{bottom:932.453100px;}
.y14b{bottom:934.438500px;}
.y171{bottom:939.243000px;}
.y53{bottom:939.244350px;}
.y19a{bottom:948.452100px;}
.y11f{bottom:948.841350px;}
.y1d0{bottom:949.638000px;}
.y10a{bottom:951.553200px;}
.y14a{bottom:952.033500px;}
.yde{bottom:952.411350px;}
.yb2{bottom:953.240100px;}
.y3f{bottom:953.243100px;}
.y170{bottom:960.033000px;}
.y52{bottom:960.034350px;}
.y11{bottom:963.093150px;}
.y11e{bottom:966.436350px;}
.y199{bottom:969.233100px;}
.y149{bottom:969.628500px;}
.ydd{bottom:972.805350px;}
.yb1{bottom:974.030100px;}
.y3e{bottom:974.033100px;}
.y109{bottom:980.822850px;}
.y16f{bottom:980.823000px;}
.y51{bottom:980.824350px;}
.y11d{bottom:984.031350px;}
.y148{bottom:987.223500px;}
.y10{bottom:988.293150px;}
.y198{bottom:990.023100px;}
.y1e3{bottom:991.219350px;}
.yb0{bottom:994.820100px;}
.y3d{bottom:994.823100px;}
.y108{bottom:1001.612850px;}
.y16e{bottom:1001.613000px;}
.y50{bottom:1001.614350px;}
.ydc{bottom:1003.594350px;}
.y147{bottom:1004.818500px;}
.y197{bottom:1010.813100px;}
.yaf{bottom:1015.610100px;}
.y3c{bottom:1015.613100px;}
.y107{bottom:1022.402850px;}
.y16d{bottom:1022.403000px;}
.y4f{bottom:1022.404350px;}
.ydb{bottom:1023.988350px;}
.y196{bottom:1031.603100px;}
.yf{bottom:1032.678000px;}
.y1cf{bottom:1032.798000px;}
.y3b{bottom:1036.400100px;}
.y106{bottom:1043.192850px;}
.y146{bottom:1043.193000px;}
.y4e{bottom:1043.194350px;}
.yda{bottom:1044.382350px;}
.y1ce{bottom:1053.588000px;}
.y3a{bottom:1057.190100px;}
.y105{bottom:1063.982850px;}
.y145{bottom:1063.983000px;}
.y4d{bottom:1063.984350px;}
.y1c0{bottom:1063.986000px;}
.yd9{bottom:1064.776350px;}
.ye{bottom:1065.078000px;}
.y1e2{bottom:1074.379350px;}
.y195{bottom:1077.669000px;}
.y104{bottom:1084.772850px;}
.y144{bottom:1084.773000px;}
.y4c{bottom:1084.774350px;}
.yd8{bottom:1085.170350px;}
.yd{bottom:1097.478000px;}
.y39{bottom:1103.253000px;}
.y103{bottom:1105.562850px;}
.y143{bottom:1105.563000px;}
.y4b{bottom:1105.564350px;}
.yc{bottom:1156.354950px;}
.y38{bottom:1172.229900px;}
.yb{bottom:1193.878950px;}
.ya{bottom:1207.378950px;}
.hb{height:27.904500px;}
.h4{height:35.328000px;}
.h3{height:35.664000px;}
.hc{height:40.545000px;}
.h9{height:41.634000px;}
.ha{height:42.930000px;}
.h10{height:43.947000px;}
.h11{height:45.315000px;}
.h2{height:45.342773px;}
.h8{height:47.700000px;}
.h17{height:48.975000px;}
.he{height:52.470000px;}
.h1c{height:53.900100px;}
.h22{height:53.911500px;}
.h13{height:53.916900px;}
.hf{height:53.917500px;}
.h20{height:53.928900px;}
.h1b{height:53.929500px;}
.h1a{height:53.941500px;}
.h1e{height:53.952900px;}
.h1f{height:53.957100px;}
.h1d{height:53.965500px;}
.h14{height:53.970300px;}
.h18{height:53.976900px;}
.h16{height:53.988300px;}
.h21{height:54.029100px;}
.h12{height:54.042300px;}
.h15{height:54.066300px;}
.h19{height:54.125700px;}
.hd{height:60.138000px;}
.h6{height:66.360000px;}
.h7{height:66.780000px;}
.h5{height:83.268000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x15{left:86.972550px;}
.xd{left:93.730800px;}
.x14{left:106.300350px;}
.x16{left:108.241650px;}
.x2{left:110.563350px;}
.x1d{left:127.568850px;}
.x20{left:136.057350px;}
.x1f{left:138.135000px;}
.x3{left:145.195650px;}
.x1c{left:148.790850px;}
.x4{left:151.195650px;}
.x1a{left:153.070800px;}
.x12{left:155.117850px;}
.x19{left:189.104100px;}
.x17{left:191.338500px;}
.x10{left:206.459550px;}
.x9{left:214.381500px;}
.xe{left:221.292300px;}
.x1b{left:222.902250px;}
.x18{left:280.788600px;}
.x7{left:319.763100px;}
.x8{left:330.786300px;}
.x13{left:380.054100px;}
.x11{left:417.830850px;}
.x1e{left:419.772000px;}
.xa{left:476.125500px;}
.xc{left:579.157200px;}
.x6{left:624.945450px;}
.xb{left:681.463500px;}
.x5{left:733.915650px;}
.xf{left:735.964800px;}
@media print{
.v5{vertical-align:-17.600000pt;}
.v2{vertical-align:-14.400000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.973333pt;}
.v3{vertical-align:17.610667pt;}
.v1{vertical-align:28.800533pt;}
.ls4d{letter-spacing:-1.386667pt;}
.ls3a{letter-spacing:-1.173333pt;}
.ls39{letter-spacing:-0.880000pt;}
.ls2f{letter-spacing:-0.533333pt;}
.ls5{letter-spacing:-0.426667pt;}
.ls2e{letter-spacing:-0.373333pt;}
.ls37{letter-spacing:-0.266667pt;}
.ls35{letter-spacing:-0.213333pt;}
.ls36{letter-spacing:-0.053333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.024000pt;}
.ls51{letter-spacing:0.029333pt;}
.ls6{letter-spacing:0.048000pt;}
.ls11{letter-spacing:0.058667pt;}
.ls22{letter-spacing:0.088000pt;}
.ls9{letter-spacing:0.096000pt;}
.ls28{letter-spacing:0.106667pt;}
.ls3d{letter-spacing:0.114400pt;}
.ls19{letter-spacing:0.117333pt;}
.ls2b{letter-spacing:0.119467pt;}
.ls8{letter-spacing:0.144000pt;}
.ls23{letter-spacing:0.146667pt;}
.ls2a{letter-spacing:0.176000pt;}
.ls3f{letter-spacing:0.205333pt;}
.ls27{letter-spacing:0.213333pt;}
.ls45{letter-spacing:0.228800pt;}
.ls18{letter-spacing:0.234667pt;}
.ls2{letter-spacing:0.240000pt;}
.ls4c{letter-spacing:0.264000pt;}
.ls3b{letter-spacing:0.266667pt;}
.lsb{letter-spacing:0.293333pt;}
.ls4e{letter-spacing:0.305067pt;}
.ls1{letter-spacing:0.312000pt;}
.ls26{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.336000pt;}
.ls21{letter-spacing:0.352000pt;}
.ls3c{letter-spacing:0.373333pt;}
.ls10{letter-spacing:0.410667pt;}
.ls14{letter-spacing:0.438933pt;}
.ls29{letter-spacing:0.469333pt;}
.ls1f{letter-spacing:0.480000pt;}
.ls24{letter-spacing:0.528000pt;}
.ls2d{letter-spacing:0.533333pt;}
.ls7{letter-spacing:0.576000pt;}
.ls12{letter-spacing:0.586667pt;}
.ls4f{letter-spacing:0.610133pt;}
.ls30{letter-spacing:0.645333pt;}
.ls13{letter-spacing:0.674667pt;}
.ls41{letter-spacing:0.693333pt;}
.ls16{letter-spacing:0.704000pt;}
.ls25{letter-spacing:0.733333pt;}
.ls33{letter-spacing:0.762667pt;}
.ls2c{letter-spacing:0.800000pt;}
.ls38{letter-spacing:0.821333pt;}
.ls40{letter-spacing:0.826667pt;}
.ls43{letter-spacing:0.850667pt;}
.ls42{letter-spacing:0.853333pt;}
.ls31{letter-spacing:0.880000pt;}
.ls49{letter-spacing:0.938667pt;}
.lsf{letter-spacing:0.997333pt;}
.ls1b{letter-spacing:1.008000pt;}
.lsc{letter-spacing:1.013333pt;}
.ls1a{letter-spacing:1.104000pt;}
.ls17{letter-spacing:1.114667pt;}
.ls1e{letter-spacing:1.152000pt;}
.ls34{letter-spacing:1.232000pt;}
.ls50{letter-spacing:1.290667pt;}
.ls15{letter-spacing:1.408000pt;}
.ls32{letter-spacing:1.795200pt;}
.ls1d{letter-spacing:3.120000pt;}
.ls4a{letter-spacing:3.144533pt;}
.ls1c{letter-spacing:3.168000pt;}
.ls44{letter-spacing:4.165333pt;}
.lsd{letter-spacing:4.368000pt;}
.ls47{letter-spacing:4.752000pt;}
.ls4b{letter-spacing:5.808000pt;}
.ls48{letter-spacing:6.688000pt;}
.ls46{letter-spacing:1851.085333pt;}
.ls3e{letter-spacing:1861.688000pt;}
.lse{letter-spacing:1880.418667pt;}
.lsa{letter-spacing:1891.021333pt;}
.ls0{letter-spacing:2528.078933pt;}
.ws0{word-spacing:-20.160000pt;}
.ws1{word-spacing:-15.120000pt;}
.ws1a{word-spacing:-14.666667pt;}
.ws29{word-spacing:-13.728000pt;}
.wsa1{word-spacing:-13.258667pt;}
.ws9f{word-spacing:-12.789333pt;}
.wsad{word-spacing:-12.730667pt;}
.ws59{word-spacing:-12.496000pt;}
.ws6b{word-spacing:-12.466667pt;}
.ws28{word-spacing:-12.320000pt;}
.ws27{word-spacing:-11.333333pt;}
.ws2a{word-spacing:-11.232000pt;}
.wsa2{word-spacing:-8.618133pt;}
.wsa0{word-spacing:-8.313067pt;}
.ws8c{word-spacing:-8.236800pt;}
.ws7b{word-spacing:-8.122400pt;}
.ws1b{word-spacing:-8.008000pt;}
.ws3{word-spacing:-6.552000pt;}
.ws38{word-spacing:-1.408000pt;}
.wsb1{word-spacing:-0.762667pt;}
.ws37{word-spacing:-0.586667pt;}
.ws3d{word-spacing:-0.480000pt;}
.ws9d{word-spacing:-0.410667pt;}
.ws2{word-spacing:-0.360000pt;}
.ws49{word-spacing:-0.293333pt;}
.wsb0{word-spacing:-0.234667pt;}
.ws5c{word-spacing:-0.176000pt;}
.wsa5{word-spacing:-0.117333pt;}
.ws4{word-spacing:0.000000pt;}
.ws6c{word-spacing:0.117333pt;}
.ws63{word-spacing:0.160000pt;}
.ws48{word-spacing:0.176000pt;}
.ws13{word-spacing:0.192000pt;}
.ws89{word-spacing:0.234667pt;}
.ws32{word-spacing:0.293333pt;}
.wsaf{word-spacing:0.410667pt;}
.ws5{word-spacing:0.426667pt;}
.wsae{word-spacing:0.469333pt;}
.ws50{word-spacing:0.480000pt;}
.ws12{word-spacing:0.528000pt;}
.ws66{word-spacing:0.533333pt;}
.ws81{word-spacing:0.640000pt;}
.ws5e{word-spacing:0.645333pt;}
.wsb{word-spacing:0.672000pt;}
.ws5f{word-spacing:0.704000pt;}
.ws23{word-spacing:0.762667pt;}
.ws6d{word-spacing:0.880000pt;}
.ws3f{word-spacing:0.912000pt;}
.wsa9{word-spacing:0.960000pt;}
.ws93{word-spacing:0.997333pt;}
.wsa{word-spacing:1.056000pt;}
.ws14{word-spacing:1.104000pt;}
.ws45{word-spacing:1.114667pt;}
.ws87{word-spacing:1.173333pt;}
.ws1d{word-spacing:1.232000pt;}
.ws6e{word-spacing:1.290667pt;}
.wsd{word-spacing:1.296000pt;}
.ws3b{word-spacing:1.349333pt;}
.wsa3{word-spacing:1.386667pt;}
.ws43{word-spacing:1.408000pt;}
.wsac{word-spacing:1.466667pt;}
.ws77{word-spacing:1.493333pt;}
.ws7a{word-spacing:1.525333pt;}
.ws94{word-spacing:1.584000pt;}
.wsf{word-spacing:1.632000pt;}
.ws61{word-spacing:1.642667pt;}
.ws86{word-spacing:1.653333pt;}
.ws78{word-spacing:1.701333pt;}
.ws57{word-spacing:1.760000pt;}
.ws56{word-spacing:1.818667pt;}
.ws22{word-spacing:1.877333pt;}
.ws88{word-spacing:1.936000pt;}
.ws7{word-spacing:1.962667pt;}
.ws30{word-spacing:1.994667pt;}
.wsaa{word-spacing:2.016000pt;}
.ws9a{word-spacing:2.053333pt;}
.ws84{word-spacing:2.112000pt;}
.ws24{word-spacing:2.170667pt;}
.ws5b{word-spacing:2.229333pt;}
.ws6{word-spacing:2.261333pt;}
.ws7e{word-spacing:2.288000pt;}
.ws64{word-spacing:2.293333pt;}
.ws7c{word-spacing:2.346667pt;}
.ws3e{word-spacing:2.400000pt;}
.ws7d{word-spacing:2.405333pt;}
.ws2c{word-spacing:2.464000pt;}
.ws68{word-spacing:2.506667pt;}
.ws99{word-spacing:2.522667pt;}
.ws16{word-spacing:2.544000pt;}
.ws9b{word-spacing:2.581333pt;}
.ws2f{word-spacing:2.640000pt;}
.ws33{word-spacing:2.698667pt;}
.ws54{word-spacing:2.816000pt;}
.ws17{word-spacing:2.832000pt;}
.ws39{word-spacing:2.874667pt;}
.ws41{word-spacing:2.933333pt;}
.ws40{word-spacing:2.976000pt;}
.ws71{word-spacing:2.992000pt;}
.ws95{word-spacing:3.024000pt;}
.ws83{word-spacing:3.040000pt;}
.ws9c{word-spacing:3.050667pt;}
.ws73{word-spacing:3.109333pt;}
.ws18{word-spacing:3.120000pt;}
.ws19{word-spacing:3.168000pt;}
.ws42{word-spacing:3.226667pt;}
.ws74{word-spacing:3.285333pt;}
.ws82{word-spacing:3.306667pt;}
.ws4a{word-spacing:3.344000pt;}
.ws4c{word-spacing:3.402667pt;}
.ws2b{word-spacing:3.461333pt;}
.ws8f{word-spacing:3.466667pt;}
.ws72{word-spacing:3.578667pt;}
.ws76{word-spacing:3.626667pt;}
.ws1f{word-spacing:3.637333pt;}
.ws11{word-spacing:3.648000pt;}
.ws70{word-spacing:3.696000pt;}
.ws85{word-spacing:3.733333pt;}
.wsa8{word-spacing:3.744000pt;}
.ws51{word-spacing:3.754667pt;}
.ws91{word-spacing:3.813333pt;}
.wsab{word-spacing:3.840000pt;}
.ws25{word-spacing:3.872000pt;}
.ws5d{word-spacing:3.930667pt;}
.ws96{word-spacing:3.936000pt;}
.ws69{word-spacing:3.946667pt;}
.ws10{word-spacing:3.984000pt;}
.ws46{word-spacing:3.989333pt;}
.ws80{word-spacing:4.000000pt;}
.ws58{word-spacing:4.048000pt;}
.ws7f{word-spacing:4.053333pt;}
.ws8e{word-spacing:4.106667pt;}
.ws98{word-spacing:4.165333pt;}
.ws15{word-spacing:4.176000pt;}
.ws4f{word-spacing:4.213333pt;}
.ws6a{word-spacing:4.224000pt;}
.wse{word-spacing:4.272000pt;}
.ws6f{word-spacing:4.282667pt;}
.ws47{word-spacing:4.341333pt;}
.ws1e{word-spacing:4.400000pt;}
.ws26{word-spacing:4.416000pt;}
.ws21{word-spacing:4.458667pt;}
.wsa6{word-spacing:4.517333pt;}
.wsa7{word-spacing:4.560000pt;}
.ws36{word-spacing:4.576000pt;}
.ws53{word-spacing:4.634667pt;}
.ws31{word-spacing:4.693333pt;}
.ws3c{word-spacing:4.752000pt;}
.ws90{word-spacing:4.810667pt;}
.ws67{word-spacing:4.853333pt;}
.ws55{word-spacing:4.928000pt;}
.ws8d{word-spacing:4.986667pt;}
.ws65{word-spacing:5.013333pt;}
.wsc{word-spacing:5.040000pt;}
.ws92{word-spacing:5.045333pt;}
.ws2d{word-spacing:5.104000pt;}
.ws4e{word-spacing:5.120000pt;}
.ws8a{word-spacing:5.162667pt;}
.ws62{word-spacing:5.173333pt;}
.ws44{word-spacing:5.221333pt;}
.ws9e{word-spacing:5.280000pt;}
.ws2e{word-spacing:5.338667pt;}
.ws60{word-spacing:5.397333pt;}
.ws35{word-spacing:5.456000pt;}
.ws3a{word-spacing:5.514667pt;}
.ws8b{word-spacing:5.573333pt;}
.ws4d{word-spacing:5.600000pt;}
.ws5a{word-spacing:5.632000pt;}
.ws34{word-spacing:5.690667pt;}
.ws79{word-spacing:5.808000pt;}
.ws52{word-spacing:5.866667pt;}
.ws97{word-spacing:5.925333pt;}
.ws75{word-spacing:5.984000pt;}
.ws4b{word-spacing:6.042667pt;}
.wsa4{word-spacing:6.101333pt;}
.ws20{word-spacing:6.160000pt;}
.ws8{word-spacing:9.472000pt;}
.ws9{word-spacing:11.861333pt;}
.ws1c{word-spacing:75.296000pt;}
._3{margin-left:-21.333333pt;}
._4{margin-left:-20.171200pt;}
._5{margin-left:-15.680000pt;}
._f{margin-left:-12.320000pt;}
._11{margin-left:-10.666667pt;}
._d{margin-left:-2.229333pt;}
._9{margin-left:-1.064000pt;}
._1{width:1.834667pt;}
._12{width:2.992000pt;}
._b{width:4.416000pt;}
._c{width:6.746667pt;}
._2{width:9.600000pt;}
._0{width:11.861333pt;}
._6{width:12.864000pt;}
._8{width:13.920000pt;}
._14{width:24.959467pt;}
._17{width:26.400000pt;}
._15{width:28.559467pt;}
._13{width:30.143467pt;}
._a{width:43.439467pt;}
._e{width:45.456000pt;}
._7{width:47.807467pt;}
._10{width:75.296000pt;}
._16{width:79.456000pt;}
.fs9{font-size:31.200000pt;}
.fsd{font-size:34.666667pt;}
.fsc{font-size:38.133333pt;}
.fs2{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs5{font-size:62.400000pt;}
.fsb{font-size:69.333333pt;}
.fs4{font-size:72.000000pt;}
.fs6{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:75.590533pt;}
.y4a{bottom:122.837067pt;}
.y75{bottom:122.839600pt;}
.yd7{bottom:122.839733pt;}
.y16c{bottom:122.842667pt;}
.y1e1{bottom:123.402667pt;}
.y9{bottom:124.724400pt;}
.y11c{bottom:126.434400pt;}
.y142{bottom:126.434533pt;}
.y89{bottom:126.434667pt;}
.y102{bottom:126.434933pt;}
.y8{bottom:135.391067pt;}
.y74{bottom:137.047600pt;}
.yd6{bottom:137.047733pt;}
.y1bf{bottom:137.048000pt;}
.y16b{bottom:137.050667pt;}
.y49{bottom:140.645067pt;}
.yae{bottom:146.167867pt;}
.y1e0{bottom:151.122667pt;}
.y16a{bottom:151.258667pt;}
.y7{bottom:151.717600pt;}
.y73{bottom:154.855600pt;}
.yd5{bottom:154.855733pt;}
.y1be{bottom:154.856000pt;}
.yad{bottom:164.647867pt;}
.y72{bottom:165.474267pt;}
.y1bd{bottom:165.474667pt;}
.y101{bottom:167.988000pt;}
.y11b{bottom:168.550267pt;}
.y6{bottom:168.762933pt;}
.y169{bottom:169.066667pt;}
.y194{bottom:169.602667pt;}
.y88{bottom:173.568400pt;}
.y141{bottom:176.025867pt;}
.y1cd{bottom:176.337600pt;}
.y71{bottom:179.682267pt;}
.y1bc{bottom:179.682667pt;}
.y168{bottom:179.685333pt;}
.yac{bottom:183.127867pt;}
.y11a{bottom:184.193600pt;}
.y5{bottom:185.808267pt;}
.y100{bottom:186.468000pt;}
.y193{bottom:188.082667pt;}
.y87{bottom:192.048400pt;}
.y70{bottom:193.890267pt;}
.y1bb{bottom:193.890667pt;}
.y167{bottom:193.893333pt;}
.y140{bottom:194.505867pt;}
.y1cc{bottom:194.817600pt;}
.y48{bottom:196.939867pt;}
.y4{bottom:197.178933pt;}
.y1df{bottom:197.322667pt;}
.yd4{bottom:197.489867pt;}
.yab{bottom:201.607867pt;}
.y119{bottom:205.498933pt;}
.y192{bottom:206.562667pt;}
.y166{bottom:208.101333pt;}
.y86{bottom:210.528400pt;}
.y6f{bottom:211.698267pt;}
.y1ba{bottom:211.698667pt;}
.y47{bottom:212.583200pt;}
.y13f{bottom:212.985867pt;}
.yff{bottom:214.188000pt;}
.y3{bottom:214.224267pt;}
.yd3{bottom:215.617867pt;}
.y1de{bottom:215.802667pt;}
.yaa{bottom:220.087867pt;}
.y1b9{bottom:222.312000pt;}
.y6e{bottom:222.314267pt;}
.y1cb{bottom:222.537600pt;}
.y191{bottom:225.042667pt;}
.y2{bottom:225.594933pt;}
.y165{bottom:225.909333pt;}
.y85{bottom:229.008400pt;}
.y118{bottom:230.589067pt;}
.y13e{bottom:231.416933pt;}
.yfe{bottom:232.668000pt;}
.yd2{bottom:233.745867pt;}
.y46{bottom:233.888533pt;}
.y1dd{bottom:234.282667pt;}
.y6d{bottom:236.522267pt;}
.ya9{bottom:238.567867pt;}
.y1b8{bottom:240.120000pt;}
.y1ca{bottom:241.017600pt;}
.y190{bottom:243.522667pt;}
.y84{bottom:247.488400pt;}
.y13d{bottom:249.896933pt;}
.y1b7{bottom:250.733333pt;}
.yfd{bottom:251.148000pt;}
.y6c{bottom:254.330267pt;}
.ya8{bottom:257.047867pt;}
.y45{bottom:258.978667pt;}
.y18f{bottom:262.002667pt;}
.y1f2{bottom:265.580667pt;}
.y83{bottom:265.968400pt;}
.yd1{bottom:266.586267pt;}
.y13c{bottom:268.376933pt;}
.y1b6{bottom:268.541333pt;}
.y1c9{bottom:268.737600pt;}
.y164{bottom:272.647333pt;}
.ya7{bottom:275.527867pt;}
.y1b5{bottom:279.154667pt;}
.y37{bottom:279.505600pt;}
.y18e{bottom:280.482667pt;}
.yd0{bottom:282.226267pt;}
.y1f1{bottom:284.060667pt;}
.yfc{bottom:284.332400pt;}
.y82{bottom:284.448400pt;}
.y13b{bottom:286.856933pt;}
.y1c8{bottom:287.217600pt;}
.y1dc{bottom:289.722667pt;}
.y163{bottom:291.127333pt;}
.ya6{bottom:294.007867pt;}
.y1b4{bottom:296.962667pt;}
.ycf{bottom:297.866267pt;}
.y18d{bottom:298.962667pt;}
.yfb{bottom:299.972400pt;}
.y81{bottom:302.928400pt;}
.y13a{bottom:305.336933pt;}
.y1db{bottom:308.202667pt;}
.y162{bottom:309.602000pt;}
.y1f0{bottom:311.780667pt;}
.ya5{bottom:312.487867pt;}
.yce{bottom:313.506267pt;}
.y1c7{bottom:314.937600pt;}
.yfa{bottom:315.612400pt;}
.y18c{bottom:317.442667pt;}
.y80{bottom:321.408400pt;}
.y139{bottom:323.816933pt;}
.y1da{bottom:326.682667pt;}
.y161{bottom:328.082000pt;}
.ycd{bottom:329.146267pt;}
.ya4{bottom:330.967867pt;}
.yf9{bottom:331.252400pt;}
.y1c6{bottom:333.417600pt;}
.y18b{bottom:335.922667pt;}
.y1ef{bottom:339.500667pt;}
.y7f{bottom:339.888400pt;}
.ycc{bottom:344.786267pt;}
.y1d9{bottom:345.162667pt;}
.y160{bottom:346.554000pt;}
.yf8{bottom:346.892400pt;}
.ya3{bottom:349.447867pt;}
.y29{bottom:349.655467pt;}
.y36{bottom:349.691467pt;}
.y138{bottom:351.536933pt;}
.y1b3{bottom:353.393200pt;}
.y18a{bottom:354.402667pt;}
.y1c5{bottom:361.137600pt;}
.yf7{bottom:362.532400pt;}
.y28{bottom:363.863467pt;}
.y35{bottom:363.899467pt;}
.y15f{bottom:365.034000pt;}
.y1ee{bottom:367.220667pt;}
.y7e{bottom:367.608400pt;}
.ya2{bottom:367.927867pt;}
.y137{bottom:370.016933pt;}
.y1b2{bottom:371.873200pt;}
.y189{bottom:372.882667pt;}
.y6b{bottom:372.931200pt;}
.ycb{bottom:375.120933pt;}
.y27{bottom:378.071467pt;}
.y34{bottom:378.107467pt;}
.y1c4{bottom:379.617600pt;}
.y15e{bottom:383.514000pt;}
.y7d{bottom:386.088400pt;}
.ya1{bottom:386.407867pt;}
.y136{bottom:388.496933pt;}
.y1b1{bottom:390.353200pt;}
.y188{bottom:391.362667pt;}
.y6a{bottom:391.411200pt;}
.y26{bottom:392.279467pt;}
.y33{bottom:392.315467pt;}
.yf6{bottom:393.035867pt;}
.yca{bottom:393.600933pt;}
.y1ed{bottom:394.940667pt;}
.y15d{bottom:401.994000pt;}
.y7c{bottom:404.568400pt;}
.ya0{bottom:404.887867pt;}
.y32{bottom:406.523467pt;}
.y135{bottom:406.976933pt;}
.y1b0{bottom:408.833200pt;}
.y187{bottom:409.842667pt;}
.y69{bottom:409.891200pt;}
.yf5{bottom:411.163867pt;}
.yc9{bottom:412.080933pt;}
.y25{bottom:413.591467pt;}
.y1c3{bottom:420.562267pt;}
.y31{bottom:420.731467pt;}
.y1ec{bottom:422.660667pt;}
.y7b{bottom:423.048400pt;}
.y9f{bottom:423.367867pt;}
.y134{bottom:425.456933pt;}
.y1af{bottom:427.313200pt;}
.y186{bottom:428.322667pt;}
.y68{bottom:428.371200pt;}
.yf4{bottom:429.291867pt;}
.y30{bottom:434.939467pt;}
.y1d8{bottom:437.562667pt;}
.y9e{bottom:441.847867pt;}
.y15c{bottom:442.938667pt;}
.y133{bottom:443.936933pt;}
.yc8{bottom:445.270667pt;}
.y185{bottom:446.802667pt;}
.y67{bottom:446.851200pt;}
.yf3{bottom:447.419867pt;}
.y2f{bottom:449.147467pt;}
.y1ae{bottom:455.033200pt;}
.y1d7{bottom:456.042667pt;}
.y9d{bottom:460.327867pt;}
.yc7{bottom:460.910667pt;}
.y132{bottom:462.416933pt;}
.y2e{bottom:463.355467pt;}
.y1eb{bottom:463.605333pt;}
.y184{bottom:465.282667pt;}
.y7a{bottom:473.445333pt;}
.y1ad{bottom:473.513200pt;}
.y1d6{bottom:474.522667pt;}
.y66{bottom:474.571200pt;}
.yf2{bottom:474.787867pt;}
.yc6{bottom:476.550667pt;}
.y2d{bottom:477.563467pt;}
.y131{bottom:480.896933pt;}
.y183{bottom:483.762667pt;}
.y79{bottom:489.088667pt;}
.y2c{bottom:491.771467pt;}
.y1ac{bottom:491.993200pt;}
.yc5{bottom:492.190667pt;}
.yf1{bottom:492.915867pt;}
.y65{bottom:493.051200pt;}
.y9c{bottom:497.292667pt;}
.y130{bottom:499.376933pt;}
.y182{bottom:502.242667pt;}
.y1c2{bottom:503.784000pt;}
.y2b{bottom:505.979467pt;}
.yc4{bottom:507.830667pt;}
.y78{bottom:510.394000pt;}
.y1ab{bottom:510.473200pt;}
.yf0{bottom:511.043867pt;}
.y64{bottom:511.531200pt;}
.y9b{bottom:512.932667pt;}
.y12f{bottom:517.856933pt;}
.y15b{bottom:518.565867pt;}
.y2a{bottom:520.187467pt;}
.y181{bottom:520.722667pt;}
.yc3{bottom:523.470667pt;}
.y1c1{bottom:525.089333pt;}
.y9a{bottom:528.572667pt;}
.y1aa{bottom:528.953200pt;}
.yef{bottom:529.171867pt;}
.y63{bottom:530.011200pt;}
.y77{bottom:535.486800pt;}
.y12e{bottom:536.336933pt;}
.y15a{bottom:537.045867pt;}
.yc2{bottom:539.110667pt;}
.y1ea{bottom:539.203867pt;}
.y99{bottom:544.212667pt;}
.yee{bottom:547.299867pt;}
.y1a9{bottom:547.433200pt;}
.y180{bottom:548.442667pt;}
.y62{bottom:548.491200pt;}
.y76{bottom:549.694800pt;}
.yc1{bottom:554.750667pt;}
.y12d{bottom:554.816933pt;}
.y159{bottom:555.525867pt;}
.y18{bottom:556.415467pt;}
.y24{bottom:556.439467pt;}
.y98{bottom:559.852667pt;}
.yed{bottom:565.427867pt;}
.y17f{bottom:566.922667pt;}
.y1e9{bottom:566.923867pt;}
.y61{bottom:566.971200pt;}
.yc0{bottom:570.390667pt;}
.y17{bottom:570.623467pt;}
.y23{bottom:570.647467pt;}
.y12c{bottom:573.296933pt;}
.y158{bottom:574.005867pt;}
.y1a8{bottom:575.144267pt;}
.y97{bottom:575.492667pt;}
.y1d5{bottom:576.162667pt;}
.yec{bottom:583.555867pt;}
.y16{bottom:584.831467pt;}
.y22{bottom:584.855467pt;}
.y17e{bottom:585.402667pt;}
.y1e8{bottom:585.403867pt;}
.y60{bottom:585.451200pt;}
.ybf{bottom:586.030667pt;}
.y117{bottom:590.478400pt;}
.y96{bottom:591.132667pt;}
.y157{bottom:592.485867pt;}
.y1a7{bottom:593.624267pt;}
.y1d4{bottom:594.642667pt;}
.y15{bottom:599.039467pt;}
.y21{bottom:599.063467pt;}
.yeb{bottom:601.683867pt;}
.y17d{bottom:603.882667pt;}
.y1e7{bottom:603.883867pt;}
.y5f{bottom:603.931200pt;}
.y95{bottom:606.772667pt;}
.y116{bottom:608.958400pt;}
.y12b{bottom:610.257733pt;}
.y1a6{bottom:612.092667pt;}
.y1d3{bottom:613.122667pt;}
.y20{bottom:613.271467pt;}
.ybe{bottom:616.342933pt;}
.yea{bottom:619.811867pt;}
.y156{bottom:620.205867pt;}
.y14{bottom:620.351467pt;}
.y17c{bottom:622.362667pt;}
.y5e{bottom:622.411200pt;}
.y12a{bottom:625.897733pt;}
.y1f{bottom:627.479467pt;}
.y1a5{bottom:630.572667pt;}
.y1e6{bottom:631.603867pt;}
.ybd{bottom:634.822933pt;}
.y115{bottom:634.991733pt;}
.ye9{bottom:637.939867pt;}
.y155{bottom:638.685867pt;}
.y17b{bottom:640.842667pt;}
.y94{bottom:640.843867pt;}
.y5d{bottom:640.876800pt;}
.y129{bottom:641.537733pt;}
.y1e{bottom:641.687467pt;}
.y1a4{bottom:649.052667pt;}
.y1e5{bottom:650.083867pt;}
.y114{bottom:653.471733pt;}
.y1d{bottom:655.895467pt;}
.ye8{bottom:656.067867pt;}
.y154{bottom:657.165867pt;}
.y128{bottom:657.177733pt;}
.y17a{bottom:659.322667pt;}
.y93{bottom:659.323867pt;}
.y5c{bottom:659.356800pt;}
.ybc{bottom:662.542933pt;}
.y1a3{bottom:667.532667pt;}
.y1c{bottom:670.103467pt;}
.y113{bottom:671.951733pt;}
.y127{bottom:672.817733pt;}
.ye7{bottom:674.195867pt;}
.y153{bottom:675.645867pt;}
.y179{bottom:677.802667pt;}
.y92{bottom:677.803867pt;}
.y5b{bottom:677.836800pt;}
.ybb{bottom:681.022933pt;}
.y1b{bottom:684.311467pt;}
.y152{bottom:694.125867pt;}
.y1a2{bottom:695.242000pt;}
.y178{bottom:696.282667pt;}
.y91{bottom:696.283867pt;}
.y112{bottom:697.985067pt;}
.y1a{bottom:698.519467pt;}
.yba{bottom:699.502933pt;}
.ye6{bottom:701.563867pt;}
.y1d2{bottom:705.522667pt;}
.y5a{bottom:705.556800pt;}
.y126{bottom:706.931067pt;}
.y151{bottom:712.605867pt;}
.y19{bottom:712.727467pt;}
.y1a1{bottom:713.722000pt;}
.y177{bottom:714.762667pt;}
.y90{bottom:714.763867pt;}
.y111{bottom:716.465067pt;}
.yb9{bottom:717.982933pt;}
.ye5{bottom:719.691867pt;}
.y1d1{bottom:724.002667pt;}
.y59{bottom:724.036800pt;}
.y125{bottom:725.411067pt;}
.y150{bottom:731.085867pt;}
.y1a0{bottom:732.202000pt;}
.y176{bottom:733.242667pt;}
.y8f{bottom:733.243867pt;}
.y110{bottom:734.945067pt;}
.yb8{bottom:736.462933pt;}
.ye4{bottom:737.819867pt;}
.y1e4{bottom:742.483867pt;}
.y58{bottom:742.514267pt;}
.y124{bottom:743.891067pt;}
.y19f{bottom:750.682000pt;}
.y175{bottom:751.722667pt;}
.y8e{bottom:751.723867pt;}
.y10f{bottom:753.425067pt;}
.y44{bottom:754.927200pt;}
.yb7{bottom:754.942933pt;}
.ye3{bottom:755.947867pt;}
.y57{bottom:760.963867pt;}
.y14f{bottom:768.052000pt;}
.y19e{bottom:769.148533pt;}
.y174{bottom:770.202667pt;}
.y8d{bottom:770.203867pt;}
.y10e{bottom:771.905067pt;}
.y43{bottom:773.407200pt;}
.yb6{bottom:773.422933pt;}
.ye2{bottom:774.075867pt;}
.y56{bottom:779.443867pt;}
.y123{bottom:780.854533pt;}
.y14e{bottom:783.692000pt;}
.y19d{bottom:787.628533pt;}
.y8c{bottom:788.683867pt;}
.y10d{bottom:790.385067pt;}
.y42{bottom:791.887200pt;}
.yb5{bottom:791.902933pt;}
.ye1{bottom:792.203867pt;}
.y122{bottom:796.494533pt;}
.y173{bottom:797.922667pt;}
.y55{bottom:797.923867pt;}
.y13{bottom:798.152400pt;}
.y14d{bottom:799.332000pt;}
.y19c{bottom:806.108533pt;}
.y8b{bottom:807.163867pt;}
.y10c{bottom:808.865067pt;}
.ye0{bottom:810.331867pt;}
.yb4{bottom:810.364533pt;}
.y41{bottom:810.367200pt;}
.y121{bottom:812.134533pt;}
.y14c{bottom:814.972000pt;}
.y172{bottom:816.402667pt;}
.y54{bottom:816.403867pt;}
.y12{bottom:816.621467pt;}
.y19b{bottom:824.588533pt;}
.y8a{bottom:825.643867pt;}
.y10b{bottom:827.345067pt;}
.y120{bottom:827.774533pt;}
.ydf{bottom:828.459867pt;}
.yb3{bottom:828.844533pt;}
.y40{bottom:828.847200pt;}
.y14b{bottom:830.612000pt;}
.y171{bottom:834.882667pt;}
.y53{bottom:834.883867pt;}
.y19a{bottom:843.068533pt;}
.y11f{bottom:843.414533pt;}
.y1d0{bottom:844.122667pt;}
.y10a{bottom:845.825067pt;}
.y14a{bottom:846.252000pt;}
.yde{bottom:846.587867pt;}
.yb2{bottom:847.324533pt;}
.y3f{bottom:847.327200pt;}
.y170{bottom:853.362667pt;}
.y52{bottom:853.363867pt;}
.y11{bottom:856.082800pt;}
.y11e{bottom:859.054533pt;}
.y199{bottom:861.540533pt;}
.y149{bottom:861.892000pt;}
.ydd{bottom:864.715867pt;}
.yb1{bottom:865.804533pt;}
.y3e{bottom:865.807200pt;}
.y109{bottom:871.842533pt;}
.y16f{bottom:871.842667pt;}
.y51{bottom:871.843867pt;}
.y11d{bottom:874.694533pt;}
.y148{bottom:877.532000pt;}
.y10{bottom:878.482800pt;}
.y198{bottom:880.020533pt;}
.y1e3{bottom:881.083867pt;}
.yb0{bottom:884.284533pt;}
.y3d{bottom:884.287200pt;}
.y108{bottom:890.322533pt;}
.y16e{bottom:890.322667pt;}
.y50{bottom:890.323867pt;}
.ydc{bottom:892.083867pt;}
.y147{bottom:893.172000pt;}
.y197{bottom:898.500533pt;}
.yaf{bottom:902.764533pt;}
.y3c{bottom:902.767200pt;}
.y107{bottom:908.802533pt;}
.y16d{bottom:908.802667pt;}
.y4f{bottom:908.803867pt;}
.ydb{bottom:910.211867pt;}
.y196{bottom:916.980533pt;}
.yf{bottom:917.936000pt;}
.y1cf{bottom:918.042667pt;}
.y3b{bottom:921.244533pt;}
.y106{bottom:927.282533pt;}
.y146{bottom:927.282667pt;}
.y4e{bottom:927.283867pt;}
.yda{bottom:928.339867pt;}
.y1ce{bottom:936.522667pt;}
.y3a{bottom:939.724533pt;}
.y105{bottom:945.762533pt;}
.y145{bottom:945.762667pt;}
.y4d{bottom:945.763867pt;}
.y1c0{bottom:945.765333pt;}
.yd9{bottom:946.467867pt;}
.ye{bottom:946.736000pt;}
.y1e2{bottom:955.003867pt;}
.y195{bottom:957.928000pt;}
.y104{bottom:964.242533pt;}
.y144{bottom:964.242667pt;}
.y4c{bottom:964.243867pt;}
.yd8{bottom:964.595867pt;}
.yd{bottom:975.536000pt;}
.y39{bottom:980.669333pt;}
.y103{bottom:982.722533pt;}
.y143{bottom:982.722667pt;}
.y4b{bottom:982.723867pt;}
.yc{bottom:1027.871067pt;}
.y38{bottom:1041.982133pt;}
.yb{bottom:1061.225733pt;}
.ya{bottom:1073.225733pt;}
.hb{height:24.804000pt;}
.h4{height:31.402667pt;}
.h3{height:31.701333pt;}
.hc{height:36.040000pt;}
.h9{height:37.008000pt;}
.ha{height:38.160000pt;}
.h10{height:39.064000pt;}
.h11{height:40.280000pt;}
.h2{height:40.304688pt;}
.h8{height:42.400000pt;}
.h17{height:43.533333pt;}
.he{height:46.640000pt;}
.h1c{height:47.911200pt;}
.h22{height:47.921333pt;}
.h13{height:47.926133pt;}
.hf{height:47.926667pt;}
.h20{height:47.936800pt;}
.h1b{height:47.937333pt;}
.h1a{height:47.948000pt;}
.h1e{height:47.958133pt;}
.h1f{height:47.961867pt;}
.h1d{height:47.969333pt;}
.h14{height:47.973600pt;}
.h18{height:47.979467pt;}
.h16{height:47.989600pt;}
.h21{height:48.025867pt;}
.h12{height:48.037600pt;}
.h15{height:48.058933pt;}
.h19{height:48.111733pt;}
.hd{height:53.456000pt;}
.h6{height:58.986667pt;}
.h7{height:59.360000pt;}
.h5{height:74.016000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x15{left:77.308933pt;}
.xd{left:83.316267pt;}
.x14{left:94.489200pt;}
.x16{left:96.214800pt;}
.x2{left:98.278533pt;}
.x1d{left:113.394533pt;}
.x20{left:120.939867pt;}
.x1f{left:122.786667pt;}
.x3{left:129.062800pt;}
.x1c{left:132.258533pt;}
.x4{left:134.396133pt;}
.x1a{left:136.062933pt;}
.x12{left:137.882533pt;}
.x19{left:168.092533pt;}
.x17{left:170.078667pt;}
.x10{left:183.519600pt;}
.x9{left:190.561333pt;}
.xe{left:196.704267pt;}
.x1b{left:198.135333pt;}
.x18{left:249.589867pt;}
.x7{left:284.233867pt;}
.x8{left:294.032267pt;}
.x13{left:337.825867pt;}
.x11{left:371.405200pt;}
.x1e{left:373.130667pt;}
.xa{left:423.222667pt;}
.xc{left:514.806400pt;}
.x6{left:555.507067pt;}
.xb{left:605.745333pt;}
.x5{left:652.369467pt;}
.xf{left:654.190933pt;}
}




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