
    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_3cd722e0e090fb6316afb61d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284180;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_28a80fdad7f61c18559ab0d9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_1cfeb50b2ca033fc0f98fc4a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.214844;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_37879b3a369aeeaf7e9c0ac9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_de53e9c8926fd66a9554d94a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_6393559d39f541a5bf62a4eb.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_53ff72ab8f751a34ca6f3503.woff')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ca775d8d6726d255db400050.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_72dd087b5f88e6e47518f111.woff')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v1{vertical-align:-92.880000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.106800px;}
.ls6{letter-spacing:-0.089400px;}
.ls8{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.269400px;}
.ls2{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.ls4{letter-spacing:1152.324000px;}
.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;}
}
.ws3{word-spacing:-20.016000px;}
.ws4{word-spacing:-19.584000px;}
.ws5{word-spacing:-16.613280px;}
.ws6{word-spacing:-16.506480px;}
.ws2{word-spacing:-15.300000px;}
.ws1{word-spacing:-14.940000px;}
.ws0{word-spacing:-11.519880px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-1.447200px;}
._1{width:1.176240px;}
._2{width:2.423760px;}
._c{width:3.888000px;}
._15{width:4.896000px;}
._9{width:5.904000px;}
._8{width:6.984000px;}
._10{width:8.087520px;}
._d{width:9.432000px;}
._4{width:10.632000px;}
._e{width:12.024000px;}
._b{width:13.032000px;}
._a{width:14.112000px;}
._6{width:15.859200px;}
._5{width:17.496000px;}
._7{width:18.786960px;}
._11{width:21.672000px;}
._12{width:23.544000px;}
._13{width:24.768000px;}
._14{width:26.208000px;}
._1d{width:27.576000px;}
._1c{width:29.016000px;}
._1b{width:30.024000px;}
._1a{width:38.088000px;}
._19{width:39.384000px;}
._17{width:40.536000px;}
._18{width:41.891280px;}
._16{width:58.080000px;}
._f{width:65.287200px;}
._3{width:66.528000px;}
._1e{width:79.920000px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,153);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:2.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:0.180000px;}
.y6{bottom:2.520000px;}
.y11{bottom:3.600000px;}
.y13{bottom:3.780000px;}
.y8{bottom:4.500000px;}
.y15{bottom:14.220000px;}
.y5{bottom:14.400000px;}
.y10{bottom:20.880000px;}
.yf{bottom:38.160000px;}
.ye{bottom:55.260000px;}
.yd{bottom:72.540000px;}
.yc{bottom:93.420000px;}
.y2{bottom:107.670000px;}
.yb{bottom:110.916000px;}
.ya{bottom:128.196000px;}
.y2b{bottom:156.990000px;}
.y4f{bottom:174.090000px;}
.y2a{bottom:180.930000px;}
.y4e{bottom:197.850000px;}
.y29{bottom:204.690000px;}
.y4d{bottom:221.610000px;}
.y28{bottom:228.450000px;}
.y4c{bottom:245.550000px;}
.y27{bottom:252.210000px;}
.y4b{bottom:269.310000px;}
.y26{bottom:276.150000px;}
.y4a{bottom:293.070000px;}
.y49{bottom:316.830000px;}
.y25{bottom:323.130000px;}
.y48{bottom:340.770000px;}
.y24{bottom:344.190000px;}
.y47{bottom:364.575000px;}
.y23{bottom:365.475000px;}
.y46{bottom:388.335000px;}
.y22{bottom:389.235000px;}
.y45{bottom:412.095000px;}
.y21{bottom:412.995000px;}
.y44{bottom:435.855000px;}
.y20{bottom:436.755000px;}
.y43{bottom:459.795000px;}
.y1f{bottom:460.695000px;}
.y42{bottom:483.555000px;}
.y1e{bottom:484.455000px;}
.y41{bottom:507.315000px;}
.y1d{bottom:508.215000px;}
.y40{bottom:531.075000px;}
.y1c{bottom:531.975000px;}
.y14{bottom:547.635000px;}
.y3f{bottom:555.015000px;}
.y1b{bottom:555.735000px;}
.y3e{bottom:578.775000px;}
.y1a{bottom:579.675000px;}
.y19{bottom:599.475000px;}
.y3d{bottom:602.535000px;}
.y3c{bottom:626.325000px;}
.y3b{bottom:650.265000px;}
.y3a{bottom:674.025000px;}
.y39{bottom:697.785000px;}
.y38{bottom:721.545000px;}
.y37{bottom:745.485000px;}
.y36{bottom:769.245000px;}
.y35{bottom:793.005000px;}
.y34{bottom:816.765000px;}
.y33{bottom:840.705000px;}
.y32{bottom:864.465000px;}
.y31{bottom:888.270000px;}
.y30{bottom:912.030000px;}
.y2f{bottom:935.790000px;}
.y18{bottom:950.010000px;}
.y2e{bottom:959.730000px;}
.y17{bottom:973.770000px;}
.y2d{bottom:983.490000px;}
.y16{bottom:999.870000px;}
.y2c{bottom:1007.250000px;}
.y9{bottom:1027.770000px;}
.y7{bottom:1041.270000px;}
.y4{bottom:1061.970000px;}
.y1{bottom:1088.610000px;}
.y12{bottom:1126.410000px;}
.h8{height:3.003750px;}
.hb{height:17.310000px;}
.h9{height:20.685000px;}
.h5{height:26.625000px;}
.hc{height:28.065000px;}
.h6{height:50.312812px;}
.h3{height:58.621992px;}
.ha{height:58.651172px;}
.hf{height:64.546875px;}
.h4{height:70.664062px;}
.he{height:75.093750px;}
.hd{height:97.069219px;}
.h2{height:121.162500px;}
.h7{height:147.810000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:34.909500px;}
.w6{width:84.810000px;}
.w3{width:690.975000px;}
.w2{width:702.150000px;}
.w4{width:723.735000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:3.949500px;}
.xb{left:10.830000px;}
.x4{left:35.983500px;}
.x5{left:119.566500px;}
.x7{left:127.656000px;}
.x1{left:130.356000px;}
.x3{left:138.286500px;}
.x6{left:361.858500px;}
.x8{left:432.975000px;}
.xc{left:575.025000px;}
.x2{left:696.024000px;}
.xd{left:765.510000px;}
.xa{left:808.170000px;}
@media print{
.v1{vertical-align:-82.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:-0.079467pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.239467pt;}
.ls2{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls4{letter-spacing:1024.288000pt;}
.ws3{word-spacing:-17.792000pt;}
.ws4{word-spacing:-17.408000pt;}
.ws5{word-spacing:-14.767360pt;}
.ws6{word-spacing:-14.672427pt;}
.ws2{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws0{word-spacing:-10.239893pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-1.286400pt;}
._1{width:1.045547pt;}
._2{width:2.154453pt;}
._c{width:3.456000pt;}
._15{width:4.352000pt;}
._9{width:5.248000pt;}
._8{width:6.208000pt;}
._10{width:7.188907pt;}
._d{width:8.384000pt;}
._4{width:9.450667pt;}
._e{width:10.688000pt;}
._b{width:11.584000pt;}
._a{width:12.544000pt;}
._6{width:14.097067pt;}
._5{width:15.552000pt;}
._7{width:16.699520pt;}
._11{width:19.264000pt;}
._12{width:20.928000pt;}
._13{width:22.016000pt;}
._14{width:23.296000pt;}
._1d{width:24.512000pt;}
._1c{width:25.792000pt;}
._1b{width:26.688000pt;}
._1a{width:33.856000pt;}
._19{width:35.008000pt;}
._17{width:36.032000pt;}
._18{width:37.236693pt;}
._16{width:51.626667pt;}
._f{width:58.033067pt;}
._3{width:59.136000pt;}
._1e{width:71.040000pt;}
.fs4{font-size:2.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:0.160000pt;}
.y6{bottom:2.240000pt;}
.y11{bottom:3.200000pt;}
.y13{bottom:3.360000pt;}
.y8{bottom:4.000000pt;}
.y15{bottom:12.640000pt;}
.y5{bottom:12.800000pt;}
.y10{bottom:18.560000pt;}
.yf{bottom:33.920000pt;}
.ye{bottom:49.120000pt;}
.yd{bottom:64.480000pt;}
.yc{bottom:83.040000pt;}
.y2{bottom:95.706667pt;}
.yb{bottom:98.592000pt;}
.ya{bottom:113.952000pt;}
.y2b{bottom:139.546667pt;}
.y4f{bottom:154.746667pt;}
.y2a{bottom:160.826667pt;}
.y4e{bottom:175.866667pt;}
.y29{bottom:181.946667pt;}
.y4d{bottom:196.986667pt;}
.y28{bottom:203.066667pt;}
.y4c{bottom:218.266667pt;}
.y27{bottom:224.186667pt;}
.y4b{bottom:239.386667pt;}
.y26{bottom:245.466667pt;}
.y4a{bottom:260.506667pt;}
.y49{bottom:281.626667pt;}
.y25{bottom:287.226667pt;}
.y48{bottom:302.906667pt;}
.y24{bottom:305.946667pt;}
.y47{bottom:324.066667pt;}
.y23{bottom:324.866667pt;}
.y46{bottom:345.186667pt;}
.y22{bottom:345.986667pt;}
.y45{bottom:366.306667pt;}
.y21{bottom:367.106667pt;}
.y44{bottom:387.426667pt;}
.y20{bottom:388.226667pt;}
.y43{bottom:408.706667pt;}
.y1f{bottom:409.506667pt;}
.y42{bottom:429.826667pt;}
.y1e{bottom:430.626667pt;}
.y41{bottom:450.946667pt;}
.y1d{bottom:451.746667pt;}
.y40{bottom:472.066667pt;}
.y1c{bottom:472.866667pt;}
.y14{bottom:486.786667pt;}
.y3f{bottom:493.346667pt;}
.y1b{bottom:493.986667pt;}
.y3e{bottom:514.466667pt;}
.y1a{bottom:515.266667pt;}
.y19{bottom:532.866667pt;}
.y3d{bottom:535.586667pt;}
.y3c{bottom:556.733333pt;}
.y3b{bottom:578.013333pt;}
.y3a{bottom:599.133333pt;}
.y39{bottom:620.253333pt;}
.y38{bottom:641.373333pt;}
.y37{bottom:662.653333pt;}
.y36{bottom:683.773333pt;}
.y35{bottom:704.893333pt;}
.y34{bottom:726.013333pt;}
.y33{bottom:747.293333pt;}
.y32{bottom:768.413333pt;}
.y31{bottom:789.573333pt;}
.y30{bottom:810.693333pt;}
.y2f{bottom:831.813333pt;}
.y18{bottom:844.453333pt;}
.y2e{bottom:853.093333pt;}
.y17{bottom:865.573333pt;}
.y2d{bottom:874.213333pt;}
.y16{bottom:888.773333pt;}
.y2c{bottom:895.333333pt;}
.y9{bottom:913.573333pt;}
.y7{bottom:925.573333pt;}
.y4{bottom:943.973333pt;}
.y1{bottom:967.653333pt;}
.y12{bottom:1001.253333pt;}
.h8{height:2.670000pt;}
.hb{height:15.386667pt;}
.h9{height:18.386667pt;}
.h5{height:23.666667pt;}
.hc{height:24.946667pt;}
.h6{height:44.722500pt;}
.h3{height:52.108438pt;}
.ha{height:52.134375pt;}
.hf{height:57.375000pt;}
.h4{height:62.812500pt;}
.he{height:66.750000pt;}
.hd{height:86.283750pt;}
.h2{height:107.700000pt;}
.h7{height:131.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:31.030667pt;}
.w6{width:75.386667pt;}
.w3{width:614.200000pt;}
.w2{width:624.133333pt;}
.w4{width:643.320000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:3.510667pt;}
.xb{left:9.626667pt;}
.x4{left:31.985333pt;}
.x5{left:106.281333pt;}
.x7{left:113.472000pt;}
.x1{left:115.872000pt;}
.x3{left:122.921333pt;}
.x6{left:321.652000pt;}
.x8{left:384.866667pt;}
.xc{left:511.133333pt;}
.x2{left:618.688000pt;}
.xd{left:680.453333pt;}
.xa{left:718.373333pt;}
}

