
    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_73cb8089af871db7e470bcbd.woff')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_fd415668a7b1196479e6e20f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.995117;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_f7f875cc07638e6c72084607.woff')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_70ba09d8a2627a3c7d58719d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.871094;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_98d73b36c8fcaf1479a90df1.woff')format("woff");}.ff5{font-family:ff5;line-height:1.104492;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_b31bc51c4e43988629121e53.woff')format("woff");}.ff6{font-family:ff6;line-height:0.871094;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_9e857fee7905bbd7778da266.woff')format("woff");}.ff7{font-family:ff7;line-height:1.077637;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;}
.v1{vertical-align:21.978000px;}
.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:-14.916000px;}
.ws2{word-spacing:-13.344000px;}
.ws0{word-spacing:-8.696028px;}
.ws5{word-spacing:-5.328000px;}
.ws1{word-spacing:-2.688000px;}
.ws6{word-spacing:-2.680800px;}
.ws7{word-spacing:-2.673600px;}
.ws8{word-spacing:-2.673000px;}
.ws3{word-spacing:0.000000px;}
._9{margin-left:-7.506000px;}
._6{margin-left:-6.192000px;}
._7{margin-left:-4.668000px;}
._2{margin-left:-2.688000px;}
._0{margin-left:-1.140000px;}
._1{width:1.254000px;}
._4{width:3.186000px;}
._3{width:4.224000px;}
._5{width:5.382000px;}
._8{width:6.468000px;}
._a{width:8.334000px;}
._c{width:9.390000px;}
._b{width:10.410000px;}
._d{width:11.514000px;}
._e{width:12.810000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.478000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:76.535400px;}
.y68{bottom:84.268650px;}
.y1c{bottom:93.035400px;}
.y9a{bottom:95.518650px;}
.y5a{bottom:97.287450px;}
.y67{bottom:106.768650px;}
.y1b{bottom:109.535400px;}
.y79{bottom:110.518650px;}
.y3d{bottom:113.787450px;}
.y99{bottom:118.018650px;}
.y59{bottom:118.039350px;}
.y7d{bottom:118.918650px;}
.y1a{bottom:126.035400px;}
.y3c{bottom:130.287450px;}
.y78{bottom:133.018650px;}
.y58{bottom:134.539350px;}
.y7e{bottom:138.791400px;}
.y8a{bottom:140.518650px;}
.y7c{bottom:141.418650px;}
.y19{bottom:142.535400px;}
.y98{bottom:144.418650px;}
.y53{bottom:146.787450px;}
.y3b{bottom:151.039350px;}
.y57{bottom:155.291400px;}
.y77{bottom:155.518650px;}
.y18{bottom:159.035400px;}
.y5d{bottom:162.268650px;}
.y5c{bottom:163.018650px;}
.y89{bottom:163.168650px;}
.y97{bottom:166.918650px;}
.y3a{bottom:167.539350px;}
.y17{bottom:175.535400px;}
.y56{bottom:176.043300px;}
.y76{bottom:178.018650px;}
.y5b{bottom:185.518650px;}
.y88{bottom:185.668650px;}
.y52{bottom:186.418650px;}
.y96{bottom:189.418650px;}
.y16{bottom:192.035400px;}
.y39{bottom:208.018650px;}
.y87{bottom:208.168650px;}
.y15{bottom:208.535400px;}
.y51{bottom:208.918650px;}
.y95{bottom:211.918650px;}
.y75{bottom:220.018650px;}
.y14{bottom:225.035400px;}
.y38{bottom:230.518650px;}
.y86{bottom:230.668650px;}
.y50{bottom:231.418650px;}
.y94{bottom:234.418650px;}
.y74{bottom:242.518650px;}
.y55{bottom:253.018650px;}
.y85{bottom:253.168650px;}
.y4f{bottom:253.918650px;}
.y93{bottom:256.918650px;}
.y73{bottom:265.018650px;}
.y13{bottom:266.518650px;}
.y37{bottom:275.518650px;}
.y84{bottom:275.668650px;}
.y4e{bottom:276.418650px;}
.y92{bottom:279.418650px;}
.y72{bottom:287.518650px;}
.y12{bottom:289.018650px;}
.y36{bottom:298.018650px;}
.y83{bottom:298.168650px;}
.y4d{bottom:298.918650px;}
.y71{bottom:310.018650px;}
.y11{bottom:311.518650px;}
.y35{bottom:320.518650px;}
.y82{bottom:320.668650px;}
.y4c{bottom:321.418650px;}
.y91{bottom:324.418650px;}
.y10{bottom:334.018800px;}
.y34{bottom:343.018650px;}
.y81{bottom:343.168650px;}
.y4b{bottom:343.918650px;}
.y90{bottom:346.918650px;}
.y70{bottom:352.018650px;}
.y33{bottom:365.518650px;}
.y4a{bottom:366.418650px;}
.y8f{bottom:369.418650px;}
.yf{bottom:379.018800px;}
.y32{bottom:388.018650px;}
.y80{bottom:388.168650px;}
.y66{bottom:388.768650px;}
.y49{bottom:388.918650px;}
.y8e{bottom:391.918650px;}
.y31{bottom:410.518650px;}
.y65{bottom:411.268650px;}
.y48{bottom:411.418650px;}
.y8d{bottom:414.418650px;}
.ye{bottom:423.118800px;}
.y7f{bottom:432.268650px;}
.y30{bottom:433.018650px;}
.y64{bottom:433.768650px;}
.y47{bottom:433.918650px;}
.y8c{bottom:436.918650px;}
.yd{bottom:445.618800px;}
.y2f{bottom:455.518650px;}
.y63{bottom:456.268650px;}
.y46{bottom:456.418650px;}
.y8b{bottom:459.418650px;}
.y1{bottom:459.606750px;}
.y1e{bottom:459.649050px;}
.yc{bottom:468.118800px;}
.y2e{bottom:478.018650px;}
.y62{bottom:478.768650px;}
.y6f{bottom:488.518650px;}
.yb{bottom:490.618800px;}
.y2d{bottom:500.518650px;}
.y61{bottom:501.268650px;}
.y45{bottom:501.418650px;}
.y6e{bottom:511.018650px;}
.ya{bottom:513.118800px;}
.y2c{bottom:523.018650px;}
.y60{bottom:523.768650px;}
.y44{bottom:523.918650px;}
.y6d{bottom:533.518650px;}
.y9{bottom:535.618800px;}
.y2b{bottom:545.518650px;}
.y5f{bottom:546.268650px;}
.y43{bottom:546.418650px;}
.y6c{bottom:556.018650px;}
.y8{bottom:558.118800px;}
.y2a{bottom:568.018650px;}
.y42{bottom:568.918650px;}
.y6b{bottom:578.518650px;}
.y7{bottom:580.618800px;}
.y29{bottom:590.518650px;}
.y41{bottom:591.418650px;}
.y6a{bottom:601.018650px;}
.y28{bottom:613.018650px;}
.y40{bottom:613.918650px;}
.y69{bottom:623.518650px;}
.y6{bottom:625.618800px;}
.y54{bottom:635.518650px;}
.y3f{bottom:636.418650px;}
.y27{bottom:658.018650px;}
.y7b{bottom:658.918650px;}
.y5{bottom:669.718800px;}
.y26{bottom:680.518650px;}
.y3e{bottom:681.418650px;}
.y4{bottom:696.718800px;}
.y5e{bottom:702.268650px;}
.y25{bottom:703.018650px;}
.y7a{bottom:703.918650px;}
.y24{bottom:725.518650px;}
.y3{bottom:746.218800px;}
.y23{bottom:748.018650px;}
.y2{bottom:769.618800px;}
.y22{bottom:770.518650px;}
.y21{bottom:793.018650px;}
.y20{bottom:815.518650px;}
.y9b{bottom:815.750700px;}
.y1f{bottom:838.018650px;}
.h2{height:43.031250px;}
.h8{height:44.534180px;}
.h7{height:45.729492px;}
.h4{height:49.482422px;}
.h5{height:53.472656px;}
.h6{height:54.430664px;}
.h3{height:57.928711px;}
.h9{height:59.414062px;}
.h1{height:935.250000px;}
.h0{height:935.433000px;}
.w1{width:637.500000px;}
.w0{width:637.795500px;}
.x0{left:0.000000px;}
.x1{left:28.257000px;}
.x6{left:76.535400px;}
.xa{left:80.787450px;}
.x7{left:97.795200px;}
.x9{left:102.047250px;}
.x2{left:135.392100px;}
.xc{left:150.117900px;}
.xb{left:167.478600px;}
.xd{left:186.969300px;}
.x3{left:218.652750px;}
.x4{left:379.454100px;}
.x5{left:415.247550px;}
.x8{left:589.516800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-13.258667pt;}
.ws2{word-spacing:-11.861333pt;}
.ws0{word-spacing:-7.729803pt;}
.ws5{word-spacing:-4.736000pt;}
.ws1{word-spacing:-2.389333pt;}
.ws6{word-spacing:-2.382933pt;}
.ws7{word-spacing:-2.376533pt;}
.ws8{word-spacing:-2.376000pt;}
.ws3{word-spacing:0.000000pt;}
._9{margin-left:-6.672000pt;}
._6{margin-left:-5.504000pt;}
._7{margin-left:-4.149333pt;}
._2{margin-left:-2.389333pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.114667pt;}
._4{width:2.832000pt;}
._3{width:3.754667pt;}
._5{width:4.784000pt;}
._8{width:5.749333pt;}
._a{width:7.408000pt;}
._c{width:8.346667pt;}
._b{width:9.253333pt;}
._d{width:10.234667pt;}
._e{width:11.386667pt;}
.fs5{font-size:34.202667pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:68.031467pt;}
.y68{bottom:74.905467pt;}
.y1c{bottom:82.698133pt;}
.y9a{bottom:84.905467pt;}
.y5a{bottom:86.477733pt;}
.y67{bottom:94.905467pt;}
.y1b{bottom:97.364800pt;}
.y79{bottom:98.238800pt;}
.y3d{bottom:101.144400pt;}
.y99{bottom:104.905467pt;}
.y59{bottom:104.923867pt;}
.y7d{bottom:105.705467pt;}
.y1a{bottom:112.031467pt;}
.y3c{bottom:115.811067pt;}
.y78{bottom:118.238800pt;}
.y58{bottom:119.590533pt;}
.y7e{bottom:123.370133pt;}
.y8a{bottom:124.905467pt;}
.y7c{bottom:125.705467pt;}
.y19{bottom:126.698133pt;}
.y98{bottom:128.372133pt;}
.y53{bottom:130.477733pt;}
.y3b{bottom:134.257200pt;}
.y57{bottom:138.036800pt;}
.y77{bottom:138.238800pt;}
.y18{bottom:141.364800pt;}
.y5d{bottom:144.238800pt;}
.y5c{bottom:144.905467pt;}
.y89{bottom:145.038800pt;}
.y97{bottom:148.372133pt;}
.y3a{bottom:148.923867pt;}
.y17{bottom:156.031467pt;}
.y56{bottom:156.482933pt;}
.y76{bottom:158.238800pt;}
.y5b{bottom:164.905467pt;}
.y88{bottom:165.038800pt;}
.y52{bottom:165.705467pt;}
.y96{bottom:168.372133pt;}
.y16{bottom:170.698133pt;}
.y39{bottom:184.905467pt;}
.y87{bottom:185.038800pt;}
.y15{bottom:185.364800pt;}
.y51{bottom:185.705467pt;}
.y95{bottom:188.372133pt;}
.y75{bottom:195.572133pt;}
.y14{bottom:200.031467pt;}
.y38{bottom:204.905467pt;}
.y86{bottom:205.038800pt;}
.y50{bottom:205.705467pt;}
.y94{bottom:208.372133pt;}
.y74{bottom:215.572133pt;}
.y55{bottom:224.905467pt;}
.y85{bottom:225.038800pt;}
.y4f{bottom:225.705467pt;}
.y93{bottom:228.372133pt;}
.y73{bottom:235.572133pt;}
.y13{bottom:236.905467pt;}
.y37{bottom:244.905467pt;}
.y84{bottom:245.038800pt;}
.y4e{bottom:245.705467pt;}
.y92{bottom:248.372133pt;}
.y72{bottom:255.572133pt;}
.y12{bottom:256.905467pt;}
.y36{bottom:264.905467pt;}
.y83{bottom:265.038800pt;}
.y4d{bottom:265.705467pt;}
.y71{bottom:275.572133pt;}
.y11{bottom:276.905467pt;}
.y35{bottom:284.905467pt;}
.y82{bottom:285.038800pt;}
.y4c{bottom:285.705467pt;}
.y91{bottom:288.372133pt;}
.y10{bottom:296.905600pt;}
.y34{bottom:304.905467pt;}
.y81{bottom:305.038800pt;}
.y4b{bottom:305.705467pt;}
.y90{bottom:308.372133pt;}
.y70{bottom:312.905467pt;}
.y33{bottom:324.905467pt;}
.y4a{bottom:325.705467pt;}
.y8f{bottom:328.372133pt;}
.yf{bottom:336.905600pt;}
.y32{bottom:344.905467pt;}
.y80{bottom:345.038800pt;}
.y66{bottom:345.572133pt;}
.y49{bottom:345.705467pt;}
.y8e{bottom:348.372133pt;}
.y31{bottom:364.905467pt;}
.y65{bottom:365.572133pt;}
.y48{bottom:365.705467pt;}
.y8d{bottom:368.372133pt;}
.ye{bottom:376.105600pt;}
.y7f{bottom:384.238800pt;}
.y30{bottom:384.905467pt;}
.y64{bottom:385.572133pt;}
.y47{bottom:385.705467pt;}
.y8c{bottom:388.372133pt;}
.yd{bottom:396.105600pt;}
.y2f{bottom:404.905467pt;}
.y63{bottom:405.572133pt;}
.y46{bottom:405.705467pt;}
.y8b{bottom:408.372133pt;}
.y1{bottom:408.539333pt;}
.y1e{bottom:408.576933pt;}
.yc{bottom:416.105600pt;}
.y2e{bottom:424.905467pt;}
.y62{bottom:425.572133pt;}
.y6f{bottom:434.238800pt;}
.yb{bottom:436.105600pt;}
.y2d{bottom:444.905467pt;}
.y61{bottom:445.572133pt;}
.y45{bottom:445.705467pt;}
.y6e{bottom:454.238800pt;}
.ya{bottom:456.105600pt;}
.y2c{bottom:464.905467pt;}
.y60{bottom:465.572133pt;}
.y44{bottom:465.705467pt;}
.y6d{bottom:474.238800pt;}
.y9{bottom:476.105600pt;}
.y2b{bottom:484.905467pt;}
.y5f{bottom:485.572133pt;}
.y43{bottom:485.705467pt;}
.y6c{bottom:494.238800pt;}
.y8{bottom:496.105600pt;}
.y2a{bottom:504.905467pt;}
.y42{bottom:505.705467pt;}
.y6b{bottom:514.238800pt;}
.y7{bottom:516.105600pt;}
.y29{bottom:524.905467pt;}
.y41{bottom:525.705467pt;}
.y6a{bottom:534.238800pt;}
.y28{bottom:544.905467pt;}
.y40{bottom:545.705467pt;}
.y69{bottom:554.238800pt;}
.y6{bottom:556.105600pt;}
.y54{bottom:564.905467pt;}
.y3f{bottom:565.705467pt;}
.y27{bottom:584.905467pt;}
.y7b{bottom:585.705467pt;}
.y5{bottom:595.305600pt;}
.y26{bottom:604.905467pt;}
.y3e{bottom:605.705467pt;}
.y4{bottom:619.305600pt;}
.y5e{bottom:624.238800pt;}
.y25{bottom:624.905467pt;}
.y7a{bottom:625.705467pt;}
.y24{bottom:644.905467pt;}
.y3{bottom:663.305600pt;}
.y23{bottom:664.905467pt;}
.y2{bottom:684.105600pt;}
.y22{bottom:684.905467pt;}
.y21{bottom:704.905467pt;}
.y20{bottom:724.905467pt;}
.y9b{bottom:725.111733pt;}
.y1f{bottom:744.905467pt;}
.h2{height:38.250000pt;}
.h8{height:39.585938pt;}
.h7{height:40.648438pt;}
.h4{height:43.984375pt;}
.h5{height:47.531250pt;}
.h6{height:48.382812pt;}
.h3{height:51.492188pt;}
.h9{height:52.812500pt;}
.h1{height:831.333333pt;}
.h0{height:831.496000pt;}
.w1{width:566.666667pt;}
.w0{width:566.929333pt;}
.x0{left:0.000000pt;}
.x1{left:25.117333pt;}
.x6{left:68.031467pt;}
.xa{left:71.811067pt;}
.x7{left:86.929067pt;}
.x9{left:90.708667pt;}
.x2{left:120.348533pt;}
.xc{left:133.438133pt;}
.xb{left:148.869867pt;}
.xd{left:166.194933pt;}
.x3{left:194.358000pt;}
.x4{left:337.292533pt;}
.x5{left:369.108933pt;}
.x8{left:524.014933pt;}
}

