
    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_f75f55fd7ecfdc849a750cca.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_034af514cea8c993bb6fa69c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.101562;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_95a3721e05220aafc8cfc3e6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_84a6455a6c19048681c76145.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_27c151fa171729d2f5367421.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.095703;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_0b776e066f6c089ed51cf372.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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_344e1c37722fd521f2f92b34.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_fa4083d297337cdeefbc6259.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9fe7b28a52aa2b23312e08d8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7bfc5fe1b9a784d6225233c0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.092773;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_546d49252c3cd835ba17c717.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.765625;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_59b2ff36db16cd34a5969e4f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.102539;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_8219670fcacfba0c578f6628.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls24{letter-spacing:-1.008000px;}
.ls35{letter-spacing:-0.936000px;}
.ls12{letter-spacing:-0.720000px;}
.ls38{letter-spacing:-0.648000px;}
.ls2f{letter-spacing:-0.576000px;}
.ls16{letter-spacing:-0.432000px;}
.ls2d{letter-spacing:-0.336960px;}
.ls7{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.216000px;}
.ls37{letter-spacing:-0.168480px;}
.ls13{letter-spacing:-0.144000px;}
.ls30{letter-spacing:-0.084240px;}
.ls14{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.216000px;}
.ls28{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.336960px;}
.ls18{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.432000px;}
.ls33{letter-spacing:0.504000px;}
.ls50{letter-spacing:0.576000px;}
.ls9{letter-spacing:0.720000px;}
.ls53{letter-spacing:0.727200px;}
.ls58{letter-spacing:0.792000px;}
.ls44{letter-spacing:0.864000px;}
.ls1{letter-spacing:1.440000px;}
.ls34{letter-spacing:2.160000px;}
.ls23{letter-spacing:2.880000px;}
.ls1d{letter-spacing:3.600000px;}
.ls3c{letter-spacing:4.320000px;}
.ls1b{letter-spacing:5.040000px;}
.ls2{letter-spacing:5.760000px;}
.ls2a{letter-spacing:6.480000px;}
.lsd{letter-spacing:7.200000px;}
.ls19{letter-spacing:7.920000px;}
.ls2c{letter-spacing:8.064000px;}
.ls25{letter-spacing:8.640000px;}
.ls40{letter-spacing:9.360000px;}
.lsc{letter-spacing:10.080000px;}
.ls1c{letter-spacing:10.800000px;}
.ls22{letter-spacing:11.520000px;}
.ls0{letter-spacing:12.240000px;}
.ls2e{letter-spacing:12.960000px;}
.lsb{letter-spacing:13.680000px;}
.lsa{letter-spacing:14.400000px;}
.ls32{letter-spacing:15.120000px;}
.ls49{letter-spacing:15.840000px;}
.ls1a{letter-spacing:16.560000px;}
.ls43{letter-spacing:17.280000px;}
.ls3d{letter-spacing:18.000000px;}
.ls11{letter-spacing:18.720000px;}
.ls4d{letter-spacing:19.440000px;}
.ls39{letter-spacing:19.447200px;}
.ls4a{letter-spacing:20.160000px;}
.ls3a{letter-spacing:21.600000px;}
.lsf{letter-spacing:23.040000px;}
.ls47{letter-spacing:23.760000px;}
.ls21{letter-spacing:24.480000px;}
.ls46{letter-spacing:25.200000px;}
.ls17{letter-spacing:25.920000px;}
.ls48{letter-spacing:26.640000px;}
.ls4c{letter-spacing:27.352800px;}
.ls10{letter-spacing:27.360000px;}
.ls51{letter-spacing:28.080000px;}
.ls5{letter-spacing:28.224000px;}
.ls42{letter-spacing:28.800000px;}
.ls36{letter-spacing:29.520000px;}
.ls29{letter-spacing:31.104000px;}
.ls4{letter-spacing:31.824000px;}
.ls3b{letter-spacing:33.984000px;}
.ls4b{letter-spacing:36.000000px;}
.ls26{letter-spacing:36.720000px;}
.ls4f{letter-spacing:38.160000px;}
.ls31{letter-spacing:39.600000px;}
.ls3f{letter-spacing:40.320000px;}
.ls45{letter-spacing:41.040000px;}
.ls57{letter-spacing:41.760000px;}
.ls52{letter-spacing:42.480000px;}
.ls4e{letter-spacing:43.856640px;}
.ls54{letter-spacing:44.640000px;}
.ls41{letter-spacing:48.960000px;}
.ls55{letter-spacing:51.120000px;}
.ls56{letter-spacing:54.720000px;}
.lse{letter-spacing:61.920000px;}
.ls27{letter-spacing:64.016640px;}
.ls2b{letter-spacing:64.080000px;}
.ls3e{letter-spacing:97.200000px;}
.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;}
}
.ws40{word-spacing:-59.760000px;}
.ws98{word-spacing:-21.396960px;}
.ws58{word-spacing:-20.891520px;}
.ws9c{word-spacing:-18.792000px;}
.ws3f{word-spacing:-18.720000px;}
.ws8e{word-spacing:-18.576000px;}
.wsa6{word-spacing:-18.504000px;}
.ws51{word-spacing:-18.288000px;}
.ws23{word-spacing:-18.216000px;}
.ws2{word-spacing:-18.144000px;}
.ws22{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.928000px;}
.ws10{word-spacing:-17.856000px;}
.ws21{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws52{word-spacing:-17.064000px;}
.ws94{word-spacing:-16.992000px;}
.ws0{word-spacing:-16.560000px;}
.ws7d{word-spacing:-4.464000px;}
.ws3c{word-spacing:-4.320000px;}
.ws82{word-spacing:-3.744000px;}
.ws55{word-spacing:-3.600000px;}
.ws86{word-spacing:-3.384000px;}
.ws56{word-spacing:-3.312000px;}
.ws7c{word-spacing:-3.024000px;}
.ws25{word-spacing:-2.880000px;}
.ws5e{word-spacing:-2.592000px;}
.ws85{word-spacing:-2.304000px;}
.ws24{word-spacing:-2.160000px;}
.wsa4{word-spacing:-2.016000px;}
.ws1c{word-spacing:-1.440000px;}
.ws84{word-spacing:-1.224000px;}
.wsa0{word-spacing:-1.152000px;}
.ws32{word-spacing:-0.864000px;}
.ws13{word-spacing:-0.720000px;}
.wsf{word-spacing:-0.505440px;}
.ws9f{word-spacing:-0.504000px;}
.ws2b{word-spacing:-0.432000px;}
.ws9a{word-spacing:-0.336960px;}
.ws5c{word-spacing:-0.288000px;}
.ws67{word-spacing:-0.216000px;}
.ws9{word-spacing:-0.144000px;}
.ws5a{word-spacing:-0.084240px;}
.ws39{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.ws37{word-spacing:0.072000px;}
.ws4e{word-spacing:0.084240px;}
.ws83{word-spacing:0.144000px;}
.ws17{word-spacing:0.216000px;}
.ws7{word-spacing:0.288000px;}
.ws41{word-spacing:0.336960px;}
.ws1b{word-spacing:0.432000px;}
.ws4a{word-spacing:0.576000px;}
.ws60{word-spacing:0.648000px;}
.ws12{word-spacing:0.720000px;}
.wsa5{word-spacing:0.936000px;}
.ws38{word-spacing:1.008000px;}
.ws46{word-spacing:1.296000px;}
.wse{word-spacing:1.440000px;}
.ws88{word-spacing:1.728000px;}
.ws91{word-spacing:2.016000px;}
.ws59{word-spacing:2.160000px;}
.ws54{word-spacing:2.448000px;}
.ws1a{word-spacing:2.880000px;}
.ws4f{word-spacing:3.168000px;}
.ws77{word-spacing:3.456000px;}
.wsc{word-spacing:3.600000px;}
.ws2f{word-spacing:3.888000px;}
.wsd{word-spacing:4.320000px;}
.ws7f{word-spacing:4.608000px;}
.ws28{word-spacing:4.896000px;}
.ws36{word-spacing:5.040000px;}
.ws63{word-spacing:5.328000px;}
.ws93{word-spacing:5.616000px;}
.ws5{word-spacing:5.760000px;}
.ws18{word-spacing:6.048000px;}
.ws5f{word-spacing:6.192000px;}
.ws1d{word-spacing:6.480000px;}
.ws90{word-spacing:7.056000px;}
.ws6{word-spacing:7.200000px;}
.ws6f{word-spacing:7.344000px;}
.ws73{word-spacing:7.488000px;}
.ws29{word-spacing:7.776000px;}
.ws2a{word-spacing:7.920000px;}
.ws80{word-spacing:8.208000px;}
.ws87{word-spacing:8.496000px;}
.ws3d{word-spacing:8.640000px;}
.ws5d{word-spacing:8.928000px;}
.ws70{word-spacing:9.216000px;}
.wsb{word-spacing:9.360000px;}
.ws71{word-spacing:9.648000px;}
.ws4b{word-spacing:9.936000px;}
.ws14{word-spacing:10.080000px;}
.ws9b{word-spacing:10.368000px;}
.ws6a{word-spacing:10.656000px;}
.ws49{word-spacing:10.800000px;}
.ws61{word-spacing:11.088000px;}
.ws2c{word-spacing:11.376000px;}
.ws8b{word-spacing:11.520000px;}
.wsa1{word-spacing:11.664000px;}
.ws43{word-spacing:12.240000px;}
.ws47{word-spacing:12.960000px;}
.ws8f{word-spacing:13.176000px;}
.ws26{word-spacing:13.536000px;}
.ws15{word-spacing:13.680000px;}
.ws1f{word-spacing:13.824000px;}
.ws16{word-spacing:13.968000px;}
.ws68{word-spacing:14.400000px;}
.ws69{word-spacing:15.120000px;}
.ws53{word-spacing:15.408000px;}
.ws7e{word-spacing:15.840000px;}
.ws2d{word-spacing:16.416000px;}
.ws2e{word-spacing:16.560000px;}
.ws35{word-spacing:17.280000px;}
.ws8{word-spacing:17.568000px;}
.ws8d{word-spacing:18.000000px;}
.ws20{word-spacing:18.720000px;}
.ws97{word-spacing:19.008000px;}
.ws62{word-spacing:19.152000px;}
.ws6d{word-spacing:19.440000px;}
.ws6b{word-spacing:19.728000px;}
.ws6c{word-spacing:20.160000px;}
.ws8c{word-spacing:20.448000px;}
.ws48{word-spacing:21.600000px;}
.ws57{word-spacing:21.888000px;}
.ws7b{word-spacing:22.320000px;}
.ws99{word-spacing:22.608000px;}
.ws8a{word-spacing:22.752000px;}
.ws34{word-spacing:22.896000px;}
.ws3b{word-spacing:23.040000px;}
.ws33{word-spacing:23.112000px;}
.ws6e{word-spacing:23.760000px;}
.ws31{word-spacing:24.480000px;}
.ws30{word-spacing:24.768000px;}
.ws3a{word-spacing:25.200000px;}
.ws7a{word-spacing:25.488000px;}
.ws75{word-spacing:25.776000px;}
.ws27{word-spacing:25.920000px;}
.ws76{word-spacing:26.208000px;}
.ws4d{word-spacing:26.496000px;}
.ws19{word-spacing:27.360000px;}
.ws3e{word-spacing:28.080000px;}
.ws4c{word-spacing:28.800000px;}
.wsa2{word-spacing:30.240000px;}
.ws5b{word-spacing:30.528000px;}
.ws92{word-spacing:30.960000px;}
.ws72{word-spacing:32.400000px;}
.ws66{word-spacing:35.280000px;}
.ws64{word-spacing:35.568000px;}
.ws65{word-spacing:36.000000px;}
.ws42{word-spacing:36.720000px;}
.ws50{word-spacing:37.440000px;}
.ws1e{word-spacing:38.160000px;}
.wsa3{word-spacing:38.448000px;}
.ws79{word-spacing:40.176000px;}
.ws89{word-spacing:40.320000px;}
.ws78{word-spacing:40.608000px;}
.ws96{word-spacing:41.040000px;}
.ws81{word-spacing:41.760000px;}
.ws95{word-spacing:42.480000px;}
.ws9e{word-spacing:44.496000px;}
.ws9d{word-spacing:44.640000px;}
.ws74{word-spacing:48.960000px;}
.ws44{word-spacing:64.080000px;}
.ws45{word-spacing:64.368000px;}
.wsa{word-spacing:64.800000px;}
._37{margin-left:-37.768032px;}
._39{margin-left:-29.016000px;}
._38{margin-left:-27.850464px;}
._1c{margin-left:-19.008000px;}
._34{margin-left:-16.806816px;}
._36{margin-left:-13.394592px;}
._33{margin-left:-11.245536px;}
._12{margin-left:-5.688000px;}
._13{margin-left:-4.032000px;}
._14{margin-left:-2.941632px;}
._0{margin-left:-1.066464px;}
._1{width:1.110816px;}
._11{width:2.431296px;}
._10{width:4.018464px;}
._2{width:5.112000px;}
._3{width:6.336000px;}
._f{width:7.416000px;}
._d{width:8.928000px;}
._e{width:10.080000px;}
._6{width:11.304000px;}
._7{width:12.394368px;}
._15{width:13.710816px;}
._4{width:15.696000px;}
._5{width:16.803648px;}
._1d{width:19.049184px;}
._1a{width:20.376000px;}
._31{width:21.384000px;}
._17{width:22.392000px;}
._18{width:23.688000px;}
._1f{width:24.696000px;}
._1e{width:25.704000px;}
._19{width:27.288000px;}
._1b{width:29.218464px;}
._23{width:30.816000px;}
._24{width:32.472000px;}
._26{width:33.840000px;}
._27{width:35.084736px;}
._a{width:36.850464px;}
._b{width:37.994976px;}
._32{width:39.112416px;}
._25{width:40.176000px;}
._20{width:41.760000px;}
._21{width:43.488000px;}
._22{width:44.568000px;}
._3a{width:45.720000px;}
._35{width:47.448000px;}
._2b{width:49.330368px;}
._3b{width:50.657184px;}
._2f{width:52.056000px;}
._2e{width:53.352000px;}
._3c{width:55.382112px;}
._8{width:56.520000px;}
._9{width:57.600000px;}
._2d{width:58.841280px;}
._2c{width:59.873184px;}
._16{width:61.920000px;}
._c{width:64.512000px;}
._29{width:65.794464px;}
._30{width:95.242464px;}
._2a{width:97.179552px;}
._28{width:192.024000px;}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.060000px;}
.y1{bottom:77.760000px;}
.yb8{bottom:111.060000px;}
.y19e{bottom:115.020000px;}
.y106{bottom:115.740000px;}
.y44{bottom:116.100000px;}
.y189{bottom:116.640000px;}
.yee{bottom:119.880000px;}
.y14c{bottom:121.860000px;}
.y7e{bottom:124.020000px;}
.y118{bottom:126.720000px;}
.y158{bottom:127.440000px;}
.y1b6{bottom:129.420000px;}
.y1d4{bottom:133.955100px;}
.y1a9{bottom:134.460000px;}
.y5c{bottom:135.180000px;}
.y5b{bottom:139.320000px;}
.y1c8{bottom:139.500000px;}
.yb7{bottom:142.200000px;}
.y19d{bottom:145.980000px;}
.yd8{bottom:146.520000px;}
.y105{bottom:146.880000px;}
.y43{bottom:147.060000px;}
.y188{bottom:147.780000px;}
.ye3{bottom:150.840000px;}
.y21{bottom:151.200000px;}
.y14b{bottom:153.000000px;}
.y7d{bottom:154.980000px;}
.y157{bottom:158.580000px;}
.y1a8{bottom:165.420000px;}
.y1d3{bottom:165.627720px;}
.y117{bottom:169.740000px;}
.y9c{bottom:169.920000px;}
.y5a{bottom:170.460000px;}
.y16b{bottom:171.000000px;}
.y1b5{bottom:172.440000px;}
.yb6{bottom:173.160000px;}
.y19c{bottom:177.120000px;}
.yd7{bottom:177.480000px;}
.y131{bottom:177.660000px;}
.y104{bottom:177.840000px;}
.y42{bottom:178.200000px;}
.y187{bottom:178.740000px;}
.ye2{bottom:181.980000px;}
.y14a{bottom:183.960000px;}
.y7c{bottom:186.120000px;}
.y156{bottom:189.540000px;}
.y20{bottom:194.220000px;}
.y1d2{bottom:197.491860px;}
.y116{bottom:200.700000px;}
.y9b{bottom:200.880000px;}
.y59{bottom:201.420000px;}
.y1c7{bottom:201.600000px;}
.y16a{bottom:201.960000px;}
.yb5{bottom:204.300000px;}
.y19b{bottom:208.080000px;}
.y1a7{bottom:208.440000px;}
.yd6{bottom:208.620000px;}
.y130{bottom:208.800000px;}
.y103{bottom:208.980000px;}
.y41{bottom:209.160000px;}
.y186{bottom:209.880000px;}
.ye1{bottom:212.940000px;}
.y149{bottom:215.100000px;}
.y1b4{bottom:215.460000px;}
.y7b{bottom:217.080000px;}
.y155{bottom:220.680000px;}
.y1f{bottom:225.360000px;}
.y1d1{bottom:229.164480px;}
.y115{bottom:231.840000px;}
.y9a{bottom:232.020000px;}
.y58{bottom:232.560000px;}
.y169{bottom:233.100000px;}
.yb4{bottom:235.260000px;}
.y19a{bottom:239.220000px;}
.yd5{bottom:239.580000px;}
.y12f{bottom:239.760000px;}
.y102{bottom:239.940000px;}
.y40{bottom:240.300000px;}
.y185{bottom:240.840000px;}
.y148{bottom:246.060000px;}
.ye0{bottom:247.320000px;}
.y7a{bottom:248.220000px;}
.y154{bottom:251.640000px;}
.yed{bottom:255.960000px;}
.y1e{bottom:256.320000px;}
.y1b3{bottom:258.480000px;}
.y1d0{bottom:260.837100px;}
.y114{bottom:262.800000px;}
.y99{bottom:262.980000px;}
.y57{bottom:263.520000px;}
.y1c6{bottom:263.700000px;}
.y168{bottom:264.060000px;}
.yb3{bottom:266.400000px;}
.y199{bottom:270.180000px;}
.y1a6{bottom:270.540000px;}
.yd4{bottom:270.720000px;}
.y101{bottom:271.080000px;}
.y3f{bottom:271.260000px;}
.y184{bottom:271.800000px;}
.y12e{bottom:274.140000px;}
.y147{bottom:277.200000px;}
.ydf{bottom:278.280000px;}
.y79{bottom:279.180000px;}
.y153{bottom:282.600000px;}
.yec{bottom:287.100000px;}
.y1d{bottom:287.460000px;}
.y1cf{bottom:292.701240px;}
.y113{bottom:293.940000px;}
.y98{bottom:294.120000px;}
.y56{bottom:294.660000px;}
.y167{bottom:295.200000px;}
.y198{bottom:301.320000px;}
.y1b2{bottom:301.500000px;}
.yd3{bottom:301.680000px;}
.y100{bottom:302.040000px;}
.y3e{bottom:302.400000px;}
.y183{bottom:302.940000px;}
.yb2{bottom:309.420000px;}
.y78{bottom:310.320000px;}
.y146{bottom:311.400000px;}
.y152{bottom:313.740000px;}
.y12d{bottom:317.160000px;}
.yeb{bottom:318.060000px;}
.y1c{bottom:318.420000px;}
.y1ce{bottom:324.373860px;}
.y112{bottom:324.900000px;}
.y97{bottom:325.080000px;}
.y55{bottom:325.620000px;}
.y1c5{bottom:325.800000px;}
.y166{bottom:326.160000px;}
.y197{bottom:332.280000px;}
.y1a5{bottom:332.640000px;}
.yd2{bottom:332.820000px;}
.y3d{bottom:333.360000px;}
.y182{bottom:333.900000px;}
.yb1{bottom:340.380000px;}
.yff{bottom:340.920000px;}
.y77{bottom:341.280000px;}
.y151{bottom:344.700000px;}
.y12c{bottom:348.300000px;}
.yea{bottom:352.440000px;}
.y145{bottom:354.600000px;}
.y111{bottom:356.040000px;}
.y1cd{bottom:356.046480px;}
.y96{bottom:356.220000px;}
.y54{bottom:356.760000px;}
.y165{bottom:357.300000px;}
.y1b{bottom:361.440000px;}
.y196{bottom:363.420000px;}
.yd1{bottom:363.780000px;}
.y3c{bottom:364.500000px;}
.y181{bottom:365.040000px;}
.yb0{bottom:371.520000px;}
.y76{bottom:372.420000px;}
.y150{bottom:375.840000px;}
.y12b{bottom:379.260000px;}
.ye9{bottom:383.400000px;}
.yfe{bottom:383.940000px;}
.y144{bottom:385.560000px;}
.y110{bottom:387.000000px;}
.y95{bottom:387.180000px;}
.y53{bottom:387.720000px;}
.y1c4{bottom:387.900000px;}
.y1cc{bottom:387.910620px;}
.y164{bottom:391.500000px;}
.y1a{bottom:392.580000px;}
.y195{bottom:394.380000px;}
.y1a4{bottom:394.740000px;}
.yd0{bottom:394.920000px;}
.y3b{bottom:395.460000px;}
.yaf{bottom:402.480000px;}
.y75{bottom:403.380000px;}
.y14f{bottom:406.800000px;}
.y180{bottom:408.060000px;}
.y12a{bottom:410.220000px;}
.ye8{bottom:414.540000px;}
.yfd{bottom:415.080000px;}
.y143{bottom:416.700000px;}
.y10f{bottom:418.140000px;}
.y94{bottom:418.320000px;}
.y52{bottom:418.860000px;}
.y1cb{bottom:419.583240px;}
.y163{bottom:422.640000px;}
.y194{bottom:425.520000px;}
.ycf{bottom:425.880000px;}
.y3a{bottom:426.600000px;}
.y1b1{bottom:430.740000px;}
.y19{bottom:431.820000px;}
.yae{bottom:433.620000px;}
.y74{bottom:434.520000px;}
.y14e{bottom:437.940000px;}
.y129{bottom:441.360000px;}
.ye7{bottom:445.500000px;}
.yfc{bottom:446.040000px;}
.y142{bottom:447.660000px;}
.y10e{bottom:449.100000px;}
.y93{bottom:449.280000px;}
.y51{bottom:449.820000px;}
.y1c3{bottom:450.000000px;}
.y1ca{bottom:451.255860px;}
.y162{bottom:453.600000px;}
.y193{bottom:456.480000px;}
.y1a3{bottom:456.840000px;}
.yce{bottom:457.020000px;}
.y17f{bottom:457.200000px;}
.y39{bottom:457.560000px;}
.yad{bottom:464.580000px;}
.y73{bottom:465.480000px;}
.y14d{bottom:468.900000px;}
.y128{bottom:472.320000px;}
.y1b0{bottom:473.760000px;}
.ye6{bottom:476.640000px;}
.yfb{bottom:477.180000px;}
.y18{bottom:477.720000px;}
.y141{bottom:478.800000px;}
.y92{bottom:480.420000px;}
.y50{bottom:480.780000px;}
.y1c2{bottom:480.960000px;}
.y1c9{bottom:483.120000px;}
.y161{bottom:484.740000px;}
.y192{bottom:487.620000px;}
.y10d{bottom:487.980000px;}
.y17e{bottom:488.160000px;}
.y38{bottom:488.700000px;}
.yac{bottom:495.720000px;}
.y72{bottom:496.620000px;}
.ycd{bottom:500.040000px;}
.y127{bottom:503.460000px;}
.ye5{bottom:507.600000px;}
.yfa{bottom:508.140000px;}
.y17{bottom:508.860000px;}
.y140{bottom:509.760000px;}
.y91{bottom:511.380000px;}
.y4f{bottom:511.920000px;}
.y1c1{bottom:512.100000px;}
.y160{bottom:515.700000px;}
.y1af{bottom:516.780000px;}
.y1a2{bottom:518.940000px;}
.y17d{bottom:519.300000px;}
.y37{bottom:519.660000px;}
.yab{bottom:526.680000px;}
.y71{bottom:527.580000px;}
.y191{bottom:530.640000px;}
.ycc{bottom:531.000000px;}
.y126{bottom:534.420000px;}
.ye4{bottom:538.740000px;}
.y16{bottom:539.820000px;}
.y13f{bottom:540.900000px;}
.y90{bottom:542.520000px;}
.y4e{bottom:542.880000px;}
.y1c0{bottom:543.060000px;}
.y15f{bottom:546.840000px;}
.y1a1{bottom:550.080000px;}
.y17c{bottom:550.260000px;}
.y36{bottom:550.800000px;}
.yf9{bottom:551.160000px;}
.yaa{bottom:557.820000px;}
.y70{bottom:558.720000px;}
.y1ae{bottom:559.800000px;}
.y190{bottom:561.600000px;}
.y10c{bottom:561.960000px;}
.ycb{bottom:562.140000px;}
.y125{bottom:565.560000px;}
.y7f{bottom:566.820000px;}
.yde{bottom:569.700000px;}
.y15{bottom:570.960000px;}
.y13e{bottom:571.860000px;}
.y8f{bottom:573.480000px;}
.y4d{bottom:574.020000px;}
.y1bf{bottom:574.200000px;}
.y15e{bottom:577.800000px;}
.y1a0{bottom:581.040000px;}
.y17b{bottom:581.400000px;}
.y35{bottom:581.760000px;}
.ya9{bottom:588.780000px;}
.y6f{bottom:589.680000px;}
.y18f{bottom:592.740000px;}
.yca{bottom:593.100000px;}
.yf8{bottom:594.180000px;}
.ydd{bottom:600.840000px;}
.y14{bottom:601.920000px;}
.y1ad{bottom:602.820000px;}
.y124{bottom:604.260000px;}
.y8e{bottom:604.620000px;}
.y4c{bottom:604.980000px;}
.y1be{bottom:605.160000px;}
.y15d{bottom:608.940000px;}
.y19f{bottom:612.180000px;}
.y17a{bottom:612.360000px;}
.y34{bottom:612.900000px;}
.y13d{bottom:614.880000px;}
.ya8{bottom:619.920000px;}
.y6e{bottom:620.820000px;}
.y18e{bottom:623.700000px;}
.y10b{bottom:624.060000px;}
.yc9{bottom:624.240000px;}
.yf7{bottom:625.320000px;}
.ydc{bottom:631.800000px;}
.y13{bottom:633.060000px;}
.y8d{bottom:635.580000px;}
.y4b{bottom:636.120000px;}
.y15c{bottom:639.900000px;}
.y179{bottom:643.320000px;}
.y33{bottom:643.860000px;}
.y13c{bottom:646.020000px;}
.y123{bottom:647.460000px;}
.ya7{bottom:650.880000px;}
.y6d{bottom:651.780000px;}
.y18d{bottom:654.840000px;}
.yc8{bottom:655.200000px;}
.yf6{bottom:656.280000px;}
.ydb{bottom:662.940000px;}
.y12{bottom:664.020000px;}
.y8c{bottom:666.540000px;}
.y4a{bottom:667.080000px;}
.y1bd{bottom:667.260000px;}
.y15b{bottom:671.040000px;}
.y178{bottom:674.460000px;}
.y32{bottom:674.820000px;}
.y13b{bottom:676.980000px;}
.y122{bottom:678.420000px;}
.ya6{bottom:682.020000px;}
.y6c{bottom:682.920000px;}
.y18c{bottom:685.800000px;}
.y10a{bottom:686.160000px;}
.yc7{bottom:686.340000px;}
.yf5{bottom:687.420000px;}
.y1ac{bottom:689.040000px;}
.yda{bottom:693.900000px;}
.y11{bottom:695.160000px;}
.y8b{bottom:697.680000px;}
.y49{bottom:698.220000px;}
.y15a{bottom:702.000000px;}
.y177{bottom:705.420000px;}
.y31{bottom:705.960000px;}
.y121{bottom:709.560000px;}
.ya5{bottom:712.980000px;}
.y6b{bottom:713.880000px;}
.y18b{bottom:716.940000px;}
.yc6{bottom:717.300000px;}
.y13a{bottom:720.000000px;}
.yf4{bottom:721.800000px;}
.yd9{bottom:725.040000px;}
.y10{bottom:726.120000px;}
.y48{bottom:729.180000px;}
.y1bc{bottom:729.360000px;}
.y1ab{bottom:732.060000px;}
.y159{bottom:736.380000px;}
.y176{bottom:736.560000px;}
.y30{bottom:736.920000px;}
.y120{bottom:740.520000px;}
.y8a{bottom:740.700000px;}
.y6a{bottom:745.020000px;}
.y109{bottom:748.260000px;}
.yc5{bottom:748.440000px;}
.y139{bottom:751.140000px;}
.yf3{bottom:752.760000px;}
.ya4{bottom:756.000000px;}
.y18a{bottom:756.180000px;}
.yf{bottom:757.260000px;}
.y47{bottom:760.320000px;}
.y175{bottom:767.520000px;}
.y2f{bottom:768.060000px;}
.y11f{bottom:771.660000px;}
.y1aa{bottom:775.080000px;}
.y69{bottom:775.980000px;}
.yc4{bottom:779.400000px;}
.y89{bottom:783.720000px;}
.ya3{bottom:787.140000px;}
.ye{bottom:788.220000px;}
.y46{bottom:791.280000px;}
.y1bb{bottom:791.460000px;}
.y138{bottom:794.160000px;}
.y174{bottom:798.660000px;}
.y2e{bottom:799.020000px;}
.y11e{bottom:802.620000px;}
.y68{bottom:807.120000px;}
.y108{bottom:810.360000px;}
.yc3{bottom:810.540000px;}
.y88{bottom:814.860000px;}
.ya2{bottom:818.100000px;}
.yd{bottom:819.180000px;}
.y45{bottom:822.420000px;}
.y137{bottom:825.120000px;}
.y173{bottom:829.620000px;}
.y2d{bottom:830.160000px;}
.y11d{bottom:833.760000px;}
.y67{bottom:838.080000px;}
.yc2{bottom:841.500000px;}
.y87{bottom:845.820000px;}
.ya1{bottom:849.240000px;}
.yc{bottom:850.320000px;}
.y1ba{bottom:853.560000px;}
.y136{bottom:856.260000px;}
.y172{bottom:860.760000px;}
.y2c{bottom:861.120000px;}
.y11c{bottom:864.720000px;}
.y66{bottom:869.220000px;}
.y107{bottom:872.460000px;}
.yc1{bottom:872.640000px;}
.y86{bottom:876.960000px;}
.ya0{bottom:880.200000px;}
.yb{bottom:881.280000px;}
.y1b9{bottom:884.520000px;}
.y171{bottom:891.720000px;}
.y2b{bottom:892.260000px;}
.y135{bottom:899.280000px;}
.y65{bottom:900.180000px;}
.yc0{bottom:903.600000px;}
.y85{bottom:907.920000px;}
.y9f{bottom:911.340000px;}
.ya{bottom:912.420000px;}
.y1b8{bottom:915.660000px;}
.y2a{bottom:923.220000px;}
.y134{bottom:930.420000px;}
.y64{bottom:931.320000px;}
.ybf{bottom:934.740000px;}
.y170{bottom:934.920000px;}
.yf2{bottom:939.060000px;}
.y9e{bottom:942.300000px;}
.y9{bottom:943.380000px;}
.y84{bottom:946.620000px;}
.y29{bottom:954.360000px;}
.y63{bottom:962.280000px;}
.ybe{bottom:965.700000px;}
.yf1{bottom:970.020000px;}
.y9d{bottom:973.440000px;}
.y8{bottom:974.520000px;}
.y11b{bottom:977.580000px;}
.y1b7{bottom:977.760000px;}
.y16f{bottom:977.940000px;}
.y28{bottom:985.320000px;}
.y83{bottom:989.640000px;}
.y62{bottom:993.240000px;}
.yf0{bottom:1001.160000px;}
.y133{bottom:1004.400000px;}
.y7{bottom:1005.480000px;}
.ybd{bottom:1008.720000px;}
.y16e{bottom:1008.900000px;}
.y27{bottom:1016.460000px;}
.y82{bottom:1020.780000px;}
.yef{bottom:1035.540000px;}
.y61{bottom:1036.440000px;}
.y6{bottom:1036.620000px;}
.y11a{bottom:1039.680000px;}
.ybc{bottom:1039.860000px;}
.y16d{bottom:1040.040000px;}
.y26{bottom:1047.420000px;}
.y81{bottom:1051.740000px;}
.y132{bottom:1066.500000px;}
.y60{bottom:1067.400000px;}
.ybb{bottom:1070.820000px;}
.y16c{bottom:1071.000000px;}
.y5{bottom:1075.320000px;}
.y25{bottom:1078.560000px;}
.y80{bottom:1094.760000px;}
.y5f{bottom:1098.540000px;}
.y119{bottom:1101.780000px;}
.yba{bottom:1101.960000px;}
.y24{bottom:1109.520000px;}
.y4{bottom:1129.140000px;}
.y5e{bottom:1129.500000px;}
.yb9{bottom:1132.920000px;}
.y23{bottom:1140.660000px;}
.y5d{bottom:1168.740000px;}
.y22{bottom:1171.620000px;}
.y3{bottom:1172.880000px;}
.h3{height:58.671562px;}
.h2{height:63.175781px;}
.h8{height:63.351562px;}
.h6{height:63.773438px;}
.h9{height:63.843750px;}
.h5{height:64.160156px;}
.h7{height:75.067383px;}
.h4{height:85.333008px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:106.200000px;}
.xf{left:111.240000px;}
.x5{left:133.200000px;}
.xe{left:138.240000px;}
.x4{left:159.300000px;}
.xc{left:187.200000px;}
.xd{left:214.200000px;}
.xa{left:238.680000px;}
.x6{left:241.200000px;}
.x8{left:244.440000px;}
.xb{left:265.680000px;}
.x7{left:268.200000px;}
.x9{left:276.300000px;}
.x3{left:295.380000px;}
.x1{left:432.900000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-0.896000pt;}
.ls35{letter-spacing:-0.832000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls38{letter-spacing:-0.576000pt;}
.ls2f{letter-spacing:-0.512000pt;}
.ls16{letter-spacing:-0.384000pt;}
.ls2d{letter-spacing:-0.299520pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls37{letter-spacing:-0.149760pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls30{letter-spacing:-0.074880pt;}
.ls14{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.192000pt;}
.ls28{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.299520pt;}
.ls18{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.384000pt;}
.ls33{letter-spacing:0.448000pt;}
.ls50{letter-spacing:0.512000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls53{letter-spacing:0.646400pt;}
.ls58{letter-spacing:0.704000pt;}
.ls44{letter-spacing:0.768000pt;}
.ls1{letter-spacing:1.280000pt;}
.ls34{letter-spacing:1.920000pt;}
.ls23{letter-spacing:2.560000pt;}
.ls1d{letter-spacing:3.200000pt;}
.ls3c{letter-spacing:3.840000pt;}
.ls1b{letter-spacing:4.480000pt;}
.ls2{letter-spacing:5.120000pt;}
.ls2a{letter-spacing:5.760000pt;}
.lsd{letter-spacing:6.400000pt;}
.ls19{letter-spacing:7.040000pt;}
.ls2c{letter-spacing:7.168000pt;}
.ls25{letter-spacing:7.680000pt;}
.ls40{letter-spacing:8.320000pt;}
.lsc{letter-spacing:8.960000pt;}
.ls1c{letter-spacing:9.600000pt;}
.ls22{letter-spacing:10.240000pt;}
.ls0{letter-spacing:10.880000pt;}
.ls2e{letter-spacing:11.520000pt;}
.lsb{letter-spacing:12.160000pt;}
.lsa{letter-spacing:12.800000pt;}
.ls32{letter-spacing:13.440000pt;}
.ls49{letter-spacing:14.080000pt;}
.ls1a{letter-spacing:14.720000pt;}
.ls43{letter-spacing:15.360000pt;}
.ls3d{letter-spacing:16.000000pt;}
.ls11{letter-spacing:16.640000pt;}
.ls4d{letter-spacing:17.280000pt;}
.ls39{letter-spacing:17.286400pt;}
.ls4a{letter-spacing:17.920000pt;}
.ls3a{letter-spacing:19.200000pt;}
.lsf{letter-spacing:20.480000pt;}
.ls47{letter-spacing:21.120000pt;}
.ls21{letter-spacing:21.760000pt;}
.ls46{letter-spacing:22.400000pt;}
.ls17{letter-spacing:23.040000pt;}
.ls48{letter-spacing:23.680000pt;}
.ls4c{letter-spacing:24.313600pt;}
.ls10{letter-spacing:24.320000pt;}
.ls51{letter-spacing:24.960000pt;}
.ls5{letter-spacing:25.088000pt;}
.ls42{letter-spacing:25.600000pt;}
.ls36{letter-spacing:26.240000pt;}
.ls29{letter-spacing:27.648000pt;}
.ls4{letter-spacing:28.288000pt;}
.ls3b{letter-spacing:30.208000pt;}
.ls4b{letter-spacing:32.000000pt;}
.ls26{letter-spacing:32.640000pt;}
.ls4f{letter-spacing:33.920000pt;}
.ls31{letter-spacing:35.200000pt;}
.ls3f{letter-spacing:35.840000pt;}
.ls45{letter-spacing:36.480000pt;}
.ls57{letter-spacing:37.120000pt;}
.ls52{letter-spacing:37.760000pt;}
.ls4e{letter-spacing:38.983680pt;}
.ls54{letter-spacing:39.680000pt;}
.ls41{letter-spacing:43.520000pt;}
.ls55{letter-spacing:45.440000pt;}
.ls56{letter-spacing:48.640000pt;}
.lse{letter-spacing:55.040000pt;}
.ls27{letter-spacing:56.903680pt;}
.ls2b{letter-spacing:56.960000pt;}
.ls3e{letter-spacing:86.400000pt;}
.ws40{word-spacing:-53.120000pt;}
.ws98{word-spacing:-19.019520pt;}
.ws58{word-spacing:-18.570240pt;}
.ws9c{word-spacing:-16.704000pt;}
.ws3f{word-spacing:-16.640000pt;}
.ws8e{word-spacing:-16.512000pt;}
.wsa6{word-spacing:-16.448000pt;}
.ws51{word-spacing:-16.256000pt;}
.ws23{word-spacing:-16.192000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws22{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.936000pt;}
.ws10{word-spacing:-15.872000pt;}
.ws21{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws52{word-spacing:-15.168000pt;}
.ws94{word-spacing:-15.104000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws7d{word-spacing:-3.968000pt;}
.ws3c{word-spacing:-3.840000pt;}
.ws82{word-spacing:-3.328000pt;}
.ws55{word-spacing:-3.200000pt;}
.ws86{word-spacing:-3.008000pt;}
.ws56{word-spacing:-2.944000pt;}
.ws7c{word-spacing:-2.688000pt;}
.ws25{word-spacing:-2.560000pt;}
.ws5e{word-spacing:-2.304000pt;}
.ws85{word-spacing:-2.048000pt;}
.ws24{word-spacing:-1.920000pt;}
.wsa4{word-spacing:-1.792000pt;}
.ws1c{word-spacing:-1.280000pt;}
.ws84{word-spacing:-1.088000pt;}
.wsa0{word-spacing:-1.024000pt;}
.ws32{word-spacing:-0.768000pt;}
.ws13{word-spacing:-0.640000pt;}
.wsf{word-spacing:-0.449280pt;}
.ws9f{word-spacing:-0.448000pt;}
.ws2b{word-spacing:-0.384000pt;}
.ws9a{word-spacing:-0.299520pt;}
.ws5c{word-spacing:-0.256000pt;}
.ws67{word-spacing:-0.192000pt;}
.ws9{word-spacing:-0.128000pt;}
.ws5a{word-spacing:-0.074880pt;}
.ws39{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.ws37{word-spacing:0.064000pt;}
.ws4e{word-spacing:0.074880pt;}
.ws83{word-spacing:0.128000pt;}
.ws17{word-spacing:0.192000pt;}
.ws7{word-spacing:0.256000pt;}
.ws41{word-spacing:0.299520pt;}
.ws1b{word-spacing:0.384000pt;}
.ws4a{word-spacing:0.512000pt;}
.ws60{word-spacing:0.576000pt;}
.ws12{word-spacing:0.640000pt;}
.wsa5{word-spacing:0.832000pt;}
.ws38{word-spacing:0.896000pt;}
.ws46{word-spacing:1.152000pt;}
.wse{word-spacing:1.280000pt;}
.ws88{word-spacing:1.536000pt;}
.ws91{word-spacing:1.792000pt;}
.ws59{word-spacing:1.920000pt;}
.ws54{word-spacing:2.176000pt;}
.ws1a{word-spacing:2.560000pt;}
.ws4f{word-spacing:2.816000pt;}
.ws77{word-spacing:3.072000pt;}
.wsc{word-spacing:3.200000pt;}
.ws2f{word-spacing:3.456000pt;}
.wsd{word-spacing:3.840000pt;}
.ws7f{word-spacing:4.096000pt;}
.ws28{word-spacing:4.352000pt;}
.ws36{word-spacing:4.480000pt;}
.ws63{word-spacing:4.736000pt;}
.ws93{word-spacing:4.992000pt;}
.ws5{word-spacing:5.120000pt;}
.ws18{word-spacing:5.376000pt;}
.ws5f{word-spacing:5.504000pt;}
.ws1d{word-spacing:5.760000pt;}
.ws90{word-spacing:6.272000pt;}
.ws6{word-spacing:6.400000pt;}
.ws6f{word-spacing:6.528000pt;}
.ws73{word-spacing:6.656000pt;}
.ws29{word-spacing:6.912000pt;}
.ws2a{word-spacing:7.040000pt;}
.ws80{word-spacing:7.296000pt;}
.ws87{word-spacing:7.552000pt;}
.ws3d{word-spacing:7.680000pt;}
.ws5d{word-spacing:7.936000pt;}
.ws70{word-spacing:8.192000pt;}
.wsb{word-spacing:8.320000pt;}
.ws71{word-spacing:8.576000pt;}
.ws4b{word-spacing:8.832000pt;}
.ws14{word-spacing:8.960000pt;}
.ws9b{word-spacing:9.216000pt;}
.ws6a{word-spacing:9.472000pt;}
.ws49{word-spacing:9.600000pt;}
.ws61{word-spacing:9.856000pt;}
.ws2c{word-spacing:10.112000pt;}
.ws8b{word-spacing:10.240000pt;}
.wsa1{word-spacing:10.368000pt;}
.ws43{word-spacing:10.880000pt;}
.ws47{word-spacing:11.520000pt;}
.ws8f{word-spacing:11.712000pt;}
.ws26{word-spacing:12.032000pt;}
.ws15{word-spacing:12.160000pt;}
.ws1f{word-spacing:12.288000pt;}
.ws16{word-spacing:12.416000pt;}
.ws68{word-spacing:12.800000pt;}
.ws69{word-spacing:13.440000pt;}
.ws53{word-spacing:13.696000pt;}
.ws7e{word-spacing:14.080000pt;}
.ws2d{word-spacing:14.592000pt;}
.ws2e{word-spacing:14.720000pt;}
.ws35{word-spacing:15.360000pt;}
.ws8{word-spacing:15.616000pt;}
.ws8d{word-spacing:16.000000pt;}
.ws20{word-spacing:16.640000pt;}
.ws97{word-spacing:16.896000pt;}
.ws62{word-spacing:17.024000pt;}
.ws6d{word-spacing:17.280000pt;}
.ws6b{word-spacing:17.536000pt;}
.ws6c{word-spacing:17.920000pt;}
.ws8c{word-spacing:18.176000pt;}
.ws48{word-spacing:19.200000pt;}
.ws57{word-spacing:19.456000pt;}
.ws7b{word-spacing:19.840000pt;}
.ws99{word-spacing:20.096000pt;}
.ws8a{word-spacing:20.224000pt;}
.ws34{word-spacing:20.352000pt;}
.ws3b{word-spacing:20.480000pt;}
.ws33{word-spacing:20.544000pt;}
.ws6e{word-spacing:21.120000pt;}
.ws31{word-spacing:21.760000pt;}
.ws30{word-spacing:22.016000pt;}
.ws3a{word-spacing:22.400000pt;}
.ws7a{word-spacing:22.656000pt;}
.ws75{word-spacing:22.912000pt;}
.ws27{word-spacing:23.040000pt;}
.ws76{word-spacing:23.296000pt;}
.ws4d{word-spacing:23.552000pt;}
.ws19{word-spacing:24.320000pt;}
.ws3e{word-spacing:24.960000pt;}
.ws4c{word-spacing:25.600000pt;}
.wsa2{word-spacing:26.880000pt;}
.ws5b{word-spacing:27.136000pt;}
.ws92{word-spacing:27.520000pt;}
.ws72{word-spacing:28.800000pt;}
.ws66{word-spacing:31.360000pt;}
.ws64{word-spacing:31.616000pt;}
.ws65{word-spacing:32.000000pt;}
.ws42{word-spacing:32.640000pt;}
.ws50{word-spacing:33.280000pt;}
.ws1e{word-spacing:33.920000pt;}
.wsa3{word-spacing:34.176000pt;}
.ws79{word-spacing:35.712000pt;}
.ws89{word-spacing:35.840000pt;}
.ws78{word-spacing:36.096000pt;}
.ws96{word-spacing:36.480000pt;}
.ws81{word-spacing:37.120000pt;}
.ws95{word-spacing:37.760000pt;}
.ws9e{word-spacing:39.552000pt;}
.ws9d{word-spacing:39.680000pt;}
.ws74{word-spacing:43.520000pt;}
.ws44{word-spacing:56.960000pt;}
.ws45{word-spacing:57.216000pt;}
.wsa{word-spacing:57.600000pt;}
._37{margin-left:-33.571584pt;}
._39{margin-left:-25.792000pt;}
._38{margin-left:-24.755968pt;}
._1c{margin-left:-16.896000pt;}
._34{margin-left:-14.939392pt;}
._36{margin-left:-11.906304pt;}
._33{margin-left:-9.996032pt;}
._12{margin-left:-5.056000pt;}
._13{margin-left:-3.584000pt;}
._14{margin-left:-2.614784pt;}
._0{margin-left:-0.947968pt;}
._1{width:0.987392pt;}
._11{width:2.161152pt;}
._10{width:3.571968pt;}
._2{width:4.544000pt;}
._3{width:5.632000pt;}
._f{width:6.592000pt;}
._d{width:7.936000pt;}
._e{width:8.960000pt;}
._6{width:10.048000pt;}
._7{width:11.017216pt;}
._15{width:12.187392pt;}
._4{width:13.952000pt;}
._5{width:14.936576pt;}
._1d{width:16.932608pt;}
._1a{width:18.112000pt;}
._31{width:19.008000pt;}
._17{width:19.904000pt;}
._18{width:21.056000pt;}
._1f{width:21.952000pt;}
._1e{width:22.848000pt;}
._19{width:24.256000pt;}
._1b{width:25.971968pt;}
._23{width:27.392000pt;}
._24{width:28.864000pt;}
._26{width:30.080000pt;}
._27{width:31.186432pt;}
._a{width:32.755968pt;}
._b{width:33.773312pt;}
._32{width:34.766592pt;}
._25{width:35.712000pt;}
._20{width:37.120000pt;}
._21{width:38.656000pt;}
._22{width:39.616000pt;}
._3a{width:40.640000pt;}
._35{width:42.176000pt;}
._2b{width:43.849216pt;}
._3b{width:45.028608pt;}
._2f{width:46.272000pt;}
._2e{width:47.424000pt;}
._3c{width:49.228544pt;}
._8{width:50.240000pt;}
._9{width:51.200000pt;}
._2d{width:52.303360pt;}
._2c{width:53.220608pt;}
._16{width:55.040000pt;}
._c{width:57.344000pt;}
._29{width:58.483968pt;}
._30{width:84.659968pt;}
._2a{width:86.381824pt;}
._28{width:170.688000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:50.720000pt;}
.y1{bottom:69.120000pt;}
.yb8{bottom:98.720000pt;}
.y19e{bottom:102.240000pt;}
.y106{bottom:102.880000pt;}
.y44{bottom:103.200000pt;}
.y189{bottom:103.680000pt;}
.yee{bottom:106.560000pt;}
.y14c{bottom:108.320000pt;}
.y7e{bottom:110.240000pt;}
.y118{bottom:112.640000pt;}
.y158{bottom:113.280000pt;}
.y1b6{bottom:115.040000pt;}
.y1d4{bottom:119.071200pt;}
.y1a9{bottom:119.520000pt;}
.y5c{bottom:120.160000pt;}
.y5b{bottom:123.840000pt;}
.y1c8{bottom:124.000000pt;}
.yb7{bottom:126.400000pt;}
.y19d{bottom:129.760000pt;}
.yd8{bottom:130.240000pt;}
.y105{bottom:130.560000pt;}
.y43{bottom:130.720000pt;}
.y188{bottom:131.360000pt;}
.ye3{bottom:134.080000pt;}
.y21{bottom:134.400000pt;}
.y14b{bottom:136.000000pt;}
.y7d{bottom:137.760000pt;}
.y157{bottom:140.960000pt;}
.y1a8{bottom:147.040000pt;}
.y1d3{bottom:147.224640pt;}
.y117{bottom:150.880000pt;}
.y9c{bottom:151.040000pt;}
.y5a{bottom:151.520000pt;}
.y16b{bottom:152.000000pt;}
.y1b5{bottom:153.280000pt;}
.yb6{bottom:153.920000pt;}
.y19c{bottom:157.440000pt;}
.yd7{bottom:157.760000pt;}
.y131{bottom:157.920000pt;}
.y104{bottom:158.080000pt;}
.y42{bottom:158.400000pt;}
.y187{bottom:158.880000pt;}
.ye2{bottom:161.760000pt;}
.y14a{bottom:163.520000pt;}
.y7c{bottom:165.440000pt;}
.y156{bottom:168.480000pt;}
.y20{bottom:172.640000pt;}
.y1d2{bottom:175.548320pt;}
.y116{bottom:178.400000pt;}
.y9b{bottom:178.560000pt;}
.y59{bottom:179.040000pt;}
.y1c7{bottom:179.200000pt;}
.y16a{bottom:179.520000pt;}
.yb5{bottom:181.600000pt;}
.y19b{bottom:184.960000pt;}
.y1a7{bottom:185.280000pt;}
.yd6{bottom:185.440000pt;}
.y130{bottom:185.600000pt;}
.y103{bottom:185.760000pt;}
.y41{bottom:185.920000pt;}
.y186{bottom:186.560000pt;}
.ye1{bottom:189.280000pt;}
.y149{bottom:191.200000pt;}
.y1b4{bottom:191.520000pt;}
.y7b{bottom:192.960000pt;}
.y155{bottom:196.160000pt;}
.y1f{bottom:200.320000pt;}
.y1d1{bottom:203.701760pt;}
.y115{bottom:206.080000pt;}
.y9a{bottom:206.240000pt;}
.y58{bottom:206.720000pt;}
.y169{bottom:207.200000pt;}
.yb4{bottom:209.120000pt;}
.y19a{bottom:212.640000pt;}
.yd5{bottom:212.960000pt;}
.y12f{bottom:213.120000pt;}
.y102{bottom:213.280000pt;}
.y40{bottom:213.600000pt;}
.y185{bottom:214.080000pt;}
.y148{bottom:218.720000pt;}
.ye0{bottom:219.840000pt;}
.y7a{bottom:220.640000pt;}
.y154{bottom:223.680000pt;}
.yed{bottom:227.520000pt;}
.y1e{bottom:227.840000pt;}
.y1b3{bottom:229.760000pt;}
.y1d0{bottom:231.855200pt;}
.y114{bottom:233.600000pt;}
.y99{bottom:233.760000pt;}
.y57{bottom:234.240000pt;}
.y1c6{bottom:234.400000pt;}
.y168{bottom:234.720000pt;}
.yb3{bottom:236.800000pt;}
.y199{bottom:240.160000pt;}
.y1a6{bottom:240.480000pt;}
.yd4{bottom:240.640000pt;}
.y101{bottom:240.960000pt;}
.y3f{bottom:241.120000pt;}
.y184{bottom:241.600000pt;}
.y12e{bottom:243.680000pt;}
.y147{bottom:246.400000pt;}
.ydf{bottom:247.360000pt;}
.y79{bottom:248.160000pt;}
.y153{bottom:251.200000pt;}
.yec{bottom:255.200000pt;}
.y1d{bottom:255.520000pt;}
.y1cf{bottom:260.178880pt;}
.y113{bottom:261.280000pt;}
.y98{bottom:261.440000pt;}
.y56{bottom:261.920000pt;}
.y167{bottom:262.400000pt;}
.y198{bottom:267.840000pt;}
.y1b2{bottom:268.000000pt;}
.yd3{bottom:268.160000pt;}
.y100{bottom:268.480000pt;}
.y3e{bottom:268.800000pt;}
.y183{bottom:269.280000pt;}
.yb2{bottom:275.040000pt;}
.y78{bottom:275.840000pt;}
.y146{bottom:276.800000pt;}
.y152{bottom:278.880000pt;}
.y12d{bottom:281.920000pt;}
.yeb{bottom:282.720000pt;}
.y1c{bottom:283.040000pt;}
.y1ce{bottom:288.332320pt;}
.y112{bottom:288.800000pt;}
.y97{bottom:288.960000pt;}
.y55{bottom:289.440000pt;}
.y1c5{bottom:289.600000pt;}
.y166{bottom:289.920000pt;}
.y197{bottom:295.360000pt;}
.y1a5{bottom:295.680000pt;}
.yd2{bottom:295.840000pt;}
.y3d{bottom:296.320000pt;}
.y182{bottom:296.800000pt;}
.yb1{bottom:302.560000pt;}
.yff{bottom:303.040000pt;}
.y77{bottom:303.360000pt;}
.y151{bottom:306.400000pt;}
.y12c{bottom:309.600000pt;}
.yea{bottom:313.280000pt;}
.y145{bottom:315.200000pt;}
.y111{bottom:316.480000pt;}
.y1cd{bottom:316.485760pt;}
.y96{bottom:316.640000pt;}
.y54{bottom:317.120000pt;}
.y165{bottom:317.600000pt;}
.y1b{bottom:321.280000pt;}
.y196{bottom:323.040000pt;}
.yd1{bottom:323.360000pt;}
.y3c{bottom:324.000000pt;}
.y181{bottom:324.480000pt;}
.yb0{bottom:330.240000pt;}
.y76{bottom:331.040000pt;}
.y150{bottom:334.080000pt;}
.y12b{bottom:337.120000pt;}
.ye9{bottom:340.800000pt;}
.yfe{bottom:341.280000pt;}
.y144{bottom:342.720000pt;}
.y110{bottom:344.000000pt;}
.y95{bottom:344.160000pt;}
.y53{bottom:344.640000pt;}
.y1c4{bottom:344.800000pt;}
.y1cc{bottom:344.809440pt;}
.y164{bottom:348.000000pt;}
.y1a{bottom:348.960000pt;}
.y195{bottom:350.560000pt;}
.y1a4{bottom:350.880000pt;}
.yd0{bottom:351.040000pt;}
.y3b{bottom:351.520000pt;}
.yaf{bottom:357.760000pt;}
.y75{bottom:358.560000pt;}
.y14f{bottom:361.600000pt;}
.y180{bottom:362.720000pt;}
.y12a{bottom:364.640000pt;}
.ye8{bottom:368.480000pt;}
.yfd{bottom:368.960000pt;}
.y143{bottom:370.400000pt;}
.y10f{bottom:371.680000pt;}
.y94{bottom:371.840000pt;}
.y52{bottom:372.320000pt;}
.y1cb{bottom:372.962880pt;}
.y163{bottom:375.680000pt;}
.y194{bottom:378.240000pt;}
.ycf{bottom:378.560000pt;}
.y3a{bottom:379.200000pt;}
.y1b1{bottom:382.880000pt;}
.y19{bottom:383.840000pt;}
.yae{bottom:385.440000pt;}
.y74{bottom:386.240000pt;}
.y14e{bottom:389.280000pt;}
.y129{bottom:392.320000pt;}
.ye7{bottom:396.000000pt;}
.yfc{bottom:396.480000pt;}
.y142{bottom:397.920000pt;}
.y10e{bottom:399.200000pt;}
.y93{bottom:399.360000pt;}
.y51{bottom:399.840000pt;}
.y1c3{bottom:400.000000pt;}
.y1ca{bottom:401.116320pt;}
.y162{bottom:403.200000pt;}
.y193{bottom:405.760000pt;}
.y1a3{bottom:406.080000pt;}
.yce{bottom:406.240000pt;}
.y17f{bottom:406.400000pt;}
.y39{bottom:406.720000pt;}
.yad{bottom:412.960000pt;}
.y73{bottom:413.760000pt;}
.y14d{bottom:416.800000pt;}
.y128{bottom:419.840000pt;}
.y1b0{bottom:421.120000pt;}
.ye6{bottom:423.680000pt;}
.yfb{bottom:424.160000pt;}
.y18{bottom:424.640000pt;}
.y141{bottom:425.600000pt;}
.y92{bottom:427.040000pt;}
.y50{bottom:427.360000pt;}
.y1c2{bottom:427.520000pt;}
.y1c9{bottom:429.440000pt;}
.y161{bottom:430.880000pt;}
.y192{bottom:433.440000pt;}
.y10d{bottom:433.760000pt;}
.y17e{bottom:433.920000pt;}
.y38{bottom:434.400000pt;}
.yac{bottom:440.640000pt;}
.y72{bottom:441.440000pt;}
.ycd{bottom:444.480000pt;}
.y127{bottom:447.520000pt;}
.ye5{bottom:451.200000pt;}
.yfa{bottom:451.680000pt;}
.y17{bottom:452.320000pt;}
.y140{bottom:453.120000pt;}
.y91{bottom:454.560000pt;}
.y4f{bottom:455.040000pt;}
.y1c1{bottom:455.200000pt;}
.y160{bottom:458.400000pt;}
.y1af{bottom:459.360000pt;}
.y1a2{bottom:461.280000pt;}
.y17d{bottom:461.600000pt;}
.y37{bottom:461.920000pt;}
.yab{bottom:468.160000pt;}
.y71{bottom:468.960000pt;}
.y191{bottom:471.680000pt;}
.ycc{bottom:472.000000pt;}
.y126{bottom:475.040000pt;}
.ye4{bottom:478.880000pt;}
.y16{bottom:479.840000pt;}
.y13f{bottom:480.800000pt;}
.y90{bottom:482.240000pt;}
.y4e{bottom:482.560000pt;}
.y1c0{bottom:482.720000pt;}
.y15f{bottom:486.080000pt;}
.y1a1{bottom:488.960000pt;}
.y17c{bottom:489.120000pt;}
.y36{bottom:489.600000pt;}
.yf9{bottom:489.920000pt;}
.yaa{bottom:495.840000pt;}
.y70{bottom:496.640000pt;}
.y1ae{bottom:497.600000pt;}
.y190{bottom:499.200000pt;}
.y10c{bottom:499.520000pt;}
.ycb{bottom:499.680000pt;}
.y125{bottom:502.720000pt;}
.y7f{bottom:503.840000pt;}
.yde{bottom:506.400000pt;}
.y15{bottom:507.520000pt;}
.y13e{bottom:508.320000pt;}
.y8f{bottom:509.760000pt;}
.y4d{bottom:510.240000pt;}
.y1bf{bottom:510.400000pt;}
.y15e{bottom:513.600000pt;}
.y1a0{bottom:516.480000pt;}
.y17b{bottom:516.800000pt;}
.y35{bottom:517.120000pt;}
.ya9{bottom:523.360000pt;}
.y6f{bottom:524.160000pt;}
.y18f{bottom:526.880000pt;}
.yca{bottom:527.200000pt;}
.yf8{bottom:528.160000pt;}
.ydd{bottom:534.080000pt;}
.y14{bottom:535.040000pt;}
.y1ad{bottom:535.840000pt;}
.y124{bottom:537.120000pt;}
.y8e{bottom:537.440000pt;}
.y4c{bottom:537.760000pt;}
.y1be{bottom:537.920000pt;}
.y15d{bottom:541.280000pt;}
.y19f{bottom:544.160000pt;}
.y17a{bottom:544.320000pt;}
.y34{bottom:544.800000pt;}
.y13d{bottom:546.560000pt;}
.ya8{bottom:551.040000pt;}
.y6e{bottom:551.840000pt;}
.y18e{bottom:554.400000pt;}
.y10b{bottom:554.720000pt;}
.yc9{bottom:554.880000pt;}
.yf7{bottom:555.840000pt;}
.ydc{bottom:561.600000pt;}
.y13{bottom:562.720000pt;}
.y8d{bottom:564.960000pt;}
.y4b{bottom:565.440000pt;}
.y15c{bottom:568.800000pt;}
.y179{bottom:571.840000pt;}
.y33{bottom:572.320000pt;}
.y13c{bottom:574.240000pt;}
.y123{bottom:575.520000pt;}
.ya7{bottom:578.560000pt;}
.y6d{bottom:579.360000pt;}
.y18d{bottom:582.080000pt;}
.yc8{bottom:582.400000pt;}
.yf6{bottom:583.360000pt;}
.ydb{bottom:589.280000pt;}
.y12{bottom:590.240000pt;}
.y8c{bottom:592.480000pt;}
.y4a{bottom:592.960000pt;}
.y1bd{bottom:593.120000pt;}
.y15b{bottom:596.480000pt;}
.y178{bottom:599.520000pt;}
.y32{bottom:599.840000pt;}
.y13b{bottom:601.760000pt;}
.y122{bottom:603.040000pt;}
.ya6{bottom:606.240000pt;}
.y6c{bottom:607.040000pt;}
.y18c{bottom:609.600000pt;}
.y10a{bottom:609.920000pt;}
.yc7{bottom:610.080000pt;}
.yf5{bottom:611.040000pt;}
.y1ac{bottom:612.480000pt;}
.yda{bottom:616.800000pt;}
.y11{bottom:617.920000pt;}
.y8b{bottom:620.160000pt;}
.y49{bottom:620.640000pt;}
.y15a{bottom:624.000000pt;}
.y177{bottom:627.040000pt;}
.y31{bottom:627.520000pt;}
.y121{bottom:630.720000pt;}
.ya5{bottom:633.760000pt;}
.y6b{bottom:634.560000pt;}
.y18b{bottom:637.280000pt;}
.yc6{bottom:637.600000pt;}
.y13a{bottom:640.000000pt;}
.yf4{bottom:641.600000pt;}
.yd9{bottom:644.480000pt;}
.y10{bottom:645.440000pt;}
.y48{bottom:648.160000pt;}
.y1bc{bottom:648.320000pt;}
.y1ab{bottom:650.720000pt;}
.y159{bottom:654.560000pt;}
.y176{bottom:654.720000pt;}
.y30{bottom:655.040000pt;}
.y120{bottom:658.240000pt;}
.y8a{bottom:658.400000pt;}
.y6a{bottom:662.240000pt;}
.y109{bottom:665.120000pt;}
.yc5{bottom:665.280000pt;}
.y139{bottom:667.680000pt;}
.yf3{bottom:669.120000pt;}
.ya4{bottom:672.000000pt;}
.y18a{bottom:672.160000pt;}
.yf{bottom:673.120000pt;}
.y47{bottom:675.840000pt;}
.y175{bottom:682.240000pt;}
.y2f{bottom:682.720000pt;}
.y11f{bottom:685.920000pt;}
.y1aa{bottom:688.960000pt;}
.y69{bottom:689.760000pt;}
.yc4{bottom:692.800000pt;}
.y89{bottom:696.640000pt;}
.ya3{bottom:699.680000pt;}
.ye{bottom:700.640000pt;}
.y46{bottom:703.360000pt;}
.y1bb{bottom:703.520000pt;}
.y138{bottom:705.920000pt;}
.y174{bottom:709.920000pt;}
.y2e{bottom:710.240000pt;}
.y11e{bottom:713.440000pt;}
.y68{bottom:717.440000pt;}
.y108{bottom:720.320000pt;}
.yc3{bottom:720.480000pt;}
.y88{bottom:724.320000pt;}
.ya2{bottom:727.200000pt;}
.yd{bottom:728.160000pt;}
.y45{bottom:731.040000pt;}
.y137{bottom:733.440000pt;}
.y173{bottom:737.440000pt;}
.y2d{bottom:737.920000pt;}
.y11d{bottom:741.120000pt;}
.y67{bottom:744.960000pt;}
.yc2{bottom:748.000000pt;}
.y87{bottom:751.840000pt;}
.ya1{bottom:754.880000pt;}
.yc{bottom:755.840000pt;}
.y1ba{bottom:758.720000pt;}
.y136{bottom:761.120000pt;}
.y172{bottom:765.120000pt;}
.y2c{bottom:765.440000pt;}
.y11c{bottom:768.640000pt;}
.y66{bottom:772.640000pt;}
.y107{bottom:775.520000pt;}
.yc1{bottom:775.680000pt;}
.y86{bottom:779.520000pt;}
.ya0{bottom:782.400000pt;}
.yb{bottom:783.360000pt;}
.y1b9{bottom:786.240000pt;}
.y171{bottom:792.640000pt;}
.y2b{bottom:793.120000pt;}
.y135{bottom:799.360000pt;}
.y65{bottom:800.160000pt;}
.yc0{bottom:803.200000pt;}
.y85{bottom:807.040000pt;}
.y9f{bottom:810.080000pt;}
.ya{bottom:811.040000pt;}
.y1b8{bottom:813.920000pt;}
.y2a{bottom:820.640000pt;}
.y134{bottom:827.040000pt;}
.y64{bottom:827.840000pt;}
.ybf{bottom:830.880000pt;}
.y170{bottom:831.040000pt;}
.yf2{bottom:834.720000pt;}
.y9e{bottom:837.600000pt;}
.y9{bottom:838.560000pt;}
.y84{bottom:841.440000pt;}
.y29{bottom:848.320000pt;}
.y63{bottom:855.360000pt;}
.ybe{bottom:858.400000pt;}
.yf1{bottom:862.240000pt;}
.y9d{bottom:865.280000pt;}
.y8{bottom:866.240000pt;}
.y11b{bottom:868.960000pt;}
.y1b7{bottom:869.120000pt;}
.y16f{bottom:869.280000pt;}
.y28{bottom:875.840000pt;}
.y83{bottom:879.680000pt;}
.y62{bottom:882.880000pt;}
.yf0{bottom:889.920000pt;}
.y133{bottom:892.800000pt;}
.y7{bottom:893.760000pt;}
.ybd{bottom:896.640000pt;}
.y16e{bottom:896.800000pt;}
.y27{bottom:903.520000pt;}
.y82{bottom:907.360000pt;}
.yef{bottom:920.480000pt;}
.y61{bottom:921.280000pt;}
.y6{bottom:921.440000pt;}
.y11a{bottom:924.160000pt;}
.ybc{bottom:924.320000pt;}
.y16d{bottom:924.480000pt;}
.y26{bottom:931.040000pt;}
.y81{bottom:934.880000pt;}
.y132{bottom:948.000000pt;}
.y60{bottom:948.800000pt;}
.ybb{bottom:951.840000pt;}
.y16c{bottom:952.000000pt;}
.y5{bottom:955.840000pt;}
.y25{bottom:958.720000pt;}
.y80{bottom:973.120000pt;}
.y5f{bottom:976.480000pt;}
.y119{bottom:979.360000pt;}
.yba{bottom:979.520000pt;}
.y24{bottom:986.240000pt;}
.y4{bottom:1003.680000pt;}
.y5e{bottom:1004.000000pt;}
.yb9{bottom:1007.040000pt;}
.y23{bottom:1013.920000pt;}
.y5d{bottom:1038.880000pt;}
.y22{bottom:1041.440000pt;}
.y3{bottom:1042.560000pt;}
.h3{height:52.152500pt;}
.h2{height:56.156250pt;}
.h8{height:56.312500pt;}
.h6{height:56.687500pt;}
.h9{height:56.750000pt;}
.h5{height:57.031250pt;}
.h7{height:66.726562pt;}
.h4{height:75.851562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.400000pt;}
.xf{left:98.880000pt;}
.x5{left:118.400000pt;}
.xe{left:122.880000pt;}
.x4{left:141.600000pt;}
.xc{left:166.400000pt;}
.xd{left:190.400000pt;}
.xa{left:212.160000pt;}
.x6{left:214.400000pt;}
.x8{left:217.280000pt;}
.xb{left:236.160000pt;}
.x7{left:238.400000pt;}
.x9{left:245.600000pt;}
.x3{left:262.560000pt;}
.x1{left:384.800000pt;}
}




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