
    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_97d2eb0799d351e39013ce80.woff')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_ec0aa1989ee0ef5107c9c9e0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.982910;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_e3a0d2d5901d6b0d8d039f4b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.982910;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;}
.ls8{letter-spacing:-0.768000px;}
.ls9{letter-spacing:-0.720000px;}
.ls2{letter-spacing:-0.630000px;}
.lsc{letter-spacing:-0.486600px;}
.ls4{letter-spacing:-0.348600px;}
.ls6{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.132600px;}
.ls5{letter-spacing:-0.048960px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.089280px;}
.ls7{letter-spacing:0.150000px;}
.lsb{letter-spacing:0.181200px;}
.lsa{letter-spacing:0.256200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-15.226440px;}
.ws6{word-spacing:-15.151440px;}
.ws2{word-spacing:-14.970240px;}
.ws3{word-spacing:-14.921280px;}
.ws4{word-spacing:-14.754240px;}
.ws0{word-spacing:-14.340240px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.788480px;}
._1{width:1.897440px;}
._5{width:3.036000px;}
._6{width:4.271040px;}
._7{width:5.564160px;}
._4{width:7.153920px;}
._b{width:9.016320px;}
._9{width:10.267200px;}
._a{width:11.393280px;}
._8{width:12.625920px;}
._3{width:13.658400px;}
._c{width:16.379040px;}
._d{width:18.017280px;}
._e{width:19.143360px;}
._15{width:20.269440px;}
._19{width:21.329280px;}
._1a{width:22.444800px;}
._10{width:23.581440px;}
._11{width:24.719520px;}
._14{width:26.893440px;}
._f{width:28.019520px;}
._13{width:29.145600px;}
._12{width:33.120000px;}
._18{width:34.511040px;}
._17{width:35.902080px;}
._16{width:40.273920px;}
._2{width:197.405760px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.yc1{bottom:116.136000px;}
.yd4{bottom:116.316000px;}
.y50{bottom:131.256000px;}
.yea{bottom:133.776000px;}
.yc0{bottom:139.536000px;}
.y9b{bottom:140.796000px;}
.y77{bottom:147.456000px;}
.y84{bottom:154.290000px;}
.y4f{bottom:154.470000px;}
.yd3{bottom:162.570000px;}
.y26{bottom:163.830000px;}
.y9a{bottom:164.010000px;}
.y76{bottom:170.850000px;}
.ye9{bottom:171.930000px;}
.ybf{bottom:177.510000px;}
.y4e{bottom:177.690000px;}
.yd2{bottom:185.790000px;}
.y25{bottom:187.050000px;}
.y75{bottom:193.890000px;}
.y4d{bottom:200.730000px;}
.yd1{bottom:209.010000px;}
.ye8{bottom:210.090000px;}
.y24{bottom:210.270000px;}
.ybe{bottom:215.670000px;}
.y74{bottom:217.110000px;}
.y4c{bottom:223.950000px;}
.yd0{bottom:232.050000px;}
.y23{bottom:233.490000px;}
.ybd{bottom:238.890000px;}
.y73{bottom:240.330000px;}
.y4b{bottom:247.170000px;}
.ycf{bottom:255.270000px;}
.y22{bottom:256.530000px;}
.ybc{bottom:262.110000px;}
.y72{bottom:263.370000px;}
.y4a{bottom:270.210000px;}
.y21{bottom:279.795000px;}
.ybb{bottom:285.375000px;}
.yce{bottom:293.295000px;}
.yae{bottom:293.475000px;}
.y71{bottom:301.395000px;}
.y20{bottom:303.015000px;}
.y49{bottom:308.235000px;}
.yba{bottom:308.415000px;}
.yad{bottom:316.695000px;}
.ye7{bottom:317.775000px;}
.y70{bottom:324.795000px;}
.y99{bottom:326.055000px;}
.y48{bottom:331.635000px;}
.yac{bottom:339.735000px;}
.y1f{bottom:340.995000px;}
.ye6{bottom:341.175000px;}
.y6f{bottom:348.015000px;}
.y98{bottom:349.275000px;}
.y47{bottom:354.855000px;}
.yab{bottom:362.955000px;}
.y1e{bottom:364.215000px;}
.y6e{bottom:371.055000px;}
.y46{bottom:377.895000px;}
.yaa{bottom:386.175000px;}
.y97{bottom:387.255000px;}
.y1d{bottom:387.435000px;}
.y6d{bottom:394.275000px;}
.y45{bottom:401.115000px;}
.ya9{bottom:409.215000px;}
.y1c{bottom:410.655000px;}
.yb9{bottom:415.875000px;}
.y6c{bottom:417.495000px;}
.y44{bottom:424.335000px;}
.ycd{bottom:432.435000px;}
.y1b{bottom:433.875000px;}
.yb8{bottom:439.275000px;}
.y6b{bottom:440.535000px;}
.ya8{bottom:447.195000px;}
.y43{bottom:447.375000px;}
.ycc{bottom:455.655000px;}
.y1a{bottom:456.915000px;}
.yb7{bottom:462.495000px;}
.y6a{bottom:463.755000px;}
.y42{bottom:470.595000px;}
.ye5{bottom:471.855000px;}
.ycb{bottom:478.875000px;}
.y96{bottom:480.135000px;}
.yb6{bottom:485.535000px;}
.y83{bottom:493.815000px;}
.y19{bottom:494.895000px;}
.y69{bottom:501.735000px;}
.yca{bottom:501.915000px;}
.y95{bottom:503.355000px;}
.y41{bottom:508.575000px;}
.yb5{bottom:508.755000px;}
.ye4{bottom:510.015000px;}
.ya7{bottom:517.035000px;}
.y18{bottom:518.295000px;}
.yf8{bottom:519.375000px;}
.y68{bottom:525.135000px;}
.y94{bottom:526.395000px;}
.y82{bottom:531.795000px;}
.y40{bottom:531.975000px;}
.ye3{bottom:533.235000px;}
.ya6{bottom:540.075000px;}
.y17{bottom:541.515000px;}
.yf7{bottom:542.775000px;}
.y67{bottom:548.355000px;}
.y93{bottom:549.615000px;}
.y3f{bottom:555.195000px;}
.ye2{bottom:556.485000px;}
.ya5{bottom:563.325000px;}
.y16{bottom:564.585000px;}
.yb4{bottom:569.985000px;}
.y66{bottom:571.425000px;}
.y92{bottom:572.865000px;}
.y3e{bottom:578.265000px;}
.ye1{bottom:579.705000px;}
.yf6{bottom:580.785000px;}
.ya4{bottom:586.545000px;}
.y15{bottom:587.805000px;}
.yb3{bottom:593.385000px;}
.y65{bottom:594.645000px;}
.y91{bottom:595.905000px;}
.y81{bottom:601.485000px;}
.ye0{bottom:602.745000px;}
.ya3{bottom:609.585000px;}
.y14{bottom:611.025000px;}
.y3d{bottom:616.245000px;}
.yb2{bottom:616.425000px;}
.y64{bottom:617.865000px;}
.yf5{bottom:618.945000px;}
.y90{bottom:619.125000px;}
.y80{bottom:624.705000px;}
.ydf{bottom:625.965000px;}
.ya2{bottom:632.805000px;}
.y13{bottom:634.065000px;}
.y3c{bottom:639.645000px;}
.y63{bottom:640.905000px;}
.y8f{bottom:642.345000px;}
.y7f{bottom:647.745000px;}
.ya1{bottom:656.025000px;}
.yf4{bottom:657.105000px;}
.y12{bottom:657.285000px;}
.y3b{bottom:662.865000px;}
.yde{bottom:663.945000px;}
.yc9{bottom:664.125000px;}
.y8e{bottom:665.385000px;}
.y7e{bottom:670.965000px;}
.y62{bottom:678.885000px;}
.ya0{bottom:679.065000px;}
.y11{bottom:680.505000px;}
.y3a{bottom:685.905000px;}
.yc8{bottom:687.345000px;}
.yf3{bottom:695.265000px;}
.y61{bottom:702.285000px;}
.y8d{bottom:703.365000px;}
.y10{bottom:703.545000px;}
.y7d{bottom:708.945000px;}
.y39{bottom:709.125000px;}
.ydd{bottom:710.385000px;}
.yc7{bottom:725.325000px;}
.y60{bottom:725.505000px;}
.yf{bottom:726.765000px;}
.y38{bottom:732.345000px;}
.yf2{bottom:733.425000px;}
.ydc{bottom:733.605000px;}
.y9f{bottom:740.265000px;}
.y5f{bottom:748.545000px;}
.y8c{bottom:749.985000px;}
.y37{bottom:755.385000px;}
.ydb{bottom:756.825000px;}
.y9e{bottom:763.665000px;}
.ye{bottom:764.745000px;}
.y5e{bottom:771.765000px;}
.y7c{bottom:778.605000px;}
.yda{bottom:779.865000px;}
.y9d{bottom:786.705000px;}
.y8b{bottom:787.965000px;}
.yd{bottom:788.145000px;}
.y36{bottom:793.365000px;}
.yf1{bottom:794.805000px;}
.yc6{bottom:794.985000px;}
.y7b{bottom:801.825000px;}
.yd9{bottom:803.085000px;}
.y5d{bottom:809.745000px;}
.y9c{bottom:809.925000px;}
.yc{bottom:811.185000px;}
.y35{bottom:816.765000px;}
.yf0{bottom:818.025000px;}
.y7a{bottom:824.865000px;}
.yd8{bottom:826.305000px;}
.yc5{bottom:832.965000px;}
.y5c{bottom:833.145000px;}
.yb{bottom:834.405000px;}
.y34{bottom:840.030000px;}
.yef{bottom:841.290000px;}
.y79{bottom:848.130000px;}
.y5b{bottom:856.230000px;}
.ya{bottom:857.670000px;}
.y33{bottom:863.070000px;}
.yd7{bottom:864.330000px;}
.yee{bottom:864.510000px;}
.yb1{bottom:871.350000px;}
.y8a{bottom:872.430000px;}
.y5a{bottom:879.450000px;}
.y9{bottom:880.710000px;}
.y78{bottom:886.110000px;}
.y32{bottom:886.290000px;}
.yd6{bottom:887.550000px;}
.yb0{bottom:894.390000px;}
.y59{bottom:902.670000px;}
.y8{bottom:903.930000px;}
.y31{bottom:909.510000px;}
.y89{bottom:910.590000px;}
.yd5{bottom:910.770000px;}
.yed{bottom:925.530000px;}
.yc4{bottom:925.710000px;}
.y7{bottom:927.150000px;}
.yaf{bottom:932.370000px;}
.y30{bottom:932.550000px;}
.y88{bottom:933.990000px;}
.y58{bottom:940.650000px;}
.yec{bottom:948.930000px;}
.y6{bottom:950.370000px;}
.y2f{bottom:955.770000px;}
.yc3{bottom:963.690000px;}
.y57{bottom:963.870000px;}
.y87{bottom:971.970000px;}
.yeb{bottom:972.150000px;}
.y2e{bottom:978.990000px;}
.y56{bottom:987.090000px;}
.y5{bottom:988.350000px;}
.y86{bottom:995.370000px;}
.y2d{bottom:1002.030000px;}
.y55{bottom:1010.310000px;}
.y2c{bottom:1025.250000px;}
.y4{bottom:1026.510000px;}
.y85{bottom:1033.350000px;}
.y54{bottom:1033.530000px;}
.y2b{bottom:1048.470000px;}
.y53{bottom:1056.570000px;}
.y3{bottom:1064.670000px;}
.y2a{bottom:1071.690000px;}
.y52{bottom:1079.790000px;}
.y29{bottom:1094.730000px;}
.y2{bottom:1102.830000px;}
.yc2{bottom:1103.010000px;}
.y51{bottom:1117.770000px;}
.y28{bottom:1117.950000px;}
.y1{bottom:1141.020000px;}
.y27{bottom:1141.200000px;}
.h2{height:50.520937px;}
.h3{height:53.302500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.656000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.682667pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:-0.560000pt;}
.lsc{letter-spacing:-0.432533pt;}
.ls4{letter-spacing:-0.309867pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.117867pt;}
.ls5{letter-spacing:-0.043520pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.079360pt;}
.ls7{letter-spacing:0.133333pt;}
.lsb{letter-spacing:0.161067pt;}
.lsa{letter-spacing:0.227733pt;}
.ws5{word-spacing:-13.534613pt;}
.ws6{word-spacing:-13.467947pt;}
.ws2{word-spacing:-13.306880pt;}
.ws3{word-spacing:-13.263360pt;}
.ws4{word-spacing:-13.114880pt;}
.ws0{word-spacing:-12.746880pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-1.589760pt;}
._1{width:1.686613pt;}
._5{width:2.698667pt;}
._6{width:3.796480pt;}
._7{width:4.945920pt;}
._4{width:6.359040pt;}
._b{width:8.014507pt;}
._9{width:9.126400pt;}
._a{width:10.127360pt;}
._8{width:11.223040pt;}
._3{width:12.140800pt;}
._c{width:14.559147pt;}
._d{width:16.015360pt;}
._e{width:17.016320pt;}
._15{width:18.017280pt;}
._19{width:18.959360pt;}
._1a{width:19.950933pt;}
._10{width:20.961280pt;}
._11{width:21.972907pt;}
._14{width:23.905280pt;}
._f{width:24.906240pt;}
._13{width:25.907200pt;}
._12{width:29.440000pt;}
._18{width:30.676480pt;}
._17{width:31.912960pt;}
._16{width:35.799040pt;}
._2{width:175.471787pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.yc1{bottom:103.232000pt;}
.yd4{bottom:103.392000pt;}
.y50{bottom:116.672000pt;}
.yea{bottom:118.912000pt;}
.yc0{bottom:124.032000pt;}
.y9b{bottom:125.152000pt;}
.y77{bottom:131.072000pt;}
.y84{bottom:137.146667pt;}
.y4f{bottom:137.306667pt;}
.yd3{bottom:144.506667pt;}
.y26{bottom:145.626667pt;}
.y9a{bottom:145.786667pt;}
.y76{bottom:151.866667pt;}
.ye9{bottom:152.826667pt;}
.ybf{bottom:157.786667pt;}
.y4e{bottom:157.946667pt;}
.yd2{bottom:165.146667pt;}
.y25{bottom:166.266667pt;}
.y75{bottom:172.346667pt;}
.y4d{bottom:178.426667pt;}
.yd1{bottom:185.786667pt;}
.ye8{bottom:186.746667pt;}
.y24{bottom:186.906667pt;}
.ybe{bottom:191.706667pt;}
.y74{bottom:192.986667pt;}
.y4c{bottom:199.066667pt;}
.yd0{bottom:206.266667pt;}
.y23{bottom:207.546667pt;}
.ybd{bottom:212.346667pt;}
.y73{bottom:213.626667pt;}
.y4b{bottom:219.706667pt;}
.ycf{bottom:226.906667pt;}
.y22{bottom:228.026667pt;}
.ybc{bottom:232.986667pt;}
.y72{bottom:234.106667pt;}
.y4a{bottom:240.186667pt;}
.y21{bottom:248.706667pt;}
.ybb{bottom:253.666667pt;}
.yce{bottom:260.706667pt;}
.yae{bottom:260.866667pt;}
.y71{bottom:267.906667pt;}
.y20{bottom:269.346667pt;}
.y49{bottom:273.986667pt;}
.yba{bottom:274.146667pt;}
.yad{bottom:281.506667pt;}
.ye7{bottom:282.466667pt;}
.y70{bottom:288.706667pt;}
.y99{bottom:289.826667pt;}
.y48{bottom:294.786667pt;}
.yac{bottom:301.986667pt;}
.y1f{bottom:303.106667pt;}
.ye6{bottom:303.266667pt;}
.y6f{bottom:309.346667pt;}
.y98{bottom:310.466667pt;}
.y47{bottom:315.426667pt;}
.yab{bottom:322.626667pt;}
.y1e{bottom:323.746667pt;}
.y6e{bottom:329.826667pt;}
.y46{bottom:335.906667pt;}
.yaa{bottom:343.266667pt;}
.y97{bottom:344.226667pt;}
.y1d{bottom:344.386667pt;}
.y6d{bottom:350.466667pt;}
.y45{bottom:356.546667pt;}
.ya9{bottom:363.746667pt;}
.y1c{bottom:365.026667pt;}
.yb9{bottom:369.666667pt;}
.y6c{bottom:371.106667pt;}
.y44{bottom:377.186667pt;}
.ycd{bottom:384.386667pt;}
.y1b{bottom:385.666667pt;}
.yb8{bottom:390.466667pt;}
.y6b{bottom:391.586667pt;}
.ya8{bottom:397.506667pt;}
.y43{bottom:397.666667pt;}
.ycc{bottom:405.026667pt;}
.y1a{bottom:406.146667pt;}
.yb7{bottom:411.106667pt;}
.y6a{bottom:412.226667pt;}
.y42{bottom:418.306667pt;}
.ye5{bottom:419.426667pt;}
.ycb{bottom:425.666667pt;}
.y96{bottom:426.786667pt;}
.yb6{bottom:431.586667pt;}
.y83{bottom:438.946667pt;}
.y19{bottom:439.906667pt;}
.y69{bottom:445.986667pt;}
.yca{bottom:446.146667pt;}
.y95{bottom:447.426667pt;}
.y41{bottom:452.066667pt;}
.yb5{bottom:452.226667pt;}
.ye4{bottom:453.346667pt;}
.ya7{bottom:459.586667pt;}
.y18{bottom:460.706667pt;}
.yf8{bottom:461.666667pt;}
.y68{bottom:466.786667pt;}
.y94{bottom:467.906667pt;}
.y82{bottom:472.706667pt;}
.y40{bottom:472.866667pt;}
.ye3{bottom:473.986667pt;}
.ya6{bottom:480.066667pt;}
.y17{bottom:481.346667pt;}
.yf7{bottom:482.466667pt;}
.y67{bottom:487.426667pt;}
.y93{bottom:488.546667pt;}
.y3f{bottom:493.506667pt;}
.ye2{bottom:494.653333pt;}
.ya5{bottom:500.733333pt;}
.y16{bottom:501.853333pt;}
.yb4{bottom:506.653333pt;}
.y66{bottom:507.933333pt;}
.y92{bottom:509.213333pt;}
.y3e{bottom:514.013333pt;}
.ye1{bottom:515.293333pt;}
.yf6{bottom:516.253333pt;}
.ya4{bottom:521.373333pt;}
.y15{bottom:522.493333pt;}
.yb3{bottom:527.453333pt;}
.y65{bottom:528.573333pt;}
.y91{bottom:529.693333pt;}
.y81{bottom:534.653333pt;}
.ye0{bottom:535.773333pt;}
.ya3{bottom:541.853333pt;}
.y14{bottom:543.133333pt;}
.y3d{bottom:547.773333pt;}
.yb2{bottom:547.933333pt;}
.y64{bottom:549.213333pt;}
.yf5{bottom:550.173333pt;}
.y90{bottom:550.333333pt;}
.y80{bottom:555.293333pt;}
.ydf{bottom:556.413333pt;}
.ya2{bottom:562.493333pt;}
.y13{bottom:563.613333pt;}
.y3c{bottom:568.573333pt;}
.y63{bottom:569.693333pt;}
.y8f{bottom:570.973333pt;}
.y7f{bottom:575.773333pt;}
.ya1{bottom:583.133333pt;}
.yf4{bottom:584.093333pt;}
.y12{bottom:584.253333pt;}
.y3b{bottom:589.213333pt;}
.yde{bottom:590.173333pt;}
.yc9{bottom:590.333333pt;}
.y8e{bottom:591.453333pt;}
.y7e{bottom:596.413333pt;}
.y62{bottom:603.453333pt;}
.ya0{bottom:603.613333pt;}
.y11{bottom:604.893333pt;}
.y3a{bottom:609.693333pt;}
.yc8{bottom:610.973333pt;}
.yf3{bottom:618.013333pt;}
.y61{bottom:624.253333pt;}
.y8d{bottom:625.213333pt;}
.y10{bottom:625.373333pt;}
.y7d{bottom:630.173333pt;}
.y39{bottom:630.333333pt;}
.ydd{bottom:631.453333pt;}
.yc7{bottom:644.733333pt;}
.y60{bottom:644.893333pt;}
.yf{bottom:646.013333pt;}
.y38{bottom:650.973333pt;}
.yf2{bottom:651.933333pt;}
.ydc{bottom:652.093333pt;}
.y9f{bottom:658.013333pt;}
.y5f{bottom:665.373333pt;}
.y8c{bottom:666.653333pt;}
.y37{bottom:671.453333pt;}
.ydb{bottom:672.733333pt;}
.y9e{bottom:678.813333pt;}
.ye{bottom:679.773333pt;}
.y5e{bottom:686.013333pt;}
.y7c{bottom:692.093333pt;}
.yda{bottom:693.213333pt;}
.y9d{bottom:699.293333pt;}
.y8b{bottom:700.413333pt;}
.yd{bottom:700.573333pt;}
.y36{bottom:705.213333pt;}
.yf1{bottom:706.493333pt;}
.yc6{bottom:706.653333pt;}
.y7b{bottom:712.733333pt;}
.yd9{bottom:713.853333pt;}
.y5d{bottom:719.773333pt;}
.y9c{bottom:719.933333pt;}
.yc{bottom:721.053333pt;}
.y35{bottom:726.013333pt;}
.yf0{bottom:727.133333pt;}
.y7a{bottom:733.213333pt;}
.yd8{bottom:734.493333pt;}
.yc5{bottom:740.413333pt;}
.y5c{bottom:740.573333pt;}
.yb{bottom:741.693333pt;}
.y34{bottom:746.693333pt;}
.yef{bottom:747.813333pt;}
.y79{bottom:753.893333pt;}
.y5b{bottom:761.093333pt;}
.ya{bottom:762.373333pt;}
.y33{bottom:767.173333pt;}
.yd7{bottom:768.293333pt;}
.yee{bottom:768.453333pt;}
.yb1{bottom:774.533333pt;}
.y8a{bottom:775.493333pt;}
.y5a{bottom:781.733333pt;}
.y9{bottom:782.853333pt;}
.y78{bottom:787.653333pt;}
.y32{bottom:787.813333pt;}
.yd6{bottom:788.933333pt;}
.yb0{bottom:795.013333pt;}
.y59{bottom:802.373333pt;}
.y8{bottom:803.493333pt;}
.y31{bottom:808.453333pt;}
.y89{bottom:809.413333pt;}
.yd5{bottom:809.573333pt;}
.yed{bottom:822.693333pt;}
.yc4{bottom:822.853333pt;}
.y7{bottom:824.133333pt;}
.yaf{bottom:828.773333pt;}
.y30{bottom:828.933333pt;}
.y88{bottom:830.213333pt;}
.y58{bottom:836.133333pt;}
.yec{bottom:843.493333pt;}
.y6{bottom:844.773333pt;}
.y2f{bottom:849.573333pt;}
.yc3{bottom:856.613333pt;}
.y57{bottom:856.773333pt;}
.y87{bottom:863.973333pt;}
.yeb{bottom:864.133333pt;}
.y2e{bottom:870.213333pt;}
.y56{bottom:877.413333pt;}
.y5{bottom:878.533333pt;}
.y86{bottom:884.773333pt;}
.y2d{bottom:890.693333pt;}
.y55{bottom:898.053333pt;}
.y2c{bottom:911.333333pt;}
.y4{bottom:912.453333pt;}
.y85{bottom:918.533333pt;}
.y54{bottom:918.693333pt;}
.y2b{bottom:931.973333pt;}
.y53{bottom:939.173333pt;}
.y3{bottom:946.373333pt;}
.y2a{bottom:952.613333pt;}
.y52{bottom:959.813333pt;}
.y29{bottom:973.093333pt;}
.y2{bottom:980.293333pt;}
.yc2{bottom:980.453333pt;}
.y51{bottom:993.573333pt;}
.y28{bottom:993.733333pt;}
.y1{bottom:1014.240000pt;}
.y27{bottom:1014.400000pt;}
.h2{height:44.907500pt;}
.h3{height:47.380000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.472000pt;}
}

