
    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_9d288fe677b73e49d4050c0e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.118000;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_34ec3fa9820533366b29c875.woff')format("woff");}.ff2{font-family:ff2;line-height:0.913000;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_0fbdd3c7ddadc6ea123d00c9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.138000;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_bfa55626c5ec634562f53341.woff')format("woff");}.ff4{font-family:ff4;line-height:1.108000;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);}
.v2{vertical-align:-19.980000px;}
.v3{vertical-align:-14.985060px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.227280px;}
.ls2{letter-spacing:0.384720px;}
.ls3{letter-spacing:0.447720px;}
.ls1{letter-spacing:0.598080px;}
.ls4{letter-spacing:0.675000px;}
.ls5{letter-spacing:0.793980px;}
.ls7{letter-spacing:34.343400px;}
.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;}
}
.ws0{word-spacing:-16.680000px;}
.ws2{word-spacing:-9.724440px;}
.ws3{word-spacing:-7.293330px;}
.ws1{word-spacing:0.000000px;}
._13{margin-left:-15.801960px;}
._15{margin-left:-7.440000px;}
._12{margin-left:-5.865000px;}
._5{margin-left:-4.860000px;}
._0{margin-left:-3.552000px;}
._6{margin-left:-2.040000px;}
._8{margin-left:-1.008000px;}
._1{width:1.500000px;}
._3{width:2.760000px;}
._4{width:3.900000px;}
._7{width:5.136000px;}
._b{width:6.420000px;}
._d{width:7.800000px;}
._c{width:9.240000px;}
._f{width:10.320000px;}
._10{width:11.640000px;}
._2{width:15.360000px;}
._11{width:26.325000px;}
._14{width:34.320000px;}
._9{width:39.690000px;}
._e{width:40.950000px;}
._a{width:114.300000px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:26.235000px;}
.fs3{font-size:34.980000px;}
.fs2{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:60.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:121.181100px;}
.ya6{bottom:161.034075px;}
.ybb{bottom:161.063490px;}
.y83{bottom:161.530125px;}
.y6f{bottom:162.238785px;}
.y1f{bottom:162.318510px;}
.yb5{bottom:162.534075px;}
.y7a{bottom:164.626785px;}
.ya8{bottom:164.780325px;}
.yb1{bottom:165.170085px;}
.y8b{bottom:165.347265px;}
.y7d{bottom:165.595275px;}
.y74{bottom:165.807885px;}
.y78{bottom:165.843315px;}
.ya2{bottom:166.032285px;}
.y46{bottom:166.126785px;}
.yb8{bottom:166.268505px;}
.ya7{bottom:174.534075px;}
.y8d{bottom:175.100985px;}
.y6e{bottom:175.738785px;}
.ya1{bottom:175.786035px;}
.y79{bottom:178.126785px;}
.ya5{bottom:178.280325px;}
.yb0{bottom:178.670085px;}
.y82{bottom:178.776375px;}
.y8a{bottom:178.847265px;}
.yba{bottom:179.063490px;}
.y73{bottom:179.307885px;}
.y77{bottom:179.343315px;}
.y45{bottom:179.626785px;}
.yb7{bottom:179.768505px;}
.yb4{bottom:179.780325px;}
.yaf{bottom:188.423835px;}
.y81{bottom:188.530125px;}
.y89{bottom:188.600985px;}
.ya4{bottom:191.780325px;}
.y72{bottom:192.807885px;}
.y6d{bottom:192.985035px;}
.ya0{bottom:193.032285px;}
.y92{bottom:193.126785px;}
.yb3{bottom:193.280325px;}
.yb9{bottom:197.063490px;}
.yae{bottom:201.923835px;}
.y80{bottom:202.030125px;}
.y88{bottom:202.100985px;}
.y6c{bottom:202.738785px;}
.y9f{bottom:202.786035px;}
.y91{bottom:202.880520px;}
.ya3{bottom:205.280325px;}
.y8c{bottom:205.847265px;}
.yb2{bottom:206.780325px;}
.y1e{bottom:207.926730px;}
.y76{bottom:215.063490px;}
.y44{bottom:215.183415px;}
.y7f{bottom:215.530125px;}
.y87{bottom:215.600985px;}
.y6b{bottom:216.238785px;}
.y9e{bottom:216.286035px;}
.yad{bottom:219.170085px;}
.y90{bottom:220.126785px;}
.y1d{bottom:222.326730px;}
.y9d{bottom:229.786035px;}
.yac{bottom:232.670085px;}
.y7e{bottom:232.776375px;}
.y86{bottom:232.847265px;}
.y71{bottom:233.063490px;}
.y43{bottom:233.183415px;}
.y6a{bottom:233.485035px;}
.y8f{bottom:233.626785px;}
.y1c{bottom:236.726730px;}
.yab{bottom:242.423835px;}
.y85{bottom:246.347265px;}
.y9c{bottom:247.032285px;}
.y8e{bottom:247.126785px;}
.y70{bottom:251.063490px;}
.y1b{bottom:251.126730px;}
.y42{bottom:251.183415px;}
.yaa{bottom:255.923835px;}
.y84{bottom:259.847265px;}
.y1a{bottom:265.526730px;}
.y69{bottom:269.063490px;}
.y7c{bottom:269.063640px;}
.y41{bottom:269.183415px;}
.ya9{bottom:273.170085px;}
.y19{bottom:279.926730px;}
.y68{bottom:287.063490px;}
.y7b{bottom:287.063640px;}
.y40{bottom:287.183415px;}
.y18{bottom:294.326730px;}
.yb6{bottom:305.063340px;}
.y67{bottom:305.063490px;}
.y3f{bottom:305.183415px;}
.y17{bottom:308.726730px;}
.y66{bottom:323.063490px;}
.y16{bottom:323.126715px;}
.y3e{bottom:323.183415px;}
.y15{bottom:337.526715px;}
.y65{bottom:341.063490px;}
.y3d{bottom:341.183415px;}
.y14{bottom:351.926715px;}
.y64{bottom:359.063490px;}
.y3c{bottom:359.183415px;}
.y13{bottom:366.326730px;}
.y63{bottom:377.063490px;}
.y3b{bottom:377.183415px;}
.y62{bottom:395.063490px;}
.y3a{bottom:395.183415px;}
.y12{bottom:402.326730px;}
.y61{bottom:413.063490px;}
.y39{bottom:413.183415px;}
.y11{bottom:416.726730px;}
.y60{bottom:431.063490px;}
.y10{bottom:431.126730px;}
.y38{bottom:431.183415px;}
.yf{bottom:445.526730px;}
.y5f{bottom:449.063490px;}
.y37{bottom:449.183415px;}
.ye{bottom:459.926730px;}
.y5e{bottom:467.063490px;}
.y36{bottom:467.183415px;}
.yd{bottom:474.326730px;}
.y5d{bottom:485.063490px;}
.y35{bottom:485.183415px;}
.yc{bottom:488.726730px;}
.y5c{bottom:503.063490px;}
.yb{bottom:503.126730px;}
.y34{bottom:503.183415px;}
.ya{bottom:517.526730px;}
.y5b{bottom:521.063490px;}
.y33{bottom:521.183415px;}
.y9{bottom:531.926730px;}
.y5a{bottom:539.063490px;}
.y32{bottom:539.183415px;}
.y8{bottom:546.326730px;}
.y59{bottom:557.063490px;}
.y31{bottom:557.183415px;}
.y7{bottom:560.726445px;}
.y58{bottom:575.063490px;}
.y30{bottom:575.183415px;}
.y57{bottom:593.063490px;}
.y2f{bottom:593.183415px;}
.y56{bottom:611.063490px;}
.y2e{bottom:611.183415px;}
.y6{bottom:614.726595px;}
.y55{bottom:629.063490px;}
.y2d{bottom:629.183415px;}
.y54{bottom:647.063490px;}
.y2c{bottom:647.183415px;}
.ybc{bottom:665.063340px;}
.y53{bottom:665.063490px;}
.y2b{bottom:665.183415px;}
.y5{bottom:668.726745px;}
.y52{bottom:683.063490px;}
.y2a{bottom:683.183415px;}
.y4{bottom:686.726745px;}
.y51{bottom:701.063490px;}
.y29{bottom:701.183415px;}
.y3{bottom:704.726745px;}
.y50{bottom:719.063490px;}
.y9b{bottom:719.183415px;}
.y28{bottom:719.183565px;}
.y4f{bottom:737.063490px;}
.y9a{bottom:737.183415px;}
.y27{bottom:737.183565px;}
.y4e{bottom:755.063490px;}
.y99{bottom:755.183415px;}
.y26{bottom:755.183565px;}
.y4d{bottom:773.063490px;}
.y98{bottom:773.183415px;}
.y25{bottom:773.183565px;}
.y4c{bottom:791.063490px;}
.y97{bottom:791.183415px;}
.y24{bottom:791.183565px;}
.y75{bottom:809.063340px;}
.y4b{bottom:809.063490px;}
.y96{bottom:809.183415px;}
.y23{bottom:809.183565px;}
.y4a{bottom:827.063490px;}
.y95{bottom:827.183415px;}
.y22{bottom:827.183565px;}
.y49{bottom:845.063490px;}
.y94{bottom:845.183415px;}
.y21{bottom:845.183565px;}
.y48{bottom:863.063490px;}
.y93{bottom:863.183415px;}
.y47{bottom:881.063490px;}
.y20{bottom:881.183415px;}
.y2{bottom:920.923230px;}
.ha{height:25.874880px;}
.h8{height:25.874940px;}
.h9{height:25.875000px;}
.hb{height:25.875060px;}
.h3{height:35.088000px;}
.h7{height:40.860000px;}
.h2{height:43.584000px;}
.h6{height:43.584060px;}
.hc{height:53.880000px;}
.h5{height:54.480000px;}
.h4{height:55.200000px;}
.h0{height:1020.472410px;}
.h1{height:1020.750000px;}
.w0{width:722.834655px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:106.299195px;}
.x6{left:119.055000px;}
.x5{left:123.306923px;}
.x4{left:127.559055px;}
.x2{left:143.810940px;}
.x1{left:596.519445px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v3{vertical-align:-13.320053pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.202027pt;}
.ls2{letter-spacing:0.341973pt;}
.ls3{letter-spacing:0.397973pt;}
.ls1{letter-spacing:0.531627pt;}
.ls4{letter-spacing:0.600000pt;}
.ls5{letter-spacing:0.705760pt;}
.ls7{letter-spacing:30.527467pt;}
.ws0{word-spacing:-14.826667pt;}
.ws2{word-spacing:-8.643947pt;}
.ws3{word-spacing:-6.482960pt;}
.ws1{word-spacing:0.000000pt;}
._13{margin-left:-14.046187pt;}
._15{margin-left:-6.613333pt;}
._12{margin-left:-5.213333pt;}
._5{margin-left:-4.320000pt;}
._0{margin-left:-3.157333pt;}
._6{margin-left:-1.813333pt;}
._8{margin-left:-0.896000pt;}
._1{width:1.333333pt;}
._3{width:2.453333pt;}
._4{width:3.466667pt;}
._7{width:4.565333pt;}
._b{width:5.706667pt;}
._d{width:6.933333pt;}
._c{width:8.213333pt;}
._f{width:9.173333pt;}
._10{width:10.346667pt;}
._2{width:13.653333pt;}
._11{width:23.400000pt;}
._14{width:30.506667pt;}
._9{width:35.280000pt;}
._e{width:36.400000pt;}
._a{width:101.600000pt;}
.fs4{font-size:23.320000pt;}
.fs3{font-size:31.093333pt;}
.fs2{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:53.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:107.716533pt;}
.ya6{bottom:143.141400pt;}
.ybb{bottom:143.167547pt;}
.y83{bottom:143.582333pt;}
.y6f{bottom:144.212253pt;}
.y1f{bottom:144.283120pt;}
.yb5{bottom:144.474733pt;}
.y7a{bottom:146.334920pt;}
.ya8{bottom:146.471400pt;}
.yb1{bottom:146.817853pt;}
.y8b{bottom:146.975347pt;}
.y7d{bottom:147.195800pt;}
.y74{bottom:147.384787pt;}
.y78{bottom:147.416280pt;}
.ya2{bottom:147.584253pt;}
.y46{bottom:147.668253pt;}
.yb8{bottom:147.794227pt;}
.ya7{bottom:155.141400pt;}
.y8d{bottom:155.645320pt;}
.y6e{bottom:156.212253pt;}
.ya1{bottom:156.254253pt;}
.y79{bottom:158.334920pt;}
.ya5{bottom:158.471400pt;}
.yb0{bottom:158.817853pt;}
.y82{bottom:158.912333pt;}
.y8a{bottom:158.975347pt;}
.yba{bottom:159.167547pt;}
.y73{bottom:159.384787pt;}
.y77{bottom:159.416280pt;}
.y45{bottom:159.668253pt;}
.yb7{bottom:159.794227pt;}
.yb4{bottom:159.804733pt;}
.yaf{bottom:167.487853pt;}
.y81{bottom:167.582333pt;}
.y89{bottom:167.645320pt;}
.ya4{bottom:170.471400pt;}
.y72{bottom:171.384787pt;}
.y6d{bottom:171.542253pt;}
.ya0{bottom:171.584253pt;}
.y92{bottom:171.668253pt;}
.yb3{bottom:171.804733pt;}
.yb9{bottom:175.167547pt;}
.yae{bottom:179.487853pt;}
.y80{bottom:179.582333pt;}
.y88{bottom:179.645320pt;}
.y6c{bottom:180.212253pt;}
.y9f{bottom:180.254253pt;}
.y91{bottom:180.338240pt;}
.ya3{bottom:182.471400pt;}
.y8c{bottom:182.975347pt;}
.yb2{bottom:183.804733pt;}
.y1e{bottom:184.823760pt;}
.y76{bottom:191.167547pt;}
.y44{bottom:191.274147pt;}
.y7f{bottom:191.582333pt;}
.y87{bottom:191.645320pt;}
.y6b{bottom:192.212253pt;}
.y9e{bottom:192.254253pt;}
.yad{bottom:194.817853pt;}
.y90{bottom:195.668253pt;}
.y1d{bottom:197.623760pt;}
.y9d{bottom:204.254253pt;}
.yac{bottom:206.817853pt;}
.y7e{bottom:206.912333pt;}
.y86{bottom:206.975347pt;}
.y71{bottom:207.167547pt;}
.y43{bottom:207.274147pt;}
.y6a{bottom:207.542253pt;}
.y8f{bottom:207.668253pt;}
.y1c{bottom:210.423760pt;}
.yab{bottom:215.487853pt;}
.y85{bottom:218.975347pt;}
.y9c{bottom:219.584253pt;}
.y8e{bottom:219.668253pt;}
.y70{bottom:223.167547pt;}
.y1b{bottom:223.223760pt;}
.y42{bottom:223.274147pt;}
.yaa{bottom:227.487853pt;}
.y84{bottom:230.975347pt;}
.y1a{bottom:236.023760pt;}
.y69{bottom:239.167547pt;}
.y7c{bottom:239.167680pt;}
.y41{bottom:239.274147pt;}
.ya9{bottom:242.817853pt;}
.y19{bottom:248.823760pt;}
.y68{bottom:255.167547pt;}
.y7b{bottom:255.167680pt;}
.y40{bottom:255.274147pt;}
.y18{bottom:261.623760pt;}
.yb6{bottom:271.167413pt;}
.y67{bottom:271.167547pt;}
.y3f{bottom:271.274147pt;}
.y17{bottom:274.423760pt;}
.y66{bottom:287.167547pt;}
.y16{bottom:287.223747pt;}
.y3e{bottom:287.274147pt;}
.y15{bottom:300.023747pt;}
.y65{bottom:303.167547pt;}
.y3d{bottom:303.274147pt;}
.y14{bottom:312.823747pt;}
.y64{bottom:319.167547pt;}
.y3c{bottom:319.274147pt;}
.y13{bottom:325.623760pt;}
.y63{bottom:335.167547pt;}
.y3b{bottom:335.274147pt;}
.y62{bottom:351.167547pt;}
.y3a{bottom:351.274147pt;}
.y12{bottom:357.623760pt;}
.y61{bottom:367.167547pt;}
.y39{bottom:367.274147pt;}
.y11{bottom:370.423760pt;}
.y60{bottom:383.167547pt;}
.y10{bottom:383.223760pt;}
.y38{bottom:383.274147pt;}
.yf{bottom:396.023760pt;}
.y5f{bottom:399.167547pt;}
.y37{bottom:399.274147pt;}
.ye{bottom:408.823760pt;}
.y5e{bottom:415.167547pt;}
.y36{bottom:415.274147pt;}
.yd{bottom:421.623760pt;}
.y5d{bottom:431.167547pt;}
.y35{bottom:431.274147pt;}
.yc{bottom:434.423760pt;}
.y5c{bottom:447.167547pt;}
.yb{bottom:447.223760pt;}
.y34{bottom:447.274147pt;}
.ya{bottom:460.023760pt;}
.y5b{bottom:463.167547pt;}
.y33{bottom:463.274147pt;}
.y9{bottom:472.823760pt;}
.y5a{bottom:479.167547pt;}
.y32{bottom:479.274147pt;}
.y8{bottom:485.623760pt;}
.y59{bottom:495.167547pt;}
.y31{bottom:495.274147pt;}
.y7{bottom:498.423507pt;}
.y58{bottom:511.167547pt;}
.y30{bottom:511.274147pt;}
.y57{bottom:527.167547pt;}
.y2f{bottom:527.274147pt;}
.y56{bottom:543.167547pt;}
.y2e{bottom:543.274147pt;}
.y6{bottom:546.423640pt;}
.y55{bottom:559.167547pt;}
.y2d{bottom:559.274147pt;}
.y54{bottom:575.167547pt;}
.y2c{bottom:575.274147pt;}
.ybc{bottom:591.167413pt;}
.y53{bottom:591.167547pt;}
.y2b{bottom:591.274147pt;}
.y5{bottom:594.423773pt;}
.y52{bottom:607.167547pt;}
.y2a{bottom:607.274147pt;}
.y4{bottom:610.423773pt;}
.y51{bottom:623.167547pt;}
.y29{bottom:623.274147pt;}
.y3{bottom:626.423773pt;}
.y50{bottom:639.167547pt;}
.y9b{bottom:639.274147pt;}
.y28{bottom:639.274280pt;}
.y4f{bottom:655.167547pt;}
.y9a{bottom:655.274147pt;}
.y27{bottom:655.274280pt;}
.y4e{bottom:671.167547pt;}
.y99{bottom:671.274147pt;}
.y26{bottom:671.274280pt;}
.y4d{bottom:687.167547pt;}
.y98{bottom:687.274147pt;}
.y25{bottom:687.274280pt;}
.y4c{bottom:703.167547pt;}
.y97{bottom:703.274147pt;}
.y24{bottom:703.274280pt;}
.y75{bottom:719.167413pt;}
.y4b{bottom:719.167547pt;}
.y96{bottom:719.274147pt;}
.y23{bottom:719.274280pt;}
.y4a{bottom:735.167547pt;}
.y95{bottom:735.274147pt;}
.y22{bottom:735.274280pt;}
.y49{bottom:751.167547pt;}
.y94{bottom:751.274147pt;}
.y21{bottom:751.274280pt;}
.y48{bottom:767.167547pt;}
.y93{bottom:767.274147pt;}
.y47{bottom:783.167547pt;}
.y20{bottom:783.274147pt;}
.y2{bottom:818.598427pt;}
.ha{height:22.999893pt;}
.h8{height:22.999947pt;}
.h9{height:23.000000pt;}
.hb{height:23.000053pt;}
.h3{height:31.189333pt;}
.h7{height:36.320000pt;}
.h2{height:38.741333pt;}
.h6{height:38.741387pt;}
.hc{height:47.893333pt;}
.h5{height:48.426667pt;}
.h4{height:49.066667pt;}
.h0{height:907.086587pt;}
.h1{height:907.333333pt;}
.w0{width:642.519693pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:94.488173pt;}
.x6{left:105.826667pt;}
.x5{left:109.606153pt;}
.x4{left:113.385827pt;}
.x2{left:127.831947pt;}
.x1{left:530.239507pt;}
}

