
    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_2695ad1e78b423d57754b503.woff')format("woff");}.ff1{font-family:ff1;line-height:0.982910;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_72cdb89b5608a181780d0744.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_3bb29f448c4781675e9a8746.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_beb30bc1191214b87b94e53d.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_141998ac35482f5094461063.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_69249dafb781f660eeedb91c.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_755d59f5a058c2d35efdb352.woff')format("woff");}.ff7{font-family:ff7;line-height:0.904297;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_dc61daa5e78ac5deba2ec922.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_a88631e5eb8cbf17bc4d0a3a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.107910;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:ffa;src:url('chunks/assets/font_2087af6e4ac287211a0790aa.woff')format("woff");}.ffa{font-family:ffa;line-height:0.690918;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;}
.ls6{letter-spacing:-0.828000px;}
.ls2{letter-spacing:-0.457800px;}
.ls1{letter-spacing:-0.305400px;}
.ls3{letter-spacing:-0.109200px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.262080px;}
.ls4{letter-spacing:0.610560px;}
.ls8{letter-spacing:0.612000px;}
.ls7{letter-spacing:194.129280px;}
.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;}
}
.ws5{word-spacing:-66.240000px;}
.ws4{word-spacing:-19.026720px;}
.ws2{word-spacing:-18.414720px;}
.ws3{word-spacing:-18.305520px;}
.ws0{word-spacing:-18.109320px;}
.ws1{word-spacing:0.000000px;}
._1{margin-left:-2.106720px;}
._3{margin-left:-1.059840px;}
._0{width:1.244880px;}
._2{width:2.585520px;}
._7{width:4.106880px;}
._8{width:5.297760px;}
._b{width:6.346080px;}
._f{width:8.280000px;}
._e{width:10.200960px;}
._13{width:11.207520px;}
._c{width:12.241440px;}
._4{width:13.711680px;}
._5{width:14.970240px;}
._6{width:16.149600px;}
._d{width:17.156160px;}
._9{width:19.474560px;}
._a{width:20.521440px;}
._19{width:22.057920px;}
._17{width:23.184000px;}
._10{width:26.429760px;}
._11{width:27.609840px;}
._15{width:29.485920px;}
._14{width:30.928320px;}
._1a{width:34.559520px;}
._18{width:59.114880px;}
._16{width:67.241280px;}
._12{width:194.129280px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:4.500000px;}
.y4{bottom:57.456000px;}
.y5{bottom:73.656000px;}
.y3{bottom:78.156000px;}
.y21{bottom:102.456000px;}
.y3b{bottom:119.736000px;}
.y20{bottom:140.436000px;}
.y51{bottom:152.130000px;}
.y3a{bottom:157.710000px;}
.y1f{bottom:178.410000px;}
.y50{bottom:190.110000px;}
.y39{bottom:195.690000px;}
.y3f{bottom:195.870000px;}
.y1e{bottom:216.390000px;}
.y4f{bottom:228.090000px;}
.y38{bottom:233.670000px;}
.y1d{bottom:254.415000px;}
.y4e{bottom:266.115000px;}
.y37{bottom:271.695000px;}
.y1c{bottom:292.395000px;}
.y4d{bottom:303.915000px;}
.y36{bottom:309.495000px;}
.y1b{bottom:330.195000px;}
.y4c{bottom:341.895000px;}
.y35{bottom:347.475000px;}
.y1a{bottom:368.175000px;}
.y4b{bottom:379.875000px;}
.y34{bottom:385.455000px;}
.y40{bottom:385.635000px;}
.y19{bottom:406.155000px;}
.y4a{bottom:417.855000px;}
.y33{bottom:423.435000px;}
.y3e{bottom:423.615000px;}
.y18{bottom:444.135000px;}
.y5e{bottom:455.835000px;}
.y49{bottom:456.015000px;}
.y32{bottom:461.415000px;}
.y3d{bottom:461.595000px;}
.y17{bottom:482.115000px;}
.y48{bottom:493.815000px;}
.y31{bottom:499.215000px;}
.y16{bottom:519.915000px;}
.y5d{bottom:531.825000px;}
.y47{bottom:532.905000px;}
.y30{bottom:537.225000px;}
.y15{bottom:557.925000px;}
.y5c{bottom:569.625000px;}
.y46{bottom:570.885000px;}
.y2f{bottom:575.205000px;}
.y14{bottom:595.905000px;}
.y5b{bottom:607.605000px;}
.y45{bottom:609.765000px;}
.y2e{bottom:613.185000px;}
.y13{bottom:633.885000px;}
.y5a{bottom:645.585000px;}
.y44{bottom:647.745000px;}
.y2d{bottom:651.165000px;}
.y12{bottom:671.865000px;}
.y59{bottom:684.645000px;}
.y43{bottom:686.805000px;}
.y2c{bottom:689.145000px;}
.y11{bottom:709.845000px;}
.y58{bottom:722.625000px;}
.y42{bottom:725.865000px;}
.y3c{bottom:726.945000px;}
.y2b{bottom:727.125000px;}
.y10{bottom:747.645000px;}
.y57{bottom:761.685000px;}
.y2a{bottom:764.925000px;}
.y41{bottom:765.105000px;}
.yf{bottom:785.625000px;}
.y56{bottom:799.710000px;}
.y29{bottom:802.950000px;}
.ye{bottom:823.650000px;}
.y55{bottom:838.590000px;}
.y28{bottom:840.930000px;}
.yd{bottom:861.630000px;}
.y54{bottom:876.570000px;}
.y27{bottom:878.910000px;}
.yc{bottom:899.790000px;}
.y53{bottom:915.630000px;}
.y26{bottom:916.710000px;}
.yb{bottom:937.590000px;}
.y25{bottom:954.690000px;}
.y52{bottom:954.870000px;}
.ya{bottom:956.490000px;}
.y9{bottom:975.390000px;}
.y24{bottom:992.670000px;}
.y8{bottom:1023.810000px;}
.y23{bottom:1030.650000px;}
.y22{bottom:1068.660000px;}
.y7{bottom:1068.840000px;}
.y2{bottom:1088.460000px;}
.y1{bottom:1117.800000px;}
.h3{height:20.700000px;}
.h1{height:57.937500px;}
.h6{height:59.383125px;}
.h4{height:69.086250px;}
.h2{height:70.664062px;}
.h5{height:99.874688px;}
.h0{height:1188.000000px;}
.w1{width:9.180000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:84.960000px;}
.xc{left:111.996000px;}
.x8{left:131.796000px;}
.x9{left:138.096000px;}
.xa{left:165.090000px;}
.xb{left:192.090000px;}
.x5{left:301.215000px;}
.x4{left:478.515000px;}
.x1{left:486.435000px;}
.x6{left:612.645000px;}
.x7{left:657.825000px;}
.x3{left:824.010000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.736000pt;}
.ls2{letter-spacing:-0.406933pt;}
.ls1{letter-spacing:-0.271467pt;}
.ls3{letter-spacing:-0.097067pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.232960pt;}
.ls4{letter-spacing:0.542720pt;}
.ls8{letter-spacing:0.544000pt;}
.ls7{letter-spacing:172.559360pt;}
.ws5{word-spacing:-58.880000pt;}
.ws4{word-spacing:-16.912640pt;}
.ws2{word-spacing:-16.368640pt;}
.ws3{word-spacing:-16.271573pt;}
.ws0{word-spacing:-16.097173pt;}
.ws1{word-spacing:0.000000pt;}
._1{margin-left:-1.872640pt;}
._3{margin-left:-0.942080pt;}
._0{width:1.106560pt;}
._2{width:2.298240pt;}
._7{width:3.650560pt;}
._8{width:4.709120pt;}
._b{width:5.640960pt;}
._f{width:7.360000pt;}
._e{width:9.067520pt;}
._13{width:9.962240pt;}
._c{width:10.881280pt;}
._4{width:12.188160pt;}
._5{width:13.306880pt;}
._6{width:14.355200pt;}
._d{width:15.249920pt;}
._9{width:17.310720pt;}
._a{width:18.241280pt;}
._19{width:19.607040pt;}
._17{width:20.608000pt;}
._10{width:23.493120pt;}
._11{width:24.542080pt;}
._15{width:26.209707pt;}
._14{width:27.491840pt;}
._1a{width:30.719573pt;}
._18{width:52.546560pt;}
._16{width:59.770027pt;}
._12{width:172.559360pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.000000pt;}
.y4{bottom:51.072000pt;}
.y5{bottom:65.472000pt;}
.y3{bottom:69.472000pt;}
.y21{bottom:91.072000pt;}
.y3b{bottom:106.432000pt;}
.y20{bottom:124.832000pt;}
.y51{bottom:135.226667pt;}
.y3a{bottom:140.186667pt;}
.y1f{bottom:158.586667pt;}
.y50{bottom:168.986667pt;}
.y39{bottom:173.946667pt;}
.y3f{bottom:174.106667pt;}
.y1e{bottom:192.346667pt;}
.y4f{bottom:202.746667pt;}
.y38{bottom:207.706667pt;}
.y1d{bottom:226.146667pt;}
.y4e{bottom:236.546667pt;}
.y37{bottom:241.506667pt;}
.y1c{bottom:259.906667pt;}
.y4d{bottom:270.146667pt;}
.y36{bottom:275.106667pt;}
.y1b{bottom:293.506667pt;}
.y4c{bottom:303.906667pt;}
.y35{bottom:308.866667pt;}
.y1a{bottom:327.266667pt;}
.y4b{bottom:337.666667pt;}
.y34{bottom:342.626667pt;}
.y40{bottom:342.786667pt;}
.y19{bottom:361.026667pt;}
.y4a{bottom:371.426667pt;}
.y33{bottom:376.386667pt;}
.y3e{bottom:376.546667pt;}
.y18{bottom:394.786667pt;}
.y5e{bottom:405.186667pt;}
.y49{bottom:405.346667pt;}
.y32{bottom:410.146667pt;}
.y3d{bottom:410.306667pt;}
.y17{bottom:428.546667pt;}
.y48{bottom:438.946667pt;}
.y31{bottom:443.746667pt;}
.y16{bottom:462.146667pt;}
.y5d{bottom:472.733333pt;}
.y47{bottom:473.693333pt;}
.y30{bottom:477.533333pt;}
.y15{bottom:495.933333pt;}
.y5c{bottom:506.333333pt;}
.y46{bottom:507.453333pt;}
.y2f{bottom:511.293333pt;}
.y14{bottom:529.693333pt;}
.y5b{bottom:540.093333pt;}
.y45{bottom:542.013333pt;}
.y2e{bottom:545.053333pt;}
.y13{bottom:563.453333pt;}
.y5a{bottom:573.853333pt;}
.y44{bottom:575.773333pt;}
.y2d{bottom:578.813333pt;}
.y12{bottom:597.213333pt;}
.y59{bottom:608.573333pt;}
.y43{bottom:610.493333pt;}
.y2c{bottom:612.573333pt;}
.y11{bottom:630.973333pt;}
.y58{bottom:642.333333pt;}
.y42{bottom:645.213333pt;}
.y3c{bottom:646.173333pt;}
.y2b{bottom:646.333333pt;}
.y10{bottom:664.573333pt;}
.y57{bottom:677.053333pt;}
.y2a{bottom:679.933333pt;}
.y41{bottom:680.093333pt;}
.yf{bottom:698.333333pt;}
.y56{bottom:710.853333pt;}
.y29{bottom:713.733333pt;}
.ye{bottom:732.133333pt;}
.y55{bottom:745.413333pt;}
.y28{bottom:747.493333pt;}
.yd{bottom:765.893333pt;}
.y54{bottom:779.173333pt;}
.y27{bottom:781.253333pt;}
.yc{bottom:799.813333pt;}
.y53{bottom:813.893333pt;}
.y26{bottom:814.853333pt;}
.yb{bottom:833.413333pt;}
.y25{bottom:848.613333pt;}
.y52{bottom:848.773333pt;}
.ya{bottom:850.213333pt;}
.y9{bottom:867.013333pt;}
.y24{bottom:882.373333pt;}
.y8{bottom:910.053333pt;}
.y23{bottom:916.133333pt;}
.y22{bottom:949.920000pt;}
.y7{bottom:950.080000pt;}
.y2{bottom:967.520000pt;}
.y1{bottom:993.600000pt;}
.h3{height:18.400000pt;}
.h1{height:51.500000pt;}
.h6{height:52.785000pt;}
.h4{height:61.410000pt;}
.h2{height:62.812500pt;}
.h5{height:88.777500pt;}
.h0{height:1056.000000pt;}
.w1{width:8.160000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.520000pt;}
.xc{left:99.552000pt;}
.x8{left:117.152000pt;}
.x9{left:122.752000pt;}
.xa{left:146.746667pt;}
.xb{left:170.746667pt;}
.x5{left:267.746667pt;}
.x4{left:425.346667pt;}
.x1{left:432.386667pt;}
.x6{left:544.573333pt;}
.x7{left:584.733333pt;}
.x3{left:732.453333pt;}
}

