
    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_8a538b4caaddb452c5d9a320.woff')format("woff");}.ff1{font-family:ff1;line-height:0.689453;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_a4acbaef454415c0ebcf989b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.840793;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_bbff0394eb6fa04570c1cbc6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.132000;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_8b24b58e1f9127b60a344939.woff')format("woff");}.ff4{font-family:ff4;line-height:1.127000;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_398784d0fe4c7c361120e767.woff')format("woff");}.ff5{font-family:ff5;line-height:0.878000;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_a088c7e06ce3de881735462e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.045000;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:-1.776000px;}
.ls1{letter-spacing:-0.720000px;}
.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;}
}
.ws2{word-spacing:-15.000000px;}
.ws1{word-spacing:-12.000000px;}
.ws0{word-spacing:0.000000px;}
._3{margin-left:-6.900000px;}
._15{margin-left:-5.652000px;}
._0{margin-left:-4.416000px;}
._1{margin-left:-3.120000px;}
._2{margin-left:-1.440000px;}
._d{width:1.938000px;}
._e{width:3.006000px;}
._f{width:4.248000px;}
._12{width:5.355000px;}
._11{width:6.456000px;}
._10{width:7.524000px;}
._16{width:8.892000px;}
._13{width:10.146000px;}
._14{width:11.172000px;}
._18{width:12.255000px;}
._19{width:15.390000px;}
._1a{width:16.644000px;}
._17{width:69.540000px;}
._a{width:413.508000px;}
._8{width:957.288000px;}
._9{width:1134.729000px;}
._7{width:1147.725000px;}
._5{width:1216.923000px;}
._6{width:1333.830000px;}
._b{width:1469.718000px;}
._4{width:1506.801000px;}
._c{width:1509.105000px;}
.fc1{color:rgb(0,167,211);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:48.000000px;}
.fs6{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:96.000000px;}
.fs1{font-size:138.000000px;}
.fs7{font-size:204.000000px;}
.fs2{font-size:276.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:15.575550px;}
.y1{bottom:15.575850px;}
.y2e{bottom:15.576000px;}
.y77{bottom:102.501300px;}
.y5d{bottom:102.501750px;}
.y42{bottom:102.515250px;}
.y76{bottom:125.002050px;}
.y5c{bottom:125.002500px;}
.y41{bottom:125.016000px;}
.y5b{bottom:147.503250px;}
.y75{bottom:170.003550px;}
.y5a{bottom:170.004000px;}
.y40{bottom:170.017500px;}
.y59{bottom:192.504750px;}
.y3f{bottom:192.518250px;}
.y74{bottom:215.005050px;}
.y58{bottom:215.005500px;}
.y3e{bottom:215.019000px;}
.y73{bottom:237.505800px;}
.y57{bottom:237.506250px;}
.y3d{bottom:237.519750px;}
.y72{bottom:260.006550px;}
.y56{bottom:260.007000px;}
.y3c{bottom:260.020500px;}
.y1b{bottom:273.381600px;}
.y30{bottom:276.404550px;}
.y3{bottom:276.405000px;}
.y71{bottom:282.507300px;}
.y55{bottom:282.507750px;}
.y3b{bottom:282.521250px;}
.y1a{bottom:291.387600px;}
.y70{bottom:305.008050px;}
.y54{bottom:305.008500px;}
.y3a{bottom:305.022000px;}
.y19{bottom:308.319600px;}
.y2f{bottom:310.904550px;}
.y2{bottom:310.905000px;}
.y18{bottom:326.319600px;}
.y6f{bottom:327.508800px;}
.y53{bottom:327.509250px;}
.y39{bottom:327.522750px;}
.y17{bottom:344.319600px;}
.y6e{bottom:350.009550px;}
.y52{bottom:350.010000px;}
.y38{bottom:350.023500px;}
.y6d{bottom:372.510300px;}
.y51{bottom:372.510750px;}
.y16{bottom:380.319600px;}
.y6c{bottom:395.011050px;}
.y5e{bottom:395.011500px;}
.y15{bottom:398.319600px;}
.y2d{bottom:414.954450px;}
.y50{bottom:417.512250px;}
.y14{bottom:434.319600px;}
.y6b{bottom:440.012550px;}
.y4f{bottom:440.013000px;}
.y2c{bottom:450.954450px;}
.y13{bottom:452.319600px;}
.y6a{bottom:462.513300px;}
.y4e{bottom:462.513750px;}
.y69{bottom:485.014050px;}
.y4d{bottom:485.014500px;}
.y2b{bottom:486.954450px;}
.y12{bottom:488.319600px;}
.y11{bottom:506.319600px;}
.y68{bottom:507.514800px;}
.y4c{bottom:507.515250px;}
.y2a{bottom:522.954450px;}
.y10{bottom:524.319600px;}
.y35{bottom:524.801700px;}
.y8{bottom:524.802150px;}
.y4b{bottom:530.016000px;}
.y67{bottom:552.516300px;}
.y4a{bottom:552.516750px;}
.y29{bottom:558.954450px;}
.yf{bottom:560.319600px;}
.y66{bottom:575.017050px;}
.y49{bottom:575.017500px;}
.ye{bottom:578.319600px;}
.y34{bottom:578.828700px;}
.y7{bottom:578.829150px;}
.y28{bottom:594.954450px;}
.y65{bottom:597.517800px;}
.y48{bottom:597.518250px;}
.yd{bottom:614.319600px;}
.y64{bottom:620.018550px;}
.y47{bottom:620.019000px;}
.y27{bottom:630.954450px;}
.yc{bottom:632.319600px;}
.y33{bottom:632.855700px;}
.y6{bottom:632.856150px;}
.y63{bottom:642.519300px;}
.yb{bottom:650.319600px;}
.y62{bottom:665.020050px;}
.y46{bottom:665.020500px;}
.y26{bottom:666.954450px;}
.ya{bottom:686.319600px;}
.y32{bottom:686.882700px;}
.y5{bottom:686.883150px;}
.y78{bottom:687.520800px;}
.y45{bottom:687.521250px;}
.y25{bottom:702.954450px;}
.y9{bottom:704.319600px;}
.y61{bottom:710.021550px;}
.y44{bottom:710.022000px;}
.y60{bottom:732.522300px;}
.y43{bottom:732.522750px;}
.y37{bottom:737.023500px;}
.y24{bottom:738.954450px;}
.y31{bottom:740.909700px;}
.y4{bottom:740.910150px;}
.y21{bottom:741.381600px;}
.y23{bottom:747.954450px;}
.y5f{bottom:755.023050px;}
.y36{bottom:755.023500px;}
.y20{bottom:759.381600px;}
.y1f{bottom:777.381600px;}
.y1e{bottom:795.381600px;}
.y1d{bottom:848.016450px;}
.y1c{bottom:857.016450px;}
.h5{height:32.437500px;}
.hb{height:41.184000px;}
.h8{height:41.424000px;}
.hd{height:49.191000px;}
.ha{height:51.780000px;}
.h9{height:62.136000px;}
.hc{height:82.944000px;}
.h6{height:101.218718px;}
.he{height:155.040000px;}
.h7{height:202.437436px;}
.h1{height:891.750000px;}
.h0{height:892.080000px;}
.h4{height:892.912500px;}
.h2{height:892.914000px;}
.h3{height:893.250000px;}
.w1{width:765.000000px;}
.w0{width:765.318000px;}
.w2{width:765.354000px;}
.x0{left:0.000000px;}
.x3{left:63.779550px;}
.x5{left:75.631050px;}
.x1{left:81.824400px;}
.x6{left:89.287050px;}
.x2{left:286.829550px;}
.x4{left:481.322850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-1.578667pt;}
.ls1{letter-spacing:-0.640000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws1{word-spacing:-10.666667pt;}
.ws0{word-spacing:0.000000pt;}
._3{margin-left:-6.133333pt;}
._15{margin-left:-5.024000pt;}
._0{margin-left:-3.925333pt;}
._1{margin-left:-2.773333pt;}
._2{margin-left:-1.280000pt;}
._d{width:1.722667pt;}
._e{width:2.672000pt;}
._f{width:3.776000pt;}
._12{width:4.760000pt;}
._11{width:5.738667pt;}
._10{width:6.688000pt;}
._16{width:7.904000pt;}
._13{width:9.018667pt;}
._14{width:9.930667pt;}
._18{width:10.893333pt;}
._19{width:13.680000pt;}
._1a{width:14.794667pt;}
._17{width:61.813333pt;}
._a{width:367.562667pt;}
._8{width:850.922667pt;}
._9{width:1008.648000pt;}
._7{width:1020.200000pt;}
._5{width:1081.709333pt;}
._6{width:1185.626667pt;}
._b{width:1306.416000pt;}
._4{width:1339.378667pt;}
._c{width:1341.426667pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:85.333333pt;}
.fs1{font-size:122.666667pt;}
.fs7{font-size:181.333333pt;}
.fs2{font-size:245.333333pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:13.844933pt;}
.y1{bottom:13.845200pt;}
.y2e{bottom:13.845333pt;}
.y77{bottom:91.112267pt;}
.y5d{bottom:91.112667pt;}
.y42{bottom:91.124667pt;}
.y76{bottom:111.112933pt;}
.y5c{bottom:111.113333pt;}
.y41{bottom:111.125333pt;}
.y5b{bottom:131.114000pt;}
.y75{bottom:151.114267pt;}
.y5a{bottom:151.114667pt;}
.y40{bottom:151.126667pt;}
.y59{bottom:171.115333pt;}
.y3f{bottom:171.127333pt;}
.y74{bottom:191.115600pt;}
.y58{bottom:191.116000pt;}
.y3e{bottom:191.128000pt;}
.y73{bottom:211.116267pt;}
.y57{bottom:211.116667pt;}
.y3d{bottom:211.128667pt;}
.y72{bottom:231.116933pt;}
.y56{bottom:231.117333pt;}
.y3c{bottom:231.129333pt;}
.y1b{bottom:243.005867pt;}
.y30{bottom:245.692933pt;}
.y3{bottom:245.693333pt;}
.y71{bottom:251.117600pt;}
.y55{bottom:251.118000pt;}
.y3b{bottom:251.130000pt;}
.y1a{bottom:259.011200pt;}
.y70{bottom:271.118267pt;}
.y54{bottom:271.118667pt;}
.y3a{bottom:271.130667pt;}
.y19{bottom:274.061867pt;}
.y2f{bottom:276.359600pt;}
.y2{bottom:276.360000pt;}
.y18{bottom:290.061867pt;}
.y6f{bottom:291.118933pt;}
.y53{bottom:291.119333pt;}
.y39{bottom:291.131333pt;}
.y17{bottom:306.061867pt;}
.y6e{bottom:311.119600pt;}
.y52{bottom:311.120000pt;}
.y38{bottom:311.132000pt;}
.y6d{bottom:331.120267pt;}
.y51{bottom:331.120667pt;}
.y16{bottom:338.061867pt;}
.y6c{bottom:351.120933pt;}
.y5e{bottom:351.121333pt;}
.y15{bottom:354.061867pt;}
.y2d{bottom:368.848400pt;}
.y50{bottom:371.122000pt;}
.y14{bottom:386.061867pt;}
.y6b{bottom:391.122267pt;}
.y4f{bottom:391.122667pt;}
.y2c{bottom:400.848400pt;}
.y13{bottom:402.061867pt;}
.y6a{bottom:411.122933pt;}
.y4e{bottom:411.123333pt;}
.y69{bottom:431.123600pt;}
.y4d{bottom:431.124000pt;}
.y2b{bottom:432.848400pt;}
.y12{bottom:434.061867pt;}
.y11{bottom:450.061867pt;}
.y68{bottom:451.124267pt;}
.y4c{bottom:451.124667pt;}
.y2a{bottom:464.848400pt;}
.y10{bottom:466.061867pt;}
.y35{bottom:466.490400pt;}
.y8{bottom:466.490800pt;}
.y4b{bottom:471.125333pt;}
.y67{bottom:491.125600pt;}
.y4a{bottom:491.126000pt;}
.y29{bottom:496.848400pt;}
.yf{bottom:498.061867pt;}
.y66{bottom:511.126267pt;}
.y49{bottom:511.126667pt;}
.ye{bottom:514.061867pt;}
.y34{bottom:514.514400pt;}
.y7{bottom:514.514800pt;}
.y28{bottom:528.848400pt;}
.y65{bottom:531.126933pt;}
.y48{bottom:531.127333pt;}
.yd{bottom:546.061867pt;}
.y64{bottom:551.127600pt;}
.y47{bottom:551.128000pt;}
.y27{bottom:560.848400pt;}
.yc{bottom:562.061867pt;}
.y33{bottom:562.538400pt;}
.y6{bottom:562.538800pt;}
.y63{bottom:571.128267pt;}
.yb{bottom:578.061867pt;}
.y62{bottom:591.128933pt;}
.y46{bottom:591.129333pt;}
.y26{bottom:592.848400pt;}
.ya{bottom:610.061867pt;}
.y32{bottom:610.562400pt;}
.y5{bottom:610.562800pt;}
.y78{bottom:611.129600pt;}
.y45{bottom:611.130000pt;}
.y25{bottom:624.848400pt;}
.y9{bottom:626.061867pt;}
.y61{bottom:631.130267pt;}
.y44{bottom:631.130667pt;}
.y60{bottom:651.130933pt;}
.y43{bottom:651.131333pt;}
.y37{bottom:655.132000pt;}
.y24{bottom:656.848400pt;}
.y31{bottom:658.586400pt;}
.y4{bottom:658.586800pt;}
.y21{bottom:659.005867pt;}
.y23{bottom:664.848400pt;}
.y5f{bottom:671.131600pt;}
.y36{bottom:671.132000pt;}
.y20{bottom:675.005867pt;}
.y1f{bottom:691.005867pt;}
.y1e{bottom:707.005867pt;}
.y1d{bottom:753.792400pt;}
.y1c{bottom:761.792400pt;}
.h5{height:28.833333pt;}
.hb{height:36.608000pt;}
.h8{height:36.821333pt;}
.hd{height:43.725333pt;}
.ha{height:46.026667pt;}
.h9{height:55.232000pt;}
.hc{height:73.728000pt;}
.h6{height:89.972194pt;}
.he{height:137.813333pt;}
.h7{height:179.944388pt;}
.h1{height:792.666667pt;}
.h0{height:792.960000pt;}
.h4{height:793.700000pt;}
.h2{height:793.701333pt;}
.h3{height:794.000000pt;}
.w1{width:680.000000pt;}
.w0{width:680.282667pt;}
.w2{width:680.314667pt;}
.x0{left:0.000000pt;}
.x3{left:56.692933pt;}
.x5{left:67.227600pt;}
.x1{left:72.732800pt;}
.x6{left:79.366267pt;}
.x2{left:254.959600pt;}
.x4{left:427.842533pt;}
}

