
    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_2ed2e2ee0abd0752e9db4e00.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.966000;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_80193fa07d3a98ee801bf039.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.979000;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_3fcb40c6e0a72dac3ea568e4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.138184;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_23df18f20319e0a5ccda9585.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107422;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_16a4dbac291d96b42266842e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.885000;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_0b9384cfb30fffd9f3b1de24.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.905762;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_72c3748f8e0b4e75ce6b074b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.078125;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_4b78de0d842b191a51833154.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.668945;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_c227deffa6bd501aafbf82f3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.107422;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_cc912b1af4a508dc0deee311.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.078125;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_96f4eaf6d97aefe08762a55e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.899414;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_db72fdb37fc6826c5e39d635.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.107422;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_1bc34416c9c4ee43ad0546de.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.138184;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5268b617e8e723efc0198797.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.078125;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_3d10ab748d3fddcbc8bbaaa5.woff2')format("woff");}.fff{font-family:fff;line-height:1.107422;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_5eb3a93e32d5613de9220965.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.078125;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d606dbd7e08698338a661cfd.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.905762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_f8d7b9d2b6030fea1bf76b4c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.199998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199998,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.263496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263496,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:16.200000px;}
.v1{vertical-align:17.820000px;}
.ls1{letter-spacing:-25.200000px;}
.ls16{letter-spacing:-2.442000px;}
.ls1e{letter-spacing:-1.998000px;}
.ls1c{letter-spacing:-1.861228px;}
.ls17{letter-spacing:-0.726000px;}
.lse{letter-spacing:-0.660000px;}
.ls4{letter-spacing:-0.600000px;}
.ls10{letter-spacing:-0.528000px;}
.ls1d{letter-spacing:-0.396006px;}
.ls12{letter-spacing:-0.396000px;}
.ls11{letter-spacing:-0.330000px;}
.lsf{letter-spacing:-0.132000px;}
.ls1f{letter-spacing:-0.108000px;}
.ls19{letter-spacing:-0.066000px;}
.ls2{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.000300px;}
.ls1b{letter-spacing:0.000600px;}
.ls26{letter-spacing:0.009600px;}
.ls15{letter-spacing:0.010200px;}
.ls14{letter-spacing:0.010800px;}
.ls21{letter-spacing:0.011400px;}
.ls24{letter-spacing:0.066000px;}
.ls23{letter-spacing:0.074400px;}
.ls25{letter-spacing:0.084600px;}
.ls9{letter-spacing:0.264000px;}
.ls3{letter-spacing:0.300000px;}
.lsa{letter-spacing:0.330000px;}
.ls22{letter-spacing:0.396000px;}
.ls20{letter-spacing:0.537000px;}
.ls7{letter-spacing:0.594000px;}
.ls13{letter-spacing:0.660000px;}
.ls1a{letter-spacing:0.810000px;}
.ls0{letter-spacing:0.864000px;}
.ls8{letter-spacing:5.263200px;}
.ls6{letter-spacing:5.754600px;}
.lsc{letter-spacing:15.180000px;}
.ls5{letter-spacing:16.500000px;}
.lsd{letter-spacing:51.801000px;}
.lsb{letter-spacing:116.490000px;}
.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;}
}
.wsd{word-spacing:-116.490000px;}
.ws0{word-spacing:-114.912000px;}
.ws15{word-spacing:-32.934000px;}
.ws11{word-spacing:-27.324000px;}
.ws10{word-spacing:-27.192000px;}
.ws17{word-spacing:-26.862000px;}
.ws1d{word-spacing:-25.278000px;}
.ws13{word-spacing:-21.912000px;}
.wsc{word-spacing:-21.846000px;}
.ws1e{word-spacing:-21.000000px;}
.ws18{word-spacing:-18.546000px;}
.wsd3{word-spacing:-16.566000px;}
.wsb{word-spacing:-16.500000px;}
.ws1b{word-spacing:-15.840000px;}
.ws54{word-spacing:-15.000000px;}
.ws47{word-spacing:-13.500000px;}
.ws41{word-spacing:-12.375000px;}
.wsb1{word-spacing:-11.502000px;}
.ws6d{word-spacing:-9.900150px;}
.wsb0{word-spacing:-9.504144px;}
.wsaf{word-spacing:-8.038922px;}
.ws2b{word-spacing:-3.300000px;}
.wsa{word-spacing:-2.430000px;}
.ws4{word-spacing:-1.296000px;}
.wsf{word-spacing:-1.188000px;}
.ws3{word-spacing:-1.080000px;}
.ws2{word-spacing:-0.864000px;}
.ws83{word-spacing:-0.810000px;}
.ws3d{word-spacing:-0.660000px;}
.ws16{word-spacing:-0.330000px;}
.ws48{word-spacing:-0.270000px;}
.ws43{word-spacing:-0.264000px;}
.wsd1{word-spacing:-0.066000px;}
.ws40{word-spacing:-0.060000px;}
.wsd2{word-spacing:-0.049500px;}
.ws1{word-spacing:0.000000px;}
.wsc6{word-spacing:0.108000px;}
.wsa4{word-spacing:0.120000px;}
.ws1a{word-spacing:0.198000px;}
.ws25{word-spacing:0.330000px;}
.ws7c{word-spacing:0.396000px;}
.wsbf{word-spacing:0.396006px;}
.wsa3{word-spacing:0.462000px;}
.ws81{word-spacing:0.486000px;}
.ws24{word-spacing:0.528000px;}
.ws8{word-spacing:0.600000px;}
.ws1c{word-spacing:0.660000px;}
.ws7a{word-spacing:0.726000px;}
.wsb4{word-spacing:0.858000px;}
.ws5a{word-spacing:0.924000px;}
.ws5c{word-spacing:0.990000px;}
.ws76{word-spacing:1.056000px;}
.ws52{word-spacing:1.134000px;}
.ws2a{word-spacing:1.188000px;}
.ws80{word-spacing:1.254000px;}
.ws5f{word-spacing:1.320000px;}
.ws20{word-spacing:1.386000px;}
.wsa6{word-spacing:1.440000px;}
.wsb9{word-spacing:1.452000px;}
.wsbb{word-spacing:1.458000px;}
.ws88{word-spacing:1.518000px;}
.wsc8{word-spacing:1.584000px;}
.ws4a{word-spacing:1.650000px;}
.ws51{word-spacing:1.716000px;}
.wsa2{word-spacing:1.782000px;}
.ws9c{word-spacing:1.848000px;}
.ws77{word-spacing:1.914000px;}
.ws35{word-spacing:1.980000px;}
.ws33{word-spacing:2.046000px;}
.ws8f{word-spacing:2.052000px;}
.wsd6{word-spacing:2.112000px;}
.ws34{word-spacing:2.244000px;}
.ws86{word-spacing:2.310000px;}
.ws68{word-spacing:2.322000px;}
.ws6f{word-spacing:2.376000px;}
.ws42{word-spacing:2.442000px;}
.ws6a{word-spacing:2.484000px;}
.wsd0{word-spacing:2.592000px;}
.ws6{word-spacing:2.640000px;}
.ws53{word-spacing:2.700000px;}
.ws59{word-spacing:2.706000px;}
.ws3a{word-spacing:2.772000px;}
.ws7e{word-spacing:2.904000px;}
.ws5b{word-spacing:2.970000px;}
.ws7{word-spacing:3.000000px;}
.wsa1{word-spacing:3.024000px;}
.wsd7{word-spacing:3.036000px;}
.wsa8{word-spacing:3.102000px;}
.ws7d{word-spacing:3.234000px;}
.wsbc{word-spacing:3.294000px;}
.ws23{word-spacing:3.300000px;}
.ws9d{word-spacing:3.366000px;}
.ws99{word-spacing:3.432000px;}
.ws7b{word-spacing:3.498000px;}
.ws89{word-spacing:3.564000px;}
.ws63{word-spacing:3.630000px;}
.ws21{word-spacing:3.696000px;}
.wsa5{word-spacing:3.780000px;}
.ws1f{word-spacing:3.828000px;}
.ws28{word-spacing:3.894000px;}
.wsae{word-spacing:3.942000px;}
.wsbd{word-spacing:3.960000px;}
.wsba{word-spacing:3.996000px;}
.wsd4{word-spacing:4.026000px;}
.ws90{word-spacing:4.050000px;}
.wsb7{word-spacing:4.092000px;}
.ws62{word-spacing:4.158000px;}
.ws92{word-spacing:4.212000px;}
.ws79{word-spacing:4.224000px;}
.wsb5{word-spacing:4.290000px;}
.ws61{word-spacing:4.356000px;}
.ws93{word-spacing:4.422000px;}
.ws91{word-spacing:4.428000px;}
.ws6b{word-spacing:4.482000px;}
.ws26{word-spacing:4.488000px;}
.wsa0{word-spacing:4.536000px;}
.ws44{word-spacing:4.554000px;}
.ws6c{word-spacing:4.590000px;}
.ws60{word-spacing:4.620000px;}
.ws37{word-spacing:4.686000px;}
.ws71{word-spacing:4.752000px;}
.ws31{word-spacing:4.818000px;}
.ws67{word-spacing:4.884000px;}
.ws3e{word-spacing:4.950000px;}
.ws75{word-spacing:5.016000px;}
.ws9b{word-spacing:5.082000px;}
.ws29{word-spacing:5.148000px;}
.ws64{word-spacing:5.214000px;}
.ws7f{word-spacing:5.280000px;}
.ws32{word-spacing:5.346000px;}
.ws8b{word-spacing:5.412000px;}
.wsce{word-spacing:5.454000px;}
.ws45{word-spacing:5.544000px;}
.ws8d{word-spacing:5.676000px;}
.ws9f{word-spacing:5.724000px;}
.ws12{word-spacing:5.742000px;}
.ws6e{word-spacing:5.808000px;}
.ws4b{word-spacing:5.940000px;}
.ws30{word-spacing:6.006000px;}
.ws27{word-spacing:6.204000px;}
.ws5e{word-spacing:6.270000px;}
.ws70{word-spacing:6.336000px;}
.wsad{word-spacing:6.372000px;}
.ws2d{word-spacing:6.402000px;}
.wsab{word-spacing:6.468000px;}
.ws4f{word-spacing:6.600000px;}
.ws85{word-spacing:6.666000px;}
.wsa9{word-spacing:6.732000px;}
.ws36{word-spacing:6.798000px;}
.ws4c{word-spacing:6.864000px;}
.ws78{word-spacing:6.930000px;}
.wsb6{word-spacing:6.996000px;}
.ws58{word-spacing:7.062000px;}
.ws3f{word-spacing:7.128000px;}
.wsac{word-spacing:7.260000px;}
.ws22{word-spacing:7.392000px;}
.ws46{word-spacing:7.458000px;}
.ws9{word-spacing:7.506000px;}
.ws39{word-spacing:7.524000px;}
.wsb2{word-spacing:7.590000px;}
.ws2c{word-spacing:7.656000px;}
.ws8c{word-spacing:7.722000px;}
.ws95{word-spacing:7.788000px;}
.ws57{word-spacing:7.854000px;}
.ws96{word-spacing:7.920000px;}
.ws2f{word-spacing:7.986000px;}
.wscf{word-spacing:7.992000px;}
.ws38{word-spacing:8.184000px;}
.ws14{word-spacing:8.250000px;}
.ws98{word-spacing:8.316000px;}
.ws8e{word-spacing:8.370000px;}
.ws74{word-spacing:8.382000px;}
.wsbe{word-spacing:8.448000px;}
.ws87{word-spacing:8.580000px;}
.wscc{word-spacing:8.646000px;}
.wsc0{word-spacing:8.712000px;}
.ws9a{word-spacing:8.778000px;}
.wsb8{word-spacing:8.910000px;}
.ws65{word-spacing:8.976000px;}
.ws69{word-spacing:9.126000px;}
.wsc1{word-spacing:9.240000px;}
.ws4d{word-spacing:9.372000px;}
.ws56{word-spacing:9.504000px;}
.ws94{word-spacing:9.636000px;}
.ws66{word-spacing:9.702000px;}
.ws8a{word-spacing:9.900000px;}
.ws2e{word-spacing:10.164000px;}
.ws3b{word-spacing:10.362000px;}
.wscd{word-spacing:10.428000px;}
.wsaa{word-spacing:10.692000px;}
.ws84{word-spacing:10.824000px;}
.ws50{word-spacing:10.956000px;}
.ws55{word-spacing:11.154000px;}
.wsc9{word-spacing:11.220000px;}
.ws5{word-spacing:11.280000px;}
.wsb3{word-spacing:11.418000px;}
.wsca{word-spacing:11.814000px;}
.ws49{word-spacing:11.946000px;}
.ws4e{word-spacing:12.012000px;}
.wscb{word-spacing:12.276000px;}
.ws9e{word-spacing:12.408000px;}
.wsc4{word-spacing:12.474000px;}
.ws3c{word-spacing:12.540000px;}
.wsc3{word-spacing:12.606000px;}
.wsc2{word-spacing:12.672000px;}
.ws97{word-spacing:12.738000px;}
.ws82{word-spacing:13.500000px;}
.wsa7{word-spacing:13.926000px;}
.ws5d{word-spacing:14.124000px;}
.ws72{word-spacing:14.454000px;}
.wsc7{word-spacing:14.784000px;}
.ws73{word-spacing:15.840000px;}
.wsd5{word-spacing:16.500000px;}
.wsc5{word-spacing:17.550000px;}
.ws19{word-spacing:50.490000px;}
.wse{word-spacing:83.490000px;}
._1b{margin-left:-14.879400px;}
._16{margin-left:-8.989200px;}
._6{margin-left:-7.521000px;}
._5{margin-left:-6.420000px;}
._4{margin-left:-4.578000px;}
._1{margin-left:-3.240000px;}
._2{margin-left:-1.296000px;}
._3{width:1.296000px;}
._11{width:2.541000px;}
._9{width:3.828000px;}
._b{width:5.479200px;}
._c{width:6.584400px;}
._d{width:8.057400px;}
._12{width:10.157400px;}
._f{width:11.418000px;}
._10{width:13.509600px;}
._1a{width:14.850000px;}
._18{width:16.220400px;}
._19{width:17.658000px;}
._7{width:21.420000px;}
._15{width:29.322000px;}
._e{width:36.434400px;}
._14{width:42.228000px;}
._13{width:43.416000px;}
._17{width:44.539200px;}
._0{width:50.400000px;}
._a{width:82.947000px;}
._8{width:115.947000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:36.000600px;}
.fsb{font-size:39.600600px;}
.fsa{font-size:49.500000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.fs7{font-size:126.000000px;}
.fs6{font-size:138.000000px;}
.fs1{font-size:180.000000px;}
.fs0{font-size:504.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:10.097850px;}
.y1{bottom:52.544700px;}
.y20{bottom:71.342400px;}
.y40{bottom:80.787750px;}
.y1f{bottom:117.969000px;}
.y53{bottom:122.540700px;}
.y7a{bottom:123.307050px;}
.y10c{bottom:123.307200px;}
.y35{bottom:125.819100px;}
.y181{bottom:127.460400px;}
.ya1{bottom:127.619850px;}
.yc5{bottom:139.507050px;}
.y10b{bottom:139.507200px;}
.y52{bottom:141.845700px;}
.y34{bottom:143.069100px;}
.y79{bottom:143.353650px;}
.y9{bottom:145.969500px;}
.y180{bottom:147.110400px;}
.ya0{bottom:147.419850px;}
.ye8{bottom:155.707050px;}
.y10a{bottom:155.707200px;}
.y21{bottom:160.061400px;}
.y51{bottom:161.150700px;}
.y78{bottom:163.400250px;}
.y17f{bottom:166.760400px;}
.y9f{bottom:167.219850px;}
.y8{bottom:167.569500px;}
.yc4{bottom:168.463050px;}
.ye7{bottom:171.907050px;}
.y159{bottom:171.907200px;}
.y33{bottom:177.569100px;}
.y50{bottom:180.455700px;}
.y77{bottom:183.446850px;}
.y17e{bottom:186.410400px;}
.y9e{bottom:187.019850px;}
.y15c{bottom:187.538400px;}
.ye6{bottom:188.107050px;}
.y158{bottom:188.107200px;}
.y7{bottom:189.169500px;}
.yc3{bottom:189.585750px;}
.y32{bottom:194.819100px;}
.y76{bottom:203.493450px;}
.ye5{bottom:204.307050px;}
.y157{bottom:204.307200px;}
.y109{bottom:205.130100px;}
.y17d{bottom:206.060400px;}
.y9d{bottom:206.819850px;}
.y15b{bottom:207.338400px;}
.yc2{bottom:210.708600px;}
.y6{bottom:210.769500px;}
.y31{bottom:212.069100px;}
.y4f{bottom:219.065550px;}
.ye4{bottom:220.507050px;}
.y156{bottom:220.507200px;}
.y75{bottom:223.540050px;}
.y108{bottom:225.596850px;}
.y17c{bottom:225.710400px;}
.y9c{bottom:226.619850px;}
.y15a{bottom:227.138400px;}
.yc1{bottom:231.831300px;}
.y12c{bottom:233.263050px;}
.y4e{bottom:238.370550px;}
.y74{bottom:243.586650px;}
.y17b{bottom:245.360400px;}
.y107{bottom:246.063900px;}
.y9b{bottom:246.419850px;}
.y13c{bottom:246.938400px;}
.ye3{bottom:249.463050px;}
.yc0{bottom:252.954150px;}
.y12b{bottom:253.490400px;}
.y155{bottom:254.138400px;}
.y4d{bottom:257.675550px;}
.y73{bottom:263.633250px;}
.y30{bottom:263.819100px;}
.y17a{bottom:265.010400px;}
.y9a{bottom:266.219850px;}
.y106{bottom:266.530800px;}
.y13b{bottom:266.738400px;}
.ye2{bottom:270.498900px;}
.y12a{bottom:273.717750px;}
.y154{bottom:273.938400px;}
.ybf{bottom:274.077000px;}
.y5{bottom:274.583550px;}
.y2f{bottom:281.069100px;}
.y72{bottom:283.679700px;}
.y179{bottom:284.660400px;}
.y99{bottom:286.019850px;}
.y13a{bottom:286.538400px;}
.y105{bottom:286.997700px;}
.ye1{bottom:291.534600px;}
.y153{bottom:293.738400px;}
.y129{bottom:293.945100px;}
.ybe{bottom:295.199700px;}
.y4c{bottom:296.285550px;}
.y71{bottom:303.726300px;}
.y178{bottom:304.310400px;}
.y98{bottom:305.819850px;}
.y139{bottom:306.338400px;}
.y4{bottom:306.983550px;}
.y104{bottom:307.464600px;}
.ye0{bottom:312.570600px;}
.y152{bottom:313.538400px;}
.y128{bottom:314.172450px;}
.y4b{bottom:315.590400px;}
.ybd{bottom:316.322550px;}
.y70{bottom:323.772900px;}
.y177{bottom:323.960400px;}
.y97{bottom:325.619850px;}
.y138{bottom:326.138400px;}
.y103{bottom:327.931500px;}
.y2e{bottom:332.819100px;}
.y151{bottom:333.338400px;}
.ydf{bottom:333.606450px;}
.y127{bottom:334.399800px;}
.y4a{bottom:334.895400px;}
.ybc{bottom:337.445250px;}
.y176{bottom:343.610400px;}
.y6f{bottom:343.819500px;}
.y96{bottom:345.419850px;}
.y137{bottom:345.938400px;}
.y102{bottom:348.398550px;}
.y2d{bottom:349.019100px;}
.y3{bottom:351.983550px;}
.y150{bottom:353.138400px;}
.y126{bottom:354.627150px;}
.yde{bottom:354.642300px;}
.ybb{bottom:358.568100px;}
.y175{bottom:363.260400px;}
.y6e{bottom:363.866100px;}
.y95{bottom:365.219850px;}
.y136{bottom:365.738400px;}
.y101{bottom:368.865300px;}
.y14f{bottom:372.938400px;}
.y49{bottom:373.505400px;}
.y125{bottom:374.854500px;}
.ydd{bottom:375.678150px;}
.yba{bottom:379.690950px;}
.y2c{bottom:381.419100px;}
.y174{bottom:382.910400px;}
.y6d{bottom:383.912700px;}
.y94{bottom:385.019850px;}
.y135{bottom:385.538400px;}
.y100{bottom:389.332350px;}
.y14e{bottom:392.738400px;}
.y48{bottom:392.810250px;}
.y124{bottom:395.081850px;}
.ydc{bottom:396.714000px;}
.yb9{bottom:400.813650px;}
.y173{bottom:402.560400px;}
.y6c{bottom:403.959300px;}
.y93{bottom:404.819850px;}
.y1e{bottom:404.982300px;}
.y134{bottom:405.338400px;}
.y2{bottom:405.983550px;}
.yff{bottom:409.799250px;}
.y14d{bottom:412.538400px;}
.y123{bottom:415.309200px;}
.ydb{bottom:417.749700px;}
.yb8{bottom:421.936500px;}
.y172{bottom:422.210400px;}
.y6b{bottom:424.005900px;}
.y92{bottom:424.619850px;}
.y133{bottom:425.138400px;}
.y2b{bottom:430.019100px;}
.yfe{bottom:430.266150px;}
.y47{bottom:431.420250px;}
.y1d{bottom:431.982300px;}
.y14c{bottom:432.338400px;}
.y122{bottom:435.536550px;}
.yda{bottom:438.785550px;}
.y171{bottom:441.860400px;}
.yb7{bottom:443.059350px;}
.y6a{bottom:444.052500px;}
.y91{bottom:444.419850px;}
.y132{bottom:444.938400px;}
.y46{bottom:450.725250px;}
.yfd{bottom:450.733050px;}
.y14b{bottom:452.138400px;}
.y121{bottom:455.763900px;}
.y1c{bottom:458.982300px;}
.yd9{bottom:459.821400px;}
.y170{bottom:461.510400px;}
.y2a{bottom:462.419100px;}
.y69{bottom:464.099100px;}
.y90{bottom:464.219850px;}
.y131{bottom:464.738400px;}
.yfc{bottom:471.199950px;}
.y14a{bottom:471.938400px;}
.y11{bottom:475.457100px;}
.y120{bottom:475.991250px;}
.yd8{bottom:480.857250px;}
.y16f{bottom:481.160400px;}
.y8f{bottom:484.019850px;}
.y68{bottom:484.145550px;}
.y130{bottom:484.538400px;}
.y1b{bottom:485.982300px;}
.y45{bottom:489.335100px;}
.yfb{bottom:491.667000px;}
.y149{bottom:491.738400px;}
.y10{bottom:493.457100px;}
.y29{bottom:494.819100px;}
.y11f{bottom:496.218600px;}
.y16e{bottom:500.810400px;}
.yd7{bottom:501.893100px;}
.y8e{bottom:503.819850px;}
.y67{bottom:504.192150px;}
.y12f{bottom:504.338400px;}
.y44{bottom:508.640100px;}
.y28{bottom:511.019100px;}
.yf{bottom:511.457100px;}
.y148{bottom:511.538400px;}
.yfa{bottom:512.133750px;}
.y63{bottom:513.744000px;}
.y11e{bottom:516.445950px;}
.y16d{bottom:520.460400px;}
.yd6{bottom:522.928950px;}
.y8d{bottom:523.619850px;}
.y12e{bottom:524.138400px;}
.y66{bottom:524.238900px;}
.ye{bottom:529.457100px;}
.y147{bottom:531.338400px;}
.yf9{bottom:532.600800px;}
.y62{bottom:533.049000px;}
.y11d{bottom:536.673300px;}
.y16c{bottom:540.110400px;}
.y27{bottom:543.419100px;}
.y8c{bottom:543.419850px;}
.yb1{bottom:543.938400px;}
.yd5{bottom:543.964800px;}
.y65{bottom:544.285350px;}
.y43{bottom:547.250100px;}
.y1a{bottom:547.290300px;}
.yd{bottom:547.457100px;}
.yb6{bottom:548.673300px;}
.y146{bottom:551.138400px;}
.y61{bottom:552.354000px;}
.yf8{bottom:553.067700px;}
.y11c{bottom:556.900650px;}
.y26{bottom:559.619100px;}
.y16b{bottom:559.760400px;}
.y8b{bottom:563.219850px;}
.yb0{bottom:563.738400px;}
.y64{bottom:564.331950px;}
.yd4{bottom:565.000650px;}
.yc{bottom:565.457100px;}
.yb5{bottom:565.791000px;}
.y42{bottom:566.555100px;}
.y19{bottom:568.290300px;}
.y145{bottom:570.938400px;}
.yf7{bottom:573.534600px;}
.y11b{bottom:577.128000px;}
.y16a{bottom:579.410400px;}
.yb4{bottom:582.908850px;}
.y8a{bottom:583.019850px;}
.yaf{bottom:583.538400px;}
.yd3{bottom:586.036500px;}
.y18{bottom:589.290300px;}
.y144{bottom:590.738400px;}
.y60{bottom:590.964000px;}
.y25{bottom:592.019100px;}
.yf6{bottom:594.001500px;}
.y11a{bottom:597.355350px;}
.y169{bottom:599.060400px;}
.yb3{bottom:600.026550px;}
.y89{bottom:602.819850px;}
.yae{bottom:603.338400px;}
.yb{bottom:604.877100px;}
.yd2{bottom:607.072350px;}
.y24{bottom:608.219250px;}
.y5f{bottom:610.268850px;}
.y17{bottom:610.290300px;}
.y143{bottom:610.538400px;}
.yf5{bottom:614.468400px;}
.y119{bottom:617.582700px;}
.y168{bottom:618.710400px;}
.y88{bottom:622.619850px;}
.y12d{bottom:623.138400px;}
.y23{bottom:624.419100px;}
.ya{bottom:626.297100px;}
.yd1{bottom:628.108200px;}
.y5e{bottom:629.573850px;}
.y142{bottom:630.338400px;}
.y16{bottom:631.290300px;}
.yf4{bottom:634.935450px;}
.y118{bottom:637.810050px;}
.y167{bottom:638.360400px;}
.yb2{bottom:638.672100px;}
.y87{bottom:642.419850px;}
.yad{bottom:642.938400px;}
.yd0{bottom:649.144050px;}
.y141{bottom:650.138400px;}
.y15{bottom:652.290300px;}
.yf3{bottom:655.402350px;}
.y166{bottom:658.010400px;}
.y117{bottom:658.037550px;}
.y86{bottom:662.219850px;}
.yac{bottom:662.738400px;}
.y41{bottom:664.564950px;}
.y5d{bottom:668.183850px;}
.ycf{bottom:670.179900px;}
.y14{bottom:673.290300px;}
.yf2{bottom:675.869250px;}
.y165{bottom:677.660400px;}
.y116{bottom:678.264750px;}
.y85{bottom:682.019850px;}
.yab{bottom:682.538400px;}
.y5c{bottom:687.488700px;}
.y3f{bottom:688.171500px;}
.y140{bottom:689.738400px;}
.yce{bottom:691.215750px;}
.yf1{bottom:696.336150px;}
.y115{bottom:698.492100px;}
.y84{bottom:701.819850px;}
.yaa{bottom:702.338400px;}
.y164{bottom:703.688400px;}
.y5b{bottom:706.793700px;}
.y13f{bottom:707.738400px;}
.y3e{bottom:710.924850px;}
.ycd{bottom:712.251600px;}
.yf0{bottom:716.803050px;}
.y114{bottom:718.719600px;}
.y83{bottom:721.619850px;}
.ya9{bottom:722.138400px;}
.y13e{bottom:725.738400px;}
.y13{bottom:728.790300px;}
.ycc{bottom:733.287450px;}
.y3d{bottom:733.678200px;}
.yef{bottom:737.269950px;}
.y113{bottom:738.946950px;}
.y82{bottom:741.419850px;}
.ya8{bottom:741.938400px;}
.y163{bottom:742.988400px;}
.y13d{bottom:743.738400px;}
.y5a{bottom:745.403700px;}
.y3c{bottom:749.203200px;}
.ycb{bottom:754.323300px;}
.yee{bottom:757.737000px;}
.y112{bottom:759.174150px;}
.y81{bottom:761.219850px;}
.ya7{bottom:761.738400px;}
.y162{bottom:762.638400px;}
.y12{bottom:763.290300px;}
.y59{bottom:764.708700px;}
.y3b{bottom:764.728200px;}
.yca{bottom:775.359150px;}
.yed{bottom:778.203900px;}
.y111{bottom:779.401650px;}
.y80{bottom:781.019850px;}
.ya6{bottom:781.538400px;}
.y161{bottom:782.288400px;}
.y3a{bottom:787.481550px;}
.yc9{bottom:796.395000px;}
.yec{bottom:798.670650px;}
.y110{bottom:799.628850px;}
.y7f{bottom:800.819850px;}
.ya5{bottom:801.338400px;}
.y160{bottom:801.938250px;}
.y58{bottom:803.318550px;}
.y39{bottom:810.234900px;}
.yc8{bottom:817.430850px;}
.yeb{bottom:819.137550px;}
.y10f{bottom:819.856350px;}
.y7e{bottom:820.619850px;}
.ya4{bottom:821.138400px;}
.y15f{bottom:821.588400px;}
.y57{bottom:822.623550px;}
.y38{bottom:832.988250px;}
.yc7{bottom:838.466700px;}
.yea{bottom:839.604450px;}
.y10e{bottom:840.083700px;}
.y7d{bottom:840.419700px;}
.ya3{bottom:840.938250px;}
.y15e{bottom:841.238400px;}
.y37{bottom:848.513250px;}
.yc6{bottom:859.502400px;}
.ye9{bottom:860.071500px;}
.y7c{bottom:860.219850px;}
.y10d{bottom:860.310900px;}
.ya2{bottom:860.738400px;}
.y15d{bottom:860.888400px;}
.y56{bottom:861.233400px;}
.y36{bottom:864.038250px;}
.y7b{bottom:880.019850px;}
.y55{bottom:880.538400px;}
.y54{bottom:924.183000px;}
.h12{height:37.098633px;}
.hf{height:41.220703px;}
.h15{height:45.342773px;}
.h11{height:47.671875px;}
.h16{height:50.255859px;}
.h10{height:52.177734px;}
.he{height:52.968750px;}
.h5{height:55.440000px;}
.h8{height:55.839844px;}
.h14{height:57.395508px;}
.h13{height:58.265625px;}
.h17{height:61.423828px;}
.hd{height:61.908000px;}
.h7{height:67.007812px;}
.hb{height:74.156250px;}
.h6{height:78.175781px;}
.h4{height:84.780000px;}
.hc{height:90.378000px;}
.ha{height:117.263672px;}
.h9{height:128.431641px;}
.h3{height:141.300000px;}
.h2{height:395.640000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:315.748500px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:44.007300px;}
.x16{left:84.054900px;}
.x6{left:86.623650px;}
.x5{left:89.355600px;}
.x8{left:96.635850px;}
.xd{left:100.751250px;}
.x9{left:102.590400px;}
.x1c{left:103.789350px;}
.xe{left:105.686400px;}
.xf{left:107.347500px;}
.x7{left:108.794100px;}
.xb{left:111.654450px;}
.x19{left:113.353350px;}
.x21{left:120.597000px;}
.x2e{left:127.559100px;}
.x18{left:135.192750px;}
.xc{left:138.763950px;}
.x2d{left:148.818900px;}
.x1a{left:173.584050px;}
.x10{left:182.019450px;}
.x15{left:202.087500px;}
.x1b{left:204.094500px;}
.x2c{left:208.183650px;}
.x3{left:209.387850px;}
.x29{left:219.159750px;}
.x12{left:232.771800px;}
.x4{left:234.186900px;}
.xa{left:239.439750px;}
.x28{left:243.714900px;}
.x2b{left:250.579950px;}
.x11{left:265.210050px;}
.x2{left:268.298700px;}
.x14{left:269.860200px;}
.x2a{left:274.422150px;}
.x13{left:291.116550px;}
.x17{left:306.010200px;}
.x20{left:307.358700px;}
.x1e{left:323.493300px;}
.x23{left:335.866800px;}
.x1f{left:342.678300px;}
.x27{left:405.794700px;}
.x24{left:433.632450px;}
.x26{left:492.312000px;}
.x25{left:527.186400px;}
.x22{left:621.899550px;}
.x1d{left:629.545200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.400000pt;}
.v1{vertical-align:15.840000pt;}
.ls1{letter-spacing:-22.400000pt;}
.ls16{letter-spacing:-2.170667pt;}
.ls1e{letter-spacing:-1.776000pt;}
.ls1c{letter-spacing:-1.654425pt;}
.ls17{letter-spacing:-0.645333pt;}
.lse{letter-spacing:-0.586667pt;}
.ls4{letter-spacing:-0.533333pt;}
.ls10{letter-spacing:-0.469333pt;}
.ls1d{letter-spacing:-0.352005pt;}
.ls12{letter-spacing:-0.352000pt;}
.ls11{letter-spacing:-0.293333pt;}
.lsf{letter-spacing:-0.117333pt;}
.ls1f{letter-spacing:-0.096000pt;}
.ls19{letter-spacing:-0.058667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.000267pt;}
.ls1b{letter-spacing:0.000533pt;}
.ls26{letter-spacing:0.008533pt;}
.ls15{letter-spacing:0.009067pt;}
.ls14{letter-spacing:0.009600pt;}
.ls21{letter-spacing:0.010133pt;}
.ls24{letter-spacing:0.058667pt;}
.ls23{letter-spacing:0.066133pt;}
.ls25{letter-spacing:0.075200pt;}
.ls9{letter-spacing:0.234667pt;}
.ls3{letter-spacing:0.266667pt;}
.lsa{letter-spacing:0.293333pt;}
.ls22{letter-spacing:0.352000pt;}
.ls20{letter-spacing:0.477333pt;}
.ls7{letter-spacing:0.528000pt;}
.ls13{letter-spacing:0.586667pt;}
.ls1a{letter-spacing:0.720000pt;}
.ls0{letter-spacing:0.768000pt;}
.ls8{letter-spacing:4.678400pt;}
.ls6{letter-spacing:5.115200pt;}
.lsc{letter-spacing:13.493333pt;}
.ls5{letter-spacing:14.666667pt;}
.lsd{letter-spacing:46.045333pt;}
.lsb{letter-spacing:103.546667pt;}
.wsd{word-spacing:-103.546667pt;}
.ws0{word-spacing:-102.144000pt;}
.ws15{word-spacing:-29.274667pt;}
.ws11{word-spacing:-24.288000pt;}
.ws10{word-spacing:-24.170667pt;}
.ws17{word-spacing:-23.877333pt;}
.ws1d{word-spacing:-22.469333pt;}
.ws13{word-spacing:-19.477333pt;}
.wsc{word-spacing:-19.418667pt;}
.ws1e{word-spacing:-18.666667pt;}
.ws18{word-spacing:-16.485333pt;}
.wsd3{word-spacing:-14.725333pt;}
.wsb{word-spacing:-14.666667pt;}
.ws1b{word-spacing:-14.080000pt;}
.ws54{word-spacing:-13.333333pt;}
.ws47{word-spacing:-12.000000pt;}
.ws41{word-spacing:-11.000000pt;}
.wsb1{word-spacing:-10.224000pt;}
.ws6d{word-spacing:-8.800133pt;}
.wsb0{word-spacing:-8.448128pt;}
.wsaf{word-spacing:-7.145708pt;}
.ws2b{word-spacing:-2.933333pt;}
.wsa{word-spacing:-2.160000pt;}
.ws4{word-spacing:-1.152000pt;}
.wsf{word-spacing:-1.056000pt;}
.ws3{word-spacing:-0.960000pt;}
.ws2{word-spacing:-0.768000pt;}
.ws83{word-spacing:-0.720000pt;}
.ws3d{word-spacing:-0.586667pt;}
.ws16{word-spacing:-0.293333pt;}
.ws48{word-spacing:-0.240000pt;}
.ws43{word-spacing:-0.234667pt;}
.wsd1{word-spacing:-0.058667pt;}
.ws40{word-spacing:-0.053333pt;}
.wsd2{word-spacing:-0.044000pt;}
.ws1{word-spacing:0.000000pt;}
.wsc6{word-spacing:0.096000pt;}
.wsa4{word-spacing:0.106667pt;}
.ws1a{word-spacing:0.176000pt;}
.ws25{word-spacing:0.293333pt;}
.ws7c{word-spacing:0.352000pt;}
.wsbf{word-spacing:0.352005pt;}
.wsa3{word-spacing:0.410667pt;}
.ws81{word-spacing:0.432000pt;}
.ws24{word-spacing:0.469333pt;}
.ws8{word-spacing:0.533333pt;}
.ws1c{word-spacing:0.586667pt;}
.ws7a{word-spacing:0.645333pt;}
.wsb4{word-spacing:0.762667pt;}
.ws5a{word-spacing:0.821333pt;}
.ws5c{word-spacing:0.880000pt;}
.ws76{word-spacing:0.938667pt;}
.ws52{word-spacing:1.008000pt;}
.ws2a{word-spacing:1.056000pt;}
.ws80{word-spacing:1.114667pt;}
.ws5f{word-spacing:1.173333pt;}
.ws20{word-spacing:1.232000pt;}
.wsa6{word-spacing:1.280000pt;}
.wsb9{word-spacing:1.290667pt;}
.wsbb{word-spacing:1.296000pt;}
.ws88{word-spacing:1.349333pt;}
.wsc8{word-spacing:1.408000pt;}
.ws4a{word-spacing:1.466667pt;}
.ws51{word-spacing:1.525333pt;}
.wsa2{word-spacing:1.584000pt;}
.ws9c{word-spacing:1.642667pt;}
.ws77{word-spacing:1.701333pt;}
.ws35{word-spacing:1.760000pt;}
.ws33{word-spacing:1.818667pt;}
.ws8f{word-spacing:1.824000pt;}
.wsd6{word-spacing:1.877333pt;}
.ws34{word-spacing:1.994667pt;}
.ws86{word-spacing:2.053333pt;}
.ws68{word-spacing:2.064000pt;}
.ws6f{word-spacing:2.112000pt;}
.ws42{word-spacing:2.170667pt;}
.ws6a{word-spacing:2.208000pt;}
.wsd0{word-spacing:2.304000pt;}
.ws6{word-spacing:2.346667pt;}
.ws53{word-spacing:2.400000pt;}
.ws59{word-spacing:2.405333pt;}
.ws3a{word-spacing:2.464000pt;}
.ws7e{word-spacing:2.581333pt;}
.ws5b{word-spacing:2.640000pt;}
.ws7{word-spacing:2.666667pt;}
.wsa1{word-spacing:2.688000pt;}
.wsd7{word-spacing:2.698667pt;}
.wsa8{word-spacing:2.757333pt;}
.ws7d{word-spacing:2.874667pt;}
.wsbc{word-spacing:2.928000pt;}
.ws23{word-spacing:2.933333pt;}
.ws9d{word-spacing:2.992000pt;}
.ws99{word-spacing:3.050667pt;}
.ws7b{word-spacing:3.109333pt;}
.ws89{word-spacing:3.168000pt;}
.ws63{word-spacing:3.226667pt;}
.ws21{word-spacing:3.285333pt;}
.wsa5{word-spacing:3.360000pt;}
.ws1f{word-spacing:3.402667pt;}
.ws28{word-spacing:3.461333pt;}
.wsae{word-spacing:3.504000pt;}
.wsbd{word-spacing:3.520000pt;}
.wsba{word-spacing:3.552000pt;}
.wsd4{word-spacing:3.578667pt;}
.ws90{word-spacing:3.600000pt;}
.wsb7{word-spacing:3.637333pt;}
.ws62{word-spacing:3.696000pt;}
.ws92{word-spacing:3.744000pt;}
.ws79{word-spacing:3.754667pt;}
.wsb5{word-spacing:3.813333pt;}
.ws61{word-spacing:3.872000pt;}
.ws93{word-spacing:3.930667pt;}
.ws91{word-spacing:3.936000pt;}
.ws6b{word-spacing:3.984000pt;}
.ws26{word-spacing:3.989333pt;}
.wsa0{word-spacing:4.032000pt;}
.ws44{word-spacing:4.048000pt;}
.ws6c{word-spacing:4.080000pt;}
.ws60{word-spacing:4.106667pt;}
.ws37{word-spacing:4.165333pt;}
.ws71{word-spacing:4.224000pt;}
.ws31{word-spacing:4.282667pt;}
.ws67{word-spacing:4.341333pt;}
.ws3e{word-spacing:4.400000pt;}
.ws75{word-spacing:4.458667pt;}
.ws9b{word-spacing:4.517333pt;}
.ws29{word-spacing:4.576000pt;}
.ws64{word-spacing:4.634667pt;}
.ws7f{word-spacing:4.693333pt;}
.ws32{word-spacing:4.752000pt;}
.ws8b{word-spacing:4.810667pt;}
.wsce{word-spacing:4.848000pt;}
.ws45{word-spacing:4.928000pt;}
.ws8d{word-spacing:5.045333pt;}
.ws9f{word-spacing:5.088000pt;}
.ws12{word-spacing:5.104000pt;}
.ws6e{word-spacing:5.162667pt;}
.ws4b{word-spacing:5.280000pt;}
.ws30{word-spacing:5.338667pt;}
.ws27{word-spacing:5.514667pt;}
.ws5e{word-spacing:5.573333pt;}
.ws70{word-spacing:5.632000pt;}
.wsad{word-spacing:5.664000pt;}
.ws2d{word-spacing:5.690667pt;}
.wsab{word-spacing:5.749333pt;}
.ws4f{word-spacing:5.866667pt;}
.ws85{word-spacing:5.925333pt;}
.wsa9{word-spacing:5.984000pt;}
.ws36{word-spacing:6.042667pt;}
.ws4c{word-spacing:6.101333pt;}
.ws78{word-spacing:6.160000pt;}
.wsb6{word-spacing:6.218667pt;}
.ws58{word-spacing:6.277333pt;}
.ws3f{word-spacing:6.336000pt;}
.wsac{word-spacing:6.453333pt;}
.ws22{word-spacing:6.570667pt;}
.ws46{word-spacing:6.629333pt;}
.ws9{word-spacing:6.672000pt;}
.ws39{word-spacing:6.688000pt;}
.wsb2{word-spacing:6.746667pt;}
.ws2c{word-spacing:6.805333pt;}
.ws8c{word-spacing:6.864000pt;}
.ws95{word-spacing:6.922667pt;}
.ws57{word-spacing:6.981333pt;}
.ws96{word-spacing:7.040000pt;}
.ws2f{word-spacing:7.098667pt;}
.wscf{word-spacing:7.104000pt;}
.ws38{word-spacing:7.274667pt;}
.ws14{word-spacing:7.333333pt;}
.ws98{word-spacing:7.392000pt;}
.ws8e{word-spacing:7.440000pt;}
.ws74{word-spacing:7.450667pt;}
.wsbe{word-spacing:7.509333pt;}
.ws87{word-spacing:7.626667pt;}
.wscc{word-spacing:7.685333pt;}
.wsc0{word-spacing:7.744000pt;}
.ws9a{word-spacing:7.802667pt;}
.wsb8{word-spacing:7.920000pt;}
.ws65{word-spacing:7.978667pt;}
.ws69{word-spacing:8.112000pt;}
.wsc1{word-spacing:8.213333pt;}
.ws4d{word-spacing:8.330667pt;}
.ws56{word-spacing:8.448000pt;}
.ws94{word-spacing:8.565333pt;}
.ws66{word-spacing:8.624000pt;}
.ws8a{word-spacing:8.800000pt;}
.ws2e{word-spacing:9.034667pt;}
.ws3b{word-spacing:9.210667pt;}
.wscd{word-spacing:9.269333pt;}
.wsaa{word-spacing:9.504000pt;}
.ws84{word-spacing:9.621333pt;}
.ws50{word-spacing:9.738667pt;}
.ws55{word-spacing:9.914667pt;}
.wsc9{word-spacing:9.973333pt;}
.ws5{word-spacing:10.026667pt;}
.wsb3{word-spacing:10.149333pt;}
.wsca{word-spacing:10.501333pt;}
.ws49{word-spacing:10.618667pt;}
.ws4e{word-spacing:10.677333pt;}
.wscb{word-spacing:10.912000pt;}
.ws9e{word-spacing:11.029333pt;}
.wsc4{word-spacing:11.088000pt;}
.ws3c{word-spacing:11.146667pt;}
.wsc3{word-spacing:11.205333pt;}
.wsc2{word-spacing:11.264000pt;}
.ws97{word-spacing:11.322667pt;}
.ws82{word-spacing:12.000000pt;}
.wsa7{word-spacing:12.378667pt;}
.ws5d{word-spacing:12.554667pt;}
.ws72{word-spacing:12.848000pt;}
.wsc7{word-spacing:13.141333pt;}
.ws73{word-spacing:14.080000pt;}
.wsd5{word-spacing:14.666667pt;}
.wsc5{word-spacing:15.600000pt;}
.ws19{word-spacing:44.880000pt;}
.wse{word-spacing:74.213333pt;}
._1b{margin-left:-13.226133pt;}
._16{margin-left:-7.990400pt;}
._6{margin-left:-6.685333pt;}
._5{margin-left:-5.706667pt;}
._4{margin-left:-4.069333pt;}
._1{margin-left:-2.880000pt;}
._2{margin-left:-1.152000pt;}
._3{width:1.152000pt;}
._11{width:2.258667pt;}
._9{width:3.402667pt;}
._b{width:4.870400pt;}
._c{width:5.852800pt;}
._d{width:7.162133pt;}
._12{width:9.028800pt;}
._f{width:10.149333pt;}
._10{width:12.008533pt;}
._1a{width:13.200000pt;}
._18{width:14.418133pt;}
._19{width:15.696000pt;}
._7{width:19.040000pt;}
._15{width:26.064000pt;}
._e{width:32.386133pt;}
._14{width:37.536000pt;}
._13{width:38.592000pt;}
._17{width:39.590400pt;}
._0{width:44.800000pt;}
._a{width:73.730667pt;}
._8{width:103.064000pt;}
.fsc{font-size:32.000533pt;}
.fsb{font-size:35.200533pt;}
.fsa{font-size:44.000000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.fs7{font-size:112.000000pt;}
.fs6{font-size:122.666667pt;}
.fs1{font-size:160.000000pt;}
.fs0{font-size:448.000000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:8.975867pt;}
.y1{bottom:46.706400pt;}
.y20{bottom:63.415467pt;}
.y40{bottom:71.811333pt;}
.y1f{bottom:104.861333pt;}
.y53{bottom:108.925067pt;}
.y7a{bottom:109.606267pt;}
.y10c{bottom:109.606400pt;}
.y35{bottom:111.839200pt;}
.y181{bottom:113.298133pt;}
.ya1{bottom:113.439867pt;}
.yc5{bottom:124.006267pt;}
.y10b{bottom:124.006400pt;}
.y52{bottom:126.085067pt;}
.y34{bottom:127.172533pt;}
.y79{bottom:127.425467pt;}
.y9{bottom:129.750667pt;}
.y180{bottom:130.764800pt;}
.ya0{bottom:131.039867pt;}
.ye8{bottom:138.406267pt;}
.y10a{bottom:138.406400pt;}
.y21{bottom:142.276800pt;}
.y51{bottom:143.245067pt;}
.y78{bottom:145.244667pt;}
.y17f{bottom:148.231467pt;}
.y9f{bottom:148.639867pt;}
.y8{bottom:148.950667pt;}
.yc4{bottom:149.744933pt;}
.ye7{bottom:152.806267pt;}
.y159{bottom:152.806400pt;}
.y33{bottom:157.839200pt;}
.y50{bottom:160.405067pt;}
.y77{bottom:163.063867pt;}
.y17e{bottom:165.698133pt;}
.y9e{bottom:166.239867pt;}
.y15c{bottom:166.700800pt;}
.ye6{bottom:167.206267pt;}
.y158{bottom:167.206400pt;}
.y7{bottom:168.150667pt;}
.yc3{bottom:168.520667pt;}
.y32{bottom:173.172533pt;}
.y76{bottom:180.883067pt;}
.ye5{bottom:181.606267pt;}
.y157{bottom:181.606400pt;}
.y109{bottom:182.337867pt;}
.y17d{bottom:183.164800pt;}
.y9d{bottom:183.839867pt;}
.y15b{bottom:184.300800pt;}
.yc2{bottom:187.296533pt;}
.y6{bottom:187.350667pt;}
.y31{bottom:188.505867pt;}
.y4f{bottom:194.724933pt;}
.ye4{bottom:196.006267pt;}
.y156{bottom:196.006400pt;}
.y75{bottom:198.702267pt;}
.y108{bottom:200.530533pt;}
.y17c{bottom:200.631467pt;}
.y9c{bottom:201.439867pt;}
.y15a{bottom:201.900800pt;}
.yc1{bottom:206.072267pt;}
.y12c{bottom:207.344933pt;}
.y4e{bottom:211.884933pt;}
.y74{bottom:216.521467pt;}
.y17b{bottom:218.098133pt;}
.y107{bottom:218.723467pt;}
.y9b{bottom:219.039867pt;}
.y13c{bottom:219.500800pt;}
.ye3{bottom:221.744933pt;}
.yc0{bottom:224.848133pt;}
.y12b{bottom:225.324800pt;}
.y155{bottom:225.900800pt;}
.y4d{bottom:229.044933pt;}
.y73{bottom:234.340667pt;}
.y30{bottom:234.505867pt;}
.y17a{bottom:235.564800pt;}
.y9a{bottom:236.639867pt;}
.y106{bottom:236.916267pt;}
.y13b{bottom:237.100800pt;}
.ye2{bottom:240.443467pt;}
.y12a{bottom:243.304667pt;}
.y154{bottom:243.500800pt;}
.ybf{bottom:243.624000pt;}
.y5{bottom:244.074267pt;}
.y2f{bottom:249.839200pt;}
.y72{bottom:252.159733pt;}
.y179{bottom:253.031467pt;}
.y99{bottom:254.239867pt;}
.y13a{bottom:254.700800pt;}
.y105{bottom:255.109067pt;}
.ye1{bottom:259.141867pt;}
.y153{bottom:261.100800pt;}
.y129{bottom:261.284533pt;}
.ybe{bottom:262.399733pt;}
.y4c{bottom:263.364933pt;}
.y71{bottom:269.978933pt;}
.y178{bottom:270.498133pt;}
.y98{bottom:271.839867pt;}
.y139{bottom:272.300800pt;}
.y4{bottom:272.874267pt;}
.y104{bottom:273.301867pt;}
.ye0{bottom:277.840533pt;}
.y152{bottom:278.700800pt;}
.y128{bottom:279.264400pt;}
.y4b{bottom:280.524800pt;}
.ybd{bottom:281.175600pt;}
.y70{bottom:287.798133pt;}
.y177{bottom:287.964800pt;}
.y97{bottom:289.439867pt;}
.y138{bottom:289.900800pt;}
.y103{bottom:291.494667pt;}
.y2e{bottom:295.839200pt;}
.y151{bottom:296.300800pt;}
.ydf{bottom:296.539067pt;}
.y127{bottom:297.244267pt;}
.y4a{bottom:297.684800pt;}
.ybc{bottom:299.951333pt;}
.y176{bottom:305.431467pt;}
.y6f{bottom:305.617333pt;}
.y96{bottom:307.039867pt;}
.y137{bottom:307.500800pt;}
.y102{bottom:309.687600pt;}
.y2d{bottom:310.239200pt;}
.y3{bottom:312.874267pt;}
.y150{bottom:313.900800pt;}
.y126{bottom:315.224133pt;}
.yde{bottom:315.237600pt;}
.ybb{bottom:318.727200pt;}
.y175{bottom:322.898133pt;}
.y6e{bottom:323.436533pt;}
.y95{bottom:324.639867pt;}
.y136{bottom:325.100800pt;}
.y101{bottom:327.880267pt;}
.y14f{bottom:331.500800pt;}
.y49{bottom:332.004800pt;}
.y125{bottom:333.204000pt;}
.ydd{bottom:333.936133pt;}
.yba{bottom:337.503067pt;}
.y2c{bottom:339.039200pt;}
.y174{bottom:340.364800pt;}
.y6d{bottom:341.255733pt;}
.y94{bottom:342.239867pt;}
.y135{bottom:342.700800pt;}
.y100{bottom:346.073200pt;}
.y14e{bottom:349.100800pt;}
.y48{bottom:349.164667pt;}
.y124{bottom:351.183867pt;}
.ydc{bottom:352.634667pt;}
.yb9{bottom:356.278800pt;}
.y173{bottom:357.831467pt;}
.y6c{bottom:359.074933pt;}
.y93{bottom:359.839867pt;}
.y1e{bottom:359.984267pt;}
.y134{bottom:360.300800pt;}
.y2{bottom:360.874267pt;}
.yff{bottom:364.266000pt;}
.y14d{bottom:366.700800pt;}
.y123{bottom:369.163733pt;}
.ydb{bottom:371.333067pt;}
.yb8{bottom:375.054667pt;}
.y172{bottom:375.298133pt;}
.y6b{bottom:376.894133pt;}
.y92{bottom:377.439867pt;}
.y133{bottom:377.900800pt;}
.y2b{bottom:382.239200pt;}
.yfe{bottom:382.458800pt;}
.y47{bottom:383.484667pt;}
.y1d{bottom:383.984267pt;}
.y14c{bottom:384.300800pt;}
.y122{bottom:387.143600pt;}
.yda{bottom:390.031600pt;}
.y171{bottom:392.764800pt;}
.yb7{bottom:393.830533pt;}
.y6a{bottom:394.713333pt;}
.y91{bottom:395.039867pt;}
.y132{bottom:395.500800pt;}
.y46{bottom:400.644667pt;}
.yfd{bottom:400.651600pt;}
.y14b{bottom:401.900800pt;}
.y121{bottom:405.123467pt;}
.y1c{bottom:407.984267pt;}
.yd9{bottom:408.730133pt;}
.y170{bottom:410.231467pt;}
.y2a{bottom:411.039200pt;}
.y69{bottom:412.532533pt;}
.y90{bottom:412.639867pt;}
.y131{bottom:413.100800pt;}
.yfc{bottom:418.844400pt;}
.y14a{bottom:419.500800pt;}
.y11{bottom:422.628533pt;}
.y120{bottom:423.103333pt;}
.yd8{bottom:427.428667pt;}
.y16f{bottom:427.698133pt;}
.y8f{bottom:430.239867pt;}
.y68{bottom:430.351600pt;}
.y130{bottom:430.700800pt;}
.y1b{bottom:431.984267pt;}
.y45{bottom:434.964533pt;}
.yfb{bottom:437.037333pt;}
.y149{bottom:437.100800pt;}
.y10{bottom:438.628533pt;}
.y29{bottom:439.839200pt;}
.y11f{bottom:441.083200pt;}
.y16e{bottom:445.164800pt;}
.yd7{bottom:446.127200pt;}
.y8e{bottom:447.839867pt;}
.y67{bottom:448.170800pt;}
.y12f{bottom:448.300800pt;}
.y44{bottom:452.124533pt;}
.y28{bottom:454.239200pt;}
.yf{bottom:454.628533pt;}
.y148{bottom:454.700800pt;}
.yfa{bottom:455.230000pt;}
.y63{bottom:456.661333pt;}
.y11e{bottom:459.063067pt;}
.y16d{bottom:462.631467pt;}
.yd6{bottom:464.825733pt;}
.y8d{bottom:465.439867pt;}
.y12e{bottom:465.900800pt;}
.y66{bottom:465.990133pt;}
.ye{bottom:470.628533pt;}
.y147{bottom:472.300800pt;}
.yf9{bottom:473.422933pt;}
.y62{bottom:473.821333pt;}
.y11d{bottom:477.042933pt;}
.y16c{bottom:480.098133pt;}
.y27{bottom:483.039200pt;}
.y8c{bottom:483.039867pt;}
.yb1{bottom:483.500800pt;}
.yd5{bottom:483.524267pt;}
.y65{bottom:483.809200pt;}
.y43{bottom:486.444533pt;}
.y1a{bottom:486.480267pt;}
.yd{bottom:486.628533pt;}
.yb6{bottom:487.709600pt;}
.y146{bottom:489.900800pt;}
.y61{bottom:490.981333pt;}
.yf8{bottom:491.615733pt;}
.y11c{bottom:495.022800pt;}
.y26{bottom:497.439200pt;}
.y16b{bottom:497.564800pt;}
.y8b{bottom:500.639867pt;}
.yb0{bottom:501.100800pt;}
.y64{bottom:501.628400pt;}
.yd4{bottom:502.222800pt;}
.yc{bottom:502.628533pt;}
.yb5{bottom:502.925333pt;}
.y42{bottom:503.604533pt;}
.y19{bottom:505.146933pt;}
.y145{bottom:507.500800pt;}
.yf7{bottom:509.808533pt;}
.y11b{bottom:513.002667pt;}
.y16a{bottom:515.031467pt;}
.yb4{bottom:518.141200pt;}
.y8a{bottom:518.239867pt;}
.yaf{bottom:518.700800pt;}
.yd3{bottom:520.921333pt;}
.y18{bottom:523.813600pt;}
.y144{bottom:525.100800pt;}
.y60{bottom:525.301333pt;}
.y25{bottom:526.239200pt;}
.yf6{bottom:528.001333pt;}
.y11a{bottom:530.982533pt;}
.y169{bottom:532.498133pt;}
.yb3{bottom:533.356933pt;}
.y89{bottom:535.839867pt;}
.yae{bottom:536.300800pt;}
.yb{bottom:537.668533pt;}
.yd2{bottom:539.619867pt;}
.y24{bottom:540.639333pt;}
.y5f{bottom:542.461200pt;}
.y17{bottom:542.480267pt;}
.y143{bottom:542.700800pt;}
.yf5{bottom:546.194133pt;}
.y119{bottom:548.962400pt;}
.y168{bottom:549.964800pt;}
.y88{bottom:553.439867pt;}
.y12d{bottom:553.900800pt;}
.y23{bottom:555.039200pt;}
.ya{bottom:556.708533pt;}
.yd1{bottom:558.318400pt;}
.y5e{bottom:559.621200pt;}
.y142{bottom:560.300800pt;}
.y16{bottom:561.146933pt;}
.yf4{bottom:564.387067pt;}
.y118{bottom:566.942267pt;}
.y167{bottom:567.431467pt;}
.yb2{bottom:567.708533pt;}
.y87{bottom:571.039867pt;}
.yad{bottom:571.500800pt;}
.yd0{bottom:577.016933pt;}
.y141{bottom:577.900800pt;}
.y15{bottom:579.813600pt;}
.yf3{bottom:582.579867pt;}
.y166{bottom:584.898133pt;}
.y117{bottom:584.922267pt;}
.y86{bottom:588.639867pt;}
.yac{bottom:589.100800pt;}
.y41{bottom:590.724400pt;}
.y5d{bottom:593.941200pt;}
.ycf{bottom:595.715467pt;}
.y14{bottom:598.480267pt;}
.yf2{bottom:600.772667pt;}
.y165{bottom:602.364800pt;}
.y116{bottom:602.902000pt;}
.y85{bottom:606.239867pt;}
.yab{bottom:606.700800pt;}
.y5c{bottom:611.101067pt;}
.y3f{bottom:611.708000pt;}
.y140{bottom:613.100800pt;}
.yce{bottom:614.414000pt;}
.yf1{bottom:618.965467pt;}
.y115{bottom:620.881867pt;}
.y84{bottom:623.839867pt;}
.yaa{bottom:624.300800pt;}
.y164{bottom:625.500800pt;}
.y5b{bottom:628.261067pt;}
.y13f{bottom:629.100800pt;}
.y3e{bottom:631.933200pt;}
.ycd{bottom:633.112533pt;}
.yf0{bottom:637.158267pt;}
.y114{bottom:638.861867pt;}
.y83{bottom:641.439867pt;}
.ya9{bottom:641.900800pt;}
.y13e{bottom:645.100800pt;}
.y13{bottom:647.813600pt;}
.ycc{bottom:651.811067pt;}
.y3d{bottom:652.158400pt;}
.yef{bottom:655.351067pt;}
.y113{bottom:656.841733pt;}
.y82{bottom:659.039867pt;}
.ya8{bottom:659.500800pt;}
.y163{bottom:660.434133pt;}
.y13d{bottom:661.100800pt;}
.y5a{bottom:662.581067pt;}
.y3c{bottom:665.958400pt;}
.ycb{bottom:670.509600pt;}
.yee{bottom:673.544000pt;}
.y112{bottom:674.821467pt;}
.y81{bottom:676.639867pt;}
.ya7{bottom:677.100800pt;}
.y162{bottom:677.900800pt;}
.y12{bottom:678.480267pt;}
.y59{bottom:679.741067pt;}
.y3b{bottom:679.758400pt;}
.yca{bottom:689.208133pt;}
.yed{bottom:691.736800pt;}
.y111{bottom:692.801467pt;}
.y80{bottom:694.239867pt;}
.ya6{bottom:694.700800pt;}
.y161{bottom:695.367467pt;}
.y3a{bottom:699.983600pt;}
.yc9{bottom:707.906667pt;}
.yec{bottom:709.929467pt;}
.y110{bottom:710.781200pt;}
.y7f{bottom:711.839867pt;}
.ya5{bottom:712.300800pt;}
.y160{bottom:712.834000pt;}
.y58{bottom:714.060933pt;}
.y39{bottom:720.208800pt;}
.yc8{bottom:726.605200pt;}
.yeb{bottom:728.122267pt;}
.y10f{bottom:728.761200pt;}
.y7e{bottom:729.439867pt;}
.ya4{bottom:729.900800pt;}
.y15f{bottom:730.300800pt;}
.y57{bottom:731.220933pt;}
.y38{bottom:740.434000pt;}
.yc7{bottom:745.303733pt;}
.yea{bottom:746.315067pt;}
.y10e{bottom:746.741067pt;}
.y7d{bottom:747.039733pt;}
.ya3{bottom:747.500667pt;}
.y15e{bottom:747.767467pt;}
.y37{bottom:754.234000pt;}
.yc6{bottom:764.002133pt;}
.ye9{bottom:764.508000pt;}
.y7c{bottom:764.639867pt;}
.y10d{bottom:764.720800pt;}
.ya2{bottom:765.100800pt;}
.y15d{bottom:765.234133pt;}
.y56{bottom:765.540800pt;}
.y36{bottom:768.034000pt;}
.y7b{bottom:782.239867pt;}
.y55{bottom:782.700800pt;}
.y54{bottom:821.496000pt;}
.h12{height:32.976562pt;}
.hf{height:36.640625pt;}
.h15{height:40.304688pt;}
.h11{height:42.375000pt;}
.h16{height:44.671875pt;}
.h10{height:46.380208pt;}
.he{height:47.083333pt;}
.h5{height:49.280000pt;}
.h8{height:49.635417pt;}
.h14{height:51.018229pt;}
.h13{height:51.791667pt;}
.h17{height:54.598958pt;}
.hd{height:55.029333pt;}
.h7{height:59.562500pt;}
.hb{height:65.916667pt;}
.h6{height:69.489583pt;}
.h4{height:75.360000pt;}
.hc{height:80.336000pt;}
.ha{height:104.234375pt;}
.h9{height:114.161458pt;}
.h3{height:125.600000pt;}
.h2{height:351.680000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:280.665333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:39.117600pt;}
.x16{left:74.715467pt;}
.x6{left:76.998800pt;}
.x5{left:79.427200pt;}
.x8{left:85.898533pt;}
.xd{left:89.556667pt;}
.x9{left:91.191467pt;}
.x1c{left:92.257200pt;}
.xe{left:93.943467pt;}
.xf{left:95.420000pt;}
.x7{left:96.705867pt;}
.xb{left:99.248400pt;}
.x19{left:100.758533pt;}
.x21{left:107.197333pt;}
.x2e{left:113.385867pt;}
.x18{left:120.171333pt;}
.xc{left:123.345733pt;}
.x2d{left:132.283467pt;}
.x1a{left:154.296933pt;}
.x10{left:161.795067pt;}
.x15{left:179.633333pt;}
.x1b{left:181.417333pt;}
.x2c{left:185.052133pt;}
.x3{left:186.122533pt;}
.x29{left:194.808667pt;}
.x12{left:206.908267pt;}
.x4{left:208.166133pt;}
.xa{left:212.835333pt;}
.x28{left:216.635467pt;}
.x2b{left:222.737733pt;}
.x11{left:235.742267pt;}
.x2{left:238.487733pt;}
.x14{left:239.875733pt;}
.x2a{left:243.930800pt;}
.x13{left:258.770267pt;}
.x17{left:272.009067pt;}
.x20{left:273.207733pt;}
.x1e{left:287.549600pt;}
.x23{left:298.548267pt;}
.x1f{left:304.602933pt;}
.x27{left:360.706400pt;}
.x24{left:385.451067pt;}
.x26{left:437.610667pt;}
.x25{left:468.610133pt;}
.x22{left:552.799600pt;}
.x1d{left:559.595733pt;}
}




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