
    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_847f5b2032d2eb4c0de4226c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_270ed3a380efc75a0d0668b1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_6a0c985bafc429c7a87c8acf.woff')format("woff");}.ff3{font-family:ff3;line-height:1.346191;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_6c280aabc499e73aa5b7f63c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.693359;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;}
.m2{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m1{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;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws3{word-spacing:-14.940000px;}
.ws2{word-spacing:-12.060000px;}
.ws1{word-spacing:0.000000px;}
._6{margin-left:-2.119303px;}
._0{margin-left:-1.008000px;}
._1{width:1.296000px;}
._2{width:2.996593px;}
._5{width:4.599360px;}
._d{width:5.696263px;}
._e{width:6.925645px;}
._8{width:8.279623px;}
._7{width:9.339463px;}
._f{width:10.664263px;}
._3{width:12.055680px;}
._4{width:13.674240px;}
._c{width:15.130388px;}
._b{width:18.868628px;}
._9{width:19.871623px;}
._a{width:21.064320px;}
._10{width:23.647303px;}
._11{width:24.648172px;}
._14{width:75.600000px;}
._12{width:106.097475px;}
._13{width:204.055200px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs4{font-size:18.000000px;}
.fs9{font-size:23.760000px;}
.fs6{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y36{bottom:4.605150px;}
.y35{bottom:27.627974px;}
.y39{bottom:57.719550px;}
.y34{bottom:111.359550px;}
.y70{bottom:118.559850px;}
.y33{bottom:128.819550px;}
.y6f{bottom:140.339850px;}
.y6e{bottom:154.559850px;}
.y32{bottom:155.279550px;}
.y6d{bottom:172.559850px;}
.y31{bottom:172.919550px;}
.y6c{bottom:186.599850px;}
.y30{bottom:190.379550px;}
.y6b{bottom:200.999850px;}
.y2f{bottom:207.839550px;}
.y6a{bottom:218.999850px;}
.y2e{bottom:225.299550px;}
.y69{bottom:233.039850px;}
.y2d{bottom:242.759550px;}
.y68{bottom:251.219850px;}
.y2c{bottom:260.219550px;}
.y67{bottom:274.439850px;}
.y2b{bottom:277.679550px;}
.y66{bottom:292.439850px;}
.y2a{bottom:295.139550px;}
.y65{bottom:304.319850px;}
.y64{bottom:320.159850px;}
.y29{bottom:321.599550px;}
.y63{bottom:335.999850px;}
.y28{bottom:339.059550px;}
.y62{bottom:355.439850px;}
.y27{bottom:356.519550px;}
.y61{bottom:373.259850px;}
.y26{bottom:373.979550px;}
.y60{bottom:385.499850px;}
.y25{bottom:391.439550px;}
.y5f{bottom:402.959850px;}
.y24{bottom:408.899550px;}
.y5e{bottom:420.239850px;}
.y23{bottom:426.359550px;}
.y5d{bottom:437.699850px;}
.y22{bottom:443.819550px;}
.y5c{bottom:455.159850px;}
.y21{bottom:461.459550px;}
.y5b{bottom:472.439850px;}
.y20{bottom:487.919550px;}
.y5a{bottom:495.659850px;}
.y1f{bottom:505.379550px;}
.y59{bottom:509.879700px;}
.y1e{bottom:522.839550px;}
.y58{bottom:532.559700px;}
.y1d{bottom:540.299550px;}
.y57{bottom:555.239700px;}
.y1c{bottom:557.759550px;}
.y1b{bottom:575.219550px;}
.y56{bottom:578.099700px;}
.y1a{bottom:592.679550px;}
.y55{bottom:600.779700px;}
.y19{bottom:610.139550px;}
.y54{bottom:623.459700px;}
.y18{bottom:627.599550px;}
.y53{bottom:644.879550px;}
.y17{bottom:645.059550px;}
.y52{bottom:661.259550px;}
.y16{bottom:662.519550px;}
.y51{bottom:679.079550px;}
.y15{bottom:679.979550px;}
.y50{bottom:701.759550px;}
.y14{bottom:706.439550px;}
.y13{bottom:723.899550px;}
.y4f{bottom:724.439550px;}
.y12{bottom:741.359550px;}
.y4e{bottom:747.119550px;}
.y11{bottom:758.999550px;}
.y4d{bottom:769.799550px;}
.y10{bottom:776.459550px;}
.y4c{bottom:791.399550px;}
.yf{bottom:793.919550px;}
.ye{bottom:811.379550px;}
.y4b{bottom:827.579550px;}
.yd{bottom:828.839550px;}
.y4a{bottom:845.039550px;}
.yc{bottom:846.299550px;}
.y49{bottom:862.499550px;}
.yb{bottom:863.759550px;}
.y48{bottom:879.959550px;}
.ya{bottom:881.219550px;}
.y47{bottom:897.419550px;}
.y9{bottom:898.679550px;}
.y46{bottom:914.879550px;}
.y8{bottom:916.139550px;}
.y45{bottom:932.339550px;}
.y7{bottom:933.599550px;}
.y44{bottom:949.979550px;}
.y6{bottom:951.059550px;}
.y43{bottom:967.439550px;}
.y42{bottom:984.899550px;}
.y5{bottom:994.439550px;}
.y41{bottom:1011.359550px;}
.y4{bottom:1011.719550px;}
.y40{bottom:1028.819550px;}
.y3{bottom:1028.999550px;}
.y3f{bottom:1046.279550px;}
.y3e{bottom:1063.739550px;}
.y3d{bottom:1081.199550px;}
.y2{bottom:1082.099550px;}
.y3c{bottom:1098.659550px;}
.y1{bottom:1123.499550px;}
.y3b{bottom:1125.119550px;}
.y3a{bottom:1142.579550px;}
.y38{bottom:1178.039550px;}
.y37{bottom:1195.319550px;}
.ha{height:3.903750px;}
.h6{height:12.506836px;}
.hb{height:16.509023px;}
.h4{height:20.205060px;}
.h7{height:33.518320px;}
.he{height:37.520508px;}
.hd{height:40.501406px;}
.h2{height:41.522695px;}
.hc{height:44.893125px;}
.h3{height:46.025156px;}
.h8{height:50.027344px;}
.h9{height:50.027944px;}
.h5{height:62.373047px;}
.h1{height:100.054688px;}
.h0{height:1263.000000px;}
.w2{width:52.903500px;}
.w1{width:52.905000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x7{left:84.950238px;}
.x6{left:100.251552px;}
.xc{left:106.564998px;}
.x1{left:123.840000px;}
.x2{left:127.800622px;}
.x10{left:138.238199px;}
.xb{left:142.918312px;}
.xa{left:218.339532px;}
.x4{left:223.020361px;}
.x3{left:236.339865px;}
.x5{left:244.081202px;}
.xe{left:375.479769px;}
.xf{left:404.100586px;}
.x8{left:419.798263px;}
.x9{left:446.579850px;}
.xd{left:454.139850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1{word-spacing:0.000000pt;}
._6{margin-left:-1.883825pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.152000pt;}
._2{width:2.663638pt;}
._5{width:4.088320pt;}
._d{width:5.063345pt;}
._e{width:6.156129pt;}
._8{width:7.359665pt;}
._7{width:8.301745pt;}
._f{width:9.479345pt;}
._3{width:10.716160pt;}
._4{width:12.154880pt;}
._c{width:13.449234pt;}
._b{width:16.772114pt;}
._9{width:17.663665pt;}
._a{width:18.723840pt;}
._10{width:21.019825pt;}
._11{width:21.909486pt;}
._14{width:67.200000pt;}
._12{width:94.308867pt;}
._13{width:181.382400pt;}
.fs8{font-size:5.120000pt;}
.fs4{font-size:16.000000pt;}
.fs9{font-size:21.120000pt;}
.fs6{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:4.093467pt;}
.y35{bottom:24.558199pt;}
.y39{bottom:51.306267pt;}
.y34{bottom:98.986267pt;}
.y70{bottom:105.386533pt;}
.y33{bottom:114.506267pt;}
.y6f{bottom:124.746533pt;}
.y6e{bottom:137.386533pt;}
.y32{bottom:138.026267pt;}
.y6d{bottom:153.386533pt;}
.y31{bottom:153.706267pt;}
.y6c{bottom:165.866533pt;}
.y30{bottom:169.226267pt;}
.y6b{bottom:178.666533pt;}
.y2f{bottom:184.746267pt;}
.y6a{bottom:194.666533pt;}
.y2e{bottom:200.266267pt;}
.y69{bottom:207.146533pt;}
.y2d{bottom:215.786267pt;}
.y68{bottom:223.306533pt;}
.y2c{bottom:231.306267pt;}
.y67{bottom:243.946533pt;}
.y2b{bottom:246.826267pt;}
.y66{bottom:259.946533pt;}
.y2a{bottom:262.346267pt;}
.y65{bottom:270.506533pt;}
.y64{bottom:284.586533pt;}
.y29{bottom:285.866267pt;}
.y63{bottom:298.666533pt;}
.y28{bottom:301.386267pt;}
.y62{bottom:315.946533pt;}
.y27{bottom:316.906267pt;}
.y61{bottom:331.786533pt;}
.y26{bottom:332.426267pt;}
.y60{bottom:342.666533pt;}
.y25{bottom:347.946267pt;}
.y5f{bottom:358.186533pt;}
.y24{bottom:363.466267pt;}
.y5e{bottom:373.546533pt;}
.y23{bottom:378.986267pt;}
.y5d{bottom:389.066533pt;}
.y22{bottom:394.506267pt;}
.y5c{bottom:404.586533pt;}
.y21{bottom:410.186267pt;}
.y5b{bottom:419.946533pt;}
.y20{bottom:433.706267pt;}
.y5a{bottom:440.586533pt;}
.y1f{bottom:449.226267pt;}
.y59{bottom:453.226400pt;}
.y1e{bottom:464.746267pt;}
.y58{bottom:473.386400pt;}
.y1d{bottom:480.266267pt;}
.y57{bottom:493.546400pt;}
.y1c{bottom:495.786267pt;}
.y1b{bottom:511.306267pt;}
.y56{bottom:513.866400pt;}
.y1a{bottom:526.826267pt;}
.y55{bottom:534.026400pt;}
.y19{bottom:542.346267pt;}
.y54{bottom:554.186400pt;}
.y18{bottom:557.866267pt;}
.y53{bottom:573.226267pt;}
.y17{bottom:573.386267pt;}
.y52{bottom:587.786267pt;}
.y16{bottom:588.906267pt;}
.y51{bottom:603.626267pt;}
.y15{bottom:604.426267pt;}
.y50{bottom:623.786267pt;}
.y14{bottom:627.946267pt;}
.y13{bottom:643.466267pt;}
.y4f{bottom:643.946267pt;}
.y12{bottom:658.986267pt;}
.y4e{bottom:664.106267pt;}
.y11{bottom:674.666267pt;}
.y4d{bottom:684.266267pt;}
.y10{bottom:690.186267pt;}
.y4c{bottom:703.466267pt;}
.yf{bottom:705.706267pt;}
.ye{bottom:721.226267pt;}
.y4b{bottom:735.626267pt;}
.yd{bottom:736.746267pt;}
.y4a{bottom:751.146267pt;}
.yc{bottom:752.266267pt;}
.y49{bottom:766.666267pt;}
.yb{bottom:767.786267pt;}
.y48{bottom:782.186267pt;}
.ya{bottom:783.306267pt;}
.y47{bottom:797.706267pt;}
.y9{bottom:798.826267pt;}
.y46{bottom:813.226267pt;}
.y8{bottom:814.346267pt;}
.y45{bottom:828.746267pt;}
.y7{bottom:829.866267pt;}
.y44{bottom:844.426267pt;}
.y6{bottom:845.386267pt;}
.y43{bottom:859.946267pt;}
.y42{bottom:875.466267pt;}
.y5{bottom:883.946267pt;}
.y41{bottom:898.986267pt;}
.y4{bottom:899.306267pt;}
.y40{bottom:914.506267pt;}
.y3{bottom:914.666267pt;}
.y3f{bottom:930.026267pt;}
.y3e{bottom:945.546267pt;}
.y3d{bottom:961.066267pt;}
.y2{bottom:961.866267pt;}
.y3c{bottom:976.586267pt;}
.y1{bottom:998.666267pt;}
.y3b{bottom:1000.106267pt;}
.y3a{bottom:1015.626267pt;}
.y38{bottom:1047.146267pt;}
.y37{bottom:1062.506267pt;}
.ha{height:3.470000pt;}
.h6{height:11.117188pt;}
.hb{height:14.674687pt;}
.h4{height:17.960053pt;}
.h7{height:29.794062pt;}
.he{height:33.351562pt;}
.hd{height:36.001250pt;}
.h2{height:36.909063pt;}
.hc{height:39.905000pt;}
.h3{height:40.911250pt;}
.h8{height:44.468750pt;}
.h9{height:44.469283pt;}
.h5{height:55.442708pt;}
.h1{height:88.937500pt;}
.h0{height:1122.666667pt;}
.w2{width:47.025333pt;}
.w1{width:47.026667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x7{left:75.511323pt;}
.x6{left:89.112491pt;}
.xc{left:94.724442pt;}
.x1{left:110.080000pt;}
.x2{left:113.600553pt;}
.x10{left:122.878399pt;}
.xb{left:127.038500pt;}
.xa{left:194.079584pt;}
.x4{left:198.240321pt;}
.x3{left:210.079880pt;}
.x5{left:216.961069pt;}
.xe{left:333.759795pt;}
.xf{left:359.200521pt;}
.x8{left:373.154012pt;}
.x9{left:396.959867pt;}
.xd{left:403.679867pt;}
}

