
    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_068e5e9b022d44ec87a2bb86.woff')format("woff");}.ff1{font-family:ff1;line-height:1.095703;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_f1c8856868db8acc782af064.woff')format("woff");}.ff2{font-family:ff2;line-height:0.741211;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_e7809ceb7ebc00903d708c2b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_21a35eb9f25ee94a728314ce.woff')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_77d027d7a2e9694c5f019198.woff')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_d7bed69c8ebb03478dd2c732.woff')format("woff");}.ff6{font-family:ff6;line-height:1.073242;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;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.006000px;}
.ls0{letter-spacing:0.009000px;}
.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;}
}
.ws2{word-spacing:-15.000000px;}
.ws0{word-spacing:-10.500000px;}
.ws1{word-spacing:0.000000px;}
._1c{margin-left:-9.840000px;}
._a{margin-left:-7.980000px;}
._1b{margin-left:-6.972000px;}
._9{margin-left:-5.820000px;}
._17{margin-left:-4.620000px;}
._0{margin-left:-3.348000px;}
._1{margin-left:-1.680000px;}
._3{width:1.920000px;}
._5{width:3.708000px;}
._4{width:4.872000px;}
._2{width:6.660000px;}
._6{width:7.980000px;}
._d{width:9.060000px;}
._e{width:10.200000px;}
._8{width:12.180000px;}
._f{width:13.680000px;}
._10{width:16.020000px;}
._13{width:17.460000px;}
._14{width:18.900000px;}
._11{width:20.520000px;}
._15{width:22.680000px;}
._7{width:24.060000px;}
._b{width:25.380000px;}
._c{width:26.580000px;}
._19{width:27.840000px;}
._12{width:29.100000px;}
._16{width:31.800000px;}
._1a{width:34.200000px;}
._18{width:36.120000px;}
._1e{width:46.140000px;}
._1d{width:115.980000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:34.980000px;}
.fs1{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:46.918800px;}
.y1a{bottom:85.026750px;}
.y3a{bottom:97.658700px;}
.y5a{bottom:97.658850px;}
.y19{bottom:98.529750px;}
.y18{bottom:112.032750px;}
.y39{bottom:115.658700px;}
.y59{bottom:115.658850px;}
.y17{bottom:125.535750px;}
.y38{bottom:133.658700px;}
.y58{bottom:133.658850px;}
.y16{bottom:139.038750px;}
.y37{bottom:151.658700px;}
.y57{bottom:151.658850px;}
.y15{bottom:152.541750px;}
.y14{bottom:166.044750px;}
.y36{bottom:169.658700px;}
.y56{bottom:169.658850px;}
.y35{bottom:187.658700px;}
.y55{bottom:187.658850px;}
.y34{bottom:205.658700px;}
.y54{bottom:205.658850px;}
.y33{bottom:223.658700px;}
.y13{bottom:223.658850px;}
.y32{bottom:241.658700px;}
.y12{bottom:241.658850px;}
.y31{bottom:259.658700px;}
.y11{bottom:259.658850px;}
.y30{bottom:277.658700px;}
.y10{bottom:277.658850px;}
.y2f{bottom:295.658700px;}
.yf{bottom:295.658850px;}
.y2e{bottom:313.658700px;}
.ye{bottom:313.658850px;}
.y2d{bottom:331.658700px;}
.yd{bottom:331.658850px;}
.y2c{bottom:349.658700px;}
.yc{bottom:349.658850px;}
.y2b{bottom:367.658700px;}
.y53{bottom:367.658850px;}
.y2a{bottom:385.658700px;}
.yb{bottom:385.658850px;}
.y29{bottom:403.658700px;}
.y52{bottom:403.658850px;}
.y28{bottom:421.658700px;}
.y51{bottom:421.658850px;}
.y3b{bottom:439.658700px;}
.y50{bottom:439.658850px;}
.y27{bottom:457.658700px;}
.y4f{bottom:457.658850px;}
.y40{bottom:475.658700px;}
.y4e{bottom:475.658850px;}
.y3f{bottom:493.658700px;}
.y9{bottom:493.658850px;}
.ya{bottom:498.653850px;}
.y26{bottom:511.658700px;}
.y4d{bottom:511.658850px;}
.y25{bottom:529.658700px;}
.y4c{bottom:529.658850px;}
.y3e{bottom:547.658700px;}
.y4b{bottom:547.658850px;}
.y24{bottom:565.658700px;}
.y4a{bottom:565.658850px;}
.y8{bottom:583.643850px;}
.y23{bottom:583.658700px;}
.y49{bottom:583.658850px;}
.y22{bottom:601.658700px;}
.y48{bottom:601.658850px;}
.y7{bottom:610.649850px;}
.y21{bottom:619.658700px;}
.y47{bottom:619.658850px;}
.y6{bottom:637.655850px;}
.y20{bottom:637.658700px;}
.y46{bottom:637.658850px;}
.y1f{bottom:655.658700px;}
.y45{bottom:655.658850px;}
.y3d{bottom:673.658700px;}
.y44{bottom:673.658850px;}
.y5{bottom:691.646850px;}
.y1e{bottom:691.658700px;}
.y43{bottom:691.658850px;}
.y3c{bottom:709.658700px;}
.y42{bottom:709.658850px;}
.y4{bottom:718.652850px;}
.y1d{bottom:727.658700px;}
.y41{bottom:727.658850px;}
.y1c{bottom:745.658700px;}
.y3{bottom:745.658850px;}
.y1b{bottom:804.486300px;}
.y1{bottom:804.486450px;}
.h3{height:26.226562px;}
.h8{height:30.692900px;}
.ha{height:36.852539px;}
.h2{height:36.955078px;}
.h7{height:52.646484px;}
.hb{height:52.792969px;}
.h9{height:53.291016px;}
.h5{height:73.705078px;}
.h4{height:74.607422px;}
.h1{height:871.500000px;}
.h6{height:871.653000px;}
.h0{height:871.653015px;}
.w1{width:616.500000px;}
.w0{width:616.536000px;}
.x0{left:0.000000px;}
.xb{left:42.519750px;}
.xc{left:63.774750px;}
.x3{left:85.039350px;}
.x11{left:104.586150px;}
.xa{left:106.294350px;}
.x14{left:165.688500px;}
.x13{left:208.548000px;}
.x4{left:214.825500px;}
.x12{left:264.876150px;}
.xd{left:297.609750px;}
.x10{left:318.894750px;}
.x5{left:324.827850px;}
.x6{left:329.200350px;}
.xe{left:340.164150px;}
.xf{left:361.419150px;}
.x7{left:421.189200px;}
.x8{left:425.561700px;}
.x2{left:454.502100px;}
.x1{left:558.265800px;}
.x9{left:569.643150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.005333pt;}
.ls0{letter-spacing:0.008000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws0{word-spacing:-9.333333pt;}
.ws1{word-spacing:0.000000pt;}
._1c{margin-left:-8.746667pt;}
._a{margin-left:-7.093333pt;}
._1b{margin-left:-6.197333pt;}
._9{margin-left:-5.173333pt;}
._17{margin-left:-4.106667pt;}
._0{margin-left:-2.976000pt;}
._1{margin-left:-1.493333pt;}
._3{width:1.706667pt;}
._5{width:3.296000pt;}
._4{width:4.330667pt;}
._2{width:5.920000pt;}
._6{width:7.093333pt;}
._d{width:8.053333pt;}
._e{width:9.066667pt;}
._8{width:10.826667pt;}
._f{width:12.160000pt;}
._10{width:14.240000pt;}
._13{width:15.520000pt;}
._14{width:16.800000pt;}
._11{width:18.240000pt;}
._15{width:20.160000pt;}
._7{width:21.386667pt;}
._b{width:22.560000pt;}
._c{width:23.626667pt;}
._19{width:24.746667pt;}
._12{width:25.866667pt;}
._16{width:28.266667pt;}
._1a{width:30.400000pt;}
._18{width:32.106667pt;}
._1e{width:41.013333pt;}
._1d{width:103.093333pt;}
.fs4{font-size:31.093333pt;}
.fs1{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:41.705600pt;}
.y1a{bottom:75.579333pt;}
.y3a{bottom:86.807733pt;}
.y5a{bottom:86.807867pt;}
.y19{bottom:87.582000pt;}
.y18{bottom:99.584667pt;}
.y39{bottom:102.807733pt;}
.y59{bottom:102.807867pt;}
.y17{bottom:111.587333pt;}
.y38{bottom:118.807733pt;}
.y58{bottom:118.807867pt;}
.y16{bottom:123.590000pt;}
.y37{bottom:134.807733pt;}
.y57{bottom:134.807867pt;}
.y15{bottom:135.592667pt;}
.y14{bottom:147.595333pt;}
.y36{bottom:150.807733pt;}
.y56{bottom:150.807867pt;}
.y35{bottom:166.807733pt;}
.y55{bottom:166.807867pt;}
.y34{bottom:182.807733pt;}
.y54{bottom:182.807867pt;}
.y33{bottom:198.807733pt;}
.y13{bottom:198.807867pt;}
.y32{bottom:214.807733pt;}
.y12{bottom:214.807867pt;}
.y31{bottom:230.807733pt;}
.y11{bottom:230.807867pt;}
.y30{bottom:246.807733pt;}
.y10{bottom:246.807867pt;}
.y2f{bottom:262.807733pt;}
.yf{bottom:262.807867pt;}
.y2e{bottom:278.807733pt;}
.ye{bottom:278.807867pt;}
.y2d{bottom:294.807733pt;}
.yd{bottom:294.807867pt;}
.y2c{bottom:310.807733pt;}
.yc{bottom:310.807867pt;}
.y2b{bottom:326.807733pt;}
.y53{bottom:326.807867pt;}
.y2a{bottom:342.807733pt;}
.yb{bottom:342.807867pt;}
.y29{bottom:358.807733pt;}
.y52{bottom:358.807867pt;}
.y28{bottom:374.807733pt;}
.y51{bottom:374.807867pt;}
.y3b{bottom:390.807733pt;}
.y50{bottom:390.807867pt;}
.y27{bottom:406.807733pt;}
.y4f{bottom:406.807867pt;}
.y40{bottom:422.807733pt;}
.y4e{bottom:422.807867pt;}
.y3f{bottom:438.807733pt;}
.y9{bottom:438.807867pt;}
.ya{bottom:443.247867pt;}
.y26{bottom:454.807733pt;}
.y4d{bottom:454.807867pt;}
.y25{bottom:470.807733pt;}
.y4c{bottom:470.807867pt;}
.y3e{bottom:486.807733pt;}
.y4b{bottom:486.807867pt;}
.y24{bottom:502.807733pt;}
.y4a{bottom:502.807867pt;}
.y8{bottom:518.794533pt;}
.y23{bottom:518.807733pt;}
.y49{bottom:518.807867pt;}
.y22{bottom:534.807733pt;}
.y48{bottom:534.807867pt;}
.y7{bottom:542.799867pt;}
.y21{bottom:550.807733pt;}
.y47{bottom:550.807867pt;}
.y6{bottom:566.805200pt;}
.y20{bottom:566.807733pt;}
.y46{bottom:566.807867pt;}
.y1f{bottom:582.807733pt;}
.y45{bottom:582.807867pt;}
.y3d{bottom:598.807733pt;}
.y44{bottom:598.807867pt;}
.y5{bottom:614.797200pt;}
.y1e{bottom:614.807733pt;}
.y43{bottom:614.807867pt;}
.y3c{bottom:630.807733pt;}
.y42{bottom:630.807867pt;}
.y4{bottom:638.802533pt;}
.y1d{bottom:646.807733pt;}
.y41{bottom:646.807867pt;}
.y1c{bottom:662.807733pt;}
.y3{bottom:662.807867pt;}
.y1b{bottom:715.098933pt;}
.y1{bottom:715.099067pt;}
.h3{height:23.312500pt;}
.h8{height:27.282578pt;}
.ha{height:32.757812pt;}
.h2{height:32.848958pt;}
.h7{height:46.796875pt;}
.hb{height:46.927083pt;}
.h9{height:47.369792pt;}
.h5{height:65.515625pt;}
.h4{height:66.317708pt;}
.h1{height:774.666667pt;}
.h6{height:774.802667pt;}
.h0{height:774.802680pt;}
.w1{width:548.000000pt;}
.w0{width:548.032000pt;}
.x0{left:0.000000pt;}
.xb{left:37.795333pt;}
.xc{left:56.688667pt;}
.x3{left:75.590533pt;}
.x11{left:92.965467pt;}
.xa{left:94.483867pt;}
.x14{left:147.278667pt;}
.x13{left:185.376000pt;}
.x4{left:190.956000pt;}
.x12{left:235.445467pt;}
.xd{left:264.542000pt;}
.x10{left:283.462000pt;}
.x5{left:288.735867pt;}
.x6{left:292.622533pt;}
.xe{left:302.368133pt;}
.xf{left:321.261467pt;}
.x7{left:374.390400pt;}
.x8{left:378.277067pt;}
.x2{left:404.001867pt;}
.x1{left:496.236267pt;}
.x9{left:506.349467pt;}
}

