
    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_c350df38125a3f5dd3d1e998.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_8b2d515cbad04dcb4168e306.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_132307b97ec38fcf9917a582.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_ceac717d8a25b63f4cbdea8a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_21ffbe5269dcb1673696ab83.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_5036cb0255cc20cd7ef592fb.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_faf3aadcf1811b464a6b4190.woff')format("woff");}.ff7{font-family:ff7;line-height:0.691406;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;}
.ls6{letter-spacing:-0.288000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.720000px;}
.ls4{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-81.360000px;}
.ws4{word-spacing:-59.760000px;}
.ws1{word-spacing:-20.340000px;}
.ws5{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-2.399520px;}
._0{margin-left:-1.301760px;}
._1{width:1.607520px;}
.fc1{color:rgb(192,192,192);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:81.360000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yac{bottom:4.485000px;}
.y89{bottom:24.646500px;}
.yab{bottom:46.065000px;}
.y88{bottom:63.346500px;}
.yaa{bottom:87.465000px;}
.y87{bottom:105.106500px;}
.y4d{bottom:118.116000px;}
.y86{bottom:125.626500px;}
.yad{bottom:127.296000px;}
.ya9{bottom:129.270000px;}
.y84{bottom:129.463500px;}
.y4c{bottom:138.816000px;}
.y8a{bottom:150.885000px;}
.y4b{bottom:159.510000px;}
.y85{bottom:167.791500px;}
.y25{bottom:170.670000px;}
.ya8{bottom:171.390000px;}
.y4a{bottom:180.210000px;}
.y24{bottom:191.370000px;}
.ya7{bottom:192.090000px;}
.y49{bottom:200.910000px;}
.y6f{bottom:201.270000px;}
.ya6{bottom:212.790000px;}
.y48{bottom:221.610000px;}
.y6e{bottom:221.970000px;}
.y23{bottom:233.130000px;}
.ya5{bottom:233.490000px;}
.y47{bottom:242.310000px;}
.y6d{bottom:242.670000px;}
.y22{bottom:253.830000px;}
.ya4{bottom:254.190000px;}
.y21{bottom:274.575000px;}
.ya3{bottom:274.890000px;}
.y46{bottom:284.115000px;}
.y6c{bottom:284.475000px;}
.y20{bottom:295.275000px;}
.ya2{bottom:295.590000px;}
.y45{bottom:304.815000px;}
.y6b{bottom:304.995000px;}
.ya1{bottom:336.810000px;}
.y1f{bottom:336.855000px;}
.y44{bottom:346.395000px;}
.y6a{bottom:346.755000px;}
.y1e{bottom:357.555000px;}
.y43{bottom:367.095000px;}
.y69{bottom:367.455000px;}
.y1d{bottom:378.255000px;}
.ya0{bottom:378.930000px;}
.y42{bottom:387.795000px;}
.y68{bottom:388.155000px;}
.y83{bottom:388.515000px;}
.y1c{bottom:398.955000px;}
.y41{bottom:408.495000px;}
.y67{bottom:408.855000px;}
.y1b{bottom:419.655000px;}
.y9f{bottom:420.720000px;}
.y66{bottom:429.555000px;}
.y82{bottom:430.095000px;}
.y40{bottom:431.355000px;}
.y1a{bottom:440.355000px;}
.y9e{bottom:441.420000px;}
.y65{bottom:450.255000px;}
.y19{bottom:461.055000px;}
.y64{bottom:470.955000px;}
.y81{bottom:471.855000px;}
.y9d{bottom:482.640000px;}
.y3f{bottom:483.375000px;}
.y63{bottom:491.655000px;}
.y80{bottom:492.555000px;}
.y18{bottom:502.815000px;}
.y62{bottom:512.355000px;}
.y7f{bottom:513.255000px;}
.y17{bottom:523.515000px;}
.y9c{bottom:524.400000px;}
.y3e{bottom:533.415000px;}
.y7e{bottom:533.955000px;}
.y16{bottom:544.215000px;}
.y3d{bottom:554.115000px;}
.y7d{bottom:554.655000px;}
.y15{bottom:564.945000px;}
.y9b{bottom:566.520000px;}
.y61{bottom:574.845000px;}
.y7c{bottom:575.385000px;}
.y14{bottom:585.645000px;}
.y9a{bottom:587.220000px;}
.y60{bottom:595.545000px;}
.y3c{bottom:595.725000px;}
.y7b{bottom:596.085000px;}
.y99{bottom:607.920000px;}
.y5f{bottom:616.245000px;}
.y3b{bottom:616.425000px;}
.y7a{bottom:616.785000px;}
.y13{bottom:627.225000px;}
.y98{bottom:628.620000px;}
.y5e{bottom:636.945000px;}
.y3a{bottom:637.125000px;}
.y79{bottom:637.485000px;}
.y12{bottom:647.925000px;}
.y97{bottom:649.320000px;}
.y5d{bottom:657.645000px;}
.y39{bottom:657.825000px;}
.y78{bottom:658.185000px;}
.y11{bottom:668.625000px;}
.y96{bottom:670.020000px;}
.y5c{bottom:678.345000px;}
.y38{bottom:678.525000px;}
.y77{bottom:678.885000px;}
.y10{bottom:689.325000px;}
.y95{bottom:690.765000px;}
.y37{bottom:699.225000px;}
.y76{bottom:699.585000px;}
.yf{bottom:710.025000px;}
.y5b{bottom:719.925000px;}
.y75{bottom:720.285000px;}
.ye{bottom:730.725000px;}
.y94{bottom:731.985000px;}
.y36{bottom:740.985000px;}
.yd{bottom:751.425000px;}
.y35{bottom:761.685000px;}
.y5a{bottom:764.205000px;}
.yc{bottom:772.125000px;}
.y93{bottom:773.745000px;}
.y34{bottom:782.385000px;}
.y33{bottom:803.085000px;}
.y74{bottom:803.265000px;}
.y59{bottom:808.485000px;}
.yb{bottom:813.885000px;}
.y92{bottom:815.865000px;}
.y32{bottom:823.785000px;}
.y58{bottom:829.185000px;}
.ya{bottom:834.585000px;}
.y91{bottom:836.565000px;}
.y73{bottom:847.590000px;}
.y57{bottom:849.930000px;}
.y9{bottom:855.330000px;}
.y90{bottom:857.265000px;}
.y31{bottom:865.410000px;}
.y56{bottom:870.630000px;}
.y8{bottom:876.030000px;}
.y8f{bottom:877.965000px;}
.y55{bottom:891.330000px;}
.y72{bottom:892.050000px;}
.y7{bottom:896.730000px;}
.y8e{bottom:898.665000px;}
.y30{bottom:909.690000px;}
.y71{bottom:912.750000px;}
.y8d{bottom:919.365000px;}
.y54{bottom:933.090000px;}
.y70{bottom:933.450000px;}
.y6{bottom:938.310000px;}
.y8c{bottom:940.065000px;}
.y53{bottom:953.790000px;}
.y2f{bottom:954.150000px;}
.y52{bottom:974.490000px;}
.y2e{bottom:974.850000px;}
.y8b{bottom:981.315000px;}
.y5{bottom:982.590000px;}
.y51{bottom:995.190000px;}
.y2d{bottom:995.550000px;}
.y50{bottom:1015.890000px;}
.y2c{bottom:1016.250000px;}
.y4{bottom:1027.050000px;}
.y4f{bottom:1036.590000px;}
.y2b{bottom:1036.950000px;}
.y4e{bottom:1057.290000px;}
.y2a{bottom:1057.650000px;}
.y3{bottom:1068.630000px;}
.y29{bottom:1078.350000px;}
.y28{bottom:1099.050000px;}
.y2{bottom:1112.910000px;}
.y27{bottom:1119.750000px;}
.y1{bottom:1136.520000px;}
.y26{bottom:1140.480000px;}
.ha{height:45.184219px;}
.h7{height:58.651172px;}
.h3{height:70.664062px;}
.h4{height:72.562500px;}
.h9{height:74.004654px;}
.h2{height:81.995625px;}
.h5{height:105.996094px;}
.h6{height:183.982500px;}
.h8{height:997.875000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:646.830000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:4.489500px;}
.xf{left:112.483500px;}
.xa{left:123.166500px;}
.x5{left:127.656000px;}
.xc{left:146.683500px;}
.x7{left:154.650000px;}
.x4{left:158.070000px;}
.x8{left:181.650000px;}
.x1{left:183.810000px;}
.x6{left:221.970000px;}
.xe{left:257.428500px;}
.xd{left:299.548500px;}
.x3{left:311.475000px;}
.x2{left:358.995000px;}
.x9{left:394.995000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls4{letter-spacing:56.912640pt;}
.ws0{word-spacing:-72.320000pt;}
.ws4{word-spacing:-53.120000pt;}
.ws1{word-spacing:-18.080000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-2.132907pt;}
._0{margin-left:-1.157120pt;}
._1{width:1.428907pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:72.320000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yac{bottom:3.986667pt;}
.y89{bottom:21.908000pt;}
.yab{bottom:40.946667pt;}
.y88{bottom:56.308000pt;}
.yaa{bottom:77.746667pt;}
.y87{bottom:93.428000pt;}
.y4d{bottom:104.992000pt;}
.y86{bottom:111.668000pt;}
.yad{bottom:113.152000pt;}
.ya9{bottom:114.906667pt;}
.y84{bottom:115.078667pt;}
.y4c{bottom:123.392000pt;}
.y8a{bottom:134.120000pt;}
.y4b{bottom:141.786667pt;}
.y85{bottom:149.148000pt;}
.y25{bottom:151.706667pt;}
.ya8{bottom:152.346667pt;}
.y4a{bottom:160.186667pt;}
.y24{bottom:170.106667pt;}
.ya7{bottom:170.746667pt;}
.y49{bottom:178.586667pt;}
.y6f{bottom:178.906667pt;}
.ya6{bottom:189.146667pt;}
.y48{bottom:196.986667pt;}
.y6e{bottom:197.306667pt;}
.y23{bottom:207.226667pt;}
.ya5{bottom:207.546667pt;}
.y47{bottom:215.386667pt;}
.y6d{bottom:215.706667pt;}
.y22{bottom:225.626667pt;}
.ya4{bottom:225.946667pt;}
.y21{bottom:244.066667pt;}
.ya3{bottom:244.346667pt;}
.y46{bottom:252.546667pt;}
.y6c{bottom:252.866667pt;}
.y20{bottom:262.466667pt;}
.ya2{bottom:262.746667pt;}
.y45{bottom:270.946667pt;}
.y6b{bottom:271.106667pt;}
.ya1{bottom:299.386667pt;}
.y1f{bottom:299.426667pt;}
.y44{bottom:307.906667pt;}
.y6a{bottom:308.226667pt;}
.y1e{bottom:317.826667pt;}
.y43{bottom:326.306667pt;}
.y69{bottom:326.626667pt;}
.y1d{bottom:336.226667pt;}
.ya0{bottom:336.826667pt;}
.y42{bottom:344.706667pt;}
.y68{bottom:345.026667pt;}
.y83{bottom:345.346667pt;}
.y1c{bottom:354.626667pt;}
.y41{bottom:363.106667pt;}
.y67{bottom:363.426667pt;}
.y1b{bottom:373.026667pt;}
.y9f{bottom:373.973333pt;}
.y66{bottom:381.826667pt;}
.y82{bottom:382.306667pt;}
.y40{bottom:383.426667pt;}
.y1a{bottom:391.426667pt;}
.y9e{bottom:392.373333pt;}
.y65{bottom:400.226667pt;}
.y19{bottom:409.826667pt;}
.y64{bottom:418.626667pt;}
.y81{bottom:419.426667pt;}
.y9d{bottom:429.013333pt;}
.y3f{bottom:429.666667pt;}
.y63{bottom:437.026667pt;}
.y80{bottom:437.826667pt;}
.y18{bottom:446.946667pt;}
.y62{bottom:455.426667pt;}
.y7f{bottom:456.226667pt;}
.y17{bottom:465.346667pt;}
.y9c{bottom:466.133333pt;}
.y3e{bottom:474.146667pt;}
.y7e{bottom:474.626667pt;}
.y16{bottom:483.746667pt;}
.y3d{bottom:492.546667pt;}
.y7d{bottom:493.026667pt;}
.y15{bottom:502.173333pt;}
.y9b{bottom:503.573333pt;}
.y61{bottom:510.973333pt;}
.y7c{bottom:511.453333pt;}
.y14{bottom:520.573333pt;}
.y9a{bottom:521.973333pt;}
.y60{bottom:529.373333pt;}
.y3c{bottom:529.533333pt;}
.y7b{bottom:529.853333pt;}
.y99{bottom:540.373333pt;}
.y5f{bottom:547.773333pt;}
.y3b{bottom:547.933333pt;}
.y7a{bottom:548.253333pt;}
.y13{bottom:557.533333pt;}
.y98{bottom:558.773333pt;}
.y5e{bottom:566.173333pt;}
.y3a{bottom:566.333333pt;}
.y79{bottom:566.653333pt;}
.y12{bottom:575.933333pt;}
.y97{bottom:577.173333pt;}
.y5d{bottom:584.573333pt;}
.y39{bottom:584.733333pt;}
.y78{bottom:585.053333pt;}
.y11{bottom:594.333333pt;}
.y96{bottom:595.573333pt;}
.y5c{bottom:602.973333pt;}
.y38{bottom:603.133333pt;}
.y77{bottom:603.453333pt;}
.y10{bottom:612.733333pt;}
.y95{bottom:614.013333pt;}
.y37{bottom:621.533333pt;}
.y76{bottom:621.853333pt;}
.yf{bottom:631.133333pt;}
.y5b{bottom:639.933333pt;}
.y75{bottom:640.253333pt;}
.ye{bottom:649.533333pt;}
.y94{bottom:650.653333pt;}
.y36{bottom:658.653333pt;}
.yd{bottom:667.933333pt;}
.y35{bottom:677.053333pt;}
.y5a{bottom:679.293333pt;}
.yc{bottom:686.333333pt;}
.y93{bottom:687.773333pt;}
.y34{bottom:695.453333pt;}
.y33{bottom:713.853333pt;}
.y74{bottom:714.013333pt;}
.y59{bottom:718.653333pt;}
.yb{bottom:723.453333pt;}
.y92{bottom:725.213333pt;}
.y32{bottom:732.253333pt;}
.y58{bottom:737.053333pt;}
.ya{bottom:741.853333pt;}
.y91{bottom:743.613333pt;}
.y73{bottom:753.413333pt;}
.y57{bottom:755.493333pt;}
.y9{bottom:760.293333pt;}
.y90{bottom:762.013333pt;}
.y31{bottom:769.253333pt;}
.y56{bottom:773.893333pt;}
.y8{bottom:778.693333pt;}
.y8f{bottom:780.413333pt;}
.y55{bottom:792.293333pt;}
.y72{bottom:792.933333pt;}
.y7{bottom:797.093333pt;}
.y8e{bottom:798.813333pt;}
.y30{bottom:808.613333pt;}
.y71{bottom:811.333333pt;}
.y8d{bottom:817.213333pt;}
.y54{bottom:829.413333pt;}
.y70{bottom:829.733333pt;}
.y6{bottom:834.053333pt;}
.y8c{bottom:835.613333pt;}
.y53{bottom:847.813333pt;}
.y2f{bottom:848.133333pt;}
.y52{bottom:866.213333pt;}
.y2e{bottom:866.533333pt;}
.y8b{bottom:872.280000pt;}
.y5{bottom:873.413333pt;}
.y51{bottom:884.613333pt;}
.y2d{bottom:884.933333pt;}
.y50{bottom:903.013333pt;}
.y2c{bottom:903.333333pt;}
.y4{bottom:912.933333pt;}
.y4f{bottom:921.413333pt;}
.y2b{bottom:921.733333pt;}
.y4e{bottom:939.813333pt;}
.y2a{bottom:940.133333pt;}
.y3{bottom:949.893333pt;}
.y29{bottom:958.533333pt;}
.y28{bottom:976.933333pt;}
.y2{bottom:989.253333pt;}
.y27{bottom:995.333333pt;}
.y1{bottom:1010.240000pt;}
.y26{bottom:1013.760000pt;}
.ha{height:40.163750pt;}
.h7{height:52.134375pt;}
.h3{height:62.812500pt;}
.h4{height:64.500000pt;}
.h9{height:65.781915pt;}
.h2{height:72.885000pt;}
.h5{height:94.218750pt;}
.h6{height:163.540000pt;}
.h8{height:887.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:574.960000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:3.990667pt;}
.xf{left:99.985333pt;}
.xa{left:109.481333pt;}
.x5{left:113.472000pt;}
.xc{left:130.385333pt;}
.x7{left:137.466667pt;}
.x4{left:140.506667pt;}
.x8{left:161.466667pt;}
.x1{left:163.386667pt;}
.x6{left:197.306667pt;}
.xe{left:228.825333pt;}
.xd{left:266.265333pt;}
.x3{left:276.866667pt;}
.x2{left:319.106667pt;}
.x9{left:351.106667pt;}
}

