
    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_7db511cfc3cbb7de77fbc42b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.129000;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_378c28ff54b72ca7dda21ecc.woff')format("woff");}.ff2{font-family:ff2;line-height:0.948000;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_c316efdc76a5bad13c6f77a0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.067000;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_7bc7c4a904761267b7ff4992.woff')format("woff");}.ff4{font-family:ff4;line-height:1.133000;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_450e67a6f54f8d9556e29c39.woff')format("woff");}.ff5{font-family:ff5;line-height:1.067000;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);}
.v3{vertical-align:-21.780000px;}
.v2{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.780000px;}
.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;}
}
.ws4{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.348000px;}
.ws5{word-spacing:-15.984000px;}
.ws6{word-spacing:-15.012000px;}
.ws2{word-spacing:-13.986000px;}
.ws1{word-spacing:-10.641840px;}
.ws3{word-spacing:0.000000px;}
._15{margin-left:-18.549000px;}
._2{margin-left:-12.601800px;}
._6{margin-left:-11.550000px;}
._e{margin-left:-10.140000px;}
._3{margin-left:-9.000000px;}
._12{margin-left:-7.620000px;}
._7{margin-left:-6.600000px;}
._c{margin-left:-5.340000px;}
._4{margin-left:-3.600000px;}
._1{margin-left:-2.160000px;}
._b{margin-left:-1.020000px;}
._5{width:1.680000px;}
._8{width:2.970000px;}
._0{width:4.320000px;}
._d{width:5.616000px;}
._f{width:7.224000px;}
._11{width:8.250000px;}
._10{width:9.834000px;}
._a{width:11.748000px;}
._13{width:12.936000px;}
._14{width:14.916000px;}
._9{width:151.734000px;}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:38.280000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:75.326550px;}
.y20{bottom:75.338250px;}
.y1b{bottom:119.047350px;}
.y4a{bottom:119.059050px;}
.y73{bottom:122.047350px;}
.y46{bottom:122.059050px;}
.y1a{bottom:135.247350px;}
.y45{bottom:135.259050px;}
.y9d{bottom:138.247350px;}
.y49{bottom:138.259050px;}
.y19{bottom:151.447350px;}
.y79{bottom:151.459050px;}
.y6f{bottom:154.447350px;}
.y44{bottom:154.459050px;}
.y77{bottom:160.513650px;}
.y9c{bottom:160.513800px;}
.y18{bottom:167.647350px;}
.y72{bottom:170.647350px;}
.y78{bottom:170.659050px;}
.y76{bottom:180.313650px;}
.y9b{bottom:180.313800px;}
.y48{bottom:180.325350px;}
.y17{bottom:183.847350px;}
.y71{bottom:186.847350px;}
.y16{bottom:200.047350px;}
.y6e{bottom:200.113650px;}
.y9a{bottom:200.113800px;}
.y43{bottom:200.125350px;}
.y15{bottom:219.247350px;}
.y6d{bottom:219.913650px;}
.y99{bottom:219.913800px;}
.y42{bottom:219.925350px;}
.y75{bottom:232.447350px;}
.y9e{bottom:235.447350px;}
.y6c{bottom:239.713650px;}
.y98{bottom:239.713800px;}
.y41{bottom:239.725350px;}
.y74{bottom:251.647350px;}
.y6b{bottom:259.513650px;}
.y97{bottom:259.513800px;}
.y40{bottom:259.525350px;}
.y14{bottom:260.039100px;}
.y6a{bottom:279.313650px;}
.y96{bottom:279.313800px;}
.y3f{bottom:279.325350px;}
.y13{bottom:279.839100px;}
.y69{bottom:299.113650px;}
.y95{bottom:299.113800px;}
.y3e{bottom:299.125350px;}
.y12{bottom:299.639100px;}
.y68{bottom:318.913650px;}
.y94{bottom:318.913800px;}
.y3d{bottom:318.925350px;}
.y11{bottom:319.439100px;}
.y67{bottom:338.713650px;}
.y93{bottom:338.713800px;}
.y3c{bottom:338.725350px;}
.y10{bottom:339.239100px;}
.y66{bottom:358.513650px;}
.y92{bottom:358.513800px;}
.y3b{bottom:358.525350px;}
.yf{bottom:359.039100px;}
.y65{bottom:378.313650px;}
.y91{bottom:378.313800px;}
.y3a{bottom:378.325350px;}
.ye{bottom:378.839100px;}
.y64{bottom:398.113650px;}
.y90{bottom:398.113800px;}
.y39{bottom:398.125350px;}
.yd{bottom:398.639100px;}
.y63{bottom:417.913650px;}
.y8f{bottom:417.913800px;}
.y38{bottom:417.925350px;}
.yc{bottom:418.439100px;}
.y62{bottom:437.713650px;}
.y8e{bottom:437.713800px;}
.y37{bottom:437.725350px;}
.yb{bottom:438.239100px;}
.y61{bottom:457.513650px;}
.y8d{bottom:457.513800px;}
.y36{bottom:457.525350px;}
.ya{bottom:458.039100px;}
.y60{bottom:477.313650px;}
.y8c{bottom:477.313800px;}
.y35{bottom:477.325350px;}
.y9{bottom:477.839100px;}
.y5f{bottom:497.113650px;}
.y8b{bottom:497.113800px;}
.y34{bottom:497.125350px;}
.y8{bottom:497.637600px;}
.y5e{bottom:516.913650px;}
.y8a{bottom:516.913800px;}
.y33{bottom:516.925350px;}
.y7{bottom:517.437600px;}
.y5d{bottom:536.713650px;}
.y89{bottom:536.713800px;}
.y32{bottom:536.725350px;}
.y5c{bottom:556.513650px;}
.y88{bottom:556.513800px;}
.y31{bottom:556.525350px;}
.y6{bottom:557.037600px;}
.y5b{bottom:576.313650px;}
.y87{bottom:576.313800px;}
.y30{bottom:576.325350px;}
.y5a{bottom:596.113650px;}
.y86{bottom:596.113800px;}
.y2f{bottom:596.125350px;}
.y59{bottom:615.913650px;}
.y85{bottom:615.913800px;}
.y2e{bottom:615.925350px;}
.y5{bottom:621.239100px;}
.y58{bottom:635.713650px;}
.y84{bottom:635.713800px;}
.y2d{bottom:635.725350px;}
.y4{bottom:641.039100px;}
.y57{bottom:655.513650px;}
.y83{bottom:655.513800px;}
.y2c{bottom:655.525350px;}
.y56{bottom:675.313650px;}
.y82{bottom:675.313800px;}
.y2b{bottom:675.325350px;}
.y3{bottom:685.439100px;}
.y55{bottom:695.113650px;}
.y81{bottom:695.113800px;}
.y2a{bottom:695.125350px;}
.y54{bottom:714.913650px;}
.y80{bottom:714.913800px;}
.y29{bottom:714.925350px;}
.y53{bottom:734.713650px;}
.y7f{bottom:734.713800px;}
.y28{bottom:734.725350px;}
.y52{bottom:754.513650px;}
.y7e{bottom:754.513800px;}
.y27{bottom:754.525350px;}
.y51{bottom:774.313650px;}
.y26{bottom:774.325350px;}
.y50{bottom:794.113650px;}
.y7d{bottom:794.113800px;}
.y25{bottom:794.125350px;}
.y7b{bottom:794.125500px;}
.y4f{bottom:813.913650px;}
.y24{bottom:813.925350px;}
.y7a{bottom:813.925500px;}
.y4e{bottom:833.713650px;}
.y23{bottom:833.725500px;}
.y4d{bottom:853.513800px;}
.y22{bottom:853.525500px;}
.y4c{bottom:873.313650px;}
.y7c{bottom:873.313800px;}
.y21{bottom:873.325350px;}
.y70{bottom:949.849200px;}
.y47{bottom:949.861050px;}
.y4b{bottom:950.857200px;}
.y1f{bottom:950.869050px;}
.y1{bottom:971.109000px;}
.y1e{bottom:971.120700px;}
.y2{bottom:971.521500px;}
.y1d{bottom:971.533200px;}
.hc{height:36.384000px;}
.h7{height:36.600000px;}
.h3{height:48.180000px;}
.h8{height:48.384000px;}
.h9{height:48.600000px;}
.ha{height:50.100000px;}
.h6{height:55.110000px;}
.h2{height:59.136000px;}
.hb{height:59.400000px;}
.h5{height:64.512000px;}
.h4{height:86.016000px;}
.h0{height:1045.984500px;}
.h1{height:1046.250000px;}
.w2{width:735.589500px;}
.w0{width:735.591000px;}
.w1{width:735.750000px;}
.x0{left:0.000000px;}
.x3{left:85.039350px;}
.x6{left:96.297900px;}
.x7{left:140.314950px;}
.x5{left:191.338650px;}
.x2{left:316.128000px;}
.x4{left:378.584550px;}
.x8{left:379.667400px;}
.x1{left:615.038100px;}
@media print{
.v3{vertical-align:-19.360000pt;}
.v2{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.360000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.309333pt;}
.ws5{word-spacing:-14.208000pt;}
.ws6{word-spacing:-13.344000pt;}
.ws2{word-spacing:-12.432000pt;}
.ws1{word-spacing:-9.459413pt;}
.ws3{word-spacing:0.000000pt;}
._15{margin-left:-16.488000pt;}
._2{margin-left:-11.201600pt;}
._6{margin-left:-10.266667pt;}
._e{margin-left:-9.013333pt;}
._3{margin-left:-8.000000pt;}
._12{margin-left:-6.773333pt;}
._7{margin-left:-5.866667pt;}
._c{margin-left:-4.746667pt;}
._4{margin-left:-3.200000pt;}
._1{margin-left:-1.920000pt;}
._b{margin-left:-0.906667pt;}
._5{width:1.493333pt;}
._8{width:2.640000pt;}
._0{width:3.840000pt;}
._d{width:4.992000pt;}
._f{width:6.421333pt;}
._11{width:7.333333pt;}
._10{width:8.741333pt;}
._a{width:10.442667pt;}
._13{width:11.498667pt;}
._14{width:13.258667pt;}
._9{width:134.874667pt;}
.fs3{font-size:34.026667pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:66.956933pt;}
.y20{bottom:66.967333pt;}
.y1b{bottom:105.819867pt;}
.y4a{bottom:105.830267pt;}
.y73{bottom:108.486533pt;}
.y46{bottom:108.496933pt;}
.y1a{bottom:120.219867pt;}
.y45{bottom:120.230267pt;}
.y9d{bottom:122.886533pt;}
.y49{bottom:122.896933pt;}
.y19{bottom:134.619867pt;}
.y79{bottom:134.630267pt;}
.y6f{bottom:137.286533pt;}
.y44{bottom:137.296933pt;}
.y77{bottom:142.678800pt;}
.y9c{bottom:142.678933pt;}
.y18{bottom:149.019867pt;}
.y72{bottom:151.686533pt;}
.y78{bottom:151.696933pt;}
.y76{bottom:160.278800pt;}
.y9b{bottom:160.278933pt;}
.y48{bottom:160.289200pt;}
.y17{bottom:163.419867pt;}
.y71{bottom:166.086533pt;}
.y16{bottom:177.819867pt;}
.y6e{bottom:177.878800pt;}
.y9a{bottom:177.878933pt;}
.y43{bottom:177.889200pt;}
.y15{bottom:194.886533pt;}
.y6d{bottom:195.478800pt;}
.y99{bottom:195.478933pt;}
.y42{bottom:195.489200pt;}
.y75{bottom:206.619867pt;}
.y9e{bottom:209.286533pt;}
.y6c{bottom:213.078800pt;}
.y98{bottom:213.078933pt;}
.y41{bottom:213.089200pt;}
.y74{bottom:223.686533pt;}
.y6b{bottom:230.678800pt;}
.y97{bottom:230.678933pt;}
.y40{bottom:230.689200pt;}
.y14{bottom:231.145867pt;}
.y6a{bottom:248.278800pt;}
.y96{bottom:248.278933pt;}
.y3f{bottom:248.289200pt;}
.y13{bottom:248.745867pt;}
.y69{bottom:265.878800pt;}
.y95{bottom:265.878933pt;}
.y3e{bottom:265.889200pt;}
.y12{bottom:266.345867pt;}
.y68{bottom:283.478800pt;}
.y94{bottom:283.478933pt;}
.y3d{bottom:283.489200pt;}
.y11{bottom:283.945867pt;}
.y67{bottom:301.078800pt;}
.y93{bottom:301.078933pt;}
.y3c{bottom:301.089200pt;}
.y10{bottom:301.545867pt;}
.y66{bottom:318.678800pt;}
.y92{bottom:318.678933pt;}
.y3b{bottom:318.689200pt;}
.yf{bottom:319.145867pt;}
.y65{bottom:336.278800pt;}
.y91{bottom:336.278933pt;}
.y3a{bottom:336.289200pt;}
.ye{bottom:336.745867pt;}
.y64{bottom:353.878800pt;}
.y90{bottom:353.878933pt;}
.y39{bottom:353.889200pt;}
.yd{bottom:354.345867pt;}
.y63{bottom:371.478800pt;}
.y8f{bottom:371.478933pt;}
.y38{bottom:371.489200pt;}
.yc{bottom:371.945867pt;}
.y62{bottom:389.078800pt;}
.y8e{bottom:389.078933pt;}
.y37{bottom:389.089200pt;}
.yb{bottom:389.545867pt;}
.y61{bottom:406.678800pt;}
.y8d{bottom:406.678933pt;}
.y36{bottom:406.689200pt;}
.ya{bottom:407.145867pt;}
.y60{bottom:424.278800pt;}
.y8c{bottom:424.278933pt;}
.y35{bottom:424.289200pt;}
.y9{bottom:424.745867pt;}
.y5f{bottom:441.878800pt;}
.y8b{bottom:441.878933pt;}
.y34{bottom:441.889200pt;}
.y8{bottom:442.344533pt;}
.y5e{bottom:459.478800pt;}
.y8a{bottom:459.478933pt;}
.y33{bottom:459.489200pt;}
.y7{bottom:459.944533pt;}
.y5d{bottom:477.078800pt;}
.y89{bottom:477.078933pt;}
.y32{bottom:477.089200pt;}
.y5c{bottom:494.678800pt;}
.y88{bottom:494.678933pt;}
.y31{bottom:494.689200pt;}
.y6{bottom:495.144533pt;}
.y5b{bottom:512.278800pt;}
.y87{bottom:512.278933pt;}
.y30{bottom:512.289200pt;}
.y5a{bottom:529.878800pt;}
.y86{bottom:529.878933pt;}
.y2f{bottom:529.889200pt;}
.y59{bottom:547.478800pt;}
.y85{bottom:547.478933pt;}
.y2e{bottom:547.489200pt;}
.y5{bottom:552.212533pt;}
.y58{bottom:565.078800pt;}
.y84{bottom:565.078933pt;}
.y2d{bottom:565.089200pt;}
.y4{bottom:569.812533pt;}
.y57{bottom:582.678800pt;}
.y83{bottom:582.678933pt;}
.y2c{bottom:582.689200pt;}
.y56{bottom:600.278800pt;}
.y82{bottom:600.278933pt;}
.y2b{bottom:600.289200pt;}
.y3{bottom:609.279200pt;}
.y55{bottom:617.878800pt;}
.y81{bottom:617.878933pt;}
.y2a{bottom:617.889200pt;}
.y54{bottom:635.478800pt;}
.y80{bottom:635.478933pt;}
.y29{bottom:635.489200pt;}
.y53{bottom:653.078800pt;}
.y7f{bottom:653.078933pt;}
.y28{bottom:653.089200pt;}
.y52{bottom:670.678800pt;}
.y7e{bottom:670.678933pt;}
.y27{bottom:670.689200pt;}
.y51{bottom:688.278800pt;}
.y26{bottom:688.289200pt;}
.y50{bottom:705.878800pt;}
.y7d{bottom:705.878933pt;}
.y25{bottom:705.889200pt;}
.y7b{bottom:705.889333pt;}
.y4f{bottom:723.478800pt;}
.y24{bottom:723.489200pt;}
.y7a{bottom:723.489333pt;}
.y4e{bottom:741.078800pt;}
.y23{bottom:741.089333pt;}
.y4d{bottom:758.678933pt;}
.y22{bottom:758.689333pt;}
.y4c{bottom:776.278800pt;}
.y7c{bottom:776.278933pt;}
.y21{bottom:776.289200pt;}
.y70{bottom:844.310400pt;}
.y47{bottom:844.320933pt;}
.y4b{bottom:845.206400pt;}
.y1f{bottom:845.216933pt;}
.y1{bottom:863.208000pt;}
.y1e{bottom:863.218400pt;}
.y2{bottom:863.574667pt;}
.y1d{bottom:863.585067pt;}
.hc{height:32.341333pt;}
.h7{height:32.533333pt;}
.h3{height:42.826667pt;}
.h8{height:43.008000pt;}
.h9{height:43.200000pt;}
.ha{height:44.533333pt;}
.h6{height:48.986667pt;}
.h2{height:52.565333pt;}
.hb{height:52.800000pt;}
.h5{height:57.344000pt;}
.h4{height:76.458667pt;}
.h0{height:929.764000pt;}
.h1{height:930.000000pt;}
.w2{width:653.857333pt;}
.w0{width:653.858667pt;}
.w1{width:654.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.590533pt;}
.x6{left:85.598133pt;}
.x7{left:124.724400pt;}
.x5{left:170.078800pt;}
.x2{left:281.002667pt;}
.x4{left:336.519600pt;}
.x8{left:337.482133pt;}
.x1{left:546.700533pt;}
}

