
    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_0498cf2484d9fdc32a0c9334.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.049805;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_2ab184843d5a44b61c44efae.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_642a00f3ab54eca3e8721148.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f8a9d660c1eac5593161df4d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_ac12133f97a22e7a0a0b56b0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_d9e3f38dde456d9de803a73e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-3.622320px;}
.ls9{letter-spacing:-3.538080px;}
.ls5{letter-spacing:-3.201120px;}
.ls8{letter-spacing:-3.032640px;}
.lsa{letter-spacing:-2.864160px;}
.ls7{letter-spacing:-2.527200px;}
.ls31{letter-spacing:-1.656000px;}
.ls30{letter-spacing:-1.512000px;}
.ls44{letter-spacing:-1.440000px;}
.ls1e{letter-spacing:-1.192320px;}
.ls24{letter-spacing:-1.095120px;}
.ls10{letter-spacing:-0.936000px;}
.ls16{letter-spacing:-0.861120px;}
.ls26{letter-spacing:-0.792000px;}
.ls17{letter-spacing:-0.728640px;}
.lse{letter-spacing:-0.720000px;}
.ls2b{letter-spacing:-0.673920px;}
.ls1d{letter-spacing:-0.596160px;}
.ls25{letter-spacing:-0.504000px;}
.ls3d{letter-spacing:-0.432000px;}
.ls15{letter-spacing:-0.397440px;}
.ls3{letter-spacing:-0.336960px;}
.ls13{letter-spacing:-0.331200px;}
.lsc{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.216000px;}
.ls27{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.132480px;}
.ls2{letter-spacing:-0.084240px;}
.ls5b{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.072000px;}
.ls23{letter-spacing:0.084240px;}
.ls11{letter-spacing:0.132480px;}
.lsb{letter-spacing:0.144000px;}
.ls5a{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.264960px;}
.ls1a{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.331200px;}
.ls0{letter-spacing:0.336960px;}
.ls3e{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.504000px;}
.ls53{letter-spacing:0.576000px;}
.ls48{letter-spacing:0.712800px;}
.ls28{letter-spacing:0.720000px;}
.ls29{letter-spacing:0.864000px;}
.ls33{letter-spacing:1.440000px;}
.ls55{letter-spacing:2.880000px;}
.ls4a{letter-spacing:2.894400px;}
.ls32{letter-spacing:3.600000px;}
.ls3a{letter-spacing:4.320000px;}
.ls1f{letter-spacing:5.040000px;}
.ls40{letter-spacing:5.760000px;}
.ls20{letter-spacing:6.480000px;}
.ls49{letter-spacing:6.494400px;}
.ls2c{letter-spacing:7.200000px;}
.ls59{letter-spacing:7.920000px;}
.ls21{letter-spacing:8.640000px;}
.ls2a{letter-spacing:10.080000px;}
.ls46{letter-spacing:10.800000px;}
.ls45{letter-spacing:11.520000px;}
.ls36{letter-spacing:12.240000px;}
.ls37{letter-spacing:12.960000px;}
.ls51{letter-spacing:13.680000px;}
.ls4d{letter-spacing:14.400000px;}
.ls4f{letter-spacing:15.120000px;}
.ls4e{letter-spacing:15.840000px;}
.ls56{letter-spacing:16.560000px;}
.ls22{letter-spacing:17.280000px;}
.ls47{letter-spacing:18.000000px;}
.ls42{letter-spacing:18.007200px;}
.ls43{letter-spacing:18.720000px;}
.ls34{letter-spacing:19.440000px;}
.ls57{letter-spacing:20.160000px;}
.ls38{letter-spacing:20.880000px;}
.ls3b{letter-spacing:21.600000px;}
.ls4c{letter-spacing:23.040000px;}
.ls50{letter-spacing:23.760000px;}
.ls39{letter-spacing:24.480000px;}
.ls41{letter-spacing:25.200000px;}
.ls3c{letter-spacing:25.920000px;}
.ls2f{letter-spacing:26.640000px;}
.ls35{letter-spacing:28.080000px;}
.ls19{letter-spacing:29.520000px;}
.ls2d{letter-spacing:33.840000px;}
.ls4b{letter-spacing:35.280000px;}
.ls18{letter-spacing:39.600000px;}
.ls52{letter-spacing:41.040000px;}
.ls2e{letter-spacing:44.640000px;}
.ls54{letter-spacing:48.240000px;}
.ls3f{letter-spacing:65.520000px;}
.ls58{letter-spacing:79.920000px;}
.ls1b{letter-spacing:620.668800px;}
.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;}
}
.ws1{word-spacing:-21.396960px;}
.ws2{word-spacing:-21.060000px;}
.ws0{word-spacing:-20.975760px;}
.ws3{word-spacing:-20.723040px;}
.ws83{word-spacing:-20.386080px;}
.ws55{word-spacing:-19.964880px;}
.wse3{word-spacing:-18.720000px;}
.wsf2{word-spacing:-18.576000px;}
.wsa{word-spacing:-18.532800px;}
.wsf3{word-spacing:-18.504000px;}
.wsb6{word-spacing:-18.432000px;}
.wsc8{word-spacing:-18.288000px;}
.wsd{word-spacing:-18.144000px;}
.ws10{word-spacing:-18.072000px;}
.wsc{word-spacing:-18.000000px;}
.ws108{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.858880px;}
.wsdc{word-spacing:-17.856000px;}
.ws56{word-spacing:-17.784000px;}
.wse{word-spacing:-17.712000px;}
.ws109{word-spacing:-17.568000px;}
.wsb{word-spacing:-17.521920px;}
.wsdb{word-spacing:-17.496000px;}
.wsf{word-spacing:-17.280000px;}
.wsda{word-spacing:-17.208000px;}
.wsc9{word-spacing:-17.064000px;}
.ws27{word-spacing:-16.891200px;}
.ws25{word-spacing:-16.824960px;}
.ws29{word-spacing:-16.692480px;}
.ws2a{word-spacing:-16.560000px;}
.ws8d{word-spacing:-16.488000px;}
.ws26{word-spacing:-16.228800px;}
.ws28{word-spacing:-16.162560px;}
.ws2c{word-spacing:-15.831360px;}
.ws2b{word-spacing:-15.698880px;}
.ws52{word-spacing:-15.367680px;}
.ws16{word-spacing:-4.548960px;}
.ws6c{word-spacing:-4.464000px;}
.ws58{word-spacing:-4.320000px;}
.wsde{word-spacing:-4.032000px;}
.wsdf{word-spacing:-3.744000px;}
.ws40{word-spacing:-3.600000px;}
.wsb5{word-spacing:-3.456000px;}
.wsb3{word-spacing:-3.312000px;}
.wsc4{word-spacing:-3.024000px;}
.wse1{word-spacing:-2.952000px;}
.ws5b{word-spacing:-2.880000px;}
.ws8f{word-spacing:-2.592000px;}
.wscc{word-spacing:-2.304000px;}
.ws39{word-spacing:-2.160000px;}
.wsb4{word-spacing:-1.944000px;}
.wsaa{word-spacing:-1.872000px;}
.ws4d{word-spacing:-1.584000px;}
.ws3a{word-spacing:-1.440000px;}
.ws6{word-spacing:-1.263600px;}
.ws3b{word-spacing:-1.152000px;}
.ws30{word-spacing:-1.059840px;}
.ws2d{word-spacing:-0.993600px;}
.ws15{word-spacing:-0.926640px;}
.ws75{word-spacing:-0.864000px;}
.ws50{word-spacing:-0.861120px;}
.ws31{word-spacing:-0.728640px;}
.ws42{word-spacing:-0.720000px;}
.ws5{word-spacing:-0.505440px;}
.wsc3{word-spacing:-0.504000px;}
.ws3f{word-spacing:-0.432000px;}
.ws84{word-spacing:-0.336960px;}
.ws2f{word-spacing:-0.331200px;}
.wsa4{word-spacing:-0.288000px;}
.ws51{word-spacing:-0.264960px;}
.ws57{word-spacing:-0.252720px;}
.ws8{word-spacing:-0.168480px;}
.ws19{word-spacing:-0.144000px;}
.ws2e{word-spacing:-0.132480px;}
.ws85{word-spacing:-0.084240px;}
.wsd7{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.ws4f{word-spacing:0.132480px;}
.ws6d{word-spacing:0.144000px;}
.ws7{word-spacing:0.168480px;}
.ws1a{word-spacing:0.216000px;}
.ws20{word-spacing:0.288000px;}
.ws4e{word-spacing:0.331200px;}
.wsbe{word-spacing:0.432000px;}
.ws5a{word-spacing:0.504000px;}
.ws59{word-spacing:0.576000px;}
.ws11{word-spacing:0.589680px;}
.ws53{word-spacing:0.596160px;}
.wsae{word-spacing:0.673920px;}
.ws24{word-spacing:0.720000px;}
.ws54{word-spacing:0.728640px;}
.ws69{word-spacing:0.792000px;}
.ws1b{word-spacing:0.936000px;}
.ws48{word-spacing:1.008000px;}
.ws4a{word-spacing:1.296000px;}
.ws4b{word-spacing:1.440000px;}
.wsad{word-spacing:1.728000px;}
.wsaf{word-spacing:2.016000px;}
.ws21{word-spacing:2.160000px;}
.wsed{word-spacing:2.448000px;}
.ws14{word-spacing:2.527200px;}
.ws32{word-spacing:2.592000px;}
.wsdd{word-spacing:2.736000px;}
.ws3e{word-spacing:2.880000px;}
.ws13{word-spacing:3.032640px;}
.wsd3{word-spacing:3.168000px;}
.ws12{word-spacing:3.201120px;}
.wsd6{word-spacing:3.456000px;}
.wsf7{word-spacing:3.528000px;}
.ws3d{word-spacing:3.600000px;}
.ws4c{word-spacing:3.888000px;}
.wsb1{word-spacing:4.176000px;}
.ws71{word-spacing:4.320000px;}
.wsab{word-spacing:4.536000px;}
.wsb2{word-spacing:4.608000px;}
.wsa9{word-spacing:4.896000px;}
.ws46{word-spacing:5.040000px;}
.ws60{word-spacing:5.328000px;}
.wsce{word-spacing:5.616000px;}
.ws41{word-spacing:5.760000px;}
.wsd4{word-spacing:5.976000px;}
.ws6b{word-spacing:6.048000px;}
.wscd{word-spacing:6.336000px;}
.ws49{word-spacing:6.480000px;}
.ws33{word-spacing:6.768000px;}
.wsb0{word-spacing:7.056000px;}
.ws96{word-spacing:7.200000px;}
.ws34{word-spacing:7.416000px;}
.ws9f{word-spacing:7.488000px;}
.wsd5{word-spacing:7.776000px;}
.ws3c{word-spacing:7.920000px;}
.ws10b{word-spacing:8.136000px;}
.ws95{word-spacing:8.208000px;}
.wsa6{word-spacing:8.496000px;}
.ws23{word-spacing:8.640000px;}
.ws10a{word-spacing:8.712000px;}
.wsa5{word-spacing:8.856000px;}
.ws38{word-spacing:8.928000px;}
.ws107{word-spacing:9.216000px;}
.ws73{word-spacing:9.360000px;}
.ws47{word-spacing:9.648000px;}
.wse4{word-spacing:9.936000px;}
.ws22{word-spacing:10.080000px;}
.wsa7{word-spacing:10.368000px;}
.wscb{word-spacing:10.656000px;}
.ws72{word-spacing:10.800000px;}
.wsd0{word-spacing:11.016000px;}
.ws7c{word-spacing:11.088000px;}
.ws90{word-spacing:11.520000px;}
.wsf8{word-spacing:11.808000px;}
.ws8b{word-spacing:12.096000px;}
.ws8a{word-spacing:12.240000px;}
.wsa8{word-spacing:12.528000px;}
.wsac{word-spacing:12.816000px;}
.ws1f{word-spacing:12.960000px;}
.wsff{word-spacing:13.248000px;}
.ws8e{word-spacing:13.680000px;}
.wsd1{word-spacing:13.968000px;}
.wsb8{word-spacing:14.256000px;}
.wsb7{word-spacing:14.400000px;}
.ws8c{word-spacing:14.688000px;}
.wscf{word-spacing:14.976000px;}
.ws88{word-spacing:15.120000px;}
.ws63{word-spacing:15.408000px;}
.ws86{word-spacing:15.840000px;}
.ws87{word-spacing:16.128000px;}
.wsfa{word-spacing:16.416000px;}
.ws91{word-spacing:16.560000px;}
.wsf5{word-spacing:16.848000px;}
.wsc2{word-spacing:17.136000px;}
.ws61{word-spacing:17.280000px;}
.ws62{word-spacing:17.568000px;}
.wsd9{word-spacing:17.856000px;}
.ws74{word-spacing:18.000000px;}
.ws10c{word-spacing:18.216000px;}
.ws7b{word-spacing:18.288000px;}
.wsd8{word-spacing:18.576000px;}
.ws5c{word-spacing:18.720000px;}
.wsba{word-spacing:19.008000px;}
.wsb9{word-spacing:19.440000px;}
.ws1e{word-spacing:19.656000px;}
.ws1c{word-spacing:19.728000px;}
.ws18{word-spacing:20.016000px;}
.ws17{word-spacing:20.160000px;}
.ws1d{word-spacing:20.376000px;}
.ws77{word-spacing:20.448000px;}
.ws5d{word-spacing:20.880000px;}
.ws6f{word-spacing:21.168000px;}
.wsc0{word-spacing:21.456000px;}
.wsa3{word-spacing:21.600000px;}
.wsa2{word-spacing:21.888000px;}
.ws70{word-spacing:22.320000px;}
.wsca{word-spacing:22.608000px;}
.ws9e{word-spacing:23.328000px;}
.wse2{word-spacing:23.616000px;}
.ws66{word-spacing:23.760000px;}
.ws9d{word-spacing:24.048000px;}
.ws76{word-spacing:24.336000px;}
.wsbd{word-spacing:24.480000px;}
.wsbc{word-spacing:24.768000px;}
.ws7e{word-spacing:25.056000px;}
.ws7f{word-spacing:25.200000px;}
.wsf1{word-spacing:25.488000px;}
.ws5f{word-spacing:25.920000px;}
.ws5e{word-spacing:26.208000px;}
.ws98{word-spacing:26.496000px;}
.wsc7{word-spacing:26.640000px;}
.ws9a{word-spacing:26.928000px;}
.wse7{word-spacing:27.360000px;}
.ws10d{word-spacing:27.936000px;}
.ws7a{word-spacing:28.080000px;}
.wsfb{word-spacing:28.656000px;}
.ws36{word-spacing:28.800000px;}
.ws99{word-spacing:29.016000px;}
.wsbb{word-spacing:29.088000px;}
.ws37{word-spacing:29.520000px;}
.wsfe{word-spacing:30.528000px;}
.ws68{word-spacing:30.960000px;}
.wsc1{word-spacing:31.680000px;}
.ws104{word-spacing:32.400000px;}
.ws105{word-spacing:32.976000px;}
.ws100{word-spacing:33.120000px;}
.ws97{word-spacing:33.840000px;}
.wsbf{word-spacing:34.128000px;}
.ws44{word-spacing:34.416000px;}
.ws45{word-spacing:34.560000px;}
.ws43{word-spacing:34.848000px;}
.wse6{word-spacing:35.280000px;}
.wse5{word-spacing:35.568000px;}
.ws92{word-spacing:36.720000px;}
.wsfd{word-spacing:37.440000px;}
.wsfc{word-spacing:37.584000px;}
.wsea{word-spacing:38.016000px;}
.wsec{word-spacing:38.160000px;}
.wseb{word-spacing:38.880000px;}
.wse0{word-spacing:39.168000px;}
.ws35{word-spacing:39.600000px;}
.ws80{word-spacing:39.888000px;}
.ws81{word-spacing:40.320000px;}
.ws64{word-spacing:41.040000px;}
.ws103{word-spacing:42.048000px;}
.wsa1{word-spacing:43.200000px;}
.wsa0{word-spacing:43.488000px;}
.ws94{word-spacing:44.640000px;}
.ws93{word-spacing:44.928000px;}
.wse9{word-spacing:45.216000px;}
.wse8{word-spacing:45.360000px;}
.wsd2{word-spacing:46.800000px;}
.wsf9{word-spacing:48.096000px;}
.wsf4{word-spacing:48.528000px;}
.wsef{word-spacing:48.960000px;}
.wsf6{word-spacing:50.400000px;}
.wsee{word-spacing:51.120000px;}
.ws6e{word-spacing:56.160000px;}
.wsf0{word-spacing:58.320000px;}
.ws78{word-spacing:61.776000px;}
.ws79{word-spacing:61.920000px;}
.ws9b{word-spacing:62.208000px;}
.ws7d{word-spacing:62.928000px;}
.ws106{word-spacing:63.360000px;}
.ws9c{word-spacing:64.800000px;}
.wsc6{word-spacing:65.376000px;}
.wsc5{word-spacing:65.520000px;}
.ws6a{word-spacing:66.960000px;}
.ws101{word-spacing:75.600000px;}
.ws65{word-spacing:76.176000px;}
.ws102{word-spacing:79.776000px;}
.ws67{word-spacing:81.360000px;}
.ws89{word-spacing:86.400000px;}
.ws82{word-spacing:102.960000px;}
._d{margin-left:-15.957648px;}
._c{margin-left:-13.063104px;}
._5{margin-left:-8.921016px;}
._b{margin-left:-7.860960px;}
._a{margin-left:-5.630184px;}
._6{margin-left:-4.380480px;}
._4{margin-left:-3.201120px;}
._1{margin-left:-1.600560px;}
._2{width:1.061424px;}
._8{width:2.076912px;}
._14{width:3.186576px;}
._7{width:4.380480px;}
._25{width:5.472000px;}
._e{width:6.521760px;}
._1c{width:8.549712px;}
._13{width:9.576000px;}
._17{width:10.925712px;}
._1a{width:13.248000px;}
._1f{width:14.492880px;}
._22{width:15.791904px;}
._27{width:19.296000px;}
._9{width:20.322864px;}
._1e{width:21.762576px;}
._20{width:24.714576px;}
._18{width:25.971696px;}
._16{width:27.666576px;}
._26{width:29.697120px;}
._f{width:33.665760px;}
._23{width:37.329120px;}
._19{width:40.427136px;}
._1d{width:43.258032px;}
._1b{width:44.712576px;}
._21{width:46.057680px;}
._24{width:48.583728px;}
._15{width:62.136000px;}
._28{width:79.994304px;}
._12{width:151.236720px;}
._10{width:168.459120px;}
._11{width:178.858800px;}
._3{width:810.000000px;}
._0{width:846.000000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(237,125,49);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:30.780000px;}
.y2{bottom:57.060000px;}
.y1d{bottom:77.760000px;}
.y1a{bottom:101.520000px;}
.y19d{bottom:109.260000px;}
.y157{bottom:113.040000px;}
.y136{bottom:116.460000px;}
.y12a{bottom:118.260000px;}
.y3e{bottom:125.820000px;}
.y19{bottom:132.480000px;}
.yf8{bottom:135.000000px;}
.y193{bottom:135.360000px;}
.y19b{bottom:140.220000px;}
.y5d{bottom:141.660000px;}
.yf{bottom:144.000000px;}
.y135{bottom:147.600000px;}
.y129{bottom:149.220000px;}
.y7c{bottom:154.440000px;}
.y3d{bottom:156.960000px;}
.y18{bottom:163.620000px;}
.yf7{bottom:166.140000px;}
.y192{bottom:166.320000px;}
.y19a{bottom:171.360000px;}
.ya9{bottom:172.386000px;}
.y1c{bottom:174.780000px;}
.y156{bottom:175.140000px;}
.y134{bottom:178.560000px;}
.y5c{bottom:178.986960px;}
.y128{bottom:180.360000px;}
.y7b{bottom:185.400000px;}
.y3c{bottom:187.920000px;}
.y17{bottom:194.580000px;}
.yf6{bottom:197.100000px;}
.ya8{bottom:201.912480px;}
.y199{bottom:202.320000px;}
.y155{bottom:206.100000px;}
.y191{bottom:206.280000px;}
.y5b{bottom:207.420480px;}
.y133{bottom:209.700000px;}
.y127{bottom:211.320000px;}
.y7a{bottom:216.540000px;}
.y3b{bottom:219.060000px;}
.ya7{bottom:222.248160px;}
.y16{bottom:225.720000px;}
.ydb{bottom:228.240000px;}
.y179{bottom:233.280000px;}
.y5a{bottom:235.854000px;}
.y154{bottom:237.240000px;}
.y190{bottom:237.420000px;}
.y132{bottom:240.660000px;}
.y126{bottom:242.280000px;}
.y79{bottom:247.500000px;}
.y3a{bottom:250.020000px;}
.ya6{bottom:251.774640px;}
.y15{bottom:256.680000px;}
.yda{bottom:259.200000px;}
.y178{bottom:264.420000px;}
.y153{bottom:268.200000px;}
.y18f{bottom:268.380000px;}
.y10b{bottom:271.800000px;}
.y59{bottom:271.855440px;}
.ya5{bottom:272.292480px;}
.y125{bottom:273.420000px;}
.y197{bottom:277.380000px;}
.y78{bottom:278.640000px;}
.y39{bottom:280.980000px;}
.y14{bottom:287.820000px;}
.yd9{bottom:290.340000px;}
.yf5{bottom:290.880000px;}
.y177{bottom:295.380000px;}
.y152{bottom:299.340000px;}
.y18e{bottom:299.520000px;}
.y58{bottom:300.288960px;}
.ya4{bottom:301.818960px;}
.y10a{bottom:302.760000px;}
.y124{bottom:304.380000px;}
.y77{bottom:309.600000px;}
.y38{bottom:312.120000px;}
.y13{bottom:318.780000px;}
.yd8{bottom:321.300000px;}
.yf4{bottom:321.840000px;}
.ya3{bottom:322.336800px;}
.y176{bottom:326.520000px;}
.y151{bottom:330.300000px;}
.y18d{bottom:330.480000px;}
.y109{bottom:333.900000px;}
.y123{bottom:335.520000px;}
.y57{bottom:336.290400px;}
.y76{bottom:340.740000px;}
.y37{bottom:343.080000px;}
.y12{bottom:349.920000px;}
.ya2{bottom:351.681120px;}
.yd7{bottom:352.440000px;}
.yf3{bottom:352.980000px;}
.y175{bottom:357.480000px;}
.y150{bottom:361.440000px;}
.y18c{bottom:361.620000px;}
.y56{bottom:364.723920px;}
.y108{bottom:364.860000px;}
.y122{bottom:366.480000px;}
.y75{bottom:371.700000px;}
.y36{bottom:374.220000px;}
.y11{bottom:380.880000px;}
.ya1{bottom:381.207600px;}
.yd6{bottom:383.400000px;}
.yf2{bottom:383.940000px;}
.y174{bottom:388.620000px;}
.y14f{bottom:392.400000px;}
.y18b{bottom:392.580000px;}
.y107{bottom:396.000000px;}
.y121{bottom:397.620000px;}
.y55{bottom:400.543200px;}
.y74{bottom:402.840000px;}
.y35{bottom:405.180000px;}
.ya0{bottom:410.734080px;}
.y10{bottom:412.020000px;}
.yd5{bottom:414.540000px;}
.yf1{bottom:415.080000px;}
.y173{bottom:419.580000px;}
.y14e{bottom:423.540000px;}
.y18a{bottom:423.720000px;}
.y106{bottom:426.960000px;}
.y120{bottom:428.580000px;}
.y9f{bottom:431.251920px;}
.y73{bottom:433.800000px;}
.y34{bottom:436.320000px;}
.y54{bottom:436.544640px;}
.yd4{bottom:445.500000px;}
.yf0{bottom:446.040000px;}
.y172{bottom:450.720000px;}
.y9e{bottom:451.587600px;}
.y14d{bottom:454.500000px;}
.y159{bottom:457.020000px;}
.y105{bottom:458.100000px;}
.y11f{bottom:459.720000px;}
.y189{bottom:463.680000px;}
.y72{bottom:464.940000px;}
.y53{bottom:464.978160px;}
.y33{bottom:467.280000px;}
.yd3{bottom:476.640000px;}
.yef{bottom:477.180000px;}
.y9d{bottom:481.114080px;}
.y171{bottom:481.680000px;}
.y14c{bottom:485.640000px;}
.y158{bottom:487.980000px;}
.y104{bottom:489.060000px;}
.y11e{bottom:490.680000px;}
.y188{bottom:494.820000px;}
.y71{bottom:495.900000px;}
.y32{bottom:498.420000px;}
.y52{bottom:500.979600px;}
.y9c{bottom:501.631920px;}
.yd2{bottom:507.600000px;}
.yee{bottom:508.140000px;}
.y170{bottom:512.820000px;}
.y14b{bottom:516.600000px;}
.y13a{bottom:519.120000px;}
.y103{bottom:520.200000px;}
.y11d{bottom:521.820000px;}
.y9b{bottom:522.149760px;}
.y187{bottom:525.780000px;}
.y70{bottom:527.040000px;}
.y31{bottom:529.380000px;}
.y51{bottom:536.981040px;}
.yd1{bottom:538.740000px;}
.yed{bottom:539.280000px;}
.y16f{bottom:543.780000px;}
.y14a{bottom:547.740000px;}
.y139{bottom:550.080000px;}
.y102{bottom:551.160000px;}
.y9a{bottom:551.494080px;}
.y11c{bottom:552.780000px;}
.y6f{bottom:558.000000px;}
.y30{bottom:560.520000px;}
.y50{bottom:565.414560px;}
.y186{bottom:565.920000px;}
.yd0{bottom:569.700000px;}
.yec{bottom:570.240000px;}
.y99{bottom:572.011920px;}
.y16e{bottom:574.920000px;}
.y149{bottom:578.700000px;}
.y138{bottom:581.220000px;}
.y101{bottom:582.300000px;}
.y11b{bottom:583.920000px;}
.y6e{bottom:589.140000px;}
.y2f{bottom:591.480000px;}
.y98{bottom:592.529760px;}
.y131{bottom:594.180000px;}
.ybf{bottom:594.303840px;}
.y185{bottom:596.880000px;}
.ycf{bottom:600.840000px;}
.yeb{bottom:601.200000px;}
.y4f{bottom:601.416000px;}
.y16d{bottom:605.880000px;}
.y148{bottom:609.840000px;}
.y137{bottom:612.180000px;}
.y100{bottom:613.260000px;}
.y11a{bottom:614.880000px;}
.y6d{bottom:620.100000px;}
.y97{bottom:622.056240px;}
.y2e{bottom:622.620000px;}
.ybe{bottom:623.830320px;}
.y184{bottom:628.020000px;}
.y4e{bottom:629.849520px;}
.yce{bottom:631.800000px;}
.yea{bottom:632.340000px;}
.y16c{bottom:637.020000px;}
.y147{bottom:640.800000px;}
.y130{bottom:643.320000px;}
.yff{bottom:644.400000px;}
.y119{bottom:646.020000px;}
.y6c{bottom:651.240000px;}
.y96{bottom:651.400560px;}
.ybd{bottom:653.174640px;}
.y2d{bottom:653.580000px;}
.y19c{bottom:656.280000px;}
.y183{bottom:658.980000px;}
.ycd{bottom:662.940000px;}
.ye9{bottom:663.300000px;}
.y4d{bottom:665.850960px;}
.y16b{bottom:667.980000px;}
.y146{bottom:671.940000px;}
.ybc{bottom:673.692480px;}
.y12f{bottom:674.280000px;}
.yfe{bottom:675.360000px;}
.y118{bottom:676.980000px;}
.y95{bottom:680.927040px;}
.y6b{bottom:682.200000px;}
.y2c{bottom:684.720000px;}
.y4{bottom:686.160000px;}
.ye{bottom:687.022020px;}
.y182{bottom:690.120000px;}
.y180{bottom:693.360000px;}
.ycc{bottom:693.900000px;}
.ybb{bottom:694.210320px;}
.y4c{bottom:694.284480px;}
.ye8{bottom:694.440000px;}
.y16a{bottom:699.120000px;}
.y94{bottom:701.444880px;}
.y145{bottom:702.900000px;}
.y12e{bottom:705.420000px;}
.yfd{bottom:706.500000px;}
.y117{bottom:708.120000px;}
.y6a{bottom:713.340000px;}
.y2b{bottom:715.680000px;}
.y181{bottom:721.080000px;}
.yba{bottom:723.736800px;}
.yd{bottom:723.750660px;}
.y17f{bottom:724.500000px;}
.ycb{bottom:725.040000px;}
.ye7{bottom:725.400000px;}
.y169{bottom:730.080000px;}
.y4b{bottom:730.285920px;}
.y93{bottom:730.971360px;}
.y144{bottom:734.040000px;}
.y12d{bottom:736.380000px;}
.yfc{bottom:737.460000px;}
.y116{bottom:739.080000px;}
.yb9{bottom:744.072480px;}
.y69{bottom:744.300000px;}
.y2a{bottom:746.820000px;}
.y92{bottom:751.307040px;}
.yc{bottom:751.655160px;}
.y17e{bottom:755.460000px;}
.yca{bottom:756.000000px;}
.ye6{bottom:756.540000px;}
.y4a{bottom:758.719440px;}
.y168{bottom:761.220000px;}
.y143{bottom:765.000000px;}
.y12c{bottom:767.520000px;}
.yfb{bottom:768.600000px;}
.y115{bottom:770.220000px;}
.y91{bottom:771.824880px;}
.yb8{bottom:773.598960px;}
.y68{bottom:775.260000px;}
.y29{bottom:777.780000px;}
.yb{bottom:779.370120px;}
.y17d{bottom:786.600000px;}
.yc9{bottom:786.960000px;}
.ye5{bottom:787.500000px;}
.y167{bottom:792.180000px;}
.y49{bottom:794.538720px;}
.y142{bottom:795.960000px;}
.y12b{bottom:798.480000px;}
.yfa{bottom:799.560000px;}
.y114{bottom:801.180000px;}
.y90{bottom:801.351360px;}
.yb7{bottom:803.125440px;}
.y67{bottom:806.400000px;}
.ya{bottom:807.085080px;}
.y28{bottom:808.920000px;}
.y17c{bottom:817.560000px;}
.yc8{bottom:818.100000px;}
.ye4{bottom:818.640000px;}
.y48{bottom:823.154400px;}
.y166{bottom:823.320000px;}
.y141{bottom:827.100000px;}
.y86{bottom:829.620000px;}
.y15d{bottom:830.700000px;}
.y8f{bottom:830.877840px;}
.y113{bottom:832.320000px;}
.yb6{bottom:832.651920px;}
.y66{bottom:837.360000px;}
.y27{bottom:839.880000px;}
.yf9{bottom:842.580000px;}
.y9{bottom:843.813720px;}
.y17b{bottom:848.700000px;}
.yc7{bottom:849.060000px;}
.yb5{bottom:852.987600px;}
.y165{bottom:854.280000px;}
.y140{bottom:858.060000px;}
.y47{bottom:858.973680px;}
.y8e{bottom:860.222160px;}
.y85{bottom:860.580000px;}
.ye3{bottom:861.660000px;}
.y112{bottom:863.280000px;}
.y65{bottom:868.500000px;}
.y26{bottom:871.020000px;}
.y8{bottom:871.718220px;}
.y17a{bottom:879.660000px;}
.yc6{bottom:880.200000px;}
.y8d{bottom:880.740000px;}
.yb4{bottom:882.514080px;}
.y164{bottom:885.420000px;}
.y46{bottom:887.407200px;}
.y13f{bottom:889.200000px;}
.y84{bottom:891.720000px;}
.y15c{bottom:892.800000px;}
.y111{bottom:894.420000px;}
.y64{bottom:899.460000px;}
.y8c{bottom:901.257840px;}
.y25{bottom:901.980000px;}
.yb3{bottom:903.031920px;}
.y7{bottom:908.446860px;}
.ye2{bottom:910.800000px;}
.yc5{bottom:911.160000px;}
.y163{bottom:916.380000px;}
.y13e{bottom:920.160000px;}
.y83{bottom:922.680000px;}
.y45{bottom:923.408640px;}
.y15b{bottom:923.760000px;}
.y110{bottom:925.380000px;}
.y63{bottom:930.600000px;}
.y8b{bottom:930.784320px;}
.yb2{bottom:932.558400px;}
.y24{bottom:933.120000px;}
.y198{bottom:935.820000px;}
.ye1{bottom:941.760000px;}
.yc4{bottom:942.300000px;}
.y6{bottom:945.175500px;}
.y162{bottom:947.520000px;}
.y8a{bottom:951.120000px;}
.y13d{bottom:951.300000px;}
.y44{bottom:951.842160px;}
.yb1{bottom:952.894080px;}
.y82{bottom:953.820000px;}
.y196{bottom:954.720000px;}
.y10f{bottom:956.520000px;}
.y62{bottom:961.560000px;}
.y23{bottom:964.080000px;}
.y15a{bottom:966.780000px;}
.ye0{bottom:972.720000px;}
.y5{bottom:973.080000px;}
.yc3{bottom:973.260000px;}
.y161{bottom:978.480000px;}
.y89{bottom:980.646480px;}
.y13c{bottom:982.260000px;}
.yb0{bottom:982.420560px;}
.y81{bottom:984.780000px;}
.y195{bottom:985.860000px;}
.y10e{bottom:987.480000px;}
.y43{bottom:987.843600px;}
.y61{bottom:992.700000px;}
.y22{bottom:995.220000px;}
.ydf{bottom:1003.860000px;}
.yc2{bottom:1004.400000px;}
.y160{bottom:1009.620000px;}
.yaf{bottom:1011.947040px;}
.y88{bottom:1013.220000px;}
.y13b{bottom:1013.400000px;}
.y80{bottom:1015.920000px;}
.y42{bottom:1016.277120px;}
.y10d{bottom:1018.620000px;}
.y60{bottom:1023.660000px;}
.y21{bottom:1028.528280px;}
.y194{bottom:1028.880000px;}
.yae{bottom:1032.464880px;}
.yde{bottom:1034.820000px;}
.y15f{bottom:1040.580000px;}
.y87{bottom:1045.612080px;}
.y7f{bottom:1046.880000px;}
.y10c{bottom:1049.580000px;}
.y41{bottom:1052.278560px;}
.y5f{bottom:1054.800000px;}
.yc1{bottom:1055.709360px;}
.yad{bottom:1061.809200px;}
.y19f{bottom:1064.688300px;}
.y20{bottom:1064.709360px;}
.ydd{bottom:1065.960000px;}
.y7e{bottom:1078.020000px;}
.yac{bottom:1082.327040px;}
.y5e{bottom:1085.760000px;}
.y40{bottom:1088.280000px;}
.y15e{bottom:1091.869380px;}
.yc0{bottom:1091.890440px;}
.ydc{bottom:1096.920000px;}
.y19e{bottom:1100.869380px;}
.y1f{bottom:1100.890440px;}
.y7d{bottom:1108.980000px;}
.yab{bottom:1111.853520px;}
.y3f{bottom:1128.240000px;}
.y1e{bottom:1137.240000px;}
.y3{bottom:1140.120000px;}
.yaa{bottom:1141.380000px;}
.y1{bottom:1193.220000px;}
.h8{height:44.893125px;}
.ha{height:45.992812px;}
.h3{height:48.796875px;}
.hc{height:49.992188px;}
.h7{height:55.243125px;}
.h9{height:55.274805px;}
.hb{height:55.459125px;}
.h4{height:57.092344px;}
.h2{height:60.046875px;}
.h5{height:70.254844px;}
.h6{height:975.420000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:839.160000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x5{left:26.640000px;}
.x2{left:106.200000px;}
.xf{left:127.440000px;}
.x11{left:159.300000px;}
.x8{left:178.217100px;}
.x9{left:192.622140px;}
.x7{left:261.720000px;}
.xe{left:265.672800px;}
.x3{left:342.900000px;}
.xa{left:372.664080px;}
.xb{left:379.980000px;}
.x4{left:396.900000px;}
.xc{left:446.220000px;}
.x6{left:566.640000px;}
.x10{left:768.060000px;}
.xd{left:777.060000px;}
.x1{left:786.060000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-3.219840pt;}
.ls9{letter-spacing:-3.144960pt;}
.ls5{letter-spacing:-2.845440pt;}
.ls8{letter-spacing:-2.695680pt;}
.lsa{letter-spacing:-2.545920pt;}
.ls7{letter-spacing:-2.246400pt;}
.ls31{letter-spacing:-1.472000pt;}
.ls30{letter-spacing:-1.344000pt;}
.ls44{letter-spacing:-1.280000pt;}
.ls1e{letter-spacing:-1.059840pt;}
.ls24{letter-spacing:-0.973440pt;}
.ls10{letter-spacing:-0.832000pt;}
.ls16{letter-spacing:-0.765440pt;}
.ls26{letter-spacing:-0.704000pt;}
.ls17{letter-spacing:-0.647680pt;}
.lse{letter-spacing:-0.640000pt;}
.ls2b{letter-spacing:-0.599040pt;}
.ls1d{letter-spacing:-0.529920pt;}
.ls25{letter-spacing:-0.448000pt;}
.ls3d{letter-spacing:-0.384000pt;}
.ls15{letter-spacing:-0.353280pt;}
.ls3{letter-spacing:-0.299520pt;}
.ls13{letter-spacing:-0.294400pt;}
.lsc{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls27{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.117760pt;}
.ls2{letter-spacing:-0.074880pt;}
.ls5b{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.064000pt;}
.ls23{letter-spacing:0.074880pt;}
.ls11{letter-spacing:0.117760pt;}
.lsb{letter-spacing:0.128000pt;}
.ls5a{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.235520pt;}
.ls1a{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.294400pt;}
.ls0{letter-spacing:0.299520pt;}
.ls3e{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.448000pt;}
.ls53{letter-spacing:0.512000pt;}
.ls48{letter-spacing:0.633600pt;}
.ls28{letter-spacing:0.640000pt;}
.ls29{letter-spacing:0.768000pt;}
.ls33{letter-spacing:1.280000pt;}
.ls55{letter-spacing:2.560000pt;}
.ls4a{letter-spacing:2.572800pt;}
.ls32{letter-spacing:3.200000pt;}
.ls3a{letter-spacing:3.840000pt;}
.ls1f{letter-spacing:4.480000pt;}
.ls40{letter-spacing:5.120000pt;}
.ls20{letter-spacing:5.760000pt;}
.ls49{letter-spacing:5.772800pt;}
.ls2c{letter-spacing:6.400000pt;}
.ls59{letter-spacing:7.040000pt;}
.ls21{letter-spacing:7.680000pt;}
.ls2a{letter-spacing:8.960000pt;}
.ls46{letter-spacing:9.600000pt;}
.ls45{letter-spacing:10.240000pt;}
.ls36{letter-spacing:10.880000pt;}
.ls37{letter-spacing:11.520000pt;}
.ls51{letter-spacing:12.160000pt;}
.ls4d{letter-spacing:12.800000pt;}
.ls4f{letter-spacing:13.440000pt;}
.ls4e{letter-spacing:14.080000pt;}
.ls56{letter-spacing:14.720000pt;}
.ls22{letter-spacing:15.360000pt;}
.ls47{letter-spacing:16.000000pt;}
.ls42{letter-spacing:16.006400pt;}
.ls43{letter-spacing:16.640000pt;}
.ls34{letter-spacing:17.280000pt;}
.ls57{letter-spacing:17.920000pt;}
.ls38{letter-spacing:18.560000pt;}
.ls3b{letter-spacing:19.200000pt;}
.ls4c{letter-spacing:20.480000pt;}
.ls50{letter-spacing:21.120000pt;}
.ls39{letter-spacing:21.760000pt;}
.ls41{letter-spacing:22.400000pt;}
.ls3c{letter-spacing:23.040000pt;}
.ls2f{letter-spacing:23.680000pt;}
.ls35{letter-spacing:24.960000pt;}
.ls19{letter-spacing:26.240000pt;}
.ls2d{letter-spacing:30.080000pt;}
.ls4b{letter-spacing:31.360000pt;}
.ls18{letter-spacing:35.200000pt;}
.ls52{letter-spacing:36.480000pt;}
.ls2e{letter-spacing:39.680000pt;}
.ls54{letter-spacing:42.880000pt;}
.ls3f{letter-spacing:58.240000pt;}
.ls58{letter-spacing:71.040000pt;}
.ls1b{letter-spacing:551.705600pt;}
.ws1{word-spacing:-19.019520pt;}
.ws2{word-spacing:-18.720000pt;}
.ws0{word-spacing:-18.645120pt;}
.ws3{word-spacing:-18.420480pt;}
.ws83{word-spacing:-18.120960pt;}
.ws55{word-spacing:-17.746560pt;}
.wse3{word-spacing:-16.640000pt;}
.wsf2{word-spacing:-16.512000pt;}
.wsa{word-spacing:-16.473600pt;}
.wsf3{word-spacing:-16.448000pt;}
.wsb6{word-spacing:-16.384000pt;}
.wsc8{word-spacing:-16.256000pt;}
.wsd{word-spacing:-16.128000pt;}
.ws10{word-spacing:-16.064000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws108{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.874560pt;}
.wsdc{word-spacing:-15.872000pt;}
.ws56{word-spacing:-15.808000pt;}
.wse{word-spacing:-15.744000pt;}
.ws109{word-spacing:-15.616000pt;}
.wsb{word-spacing:-15.575040pt;}
.wsdb{word-spacing:-15.552000pt;}
.wsf{word-spacing:-15.360000pt;}
.wsda{word-spacing:-15.296000pt;}
.wsc9{word-spacing:-15.168000pt;}
.ws27{word-spacing:-15.014400pt;}
.ws25{word-spacing:-14.955520pt;}
.ws29{word-spacing:-14.837760pt;}
.ws2a{word-spacing:-14.720000pt;}
.ws8d{word-spacing:-14.656000pt;}
.ws26{word-spacing:-14.425600pt;}
.ws28{word-spacing:-14.366720pt;}
.ws2c{word-spacing:-14.072320pt;}
.ws2b{word-spacing:-13.954560pt;}
.ws52{word-spacing:-13.660160pt;}
.ws16{word-spacing:-4.043520pt;}
.ws6c{word-spacing:-3.968000pt;}
.ws58{word-spacing:-3.840000pt;}
.wsde{word-spacing:-3.584000pt;}
.wsdf{word-spacing:-3.328000pt;}
.ws40{word-spacing:-3.200000pt;}
.wsb5{word-spacing:-3.072000pt;}
.wsb3{word-spacing:-2.944000pt;}
.wsc4{word-spacing:-2.688000pt;}
.wse1{word-spacing:-2.624000pt;}
.ws5b{word-spacing:-2.560000pt;}
.ws8f{word-spacing:-2.304000pt;}
.wscc{word-spacing:-2.048000pt;}
.ws39{word-spacing:-1.920000pt;}
.wsb4{word-spacing:-1.728000pt;}
.wsaa{word-spacing:-1.664000pt;}
.ws4d{word-spacing:-1.408000pt;}
.ws3a{word-spacing:-1.280000pt;}
.ws6{word-spacing:-1.123200pt;}
.ws3b{word-spacing:-1.024000pt;}
.ws30{word-spacing:-0.942080pt;}
.ws2d{word-spacing:-0.883200pt;}
.ws15{word-spacing:-0.823680pt;}
.ws75{word-spacing:-0.768000pt;}
.ws50{word-spacing:-0.765440pt;}
.ws31{word-spacing:-0.647680pt;}
.ws42{word-spacing:-0.640000pt;}
.ws5{word-spacing:-0.449280pt;}
.wsc3{word-spacing:-0.448000pt;}
.ws3f{word-spacing:-0.384000pt;}
.ws84{word-spacing:-0.299520pt;}
.ws2f{word-spacing:-0.294400pt;}
.wsa4{word-spacing:-0.256000pt;}
.ws51{word-spacing:-0.235520pt;}
.ws57{word-spacing:-0.224640pt;}
.ws8{word-spacing:-0.149760pt;}
.ws19{word-spacing:-0.128000pt;}
.ws2e{word-spacing:-0.117760pt;}
.ws85{word-spacing:-0.074880pt;}
.wsd7{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.ws4f{word-spacing:0.117760pt;}
.ws6d{word-spacing:0.128000pt;}
.ws7{word-spacing:0.149760pt;}
.ws1a{word-spacing:0.192000pt;}
.ws20{word-spacing:0.256000pt;}
.ws4e{word-spacing:0.294400pt;}
.wsbe{word-spacing:0.384000pt;}
.ws5a{word-spacing:0.448000pt;}
.ws59{word-spacing:0.512000pt;}
.ws11{word-spacing:0.524160pt;}
.ws53{word-spacing:0.529920pt;}
.wsae{word-spacing:0.599040pt;}
.ws24{word-spacing:0.640000pt;}
.ws54{word-spacing:0.647680pt;}
.ws69{word-spacing:0.704000pt;}
.ws1b{word-spacing:0.832000pt;}
.ws48{word-spacing:0.896000pt;}
.ws4a{word-spacing:1.152000pt;}
.ws4b{word-spacing:1.280000pt;}
.wsad{word-spacing:1.536000pt;}
.wsaf{word-spacing:1.792000pt;}
.ws21{word-spacing:1.920000pt;}
.wsed{word-spacing:2.176000pt;}
.ws14{word-spacing:2.246400pt;}
.ws32{word-spacing:2.304000pt;}
.wsdd{word-spacing:2.432000pt;}
.ws3e{word-spacing:2.560000pt;}
.ws13{word-spacing:2.695680pt;}
.wsd3{word-spacing:2.816000pt;}
.ws12{word-spacing:2.845440pt;}
.wsd6{word-spacing:3.072000pt;}
.wsf7{word-spacing:3.136000pt;}
.ws3d{word-spacing:3.200000pt;}
.ws4c{word-spacing:3.456000pt;}
.wsb1{word-spacing:3.712000pt;}
.ws71{word-spacing:3.840000pt;}
.wsab{word-spacing:4.032000pt;}
.wsb2{word-spacing:4.096000pt;}
.wsa9{word-spacing:4.352000pt;}
.ws46{word-spacing:4.480000pt;}
.ws60{word-spacing:4.736000pt;}
.wsce{word-spacing:4.992000pt;}
.ws41{word-spacing:5.120000pt;}
.wsd4{word-spacing:5.312000pt;}
.ws6b{word-spacing:5.376000pt;}
.wscd{word-spacing:5.632000pt;}
.ws49{word-spacing:5.760000pt;}
.ws33{word-spacing:6.016000pt;}
.wsb0{word-spacing:6.272000pt;}
.ws96{word-spacing:6.400000pt;}
.ws34{word-spacing:6.592000pt;}
.ws9f{word-spacing:6.656000pt;}
.wsd5{word-spacing:6.912000pt;}
.ws3c{word-spacing:7.040000pt;}
.ws10b{word-spacing:7.232000pt;}
.ws95{word-spacing:7.296000pt;}
.wsa6{word-spacing:7.552000pt;}
.ws23{word-spacing:7.680000pt;}
.ws10a{word-spacing:7.744000pt;}
.wsa5{word-spacing:7.872000pt;}
.ws38{word-spacing:7.936000pt;}
.ws107{word-spacing:8.192000pt;}
.ws73{word-spacing:8.320000pt;}
.ws47{word-spacing:8.576000pt;}
.wse4{word-spacing:8.832000pt;}
.ws22{word-spacing:8.960000pt;}
.wsa7{word-spacing:9.216000pt;}
.wscb{word-spacing:9.472000pt;}
.ws72{word-spacing:9.600000pt;}
.wsd0{word-spacing:9.792000pt;}
.ws7c{word-spacing:9.856000pt;}
.ws90{word-spacing:10.240000pt;}
.wsf8{word-spacing:10.496000pt;}
.ws8b{word-spacing:10.752000pt;}
.ws8a{word-spacing:10.880000pt;}
.wsa8{word-spacing:11.136000pt;}
.wsac{word-spacing:11.392000pt;}
.ws1f{word-spacing:11.520000pt;}
.wsff{word-spacing:11.776000pt;}
.ws8e{word-spacing:12.160000pt;}
.wsd1{word-spacing:12.416000pt;}
.wsb8{word-spacing:12.672000pt;}
.wsb7{word-spacing:12.800000pt;}
.ws8c{word-spacing:13.056000pt;}
.wscf{word-spacing:13.312000pt;}
.ws88{word-spacing:13.440000pt;}
.ws63{word-spacing:13.696000pt;}
.ws86{word-spacing:14.080000pt;}
.ws87{word-spacing:14.336000pt;}
.wsfa{word-spacing:14.592000pt;}
.ws91{word-spacing:14.720000pt;}
.wsf5{word-spacing:14.976000pt;}
.wsc2{word-spacing:15.232000pt;}
.ws61{word-spacing:15.360000pt;}
.ws62{word-spacing:15.616000pt;}
.wsd9{word-spacing:15.872000pt;}
.ws74{word-spacing:16.000000pt;}
.ws10c{word-spacing:16.192000pt;}
.ws7b{word-spacing:16.256000pt;}
.wsd8{word-spacing:16.512000pt;}
.ws5c{word-spacing:16.640000pt;}
.wsba{word-spacing:16.896000pt;}
.wsb9{word-spacing:17.280000pt;}
.ws1e{word-spacing:17.472000pt;}
.ws1c{word-spacing:17.536000pt;}
.ws18{word-spacing:17.792000pt;}
.ws17{word-spacing:17.920000pt;}
.ws1d{word-spacing:18.112000pt;}
.ws77{word-spacing:18.176000pt;}
.ws5d{word-spacing:18.560000pt;}
.ws6f{word-spacing:18.816000pt;}
.wsc0{word-spacing:19.072000pt;}
.wsa3{word-spacing:19.200000pt;}
.wsa2{word-spacing:19.456000pt;}
.ws70{word-spacing:19.840000pt;}
.wsca{word-spacing:20.096000pt;}
.ws9e{word-spacing:20.736000pt;}
.wse2{word-spacing:20.992000pt;}
.ws66{word-spacing:21.120000pt;}
.ws9d{word-spacing:21.376000pt;}
.ws76{word-spacing:21.632000pt;}
.wsbd{word-spacing:21.760000pt;}
.wsbc{word-spacing:22.016000pt;}
.ws7e{word-spacing:22.272000pt;}
.ws7f{word-spacing:22.400000pt;}
.wsf1{word-spacing:22.656000pt;}
.ws5f{word-spacing:23.040000pt;}
.ws5e{word-spacing:23.296000pt;}
.ws98{word-spacing:23.552000pt;}
.wsc7{word-spacing:23.680000pt;}
.ws9a{word-spacing:23.936000pt;}
.wse7{word-spacing:24.320000pt;}
.ws10d{word-spacing:24.832000pt;}
.ws7a{word-spacing:24.960000pt;}
.wsfb{word-spacing:25.472000pt;}
.ws36{word-spacing:25.600000pt;}
.ws99{word-spacing:25.792000pt;}
.wsbb{word-spacing:25.856000pt;}
.ws37{word-spacing:26.240000pt;}
.wsfe{word-spacing:27.136000pt;}
.ws68{word-spacing:27.520000pt;}
.wsc1{word-spacing:28.160000pt;}
.ws104{word-spacing:28.800000pt;}
.ws105{word-spacing:29.312000pt;}
.ws100{word-spacing:29.440000pt;}
.ws97{word-spacing:30.080000pt;}
.wsbf{word-spacing:30.336000pt;}
.ws44{word-spacing:30.592000pt;}
.ws45{word-spacing:30.720000pt;}
.ws43{word-spacing:30.976000pt;}
.wse6{word-spacing:31.360000pt;}
.wse5{word-spacing:31.616000pt;}
.ws92{word-spacing:32.640000pt;}
.wsfd{word-spacing:33.280000pt;}
.wsfc{word-spacing:33.408000pt;}
.wsea{word-spacing:33.792000pt;}
.wsec{word-spacing:33.920000pt;}
.wseb{word-spacing:34.560000pt;}
.wse0{word-spacing:34.816000pt;}
.ws35{word-spacing:35.200000pt;}
.ws80{word-spacing:35.456000pt;}
.ws81{word-spacing:35.840000pt;}
.ws64{word-spacing:36.480000pt;}
.ws103{word-spacing:37.376000pt;}
.wsa1{word-spacing:38.400000pt;}
.wsa0{word-spacing:38.656000pt;}
.ws94{word-spacing:39.680000pt;}
.ws93{word-spacing:39.936000pt;}
.wse9{word-spacing:40.192000pt;}
.wse8{word-spacing:40.320000pt;}
.wsd2{word-spacing:41.600000pt;}
.wsf9{word-spacing:42.752000pt;}
.wsf4{word-spacing:43.136000pt;}
.wsef{word-spacing:43.520000pt;}
.wsf6{word-spacing:44.800000pt;}
.wsee{word-spacing:45.440000pt;}
.ws6e{word-spacing:49.920000pt;}
.wsf0{word-spacing:51.840000pt;}
.ws78{word-spacing:54.912000pt;}
.ws79{word-spacing:55.040000pt;}
.ws9b{word-spacing:55.296000pt;}
.ws7d{word-spacing:55.936000pt;}
.ws106{word-spacing:56.320000pt;}
.ws9c{word-spacing:57.600000pt;}
.wsc6{word-spacing:58.112000pt;}
.wsc5{word-spacing:58.240000pt;}
.ws6a{word-spacing:59.520000pt;}
.ws101{word-spacing:67.200000pt;}
.ws65{word-spacing:67.712000pt;}
.ws102{word-spacing:70.912000pt;}
.ws67{word-spacing:72.320000pt;}
.ws89{word-spacing:76.800000pt;}
.ws82{word-spacing:91.520000pt;}
._d{margin-left:-14.184576pt;}
._c{margin-left:-11.611648pt;}
._5{margin-left:-7.929792pt;}
._b{margin-left:-6.987520pt;}
._a{margin-left:-5.004608pt;}
._6{margin-left:-3.893760pt;}
._4{margin-left:-2.845440pt;}
._1{margin-left:-1.422720pt;}
._2{width:0.943488pt;}
._8{width:1.846144pt;}
._14{width:2.832512pt;}
._7{width:3.893760pt;}
._25{width:4.864000pt;}
._e{width:5.797120pt;}
._1c{width:7.599744pt;}
._13{width:8.512000pt;}
._17{width:9.711744pt;}
._1a{width:11.776000pt;}
._1f{width:12.882560pt;}
._22{width:14.037248pt;}
._27{width:17.152000pt;}
._9{width:18.064768pt;}
._1e{width:19.344512pt;}
._20{width:21.968512pt;}
._18{width:23.085952pt;}
._16{width:24.592512pt;}
._26{width:26.397440pt;}
._f{width:29.925120pt;}
._23{width:33.181440pt;}
._19{width:35.935232pt;}
._1d{width:38.451584pt;}
._1b{width:39.744512pt;}
._21{width:40.940160pt;}
._24{width:43.185536pt;}
._15{width:55.232000pt;}
._28{width:71.106048pt;}
._12{width:134.432640pt;}
._10{width:149.741440pt;}
._11{width:158.985600pt;}
._3{width:720.000000pt;}
._0{width:752.000000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:27.360000pt;}
.y2{bottom:50.720000pt;}
.y1d{bottom:69.120000pt;}
.y1a{bottom:90.240000pt;}
.y19d{bottom:97.120000pt;}
.y157{bottom:100.480000pt;}
.y136{bottom:103.520000pt;}
.y12a{bottom:105.120000pt;}
.y3e{bottom:111.840000pt;}
.y19{bottom:117.760000pt;}
.yf8{bottom:120.000000pt;}
.y193{bottom:120.320000pt;}
.y19b{bottom:124.640000pt;}
.y5d{bottom:125.920000pt;}
.yf{bottom:128.000000pt;}
.y135{bottom:131.200000pt;}
.y129{bottom:132.640000pt;}
.y7c{bottom:137.280000pt;}
.y3d{bottom:139.520000pt;}
.y18{bottom:145.440000pt;}
.yf7{bottom:147.680000pt;}
.y192{bottom:147.840000pt;}
.y19a{bottom:152.320000pt;}
.ya9{bottom:153.232000pt;}
.y1c{bottom:155.360000pt;}
.y156{bottom:155.680000pt;}
.y134{bottom:158.720000pt;}
.y5c{bottom:159.099520pt;}
.y128{bottom:160.320000pt;}
.y7b{bottom:164.800000pt;}
.y3c{bottom:167.040000pt;}
.y17{bottom:172.960000pt;}
.yf6{bottom:175.200000pt;}
.ya8{bottom:179.477760pt;}
.y199{bottom:179.840000pt;}
.y155{bottom:183.200000pt;}
.y191{bottom:183.360000pt;}
.y5b{bottom:184.373760pt;}
.y133{bottom:186.400000pt;}
.y127{bottom:187.840000pt;}
.y7a{bottom:192.480000pt;}
.y3b{bottom:194.720000pt;}
.ya7{bottom:197.553920pt;}
.y16{bottom:200.640000pt;}
.ydb{bottom:202.880000pt;}
.y179{bottom:207.360000pt;}
.y5a{bottom:209.648000pt;}
.y154{bottom:210.880000pt;}
.y190{bottom:211.040000pt;}
.y132{bottom:213.920000pt;}
.y126{bottom:215.360000pt;}
.y79{bottom:220.000000pt;}
.y3a{bottom:222.240000pt;}
.ya6{bottom:223.799680pt;}
.y15{bottom:228.160000pt;}
.yda{bottom:230.400000pt;}
.y178{bottom:235.040000pt;}
.y153{bottom:238.400000pt;}
.y18f{bottom:238.560000pt;}
.y10b{bottom:241.600000pt;}
.y59{bottom:241.649280pt;}
.ya5{bottom:242.037760pt;}
.y125{bottom:243.040000pt;}
.y197{bottom:246.560000pt;}
.y78{bottom:247.680000pt;}
.y39{bottom:249.760000pt;}
.y14{bottom:255.840000pt;}
.yd9{bottom:258.080000pt;}
.yf5{bottom:258.560000pt;}
.y177{bottom:262.560000pt;}
.y152{bottom:266.080000pt;}
.y18e{bottom:266.240000pt;}
.y58{bottom:266.923520pt;}
.ya4{bottom:268.283520pt;}
.y10a{bottom:269.120000pt;}
.y124{bottom:270.560000pt;}
.y77{bottom:275.200000pt;}
.y38{bottom:277.440000pt;}
.y13{bottom:283.360000pt;}
.yd8{bottom:285.600000pt;}
.yf4{bottom:286.080000pt;}
.ya3{bottom:286.521600pt;}
.y176{bottom:290.240000pt;}
.y151{bottom:293.600000pt;}
.y18d{bottom:293.760000pt;}
.y109{bottom:296.800000pt;}
.y123{bottom:298.240000pt;}
.y57{bottom:298.924800pt;}
.y76{bottom:302.880000pt;}
.y37{bottom:304.960000pt;}
.y12{bottom:311.040000pt;}
.ya2{bottom:312.605440pt;}
.yd7{bottom:313.280000pt;}
.yf3{bottom:313.760000pt;}
.y175{bottom:317.760000pt;}
.y150{bottom:321.280000pt;}
.y18c{bottom:321.440000pt;}
.y56{bottom:324.199040pt;}
.y108{bottom:324.320000pt;}
.y122{bottom:325.760000pt;}
.y75{bottom:330.400000pt;}
.y36{bottom:332.640000pt;}
.y11{bottom:338.560000pt;}
.ya1{bottom:338.851200pt;}
.yd6{bottom:340.800000pt;}
.yf2{bottom:341.280000pt;}
.y174{bottom:345.440000pt;}
.y14f{bottom:348.800000pt;}
.y18b{bottom:348.960000pt;}
.y107{bottom:352.000000pt;}
.y121{bottom:353.440000pt;}
.y55{bottom:356.038400pt;}
.y74{bottom:358.080000pt;}
.y35{bottom:360.160000pt;}
.ya0{bottom:365.096960pt;}
.y10{bottom:366.240000pt;}
.yd5{bottom:368.480000pt;}
.yf1{bottom:368.960000pt;}
.y173{bottom:372.960000pt;}
.y14e{bottom:376.480000pt;}
.y18a{bottom:376.640000pt;}
.y106{bottom:379.520000pt;}
.y120{bottom:380.960000pt;}
.y9f{bottom:383.335040pt;}
.y73{bottom:385.600000pt;}
.y34{bottom:387.840000pt;}
.y54{bottom:388.039680pt;}
.yd4{bottom:396.000000pt;}
.yf0{bottom:396.480000pt;}
.y172{bottom:400.640000pt;}
.y9e{bottom:401.411200pt;}
.y14d{bottom:404.000000pt;}
.y159{bottom:406.240000pt;}
.y105{bottom:407.200000pt;}
.y11f{bottom:408.640000pt;}
.y189{bottom:412.160000pt;}
.y72{bottom:413.280000pt;}
.y53{bottom:413.313920pt;}
.y33{bottom:415.360000pt;}
.yd3{bottom:423.680000pt;}
.yef{bottom:424.160000pt;}
.y9d{bottom:427.656960pt;}
.y171{bottom:428.160000pt;}
.y14c{bottom:431.680000pt;}
.y158{bottom:433.760000pt;}
.y104{bottom:434.720000pt;}
.y11e{bottom:436.160000pt;}
.y188{bottom:439.840000pt;}
.y71{bottom:440.800000pt;}
.y32{bottom:443.040000pt;}
.y52{bottom:445.315200pt;}
.y9c{bottom:445.895040pt;}
.yd2{bottom:451.200000pt;}
.yee{bottom:451.680000pt;}
.y170{bottom:455.840000pt;}
.y14b{bottom:459.200000pt;}
.y13a{bottom:461.440000pt;}
.y103{bottom:462.400000pt;}
.y11d{bottom:463.840000pt;}
.y9b{bottom:464.133120pt;}
.y187{bottom:467.360000pt;}
.y70{bottom:468.480000pt;}
.y31{bottom:470.560000pt;}
.y51{bottom:477.316480pt;}
.yd1{bottom:478.880000pt;}
.yed{bottom:479.360000pt;}
.y16f{bottom:483.360000pt;}
.y14a{bottom:486.880000pt;}
.y139{bottom:488.960000pt;}
.y102{bottom:489.920000pt;}
.y9a{bottom:490.216960pt;}
.y11c{bottom:491.360000pt;}
.y6f{bottom:496.000000pt;}
.y30{bottom:498.240000pt;}
.y50{bottom:502.590720pt;}
.y186{bottom:503.040000pt;}
.yd0{bottom:506.400000pt;}
.yec{bottom:506.880000pt;}
.y99{bottom:508.455040pt;}
.y16e{bottom:511.040000pt;}
.y149{bottom:514.400000pt;}
.y138{bottom:516.640000pt;}
.y101{bottom:517.600000pt;}
.y11b{bottom:519.040000pt;}
.y6e{bottom:523.680000pt;}
.y2f{bottom:525.760000pt;}
.y98{bottom:526.693120pt;}
.y131{bottom:528.160000pt;}
.ybf{bottom:528.270080pt;}
.y185{bottom:530.560000pt;}
.ycf{bottom:534.080000pt;}
.yeb{bottom:534.400000pt;}
.y4f{bottom:534.592000pt;}
.y16d{bottom:538.560000pt;}
.y148{bottom:542.080000pt;}
.y137{bottom:544.160000pt;}
.y100{bottom:545.120000pt;}
.y11a{bottom:546.560000pt;}
.y6d{bottom:551.200000pt;}
.y97{bottom:552.938880pt;}
.y2e{bottom:553.440000pt;}
.ybe{bottom:554.515840pt;}
.y184{bottom:558.240000pt;}
.y4e{bottom:559.866240pt;}
.yce{bottom:561.600000pt;}
.yea{bottom:562.080000pt;}
.y16c{bottom:566.240000pt;}
.y147{bottom:569.600000pt;}
.y130{bottom:571.840000pt;}
.yff{bottom:572.800000pt;}
.y119{bottom:574.240000pt;}
.y6c{bottom:578.880000pt;}
.y96{bottom:579.022720pt;}
.ybd{bottom:580.599680pt;}
.y2d{bottom:580.960000pt;}
.y19c{bottom:583.360000pt;}
.y183{bottom:585.760000pt;}
.ycd{bottom:589.280000pt;}
.ye9{bottom:589.600000pt;}
.y4d{bottom:591.867520pt;}
.y16b{bottom:593.760000pt;}
.y146{bottom:597.280000pt;}
.ybc{bottom:598.837760pt;}
.y12f{bottom:599.360000pt;}
.yfe{bottom:600.320000pt;}
.y118{bottom:601.760000pt;}
.y95{bottom:605.268480pt;}
.y6b{bottom:606.400000pt;}
.y2c{bottom:608.640000pt;}
.y4{bottom:609.920000pt;}
.ye{bottom:610.686240pt;}
.y182{bottom:613.440000pt;}
.y180{bottom:616.320000pt;}
.ycc{bottom:616.800000pt;}
.ybb{bottom:617.075840pt;}
.y4c{bottom:617.141760pt;}
.ye8{bottom:617.280000pt;}
.y16a{bottom:621.440000pt;}
.y94{bottom:623.506560pt;}
.y145{bottom:624.800000pt;}
.y12e{bottom:627.040000pt;}
.yfd{bottom:628.000000pt;}
.y117{bottom:629.440000pt;}
.y6a{bottom:634.080000pt;}
.y2b{bottom:636.160000pt;}
.y181{bottom:640.960000pt;}
.yba{bottom:643.321600pt;}
.yd{bottom:643.333920pt;}
.y17f{bottom:644.000000pt;}
.ycb{bottom:644.480000pt;}
.ye7{bottom:644.800000pt;}
.y169{bottom:648.960000pt;}
.y4b{bottom:649.143040pt;}
.y93{bottom:649.752320pt;}
.y144{bottom:652.480000pt;}
.y12d{bottom:654.560000pt;}
.yfc{bottom:655.520000pt;}
.y116{bottom:656.960000pt;}
.yb9{bottom:661.397760pt;}
.y69{bottom:661.600000pt;}
.y2a{bottom:663.840000pt;}
.y92{bottom:667.828480pt;}
.yc{bottom:668.137920pt;}
.y17e{bottom:671.520000pt;}
.yca{bottom:672.000000pt;}
.ye6{bottom:672.480000pt;}
.y4a{bottom:674.417280pt;}
.y168{bottom:676.640000pt;}
.y143{bottom:680.000000pt;}
.y12c{bottom:682.240000pt;}
.yfb{bottom:683.200000pt;}
.y115{bottom:684.640000pt;}
.y91{bottom:686.066560pt;}
.yb8{bottom:687.643520pt;}
.y68{bottom:689.120000pt;}
.y29{bottom:691.360000pt;}
.yb{bottom:692.773440pt;}
.y17d{bottom:699.200000pt;}
.yc9{bottom:699.520000pt;}
.ye5{bottom:700.000000pt;}
.y167{bottom:704.160000pt;}
.y49{bottom:706.256640pt;}
.y142{bottom:707.520000pt;}
.y12b{bottom:709.760000pt;}
.yfa{bottom:710.720000pt;}
.y114{bottom:712.160000pt;}
.y90{bottom:712.312320pt;}
.yb7{bottom:713.889280pt;}
.y67{bottom:716.800000pt;}
.ya{bottom:717.408960pt;}
.y28{bottom:719.040000pt;}
.y17c{bottom:726.720000pt;}
.yc8{bottom:727.200000pt;}
.ye4{bottom:727.680000pt;}
.y48{bottom:731.692800pt;}
.y166{bottom:731.840000pt;}
.y141{bottom:735.200000pt;}
.y86{bottom:737.440000pt;}
.y15d{bottom:738.400000pt;}
.y8f{bottom:738.558080pt;}
.y113{bottom:739.840000pt;}
.yb6{bottom:740.135040pt;}
.y66{bottom:744.320000pt;}
.y27{bottom:746.560000pt;}
.yf9{bottom:748.960000pt;}
.y9{bottom:750.056640pt;}
.y17b{bottom:754.400000pt;}
.yc7{bottom:754.720000pt;}
.yb5{bottom:758.211200pt;}
.y165{bottom:759.360000pt;}
.y140{bottom:762.720000pt;}
.y47{bottom:763.532160pt;}
.y8e{bottom:764.641920pt;}
.y85{bottom:764.960000pt;}
.ye3{bottom:765.920000pt;}
.y112{bottom:767.360000pt;}
.y65{bottom:772.000000pt;}
.y26{bottom:774.240000pt;}
.y8{bottom:774.860640pt;}
.y17a{bottom:781.920000pt;}
.yc6{bottom:782.400000pt;}
.y8d{bottom:782.880000pt;}
.yb4{bottom:784.456960pt;}
.y164{bottom:787.040000pt;}
.y46{bottom:788.806400pt;}
.y13f{bottom:790.400000pt;}
.y84{bottom:792.640000pt;}
.y15c{bottom:793.600000pt;}
.y111{bottom:795.040000pt;}
.y64{bottom:799.520000pt;}
.y8c{bottom:801.118080pt;}
.y25{bottom:801.760000pt;}
.yb3{bottom:802.695040pt;}
.y7{bottom:807.508320pt;}
.ye2{bottom:809.600000pt;}
.yc5{bottom:809.920000pt;}
.y163{bottom:814.560000pt;}
.y13e{bottom:817.920000pt;}
.y83{bottom:820.160000pt;}
.y45{bottom:820.807680pt;}
.y15b{bottom:821.120000pt;}
.y110{bottom:822.560000pt;}
.y63{bottom:827.200000pt;}
.y8b{bottom:827.363840pt;}
.yb2{bottom:828.940800pt;}
.y24{bottom:829.440000pt;}
.y198{bottom:831.840000pt;}
.ye1{bottom:837.120000pt;}
.yc4{bottom:837.600000pt;}
.y6{bottom:840.156000pt;}
.y162{bottom:842.240000pt;}
.y8a{bottom:845.440000pt;}
.y13d{bottom:845.600000pt;}
.y44{bottom:846.081920pt;}
.yb1{bottom:847.016960pt;}
.y82{bottom:847.840000pt;}
.y196{bottom:848.640000pt;}
.y10f{bottom:850.240000pt;}
.y62{bottom:854.720000pt;}
.y23{bottom:856.960000pt;}
.y15a{bottom:859.360000pt;}
.ye0{bottom:864.640000pt;}
.y5{bottom:864.960000pt;}
.yc3{bottom:865.120000pt;}
.y161{bottom:869.760000pt;}
.y89{bottom:871.685760pt;}
.y13c{bottom:873.120000pt;}
.yb0{bottom:873.262720pt;}
.y81{bottom:875.360000pt;}
.y195{bottom:876.320000pt;}
.y10e{bottom:877.760000pt;}
.y43{bottom:878.083200pt;}
.y61{bottom:882.400000pt;}
.y22{bottom:884.640000pt;}
.ydf{bottom:892.320000pt;}
.yc2{bottom:892.800000pt;}
.y160{bottom:897.440000pt;}
.yaf{bottom:899.508480pt;}
.y88{bottom:900.640000pt;}
.y13b{bottom:900.800000pt;}
.y80{bottom:903.040000pt;}
.y42{bottom:903.357440pt;}
.y10d{bottom:905.440000pt;}
.y60{bottom:909.920000pt;}
.y21{bottom:914.247360pt;}
.y194{bottom:914.560000pt;}
.yae{bottom:917.746560pt;}
.yde{bottom:919.840000pt;}
.y15f{bottom:924.960000pt;}
.y87{bottom:929.432960pt;}
.y7f{bottom:930.560000pt;}
.y10c{bottom:932.960000pt;}
.y41{bottom:935.358720pt;}
.y5f{bottom:937.600000pt;}
.yc1{bottom:938.408320pt;}
.yad{bottom:943.830400pt;}
.y19f{bottom:946.389600pt;}
.y20{bottom:946.408320pt;}
.ydd{bottom:947.520000pt;}
.y7e{bottom:958.240000pt;}
.yac{bottom:962.068480pt;}
.y5e{bottom:965.120000pt;}
.y40{bottom:967.360000pt;}
.y15e{bottom:970.550560pt;}
.yc0{bottom:970.569280pt;}
.ydc{bottom:975.040000pt;}
.y19e{bottom:978.550560pt;}
.y1f{bottom:978.569280pt;}
.y7d{bottom:985.760000pt;}
.yab{bottom:988.314240pt;}
.y3f{bottom:1002.880000pt;}
.y1e{bottom:1010.880000pt;}
.y3{bottom:1013.440000pt;}
.yaa{bottom:1014.560000pt;}
.y1{bottom:1060.640000pt;}
.h8{height:39.905000pt;}
.ha{height:40.882500pt;}
.h3{height:43.375000pt;}
.hc{height:44.437500pt;}
.h7{height:49.105000pt;}
.h9{height:49.133160pt;}
.hb{height:49.297000pt;}
.h4{height:50.748750pt;}
.h2{height:53.375000pt;}
.h5{height:62.448750pt;}
.h6{height:867.040000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:745.920000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x5{left:23.680000pt;}
.x2{left:94.400000pt;}
.xf{left:113.280000pt;}
.x11{left:141.600000pt;}
.x8{left:158.415200pt;}
.x9{left:171.219680pt;}
.x7{left:232.640000pt;}
.xe{left:236.153600pt;}
.x3{left:304.800000pt;}
.xa{left:331.256960pt;}
.xb{left:337.760000pt;}
.x4{left:352.800000pt;}
.xc{left:396.640000pt;}
.x6{left:503.680000pt;}
.x10{left:682.720000pt;}
.xd{left:690.720000pt;}
.x1{left:698.720000pt;}
}




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