
    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_0a5cb2e09c06fb81a1b2bc0e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.822754;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_3ed018dfe0a5f1bf0aa1cca6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_d39397981be69cab13c9d89f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_fde45d5acddba21ee076628d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.883932px;}
.ls1{letter-spacing:1.395468px;}
.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:-38.766732px;}
.ws5{word-spacing:-31.578924px;}
.ws4{word-spacing:-30.183456px;}
.ws1f{word-spacing:-30.131772px;}
.ws3{word-spacing:-28.736304px;}
.ws0{word-spacing:-26.391684px;}
.ws1d{word-spacing:-22.740960px;}
.ws19{word-spacing:-22.689276px;}
.ws21{word-spacing:-22.637592px;}
.ws15{word-spacing:-22.379172px;}
.wsb{word-spacing:-22.172436px;}
.ws1e{word-spacing:-22.069068px;}
.ws16{word-spacing:-22.017384px;}
.ws9{word-spacing:-21.707280px;}
.wse{word-spacing:-21.655596px;}
.ws6{word-spacing:-21.448860px;}
.ws7{word-spacing:-21.190440px;}
.ws18{word-spacing:-20.363496px;}
.ws14{word-spacing:-19.950024px;}
.wsa{word-spacing:-19.846656px;}
.ws1c{word-spacing:-19.794972px;}
.ws13{word-spacing:-19.381500px;}
.ws1b{word-spacing:-19.278132px;}
.wsd{word-spacing:-18.761292px;}
.ws8{word-spacing:-17.830980px;}
.wsc{word-spacing:-17.624244px;}
.ws12{word-spacing:-17.159088px;}
.wsf{word-spacing:-16.073724px;}
.ws22{word-spacing:-14.833308px;}
.ws20{word-spacing:-14.006364px;}
.ws10{word-spacing:-12.972684px;}
.ws17{word-spacing:-12.094056px;}
.ws11{word-spacing:-7.494180px;}
.ws2{word-spacing:-6.667236px;}
.ws1a{word-spacing:0.000000px;}
._b{margin-left:-230.760000px;}
._9{margin-left:-6.407688px;}
._7{margin-left:-4.302180px;}
._2{margin-left:-2.430840px;}
._0{margin-left:-1.136484px;}
._1{width:1.084800px;}
._3{width:2.379156px;}
._4{width:3.774060px;}
._5{width:5.013912px;}
._6{width:6.150960px;}
._8{width:7.340820px;}
._a{width:17.328804px;}
.fc2{color:rgb(180,180,180);}
.fc1{color:rgb(99,136,30);}
.fc0{color:rgb(30,100,0);}
.fs2{font-size:24.000000px;}
.fs1{font-size:51.684000px;}
.fs0{font-size:63.138000px;}
.y0{bottom:0.000000px;}
.ye9{bottom:7.500000px;}
.y66{bottom:10.215000px;}
.y65{bottom:25.288500px;}
.y94{bottom:25.293000px;}
.y64{bottom:40.362000px;}
.y93{bottom:55.440000px;}
.yb7{bottom:65.127000px;}
.y63{bottom:70.509000px;}
.y92{bottom:70.513500px;}
.y62{bottom:85.582500px;}
.y61{bottom:100.656000px;}
.y91{bottom:100.660500px;}
.y1{bottom:108.000000px;}
.y60{bottom:115.729500px;}
.y5f{bottom:130.803000px;}
.y90{bottom:130.807500px;}
.y8f{bottom:145.881000px;}
.yb1{bottom:159.870000px;}
.y5e{bottom:160.950000px;}
.ye8{bottom:160.959000px;}
.yb0{bottom:174.943500px;}
.y2e{bottom:176.014500px;}
.y5d{bottom:176.023500px;}
.y8e{bottom:176.028000px;}
.ye7{bottom:176.032500px;}
.y2d{bottom:191.088000px;}
.y5c{bottom:191.097000px;}
.y8d{bottom:191.101500px;}
.ye6{bottom:191.106000px;}
.y2c{bottom:206.161500px;}
.y8c{bottom:206.175000px;}
.ye5{bottom:206.179500px;}
.y2b{bottom:221.235000px;}
.y5b{bottom:221.244000px;}
.ye4{bottom:221.253000px;}
.yb5{bottom:228.781500px;}
.y2a{bottom:236.308500px;}
.y5a{bottom:236.317500px;}
.y8b{bottom:236.322000px;}
.ye3{bottom:241.711500px;}
.y59{bottom:251.391000px;}
.y8a{bottom:251.395500px;}
.ye2{bottom:256.785000px;}
.y29{bottom:266.455500px;}
.y58{bottom:266.464500px;}
.y89{bottom:266.469000px;}
.ye1{bottom:271.858500px;}
.y28{bottom:281.529000px;}
.y57{bottom:281.538000px;}
.y88{bottom:281.542500px;}
.ye0{bottom:286.932000px;}
.y27{bottom:296.602500px;}
.y56{bottom:296.611500px;}
.ydf{bottom:302.005500px;}
.y26{bottom:311.676000px;}
.y55{bottom:311.685000px;}
.y87{bottom:311.689500px;}
.yde{bottom:322.464000px;}
.y25{bottom:326.749500px;}
.y54{bottom:326.758500px;}
.ydd{bottom:337.537500px;}
.y24{bottom:341.823000px;}
.y86{bottom:341.836500px;}
.ydc{bottom:352.611000px;}
.y23{bottom:356.896500px;}
.y53{bottom:356.905500px;}
.y85{bottom:356.910000px;}
.ydb{bottom:367.684500px;}
.y22{bottom:371.970000px;}
.y52{bottom:371.979000px;}
.y84{bottom:371.983500px;}
.yda{bottom:382.758000px;}
.y21{bottom:387.043500px;}
.y51{bottom:387.052500px;}
.y83{bottom:387.057000px;}
.y20{bottom:402.117000px;}
.y50{bottom:402.126000px;}
.yd9{bottom:403.215000px;}
.y1f{bottom:417.190500px;}
.y82{bottom:417.204000px;}
.yd8{bottom:418.288500px;}
.y1e{bottom:432.264000px;}
.y4f{bottom:432.273000px;}
.y81{bottom:432.277500px;}
.yd7{bottom:438.747000px;}
.y4e{bottom:447.346500px;}
.y80{bottom:447.351000px;}
.yd6{bottom:453.820500px;}
.y1d{bottom:462.411000px;}
.y4d{bottom:462.420000px;}
.y7f{bottom:462.424500px;}
.y1c{bottom:477.484500px;}
.y4c{bottom:477.493500px;}
.yd5{bottom:481.824000px;}
.y1b{bottom:492.558000px;}
.y4b{bottom:492.567000px;}
.y7e{bottom:492.571500px;}
.y1a{bottom:507.631500px;}
.y4a{bottom:507.640500px;}
.y7d{bottom:507.645000px;}
.yd4{bottom:507.664500px;}
.yb4{bottom:520.567500px;}
.y19{bottom:522.705000px;}
.y7c{bottom:522.718500px;}
.yd3{bottom:522.738000px;}
.y18{bottom:537.778500px;}
.y49{bottom:537.787500px;}
.yd2{bottom:537.811500px;}
.y17{bottom:552.852000px;}
.y48{bottom:552.861000px;}
.y7b{bottom:552.865500px;}
.yd1{bottom:552.885000px;}
.y47{bottom:567.934500px;}
.y7a{bottom:567.939000px;}
.y16{bottom:582.999000px;}
.yae{bottom:583.015500px;}
.yd0{bottom:583.032000px;}
.y15{bottom:598.072500px;}
.y46{bottom:598.081500px;}
.y79{bottom:598.086000px;}
.yad{bottom:598.089000px;}
.ycf{bottom:598.105500px;}
.y14{bottom:613.146000px;}
.y45{bottom:613.155000px;}
.y78{bottom:613.159500px;}
.yac{bottom:613.162500px;}
.y13{bottom:628.219500px;}
.y44{bottom:628.228500px;}
.yab{bottom:628.236000px;}
.yce{bottom:628.252500px;}
.y12{bottom:643.293000px;}
.y43{bottom:643.302000px;}
.y77{bottom:643.306500px;}
.yaa{bottom:643.309500px;}
.ycd{bottom:643.326000px;}
.y11{bottom:658.366500px;}
.y76{bottom:658.380000px;}
.ycc{bottom:658.399500px;}
.y42{bottom:673.449000px;}
.ya9{bottom:673.456500px;}
.ycb{bottom:673.473000px;}
.y10{bottom:688.513500px;}
.y41{bottom:688.522500px;}
.y75{bottom:688.527000px;}
.ya8{bottom:688.530000px;}
.yca{bottom:688.546500px;}
.y40{bottom:703.596000px;}
.ya7{bottom:703.603500px;}
.y3f{bottom:718.669500px;}
.y74{bottom:718.674000px;}
.ya6{bottom:718.677000px;}
.yf{bottom:729.429000px;}
.y3e{bottom:733.743000px;}
.ya5{bottom:733.750500px;}
.yc9{bottom:733.768500px;}
.ye{bottom:744.502500px;}
.y3d{bottom:748.816500px;}
.y73{bottom:748.821000px;}
.yc8{bottom:748.842000px;}
.yd{bottom:759.576000px;}
.ya4{bottom:763.897500px;}
.yc7{bottom:763.915500px;}
.yc{bottom:774.649500px;}
.yb6{bottom:774.672000px;}
.y3c{bottom:778.963500px;}
.y72{bottom:778.968000px;}
.ya3{bottom:778.971000px;}
.yb3{bottom:778.974000px;}
.yc6{bottom:778.989000px;}
.y3b{bottom:794.037000px;}
.y71{bottom:794.041500px;}
.ya2{bottom:794.044500px;}
.yc5{bottom:794.062500px;}
.yb{bottom:804.796500px;}
.y3a{bottom:809.110500px;}
.y70{bottom:809.115000px;}
.ya1{bottom:809.118000px;}
.yc4{bottom:809.136000px;}
.ya0{bottom:824.191500px;}
.yc3{bottom:824.209500px;}
.ya{bottom:834.943500px;}
.y39{bottom:839.257500px;}
.y6f{bottom:839.262000px;}
.y9f{bottom:839.265000px;}
.y9{bottom:850.017000px;}
.y38{bottom:854.331000px;}
.y9e{bottom:854.338500px;}
.yc2{bottom:854.356500px;}
.y37{bottom:869.404500px;}
.y6e{bottom:869.409000px;}
.y9d{bottom:869.412000px;}
.yc1{bottom:869.430000px;}
.y8{bottom:880.164000px;}
.y6d{bottom:884.482500px;}
.yc0{bottom:884.503500px;}
.y36{bottom:899.551500px;}
.y9c{bottom:899.559000px;}
.ybf{bottom:899.577000px;}
.y35{bottom:914.625000px;}
.y6c{bottom:914.629500px;}
.y9b{bottom:914.632500px;}
.ybe{bottom:914.650500px;}
.y7{bottom:925.384500px;}
.y6b{bottom:929.703000px;}
.y9a{bottom:929.706000px;}
.ybd{bottom:929.724000px;}
.y6{bottom:940.458000px;}
.y34{bottom:944.772000px;}
.y99{bottom:944.779500px;}
.ybc{bottom:944.797500px;}
.y5{bottom:955.531500px;}
.y33{bottom:959.845500px;}
.y6a{bottom:959.850000px;}
.y98{bottom:959.853000px;}
.y4{bottom:970.605000px;}
.y32{bottom:974.919000px;}
.ybb{bottom:974.944500px;}
.y31{bottom:989.992500px;}
.y69{bottom:989.997000px;}
.y97{bottom:990.000000px;}
.yba{bottom:990.018000px;}
.y3{bottom:1001.829000px;}
.y30{bottom:1005.066000px;}
.yb9{bottom:1005.091500px;}
.y2{bottom:1019.056500px;}
.y68{bottom:1020.144000px;}
.y96{bottom:1020.147000px;}
.y2f{bottom:1035.213000px;}
.y67{bottom:1035.217500px;}
.y95{bottom:1035.220500px;}
.yaf{bottom:1035.225000px;}
.yb2{bottom:1035.229500px;}
.yb8{bottom:1035.238500px;}
.h5{height:25.031250px;}
.h3{height:37.627365px;}
.h4{height:37.677838px;}
.h2{height:42.081724px;}
.h1{height:1047.000000px;}
.h0{height:1263.000000px;}
.w1{width:568.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:30.147000px;}
.x3{left:41.991000px;}
.x4{left:75.000000px;}
.x1{left:216.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.785717pt;}
.ls1{letter-spacing:1.240416pt;}
.ws1{word-spacing:-34.459317pt;}
.ws5{word-spacing:-28.070155pt;}
.ws4{word-spacing:-26.829739pt;}
.ws1f{word-spacing:-26.783797pt;}
.ws3{word-spacing:-25.543381pt;}
.ws0{word-spacing:-23.459275pt;}
.ws1d{word-spacing:-20.214187pt;}
.ws19{word-spacing:-20.168245pt;}
.ws21{word-spacing:-20.122304pt;}
.ws15{word-spacing:-19.892597pt;}
.wsb{word-spacing:-19.708832pt;}
.ws1e{word-spacing:-19.616949pt;}
.ws16{word-spacing:-19.571008pt;}
.ws9{word-spacing:-19.295360pt;}
.wse{word-spacing:-19.249419pt;}
.ws6{word-spacing:-19.065653pt;}
.ws7{word-spacing:-18.835947pt;}
.ws18{word-spacing:-18.100885pt;}
.ws14{word-spacing:-17.733355pt;}
.wsa{word-spacing:-17.641472pt;}
.ws1c{word-spacing:-17.595531pt;}
.ws13{word-spacing:-17.228000pt;}
.ws1b{word-spacing:-17.136117pt;}
.wsd{word-spacing:-16.676704pt;}
.ws8{word-spacing:-15.849760pt;}
.wsc{word-spacing:-15.665995pt;}
.ws12{word-spacing:-15.252523pt;}
.wsf{word-spacing:-14.287755pt;}
.ws22{word-spacing:-13.185163pt;}
.ws20{word-spacing:-12.450101pt;}
.ws10{word-spacing:-11.531275pt;}
.ws17{word-spacing:-10.750272pt;}
.ws11{word-spacing:-6.661493pt;}
.ws2{word-spacing:-5.926432pt;}
.ws1a{word-spacing:0.000000pt;}
._b{margin-left:-205.120000pt;}
._9{margin-left:-5.695723pt;}
._7{margin-left:-3.824160pt;}
._2{margin-left:-2.160747pt;}
._0{margin-left:-1.010208pt;}
._1{width:0.964267pt;}
._3{width:2.114805pt;}
._4{width:3.354720pt;}
._5{width:4.456811pt;}
._6{width:5.467520pt;}
._8{width:6.525173pt;}
._a{width:15.403381pt;}
.fs2{font-size:21.333333pt;}
.fs1{font-size:45.941333pt;}
.fs0{font-size:56.122667pt;}
.y0{bottom:0.000000pt;}
.ye9{bottom:6.666667pt;}
.y66{bottom:9.080000pt;}
.y65{bottom:22.478667pt;}
.y94{bottom:22.482667pt;}
.y64{bottom:35.877333pt;}
.y93{bottom:49.280000pt;}
.yb7{bottom:57.890667pt;}
.y63{bottom:62.674667pt;}
.y92{bottom:62.678667pt;}
.y62{bottom:76.073333pt;}
.y61{bottom:89.472000pt;}
.y91{bottom:89.476000pt;}
.y1{bottom:96.000000pt;}
.y60{bottom:102.870667pt;}
.y5f{bottom:116.269333pt;}
.y90{bottom:116.273333pt;}
.y8f{bottom:129.672000pt;}
.yb1{bottom:142.106667pt;}
.y5e{bottom:143.066667pt;}
.ye8{bottom:143.074667pt;}
.yb0{bottom:155.505333pt;}
.y2e{bottom:156.457333pt;}
.y5d{bottom:156.465333pt;}
.y8e{bottom:156.469333pt;}
.ye7{bottom:156.473333pt;}
.y2d{bottom:169.856000pt;}
.y5c{bottom:169.864000pt;}
.y8d{bottom:169.868000pt;}
.ye6{bottom:169.872000pt;}
.y2c{bottom:183.254667pt;}
.y8c{bottom:183.266667pt;}
.ye5{bottom:183.270667pt;}
.y2b{bottom:196.653333pt;}
.y5b{bottom:196.661333pt;}
.ye4{bottom:196.669333pt;}
.yb5{bottom:203.361333pt;}
.y2a{bottom:210.052000pt;}
.y5a{bottom:210.060000pt;}
.y8b{bottom:210.064000pt;}
.ye3{bottom:214.854667pt;}
.y59{bottom:223.458667pt;}
.y8a{bottom:223.462667pt;}
.ye2{bottom:228.253333pt;}
.y29{bottom:236.849333pt;}
.y58{bottom:236.857333pt;}
.y89{bottom:236.861333pt;}
.ye1{bottom:241.652000pt;}
.y28{bottom:250.248000pt;}
.y57{bottom:250.256000pt;}
.y88{bottom:250.260000pt;}
.ye0{bottom:255.050667pt;}
.y27{bottom:263.646667pt;}
.y56{bottom:263.654667pt;}
.ydf{bottom:268.449333pt;}
.y26{bottom:277.045333pt;}
.y55{bottom:277.053333pt;}
.y87{bottom:277.057333pt;}
.yde{bottom:286.634667pt;}
.y25{bottom:290.444000pt;}
.y54{bottom:290.452000pt;}
.ydd{bottom:300.033333pt;}
.y24{bottom:303.842667pt;}
.y86{bottom:303.854667pt;}
.ydc{bottom:313.432000pt;}
.y23{bottom:317.241333pt;}
.y53{bottom:317.249333pt;}
.y85{bottom:317.253333pt;}
.ydb{bottom:326.830667pt;}
.y22{bottom:330.640000pt;}
.y52{bottom:330.648000pt;}
.y84{bottom:330.652000pt;}
.yda{bottom:340.229333pt;}
.y21{bottom:344.038667pt;}
.y51{bottom:344.046667pt;}
.y83{bottom:344.050667pt;}
.y20{bottom:357.437333pt;}
.y50{bottom:357.445333pt;}
.yd9{bottom:358.413333pt;}
.y1f{bottom:370.836000pt;}
.y82{bottom:370.848000pt;}
.yd8{bottom:371.812000pt;}
.y1e{bottom:384.234667pt;}
.y4f{bottom:384.242667pt;}
.y81{bottom:384.246667pt;}
.yd7{bottom:389.997333pt;}
.y4e{bottom:397.641333pt;}
.y80{bottom:397.645333pt;}
.yd6{bottom:403.396000pt;}
.y1d{bottom:411.032000pt;}
.y4d{bottom:411.040000pt;}
.y7f{bottom:411.044000pt;}
.y1c{bottom:424.430667pt;}
.y4c{bottom:424.438667pt;}
.yd5{bottom:428.288000pt;}
.y1b{bottom:437.829333pt;}
.y4b{bottom:437.837333pt;}
.y7e{bottom:437.841333pt;}
.y1a{bottom:451.228000pt;}
.y4a{bottom:451.236000pt;}
.y7d{bottom:451.240000pt;}
.yd4{bottom:451.257333pt;}
.yb4{bottom:462.726667pt;}
.y19{bottom:464.626667pt;}
.y7c{bottom:464.638667pt;}
.yd3{bottom:464.656000pt;}
.y18{bottom:478.025333pt;}
.y49{bottom:478.033333pt;}
.yd2{bottom:478.054667pt;}
.y17{bottom:491.424000pt;}
.y48{bottom:491.432000pt;}
.y7b{bottom:491.436000pt;}
.yd1{bottom:491.453333pt;}
.y47{bottom:504.830667pt;}
.y7a{bottom:504.834667pt;}
.y16{bottom:518.221333pt;}
.yae{bottom:518.236000pt;}
.yd0{bottom:518.250667pt;}
.y15{bottom:531.620000pt;}
.y46{bottom:531.628000pt;}
.y79{bottom:531.632000pt;}
.yad{bottom:531.634667pt;}
.ycf{bottom:531.649333pt;}
.y14{bottom:545.018667pt;}
.y45{bottom:545.026667pt;}
.y78{bottom:545.030667pt;}
.yac{bottom:545.033333pt;}
.y13{bottom:558.417333pt;}
.y44{bottom:558.425333pt;}
.yab{bottom:558.432000pt;}
.yce{bottom:558.446667pt;}
.y12{bottom:571.816000pt;}
.y43{bottom:571.824000pt;}
.y77{bottom:571.828000pt;}
.yaa{bottom:571.830667pt;}
.ycd{bottom:571.845333pt;}
.y11{bottom:585.214667pt;}
.y76{bottom:585.226667pt;}
.ycc{bottom:585.244000pt;}
.y42{bottom:598.621333pt;}
.ya9{bottom:598.628000pt;}
.ycb{bottom:598.642667pt;}
.y10{bottom:612.012000pt;}
.y41{bottom:612.020000pt;}
.y75{bottom:612.024000pt;}
.ya8{bottom:612.026667pt;}
.yca{bottom:612.041333pt;}
.y40{bottom:625.418667pt;}
.ya7{bottom:625.425333pt;}
.y3f{bottom:638.817333pt;}
.y74{bottom:638.821333pt;}
.ya6{bottom:638.824000pt;}
.yf{bottom:648.381333pt;}
.y3e{bottom:652.216000pt;}
.ya5{bottom:652.222667pt;}
.yc9{bottom:652.238667pt;}
.ye{bottom:661.780000pt;}
.y3d{bottom:665.614667pt;}
.y73{bottom:665.618667pt;}
.yc8{bottom:665.637333pt;}
.yd{bottom:675.178667pt;}
.ya4{bottom:679.020000pt;}
.yc7{bottom:679.036000pt;}
.yc{bottom:688.577333pt;}
.yb6{bottom:688.597333pt;}
.y3c{bottom:692.412000pt;}
.y72{bottom:692.416000pt;}
.ya3{bottom:692.418667pt;}
.yb3{bottom:692.421333pt;}
.yc6{bottom:692.434667pt;}
.y3b{bottom:705.810667pt;}
.y71{bottom:705.814667pt;}
.ya2{bottom:705.817333pt;}
.yc5{bottom:705.833333pt;}
.yb{bottom:715.374667pt;}
.y3a{bottom:719.209333pt;}
.y70{bottom:719.213333pt;}
.ya1{bottom:719.216000pt;}
.yc4{bottom:719.232000pt;}
.ya0{bottom:732.614667pt;}
.yc3{bottom:732.630667pt;}
.ya{bottom:742.172000pt;}
.y39{bottom:746.006667pt;}
.y6f{bottom:746.010667pt;}
.y9f{bottom:746.013333pt;}
.y9{bottom:755.570667pt;}
.y38{bottom:759.405333pt;}
.y9e{bottom:759.412000pt;}
.yc2{bottom:759.428000pt;}
.y37{bottom:772.804000pt;}
.y6e{bottom:772.808000pt;}
.y9d{bottom:772.810667pt;}
.yc1{bottom:772.826667pt;}
.y8{bottom:782.368000pt;}
.y6d{bottom:786.206667pt;}
.yc0{bottom:786.225333pt;}
.y36{bottom:799.601333pt;}
.y9c{bottom:799.608000pt;}
.ybf{bottom:799.624000pt;}
.y35{bottom:813.000000pt;}
.y6c{bottom:813.004000pt;}
.y9b{bottom:813.006667pt;}
.ybe{bottom:813.022667pt;}
.y7{bottom:822.564000pt;}
.y6b{bottom:826.402667pt;}
.y9a{bottom:826.405333pt;}
.ybd{bottom:826.421333pt;}
.y6{bottom:835.962667pt;}
.y34{bottom:839.797333pt;}
.y99{bottom:839.804000pt;}
.ybc{bottom:839.820000pt;}
.y5{bottom:849.361333pt;}
.y33{bottom:853.196000pt;}
.y6a{bottom:853.200000pt;}
.y98{bottom:853.202667pt;}
.y4{bottom:862.760000pt;}
.y32{bottom:866.594667pt;}
.ybb{bottom:866.617333pt;}
.y31{bottom:879.993333pt;}
.y69{bottom:879.997333pt;}
.y97{bottom:880.000000pt;}
.yba{bottom:880.016000pt;}
.y3{bottom:890.514667pt;}
.y30{bottom:893.392000pt;}
.yb9{bottom:893.414667pt;}
.y2{bottom:905.828000pt;}
.y68{bottom:906.794667pt;}
.y96{bottom:906.797333pt;}
.y2f{bottom:920.189333pt;}
.y67{bottom:920.193333pt;}
.y95{bottom:920.196000pt;}
.yaf{bottom:920.200000pt;}
.yb2{bottom:920.204000pt;}
.yb8{bottom:920.212000pt;}
.h5{height:22.250000pt;}
.h3{height:33.446547pt;}
.h4{height:33.491411pt;}
.h2{height:37.405977pt;}
.h1{height:930.666667pt;}
.h0{height:1122.666667pt;}
.w1{width:505.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:26.797333pt;}
.x3{left:37.325333pt;}
.x4{left:66.666667pt;}
.x1{left:192.000000pt;}
}

