
    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_a2db09381cbf46143b037ff5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.194000;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_4e72c934084ccb0b769f5faa.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e50222f752ddf1d58629c7fd.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5c32f490d64956e9b1ba54fb.woff')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_5c9731b91edea45d3257fb57.woff')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{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;}
.ls2{letter-spacing:-0.099000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.072000px;}
.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;}
}
.ws1{word-spacing:-24.665519px;}
.ws2{word-spacing:-19.485760px;}
.ws4{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.402570px;}
.ws3{word-spacing:0.000000px;}
._1a{margin-left:-5.256000px;}
._3{margin-left:-4.248000px;}
._5{margin-left:-2.664000px;}
._4{margin-left:-1.080000px;}
._0{width:1.292760px;}
._2{width:2.676960px;}
._12{width:4.065120px;}
._f{width:5.472000px;}
._7{width:6.624000px;}
._6{width:7.704000px;}
._8{width:9.024000px;}
._15{width:10.800000px;}
._e{width:11.808000px;}
._d{width:12.888000px;}
._17{width:14.448000px;}
._16{width:15.552000px;}
._18{width:16.632000px;}
._14{width:19.800000px;}
._13{width:21.024000px;}
._a{width:23.040000px;}
._9{width:24.048000px;}
._11{width:25.776000px;}
._10{width:26.928000px;}
._c{width:28.656000px;}
._b{width:29.664000px;}
._19{width:32.904000px;}
._1{width:1140.360000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.880000px;}
.fs0{font-size:50.469447px;}
.fs5{font-size:59.956185px;}
.fs6{font-size:60.120000px;}
.fs2{font-size:65.880000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:75.893905px;}
.y0{bottom:0.000000px;}
.y29{bottom:3.510000px;}
.y5{bottom:3.780000px;}
.y52{bottom:18.000000px;}
.y7{bottom:22.410000px;}
.y4{bottom:24.480000px;}
.y3{bottom:41.310000px;}
.y2a{bottom:74.160000px;}
.y6{bottom:76.140000px;}
.y4b{bottom:146.160000px;}
.y50{bottom:150.300000px;}
.y27{bottom:152.640000px;}
.y4a{bottom:177.210000px;}
.y26{bottom:183.690000px;}
.y4f{bottom:192.690000px;}
.y49{bottom:208.260000px;}
.y25{bottom:214.740000px;}
.y4e{bottom:235.020000px;}
.y48{bottom:239.340000px;}
.y24{bottom:245.820000px;}
.y47{bottom:270.390000px;}
.y23{bottom:276.870000px;}
.y4d{bottom:277.410000px;}
.y46{bottom:301.440000px;}
.y51{bottom:303.780000px;}
.y22{bottom:307.920000px;}
.y4c{bottom:319.800000px;}
.y45{bottom:332.490000px;}
.y21{bottom:338.970000px;}
.y44{bottom:363.540000px;}
.y20{bottom:370.020000px;}
.y43{bottom:394.590000px;}
.y1f{bottom:401.070000px;}
.y42{bottom:425.640000px;}
.y1e{bottom:432.120000px;}
.y41{bottom:456.690000px;}
.y1d{bottom:463.170000px;}
.y40{bottom:487.740000px;}
.y1c{bottom:494.220000px;}
.y3f{bottom:518.790000px;}
.y1b{bottom:525.270000px;}
.y3e{bottom:549.840000px;}
.y1a{bottom:556.320000px;}
.y3d{bottom:580.890000px;}
.y19{bottom:587.370000px;}
.y3c{bottom:611.940000px;}
.y18{bottom:618.420000px;}
.y3b{bottom:642.990000px;}
.y17{bottom:649.500000px;}
.y3a{bottom:674.070000px;}
.y16{bottom:680.550000px;}
.y39{bottom:705.120000px;}
.y15{bottom:711.600000px;}
.y38{bottom:736.170000px;}
.y14{bottom:742.650000px;}
.y37{bottom:767.220000px;}
.y13{bottom:773.700000px;}
.y36{bottom:798.180000px;}
.y12{bottom:804.660000px;}
.y35{bottom:829.230000px;}
.y11{bottom:835.710000px;}
.y34{bottom:860.280000px;}
.y10{bottom:866.760000px;}
.y33{bottom:891.330000px;}
.yf{bottom:897.810000px;}
.y32{bottom:922.380000px;}
.ye{bottom:928.860000px;}
.y31{bottom:953.430000px;}
.yd{bottom:959.910000px;}
.y30{bottom:984.480000px;}
.yc{bottom:990.960000px;}
.y2f{bottom:1015.530000px;}
.yb{bottom:1022.010000px;}
.y2e{bottom:1046.580000px;}
.ya{bottom:1053.060000px;}
.y2d{bottom:1077.660000px;}
.y9{bottom:1091.880000px;}
.y2c{bottom:1108.710000px;}
.y8{bottom:1139.130000px;}
.y2b{bottom:1139.760000px;}
.y28{bottom:1160.460000px;}
.y2{bottom:1189.980000px;}
.y1{bottom:1208.700000px;}
.h5{height:38.160000px;}
.h9{height:39.510000px;}
.h2{height:47.542219px;}
.hb{height:51.030000px;}
.ha{height:56.633040px;}
.h8{height:64.546875px;}
.h3{height:65.526152px;}
.h7{height:67.824000px;}
.h4{height:70.664062px;}
.h6{height:71.492058px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:31.230000px;}
.w4{width:61.830000px;}
.w5{width:112.500000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:10.800000px;}
.xd{left:50.940000px;}
.x13{left:101.520000px;}
.x12{left:124.950000px;}
.x3{left:127.649987px;}
.xb{left:170.039987px;}
.x4{left:281.549987px;}
.xe{left:283.799987px;}
.xf{left:297.930000px;}
.x7{left:300.900000px;}
.x1{left:308.099987px;}
.x9{left:339.959987px;}
.x2{left:369.959987px;}
.x10{left:392.279987px;}
.xc{left:413.160000px;}
.x5{left:419.549987px;}
.x6{left:446.549987px;}
.xa{left:553.199987px;}
.x11{left:765.539987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.088000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.064000pt;}
.ws1{word-spacing:-21.924906pt;}
.ws2{word-spacing:-17.320676pt;}
.ws4{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.580062pt;}
.ws3{word-spacing:0.000000pt;}
._1a{margin-left:-4.672000pt;}
._3{margin-left:-3.776000pt;}
._5{margin-left:-2.368000pt;}
._4{margin-left:-0.960000pt;}
._0{width:1.149120pt;}
._2{width:2.379520pt;}
._12{width:3.613440pt;}
._f{width:4.864000pt;}
._7{width:5.888000pt;}
._6{width:6.848000pt;}
._8{width:8.021333pt;}
._15{width:9.600000pt;}
._e{width:10.496000pt;}
._d{width:11.456000pt;}
._17{width:12.842667pt;}
._16{width:13.824000pt;}
._18{width:14.784000pt;}
._14{width:17.600000pt;}
._13{width:18.688000pt;}
._a{width:20.480000pt;}
._9{width:21.376000pt;}
._11{width:22.912000pt;}
._10{width:23.936000pt;}
._c{width:25.472000pt;}
._b{width:26.368000pt;}
._19{width:29.248000pt;}
._1{width:1013.653333pt;}
.fs1{font-size:42.560000pt;}
.fs0{font-size:44.861730pt;}
.fs5{font-size:53.294387pt;}
.fs6{font-size:53.440000pt;}
.fs2{font-size:58.560000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:67.461249pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:3.120000pt;}
.y5{bottom:3.360000pt;}
.y52{bottom:16.000000pt;}
.y7{bottom:19.920000pt;}
.y4{bottom:21.760000pt;}
.y3{bottom:36.720000pt;}
.y2a{bottom:65.920000pt;}
.y6{bottom:67.680000pt;}
.y4b{bottom:129.920000pt;}
.y50{bottom:133.600000pt;}
.y27{bottom:135.680000pt;}
.y4a{bottom:157.520000pt;}
.y26{bottom:163.280000pt;}
.y4f{bottom:171.280000pt;}
.y49{bottom:185.120000pt;}
.y25{bottom:190.880000pt;}
.y4e{bottom:208.906667pt;}
.y48{bottom:212.746667pt;}
.y24{bottom:218.506667pt;}
.y47{bottom:240.346667pt;}
.y23{bottom:246.106667pt;}
.y4d{bottom:246.586667pt;}
.y46{bottom:267.946667pt;}
.y51{bottom:270.026667pt;}
.y22{bottom:273.706667pt;}
.y4c{bottom:284.266667pt;}
.y45{bottom:295.546667pt;}
.y21{bottom:301.306667pt;}
.y44{bottom:323.146667pt;}
.y20{bottom:328.906667pt;}
.y43{bottom:350.746667pt;}
.y1f{bottom:356.506667pt;}
.y42{bottom:378.346667pt;}
.y1e{bottom:384.106667pt;}
.y41{bottom:405.946667pt;}
.y1d{bottom:411.706667pt;}
.y40{bottom:433.546667pt;}
.y1c{bottom:439.306667pt;}
.y3f{bottom:461.146667pt;}
.y1b{bottom:466.906667pt;}
.y3e{bottom:488.746667pt;}
.y1a{bottom:494.506667pt;}
.y3d{bottom:516.346667pt;}
.y19{bottom:522.106667pt;}
.y3c{bottom:543.946667pt;}
.y18{bottom:549.706667pt;}
.y3b{bottom:571.546667pt;}
.y17{bottom:577.333333pt;}
.y3a{bottom:599.173333pt;}
.y16{bottom:604.933333pt;}
.y39{bottom:626.773333pt;}
.y15{bottom:632.533333pt;}
.y38{bottom:654.373333pt;}
.y14{bottom:660.133333pt;}
.y37{bottom:681.973333pt;}
.y13{bottom:687.733333pt;}
.y36{bottom:709.493333pt;}
.y12{bottom:715.253333pt;}
.y35{bottom:737.093333pt;}
.y11{bottom:742.853333pt;}
.y34{bottom:764.693333pt;}
.y10{bottom:770.453333pt;}
.y33{bottom:792.293333pt;}
.yf{bottom:798.053333pt;}
.y32{bottom:819.893333pt;}
.ye{bottom:825.653333pt;}
.y31{bottom:847.493333pt;}
.yd{bottom:853.253333pt;}
.y30{bottom:875.093333pt;}
.yc{bottom:880.853333pt;}
.y2f{bottom:902.693333pt;}
.yb{bottom:908.453333pt;}
.y2e{bottom:930.293333pt;}
.ya{bottom:936.053333pt;}
.y2d{bottom:957.920000pt;}
.y9{bottom:970.560000pt;}
.y2c{bottom:985.520000pt;}
.y8{bottom:1012.560000pt;}
.y2b{bottom:1013.120000pt;}
.y28{bottom:1031.520000pt;}
.y2{bottom:1057.760000pt;}
.y1{bottom:1074.400000pt;}
.h5{height:33.920000pt;}
.h9{height:35.120000pt;}
.h2{height:42.259750pt;}
.hb{height:45.360000pt;}
.ha{height:50.340480pt;}
.h8{height:57.375000pt;}
.h3{height:58.245469pt;}
.h7{height:60.288000pt;}
.h4{height:62.812500pt;}
.h6{height:63.548496pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:27.760000pt;}
.w4{width:54.960000pt;}
.w5{width:100.000000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:9.600000pt;}
.xd{left:45.280000pt;}
.x13{left:90.240000pt;}
.x12{left:111.066667pt;}
.x3{left:113.466655pt;}
.xb{left:151.146655pt;}
.x4{left:250.266655pt;}
.xe{left:252.266655pt;}
.xf{left:264.826667pt;}
.x7{left:267.466667pt;}
.x1{left:273.866655pt;}
.x9{left:302.186655pt;}
.x2{left:328.853322pt;}
.x10{left:348.693322pt;}
.xc{left:367.253333pt;}
.x5{left:372.933322pt;}
.x6{left:396.933322pt;}
.xa{left:491.733322pt;}
.x11{left:680.479988pt;}
}

