
    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_76300f3abe20b41815fcdf4a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.151000;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_ab449d7a29b4b72619afb0b0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.106000;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_068c0ebbb81fb69cfb87d872.woff')format("woff");}.ff3{font-family:ff3;line-height:0.915000;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_9c37467bc1c26aa045c95274.woff')format("woff");}.ff4{font-family:ff4;line-height:1.121000;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_33a0deb6b8a63b25e3b08bdd.woff')format("woff");}.ff5{font-family:ff5;line-height:1.102000;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_70704b0d1c01f3a4dd081c32.woff')format("woff");}.ff6{font-family:ff6;line-height:1.276000;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_6cef7ea9adef7b33c8bce419.woff')format("woff");}.ff7{font-family:ff7;line-height:1.106000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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;}
.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;}
}
.ws3{word-spacing:-14.460000px;}
.ws2{word-spacing:-12.936000px;}
.ws1{word-spacing:-10.920000px;}
.ws0{word-spacing:-5.784000px;}
.ws4{word-spacing:0.000000px;}
._7{margin-left:-5.175000px;}
._4{margin-left:-3.495000px;}
._3{margin-left:-2.475000px;}
._0{margin-left:-1.335000px;}
._6{width:1.005000px;}
._5{width:2.910000px;}
._e{width:3.960000px;}
._2{width:4.980000px;}
._b{width:6.420000px;}
._9{width:7.425000px;}
._10{width:8.730000px;}
._f{width:9.795000px;}
._8{width:10.950000px;}
._a{width:12.075000px;}
._1{width:13.425000px;}
._d{width:16.170000px;}
._c{width:17.355000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(246,221,153);}
.fs2{font-size:24.000000px;}
.fs1{font-size:36.000000px;}
.fs3{font-size:42.000000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:25.511550px;}
.y3{bottom:42.520350px;}
.y6a{bottom:64.166400px;}
.y49{bottom:65.250150px;}
.y22{bottom:65.320950px;}
.y69{bottom:80.663400px;}
.y48{bottom:86.250150px;}
.y21{bottom:86.320950px;}
.y47{bottom:107.250150px;}
.y20{bottom:107.320950px;}
.y68{bottom:127.163400px;}
.y46{bottom:128.250150px;}
.y1f{bottom:128.320950px;}
.y67{bottom:148.163400px;}
.y45{bottom:149.250150px;}
.y1e{bottom:149.320950px;}
.y66{bottom:169.163400px;}
.y44{bottom:170.250150px;}
.y1d{bottom:170.320950px;}
.y65{bottom:190.163400px;}
.y43{bottom:191.250150px;}
.y1c{bottom:191.320950px;}
.y64{bottom:211.163400px;}
.y42{bottom:212.250150px;}
.y1b{bottom:212.320950px;}
.y63{bottom:232.163400px;}
.y41{bottom:233.250150px;}
.y62{bottom:253.163400px;}
.y40{bottom:254.250150px;}
.y1a{bottom:254.320950px;}
.y61{bottom:274.163400px;}
.y3f{bottom:275.250150px;}
.y19{bottom:275.320950px;}
.y60{bottom:295.163400px;}
.y3e{bottom:296.250150px;}
.y18{bottom:296.320950px;}
.y5f{bottom:316.163400px;}
.y3d{bottom:317.250150px;}
.y17{bottom:317.320950px;}
.y5e{bottom:337.163400px;}
.y3c{bottom:338.250150px;}
.y16{bottom:338.320950px;}
.y5d{bottom:358.163400px;}
.y3b{bottom:359.250150px;}
.y15{bottom:359.320950px;}
.y5c{bottom:379.163400px;}
.y3a{bottom:380.250150px;}
.y14{bottom:380.320950px;}
.y5b{bottom:400.163400px;}
.y39{bottom:401.250150px;}
.y13{bottom:401.320950px;}
.y5a{bottom:421.163400px;}
.y38{bottom:422.250150px;}
.y12{bottom:422.320950px;}
.y59{bottom:442.163400px;}
.y37{bottom:443.250150px;}
.y11{bottom:443.320950px;}
.y58{bottom:463.163400px;}
.y36{bottom:464.250150px;}
.y10{bottom:464.320950px;}
.y57{bottom:484.163400px;}
.y35{bottom:485.250150px;}
.yf{bottom:485.320950px;}
.y56{bottom:505.163400px;}
.ye{bottom:506.320950px;}
.y55{bottom:526.163400px;}
.y34{bottom:527.250150px;}
.yd{bottom:527.320950px;}
.y33{bottom:548.250150px;}
.yc{bottom:548.320950px;}
.y54{bottom:568.163400px;}
.y32{bottom:569.250150px;}
.yb{bottom:569.320950px;}
.y53{bottom:589.163400px;}
.y31{bottom:590.250150px;}
.ya{bottom:590.320950px;}
.y52{bottom:610.163400px;}
.y30{bottom:611.250150px;}
.y9{bottom:611.320950px;}
.y51{bottom:631.163400px;}
.y2f{bottom:632.250150px;}
.y8{bottom:632.320950px;}
.y50{bottom:652.163400px;}
.y2e{bottom:653.250150px;}
.y7{bottom:653.320950px;}
.y4f{bottom:673.163400px;}
.y2d{bottom:674.250150px;}
.y6{bottom:674.320950px;}
.y4e{bottom:694.163400px;}
.y2c{bottom:695.250150px;}
.y5{bottom:695.320950px;}
.y4d{bottom:715.163400px;}
.y2b{bottom:716.250150px;}
.y4{bottom:716.320950px;}
.y27{bottom:765.069750px;}
.y26{bottom:778.572750px;}
.y2a{bottom:1053.895050px;}
.y4c{bottom:1054.603650px;}
.y25{bottom:1054.627200px;}
.y29{bottom:1083.892050px;}
.y4b{bottom:1084.600650px;}
.y24{bottom:1084.624200px;}
.y28{bottom:1113.889050px;}
.y4a{bottom:1114.597650px;}
.y23{bottom:1114.621200px;}
.y1{bottom:1180.510050px;}
.h6{height:35.196000px;}
.h3{height:38.094000px;}
.h8{height:42.060000px;}
.h7{height:42.252000px;}
.ha{height:48.168000px;}
.h9{height:50.004000px;}
.h4{height:53.520000px;}
.h2{height:77.784000px;}
.h5{height:97.956000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:63.779550px;}
.x5{left:325.700850px;}
.x2{left:543.689700px;}
.x6{left:588.472500px;}
.x1{left:759.120900px;}
.x3{left:858.780450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-12.853333pt;}
.ws2{word-spacing:-11.498667pt;}
.ws1{word-spacing:-9.706667pt;}
.ws0{word-spacing:-5.141333pt;}
.ws4{word-spacing:0.000000pt;}
._7{margin-left:-4.600000pt;}
._4{margin-left:-3.106667pt;}
._3{margin-left:-2.200000pt;}
._0{margin-left:-1.186667pt;}
._6{width:0.893333pt;}
._5{width:2.586667pt;}
._e{width:3.520000pt;}
._2{width:4.426667pt;}
._b{width:5.706667pt;}
._9{width:6.600000pt;}
._10{width:7.760000pt;}
._f{width:8.706667pt;}
._8{width:9.733333pt;}
._a{width:10.733333pt;}
._1{width:11.933333pt;}
._d{width:14.373333pt;}
._c{width:15.426667pt;}
.fs2{font-size:21.333333pt;}
.fs1{font-size:32.000000pt;}
.fs3{font-size:37.333333pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:22.676933pt;}
.y3{bottom:37.795867pt;}
.y6a{bottom:57.036800pt;}
.y49{bottom:58.000133pt;}
.y22{bottom:58.063067pt;}
.y69{bottom:71.700800pt;}
.y48{bottom:76.666800pt;}
.y21{bottom:76.729733pt;}
.y47{bottom:95.333467pt;}
.y20{bottom:95.396400pt;}
.y68{bottom:113.034133pt;}
.y46{bottom:114.000133pt;}
.y1f{bottom:114.063067pt;}
.y67{bottom:131.700800pt;}
.y45{bottom:132.666800pt;}
.y1e{bottom:132.729733pt;}
.y66{bottom:150.367467pt;}
.y44{bottom:151.333467pt;}
.y1d{bottom:151.396400pt;}
.y65{bottom:169.034133pt;}
.y43{bottom:170.000133pt;}
.y1c{bottom:170.063067pt;}
.y64{bottom:187.700800pt;}
.y42{bottom:188.666800pt;}
.y1b{bottom:188.729733pt;}
.y63{bottom:206.367467pt;}
.y41{bottom:207.333467pt;}
.y62{bottom:225.034133pt;}
.y40{bottom:226.000133pt;}
.y1a{bottom:226.063067pt;}
.y61{bottom:243.700800pt;}
.y3f{bottom:244.666800pt;}
.y19{bottom:244.729733pt;}
.y60{bottom:262.367467pt;}
.y3e{bottom:263.333467pt;}
.y18{bottom:263.396400pt;}
.y5f{bottom:281.034133pt;}
.y3d{bottom:282.000133pt;}
.y17{bottom:282.063067pt;}
.y5e{bottom:299.700800pt;}
.y3c{bottom:300.666800pt;}
.y16{bottom:300.729733pt;}
.y5d{bottom:318.367467pt;}
.y3b{bottom:319.333467pt;}
.y15{bottom:319.396400pt;}
.y5c{bottom:337.034133pt;}
.y3a{bottom:338.000133pt;}
.y14{bottom:338.063067pt;}
.y5b{bottom:355.700800pt;}
.y39{bottom:356.666800pt;}
.y13{bottom:356.729733pt;}
.y5a{bottom:374.367467pt;}
.y38{bottom:375.333467pt;}
.y12{bottom:375.396400pt;}
.y59{bottom:393.034133pt;}
.y37{bottom:394.000133pt;}
.y11{bottom:394.063067pt;}
.y58{bottom:411.700800pt;}
.y36{bottom:412.666800pt;}
.y10{bottom:412.729733pt;}
.y57{bottom:430.367467pt;}
.y35{bottom:431.333467pt;}
.yf{bottom:431.396400pt;}
.y56{bottom:449.034133pt;}
.ye{bottom:450.063067pt;}
.y55{bottom:467.700800pt;}
.y34{bottom:468.666800pt;}
.yd{bottom:468.729733pt;}
.y33{bottom:487.333467pt;}
.yc{bottom:487.396400pt;}
.y54{bottom:505.034133pt;}
.y32{bottom:506.000133pt;}
.yb{bottom:506.063067pt;}
.y53{bottom:523.700800pt;}
.y31{bottom:524.666800pt;}
.ya{bottom:524.729733pt;}
.y52{bottom:542.367467pt;}
.y30{bottom:543.333467pt;}
.y9{bottom:543.396400pt;}
.y51{bottom:561.034133pt;}
.y2f{bottom:562.000133pt;}
.y8{bottom:562.063067pt;}
.y50{bottom:579.700800pt;}
.y2e{bottom:580.666800pt;}
.y7{bottom:580.729733pt;}
.y4f{bottom:598.367467pt;}
.y2d{bottom:599.333467pt;}
.y6{bottom:599.396400pt;}
.y4e{bottom:617.034133pt;}
.y2c{bottom:618.000133pt;}
.y5{bottom:618.063067pt;}
.y4d{bottom:635.700800pt;}
.y2b{bottom:636.666800pt;}
.y4{bottom:636.729733pt;}
.y27{bottom:680.062000pt;}
.y26{bottom:692.064667pt;}
.y2a{bottom:936.795600pt;}
.y4c{bottom:937.425467pt;}
.y25{bottom:937.446400pt;}
.y29{bottom:963.459600pt;}
.y4b{bottom:964.089467pt;}
.y24{bottom:964.110400pt;}
.y28{bottom:990.123600pt;}
.y4a{bottom:990.753467pt;}
.y23{bottom:990.774400pt;}
.y1{bottom:1049.342267pt;}
.h6{height:31.285333pt;}
.h3{height:33.861333pt;}
.h8{height:37.386667pt;}
.h7{height:37.557333pt;}
.ha{height:42.816000pt;}
.h9{height:44.448000pt;}
.h4{height:47.573333pt;}
.h2{height:69.141333pt;}
.h5{height:87.072000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:56.692933pt;}
.x5{left:289.511867pt;}
.x2{left:483.279733pt;}
.x6{left:523.086667pt;}
.x1{left:674.774133pt;}
.x3{left:763.360400pt;}
}

