
    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_2f418f2bbeb2d7993cce88d1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.979004;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_9f9827e16bc313db3e81013a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.801758;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_4ef4bb053e5cd8604c192aa1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.979004;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_999efbe4d9e1bc7ee193cca9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112793;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_213008feaeae41f21539a808.woff')format("woff");}.ff5{font-family:ff5;line-height:1.076000;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_98b488a8fa9d1e3570f71eb8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5dedc360ff87652386e00247.woff')format("woff");}.ff7{font-family:ff7;line-height:1.107000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0a44bf8e3ed2ecf0b530efb3.woff')format("woff");}.ff8{font-family:ff8;line-height:1.075000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_24f2939ced80c5c005a0a042.woff')format("woff");}.ff9{font-family:ff9;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8fb658f27563961b33a57b7a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.966000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5ee1471ce490f7f66704b6d2.woff')format("woff");}.ffb{font-family:ffb;line-height:1.085000;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);}
.v1{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-1.440000px;}
.ls3{letter-spacing:-0.864000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:1.008000px;}
.ls0{letter-spacing:1013.895600px;}
.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;}
}
.ws13{word-spacing:-16.344000px;}
.ws1{word-spacing:-15.480000px;}
.wsc{word-spacing:-7.632000px;}
.ws1a{word-spacing:-5.616000px;}
.ws17{word-spacing:-5.400000px;}
.ws1f{word-spacing:-5.184000px;}
.ws10{word-spacing:-4.968000px;}
.ws2a{word-spacing:-2.592000px;}
.ws2e{word-spacing:-1.800000px;}
.ws6{word-spacing:-1.728000px;}
.wsb{word-spacing:-1.584000px;}
.wsa{word-spacing:-1.224000px;}
.ws18{word-spacing:-1.008000px;}
.ws12{word-spacing:-0.864000px;}
.ws2c{word-spacing:-0.720000px;}
.ws2{word-spacing:0.000000px;}
.ws22{word-spacing:1.152000px;}
.ws21{word-spacing:1.224000px;}
.ws5{word-spacing:1.440000px;}
.ws1e{word-spacing:1.512000px;}
.ws2b{word-spacing:2.016000px;}
.ws2f{word-spacing:2.088000px;}
.ws4{word-spacing:2.520000px;}
.ws7{word-spacing:2.664000px;}
.ws1d{word-spacing:2.736000px;}
.ws24{word-spacing:3.096000px;}
.ws20{word-spacing:3.744000px;}
.wse{word-spacing:4.248000px;}
.ws2d{word-spacing:6.048000px;}
.ws27{word-spacing:6.336000px;}
.ws1b{word-spacing:6.408000px;}
.ws26{word-spacing:7.560000px;}
.ws28{word-spacing:8.856000px;}
.ws23{word-spacing:8.928000px;}
.ws11{word-spacing:9.072000px;}
.wsd{word-spacing:9.504000px;}
.ws29{word-spacing:9.576000px;}
.wsf{word-spacing:9.720000px;}
.ws1c{word-spacing:10.440000px;}
.ws14{word-spacing:10.728000px;}
.ws15{word-spacing:11.088000px;}
.ws25{word-spacing:13.176000px;}
.ws19{word-spacing:14.112000px;}
.ws9{word-spacing:15.264000px;}
.ws8{word-spacing:18.216000px;}
.ws16{word-spacing:22.320000px;}
.ws0{word-spacing:726.208200px;}
.ws3{word-spacing:1009.428000px;}
._d{margin-left:-53.783400px;}
._b{margin-left:-10.560600px;}
._a{margin-left:-7.279800px;}
._0{margin-left:-6.006000px;}
._3{margin-left:-4.629600px;}
._9{margin-left:-2.383200px;}
._1{margin-left:-1.364400px;}
._2{width:1.382400px;}
._8{width:3.247800px;}
._6{width:4.399800px;}
._5{width:9.439800px;}
._4{width:11.383200px;}
._7{width:12.521400px;}
._c{width:32.952000px;}
._e{width:47.599800px;}
.fc5{color:rgb(0,91,36);}
.fc4{color:rgb(205,23,25);}
.fc3{color:rgb(0,79,159);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(135,135,135);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs4{font-size:96.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:41.811000px;}
.y30{bottom:80.603250px;}
.y2f{bottom:102.203250px;}
.y2e{bottom:123.803250px;}
.y2d{bottom:145.403250px;}
.y2c{bottom:167.003250px;}
.y59{bottom:169.534200px;}
.y2b{bottom:188.603250px;}
.y58{bottom:191.134050px;}
.y2a{bottom:210.203250px;}
.y57{bottom:225.986100px;}
.y29{bottom:231.803250px;}
.y56{bottom:247.586100px;}
.y28{bottom:253.403250px;}
.y7b{bottom:267.497700px;}
.y27{bottom:275.003250px;}
.y55{bottom:282.438150px;}
.y26{bottom:296.603250px;}
.y7a{bottom:297.601650px;}
.y54{bottom:304.038000px;}
.y79{bottom:319.201650px;}
.y53{bottom:325.638000px;}
.y25{bottom:326.707050px;}
.y52{bottom:347.238150px;}
.y24{bottom:348.307200px;}
.y78{bottom:349.305600px;}
.y51{bottom:368.838000px;}
.y23{bottom:369.907200px;}
.y77{bottom:379.409550px;}
.y50{bottom:390.438150px;}
.y22{bottom:391.507200px;}
.y76{bottom:409.513500px;}
.y21{bottom:413.107200px;}
.y4f{bottom:425.290050px;}
.y75{bottom:431.113500px;}
.y20{bottom:434.707200px;}
.y4e{bottom:446.890050px;}
.y74{bottom:461.217450px;}
.y1f{bottom:464.811150px;}
.y4d{bottom:481.741950px;}
.y1e{bottom:486.411150px;}
.y73{bottom:491.321250px;}
.y1d{bottom:508.011150px;}
.y4c{bottom:516.594000px;}
.y72{bottom:521.425350px;}
.y1c{bottom:529.611150px;}
.y1b{bottom:551.211150px;}
.y71{bottom:551.529150px;}
.y4b{bottom:564.697950px;}
.y1a{bottom:572.811150px;}
.y70{bottom:581.633100px;}
.y4a{bottom:586.297950px;}
.y19{bottom:594.411150px;}
.y49{bottom:607.897950px;}
.y6f{bottom:611.737050px;}
.y18{bottom:624.515100px;}
.y48{bottom:629.497950px;}
.y6e{bottom:633.337050px;}
.y17{bottom:646.114950px;}
.y47{bottom:651.097950px;}
.y6d{bottom:663.441000px;}
.y16{bottom:667.714950px;}
.y46{bottom:672.697950px;}
.y6c{bottom:685.041000px;}
.y15{bottom:689.315100px;}
.y45{bottom:694.297950px;}
.y6b{bottom:706.641000px;}
.y14{bottom:710.915100px;}
.y44{bottom:715.897950px;}
.y13{bottom:732.515100px;}
.y6a{bottom:736.744950px;}
.y43{bottom:737.497950px;}
.y12{bottom:762.619050px;}
.y69{bottom:771.596850px;}
.y42{bottom:771.853800px;}
.y11{bottom:784.218900px;}
.y41{bottom:793.453800px;}
.y68{bottom:801.700800px;}
.y10{bottom:805.818900px;}
.y40{bottom:815.053800px;}
.y67{bottom:823.300800px;}
.yf{bottom:827.419050px;}
.y3f{bottom:836.653800px;}
.y66{bottom:844.900800px;}
.ye{bottom:849.018900px;}
.y3e{bottom:858.253800px;}
.yd{bottom:870.619050px;}
.y65{bottom:875.004750px;}
.y3d{bottom:879.853800px;}
.yc{bottom:900.722850px;}
.y64{bottom:905.108700px;}
.y3c{bottom:914.209650px;}
.yb{bottom:922.323000px;}
.y63{bottom:926.708700px;}
.y3b{bottom:935.809800px;}
.ya{bottom:943.922850px;}
.y62{bottom:956.812650px;}
.y3a{bottom:957.409650px;}
.y9{bottom:965.522850px;}
.y61{bottom:978.412650px;}
.y39{bottom:979.009800px;}
.y8{bottom:987.122850px;}
.y38{bottom:1000.609650px;}
.y60{bottom:1008.516600px;}
.y7{bottom:1008.722850px;}
.y37{bottom:1022.209650px;}
.y5f{bottom:1030.116600px;}
.y6{bottom:1043.574900px;}
.y36{bottom:1043.809800px;}
.y5e{bottom:1051.716600px;}
.y5d{bottom:1073.316600px;}
.y35{bottom:1078.165650px;}
.y5{bottom:1087.426800px;}
.y5c{bottom:1094.916600px;}
.y34{bottom:1099.765650px;}
.y4{bottom:1113.278850px;}
.y33{bottom:1121.365650px;}
.y5b{bottom:1125.020550px;}
.y32{bottom:1142.965650px;}
.y3{bottom:1154.834700px;}
.y31{bottom:1164.565650px;}
.y5a{bottom:1164.620550px;}
.y1{bottom:1219.658400px;}
.ha{height:51.624000px;}
.h2{height:52.558594px;}
.h9{height:58.896000px;}
.h6{height:58.968000px;}
.hb{height:60.552000px;}
.h3{height:63.000000px;}
.h8{height:63.216000px;}
.h7{height:66.585938px;}
.h5{height:84.281250px;}
.h4{height:94.816406px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x7{left:106.299150px;}
.x6{left:110.551200px;}
.xb{left:115.659000px;}
.x8{left:127.559100px;}
.x3{left:296.316000px;}
.x4{left:329.818500px;}
.x9{left:339.388350px;}
.x5{left:344.688150px;}
.x2{left:358.008000px;}
.xa{left:362.745300px;}
@media print{
.v1{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-1.280000pt;}
.ls3{letter-spacing:-0.768000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.896000pt;}
.ls0{letter-spacing:901.240533pt;}
.ws13{word-spacing:-14.528000pt;}
.ws1{word-spacing:-13.760000pt;}
.wsc{word-spacing:-6.784000pt;}
.ws1a{word-spacing:-4.992000pt;}
.ws17{word-spacing:-4.800000pt;}
.ws1f{word-spacing:-4.608000pt;}
.ws10{word-spacing:-4.416000pt;}
.ws2a{word-spacing:-2.304000pt;}
.ws2e{word-spacing:-1.600000pt;}
.ws6{word-spacing:-1.536000pt;}
.wsb{word-spacing:-1.408000pt;}
.wsa{word-spacing:-1.088000pt;}
.ws18{word-spacing:-0.896000pt;}
.ws12{word-spacing:-0.768000pt;}
.ws2c{word-spacing:-0.640000pt;}
.ws2{word-spacing:0.000000pt;}
.ws22{word-spacing:1.024000pt;}
.ws21{word-spacing:1.088000pt;}
.ws5{word-spacing:1.280000pt;}
.ws1e{word-spacing:1.344000pt;}
.ws2b{word-spacing:1.792000pt;}
.ws2f{word-spacing:1.856000pt;}
.ws4{word-spacing:2.240000pt;}
.ws7{word-spacing:2.368000pt;}
.ws1d{word-spacing:2.432000pt;}
.ws24{word-spacing:2.752000pt;}
.ws20{word-spacing:3.328000pt;}
.wse{word-spacing:3.776000pt;}
.ws2d{word-spacing:5.376000pt;}
.ws27{word-spacing:5.632000pt;}
.ws1b{word-spacing:5.696000pt;}
.ws26{word-spacing:6.720000pt;}
.ws28{word-spacing:7.872000pt;}
.ws23{word-spacing:7.936000pt;}
.ws11{word-spacing:8.064000pt;}
.wsd{word-spacing:8.448000pt;}
.ws29{word-spacing:8.512000pt;}
.wsf{word-spacing:8.640000pt;}
.ws1c{word-spacing:9.280000pt;}
.ws14{word-spacing:9.536000pt;}
.ws15{word-spacing:9.856000pt;}
.ws25{word-spacing:11.712000pt;}
.ws19{word-spacing:12.544000pt;}
.ws9{word-spacing:13.568000pt;}
.ws8{word-spacing:16.192000pt;}
.ws16{word-spacing:19.840000pt;}
.ws0{word-spacing:645.518400pt;}
.ws3{word-spacing:897.269333pt;}
._d{margin-left:-47.807467pt;}
._b{margin-left:-9.387200pt;}
._a{margin-left:-6.470933pt;}
._0{margin-left:-5.338667pt;}
._3{margin-left:-4.115200pt;}
._9{margin-left:-2.118400pt;}
._1{margin-left:-1.212800pt;}
._2{width:1.228800pt;}
._8{width:2.886933pt;}
._6{width:3.910933pt;}
._5{width:8.390933pt;}
._4{width:10.118400pt;}
._7{width:11.130133pt;}
._c{width:29.290667pt;}
._e{width:42.310933pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs4{font-size:85.333333pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:37.165333pt;}
.y30{bottom:71.647333pt;}
.y2f{bottom:90.847333pt;}
.y2e{bottom:110.047333pt;}
.y2d{bottom:129.247333pt;}
.y2c{bottom:148.447333pt;}
.y59{bottom:150.697067pt;}
.y2b{bottom:167.647333pt;}
.y58{bottom:169.896933pt;}
.y2a{bottom:186.847333pt;}
.y57{bottom:200.876533pt;}
.y29{bottom:206.047333pt;}
.y56{bottom:220.076533pt;}
.y28{bottom:225.247333pt;}
.y7b{bottom:237.775733pt;}
.y27{bottom:244.447333pt;}
.y55{bottom:251.056133pt;}
.y26{bottom:263.647333pt;}
.y7a{bottom:264.534800pt;}
.y54{bottom:270.256000pt;}
.y79{bottom:283.734800pt;}
.y53{bottom:289.456000pt;}
.y25{bottom:290.406267pt;}
.y52{bottom:308.656133pt;}
.y24{bottom:309.606400pt;}
.y78{bottom:310.493867pt;}
.y51{bottom:327.856000pt;}
.y23{bottom:328.806400pt;}
.y77{bottom:337.252933pt;}
.y50{bottom:347.056133pt;}
.y22{bottom:348.006400pt;}
.y76{bottom:364.012000pt;}
.y21{bottom:367.206400pt;}
.y4f{bottom:378.035600pt;}
.y75{bottom:383.212000pt;}
.y20{bottom:386.406400pt;}
.y4e{bottom:397.235600pt;}
.y74{bottom:409.971067pt;}
.y1f{bottom:413.165467pt;}
.y4d{bottom:428.215067pt;}
.y1e{bottom:432.365467pt;}
.y73{bottom:436.730000pt;}
.y1d{bottom:451.565467pt;}
.y4c{bottom:459.194667pt;}
.y72{bottom:463.489200pt;}
.y1c{bottom:470.765467pt;}
.y1b{bottom:489.965467pt;}
.y71{bottom:490.248133pt;}
.y4b{bottom:501.953733pt;}
.y1a{bottom:509.165467pt;}
.y70{bottom:517.007200pt;}
.y4a{bottom:521.153733pt;}
.y19{bottom:528.365467pt;}
.y49{bottom:540.353733pt;}
.y6f{bottom:543.766267pt;}
.y18{bottom:555.124533pt;}
.y48{bottom:559.553733pt;}
.y6e{bottom:562.966267pt;}
.y17{bottom:574.324400pt;}
.y47{bottom:578.753733pt;}
.y6d{bottom:589.725333pt;}
.y16{bottom:593.524400pt;}
.y46{bottom:597.953733pt;}
.y6c{bottom:608.925333pt;}
.y15{bottom:612.724533pt;}
.y45{bottom:617.153733pt;}
.y6b{bottom:628.125333pt;}
.y14{bottom:631.924533pt;}
.y44{bottom:636.353733pt;}
.y13{bottom:651.124533pt;}
.y6a{bottom:654.884400pt;}
.y43{bottom:655.553733pt;}
.y12{bottom:677.883600pt;}
.y69{bottom:685.863867pt;}
.y42{bottom:686.092267pt;}
.y11{bottom:697.083467pt;}
.y41{bottom:705.292267pt;}
.y68{bottom:712.622933pt;}
.y10{bottom:716.283467pt;}
.y40{bottom:724.492267pt;}
.y67{bottom:731.822933pt;}
.yf{bottom:735.483600pt;}
.y3f{bottom:743.692267pt;}
.y66{bottom:751.022933pt;}
.ye{bottom:754.683467pt;}
.y3e{bottom:762.892267pt;}
.yd{bottom:773.883600pt;}
.y65{bottom:777.782000pt;}
.y3d{bottom:782.092267pt;}
.yc{bottom:800.642533pt;}
.y64{bottom:804.541067pt;}
.y3c{bottom:812.630800pt;}
.yb{bottom:819.842667pt;}
.y63{bottom:823.741067pt;}
.y3b{bottom:831.830933pt;}
.ya{bottom:839.042533pt;}
.y62{bottom:850.500133pt;}
.y3a{bottom:851.030800pt;}
.y9{bottom:858.242533pt;}
.y61{bottom:869.700133pt;}
.y39{bottom:870.230933pt;}
.y8{bottom:877.442533pt;}
.y38{bottom:889.430800pt;}
.y60{bottom:896.459200pt;}
.y7{bottom:896.642533pt;}
.y37{bottom:908.630800pt;}
.y5f{bottom:915.659200pt;}
.y6{bottom:927.622133pt;}
.y36{bottom:927.830933pt;}
.y5e{bottom:934.859200pt;}
.y5d{bottom:954.059200pt;}
.y35{bottom:958.369467pt;}
.y5{bottom:966.601600pt;}
.y5c{bottom:973.259200pt;}
.y34{bottom:977.569467pt;}
.y4{bottom:989.581200pt;}
.y33{bottom:996.769467pt;}
.y5b{bottom:1000.018267pt;}
.y32{bottom:1015.969467pt;}
.y3{bottom:1026.519733pt;}
.y31{bottom:1035.169467pt;}
.y5a{bottom:1035.218267pt;}
.y1{bottom:1084.140800pt;}
.ha{height:45.888000pt;}
.h2{height:46.718750pt;}
.h9{height:52.352000pt;}
.h6{height:52.416000pt;}
.hb{height:53.824000pt;}
.h3{height:56.000000pt;}
.h8{height:56.192000pt;}
.h7{height:59.187500pt;}
.h5{height:74.916667pt;}
.h4{height:84.281250pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x7{left:94.488133pt;}
.x6{left:98.267733pt;}
.xb{left:102.808000pt;}
.x8{left:113.385867pt;}
.x3{left:263.392000pt;}
.x4{left:293.172000pt;}
.x9{left:301.678533pt;}
.x5{left:306.389467pt;}
.x2{left:318.229333pt;}
.xa{left:322.440267pt;}
}

