
    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_7ee80a96634e7980ad88efdf.woff')format("woff");}.ff1{font-family:ff1;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c4c615946bc1a510275ee174.woff')format("woff");}.ff2{font-family:ff2;line-height:1.064000;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_b99bc0d358d0b01de685ad4b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.057000;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_231c2fc364560d439ba0df63.woff')format("woff");}.ff4{font-family:ff4;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8b96c089a5381cb4c114a23a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_80def77255a565f1c0291164.woff')format("woff");}.ff6{font-family:ff6;line-height:1.091309;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;}
.ls4{letter-spacing:-0.900000px;}
.ls3{letter-spacing:-0.600000px;}
.ls2{letter-spacing:-0.396000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.012000px;}
.ls0{letter-spacing:9.660000px;}
.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;}
}
.ws3f{word-spacing:-15.000000px;}
.ws3e{word-spacing:-11.550000px;}
.ws0{word-spacing:-10.500000px;}
.ws50{word-spacing:-1.380000px;}
.ws12{word-spacing:-1.320000px;}
.ws31{word-spacing:-1.200000px;}
.wsf{word-spacing:-1.080000px;}
.ws27{word-spacing:-0.900000px;}
.ws34{word-spacing:-0.780000px;}
.ws3a{word-spacing:-0.720000px;}
.wsb{word-spacing:-0.420000px;}
.ws33{word-spacing:-0.240000px;}
.ws47{word-spacing:-0.120000px;}
.ws3{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
.ws4b{word-spacing:0.120000px;}
.wse{word-spacing:0.300000px;}
.ws44{word-spacing:0.330000px;}
.ws4{word-spacing:0.396000px;}
.ws13{word-spacing:0.480000px;}
.ws1b{word-spacing:0.600000px;}
.ws35{word-spacing:0.900000px;}
.ws23{word-spacing:1.080000px;}
.ws4a{word-spacing:1.380000px;}
.ws32{word-spacing:1.440000px;}
.ws51{word-spacing:1.500000px;}
.ws40{word-spacing:1.680000px;}
.ws2d{word-spacing:1.740000px;}
.ws1e{word-spacing:2.040000px;}
.ws1{word-spacing:2.100000px;}
.ws4c{word-spacing:2.220000px;}
.ws5{word-spacing:2.310000px;}
.ws3d{word-spacing:2.340000px;}
.ws4d{word-spacing:2.400000px;}
.ws16{word-spacing:2.460000px;}
.ws6{word-spacing:2.508000px;}
.ws14{word-spacing:2.520000px;}
.ws20{word-spacing:2.580000px;}
.ws37{word-spacing:2.640000px;}
.ws18{word-spacing:2.700000px;}
.ws2c{word-spacing:2.940000px;}
.ws1a{word-spacing:3.000000px;}
.ws10{word-spacing:3.060000px;}
.ws38{word-spacing:3.120000px;}
.ws19{word-spacing:3.180000px;}
.ws39{word-spacing:3.300000px;}
.ws41{word-spacing:3.360000px;}
.ws4e{word-spacing:3.480000px;}
.ws15{word-spacing:3.540000px;}
.ws26{word-spacing:3.600000px;}
.ws36{word-spacing:3.840000px;}
.wsd{word-spacing:3.960000px;}
.ws29{word-spacing:4.080000px;}
.ws2e{word-spacing:4.140000px;}
.ws45{word-spacing:4.260000px;}
.ws9{word-spacing:4.320000px;}
.wsa{word-spacing:4.380000px;}
.ws1d{word-spacing:4.500000px;}
.ws30{word-spacing:4.920000px;}
.ws17{word-spacing:4.980000px;}
.ws4f{word-spacing:5.100000px;}
.ws28{word-spacing:5.160000px;}
.ws1f{word-spacing:5.400000px;}
.ws1c{word-spacing:5.520000px;}
.ws48{word-spacing:5.820000px;}
.ws3c{word-spacing:6.060000px;}
.ws2f{word-spacing:6.180000px;}
.ws42{word-spacing:6.240000px;}
.ws21{word-spacing:6.300000px;}
.ws7{word-spacing:6.540000px;}
.ws49{word-spacing:6.780000px;}
.ws22{word-spacing:7.080000px;}
.ws25{word-spacing:7.200000px;}
.ws11{word-spacing:7.320000px;}
.ws43{word-spacing:7.380000px;}
.wsc{word-spacing:7.620000px;}
.ws3b{word-spacing:7.860000px;}
.ws2b{word-spacing:8.580000px;}
.ws2a{word-spacing:9.000000px;}
.ws8{word-spacing:9.060000px;}
.ws46{word-spacing:9.480000px;}
.ws24{word-spacing:640.069200px;}
._10{margin-left:-16.381200px;}
._f{margin-left:-14.938800px;}
._6{margin-left:-13.468200px;}
._e{margin-left:-6.215400px;}
._d{margin-left:-4.812000px;}
._5{margin-left:-3.557400px;}
._c{margin-left:-2.526000px;}
._4{margin-left:-1.524600px;}
._3{width:1.452000px;}
._1{width:2.679000px;}
._7{width:3.828000px;}
._8{width:5.322000px;}
._b{width:6.432000px;}
._a{width:7.614000px;}
._9{width:8.778000px;}
._0{width:643.926000px;}
._2{width:1073.352000px;}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:42.000000px;}
.fs4{font-size:46.200000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:123.322050px;}
.y2a{bottom:123.324150px;}
.y52{bottom:159.327000px;}
.y75{bottom:159.591000px;}
.y29{bottom:159.655500px;}
.y51{bottom:177.447000px;}
.y74{bottom:177.741000px;}
.y28{bottom:177.820500px;}
.y50{bottom:195.567000px;}
.y73{bottom:195.891000px;}
.y27{bottom:195.985500px;}
.y72{bottom:214.041000px;}
.y26{bottom:214.150500px;}
.y4f{bottom:215.802000px;}
.y71{bottom:232.191000px;}
.y25{bottom:232.315500px;}
.y4e{bottom:233.922000px;}
.y70{bottom:250.341000px;}
.y24{bottom:250.480500px;}
.y4d{bottom:252.042000px;}
.y6f{bottom:268.491000px;}
.y23{bottom:268.645500px;}
.y4c{bottom:270.162000px;}
.y6e{bottom:286.641000px;}
.y22{bottom:286.810500px;}
.y4b{bottom:288.282000px;}
.y6d{bottom:304.791000px;}
.y21{bottom:304.975500px;}
.y4a{bottom:308.517000px;}
.y6c{bottom:322.941000px;}
.y20{bottom:323.140500px;}
.y49{bottom:326.637000px;}
.y6b{bottom:341.091000px;}
.y1f{bottom:341.305500px;}
.y48{bottom:344.757000px;}
.y1e{bottom:359.470500px;}
.y6a{bottom:361.371000px;}
.y47{bottom:362.877000px;}
.y1d{bottom:377.635500px;}
.y69{bottom:379.521000px;}
.y46{bottom:380.997000px;}
.y68{bottom:397.671000px;}
.y1c{bottom:397.930500px;}
.y45{bottom:399.117000px;}
.y67{bottom:415.821000px;}
.y1b{bottom:416.095500px;}
.y44{bottom:417.237000px;}
.y66{bottom:433.971000px;}
.y1a{bottom:434.260500px;}
.y43{bottom:435.357000px;}
.y65{bottom:452.121000px;}
.y19{bottom:452.425500px;}
.y42{bottom:453.477000px;}
.y64{bottom:470.271000px;}
.y18{bottom:470.590500px;}
.y41{bottom:471.597000px;}
.y63{bottom:488.421000px;}
.y17{bottom:488.755500px;}
.y40{bottom:489.717000px;}
.y62{bottom:506.571000px;}
.y16{bottom:506.920500px;}
.y3f{bottom:509.952000px;}
.y61{bottom:524.721000px;}
.y15{bottom:525.085500px;}
.y3e{bottom:528.072000px;}
.y60{bottom:542.871000px;}
.y14{bottom:543.250500px;}
.y3d{bottom:546.192000px;}
.y13{bottom:563.545500px;}
.y3c{bottom:564.312000px;}
.y5f{bottom:575.914500px;}
.y12{bottom:581.710500px;}
.y3b{bottom:582.432000px;}
.y5e{bottom:595.566000px;}
.y11{bottom:599.875500px;}
.y3a{bottom:600.552000px;}
.y10{bottom:618.040500px;}
.y39{bottom:618.672000px;}
.yf{bottom:636.205500px;}
.y38{bottom:636.792000px;}
.ye{bottom:654.370500px;}
.y37{bottom:654.912000px;}
.y5d{bottom:659.869500px;}
.yd{bottom:672.535500px;}
.y36{bottom:673.032000px;}
.y5c{bottom:680.152500px;}
.yc{bottom:690.700500px;}
.y35{bottom:691.152000px;}
.yb{bottom:708.865500px;}
.y5b{bottom:709.002000px;}
.y34{bottom:709.272000px;}
.ya{bottom:727.030500px;}
.y5a{bottom:727.152000px;}
.y33{bottom:727.392000px;}
.y9{bottom:745.195500px;}
.y59{bottom:745.302000px;}
.y32{bottom:745.512000px;}
.y8{bottom:763.360500px;}
.y58{bottom:763.452000px;}
.y31{bottom:763.632000px;}
.y7{bottom:781.525500px;}
.y57{bottom:781.602000px;}
.y30{bottom:781.752000px;}
.y6{bottom:799.690500px;}
.y56{bottom:799.752000px;}
.y2f{bottom:799.872000px;}
.y55{bottom:817.902000px;}
.y2e{bottom:817.992000px;}
.y5{bottom:832.750500px;}
.y54{bottom:836.052000px;}
.y2d{bottom:836.112000px;}
.y4{bottom:852.418500px;}
.y53{bottom:854.202000px;}
.y2c{bottom:854.232000px;}
.y3{bottom:872.086500px;}
.y2b{bottom:872.352000px;}
.y1{bottom:909.936000px;}
.h2{height:47.321836px;}
.h8{height:47.373436px;}
.h3{height:47.381836px;}
.h4{height:52.536000px;}
.h5{height:52.646484px;}
.h6{height:52.792969px;}
.h7{height:53.466797px;}
.h9{height:57.911133px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:95.669250px;}
.x3{left:116.921250px;}
.x4{left:138.184200px;}
.x1{left:279.312000px;}
.x5{left:402.835500px;}
.x6{left:481.585500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.800000pt;}
.ls3{letter-spacing:-0.533333pt;}
.ls2{letter-spacing:-0.352000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.010667pt;}
.ls0{letter-spacing:8.586667pt;}
.ws3f{word-spacing:-13.333333pt;}
.ws3e{word-spacing:-10.266667pt;}
.ws0{word-spacing:-9.333333pt;}
.ws50{word-spacing:-1.226667pt;}
.ws12{word-spacing:-1.173333pt;}
.ws31{word-spacing:-1.066667pt;}
.wsf{word-spacing:-0.960000pt;}
.ws27{word-spacing:-0.800000pt;}
.ws34{word-spacing:-0.693333pt;}
.ws3a{word-spacing:-0.640000pt;}
.wsb{word-spacing:-0.373333pt;}
.ws33{word-spacing:-0.213333pt;}
.ws47{word-spacing:-0.106667pt;}
.ws3{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
.ws4b{word-spacing:0.106667pt;}
.wse{word-spacing:0.266667pt;}
.ws44{word-spacing:0.293333pt;}
.ws4{word-spacing:0.352000pt;}
.ws13{word-spacing:0.426667pt;}
.ws1b{word-spacing:0.533333pt;}
.ws35{word-spacing:0.800000pt;}
.ws23{word-spacing:0.960000pt;}
.ws4a{word-spacing:1.226667pt;}
.ws32{word-spacing:1.280000pt;}
.ws51{word-spacing:1.333333pt;}
.ws40{word-spacing:1.493333pt;}
.ws2d{word-spacing:1.546667pt;}
.ws1e{word-spacing:1.813333pt;}
.ws1{word-spacing:1.866667pt;}
.ws4c{word-spacing:1.973333pt;}
.ws5{word-spacing:2.053333pt;}
.ws3d{word-spacing:2.080000pt;}
.ws4d{word-spacing:2.133333pt;}
.ws16{word-spacing:2.186667pt;}
.ws6{word-spacing:2.229333pt;}
.ws14{word-spacing:2.240000pt;}
.ws20{word-spacing:2.293333pt;}
.ws37{word-spacing:2.346667pt;}
.ws18{word-spacing:2.400000pt;}
.ws2c{word-spacing:2.613333pt;}
.ws1a{word-spacing:2.666667pt;}
.ws10{word-spacing:2.720000pt;}
.ws38{word-spacing:2.773333pt;}
.ws19{word-spacing:2.826667pt;}
.ws39{word-spacing:2.933333pt;}
.ws41{word-spacing:2.986667pt;}
.ws4e{word-spacing:3.093333pt;}
.ws15{word-spacing:3.146667pt;}
.ws26{word-spacing:3.200000pt;}
.ws36{word-spacing:3.413333pt;}
.wsd{word-spacing:3.520000pt;}
.ws29{word-spacing:3.626667pt;}
.ws2e{word-spacing:3.680000pt;}
.ws45{word-spacing:3.786667pt;}
.ws9{word-spacing:3.840000pt;}
.wsa{word-spacing:3.893333pt;}
.ws1d{word-spacing:4.000000pt;}
.ws30{word-spacing:4.373333pt;}
.ws17{word-spacing:4.426667pt;}
.ws4f{word-spacing:4.533333pt;}
.ws28{word-spacing:4.586667pt;}
.ws1f{word-spacing:4.800000pt;}
.ws1c{word-spacing:4.906667pt;}
.ws48{word-spacing:5.173333pt;}
.ws3c{word-spacing:5.386667pt;}
.ws2f{word-spacing:5.493333pt;}
.ws42{word-spacing:5.546667pt;}
.ws21{word-spacing:5.600000pt;}
.ws7{word-spacing:5.813333pt;}
.ws49{word-spacing:6.026667pt;}
.ws22{word-spacing:6.293333pt;}
.ws25{word-spacing:6.400000pt;}
.ws11{word-spacing:6.506667pt;}
.ws43{word-spacing:6.560000pt;}
.wsc{word-spacing:6.773333pt;}
.ws3b{word-spacing:6.986667pt;}
.ws2b{word-spacing:7.626667pt;}
.ws2a{word-spacing:8.000000pt;}
.ws8{word-spacing:8.053333pt;}
.ws46{word-spacing:8.426667pt;}
.ws24{word-spacing:568.950400pt;}
._10{margin-left:-14.561067pt;}
._f{margin-left:-13.278933pt;}
._6{margin-left:-11.971733pt;}
._e{margin-left:-5.524800pt;}
._d{margin-left:-4.277333pt;}
._5{margin-left:-3.162133pt;}
._c{margin-left:-2.245333pt;}
._4{margin-left:-1.355200pt;}
._3{width:1.290667pt;}
._1{width:2.381333pt;}
._7{width:3.402667pt;}
._8{width:4.730667pt;}
._b{width:5.717333pt;}
._a{width:6.768000pt;}
._9{width:7.802667pt;}
._0{width:572.378667pt;}
._2{width:954.090667pt;}
.fs0{font-size:37.333333pt;}
.fs4{font-size:41.066667pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:109.619600pt;}
.y2a{bottom:109.621467pt;}
.y52{bottom:141.624000pt;}
.y75{bottom:141.858667pt;}
.y29{bottom:141.916000pt;}
.y51{bottom:157.730667pt;}
.y74{bottom:157.992000pt;}
.y28{bottom:158.062667pt;}
.y50{bottom:173.837333pt;}
.y73{bottom:174.125333pt;}
.y27{bottom:174.209333pt;}
.y72{bottom:190.258667pt;}
.y26{bottom:190.356000pt;}
.y4f{bottom:191.824000pt;}
.y71{bottom:206.392000pt;}
.y25{bottom:206.502667pt;}
.y4e{bottom:207.930667pt;}
.y70{bottom:222.525333pt;}
.y24{bottom:222.649333pt;}
.y4d{bottom:224.037333pt;}
.y6f{bottom:238.658667pt;}
.y23{bottom:238.796000pt;}
.y4c{bottom:240.144000pt;}
.y6e{bottom:254.792000pt;}
.y22{bottom:254.942667pt;}
.y4b{bottom:256.250667pt;}
.y6d{bottom:270.925333pt;}
.y21{bottom:271.089333pt;}
.y4a{bottom:274.237333pt;}
.y6c{bottom:287.058667pt;}
.y20{bottom:287.236000pt;}
.y49{bottom:290.344000pt;}
.y6b{bottom:303.192000pt;}
.y1f{bottom:303.382667pt;}
.y48{bottom:306.450667pt;}
.y1e{bottom:319.529333pt;}
.y6a{bottom:321.218667pt;}
.y47{bottom:322.557333pt;}
.y1d{bottom:335.676000pt;}
.y69{bottom:337.352000pt;}
.y46{bottom:338.664000pt;}
.y68{bottom:353.485333pt;}
.y1c{bottom:353.716000pt;}
.y45{bottom:354.770667pt;}
.y67{bottom:369.618667pt;}
.y1b{bottom:369.862667pt;}
.y44{bottom:370.877333pt;}
.y66{bottom:385.752000pt;}
.y1a{bottom:386.009333pt;}
.y43{bottom:386.984000pt;}
.y65{bottom:401.885333pt;}
.y19{bottom:402.156000pt;}
.y42{bottom:403.090667pt;}
.y64{bottom:418.018667pt;}
.y18{bottom:418.302667pt;}
.y41{bottom:419.197333pt;}
.y63{bottom:434.152000pt;}
.y17{bottom:434.449333pt;}
.y40{bottom:435.304000pt;}
.y62{bottom:450.285333pt;}
.y16{bottom:450.596000pt;}
.y3f{bottom:453.290667pt;}
.y61{bottom:466.418667pt;}
.y15{bottom:466.742667pt;}
.y3e{bottom:469.397333pt;}
.y60{bottom:482.552000pt;}
.y14{bottom:482.889333pt;}
.y3d{bottom:485.504000pt;}
.y13{bottom:500.929333pt;}
.y3c{bottom:501.610667pt;}
.y5f{bottom:511.924000pt;}
.y12{bottom:517.076000pt;}
.y3b{bottom:517.717333pt;}
.y5e{bottom:529.392000pt;}
.y11{bottom:533.222667pt;}
.y3a{bottom:533.824000pt;}
.y10{bottom:549.369333pt;}
.y39{bottom:549.930667pt;}
.yf{bottom:565.516000pt;}
.y38{bottom:566.037333pt;}
.ye{bottom:581.662667pt;}
.y37{bottom:582.144000pt;}
.y5d{bottom:586.550667pt;}
.yd{bottom:597.809333pt;}
.y36{bottom:598.250667pt;}
.y5c{bottom:604.580000pt;}
.yc{bottom:613.956000pt;}
.y35{bottom:614.357333pt;}
.yb{bottom:630.102667pt;}
.y5b{bottom:630.224000pt;}
.y34{bottom:630.464000pt;}
.ya{bottom:646.249333pt;}
.y5a{bottom:646.357333pt;}
.y33{bottom:646.570667pt;}
.y9{bottom:662.396000pt;}
.y59{bottom:662.490667pt;}
.y32{bottom:662.677333pt;}
.y8{bottom:678.542667pt;}
.y58{bottom:678.624000pt;}
.y31{bottom:678.784000pt;}
.y7{bottom:694.689333pt;}
.y57{bottom:694.757333pt;}
.y30{bottom:694.890667pt;}
.y6{bottom:710.836000pt;}
.y56{bottom:710.890667pt;}
.y2f{bottom:710.997333pt;}
.y55{bottom:727.024000pt;}
.y2e{bottom:727.104000pt;}
.y5{bottom:740.222667pt;}
.y54{bottom:743.157333pt;}
.y2d{bottom:743.210667pt;}
.y4{bottom:757.705333pt;}
.y53{bottom:759.290667pt;}
.y2c{bottom:759.317333pt;}
.y3{bottom:775.188000pt;}
.y2b{bottom:775.424000pt;}
.y1{bottom:808.832000pt;}
.h2{height:42.063854pt;}
.h8{height:42.109721pt;}
.h3{height:42.117188pt;}
.h4{height:46.698667pt;}
.h5{height:46.796875pt;}
.h6{height:46.927083pt;}
.h7{height:47.526042pt;}
.h9{height:51.476562pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:85.039333pt;}
.x3{left:103.930000pt;}
.x4{left:122.830400pt;}
.x1{left:248.277333pt;}
.x5{left:358.076000pt;}
.x6{left:428.076000pt;}
}

