
    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_7bf251a8db2ae73de88d2161.woff')format("woff");}.ff1{font-family:ff1;line-height:1.028000;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_b98101ba4fa1f37f6fcffbbb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.870000;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_47e718c5f4a8b0b8bb5e1208.woff')format("woff");}.ff3{font-family:ff3;line-height:0.898000;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_af1f5efea343fb12e14da4cf.woff')format("woff");}.ff4{font-family:ff4;line-height:0.905000;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_ac80d4a42794c768c0330b21.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_8ee5f8ab37d6d6d11de782df.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_0c569e6f3d5a575d9464ebf7.woff')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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_021579ccae511c2c23ecd9e3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.725000;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_b35869f3a6deeeb60281422e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.844000;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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws3b{word-spacing:-15.541656px;}
.ws33{word-spacing:-15.302554px;}
.ws2f{word-spacing:-14.645022px;}
.ws40{word-spacing:-14.465695px;}
.ws1d{word-spacing:-14.346144px;}
.wse{word-spacing:-14.014750px;}
.ws19{word-spacing:-13.509286px;}
.ws1c{word-spacing:-13.270183px;}
.ws18{word-spacing:-12.791978px;}
.wsf{word-spacing:-12.610345px;}
.ws2b{word-spacing:-12.538614px;}
.wsc{word-spacing:-12.313774px;}
.ws1e{word-spacing:-12.253998px;}
.ws31{word-spacing:-12.134447px;}
.ws16{word-spacing:-11.536691px;}
.ws3a{word-spacing:-11.297588px;}
.ws2c{word-spacing:-11.237813px;}
.ws39{word-spacing:-11.118262px;}
.wsd{word-spacing:-10.819384px;}
.ws12{word-spacing:-10.640057px;}
.ws10{word-spacing:-10.616735px;}
.ws1a{word-spacing:-10.161852px;}
.ws1f{word-spacing:-9.982525px;}
.ws15{word-spacing:-9.922750px;}
.ws42{word-spacing:-9.862974px;}
.ws44{word-spacing:-9.506735px;}
.ws2d{word-spacing:-9.444545px;}
.ws36{word-spacing:-8.906564px;}
.ws22{word-spacing:-8.607686px;}
.ws2e{word-spacing:-8.488135px;}
.ws0{word-spacing:-8.359041px;}
.ws3f{word-spacing:-8.308808px;}
.wsb{word-spacing:-7.890379px;}
.ws1b{word-spacing:-7.770828px;}
.ws30{word-spacing:-7.711052px;}
.ws32{word-spacing:-7.352399px;}
.ws13{word-spacing:-7.292623px;}
.ws3e{word-spacing:-6.993745px;}
.ws8{word-spacing:-6.530131px;}
.wsa{word-spacing:-6.515540px;}
.ws23{word-spacing:-6.455765px;}
.ws20{word-spacing:-6.156887px;}
.ws37{word-spacing:-6.037336px;}
.ws35{word-spacing:-5.200477px;}
.ws41{word-spacing:-4.782048px;}
.ws34{word-spacing:-3.048556px;}
.ws5{word-spacing:-2.510575px;}
.ws26{word-spacing:-1.912819px;}
.ws3d{word-spacing:-1.733492px;}
.ws24{word-spacing:-1.673717px;}
.ws4{word-spacing:-0.418429px;}
.ws28{word-spacing:-0.298878px;}
.ws38{word-spacing:-0.059776px;}
.ws2{word-spacing:-0.053798px;}
.ws46{word-spacing:-0.047821px;}
.ws29{word-spacing:0.000000px;}
.ws3c{word-spacing:16.514627px;}
.ws45{word-spacing:16.880672px;}
.ws43{word-spacing:19.869854px;}
.ws11{word-spacing:20.742133px;}
.ws7{word-spacing:21.339889px;}
.ws17{word-spacing:21.402955px;}
.ws3{word-spacing:22.834279px;}
.ws9{word-spacing:23.315454px;}
.ws14{word-spacing:23.790689px;}
.ws21{word-spacing:26.784955px;}
.ws1{word-spacing:26.827469px;}
.ws6{word-spacing:28.154308px;}
.ws27{word-spacing:30.186678px;}
.ws25{word-spacing:31.242955px;}
.ws2a{word-spacing:1068.435208px;}
._5{margin-left:-5.738458px;}
._2{margin-left:-4.590778px;}
._1{margin-left:-3.156160px;}
._b{margin-left:-2.128009px;}
._0{margin-left:-1.099874px;}
._4{width:1.560154px;}
._c{width:2.841447px;}
._a{width:16.270929px;}
._7{width:21.610886px;}
._6{width:24.582362px;}
._9{width:34.265724px;}
._8{width:79.334707px;}
._3{width:582.432924px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:47.820600px;}
.fs1{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y4c{bottom:84.592500px;}
.y4b{bottom:101.031000px;}
.y23{bottom:107.157000px;}
.y4a{bottom:122.559000px;}
.y22{bottom:125.089500px;}
.y49{bottom:138.997500px;}
.y21{bottom:143.023500px;}
.y48{bottom:153.195000px;}
.y20{bottom:160.956000px;}
.y1f{bottom:178.888500px;}
.y47{bottom:179.016000px;}
.y46{bottom:196.950000px;}
.y1e{bottom:204.292500px;}
.y45{bottom:214.882500px;}
.y1d{bottom:228.204000px;}
.y44{bottom:232.815000px;}
.y1c{bottom:246.136500px;}
.y43{bottom:250.747500px;}
.y1b{bottom:270.046500px;}
.y42{bottom:283.578000px;}
.y1a{bottom:295.450500px;}
.y19{bottom:313.384500px;}
.y41{bottom:326.001000px;}
.y18{bottom:332.064000px;}
.y40{bottom:343.933500px;}
.y17{bottom:349.996500px;}
.y3f{bottom:361.965000px;}
.y16{bottom:367.929000px;}
.y3e{bottom:379.899000px;}
.y15{bottom:385.861500px;}
.y3d{bottom:397.831500px;}
.y14{bottom:403.795500px;}
.y3c{bottom:419.994000px;}
.y13{bottom:421.728000px;}
.y3b{bottom:437.926500px;}
.y12{bottom:440.407500px;}
.y11{bottom:458.340000px;}
.y3a{bottom:459.892500px;}
.y10{bottom:476.272500px;}
.y39{bottom:477.825000px;}
.yf{bottom:494.953500px;}
.y38{bottom:495.757500px;}
.ye{bottom:512.886000px;}
.y37{bottom:517.723500px;}
.yd{bottom:530.818500px;}
.y36{bottom:535.656000px;}
.y35{bottom:557.820000px;}
.yc{bottom:564.297000px;}
.y34{bottom:575.851500px;}
.y33{bottom:593.784000px;}
.yb{bottom:608.485500px;}
.y32{bottom:611.716500px;}
.ya{bottom:626.418000px;}
.y31{bottom:629.748000px;}
.y9{bottom:644.350500px;}
.y30{bottom:647.680500px;}
.y8{bottom:662.283000px;}
.y2f{bottom:665.614500px;}
.y7{bottom:680.964000px;}
.y2e{bottom:683.547000px;}
.y6{bottom:698.896500px;}
.y2d{bottom:701.479500px;}
.y5{bottom:716.829000px;}
.y2c{bottom:719.511000px;}
.y2b{bottom:737.443500px;}
.y2a{bottom:755.376000px;}
.y29{bottom:773.310000px;}
.y4{bottom:780.340500px;}
.y28{bottom:791.242500px;}
.y3{bottom:806.493000px;}
.y27{bottom:809.274000px;}
.y26{bottom:827.206500px;}
.y2{bottom:842.358000px;}
.y25{bottom:845.139000px;}
.y24{bottom:877.969500px;}
.y1{bottom:930.273000px;}
.h9{height:33.665702px;}
.h4{height:36.367718px;}
.h2{height:37.204427px;}
.h5{height:42.082022px;}
.h6{height:44.831700px;}
.h7{height:46.505417px;}
.h3{height:50.498765px;}
.h8{height:55.806874px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:89.292000px;}
.x5{left:111.706500px;}
.x6{left:126.651000px;}
.x2{left:178.509000px;}
.x4{left:202.492500px;}
.x3{left:351.226500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3b{word-spacing:-13.814805pt;}
.ws33{word-spacing:-13.602270pt;}
.ws2f{word-spacing:-13.017797pt;}
.ws40{word-spacing:-12.858396pt;}
.ws1d{word-spacing:-12.752128pt;}
.wse{word-spacing:-12.457555pt;}
.ws19{word-spacing:-12.008254pt;}
.ws1c{word-spacing:-11.795718pt;}
.ws18{word-spacing:-11.370647pt;}
.wsf{word-spacing:-11.209196pt;}
.ws2b{word-spacing:-11.145434pt;}
.wsc{word-spacing:-10.945577pt;}
.ws1e{word-spacing:-10.892443pt;}
.ws31{word-spacing:-10.786175pt;}
.ws16{word-spacing:-10.254836pt;}
.ws3a{word-spacing:-10.042301pt;}
.ws2c{word-spacing:-9.989167pt;}
.ws39{word-spacing:-9.882899pt;}
.wsd{word-spacing:-9.617230pt;}
.ws12{word-spacing:-9.457828pt;}
.ws10{word-spacing:-9.437098pt;}
.ws1a{word-spacing:-9.032757pt;}
.ws1f{word-spacing:-8.873356pt;}
.ws15{word-spacing:-8.820222pt;}
.ws42{word-spacing:-8.767088pt;}
.ws44{word-spacing:-8.450431pt;}
.ws2d{word-spacing:-8.395151pt;}
.ws36{word-spacing:-7.916946pt;}
.ws22{word-spacing:-7.651277pt;}
.ws2e{word-spacing:-7.545009pt;}
.ws0{word-spacing:-7.430259pt;}
.ws3f{word-spacing:-7.385607pt;}
.wsb{word-spacing:-7.013670pt;}
.ws1b{word-spacing:-6.907403pt;}
.ws30{word-spacing:-6.854269pt;}
.ws32{word-spacing:-6.535466pt;}
.ws13{word-spacing:-6.482332pt;}
.ws3e{word-spacing:-6.216662pt;}
.ws8{word-spacing:-5.804561pt;}
.wsa{word-spacing:-5.791591pt;}
.ws23{word-spacing:-5.738458pt;}
.ws20{word-spacing:-5.472788pt;}
.ws37{word-spacing:-5.366521pt;}
.ws35{word-spacing:-4.622646pt;}
.ws41{word-spacing:-4.250709pt;}
.ws34{word-spacing:-2.709827pt;}
.ws5{word-spacing:-2.231622pt;}
.ws26{word-spacing:-1.700284pt;}
.ws3d{word-spacing:-1.540882pt;}
.ws24{word-spacing:-1.487748pt;}
.ws4{word-spacing:-0.371937pt;}
.ws28{word-spacing:-0.265669pt;}
.ws38{word-spacing:-0.053134pt;}
.ws2{word-spacing:-0.047821pt;}
.ws46{word-spacing:-0.042507pt;}
.ws29{word-spacing:0.000000pt;}
.ws3c{word-spacing:14.679668pt;}
.ws45{word-spacing:15.005042pt;}
.ws43{word-spacing:17.662093pt;}
.ws11{word-spacing:18.437452pt;}
.ws7{word-spacing:18.968790pt;}
.ws17{word-spacing:19.024849pt;}
.ws3{word-spacing:20.297137pt;}
.ws9{word-spacing:20.724848pt;}
.ws14{word-spacing:21.147279pt;}
.ws21{word-spacing:23.808849pt;}
.ws1{word-spacing:23.846639pt;}
.ws6{word-spacing:25.026051pt;}
.ws27{word-spacing:26.832603pt;}
.ws25{word-spacing:27.771516pt;}
.ws2a{word-spacing:949.720185pt;}
._5{margin-left:-5.100851pt;}
._2{margin-left:-4.080691pt;}
._1{margin-left:-2.805475pt;}
._b{margin-left:-1.891563pt;}
._0{margin-left:-0.977666pt;}
._4{width:1.386803pt;}
._c{width:2.525731pt;}
._a{width:14.463048pt;}
._7{width:19.209676pt;}
._6{width:21.850988pt;}
._9{width:30.458421pt;}
._8{width:70.519740pt;}
._3{width:517.718154pt;}
.fs0{font-size:42.507200pt;}
.fs1{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:75.193333pt;}
.y4b{bottom:89.805333pt;}
.y23{bottom:95.250667pt;}
.y4a{bottom:108.941333pt;}
.y22{bottom:111.190667pt;}
.y49{bottom:123.553333pt;}
.y21{bottom:127.132000pt;}
.y48{bottom:136.173333pt;}
.y20{bottom:143.072000pt;}
.y1f{bottom:159.012000pt;}
.y47{bottom:159.125333pt;}
.y46{bottom:175.066667pt;}
.y1e{bottom:181.593333pt;}
.y45{bottom:191.006667pt;}
.y1d{bottom:202.848000pt;}
.y44{bottom:206.946667pt;}
.y1c{bottom:218.788000pt;}
.y43{bottom:222.886667pt;}
.y1b{bottom:240.041333pt;}
.y42{bottom:252.069333pt;}
.y1a{bottom:262.622667pt;}
.y19{bottom:278.564000pt;}
.y41{bottom:289.778667pt;}
.y18{bottom:295.168000pt;}
.y40{bottom:305.718667pt;}
.y17{bottom:311.108000pt;}
.y3f{bottom:321.746667pt;}
.y16{bottom:327.048000pt;}
.y3e{bottom:337.688000pt;}
.y15{bottom:342.988000pt;}
.y3d{bottom:353.628000pt;}
.y14{bottom:358.929333pt;}
.y3c{bottom:373.328000pt;}
.y13{bottom:374.869333pt;}
.y3b{bottom:389.268000pt;}
.y12{bottom:391.473333pt;}
.y11{bottom:407.413333pt;}
.y3a{bottom:408.793333pt;}
.y10{bottom:423.353333pt;}
.y39{bottom:424.733333pt;}
.yf{bottom:439.958667pt;}
.y38{bottom:440.673333pt;}
.ye{bottom:455.898667pt;}
.y37{bottom:460.198667pt;}
.yd{bottom:471.838667pt;}
.y36{bottom:476.138667pt;}
.y35{bottom:495.840000pt;}
.yc{bottom:501.597333pt;}
.y34{bottom:511.868000pt;}
.y33{bottom:527.808000pt;}
.yb{bottom:540.876000pt;}
.y32{bottom:543.748000pt;}
.ya{bottom:556.816000pt;}
.y31{bottom:559.776000pt;}
.y9{bottom:572.756000pt;}
.y30{bottom:575.716000pt;}
.y8{bottom:588.696000pt;}
.y2f{bottom:591.657333pt;}
.y7{bottom:605.301333pt;}
.y2e{bottom:607.597333pt;}
.y6{bottom:621.241333pt;}
.y2d{bottom:623.537333pt;}
.y5{bottom:637.181333pt;}
.y2c{bottom:639.565333pt;}
.y2b{bottom:655.505333pt;}
.y2a{bottom:671.445333pt;}
.y29{bottom:687.386667pt;}
.y4{bottom:693.636000pt;}
.y28{bottom:703.326667pt;}
.y3{bottom:716.882667pt;}
.y27{bottom:719.354667pt;}
.y26{bottom:735.294667pt;}
.y2{bottom:748.762667pt;}
.y25{bottom:751.234667pt;}
.y24{bottom:780.417333pt;}
.y1{bottom:826.909333pt;}
.h9{height:29.925069pt;}
.h4{height:32.326861pt;}
.h2{height:33.070602pt;}
.h5{height:37.406242pt;}
.h6{height:39.850400pt;}
.h7{height:41.338148pt;}
.h3{height:44.887791pt;}
.h8{height:49.606110pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:79.370667pt;}
.x5{left:99.294667pt;}
.x6{left:112.578667pt;}
.x2{left:158.674667pt;}
.x4{left:179.993333pt;}
.x3{left:312.201333pt;}
}

